diff --git a/API_NetFramework/API_NetFramework.csproj b/API_NetFramework/API_NetFramework.csproj index f38934332..82cc39619 100644 --- a/API_NetFramework/API_NetFramework.csproj +++ b/API_NetFramework/API_NetFramework.csproj @@ -267,6 +267,13 @@ + + OnDocAPIHome.aspx + ASPXCodeBehind + + + OnDocAPIHome.aspx + dt.aspx @@ -318,6 +325,7 @@ + @@ -347,6 +355,7 @@ + diff --git a/API_NetFramework/App_Data/users.json b/API_NetFramework/App_Data/users.json new file mode 100644 index 000000000..dcd3d2cfc --- /dev/null +++ b/API_NetFramework/App_Data/users.json @@ -0,0 +1,10 @@ +[ + { + "UserID": "admin", + "Password": "1234" + }, + { + "UserID": "user1", + "Password": "pass1" + } +] \ No newline at end of file diff --git a/API_NetFramework/CLM.aspx b/API_NetFramework/CLM.aspx index a42ad422f..f3b29fdc2 100644 --- a/API_NetFramework/CLM.aspx +++ b/API_NetFramework/CLM.aspx @@ -21,7 +21,7 @@ padding: 0; height: 100%; font-family: Arial; - background: #f4f6f8; + background: #d9d8d4; } .page-header { @@ -54,13 +54,15 @@ border-right: 1px solid #ddd; overflow: auto; } + .leftfull { - width: 100%; - padding: 20px; - background: #fff; - border-right: 1px solid #ddd; - overflow: auto; -} + width: 100%; + padding: 20px; + background: #fff; + border-right: 1px solid #ddd; + overflow: auto; + } + .right { width: 55%; padding: 0; @@ -129,14 +131,15 @@ border-right: 1px solid #ccc; height: 100%; } + .navbar-custom { - background-color: #0d6efd; - padding-top:20px; - padding-bottom:20px; + background-color: #c4c4bc; + padding-top: 10px; + padding-bottom: 10px; } .navbar-custom .navbar-brand { - color: white; + color: black; font-weight: 600; } @@ -149,6 +152,35 @@ background: white; color: #0d6efd; } + + .content { + padding: 30px; + } + + /* Cards */ + .cards { + display: grid; + grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); + gap: 10px; + margin-bottom: 10px; + } + + .card { + background: white; + padding: 10px; + border-radius: 12px; + box-shadow: 0 10px 20px rgba(0,0,0,0.08); + animation: fadeInUp 0.6s ease; + } + + .card h3 { + margin-top: 0; + } + + .card:hover { + transform: translateY(-4px); + transition: 0.2s; + } - -
-
- -

Tabellen & Datensätze

- +
+ + +
+ +
+
+

Selektion

+

+ Tabelle + + + + + + + + + + + + +

+ + + + +
+ + + +
+ + <%-- - + --%> - - - - -
- -
+ + + + +
+ +
- + + if (!isLoggedIn) { + window.location.href = "/OnDocAPIHome.aspx"; + } + }; + diff --git a/API_NetFramework/Controllers/DocumentController.cs b/API_NetFramework/Controllers/DocumentController.cs index 0ac386990..e47d67ecf 100644 --- a/API_NetFramework/Controllers/DocumentController.cs +++ b/API_NetFramework/Controllers/DocumentController.cs @@ -342,7 +342,7 @@ namespace API_NetFramework.Controllers apireturn.message = CheckResult; apireturn.traceid = ""; apireturn.field = ""; - paket = null; + //paket = null; try { //return BadRequest(Newtonsoft.Json.JsonConvert.SerializeObject(apireturn)); @@ -360,6 +360,7 @@ namespace API_NetFramework.Controllers m0.Herkunftsapplikation = paket.Herkunftsapplikation; Send_Confirmation(ref m0); + paket = null; //Send_Confirmation(paket.ConfirmationMail, "", "OnDocAPI-Fehler: - CreateDoks - OnDoc-Err-Verify - GUID: " + guid, mailbody+"
Fehler: "+CheckResult, false); return Content(HttpStatusCode.BadRequest, apireturn); } @@ -378,6 +379,7 @@ namespace API_NetFramework.Controllers m1.forceadminmail = true; m1.Herkunftsapplikation = paket.Herkunftsapplikation; Send_Confirmation(ref m1); + paket = null; return Content(HttpStatusCode.BadRequest, apireturn); } finally { apireturn = null; apiok = null; }; @@ -934,13 +936,14 @@ namespace API_NetFramework.Controllers vp.send_onbase_doc = true; vp.verified = true; send_vs(ref vp, dokdata.Ersteller, doccreate.VersandDirekt == "true", OwnHost, key.ToString(), dokumentid, doccreate.PartnerNr, null, ref apireturn, doccreate); - if (apireturn.status != "") + if (apireturn.status != "200") { vp = null; vdoc = null; doccreate = null; dokdata = null; //return BadRequest(Newtonsoft.Json.JsonConvert.SerializeObject(apireturn)); + return Content(HttpStatusCode.BadRequest, apireturn); } } @@ -965,6 +968,7 @@ namespace API_NetFramework.Controllers apireturn.message = "Dokument generiert"; apireturn.traceid = ""; apireturn.field = "GUID=" + guid; + mailInhalt m = new mailInhalt(); m.typ = 0; @@ -979,8 +983,12 @@ namespace API_NetFramework.Controllers m.forceadminmail = false; m.Herkunftsapplikation = doccreate.Herkunftsapplikation; Send_Confirmation(ref m); - - return Ok((apireturn)); + apiok.code = "200"; + apiok.status = "200"; + apiok.message = "Dokumentpaket vorbereitet"; + apiok.documentid = ""; + apiok.file = ""; + return Ok((apiok)); } catch (Exception ex) { @@ -2177,6 +2185,7 @@ namespace API_NetFramework.Controllers Logging.DocLog.Info("Versandpaket vorbereitet", "OnDoc-API", dokumentid, partnernr, ""); if (!direktversenden) { + apireturn.status = "200"; return; } @@ -2215,7 +2224,7 @@ namespace API_NetFramework.Controllers } Logging.DocLog.Info("Versandpaket versendet", "OnDoc-API", dokumentid, partnernr, ""); - + apireturn.status = "200"; return; } catch (Exception ex) diff --git a/API_NetFramework/Controllers/HomeController.cs b/API_NetFramework/Controllers/HomeController.cs index 3b11d9a3b..3807197d7 100644 --- a/API_NetFramework/Controllers/HomeController.cs +++ b/API_NetFramework/Controllers/HomeController.cs @@ -10,8 +10,8 @@ namespace API_NetFramework.Controllers { public ActionResult Index() { - ViewBag.Title = "Home Page"; - + ViewBag.Title = "OnDocAPI"; + return Redirect("/OnDocAPIHome.aspx"); return View(); } } diff --git a/API_NetFramework/JSONViewer.aspx b/API_NetFramework/JSONViewer.aspx index f5f288efc..465c47d5e 100644 --- a/API_NetFramework/JSONViewer.aspx +++ b/API_NetFramework/JSONViewer.aspx @@ -10,11 +10,11 @@ - - - - - + + +<%----%> + <%----%> + <%----%> + + +
+
+ + + + +
+
OnDoc-API-Übersicht
+
+ +
+
+

Aktuelle Zeit

+

+
+ +

+
+ +
+

Version

+

+ +

+
+ +
+

API Uptime

+

+ +

+
+
+ + +
+

Schnellzugriff

+
+ +
+
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/API_NetFramework/OnDocAPIHome.aspx.cs b/API_NetFramework/OnDocAPIHome.aspx.cs new file mode 100644 index 000000000..d4b21b9f9 --- /dev/null +++ b/API_NetFramework/OnDocAPIHome.aspx.cs @@ -0,0 +1,75 @@ +using Newtonsoft.Json.Linq; +using Swashbuckle.Swagger; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Linq; +using System.Web; +using System.Web.Script.Serialization; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace OnDocAPI_NetFramework +{ + public partial class DemoSeite : System.Web.UI.Page + { + + + + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + lblVersion.Text = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); + + var process = Process.GetCurrentProcess(); + TimeSpan uptime = DateTime.Now - process.StartTime; + lblUptime.Text = uptime.Days + "d " + uptime.Hours + "h " + uptime.Minutes + "m " + uptime.Seconds + "s"; + } + } + + protected void btnLogin_Click(object sender, EventArgs e) + { + string filePath = Server.MapPath("~/App_Data/users.json"); + if (!File.Exists(filePath)) + { + lblLoginError.Text = "Benutzerdaten nicht gefunden!"; + return; + } + + string json = File.ReadAllText(filePath); + var serializer = new JavaScriptSerializer(); + var users = serializer.Deserialize>(json); + + string userId = txtUserID.Text.Trim(); + string password = txtPassword.Text.Trim(); + + var user = users.Find(u => u.UserID == userId && u.Password == password); + + if (user != null) + { + lblLoginError.Text = ""; + Button1.Visible = true; + Button2.Visible = true; + HttpContext.Current.Session["LoggedIn"] = true; + } + else + { + HttpContext.Current.Session["LoggedIn"] = false; + //lblLoginError.Text = "Ungültige Benutzer-ID oder Passwort!"; + Button1.Visible = false; + Button2.Visible = false; + } + } + + protected void OpenPage1(object sender, EventArgs e) => Response.Redirect("/clm.aspx"); + protected void OpenPage2(object sender, EventArgs e) => Response.Redirect("/jsonviewer.aspx"); + + public class User + { + public string UserID { get; set; } + public string Password { get; set; } + } +} +} \ No newline at end of file diff --git a/API_NetFramework/OnDocAPIHome.aspx.designer.cs b/API_NetFramework/OnDocAPIHome.aspx.designer.cs new file mode 100644 index 000000000..6aa0ba509 --- /dev/null +++ b/API_NetFramework/OnDocAPIHome.aspx.designer.cs @@ -0,0 +1,98 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// +// Änderungen an dieser Datei können fehlerhaftes Verhalten verursachen und gehen verloren, wenn +// der Code neu generiert wird. +// +//------------------------------------------------------------------------------ + +namespace OnDocAPI_NetFramework +{ + + + public partial class DemoSeite + { + + /// + /// form1-Steuerelement. + /// + /// + /// Automatisch generiertes Feld. + /// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben. + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// lblLoginError-Steuerelement. + /// + /// + /// Automatisch generiertes Feld. + /// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben. + /// + protected global::System.Web.UI.WebControls.Label lblLoginError; + + /// + /// txtUserID-Steuerelement. + /// + /// + /// Automatisch generiertes Feld. + /// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben. + /// + protected global::System.Web.UI.WebControls.TextBox txtUserID; + + /// + /// txtPassword-Steuerelement. + /// + /// + /// Automatisch generiertes Feld. + /// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben. + /// + protected global::System.Web.UI.WebControls.TextBox txtPassword; + + /// + /// btnLogin-Steuerelement. + /// + /// + /// Automatisch generiertes Feld. + /// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben. + /// + protected global::System.Web.UI.WebControls.Button btnLogin; + + /// + /// lblVersion-Steuerelement. + /// + /// + /// Automatisch generiertes Feld. + /// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben. + /// + protected global::System.Web.UI.WebControls.Label lblVersion; + + /// + /// lblUptime-Steuerelement. + /// + /// + /// Automatisch generiertes Feld. + /// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben. + /// + protected global::System.Web.UI.WebControls.Label lblUptime; + + /// + /// Button1-Steuerelement. + /// + /// + /// Automatisch generiertes Feld. + /// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben. + /// + protected global::System.Web.UI.WebControls.Button Button1; + + /// + /// Button2-Steuerelement. + /// + /// + /// Automatisch generiertes Feld. + /// Zum Ändern Felddeklaration aus der Designerdatei in eine Code-Behind-Datei verschieben. + /// + protected global::System.Web.UI.WebControls.Button Button2; + } +} diff --git a/API_NetFramework/Properties/AssemblyInfo.cs b/API_NetFramework/Properties/AssemblyInfo.cs index b8fbebcfe..618b8ecb4 100644 --- a/API_NetFramework/Properties/AssemblyInfo.cs +++ b/API_NetFramework/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ using System.Runtime.InteropServices; // // Sie können alle Werte angeben oder die standardmäßigen Revisions- und Buildnummern // übernehmen, indem Sie "*" wie folgt verwenden: -[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.8.2.0")] [assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/API_NetFramework/Properties/PublishProfiles/FolderProfile1.pubxml.user b/API_NetFramework/Properties/PublishProfiles/FolderProfile1.pubxml.user index f34af91ec..2e5a54962 100644 --- a/API_NetFramework/Properties/PublishProfiles/FolderProfile1.pubxml.user +++ b/API_NetFramework/Properties/PublishProfiles/FolderProfile1.pubxml.user @@ -5,13 +5,16 @@ https://go.microsoft.com/fwlink/?LinkID=208121. <_PublishTargetUrl>E:\Software-Projekte\OnDoc\PubServices\OnDoc - True|2026-03-11T17:28:35.8258686Z||;True|2026-03-11T18:28:14.0116992+01:00||;True|2026-03-11T18:19:41.2917598+01:00||;True|2026-03-11T18:16:14.3982080+01:00||;True|2026-03-11T17:58:30.8611742+01:00||;True|2026-03-09T15:02:39.2942135+01:00||;True|2026-03-09T13:40:46.3543575+01:00||;True|2026-03-09T10:31:33.7382200+01:00||;True|2026-03-08T08:13:35.2118387+01:00||;True|2026-03-07T21:30:15.7021682+01:00||;True|2026-03-07T16:04:27.6676302+01:00||;True|2026-03-03T07:42:58.6695248+01:00||;True|2026-03-02T18:56:44.9083635+01:00||;True|2026-03-02T15:22:04.7632771+01:00||;True|2026-03-02T15:17:19.5888051+01:00||;True|2026-03-02T14:44:15.1850254+01:00||;False|2026-03-02T14:43:43.8750165+01:00||;True|2026-03-02T13:00:06.4813259+01:00||;True|2026-03-02T09:00:14.6639978+01:00||;True|2026-02-26T14:00:46.9137562+01:00||;True|2026-02-26T10:52:44.7996454+01:00||;True|2026-02-26T10:20:38.9297393+01:00||;True|2026-02-26T08:17:22.1709972+01:00||;True|2026-02-26T08:01:54.5490566+01:00||;True|2026-02-26T07:56:47.9173498+01:00||;True|2026-02-26T05:50:34.4180646+01:00||;True|2026-02-25T16:00:31.8051644+01:00||;True|2026-02-25T15:40:22.6200444+01:00||;True|2026-02-25T15:32:39.6209326+01:00||;True|2026-02-25T15:03:49.5202958+01:00||;True|2026-02-25T14:49:40.4560899+01:00||;True|2026-02-25T10:41:35.9042956+01:00||;True|2026-02-25T10:33:42.2485129+01:00||;True|2026-02-25T10:05:23.9864404+01:00||;True|2026-02-24T20:45:52.7533529+01:00||;True|2026-02-24T17:49:48.6739610+01:00||;True|2026-02-24T14:30:47.0663499+01:00||;True|2026-02-24T09:28:30.5328425+01:00||;True|2026-02-24T08:40:15.6054714+01:00||;True|2026-02-24T07:59:34.6469067+01:00||;True|2026-02-24T07:30:03.4506392+01:00||;True|2026-02-23T08:26:05.4681353+01:00||;True|2026-02-22T10:44:29.6270572+01:00||;True|2026-02-22T10:41:26.3016875+01:00||;True|2026-02-22T10:30:20.0395713+01:00||;True|2026-02-22T10:06:09.3728289+01:00||;True|2026-02-20T11:11:41.2906293+01:00||;True|2026-02-20T10:46:35.4015642+01:00||;True|2026-02-20T09:45:14.8833885+01:00||;True|2026-02-20T07:32:39.1940489+01:00||;True|2026-02-18T09:12:43.1434580+01:00||;True|2026-02-17T15:15:14.8805757+01:00||;True|2026-02-17T11:09:40.4786451+01:00||;True|2026-02-17T10:45:37.3358353+01:00||;True|2026-02-17T10:33:30.6184470+01:00||;True|2026-02-16T18:55:30.1424518+01:00||;True|2026-02-16T18:01:46.0478978+01:00||;True|2026-02-16T14:51:53.3273467+01:00||;True|2026-02-16T14:12:09.6130777+01:00||;True|2026-02-16T11:21:18.5769808+01:00||;True|2026-02-16T10:08:08.4277947+01:00||;True|2026-02-16T09:52:01.8749049+01:00||;True|2026-02-16T08:13:22.5356518+01:00||;True|2026-02-13T12:36:18.0536988+01:00||;True|2026-02-13T07:29:34.9460520+01:00||;True|2026-02-13T07:27:07.4597689+01:00||;True|2026-02-13T07:23:53.8686289+01:00||;True|2026-02-13T07:21:55.2559788+01:00||;True|2026-02-13T07:19:52.5556550+01:00||;True|2026-02-13T07:18:16.9005327+01:00||;False|2026-02-13T07:17:55.2943268+01:00||;True|2026-02-13T07:16:44.2373881+01:00||;True|2026-02-13T07:14:10.2117483+01:00||;True|2026-02-13T07:06:07.9920856+01:00||;True|2026-02-13T06:48:45.3887087+01:00||;True|2026-02-12T09:21:36.9475377+01:00||;True|2026-02-11T09:09:26.3046534+01:00||;True|2026-02-09T12:16:03.1919757+01:00||;True|2026-02-09T10:52:16.6031577+01:00||;True|2026-02-09T10:43:50.3235884+01:00||;True|2026-02-09T10:32:56.5607905+01:00||;True|2026-02-09T09:28:25.4932552+01:00||;True|2026-02-09T09:11:35.2661821+01:00||;True|2026-02-09T09:09:05.8813514+01:00||;True|2026-02-09T08:54:25.9191904+01:00||;True|2026-02-09T08:41:16.2561697+01:00||;True|2026-02-09T08:22:16.8766070+01:00||;True|2026-02-09T08:09:42.8971751+01:00||;True|2026-02-08T11:04:49.3984275+01:00||;True|2026-02-08T11:00:30.1676134+01:00||;True|2026-02-08T10:02:58.9814683+01:00||;True|2026-02-08T09:53:57.1672910+01:00||;True|2026-02-08T09:50:45.8178289+01:00||;True|2026-02-08T09:47:06.6864472+01:00||;True|2026-02-08T09:44:42.9541012+01:00||;True|2026-02-08T09:44:34.5282303+01:00||;True|2026-02-08T09:42:53.1642218+01:00||;True|2026-02-07T20:47:10.6440687+01:00||;True|2026-02-07T20:45:09.1431081+01:00||;True|2026-02-07T20:43:29.6280085+01:00||; + True|2026-03-19T20:38:10.9526034Z||;True|2026-03-18T17:41:36.3493613+01:00||;True|2026-03-18T14:58:36.6641588+01:00||;True|2026-03-18T13:36:39.6754082+01:00||;True|2026-03-18T13:28:13.3767791+01:00||;True|2026-03-18T12:39:58.8696214+01:00||;True|2026-03-18T10:12:19.4421254+01:00||;True|2026-03-18T09:23:32.7324650+01:00||;True|2026-03-18T08:30:31.0127326+01:00||;True|2026-03-17T16:29:03.7106180+01:00||;True|2026-03-17T16:11:10.6005495+01:00||;True|2026-03-17T15:59:13.2348406+01:00||;True|2026-03-17T15:31:12.0317447+01:00||;True|2026-03-17T14:48:40.3877203+01:00||;True|2026-03-17T14:11:25.3562261+01:00||;True|2026-03-17T13:47:11.1326741+01:00||;True|2026-03-16T15:31:10.2555705+01:00||;True|2026-03-16T14:12:19.6773991+01:00||;True|2026-03-16T13:55:53.2937690+01:00||;True|2026-03-16T13:49:40.9223505+01:00||;True|2026-03-16T13:45:46.5476155+01:00||;True|2026-03-16T10:05:17.8849739+01:00||;True|2026-03-16T09:50:03.0002779+01:00||;True|2026-03-15T17:59:21.9961152+01:00||;True|2026-03-15T17:55:23.9254472+01:00||;False|2026-03-15T17:55:17.4934783+01:00||;True|2026-03-15T17:30:56.4581787+01:00||;True|2026-03-15T17:27:23.6999475+01:00||;True|2026-03-15T17:06:43.4082140+01:00||;True|2026-03-15T16:47:00.3514115+01:00||;True|2026-03-15T15:08:09.6821523+01:00||;True|2026-03-12T16:06:53.7395894+01:00||;True|2026-03-11T18:52:45.1428118+01:00||;True|2026-03-11T18:28:35.8258686+01:00||;True|2026-03-11T18:28:14.0116992+01:00||;True|2026-03-11T18:19:41.2917598+01:00||;True|2026-03-11T18:16:14.3982080+01:00||;True|2026-03-11T17:58:30.8611742+01:00||;True|2026-03-09T15:02:39.2942135+01:00||;True|2026-03-09T13:40:46.3543575+01:00||;True|2026-03-09T10:31:33.7382200+01:00||;True|2026-03-08T08:13:35.2118387+01:00||;True|2026-03-07T21:30:15.7021682+01:00||;True|2026-03-07T16:04:27.6676302+01:00||;True|2026-03-03T07:42:58.6695248+01:00||;True|2026-03-02T18:56:44.9083635+01:00||;True|2026-03-02T15:22:04.7632771+01:00||;True|2026-03-02T15:17:19.5888051+01:00||;True|2026-03-02T14:44:15.1850254+01:00||;False|2026-03-02T14:43:43.8750165+01:00||;True|2026-03-02T13:00:06.4813259+01:00||;True|2026-03-02T09:00:14.6639978+01:00||;True|2026-02-26T14:00:46.9137562+01:00||;True|2026-02-26T10:52:44.7996454+01:00||;True|2026-02-26T10:20:38.9297393+01:00||;True|2026-02-26T08:17:22.1709972+01:00||;True|2026-02-26T08:01:54.5490566+01:00||;True|2026-02-26T07:56:47.9173498+01:00||;True|2026-02-26T05:50:34.4180646+01:00||;True|2026-02-25T16:00:31.8051644+01:00||;True|2026-02-25T15:40:22.6200444+01:00||;True|2026-02-25T15:32:39.6209326+01:00||;True|2026-02-25T15:03:49.5202958+01:00||;True|2026-02-25T14:49:40.4560899+01:00||;True|2026-02-25T10:41:35.9042956+01:00||;True|2026-02-25T10:33:42.2485129+01:00||;True|2026-02-25T10:05:23.9864404+01:00||;True|2026-02-24T20:45:52.7533529+01:00||;True|2026-02-24T17:49:48.6739610+01:00||;True|2026-02-24T14:30:47.0663499+01:00||;True|2026-02-24T09:28:30.5328425+01:00||;True|2026-02-24T08:40:15.6054714+01:00||;True|2026-02-24T07:59:34.6469067+01:00||;True|2026-02-24T07:30:03.4506392+01:00||;True|2026-02-23T08:26:05.4681353+01:00||;True|2026-02-22T10:44:29.6270572+01:00||;True|2026-02-22T10:41:26.3016875+01:00||;True|2026-02-22T10:30:20.0395713+01:00||;True|2026-02-22T10:06:09.3728289+01:00||;True|2026-02-20T11:11:41.2906293+01:00||;True|2026-02-20T10:46:35.4015642+01:00||;True|2026-02-20T09:45:14.8833885+01:00||;True|2026-02-20T07:32:39.1940489+01:00||;True|2026-02-18T09:12:43.1434580+01:00||;True|2026-02-17T15:15:14.8805757+01:00||;True|2026-02-17T11:09:40.4786451+01:00||;True|2026-02-17T10:45:37.3358353+01:00||;True|2026-02-17T10:33:30.6184470+01:00||;True|2026-02-16T18:55:30.1424518+01:00||;True|2026-02-16T18:01:46.0478978+01:00||;True|2026-02-16T14:51:53.3273467+01:00||;True|2026-02-16T14:12:09.6130777+01:00||;True|2026-02-16T11:21:18.5769808+01:00||;True|2026-02-16T10:08:08.4277947+01:00||;True|2026-02-16T09:52:01.8749049+01:00||;True|2026-02-16T08:13:22.5356518+01:00||;True|2026-02-13T12:36:18.0536988+01:00||;True|2026-02-13T07:29:34.9460520+01:00||;True|2026-02-13T07:27:07.4597689+01:00||;True|2026-02-13T07:23:53.8686289+01:00||; 03/07/2026 13:31:30 + + 03/12/2026 17:43:43 + 03/06/2024 09:20:46 @@ -85,10 +88,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 06/02/2026 17:20:00 - 03/11/2026 18:09:30 + 03/18/2026 17:57:14 - 03/11/2026 18:09:30 + 03/18/2026 17:57:14 02/03/2026 12:58:54 @@ -97,13 +100,13 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 02/03/2026 12:58:54 - 03/11/2026 18:27:46 + 03/18/2026 17:51:04 09/18/2025 08:15:15 - 03/11/2026 18:27:46 + 03/18/2026 17:51:04 02/03/2026 12:58:54 @@ -142,13 +145,13 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 10/20/2023 22:35:04 - 03/11/2026 18:28:12 + 03/19/2026 21:38:09 03/11/2026 15:59:42 - 03/11/2026 18:28:12 + 03/19/2026 21:38:09 11/27/2023 09:49:58 @@ -166,22 +169,22 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 11/27/2023 09:50:04 - 03/11/2026 18:27:45 + 03/18/2026 10:12:08 - 03/11/2026 18:27:45 + 03/18/2026 10:12:08 06/02/2026 09:22:08 - 03/11/2026 18:24:26 + 03/18/2026 10:12:08 09/17/2025 15:09:13 - 03/11/2026 18:24:26 + 03/18/2026 10:12:08 12/11/2018 18:29:00 @@ -229,10 +232,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 11/04/2022 19:09:46 - 03/11/2026 18:27:45 + 03/18/2026 17:50:58 - 03/11/2026 18:27:45 + 03/18/2026 17:50:58 08/19/2014 21:33:57 @@ -253,10 +256,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 02/28/2026 16:23:58 - 03/11/2026 18:12:25 + 03/18/2026 12:53:27 - 03/11/2026 18:12:25 + 03/18/2026 12:53:27 02/03/2026 12:58:53 @@ -265,16 +268,16 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 02/03/2026 12:58:53 - 03/11/2026 18:28:11 + 03/19/2026 21:38:09 - 03/11/2026 18:28:11 + 03/19/2026 21:38:09 - 03/11/2026 18:28:12 + 03/19/2026 21:38:09 - 03/11/2026 18:28:12 + 03/19/2026 21:38:09 11/13/2012 13:19:34 @@ -379,31 +382,34 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 08/07/2017 03:30:56 - 08/01/2025 12:18:28 + 02/02/2026 08:57:48 08/01/2025 12:21:18 - 08/01/2025 12:24:08 + 02/02/2026 09:05:36 - 08/01/2025 12:29:16 + 02/02/2026 09:12:50 - 08/01/2025 12:14:22 + 02/02/2026 08:52:48 + + + 02/02/2026 09:00:38 - 08/01/2025 12:19:40 + 02/02/2026 08:59:18 - 08/01/2025 12:23:02 + 02/02/2026 09:03:38 - 08/01/2025 12:28:16 + 02/02/2026 09:11:40 - 08/01/2025 12:25:24 + 02/02/2026 09:07:00 02/19/2020 11:05:18 @@ -490,10 +496,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 03/04/2026 16:33:51 - 03/11/2026 18:19:04 + 03/15/2026 16:40:15 - 03/11/2026 18:19:04 + 03/15/2026 16:40:15 05/10/2016 15:11:52 @@ -508,7 +514,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 06/02/2026 17:20:00 - 03/08/2026 08:49:56 + 03/17/2026 13:46:05 03/06/2024 09:16:17 @@ -622,7 +628,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 07/19/2024 12:25:43 - 03/07/2026 19:26:47 + 03/17/2026 13:41:56 + + + 01/01/0001 00:00:00 03/06/2024 09:16:14 @@ -688,7 +697,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 01/10/2024 20:21:44 - 03/07/2026 12:46:11 + 03/13/2026 09:58:47 03/06/2024 08:11:55 @@ -697,13 +706,13 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 04/14/2025 18:11:03 - 07/19/2024 12:25:43 + 03/13/2026 10:00:16 03/06/2024 08:11:55 - 03/11/2026 18:16:13 + 03/18/2026 10:12:18 \ No newline at end of file diff --git a/API_NetFramework/Views/Web.config b/API_NetFramework/Views/Web.config index 717851e16..6656d08ef 100644 --- a/API_NetFramework/Views/Web.config +++ b/API_NetFramework/Views/Web.config @@ -31,6 +31,7 @@ + diff --git a/API_NetFramework/bin/DOCGEN.dll b/API_NetFramework/bin/DOCGEN.dll index 283c0c842..167882ef4 100644 Binary files a/API_NetFramework/bin/DOCGEN.dll and b/API_NetFramework/bin/DOCGEN.dll differ diff --git a/API_NetFramework/bin/DOCGEN.pdb b/API_NetFramework/bin/DOCGEN.pdb index dff9432d1..e5e184fb6 100644 Binary files a/API_NetFramework/bin/DOCGEN.pdb and b/API_NetFramework/bin/DOCGEN.pdb differ diff --git a/API_NetFramework/bin/DOCGEN.xml b/API_NetFramework/bin/DOCGEN.xml index 989f1867c..55d2d0e3f 100644 --- a/API_NetFramework/bin/DOCGEN.xml +++ b/API_NetFramework/bin/DOCGEN.xml @@ -4,6 +4,26 @@ DOCGEN + + + Replace the line breaks with paragraph marks in the Word document. + + + + + Iterate text body child elements. + + + + + Iterate table child elements. + + + + + Iterate paragraph child elements. + + Word to PDF-Konverter Das sind die Remarks diff --git a/API_NetFramework/bin/Model.dll b/API_NetFramework/bin/Model.dll index 92c9e3f11..cf235a080 100644 Binary files a/API_NetFramework/bin/Model.dll and b/API_NetFramework/bin/Model.dll differ diff --git a/API_NetFramework/bin/Model.pdb b/API_NetFramework/bin/Model.pdb index 1529be45d..2c70a6d51 100644 Binary files a/API_NetFramework/bin/Model.pdb and b/API_NetFramework/bin/Model.pdb differ diff --git a/API_NetFramework/bin/OnDocOffice.dll b/API_NetFramework/bin/OnDocOffice.dll index 475004c96..bd1280306 100644 Binary files a/API_NetFramework/bin/OnDocOffice.dll and b/API_NetFramework/bin/OnDocOffice.dll differ diff --git a/API_NetFramework/bin/OnDoc_NetFramework.dll b/API_NetFramework/bin/OnDoc_NetFramework.dll index 7b025819c..995176178 100644 Binary files a/API_NetFramework/bin/OnDoc_NetFramework.dll and b/API_NetFramework/bin/OnDoc_NetFramework.dll differ diff --git a/API_NetFramework/bin/OnDoc_NetFramework.pdb b/API_NetFramework/bin/OnDoc_NetFramework.pdb index b8e98d4e2..ffa272b54 100644 Binary files a/API_NetFramework/bin/OnDoc_NetFramework.pdb and b/API_NetFramework/bin/OnDoc_NetFramework.pdb differ diff --git a/API_NetFramework/bin/Versandstrasse.dll b/API_NetFramework/bin/Versandstrasse.dll index 0bf3424db..629fcfc98 100644 Binary files a/API_NetFramework/bin/Versandstrasse.dll and b/API_NetFramework/bin/Versandstrasse.dll differ diff --git a/API_NetFramework/log.txt b/API_NetFramework/log.txt index a6d7a0830..cd3068e78 100644 --- a/API_NetFramework/log.txt +++ b/API_NetFramework/log.txt @@ -112351,3 +112351,40910 @@ Die Anweisung wurde beendet. 2026-03-11 18:51:52.1221|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014562 2026-03-11 18:51:52.1221|INFO|DocLog|Dokument über API erstellt 2026-03-11 18:51:52.1221|INFO|APIDocLog|Dokument abgeschlossen +2026-03-12 16:10:59.1070|DEBUG|OnDoc| +2026-03-12 16:10:59.2014|DEBUG|OnDoc| +2026-03-12 16:10:59.2014|DEBUG|OnDoc| +2026-03-12 16:10:59.2130|DEBUG|OnDoc| +2026-03-12 16:13:01.6707|DEBUG|OnDoc| +2026-03-12 16:13:01.7921|DEBUG|OnDoc| +2026-03-12 16:13:01.7921|DEBUG|OnDoc| +2026-03-12 16:13:01.7921|DEBUG|OnDoc| +2026-03-12 16:14:54.3523|DEBUG|OnDoc| +2026-03-12 16:14:54.4482|DEBUG|OnDoc| +2026-03-12 16:14:54.4482|DEBUG|OnDoc| +2026-03-12 16:14:54.4482|DEBUG|OnDoc| +2026-03-12 16:22:10.0580|DEBUG|OnDoc| +2026-03-12 16:22:10.1438|DEBUG|OnDoc| +2026-03-12 16:22:10.1438|DEBUG|OnDoc| +2026-03-12 16:22:10.1438|DEBUG|OnDoc| +2026-03-12 16:26:07.3324|DEBUG|OnDoc| +2026-03-12 16:26:07.4214|DEBUG|OnDoc| +2026-03-12 16:26:07.4214|DEBUG|OnDoc| +2026-03-12 16:26:07.4214|DEBUG|OnDoc| +2026-03-12 16:27:20.8061|DEBUG|OnDoc| +2026-03-12 16:27:20.8855|DEBUG|OnDoc| +2026-03-12 16:27:20.8855|DEBUG|OnDoc| +2026-03-12 16:27:20.8855|DEBUG|OnDoc| +2026-03-12 16:28:34.4375|DEBUG|OnDoc| +2026-03-12 16:28:34.5281|DEBUG|OnDoc| +2026-03-12 16:28:34.5281|DEBUG|OnDoc| +2026-03-12 16:28:34.5281|DEBUG|OnDoc| +2026-03-12 16:29:25.1129|INFO|APIDocLog|DokumentGegnerator Start +2026-03-12 16:29:25.3812|INFO|APIDocLog|Start CreateCLM +2026-03-12 16:29:25.4063|INFO|APIDocLog|Input JSON +2026-03-12 16:29:25.4253|DEBUG|APIDocLog|Create CLMDocItem +2026-03-12 16:29:25.4905|DEBUG|OnDoc| +2026-03-12 16:29:25.5100|DEBUG|OnDoc| +2026-03-12 16:29:26.2448|DEBUG|OnDoc| +2026-03-12 16:29:26.2759|DEBUG|OnDoc| +2026-03-12 16:29:26.2899|DEBUG|OnDoc| +2026-03-12 16:29:26.2899|DEBUG|OnDoc| +2026-03-12 16:29:26.3058|INFO|OnDoc|Image-Bezug: 4 +2026-03-12 16:29:27.2990|DEBUG|OnDoc| +2026-03-12 16:29:27.2990|DEBUG|OnDoc| +2026-03-12 16:29:27.3389|DEBUG|APIDocLog|Start GenDocCLM +2026-03-12 16:29:27.3593|DEBUG|OnDoc| +2026-03-12 16:29:27.3593|DEBUG|OnDoc| +2026-03-12 16:29:27.3593|DEBUG|OnDoc| +2026-03-12 16:29:27.3685|DEBUG|OnDoc| +2026-03-12 16:29:27.3685|DEBUG|OnDoc| +2026-03-12 16:29:27.3685|DEBUG|OnDoc| +2026-03-12 16:29:27.4208|DEBUG|OnDoc| +2026-03-12 16:29:27.4208|DEBUG|OnDoc| +2026-03-12 16:29:27.7313|DEBUG|OnDoc| +2026-03-12 16:29:27.7313|DEBUG|OnDoc| +2026-03-12 16:29:27.7485|DEBUG|APIDocLog|DocGenerator +2026-03-12 16:29:27.7485|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-12 16:29:27.7485|DEBUG|OnDoc| +2026-03-12 16:29:27.7891|DEBUG|OnDoc| +2026-03-12 16:29:27.7891|DEBUG|OnDoc| +2026-03-12 16:29:27.7891|DEBUG|OnDoc| +2026-03-12 16:29:27.7891|DEBUG|OnDoc| +2026-03-12 16:29:27.8287|DEBUG|OnDoc| +2026-03-12 16:29:27.8287|DEBUG|OnDoc| +2026-03-12 16:29:27.8367|DEBUG|OnDoc| +2026-03-12 16:29:27.8367|DEBUG|OnDoc|Generate_Word +2026-03-12 16:29:28.2843|DEBUG|OnDoc|Word2013 +2026-03-12 16:29:28.2843|DEBUG|OnDoc|Word2013 +2026-03-12 16:29:30.0156|DEBUG|OnDoc|Generate_Word +2026-03-12 16:29:32.1668|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014583 +2026-03-12 16:29:32.1668|INFO|DocLog|Dokument über API erstellt +2026-03-12 16:29:32.1668|INFO|APIDocLog|Dokument abgeschlossen +2026-03-12 16:30:43.6645|DEBUG|OnDoc| +2026-03-12 16:30:43.7509|DEBUG|OnDoc| +2026-03-12 16:30:43.7509|DEBUG|OnDoc| +2026-03-12 16:30:43.7509|DEBUG|OnDoc| +2026-03-12 16:31:42.6576|DEBUG|OnDoc| +2026-03-12 16:31:42.7272|DEBUG|OnDoc| +2026-03-12 16:31:42.7272|DEBUG|OnDoc| +2026-03-12 16:31:42.7272|DEBUG|OnDoc| +2026-03-12 17:24:52.8227|DEBUG|OnDoc| +2026-03-12 17:24:52.9218|DEBUG|OnDoc| +2026-03-12 17:24:52.9218|DEBUG|OnDoc| +2026-03-12 17:24:52.9218|DEBUG|OnDoc| +2026-03-12 17:27:51.3231|DEBUG|OnDoc| +2026-03-12 17:27:51.3877|DEBUG|OnDoc| +2026-03-12 17:27:51.3877|DEBUG|OnDoc| +2026-03-12 17:27:51.3877|DEBUG|OnDoc| +2026-03-12 17:28:39.1012|DEBUG|OnDoc| +2026-03-12 17:28:39.1657|DEBUG|OnDoc| +2026-03-12 17:28:39.1657|DEBUG|OnDoc| +2026-03-12 17:28:39.1657|DEBUG|OnDoc| +2026-03-12 17:30:35.3475|DEBUG|OnDoc| +2026-03-12 17:30:35.4388|DEBUG|OnDoc| +2026-03-12 17:30:35.4388|DEBUG|OnDoc| +2026-03-12 17:30:35.4388|DEBUG|OnDoc| +2026-03-12 17:33:15.7651|DEBUG|OnDoc| +2026-03-12 17:33:15.8553|DEBUG|OnDoc| +2026-03-12 17:33:15.8553|DEBUG|OnDoc| +2026-03-12 17:33:15.8553|DEBUG|OnDoc| +2026-03-12 17:34:03.9639|DEBUG|OnDoc| +2026-03-12 17:34:04.0558|DEBUG|OnDoc| +2026-03-12 17:34:04.0558|DEBUG|OnDoc| +2026-03-12 17:34:04.0558|DEBUG|OnDoc| +2026-03-12 17:35:35.3644|DEBUG|OnDoc| +2026-03-12 17:35:35.4562|DEBUG|OnDoc| +2026-03-12 17:35:35.4562|DEBUG|OnDoc| +2026-03-12 17:35:35.4613|DEBUG|OnDoc| +2026-03-12 17:53:19.6834|DEBUG|OnDoc| +2026-03-12 17:53:19.7766|DEBUG|OnDoc| +2026-03-12 17:53:19.7766|DEBUG|OnDoc| +2026-03-12 17:53:19.7766|DEBUG|OnDoc| +2026-03-12 17:55:45.8699|DEBUG|OnDoc| +2026-03-12 17:55:45.9342|DEBUG|OnDoc| +2026-03-12 17:55:45.9342|DEBUG|OnDoc| +2026-03-12 17:55:45.9342|DEBUG|OnDoc| +2026-03-12 17:58:18.3129|DEBUG|OnDoc| +2026-03-12 17:58:18.4038|DEBUG|OnDoc| +2026-03-12 17:58:18.4038|DEBUG|OnDoc| +2026-03-12 17:58:18.4038|DEBUG|OnDoc| +2026-03-12 17:58:59.5585|DEBUG|OnDoc| +2026-03-12 17:58:59.6503|DEBUG|OnDoc| +2026-03-12 17:58:59.6503|DEBUG|OnDoc| +2026-03-12 17:58:59.6503|DEBUG|OnDoc| +2026-03-12 18:01:19.0429|DEBUG|OnDoc| +2026-03-12 18:01:19.1343|DEBUG|OnDoc| +2026-03-12 18:01:19.1343|DEBUG|OnDoc| +2026-03-12 18:01:19.1343|DEBUG|OnDoc| +2026-03-12 18:02:42.3045|DEBUG|OnDoc| +2026-03-12 18:02:42.3959|DEBUG|OnDoc| +2026-03-12 18:02:42.3991|DEBUG|OnDoc| +2026-03-12 18:02:42.3991|DEBUG|OnDoc| +2026-03-12 18:04:13.7750|DEBUG|OnDoc| +2026-03-12 18:04:13.8732|DEBUG|OnDoc| +2026-03-12 18:04:13.8732|DEBUG|OnDoc| +2026-03-12 18:04:13.8732|DEBUG|OnDoc| +2026-03-12 18:05:06.9405|DEBUG|OnDoc| +2026-03-12 18:05:07.0348|DEBUG|OnDoc| +2026-03-12 18:05:07.0348|DEBUG|OnDoc| +2026-03-12 18:05:07.0398|DEBUG|OnDoc| +2026-03-13 09:11:09.8053|DEBUG|OnDoc| +2026-03-13 09:11:09.8976|DEBUG|OnDoc| +2026-03-13 09:11:09.9019|DEBUG|OnDoc| +2026-03-13 09:11:09.9019|DEBUG|OnDoc| +2026-03-13 09:22:00.9407|DEBUG|OnDoc| +2026-03-13 09:22:01.0369|DEBUG|OnDoc| +2026-03-13 09:22:01.0399|DEBUG|OnDoc| +2026-03-13 09:22:01.0399|DEBUG|OnDoc| +2026-03-13 09:22:47.6309|DEBUG|OnDoc| +2026-03-13 09:22:47.7209|DEBUG|OnDoc| +2026-03-13 09:22:47.7209|DEBUG|OnDoc| +2026-03-13 09:22:47.7264|DEBUG|OnDoc| +2026-03-13 09:23:18.2578|DEBUG|OnDoc| +2026-03-13 09:23:18.3470|DEBUG|OnDoc| +2026-03-13 09:23:18.3470|DEBUG|OnDoc| +2026-03-13 09:23:18.3470|DEBUG|OnDoc| +2026-03-13 09:30:43.2196|INFO|APIDocLog|DokumentGegnerator Start +2026-03-13 09:30:43.4477|INFO|APIDocLog|Start CreateCLM +2026-03-13 09:30:43.4863|INFO|APIDocLog|Input JSON +2026-03-13 09:30:43.5061|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-03-13 09:35:38.2009|DEBUG|OnDoc| +2026-03-13 09:35:38.2558|DEBUG|OnDoc| +2026-03-13 09:35:38.2578|DEBUG|OnDoc| +2026-03-13 09:35:38.2578|DEBUG|OnDoc| +2026-03-13 09:41:18.6095|DEBUG|OnDoc| +2026-03-13 09:41:18.6496|DEBUG|OnDoc| +2026-03-13 09:41:18.6496|DEBUG|OnDoc| +2026-03-13 09:41:18.6496|DEBUG|OnDoc| +2026-03-13 09:48:51.9638|DEBUG|OnDoc| +2026-03-13 09:48:52.0093|DEBUG|OnDoc| +2026-03-13 09:48:52.0093|DEBUG|OnDoc| +2026-03-13 09:48:52.0093|DEBUG|OnDoc| +2026-03-13 09:49:46.0342|INFO|APIDocLog|DokumentGegnerator Start +2026-03-13 09:49:46.2243|INFO|APIDocLog|Start CreateCLM +2026-03-13 09:49:46.2574|INFO|APIDocLog|Input JSON +2026-03-13 09:49:46.2791|DEBUG|APIDocLog|Create CLMDocItem +2026-03-13 09:49:46.3495|DEBUG|OnDoc| +2026-03-13 09:49:46.3621|DEBUG|OnDoc| +2026-03-13 09:49:47.2142|DEBUG|OnDoc| +2026-03-13 09:49:47.2142|DEBUG|OnDoc| +2026-03-13 09:49:47.2391|DEBUG|OnDoc| +2026-03-13 09:49:47.2427|DEBUG|OnDoc| +2026-03-13 09:49:47.2427|INFO|OnDoc|Image-Bezug: 4 +2026-03-13 09:49:49.6637|DEBUG|OnDoc| +2026-03-13 09:49:49.6747|DEBUG|OnDoc| +2026-03-13 09:49:49.7112|DEBUG|APIDocLog|Start GenDocCLM +2026-03-13 09:49:49.7314|DEBUG|OnDoc| +2026-03-13 09:49:49.7314|DEBUG|OnDoc| +2026-03-13 09:49:49.7314|DEBUG|OnDoc| +2026-03-13 09:49:49.7314|DEBUG|OnDoc| +2026-03-13 09:49:49.7314|DEBUG|OnDoc| +2026-03-13 09:49:49.7314|DEBUG|OnDoc| +2026-03-13 09:49:49.7888|DEBUG|OnDoc| +2026-03-13 09:49:49.7908|DEBUG|OnDoc| +2026-03-13 09:49:49.8459|DEBUG|OnDoc| +2026-03-13 09:49:49.8459|DEBUG|OnDoc| +2026-03-13 09:49:49.8609|DEBUG|APIDocLog|DocGenerator +2026-03-13 09:49:49.8682|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-13 09:49:49.8682|DEBUG|OnDoc| +2026-03-13 09:49:49.8897|DEBUG|OnDoc| +2026-03-13 09:49:49.8897|DEBUG|OnDoc| +2026-03-13 09:49:49.8897|DEBUG|OnDoc| +2026-03-13 09:49:49.8897|DEBUG|OnDoc| +2026-03-13 09:49:49.9081|DEBUG|OnDoc| +2026-03-13 09:49:49.9081|DEBUG|OnDoc| +2026-03-13 09:49:49.9161|DEBUG|OnDoc| +2026-03-13 09:49:49.9161|DEBUG|OnDoc|Generate_Word +2026-03-13 09:49:50.3581|DEBUG|OnDoc|Word2013 +2026-03-13 09:49:50.3681|DEBUG|OnDoc|Word2013 +2026-03-13 09:49:51.5467|DEBUG|OnDoc|Generate_Word +2026-03-13 09:49:52.8784|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014599 +2026-03-13 09:49:52.8784|INFO|DocLog|Dokument über API erstellt +2026-03-13 09:49:52.8784|INFO|APIDocLog|Dokument abgeschlossen +2026-03-13 09:55:50.5175|DEBUG|OnDoc| +2026-03-13 09:55:50.6091|DEBUG|OnDoc| +2026-03-13 09:55:50.6091|DEBUG|OnDoc| +2026-03-13 09:55:50.6091|DEBUG|OnDoc| +2026-03-13 09:56:24.9495|DEBUG|OnDoc| +2026-03-13 09:56:25.0369|DEBUG|OnDoc| +2026-03-13 09:56:25.0399|DEBUG|OnDoc| +2026-03-13 09:56:25.0399|DEBUG|OnDoc| +2026-03-13 09:58:58.3818|DEBUG|OnDoc| +2026-03-13 09:58:58.4739|DEBUG|OnDoc| +2026-03-13 09:58:58.4771|DEBUG|OnDoc| +2026-03-13 09:58:58.4771|DEBUG|OnDoc| +2026-03-13 09:59:36.0776|DEBUG|OnDoc| +2026-03-13 09:59:36.1702|DEBUG|OnDoc| +2026-03-13 09:59:36.1702|DEBUG|OnDoc| +2026-03-13 09:59:36.1702|DEBUG|OnDoc| +2026-03-13 10:38:15.2658|DEBUG|OnDoc| +2026-03-13 10:38:15.3294|DEBUG|OnDoc| +2026-03-13 10:38:15.3294|DEBUG|OnDoc| +2026-03-13 10:38:15.3294|DEBUG|OnDoc| +2026-03-13 10:39:43.2059|DEBUG|OnDoc| +2026-03-13 10:39:43.2954|DEBUG|OnDoc| +2026-03-13 10:39:43.2954|DEBUG|OnDoc| +2026-03-13 10:39:43.2954|DEBUG|OnDoc| +2026-03-15 15:48:37.7665|DEBUG|OnDoc| +2026-03-15 15:48:37.8719|DEBUG|OnDoc| +2026-03-15 15:48:37.8719|DEBUG|OnDoc| +2026-03-15 15:48:37.8759|DEBUG|OnDoc| +2026-03-15 15:49:50.4075|DEBUG|OnDoc| +2026-03-15 15:49:50.4992|DEBUG|OnDoc| +2026-03-15 15:49:50.5022|DEBUG|OnDoc| +2026-03-15 15:49:50.5022|DEBUG|OnDoc| +2026-03-15 15:50:05.0726|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 15:50:11.9487|INFO|APIDocLog|Start CreateCLM +2026-03-15 15:50:11.9794|INFO|APIDocLog|Input JSON +2026-03-15 15:50:11.9944|DEBUG|APIDocLog|Create CLMDocItem +2026-03-15 15:50:12.0588|DEBUG|OnDoc| +2026-03-15 15:50:12.0648|DEBUG|OnDoc| +2026-03-15 15:50:26.1728|DEBUG|OnDoc| +2026-03-15 15:50:26.2084|DEBUG|OnDoc| +2026-03-15 15:50:26.2192|DEBUG|OnDoc| +2026-03-15 15:50:26.2192|DEBUG|OnDoc| +2026-03-15 15:50:26.2192|INFO|OnDoc|Image-Bezug: 4 +2026-03-15 15:50:27.7319|DEBUG|OnDoc| +2026-03-15 15:50:27.7419|DEBUG|OnDoc| +2026-03-15 15:50:27.7845|DEBUG|APIDocLog|Start GenDocCLM +2026-03-15 15:50:27.8026|DEBUG|OnDoc| +2026-03-15 15:50:27.8026|DEBUG|OnDoc| +2026-03-15 15:50:27.8026|DEBUG|OnDoc| +2026-03-15 15:50:27.8026|DEBUG|OnDoc| +2026-03-15 15:50:27.8026|DEBUG|OnDoc| +2026-03-15 15:50:27.8026|DEBUG|OnDoc| +2026-03-15 15:50:27.8535|DEBUG|OnDoc| +2026-03-15 15:50:27.8535|DEBUG|OnDoc| +2026-03-15 15:50:27.8878|DEBUG|OnDoc| +2026-03-15 15:50:27.8878|DEBUG|OnDoc| +2026-03-15 15:50:27.9003|DEBUG|APIDocLog|DocGenerator +2026-03-15 15:50:27.9068|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-15 15:50:27.9068|DEBUG|OnDoc| +2026-03-15 15:50:27.9068|DEBUG|OnDoc| +2026-03-15 15:50:27.9068|DEBUG|OnDoc| +2026-03-15 15:50:27.9068|DEBUG|OnDoc| +2026-03-15 15:50:27.9068|DEBUG|OnDoc| +2026-03-15 15:50:27.9267|DEBUG|OnDoc| +2026-03-15 15:50:27.9267|DEBUG|OnDoc| +2026-03-15 15:50:27.9267|DEBUG|OnDoc| +2026-03-15 15:50:27.9267|DEBUG|OnDoc|Generate_Word +2026-03-15 15:50:28.4009|DEBUG|OnDoc|Word2013 +2026-03-15 15:50:28.4095|DEBUG|OnDoc|Word2013 +2026-03-15 15:50:29.4530|DEBUG|OnDoc|Generate_Word +2026-03-15 15:50:30.9045|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014606 +2026-03-15 15:50:30.9045|INFO|DocLog|Dokument über API erstellt +2026-03-15 15:50:30.9045|INFO|APIDocLog|Dokument abgeschlossen +2026-03-15 16:21:44.1464|DEBUG|OnDoc| +2026-03-15 16:21:44.2350|DEBUG|OnDoc| +2026-03-15 16:21:44.2350|DEBUG|OnDoc| +2026-03-15 16:21:44.2350|DEBUG|OnDoc| +2026-03-15 16:24:21.3259|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 16:24:21.5400|INFO|APIDocLog|Start CreateDoc +2026-03-15 16:24:21.6025|INFO|APIDocLog|Input JSON +2026-03-15 16:24:21.6274|DEBUG|OnDoc|Start GenDoc +2026-03-15 16:24:21.6274|DEBUG|OnDoc| +2026-03-15 16:24:21.6274|DEBUG|OnDoc| +2026-03-15 16:24:21.6274|DEBUG|OnDoc| +2026-03-15 16:24:21.6274|DEBUG|OnDoc| +2026-03-15 16:24:21.6274|DEBUG|OnDoc| +2026-03-15 16:24:21.6274|DEBUG|OnDoc| +2026-03-15 16:24:21.6274|DEBUG|OnDoc| +2026-03-15 16:24:21.6274|DEBUG|OnDoc| +2026-03-15 16:24:21.6274|DEBUG|OnDoc| +2026-03-15 16:24:21.6274|DEBUG|OnDoc| +2026-03-15 16:24:21.6437|DEBUG|OnDoc| +2026-03-15 16:24:21.6437|DEBUG|OnDoc| +2026-03-15 16:24:21.6437|DEBUG|OnDoc| +2026-03-15 16:24:21.6437|DEBUG|OnDoc| +2026-03-15 16:24:21.6437|DEBUG|OnDoc| +2026-03-15 16:24:21.6437|DEBUG|OnDoc| +2026-03-15 16:24:21.6830|DEBUG|OnDoc| +2026-03-15 16:24:21.6830|DEBUG|OnDoc| +2026-03-15 16:24:21.6830|DEBUG|OnDoc| +2026-03-15 16:24:21.6881|DEBUG|OnDoc| +2026-03-15 16:24:21.6881|DEBUG|OnDoc| +2026-03-15 16:24:21.6881|DEBUG|OnDoc| +2026-03-15 16:24:21.6881|DEBUG|OnDoc| +2026-03-15 16:24:21.6881|DEBUG|OnDoc| +2026-03-15 16:24:21.6881|DEBUG|OnDoc| +2026-03-15 16:24:21.6881|DEBUG|OnDoc| +2026-03-15 16:24:21.6881|DEBUG|OnDoc| +2026-03-15 16:24:21.6881|DEBUG|OnDoc| +2026-03-15 16:24:21.6881|DEBUG|OnDoc| +2026-03-15 16:24:21.6881|DEBUG|OnDoc| +2026-03-15 16:24:21.7524|DEBUG|OnDoc| +2026-03-15 16:24:21.7524|DEBUG|OnDoc| +2026-03-15 16:24:21.7822|DEBUG|OnDoc| +2026-03-15 16:24:21.7977|DEBUG|OnDoc| +2026-03-15 16:24:21.7977|DEBUG|OnDoc| +2026-03-15 16:24:21.7977|DEBUG|OnDoc| +2026-03-15 16:24:21.8157|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-15 16:24:21.8157|DEBUG|OnDoc| +2026-03-15 16:24:21.8157|DEBUG|OnDoc| +2026-03-15 16:24:21.8157|DEBUG|OnDoc| +2026-03-15 16:24:21.8157|DEBUG|OnDoc| +2026-03-15 16:24:21.8157|DEBUG|OnDoc| +2026-03-15 16:24:21.8599|DEBUG|OnDoc| +2026-03-15 16:24:21.8599|DEBUG|OnDoc| +2026-03-15 16:24:21.8599|DEBUG|OnDoc| +2026-03-15 16:24:21.8599|DEBUG|OnDoc|Generate_Word +2026-03-15 16:24:22.2936|DEBUG|OnDoc|Word2013 +2026-03-15 16:24:22.3031|DEBUG|OnDoc|Word2013 +2026-03-15 16:24:24.1823|DEBUG|OnDoc|Generate_Word +2026-03-15 16:24:24.2250|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014614 +2026-03-15 16:24:24.2250|INFO|DocLog|Dokument über API erstellt +2026-03-15 16:24:24.2250|INFO|APIDocLog|Dokument return to sender +2026-03-15 16:24:24.2250|DEBUG|OnDoc| +2026-03-15 16:24:24.2250|DEBUG|OnDoc| +2026-03-15 16:24:24.2250|DEBUG|OnDoc| +2026-03-15 16:24:24.2347|DEBUG|OnDoc| +2026-03-15 16:24:24.2347|DEBUG|OnDoc| +2026-03-15 16:24:24.2347|DEBUG|OnDoc| +2026-03-15 16:26:37.5458|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 16:26:49.7521|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-03-15 16:26:49.8075|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-03-15 16:26:59.5584|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 16:27:11.6797|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-03-15 16:27:11.7147|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-03-15 16:27:30.4606|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 16:27:55.4824|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-03-15 16:27:55.5177|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-03-15 16:28:13.3008|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 16:28:13.3651|INFO|APIDocLog|Start CreateDoc +2026-03-15 16:28:13.3863|INFO|APIDocLog|Input JSON +2026-03-15 16:28:13.3863|DEBUG|OnDoc|Start GenDoc +2026-03-15 16:28:13.3863|DEBUG|OnDoc| +2026-03-15 16:28:13.3919|DEBUG|OnDoc| +2026-03-15 16:28:13.3919|DEBUG|OnDoc| +2026-03-15 16:28:13.3919|DEBUG|OnDoc| +2026-03-15 16:28:13.3919|DEBUG|OnDoc| +2026-03-15 16:28:13.3919|DEBUG|OnDoc| +2026-03-15 16:28:13.3919|DEBUG|OnDoc| +2026-03-15 16:28:13.3919|DEBUG|OnDoc| +2026-03-15 16:28:13.3919|DEBUG|OnDoc| +2026-03-15 16:28:13.3919|DEBUG|OnDoc| +2026-03-15 16:28:13.3919|DEBUG|OnDoc| +2026-03-15 16:28:13.3919|DEBUG|OnDoc| +2026-03-15 16:28:13.3919|ERROR|APIDocLog|Error Verify +2026-03-15 16:28:25.4622|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-03-15 16:28:25.4976|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-03-15 16:28:33.4294|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 16:28:53.8392|INFO|APIDocLog|Start CreateDoc +2026-03-15 16:28:55.8803|INFO|APIDocLog|Input JSON +2026-03-15 16:28:58.4398|DEBUG|OnDoc|Start GenDoc +2026-03-15 16:28:58.4398|DEBUG|OnDoc| +2026-03-15 16:28:58.4398|DEBUG|OnDoc| +2026-03-15 16:28:58.4398|DEBUG|OnDoc| +2026-03-15 16:28:58.4398|DEBUG|OnDoc| +2026-03-15 16:28:58.4398|DEBUG|OnDoc| +2026-03-15 16:28:58.4398|DEBUG|OnDoc| +2026-03-15 16:28:58.4398|DEBUG|OnDoc| +2026-03-15 16:28:58.4538|DEBUG|OnDoc| +2026-03-15 16:28:58.4538|DEBUG|OnDoc| +2026-03-15 16:28:58.4538|DEBUG|OnDoc| +2026-03-15 16:28:58.4538|DEBUG|OnDoc| +2026-03-15 16:28:58.4538|DEBUG|OnDoc| +2026-03-15 16:28:59.2662|ERROR|APIDocLog|Error Verify +2026-03-15 16:29:24.0759|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-03-15 16:29:24.1109|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-03-15 16:29:40.5689|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 16:29:43.7776|INFO|APIDocLog|Start CreateDoc +2026-03-15 16:29:44.4610|INFO|APIDocLog|Input JSON +2026-03-15 16:29:46.8611|DEBUG|OnDoc|Start GenDoc +2026-03-15 16:29:46.8611|DEBUG|OnDoc| +2026-03-15 16:29:46.8611|DEBUG|OnDoc| +2026-03-15 16:29:46.8611|DEBUG|OnDoc| +2026-03-15 16:29:46.8611|DEBUG|OnDoc| +2026-03-15 16:29:46.8611|DEBUG|OnDoc| +2026-03-15 16:29:46.8611|DEBUG|OnDoc| +2026-03-15 16:29:46.8611|DEBUG|OnDoc| +2026-03-15 16:29:46.8611|DEBUG|OnDoc| +2026-03-15 16:29:46.8611|DEBUG|OnDoc| +2026-03-15 16:29:46.8611|DEBUG|OnDoc| +2026-03-15 16:29:46.8611|DEBUG|OnDoc| +2026-03-15 16:29:46.8766|DEBUG|OnDoc| +2026-03-15 16:29:46.8766|DEBUG|OnDoc| +2026-03-15 16:29:46.8766|DEBUG|OnDoc| +2026-03-15 16:29:52.4418|DEBUG|OnDoc| +2026-03-15 16:29:52.4807|DEBUG|OnDoc| +2026-03-15 16:29:52.4807|DEBUG|OnDoc| +2026-03-15 16:29:52.4807|DEBUG|OnDoc| +2026-03-15 16:29:52.4807|DEBUG|OnDoc| +2026-03-15 16:29:52.4807|DEBUG|OnDoc| +2026-03-15 16:29:52.4852|DEBUG|OnDoc| +2026-03-15 16:29:52.4852|DEBUG|OnDoc| +2026-03-15 16:29:52.4852|DEBUG|OnDoc| +2026-03-15 16:29:52.4852|DEBUG|OnDoc| +2026-03-15 16:29:52.4852|DEBUG|OnDoc| +2026-03-15 16:29:52.4852|DEBUG|OnDoc| +2026-03-15 16:29:52.4852|DEBUG|OnDoc| +2026-03-15 16:29:52.4852|DEBUG|OnDoc| +2026-03-15 16:29:52.4852|DEBUG|OnDoc| +2026-03-15 16:29:52.4852|DEBUG|OnDoc| +2026-03-15 16:29:52.4852|DEBUG|OnDoc| +2026-03-15 16:29:52.4852|DEBUG|OnDoc| +2026-03-15 16:29:52.5024|DEBUG|OnDoc| +2026-03-15 16:29:52.5024|DEBUG|OnDoc| +2026-03-15 16:29:52.5189|DEBUG|OnDoc| +2026-03-15 16:29:52.5189|DEBUG|OnDoc| +2026-03-15 16:29:52.5189|DEBUG|OnDoc| +2026-03-15 16:29:52.5189|DEBUG|OnDoc| +2026-03-15 16:30:01.1627|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-15 16:30:06.2485|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 16:30:06.3138|INFO|APIDocLog|Start CreateDoc +2026-03-15 16:30:06.3334|INFO|APIDocLog|Input JSON +2026-03-15 16:30:06.3334|DEBUG|OnDoc|Start GenDoc +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3334|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3450|DEBUG|OnDoc| +2026-03-15 16:30:06.3673|DEBUG|OnDoc| +2026-03-15 16:30:06.3673|DEBUG|OnDoc| +2026-03-15 16:30:06.3773|DEBUG|OnDoc| +2026-03-15 16:30:06.3773|DEBUG|OnDoc| +2026-03-15 16:30:06.3773|DEBUG|OnDoc| +2026-03-15 16:30:06.3773|DEBUG|OnDoc| +2026-03-15 16:30:06.3974|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-15 16:30:18.9740|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 16:30:19.1092|INFO|APIDocLog|Start CreateDoc +2026-03-15 16:30:19.1318|INFO|APIDocLog|Input JSON +2026-03-15 16:30:19.1318|DEBUG|OnDoc|Start GenDoc +2026-03-15 16:30:19.1318|DEBUG|OnDoc| +2026-03-15 16:30:19.1318|DEBUG|OnDoc| +2026-03-15 16:30:19.1318|DEBUG|OnDoc| +2026-03-15 16:30:19.1318|DEBUG|OnDoc| +2026-03-15 16:30:19.1318|DEBUG|OnDoc| +2026-03-15 16:30:19.1318|DEBUG|OnDoc| +2026-03-15 16:30:19.1318|DEBUG|OnDoc| +2026-03-15 16:30:19.1318|DEBUG|OnDoc| +2026-03-15 16:30:19.1318|DEBUG|OnDoc| +2026-03-15 16:30:19.1318|DEBUG|OnDoc| +2026-03-15 16:30:19.1318|DEBUG|OnDoc| +2026-03-15 16:30:19.1318|DEBUG|OnDoc| +2026-03-15 16:30:19.1318|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1415|DEBUG|OnDoc| +2026-03-15 16:30:19.1595|DEBUG|OnDoc| +2026-03-15 16:30:19.1595|DEBUG|OnDoc| +2026-03-15 16:30:19.1595|DEBUG|OnDoc| +2026-03-15 16:30:19.1595|DEBUG|OnDoc| +2026-03-15 16:30:19.1595|DEBUG|OnDoc| +2026-03-15 16:30:19.1595|DEBUG|OnDoc| +2026-03-15 16:30:19.1888|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-15 16:30:27.5323|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 16:30:27.5997|INFO|APIDocLog|Start CreateDoc +2026-03-15 16:30:27.6207|INFO|APIDocLog|Input JSON +2026-03-15 16:30:27.6207|DEBUG|OnDoc|Start GenDoc +2026-03-15 16:30:27.6207|DEBUG|OnDoc| +2026-03-15 16:30:27.6207|DEBUG|OnDoc| +2026-03-15 16:30:27.6207|DEBUG|OnDoc| +2026-03-15 16:30:27.6207|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6265|DEBUG|OnDoc| +2026-03-15 16:30:27.6511|DEBUG|OnDoc| +2026-03-15 16:30:27.6511|DEBUG|OnDoc| +2026-03-15 16:30:27.6597|DEBUG|OnDoc| +2026-03-15 16:30:27.6597|DEBUG|OnDoc| +2026-03-15 16:30:27.6597|DEBUG|OnDoc| +2026-03-15 16:30:27.6597|DEBUG|OnDoc| +2026-03-15 16:30:27.6804|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-15 16:30:34.4017|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 16:30:34.4653|INFO|APIDocLog|Start CreateDoc +2026-03-15 16:30:34.4860|INFO|APIDocLog|Input JSON +2026-03-15 16:30:34.4860|DEBUG|OnDoc|Start GenDoc +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.4860|DEBUG|OnDoc| +2026-03-15 16:30:34.5018|DEBUG|OnDoc| +2026-03-15 16:30:34.5018|DEBUG|OnDoc| +2026-03-15 16:30:34.5018|DEBUG|OnDoc| +2026-03-15 16:30:34.5018|DEBUG|OnDoc| +2026-03-15 16:30:34.5018|DEBUG|OnDoc| +2026-03-15 16:30:34.5018|DEBUG|OnDoc| +2026-03-15 16:30:34.5018|DEBUG|OnDoc| +2026-03-15 16:30:34.5018|DEBUG|OnDoc| +2026-03-15 16:30:34.5167|DEBUG|OnDoc| +2026-03-15 16:30:34.5167|DEBUG|OnDoc| +2026-03-15 16:30:34.5167|DEBUG|OnDoc| +2026-03-15 16:30:34.5167|DEBUG|OnDoc| +2026-03-15 16:30:34.5167|DEBUG|OnDoc| +2026-03-15 16:30:34.5167|DEBUG|OnDoc| +2026-03-15 16:30:34.5435|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-15 16:30:50.5202|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 16:30:52.6960|INFO|APIDocLog|Start CreateDoc +2026-03-15 16:30:56.9287|INFO|APIDocLog|Input JSON +2026-03-15 16:31:08.4049|DEBUG|OnDoc|Start GenDoc +2026-03-15 16:31:08.4403|DEBUG|OnDoc| +2026-03-15 16:31:08.4403|DEBUG|OnDoc| +2026-03-15 16:31:08.4403|DEBUG|OnDoc| +2026-03-15 16:31:08.4403|DEBUG|OnDoc| +2026-03-15 16:31:08.4403|DEBUG|OnDoc| +2026-03-15 16:31:08.4403|DEBUG|OnDoc| +2026-03-15 16:31:08.4403|DEBUG|OnDoc| +2026-03-15 16:31:08.4403|DEBUG|OnDoc| +2026-03-15 16:31:08.4403|DEBUG|OnDoc| +2026-03-15 16:31:08.4403|DEBUG|OnDoc| +2026-03-15 16:31:08.4403|DEBUG|OnDoc| +2026-03-15 16:31:08.4403|DEBUG|OnDoc| +2026-03-15 16:31:08.4403|DEBUG|OnDoc| +2026-03-15 16:31:08.4403|DEBUG|OnDoc| +2026-03-15 16:31:21.7320|DEBUG|OnDoc| +2026-03-15 16:31:21.7920|DEBUG|OnDoc| +2026-03-15 16:31:21.7920|DEBUG|OnDoc| +2026-03-15 16:31:21.7920|DEBUG|OnDoc| +2026-03-15 16:31:21.7920|DEBUG|OnDoc| +2026-03-15 16:31:21.7920|DEBUG|OnDoc| +2026-03-15 16:31:21.7920|DEBUG|OnDoc| +2026-03-15 16:31:21.7975|DEBUG|OnDoc| +2026-03-15 16:31:21.7975|DEBUG|OnDoc| +2026-03-15 16:31:21.7975|DEBUG|OnDoc| +2026-03-15 16:31:21.7975|DEBUG|OnDoc| +2026-03-15 16:31:21.7975|DEBUG|OnDoc| +2026-03-15 16:31:21.7975|DEBUG|OnDoc| +2026-03-15 16:31:21.7975|DEBUG|OnDoc| +2026-03-15 16:31:21.7975|DEBUG|OnDoc| +2026-03-15 16:31:21.7975|DEBUG|OnDoc| +2026-03-15 16:31:21.7975|DEBUG|OnDoc| +2026-03-15 16:31:21.7975|DEBUG|OnDoc| +2026-03-15 16:31:21.7975|DEBUG|OnDoc| +2026-03-15 16:31:21.8135|DEBUG|OnDoc| +2026-03-15 16:31:21.8135|DEBUG|OnDoc| +2026-03-15 16:31:21.8135|DEBUG|OnDoc| +2026-03-15 16:31:21.8135|DEBUG|OnDoc| +2026-03-15 16:31:21.8135|DEBUG|OnDoc| +2026-03-15 16:31:26.2360|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-15 16:31:42.3052|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 16:31:43.8119|INFO|APIDocLog|Start CreateDoc +2026-03-15 16:31:43.8407|INFO|APIDocLog|Input JSON +2026-03-15 16:31:43.8407|DEBUG|OnDoc|Start GenDoc +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8447|DEBUG|OnDoc| +2026-03-15 16:31:43.8601|DEBUG|OnDoc| +2026-03-15 16:31:43.8601|DEBUG|OnDoc| +2026-03-15 16:31:43.8601|DEBUG|OnDoc| +2026-03-15 16:31:43.8601|DEBUG|OnDoc| +2026-03-15 16:31:43.8792|DEBUG|OnDoc| +2026-03-15 16:31:43.8792|DEBUG|OnDoc| +2026-03-15 16:31:43.8792|DEBUG|OnDoc| +2026-03-15 16:31:43.8792|DEBUG|OnDoc| +2026-03-15 16:31:43.8915|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-15 16:31:43.8915|DEBUG|OnDoc| +2026-03-15 16:31:43.8915|DEBUG|OnDoc| +2026-03-15 16:31:43.8915|DEBUG|OnDoc| +2026-03-15 16:31:43.8915|DEBUG|OnDoc| +2026-03-15 16:31:43.8915|DEBUG|OnDoc| +2026-03-15 16:31:43.8915|DEBUG|OnDoc| +2026-03-15 16:31:43.8915|DEBUG|OnDoc| +2026-03-15 16:31:43.9094|DEBUG|OnDoc| +2026-03-15 16:31:43.9094|DEBUG|OnDoc|Generate_Word +2026-03-15 16:31:43.9094|DEBUG|OnDoc|Word2013 +2026-03-15 16:31:43.9094|DEBUG|OnDoc|Word2013 +2026-03-15 16:31:44.4655|DEBUG|OnDoc|Generate_Word +2026-03-15 16:31:44.4772|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014680 +2026-03-15 16:31:44.4772|INFO|DocLog|Dokument über API erstellt +2026-03-15 16:31:44.4772|DEBUG|OnDoc| +2026-03-15 16:31:44.4867|DEBUG|OnDoc| +2026-03-15 16:31:44.4867|DEBUG|OnDoc| +2026-03-15 16:31:44.5298|DEBUG|OnDoc| +2026-03-15 16:31:44.5298|DEBUG|OnDoc| +2026-03-15 16:31:44.5348|DEBUG|OnDoc| +2026-03-15 16:31:44.5348|DEBUG|OnDoc| +2026-03-15 16:31:44.5348|DEBUG|OnDoc| +2026-03-15 16:31:44.5348|DEBUG|OnDoc| +2026-03-15 16:31:44.5348|DEBUG|OnDoc| +2026-03-15 16:31:44.5348|DEBUG|OnDoc| +2026-03-15 16:31:44.5348|DEBUG|OnDoc| +2026-03-15 16:31:44.6669|DEBUG|OnDoc| +2026-03-15 16:31:44.6792|DEBUG|OnDoc| +2026-03-15 16:31:44.7802|INFO|DocLog|Versandpaket vorbereitet +2026-03-15 16:31:55.6175|INFO|APIDocLog|DokumentGegnerator Start +2026-03-15 16:31:58.7793|INFO|APIDocLog|Start CreateDoc +2026-03-15 16:32:07.7922|INFO|APIDocLog|Input JSON +2026-03-15 16:32:07.9541|DEBUG|OnDoc|Start GenDoc +2026-03-15 16:32:07.9541|DEBUG|OnDoc| +2026-03-15 16:32:07.9541|DEBUG|OnDoc| +2026-03-15 16:32:07.9541|DEBUG|OnDoc| +2026-03-15 16:32:07.9541|DEBUG|OnDoc| +2026-03-15 16:32:07.9541|DEBUG|OnDoc| +2026-03-15 16:32:07.9541|DEBUG|OnDoc| +2026-03-15 16:32:07.9541|DEBUG|OnDoc| +2026-03-15 16:32:07.9541|DEBUG|OnDoc| +2026-03-15 16:32:07.9541|DEBUG|OnDoc| +2026-03-15 16:32:07.9541|DEBUG|OnDoc| +2026-03-15 16:32:07.9541|DEBUG|OnDoc| +2026-03-15 16:32:07.9541|DEBUG|OnDoc| +2026-03-15 16:32:07.9541|DEBUG|OnDoc| +2026-03-15 16:32:07.9541|DEBUG|OnDoc| +2026-03-15 16:32:21.7991|DEBUG|OnDoc| +2026-03-15 16:32:21.8347|DEBUG|OnDoc| +2026-03-15 16:32:22.4497|DEBUG|OnDoc| +2026-03-15 16:32:22.4587|DEBUG|OnDoc| +2026-03-15 16:32:23.8908|DEBUG|OnDoc| +2026-03-15 16:32:23.8995|DEBUG|OnDoc| +2026-03-15 16:32:31.5120|DEBUG|OnDoc| +2026-03-15 16:32:31.5469|DEBUG|OnDoc| +2026-03-15 16:32:31.7907|DEBUG|OnDoc| +2026-03-15 16:32:31.7992|DEBUG|OnDoc| +2026-03-15 16:32:32.0398|DEBUG|OnDoc| +2026-03-15 16:32:32.0493|DEBUG|OnDoc| +2026-03-15 16:32:32.2973|DEBUG|OnDoc| +2026-03-15 16:32:32.2973|DEBUG|OnDoc| +2026-03-15 16:32:32.5729|DEBUG|OnDoc| +2026-03-15 16:32:32.5824|DEBUG|OnDoc| +2026-03-15 16:32:33.4308|DEBUG|OnDoc| +2026-03-15 16:32:33.4408|DEBUG|OnDoc| +2026-03-15 16:32:59.5971|DEBUG|OnDoc| +2026-03-15 16:32:59.5971|DEBUG|OnDoc| +2026-03-15 16:32:59.6115|DEBUG|OnDoc| +2026-03-15 16:32:59.6115|DEBUG|OnDoc| +2026-03-15 16:32:59.6115|DEBUG|OnDoc| +2026-03-15 16:32:59.6115|DEBUG|OnDoc| +2026-03-15 16:33:12.1303|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-15 16:33:13.1271|DEBUG|OnDoc| +2026-03-15 16:33:13.1437|DEBUG|OnDoc| +2026-03-15 16:33:14.9182|DEBUG|OnDoc| +2026-03-15 16:33:14.9278|DEBUG|OnDoc| +2026-03-15 16:33:17.1704|DEBUG|OnDoc| +2026-03-15 16:33:17.1900|DEBUG|OnDoc| +2026-03-15 16:33:17.1900|DEBUG|OnDoc| +2026-03-15 16:33:17.1900|DEBUG|OnDoc| +2026-03-15 16:33:18.2779|DEBUG|OnDoc|Generate_Word +2026-03-15 16:33:19.1120|DEBUG|OnDoc|Word2013 +2026-03-15 16:33:19.1120|DEBUG|OnDoc|Word2013 +2026-03-15 16:33:20.6194|DEBUG|OnDoc|Generate_Word +2026-03-15 16:33:24.5751|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014691 +2026-03-15 16:33:24.8603|INFO|DocLog|Dokument über API erstellt +2026-03-15 16:33:37.9928|DEBUG|OnDoc| +2026-03-15 16:33:38.0326|DEBUG|OnDoc| +2026-03-15 16:33:38.0326|DEBUG|OnDoc| +2026-03-15 16:33:38.0637|DEBUG|OnDoc| +2026-03-15 16:33:38.0637|DEBUG|OnDoc| +2026-03-15 16:33:38.0637|DEBUG|OnDoc| +2026-03-15 16:33:38.0637|DEBUG|OnDoc| +2026-03-15 16:33:38.0637|DEBUG|OnDoc| +2026-03-15 16:33:38.0637|DEBUG|OnDoc| +2026-03-15 16:33:38.0637|DEBUG|OnDoc| +2026-03-15 16:33:38.0637|DEBUG|OnDoc| +2026-03-15 16:33:38.0637|DEBUG|OnDoc| +2026-03-15 16:33:47.0140|DEBUG|OnDoc| +2026-03-15 16:33:47.0521|DEBUG|OnDoc| +2026-03-15 16:33:47.1143|INFO|DocLog|Versandpaket vorbereitet +2026-03-15 16:33:58.8250|INFO|APIDocLog|Dokument abgeschlossen +2026-03-15 16:34:21.6681|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-15 17:45:15.4763|DEBUG|OnDoc| +2026-03-15 17:45:15.5368|DEBUG|OnDoc| +2026-03-15 17:45:15.5368|DEBUG|OnDoc| +2026-03-15 17:45:15.5368|DEBUG|OnDoc| +2026-03-15 17:47:18.4261|DEBUG|OnDoc| +2026-03-15 17:47:18.5282|DEBUG|OnDoc| +2026-03-15 17:47:18.5282|DEBUG|OnDoc| +2026-03-15 17:47:18.5322|DEBUG|OnDoc| +2026-03-15 17:50:06.7871|DEBUG|OnDoc| +2026-03-15 17:50:06.8789|DEBUG|OnDoc| +2026-03-15 17:50:06.8789|DEBUG|OnDoc| +2026-03-15 17:50:06.8789|DEBUG|OnDoc| +2026-03-15 17:57:13.4304|DEBUG|OnDoc| +2026-03-15 17:57:13.5261|DEBUG|OnDoc| +2026-03-15 17:57:13.5261|DEBUG|OnDoc| +2026-03-15 17:57:13.5317|DEBUG|OnDoc| +2026-03-15 18:00:27.9743|DEBUG|OnDoc| +2026-03-15 18:00:28.0713|DEBUG|OnDoc| +2026-03-15 18:00:28.0713|DEBUG|OnDoc| +2026-03-15 18:00:28.0713|DEBUG|OnDoc| +2026-03-16 09:41:40.7693|DEBUG|OnDoc| +2026-03-16 09:41:40.8786|DEBUG|OnDoc| +2026-03-16 09:41:40.8786|DEBUG|OnDoc| +2026-03-16 09:41:40.8786|DEBUG|OnDoc| +2026-03-16 09:42:12.4892|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 09:42:19.1674|INFO|APIDocLog|CreateDoks Start +2026-03-16 09:42:25.2049|INFO|APIDocLog|Input Json +2026-03-16 09:42:27.8082|DEBUG|OnDoc|Start GenDoc +2026-03-16 09:42:27.8179|DEBUG|OnDoc| +2026-03-16 09:42:27.8179|DEBUG|OnDoc| +2026-03-16 09:42:27.8179|DEBUG|OnDoc| +2026-03-16 09:42:27.8179|DEBUG|OnDoc| +2026-03-16 09:42:32.8850|ERROR|APIDocLog|Vorlagentyp 2482 ist ungültig +2026-03-16 09:42:32.9559|ERROR|APIDocLog|ONDOC-ERR-CreatePaketDoc +2026-03-16 09:42:33.0009|INFO|APIDocLog|Start CreateCLM +2026-03-16 09:42:33.0315|INFO|APIDocLog|Input JSON +2026-03-16 09:42:33.0315|DEBUG|APIDocLog|Create CLMDocItem +2026-03-16 09:42:33.0672|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-03-16 09:42:47.2901|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 09:42:51.8518|INFO|APIDocLog|CreateDoks Start +2026-03-16 09:42:54.5461|INFO|APIDocLog|Input Json +2026-03-16 09:42:57.4213|DEBUG|OnDoc|Start GenDoc +2026-03-16 09:42:57.4312|DEBUG|OnDoc| +2026-03-16 09:42:57.4312|DEBUG|OnDoc| +2026-03-16 09:42:57.4312|DEBUG|OnDoc| +2026-03-16 09:42:57.4312|DEBUG|OnDoc| +2026-03-16 09:42:57.4312|DEBUG|OnDoc| +2026-03-16 09:42:57.4312|DEBUG|OnDoc| +2026-03-16 09:42:57.4381|DEBUG|OnDoc| +2026-03-16 09:42:57.4381|DEBUG|OnDoc| +2026-03-16 09:43:06.5851|ERROR|APIDocLog|TGNr-Verantwortlich Stefan Hutter Lokal ist ungültig +2026-03-16 09:43:06.7772|ERROR|APIDocLog|ONDOC-ERR-CreatePaketDoc +2026-03-16 09:43:06.8208|INFO|APIDocLog|Start CreateCLM +2026-03-16 09:43:06.8514|INFO|APIDocLog|Input JSON +2026-03-16 09:43:06.8514|DEBUG|APIDocLog|Create CLMDocItem +2026-03-16 09:43:06.8737|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-03-16 09:43:40.8639|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 09:43:43.3857|INFO|APIDocLog|CreateDoks Start +2026-03-16 09:43:43.4221|INFO|APIDocLog|Input Json +2026-03-16 09:43:43.4221|DEBUG|OnDoc|Start GenDoc +2026-03-16 09:43:43.4221|DEBUG|OnDoc| +2026-03-16 09:43:43.4221|DEBUG|OnDoc| +2026-03-16 09:43:43.4221|DEBUG|OnDoc| +2026-03-16 09:43:43.4221|DEBUG|OnDoc| +2026-03-16 09:43:43.4221|DEBUG|OnDoc| +2026-03-16 09:43:43.4221|DEBUG|OnDoc| +2026-03-16 09:43:43.4221|DEBUG|OnDoc| +2026-03-16 09:43:43.4221|DEBUG|OnDoc| +2026-03-16 09:43:53.8658|ERROR|APIDocLog|TGNr-Verantwortlich Stefan Hutter Lokal ist ungültig +2026-03-16 09:43:54.0945|ERROR|APIDocLog|ONDOC-ERR-CreatePaketDoc +2026-03-16 09:43:54.1404|INFO|APIDocLog|Start CreateCLM +2026-03-16 09:43:54.1675|INFO|APIDocLog|Input JSON +2026-03-16 09:43:54.1675|DEBUG|APIDocLog|Create CLMDocItem +2026-03-16 09:43:54.1892|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-03-16 09:45:31.5164|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 09:45:34.3721|INFO|APIDocLog|CreateDoks Start +2026-03-16 09:45:34.4481|INFO|APIDocLog|Input Json +2026-03-16 09:45:34.4481|DEBUG|OnDoc|Start GenDoc +2026-03-16 09:45:34.4535|DEBUG|OnDoc| +2026-03-16 09:45:34.4535|DEBUG|OnDoc| +2026-03-16 09:45:34.4535|DEBUG|OnDoc| +2026-03-16 09:45:34.4535|DEBUG|OnDoc| +2026-03-16 09:45:34.4535|DEBUG|OnDoc| +2026-03-16 09:45:34.4535|DEBUG|OnDoc| +2026-03-16 09:45:34.4535|DEBUG|OnDoc| +2026-03-16 09:45:34.4535|DEBUG|OnDoc| +2026-03-16 09:45:34.4535|DEBUG|OnDoc| +2026-03-16 09:45:34.4535|DEBUG|OnDoc| +2026-03-16 09:45:34.4535|DEBUG|OnDoc| +2026-03-16 09:45:34.4535|DEBUG|OnDoc| +2026-03-16 09:45:48.7315|ERROR|APIDocLog|Versandstrasse mit ungeprüfter, linker Unterschrift ist nicht möglich +2026-03-16 09:45:48.8019|ERROR|APIDocLog|ONDOC-ERR-CreatePaketDoc +2026-03-16 09:45:48.8378|INFO|APIDocLog|Start CreateCLM +2026-03-16 09:45:48.8660|INFO|APIDocLog|Input JSON +2026-03-16 09:45:48.8660|DEBUG|APIDocLog|Create CLMDocItem +2026-03-16 09:45:48.8848|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-03-16 09:46:21.9675|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 09:46:24.6496|INFO|APIDocLog|CreateDoks Start +2026-03-16 09:46:24.6872|INFO|APIDocLog|Input Json +2026-03-16 09:46:24.6906|DEBUG|OnDoc|Start GenDoc +2026-03-16 09:46:24.6906|DEBUG|OnDoc| +2026-03-16 09:46:24.6906|DEBUG|OnDoc| +2026-03-16 09:46:24.6906|DEBUG|OnDoc| +2026-03-16 09:46:24.6906|DEBUG|OnDoc| +2026-03-16 09:46:24.6906|DEBUG|OnDoc| +2026-03-16 09:46:24.6906|DEBUG|OnDoc| +2026-03-16 09:46:24.6906|DEBUG|OnDoc| +2026-03-16 09:46:24.6906|DEBUG|OnDoc| +2026-03-16 09:46:24.6906|DEBUG|OnDoc| +2026-03-16 09:46:24.6906|DEBUG|OnDoc| +2026-03-16 09:46:39.3180|ERROR|APIDocLog|TGNr-Unterschriftrechts l ist ungültig +2026-03-16 09:46:39.4320|ERROR|APIDocLog|ONDOC-ERR-CreatePaketDoc +2026-03-16 09:46:39.4670|INFO|APIDocLog|Start CreateCLM +2026-03-16 09:46:39.4953|INFO|APIDocLog|Input JSON +2026-03-16 09:46:39.4953|DEBUG|APIDocLog|Create CLMDocItem +2026-03-16 09:46:39.5131|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-03-16 09:46:44.4172|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 09:46:45.3135|INFO|APIDocLog|CreateDoks Start +2026-03-16 09:46:45.3518|INFO|APIDocLog|Input Json +2026-03-16 09:46:45.3518|DEBUG|OnDoc|Start GenDoc +2026-03-16 09:46:45.3518|DEBUG|OnDoc| +2026-03-16 09:46:45.3518|DEBUG|OnDoc| +2026-03-16 09:46:45.3518|DEBUG|OnDoc| +2026-03-16 09:46:45.3518|DEBUG|OnDoc| +2026-03-16 09:46:45.3518|DEBUG|OnDoc| +2026-03-16 09:46:45.3518|DEBUG|OnDoc| +2026-03-16 09:46:45.3518|DEBUG|OnDoc| +2026-03-16 09:46:45.3595|DEBUG|OnDoc| +2026-03-16 09:46:53.6484|ERROR|APIDocLog|Versandstrasse mit ungeprüfter, linker Unterschrift ist nicht möglich +2026-03-16 09:46:53.6906|ERROR|APIDocLog|ONDOC-ERR-CreatePaketDoc +2026-03-16 09:46:53.7248|INFO|APIDocLog|Start CreateCLM +2026-03-16 09:46:53.7554|INFO|APIDocLog|Input JSON +2026-03-16 09:46:53.7554|DEBUG|APIDocLog|Create CLMDocItem +2026-03-16 09:46:53.7752|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-03-16 09:47:16.5712|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 09:47:19.7017|INFO|APIDocLog|CreateDoks Start +2026-03-16 09:47:19.7849|INFO|APIDocLog|Input Json +2026-03-16 09:47:19.7849|DEBUG|OnDoc|Start GenDoc +2026-03-16 09:47:19.7849|DEBUG|OnDoc| +2026-03-16 09:47:19.7849|DEBUG|OnDoc| +2026-03-16 09:47:19.7849|DEBUG|OnDoc| +2026-03-16 09:47:19.7849|DEBUG|OnDoc| +2026-03-16 09:47:19.7849|DEBUG|OnDoc| +2026-03-16 09:47:19.7974|DEBUG|OnDoc| +2026-03-16 09:47:19.7974|DEBUG|OnDoc| +2026-03-16 09:47:19.7974|DEBUG|OnDoc| +2026-03-16 09:47:19.7974|DEBUG|OnDoc| +2026-03-16 09:47:19.7974|DEBUG|OnDoc| +2026-03-16 09:47:22.3520|ERROR|APIDocLog|Versandstrasse mit ungeprüfter, linker Unterschrift ist nicht möglich +2026-03-16 09:48:43.3029|DEBUG|OnDoc| +2026-03-16 09:48:43.3923|DEBUG|OnDoc| +2026-03-16 09:48:43.3923|DEBUG|OnDoc| +2026-03-16 09:48:43.3923|DEBUG|OnDoc| +2026-03-16 09:48:46.9818|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 09:48:49.6373|INFO|APIDocLog|CreateDoks Start +2026-03-16 09:49:11.5064|INFO|APIDocLog|Input Json +2026-03-16 09:49:12.8731|DEBUG|OnDoc|Start GenDoc +2026-03-16 09:49:12.8838|DEBUG|OnDoc| +2026-03-16 09:49:12.8838|DEBUG|OnDoc| +2026-03-16 09:49:12.8838|DEBUG|OnDoc| +2026-03-16 09:49:12.8838|DEBUG|OnDoc| +2026-03-16 09:49:12.8838|DEBUG|OnDoc| +2026-03-16 09:49:12.8838|DEBUG|OnDoc| +2026-03-16 09:49:12.8838|DEBUG|OnDoc| +2026-03-16 09:49:12.8838|DEBUG|OnDoc| +2026-03-16 09:49:12.8838|DEBUG|OnDoc| +2026-03-16 09:49:12.8838|DEBUG|OnDoc| +2026-03-16 09:49:23.3023|ERROR|APIDocLog|Versandstrasse mit ungeprüfter, linker Unterschrift ist nicht möglich +2026-03-16 10:03:59.9926|DEBUG|OnDoc| +2026-03-16 10:04:00.1603|DEBUG|OnDoc| +2026-03-16 10:04:00.1603|DEBUG|OnDoc| +2026-03-16 10:04:00.1603|DEBUG|OnDoc| +2026-03-16 10:04:03.9785|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 10:04:05.1111|INFO|APIDocLog|CreateDoks Start +2026-03-16 10:04:07.8527|INFO|APIDocLog|Input Json +2026-03-16 10:04:08.7059|DEBUG|OnDoc|Start GenDoc +2026-03-16 10:04:08.7059|DEBUG|OnDoc| +2026-03-16 10:04:08.7059|DEBUG|OnDoc| +2026-03-16 10:04:08.7190|DEBUG|OnDoc| +2026-03-16 10:04:08.7190|DEBUG|OnDoc| +2026-03-16 10:04:08.7190|DEBUG|OnDoc| +2026-03-16 10:04:08.7190|DEBUG|OnDoc| +2026-03-16 10:04:08.7190|DEBUG|OnDoc| +2026-03-16 10:04:08.7190|DEBUG|OnDoc| +2026-03-16 10:04:08.7190|DEBUG|OnDoc| +2026-03-16 10:04:08.7190|DEBUG|OnDoc| +2026-03-16 10:04:18.5675|ERROR|APIDocLog|Versandstrasse mit ungeprüfter, linker Unterschrift ist nicht möglich +2026-03-16 10:04:37.0990|ERROR|APIDocLog|ONDOC-ERR-CreatePaketDoc +2026-03-16 10:04:37.1823|INFO|APIDocLog|Start CreateCLM +2026-03-16 10:04:37.2153|INFO|APIDocLog|Input JSON +2026-03-16 10:04:37.2323|DEBUG|APIDocLog|Create CLMDocItem +2026-03-16 10:04:37.2638|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-03-16 10:04:47.1484|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 10:04:51.6454|INFO|APIDocLog|CreateDoks Start +2026-03-16 10:04:54.6767|INFO|APIDocLog|Input Json +2026-03-16 10:04:55.2831|DEBUG|OnDoc|Start GenDoc +2026-03-16 10:04:55.2831|DEBUG|OnDoc| +2026-03-16 10:04:55.2831|DEBUG|OnDoc| +2026-03-16 10:04:55.2972|DEBUG|OnDoc| +2026-03-16 10:04:55.2972|DEBUG|OnDoc| +2026-03-16 10:04:55.2972|DEBUG|OnDoc| +2026-03-16 10:04:55.2972|DEBUG|OnDoc| +2026-03-16 10:04:55.2972|DEBUG|OnDoc| +2026-03-16 10:04:55.2972|DEBUG|OnDoc| +2026-03-16 10:04:55.2972|DEBUG|OnDoc| +2026-03-16 10:04:55.2972|DEBUG|OnDoc| +2026-03-16 10:04:56.4564|ERROR|APIDocLog|Versandstrasse mit ungeprüfter, linker Unterschrift ist nicht möglich +2026-03-16 10:05:06.3482|ERROR|APIDocLog|ONDOC-ERR-CreatePaketDoc +2026-03-16 10:05:06.4337|INFO|APIDocLog|Start CreateCLM +2026-03-16 10:05:06.4785|INFO|APIDocLog|Input JSON +2026-03-16 10:05:06.4785|DEBUG|APIDocLog|Create CLMDocItem +2026-03-16 10:05:06.5091|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-03-16 11:07:49.4633|DEBUG|OnDoc| +2026-03-16 11:07:49.5600|DEBUG|OnDoc| +2026-03-16 11:07:49.5635|DEBUG|OnDoc| +2026-03-16 11:07:49.5635|DEBUG|OnDoc| +2026-03-16 13:23:31.0914|DEBUG|OnDoc| +2026-03-16 13:23:31.1463|DEBUG|OnDoc| +2026-03-16 13:23:31.1463|DEBUG|OnDoc| +2026-03-16 13:23:31.1463|DEBUG|OnDoc| +2026-03-16 13:23:34.7799|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 13:23:36.4431|INFO|APIDocLog|Start CreateDoc +2026-03-16 13:23:37.1022|INFO|APIDocLog|Input JSON +2026-03-16 13:23:37.1245|DEBUG|OnDoc|Start GenDoc +2026-03-16 13:23:37.1261|DEBUG|OnDoc| +2026-03-16 13:23:37.1261|DEBUG|OnDoc| +2026-03-16 13:23:37.1261|DEBUG|OnDoc| +2026-03-16 13:23:37.1261|DEBUG|OnDoc| +2026-03-16 13:23:37.1261|DEBUG|OnDoc| +2026-03-16 13:23:37.1261|DEBUG|OnDoc| +2026-03-16 13:23:37.1261|DEBUG|OnDoc| +2026-03-16 13:23:37.1261|DEBUG|OnDoc| +2026-03-16 13:23:37.1261|DEBUG|OnDoc| +2026-03-16 13:23:37.1261|DEBUG|OnDoc| +2026-03-16 13:23:37.1261|DEBUG|OnDoc| +2026-03-16 13:23:37.1261|DEBUG|OnDoc| +2026-03-16 13:23:37.1261|DEBUG|OnDoc| +2026-03-16 13:23:37.1422|DEBUG|OnDoc| +2026-03-16 13:23:37.6896|DEBUG|OnDoc| +2026-03-16 13:23:37.6896|DEBUG|OnDoc| +2026-03-16 13:23:37.6896|DEBUG|OnDoc| +2026-03-16 13:23:37.6896|DEBUG|OnDoc| +2026-03-16 13:23:37.6896|DEBUG|OnDoc| +2026-03-16 13:23:37.7041|DEBUG|OnDoc| +2026-03-16 13:23:37.7041|DEBUG|OnDoc| +2026-03-16 13:23:37.7041|DEBUG|OnDoc| +2026-03-16 13:23:37.7041|DEBUG|OnDoc| +2026-03-16 13:23:37.7041|DEBUG|OnDoc| +2026-03-16 13:23:37.7041|DEBUG|OnDoc| +2026-03-16 13:23:37.7041|DEBUG|OnDoc| +2026-03-16 13:23:37.7041|DEBUG|OnDoc| +2026-03-16 13:23:37.7041|DEBUG|OnDoc| +2026-03-16 13:23:37.7041|DEBUG|OnDoc| +2026-03-16 13:23:37.7041|DEBUG|OnDoc| +2026-03-16 13:23:37.7041|DEBUG|OnDoc| +2026-03-16 13:23:37.7041|DEBUG|OnDoc| +2026-03-16 13:23:37.7202|DEBUG|OnDoc| +2026-03-16 13:23:37.7202|DEBUG|OnDoc| +2026-03-16 13:23:37.7474|DEBUG|OnDoc| +2026-03-16 13:23:37.7504|DEBUG|OnDoc| +2026-03-16 13:23:37.7994|DEBUG|OnDoc| +2026-03-16 13:23:37.7994|DEBUG|OnDoc| +2026-03-16 13:23:37.8285|DEBUG|OnDoc| +2026-03-16 13:23:37.8285|DEBUG|OnDoc| +2026-03-16 13:23:37.8285|DEBUG|OnDoc| +2026-03-16 13:23:37.8285|DEBUG|OnDoc| +2026-03-16 13:23:38.6136|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 13:23:38.6136|DEBUG|OnDoc| +2026-03-16 13:23:38.6313|DEBUG|OnDoc| +2026-03-16 13:23:38.6313|DEBUG|OnDoc| +2026-03-16 13:23:38.6313|DEBUG|OnDoc| +2026-03-16 13:23:38.6313|DEBUG|OnDoc| +2026-03-16 13:23:38.6459|DEBUG|OnDoc| +2026-03-16 13:23:38.6459|DEBUG|OnDoc| +2026-03-16 13:23:38.6459|DEBUG|OnDoc| +2026-03-16 13:23:38.6459|DEBUG|OnDoc|Generate_Word +2026-03-16 13:23:39.0881|DEBUG|OnDoc|Word2013 +2026-03-16 13:23:39.0973|DEBUG|OnDoc|Word2013 +2026-03-16 13:23:40.9784|DEBUG|OnDoc|Generate_Word +2026-03-16 13:23:41.0277|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014741 +2026-03-16 13:23:41.0277|INFO|DocLog|Dokument über API erstellt +2026-03-16 13:23:41.0277|INFO|APIDocLog|Dokument return to sender +2026-03-16 13:23:41.0321|DEBUG|OnDoc| +2026-03-16 13:23:41.0321|DEBUG|OnDoc| +2026-03-16 13:23:41.0321|DEBUG|OnDoc| +2026-03-16 13:23:41.0321|DEBUG|OnDoc| +2026-03-16 13:23:41.0321|DEBUG|OnDoc| +2026-03-16 13:23:41.0321|DEBUG|OnDoc| +2026-03-16 13:30:32.3303|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 13:30:33.7613|INFO|APIDocLog|Start CreateDoc +2026-03-16 13:30:34.4637|INFO|APIDocLog|Input JSON +2026-03-16 13:30:34.4710|DEBUG|OnDoc|Start GenDoc +2026-03-16 13:30:34.4710|DEBUG|OnDoc| +2026-03-16 13:30:34.4710|DEBUG|OnDoc| +2026-03-16 13:30:34.4710|DEBUG|OnDoc| +2026-03-16 13:30:34.4710|DEBUG|OnDoc| +2026-03-16 13:30:34.4710|DEBUG|OnDoc| +2026-03-16 13:30:34.4710|DEBUG|OnDoc| +2026-03-16 13:30:34.4710|DEBUG|OnDoc| +2026-03-16 13:30:34.4710|DEBUG|OnDoc| +2026-03-16 13:30:34.4710|DEBUG|OnDoc| +2026-03-16 13:30:34.4710|DEBUG|OnDoc| +2026-03-16 13:30:34.4710|DEBUG|OnDoc| +2026-03-16 13:30:34.4710|DEBUG|OnDoc| +2026-03-16 13:30:34.4710|DEBUG|OnDoc| +2026-03-16 13:30:34.4710|DEBUG|OnDoc| +2026-03-16 13:30:35.0779|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.0809|DEBUG|OnDoc| +2026-03-16 13:30:35.1020|DEBUG|OnDoc| +2026-03-16 13:30:35.1020|DEBUG|OnDoc| +2026-03-16 13:30:35.1216|DEBUG|OnDoc| +2026-03-16 13:30:35.1216|DEBUG|OnDoc| +2026-03-16 13:30:35.1386|DEBUG|OnDoc| +2026-03-16 13:30:35.1386|DEBUG|OnDoc| +2026-03-16 13:30:35.1386|DEBUG|OnDoc| +2026-03-16 13:30:35.1386|DEBUG|OnDoc| +2026-03-16 13:30:35.7538|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 13:30:35.7538|DEBUG|OnDoc| +2026-03-16 13:30:35.7698|DEBUG|OnDoc| +2026-03-16 13:30:35.7698|DEBUG|OnDoc| +2026-03-16 13:30:35.7698|DEBUG|OnDoc| +2026-03-16 13:30:35.7698|DEBUG|OnDoc| +2026-03-16 13:30:35.7698|DEBUG|OnDoc| +2026-03-16 13:30:35.7698|DEBUG|OnDoc| +2026-03-16 13:30:35.7818|DEBUG|OnDoc| +2026-03-16 13:30:35.7818|DEBUG|OnDoc|Generate_Word +2026-03-16 13:30:35.7818|DEBUG|OnDoc|Word2013 +2026-03-16 13:30:35.7818|DEBUG|OnDoc|Word2013 +2026-03-16 13:30:36.4319|DEBUG|OnDoc|Generate_Word +2026-03-16 13:30:36.4436|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014756 +2026-03-16 13:30:36.4436|INFO|DocLog|Dokument über API erstellt +2026-03-16 13:30:36.4436|INFO|APIDocLog|Dokument return to sender +2026-03-16 13:30:36.4436|DEBUG|OnDoc| +2026-03-16 13:30:36.4436|DEBUG|OnDoc| +2026-03-16 13:30:36.4537|DEBUG|OnDoc| +2026-03-16 13:30:36.4537|DEBUG|OnDoc| +2026-03-16 13:30:36.4537|DEBUG|OnDoc| +2026-03-16 13:30:36.4537|DEBUG|OnDoc| +2026-03-16 13:33:39.7673|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 13:33:40.4590|INFO|APIDocLog|Start CreateDoc +2026-03-16 13:33:41.3094|INFO|APIDocLog|Input JSON +2026-03-16 13:33:41.3263|DEBUG|OnDoc|Start GenDoc +2026-03-16 13:33:41.3263|DEBUG|OnDoc| +2026-03-16 13:33:41.3263|DEBUG|OnDoc| +2026-03-16 13:33:41.3283|DEBUG|OnDoc| +2026-03-16 13:33:41.3283|DEBUG|OnDoc| +2026-03-16 13:33:41.3283|DEBUG|OnDoc| +2026-03-16 13:33:41.3283|DEBUG|OnDoc| +2026-03-16 13:33:41.3283|DEBUG|OnDoc| +2026-03-16 13:33:41.3283|DEBUG|OnDoc| +2026-03-16 13:33:41.3283|DEBUG|OnDoc| +2026-03-16 13:33:41.3283|DEBUG|OnDoc| +2026-03-16 13:33:41.3283|DEBUG|OnDoc| +2026-03-16 13:33:41.3283|DEBUG|OnDoc| +2026-03-16 13:33:41.3283|DEBUG|OnDoc| +2026-03-16 13:33:41.3283|DEBUG|OnDoc| +2026-03-16 13:33:41.9475|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9576|DEBUG|OnDoc| +2026-03-16 13:33:41.9801|DEBUG|OnDoc| +2026-03-16 13:33:41.9801|DEBUG|OnDoc| +2026-03-16 13:33:42.0046|DEBUG|OnDoc| +2026-03-16 13:33:42.0046|DEBUG|OnDoc| +2026-03-16 13:33:42.0226|DEBUG|OnDoc| +2026-03-16 13:33:42.0226|DEBUG|OnDoc| +2026-03-16 13:33:42.0226|DEBUG|OnDoc| +2026-03-16 13:33:42.0226|DEBUG|OnDoc| +2026-03-16 13:33:42.6005|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 13:33:42.6005|DEBUG|OnDoc| +2026-03-16 13:33:42.6005|DEBUG|OnDoc| +2026-03-16 13:33:42.6005|DEBUG|OnDoc| +2026-03-16 13:33:42.6005|DEBUG|OnDoc| +2026-03-16 13:33:42.6107|DEBUG|OnDoc| +2026-03-16 13:33:42.6107|DEBUG|OnDoc| +2026-03-16 13:33:42.6107|DEBUG|OnDoc| +2026-03-16 13:33:42.6107|DEBUG|OnDoc| +2026-03-16 13:33:42.6107|DEBUG|OnDoc|Generate_Word +2026-03-16 13:33:42.6322|DEBUG|OnDoc|Word2013 +2026-03-16 13:33:42.6322|DEBUG|OnDoc|Word2013 +2026-03-16 13:33:43.1845|DEBUG|OnDoc|Generate_Word +2026-03-16 13:33:43.1943|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014764 +2026-03-16 13:33:43.1943|INFO|DocLog|Dokument über API erstellt +2026-03-16 13:33:43.1943|INFO|APIDocLog|Dokument return to sender +2026-03-16 13:33:43.1943|DEBUG|OnDoc| +2026-03-16 13:33:43.1943|DEBUG|OnDoc| +2026-03-16 13:33:43.1943|DEBUG|OnDoc| +2026-03-16 13:33:43.1943|DEBUG|OnDoc| +2026-03-16 13:33:43.1943|DEBUG|OnDoc| +2026-03-16 13:33:43.1943|DEBUG|OnDoc| +2026-03-16 13:36:23.0265|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 13:36:25.8932|INFO|APIDocLog|Start CreateDoc +2026-03-16 13:36:30.8817|INFO|APIDocLog|Input JSON +2026-03-16 13:36:30.8927|DEBUG|OnDoc|Start GenDoc +2026-03-16 13:36:30.8927|DEBUG|OnDoc| +2026-03-16 13:36:30.8927|DEBUG|OnDoc| +2026-03-16 13:36:30.8927|DEBUG|OnDoc| +2026-03-16 13:36:30.8927|DEBUG|OnDoc| +2026-03-16 13:36:30.8927|DEBUG|OnDoc| +2026-03-16 13:36:30.8927|DEBUG|OnDoc| +2026-03-16 13:36:30.8927|DEBUG|OnDoc| +2026-03-16 13:36:30.8927|DEBUG|OnDoc| +2026-03-16 13:36:30.8927|DEBUG|OnDoc| +2026-03-16 13:36:30.8927|DEBUG|OnDoc| +2026-03-16 13:36:30.8927|DEBUG|OnDoc| +2026-03-16 13:36:30.8927|DEBUG|OnDoc| +2026-03-16 13:36:30.8927|DEBUG|OnDoc| +2026-03-16 13:36:30.8927|DEBUG|OnDoc| +2026-03-16 13:36:33.8808|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.8908|DEBUG|OnDoc| +2026-03-16 13:36:33.9165|DEBUG|OnDoc| +2026-03-16 13:36:33.9165|DEBUG|OnDoc| +2026-03-16 13:36:33.9381|DEBUG|OnDoc| +2026-03-16 13:36:33.9381|DEBUG|OnDoc| +2026-03-16 13:36:33.9381|DEBUG|OnDoc| +2026-03-16 13:36:33.9381|DEBUG|OnDoc| +2026-03-16 13:36:33.9381|DEBUG|OnDoc| +2026-03-16 13:36:33.9381|DEBUG|OnDoc| +2026-03-16 13:36:37.2975|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 13:36:37.2975|DEBUG|OnDoc| +2026-03-16 13:36:37.2975|DEBUG|OnDoc| +2026-03-16 13:36:37.2975|DEBUG|OnDoc| +2026-03-16 13:36:37.2975|DEBUG|OnDoc| +2026-03-16 13:36:37.2975|DEBUG|OnDoc| +2026-03-16 13:36:37.3189|DEBUG|OnDoc| +2026-03-16 13:36:37.3189|DEBUG|OnDoc| +2026-03-16 13:36:37.3189|DEBUG|OnDoc| +2026-03-16 13:36:37.3189|DEBUG|OnDoc|Generate_Word +2026-03-16 13:36:37.3360|DEBUG|OnDoc|Word2013 +2026-03-16 13:36:37.3360|DEBUG|OnDoc|Word2013 +2026-03-16 13:36:58.1085|DEBUG|OnDoc|Generate_Word +2026-03-16 13:36:58.1206|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014772 +2026-03-16 13:36:58.1206|INFO|DocLog|Dokument über API erstellt +2026-03-16 13:36:58.1206|INFO|APIDocLog|Dokument return to sender +2026-03-16 13:36:58.1206|DEBUG|OnDoc| +2026-03-16 13:36:58.1258|DEBUG|OnDoc| +2026-03-16 13:36:58.1258|DEBUG|OnDoc| +2026-03-16 13:36:58.1258|DEBUG|OnDoc| +2026-03-16 13:36:58.1258|DEBUG|OnDoc| +2026-03-16 13:36:58.1258|DEBUG|OnDoc| +2026-03-16 13:37:12.8309|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 13:37:12.8738|INFO|APIDocLog|Start CreateDoc +2026-03-16 13:37:12.8960|INFO|APIDocLog|Input JSON +2026-03-16 13:37:12.8960|DEBUG|OnDoc|Start GenDoc +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.8960|DEBUG|OnDoc| +2026-03-16 13:37:12.9066|DEBUG|OnDoc| +2026-03-16 13:37:12.9066|DEBUG|OnDoc| +2026-03-16 13:37:12.9066|DEBUG|OnDoc| +2026-03-16 13:37:12.9066|DEBUG|OnDoc| +2026-03-16 13:37:12.9066|DEBUG|OnDoc| +2026-03-16 13:37:12.9066|DEBUG|OnDoc| +2026-03-16 13:37:12.9066|DEBUG|OnDoc| +2026-03-16 13:37:12.9066|DEBUG|OnDoc| +2026-03-16 13:37:12.9066|DEBUG|OnDoc| +2026-03-16 13:37:12.9066|DEBUG|OnDoc| +2026-03-16 13:37:12.9066|DEBUG|OnDoc| +2026-03-16 13:37:12.9066|DEBUG|OnDoc| +2026-03-16 13:37:12.9066|DEBUG|OnDoc| +2026-03-16 13:37:12.9066|DEBUG|OnDoc| +2026-03-16 13:37:12.9227|DEBUG|OnDoc| +2026-03-16 13:37:12.9227|DEBUG|OnDoc| +2026-03-16 13:37:12.9460|DEBUG|OnDoc| +2026-03-16 13:37:12.9460|DEBUG|OnDoc| +2026-03-16 13:37:12.9547|DEBUG|OnDoc| +2026-03-16 13:37:12.9547|DEBUG|OnDoc| +2026-03-16 13:37:12.9547|DEBUG|OnDoc| +2026-03-16 13:37:12.9547|DEBUG|OnDoc| +2026-03-16 13:37:12.9547|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 13:37:12.9547|DEBUG|OnDoc| +2026-03-16 13:37:12.9710|DEBUG|OnDoc| +2026-03-16 13:37:12.9710|DEBUG|OnDoc| +2026-03-16 13:37:12.9710|DEBUG|OnDoc| +2026-03-16 13:37:12.9710|DEBUG|OnDoc| +2026-03-16 13:37:12.9710|DEBUG|OnDoc| +2026-03-16 13:37:12.9710|DEBUG|OnDoc| +2026-03-16 13:37:12.9710|DEBUG|OnDoc| +2026-03-16 13:37:12.9710|DEBUG|OnDoc|Generate_Word +2026-03-16 13:37:12.9873|DEBUG|OnDoc|Word2013 +2026-03-16 13:37:12.9873|DEBUG|OnDoc|Word2013 +2026-03-16 13:37:16.5267|DEBUG|OnDoc|Generate_Word +2026-03-16 13:37:16.5376|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014788 +2026-03-16 13:37:16.5376|INFO|DocLog|Dokument über API erstellt +2026-03-16 13:37:16.5376|INFO|APIDocLog|Dokument return to sender +2026-03-16 13:37:16.5376|DEBUG|OnDoc| +2026-03-16 13:37:16.5376|DEBUG|OnDoc| +2026-03-16 13:37:16.5376|DEBUG|OnDoc| +2026-03-16 13:37:16.5376|DEBUG|OnDoc| +2026-03-16 13:37:16.5376|DEBUG|OnDoc| +2026-03-16 13:37:16.5376|DEBUG|OnDoc| +2026-03-16 13:38:49.5766|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 13:38:49.6167|INFO|APIDocLog|Start CreateDoc +2026-03-16 13:38:49.6386|INFO|APIDocLog|Input JSON +2026-03-16 13:38:49.6386|DEBUG|OnDoc|Start GenDoc +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6416|DEBUG|OnDoc| +2026-03-16 13:38:49.6568|DEBUG|OnDoc| +2026-03-16 13:38:49.6568|DEBUG|OnDoc| +2026-03-16 13:38:49.6568|DEBUG|OnDoc| +2026-03-16 13:38:49.6793|DEBUG|OnDoc| +2026-03-16 13:38:49.6793|DEBUG|OnDoc| +2026-03-16 13:38:49.7001|DEBUG|OnDoc| +2026-03-16 13:38:49.7001|DEBUG|OnDoc| +2026-03-16 13:38:49.7097|DEBUG|OnDoc| +2026-03-16 13:38:49.7097|DEBUG|OnDoc| +2026-03-16 13:38:49.7097|DEBUG|OnDoc| +2026-03-16 13:38:49.7097|DEBUG|OnDoc| +2026-03-16 13:38:49.7330|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 13:38:49.7330|DEBUG|OnDoc| +2026-03-16 13:38:49.7380|DEBUG|OnDoc| +2026-03-16 13:38:49.7380|DEBUG|OnDoc| +2026-03-16 13:38:49.7380|DEBUG|OnDoc| +2026-03-16 13:38:49.7380|DEBUG|OnDoc| +2026-03-16 13:38:49.7535|DEBUG|OnDoc| +2026-03-16 13:38:49.7535|DEBUG|OnDoc| +2026-03-16 13:38:49.7535|DEBUG|OnDoc| +2026-03-16 13:38:49.7535|DEBUG|OnDoc|Generate_Word +2026-03-16 13:38:49.7672|DEBUG|OnDoc|Word2013 +2026-03-16 13:38:49.7672|DEBUG|OnDoc|Word2013 +2026-03-16 13:38:53.6825|DEBUG|OnDoc|Generate_Word +2026-03-16 13:38:53.6950|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014793 +2026-03-16 13:38:53.6950|INFO|DocLog|Dokument über API erstellt +2026-03-16 13:38:53.6950|INFO|APIDocLog|Dokument return to sender +2026-03-16 13:38:53.6950|DEBUG|OnDoc| +2026-03-16 13:38:53.6950|DEBUG|OnDoc| +2026-03-16 13:43:46.7366|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 13:43:46.7828|INFO|APIDocLog|Start CreateDoc +2026-03-16 13:43:46.8043|INFO|APIDocLog|Input JSON +2026-03-16 13:43:46.8043|DEBUG|OnDoc|Start GenDoc +2026-03-16 13:43:46.8043|DEBUG|OnDoc| +2026-03-16 13:43:46.8043|DEBUG|OnDoc| +2026-03-16 13:43:46.8043|DEBUG|OnDoc| +2026-03-16 13:43:46.8043|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8128|DEBUG|OnDoc| +2026-03-16 13:43:46.8394|DEBUG|OnDoc| +2026-03-16 13:43:46.8394|DEBUG|OnDoc| +2026-03-16 13:43:46.8628|DEBUG|OnDoc| +2026-03-16 13:43:46.8628|DEBUG|OnDoc| +2026-03-16 13:43:46.8628|DEBUG|OnDoc| +2026-03-16 13:43:46.8751|DEBUG|OnDoc| +2026-03-16 13:43:46.8751|DEBUG|OnDoc| +2026-03-16 13:43:46.8751|DEBUG|OnDoc| +2026-03-16 13:43:46.8908|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 13:43:46.8908|DEBUG|OnDoc| +2026-03-16 13:43:46.8908|DEBUG|OnDoc| +2026-03-16 13:43:46.8908|DEBUG|OnDoc| +2026-03-16 13:43:46.8908|DEBUG|OnDoc| +2026-03-16 13:43:46.8908|DEBUG|OnDoc| +2026-03-16 13:43:46.8908|DEBUG|OnDoc| +2026-03-16 13:43:46.8908|DEBUG|OnDoc| +2026-03-16 13:43:46.9083|DEBUG|OnDoc| +2026-03-16 13:43:46.9083|DEBUG|OnDoc|Generate_Word +2026-03-16 13:43:46.9083|DEBUG|OnDoc|Word2013 +2026-03-16 13:43:46.9083|DEBUG|OnDoc|Word2013 +2026-03-16 13:43:50.9472|DEBUG|OnDoc|Generate_Word +2026-03-16 13:43:50.9583|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014801 +2026-03-16 13:43:50.9583|INFO|DocLog|Dokument über API erstellt +2026-03-16 13:43:50.9583|INFO|APIDocLog|Dokument return to sender +2026-03-16 13:43:50.9583|DEBUG|OnDoc| +2026-03-16 13:43:50.9583|DEBUG|OnDoc| +2026-03-16 13:43:57.5983|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 13:43:57.6466|INFO|APIDocLog|Start CreateDoc +2026-03-16 13:43:57.6702|INFO|APIDocLog|Input JSON +2026-03-16 13:43:57.6742|DEBUG|OnDoc|Start GenDoc +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6742|DEBUG|OnDoc| +2026-03-16 13:43:57.6884|DEBUG|OnDoc| +2026-03-16 13:43:57.6884|DEBUG|OnDoc| +2026-03-16 13:43:57.6884|DEBUG|OnDoc| +2026-03-16 13:43:57.6884|DEBUG|OnDoc| +2026-03-16 13:43:57.6884|DEBUG|OnDoc| +2026-03-16 13:43:57.6884|DEBUG|OnDoc| +2026-03-16 13:43:57.6884|DEBUG|OnDoc| +2026-03-16 13:43:57.6884|DEBUG|OnDoc| +2026-03-16 13:43:57.6884|DEBUG|OnDoc| +2026-03-16 13:43:57.6884|DEBUG|OnDoc| +2026-03-16 13:43:57.7049|DEBUG|OnDoc| +2026-03-16 13:43:57.7049|DEBUG|OnDoc| +2026-03-16 13:43:57.7262|DEBUG|OnDoc| +2026-03-16 13:43:57.7262|DEBUG|OnDoc| +2026-03-16 13:43:57.7367|DEBUG|OnDoc| +2026-03-16 13:43:57.7367|DEBUG|OnDoc| +2026-03-16 13:43:57.7367|DEBUG|OnDoc| +2026-03-16 13:43:57.7367|DEBUG|OnDoc| +2026-03-16 13:43:57.7511|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 13:43:57.7511|DEBUG|OnDoc| +2026-03-16 13:43:57.7511|DEBUG|OnDoc| +2026-03-16 13:43:57.7511|DEBUG|OnDoc| +2026-03-16 13:43:57.7511|DEBUG|OnDoc| +2026-03-16 13:43:57.7511|DEBUG|OnDoc| +2026-03-16 13:43:57.7511|DEBUG|OnDoc| +2026-03-16 13:43:57.7511|DEBUG|OnDoc| +2026-03-16 13:43:57.7667|DEBUG|OnDoc| +2026-03-16 13:43:57.7667|DEBUG|OnDoc|Generate_Word +2026-03-16 13:43:57.7667|DEBUG|OnDoc|Word2013 +2026-03-16 13:43:57.7667|DEBUG|OnDoc|Word2013 +2026-03-16 13:44:01.4485|DEBUG|OnDoc|Generate_Word +2026-03-16 13:44:01.4595|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014816 +2026-03-16 13:44:01.4595|INFO|DocLog|Dokument über API erstellt +2026-03-16 13:44:01.4595|INFO|APIDocLog|Dokument return to sender +2026-03-16 13:44:01.4595|DEBUG|OnDoc| +2026-03-16 13:44:01.4595|DEBUG|OnDoc| +2026-03-16 13:44:01.4595|DEBUG|OnDoc| +2026-03-16 13:44:01.4595|DEBUG|OnDoc| +2026-03-16 13:44:01.4595|DEBUG|OnDoc| +2026-03-16 13:44:01.4595|DEBUG|OnDoc| +2026-03-16 13:45:16.6339|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 13:45:16.6906|INFO|APIDocLog|Start CreateDoc +2026-03-16 13:45:16.7145|INFO|APIDocLog|Input JSON +2026-03-16 13:45:16.7145|DEBUG|OnDoc|Start GenDoc +2026-03-16 13:45:16.7145|DEBUG|OnDoc| +2026-03-16 13:45:16.7145|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7195|DEBUG|OnDoc| +2026-03-16 13:45:16.7557|DEBUG|OnDoc| +2026-03-16 13:45:16.7557|DEBUG|OnDoc| +2026-03-16 13:45:16.7821|DEBUG|OnDoc| +2026-03-16 13:45:16.7821|DEBUG|OnDoc| +2026-03-16 13:45:16.7821|DEBUG|OnDoc| +2026-03-16 13:45:16.7821|DEBUG|OnDoc| +2026-03-16 13:45:16.7975|DEBUG|OnDoc| +2026-03-16 13:45:16.7975|DEBUG|OnDoc| +2026-03-16 13:45:16.8125|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 13:45:16.8125|DEBUG|OnDoc| +2026-03-16 13:45:16.8125|DEBUG|OnDoc| +2026-03-16 13:45:16.8125|DEBUG|OnDoc| +2026-03-16 13:45:16.8125|DEBUG|OnDoc| +2026-03-16 13:45:16.8125|DEBUG|OnDoc| +2026-03-16 13:45:16.8303|DEBUG|OnDoc| +2026-03-16 13:45:16.8303|DEBUG|OnDoc| +2026-03-16 13:45:16.8303|DEBUG|OnDoc| +2026-03-16 13:45:16.8303|DEBUG|OnDoc|Generate_Word +2026-03-16 13:45:16.8458|DEBUG|OnDoc|Word2013 +2026-03-16 13:45:16.8458|DEBUG|OnDoc|Word2013 +2026-03-16 13:45:23.8746|DEBUG|OnDoc|Generate_Word +2026-03-16 13:45:23.8853|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014824 +2026-03-16 13:45:23.8853|INFO|DocLog|Dokument über API erstellt +2026-03-16 13:45:23.8853|INFO|APIDocLog|Dokument return to sender +2026-03-16 13:45:23.8853|DEBUG|OnDoc| +2026-03-16 13:45:23.8914|DEBUG|OnDoc| +2026-03-16 13:45:23.8914|DEBUG|OnDoc| +2026-03-16 13:45:23.8914|DEBUG|OnDoc| +2026-03-16 13:45:23.8914|DEBUG|OnDoc| +2026-03-16 13:45:23.8914|DEBUG|OnDoc| +2026-03-16 13:49:10.4139|DEBUG|OnDoc| +2026-03-16 13:49:10.4767|DEBUG|OnDoc| +2026-03-16 13:49:10.4767|DEBUG|OnDoc| +2026-03-16 13:49:10.4767|DEBUG|OnDoc| +2026-03-16 13:49:10.8069|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 13:49:11.0895|INFO|APIDocLog|Start CreateDoc +2026-03-16 13:49:11.1964|INFO|APIDocLog|Input JSON +2026-03-16 13:49:11.2195|DEBUG|OnDoc|Start GenDoc +2026-03-16 13:49:11.2195|DEBUG|OnDoc| +2026-03-16 13:49:11.2195|DEBUG|OnDoc| +2026-03-16 13:49:11.2195|DEBUG|OnDoc| +2026-03-16 13:49:11.2195|DEBUG|OnDoc| +2026-03-16 13:49:11.2195|DEBUG|OnDoc| +2026-03-16 13:49:11.2195|DEBUG|OnDoc| +2026-03-16 13:49:11.2195|DEBUG|OnDoc| +2026-03-16 13:49:11.2345|DEBUG|OnDoc| +2026-03-16 13:49:11.2345|DEBUG|OnDoc| +2026-03-16 13:49:11.2345|DEBUG|OnDoc| +2026-03-16 13:49:11.2345|DEBUG|OnDoc| +2026-03-16 13:49:11.2345|DEBUG|OnDoc| +2026-03-16 13:49:11.2345|DEBUG|OnDoc| +2026-03-16 13:49:11.2345|DEBUG|OnDoc| +2026-03-16 13:49:11.2345|DEBUG|OnDoc| +2026-03-16 13:49:11.2510|DEBUG|OnDoc| +2026-03-16 13:49:11.2510|DEBUG|OnDoc| +2026-03-16 13:49:11.2510|DEBUG|OnDoc| +2026-03-16 13:49:11.2510|DEBUG|OnDoc| +2026-03-16 13:49:11.2510|DEBUG|OnDoc| +2026-03-16 13:49:11.2510|DEBUG|OnDoc| +2026-03-16 13:49:11.2510|DEBUG|OnDoc| +2026-03-16 13:49:11.2510|DEBUG|OnDoc| +2026-03-16 13:49:11.2510|DEBUG|OnDoc| +2026-03-16 13:49:11.2666|DEBUG|OnDoc| +2026-03-16 13:49:11.2666|DEBUG|OnDoc| +2026-03-16 13:49:11.2666|DEBUG|OnDoc| +2026-03-16 13:49:11.2666|DEBUG|OnDoc| +2026-03-16 13:49:11.2666|DEBUG|OnDoc| +2026-03-16 13:49:11.2666|DEBUG|OnDoc| +2026-03-16 13:49:11.2666|DEBUG|OnDoc| +2026-03-16 13:49:11.2666|DEBUG|OnDoc| +2026-03-16 13:49:11.2666|DEBUG|OnDoc| +2026-03-16 13:49:11.2666|DEBUG|OnDoc| +2026-03-16 13:49:11.3093|DEBUG|OnDoc| +2026-03-16 13:49:11.3093|DEBUG|OnDoc| +2026-03-16 13:49:11.3739|DEBUG|OnDoc| +2026-03-16 13:49:11.3771|DEBUG|OnDoc| +2026-03-16 13:49:11.4057|DEBUG|OnDoc| +2026-03-16 13:49:11.4089|DEBUG|OnDoc| +2026-03-16 13:49:11.4089|DEBUG|OnDoc| +2026-03-16 13:49:11.4089|DEBUG|OnDoc| +2026-03-16 13:49:11.4405|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 13:49:11.4405|DEBUG|OnDoc| +2026-03-16 13:49:11.4536|DEBUG|OnDoc| +2026-03-16 13:49:11.4536|DEBUG|OnDoc| +2026-03-16 13:49:11.4536|DEBUG|OnDoc| +2026-03-16 13:49:11.4536|DEBUG|OnDoc| +2026-03-16 13:49:11.4536|DEBUG|OnDoc| +2026-03-16 13:49:11.4536|DEBUG|OnDoc| +2026-03-16 13:49:11.4716|DEBUG|OnDoc| +2026-03-16 13:49:11.4716|DEBUG|OnDoc|Generate_Word +2026-03-16 13:49:12.0725|DEBUG|OnDoc|Word2013 +2026-03-16 13:49:12.0829|DEBUG|OnDoc|Word2013 +2026-03-16 13:49:22.0156|DEBUG|OnDoc|Generate_Word +2026-03-16 13:49:22.0619|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014832 +2026-03-16 13:49:22.0629|INFO|DocLog|Dokument über API erstellt +2026-03-16 13:49:22.0629|INFO|APIDocLog|Dokument return to sender +2026-03-16 13:49:22.0629|DEBUG|OnDoc| +2026-03-16 13:49:22.0629|DEBUG|OnDoc| +2026-03-16 13:49:22.0629|DEBUG|OnDoc| +2026-03-16 13:49:22.0629|DEBUG|OnDoc| +2026-03-16 13:49:22.0629|DEBUG|OnDoc| +2026-03-16 13:49:22.0629|DEBUG|OnDoc| +2026-03-16 13:51:17.0644|DEBUG|OnDoc| +2026-03-16 13:51:17.1609|DEBUG|OnDoc| +2026-03-16 13:51:17.1609|DEBUG|OnDoc| +2026-03-16 13:51:17.1609|DEBUG|OnDoc| +2026-03-16 13:51:31.3967|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 13:51:31.6211|INFO|APIDocLog|Start CreateDoc +2026-03-16 13:51:31.7103|INFO|APIDocLog|Input JSON +2026-03-16 13:51:31.7319|DEBUG|OnDoc|Start GenDoc +2026-03-16 13:51:31.7319|DEBUG|OnDoc| +2026-03-16 13:51:31.7319|DEBUG|OnDoc| +2026-03-16 13:51:31.7319|DEBUG|OnDoc| +2026-03-16 13:51:31.7319|DEBUG|OnDoc| +2026-03-16 13:51:31.7319|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7359|DEBUG|OnDoc| +2026-03-16 13:51:31.7542|DEBUG|OnDoc| +2026-03-16 13:51:31.7542|DEBUG|OnDoc| +2026-03-16 13:51:31.7542|DEBUG|OnDoc| +2026-03-16 13:51:31.7542|DEBUG|OnDoc| +2026-03-16 13:51:31.7542|DEBUG|OnDoc| +2026-03-16 13:51:31.7542|DEBUG|OnDoc| +2026-03-16 13:51:31.7542|DEBUG|OnDoc| +2026-03-16 13:51:31.7542|DEBUG|OnDoc| +2026-03-16 13:51:31.7542|DEBUG|OnDoc| +2026-03-16 13:51:31.7542|DEBUG|OnDoc| +2026-03-16 13:51:31.7542|DEBUG|OnDoc| +2026-03-16 13:51:31.7542|DEBUG|OnDoc| +2026-03-16 13:51:31.7542|DEBUG|OnDoc| +2026-03-16 13:51:31.7542|DEBUG|OnDoc| +2026-03-16 13:51:31.7905|DEBUG|OnDoc| +2026-03-16 13:51:31.7905|DEBUG|OnDoc| +2026-03-16 13:51:31.8367|DEBUG|OnDoc| +2026-03-16 13:51:31.8367|DEBUG|OnDoc| +2026-03-16 13:51:31.8630|DEBUG|OnDoc| +2026-03-16 13:51:31.8630|DEBUG|OnDoc| +2026-03-16 13:51:31.8630|DEBUG|OnDoc| +2026-03-16 13:51:31.8630|DEBUG|OnDoc| +2026-03-16 13:51:31.8835|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 13:51:31.8835|DEBUG|OnDoc| +2026-03-16 13:51:31.8835|DEBUG|OnDoc| +2026-03-16 13:51:31.8920|DEBUG|OnDoc| +2026-03-16 13:51:31.8920|DEBUG|OnDoc| +2026-03-16 13:51:31.8920|DEBUG|OnDoc| +2026-03-16 13:51:31.8920|DEBUG|OnDoc| +2026-03-16 13:51:31.8920|DEBUG|OnDoc| +2026-03-16 13:51:31.8920|DEBUG|OnDoc| +2026-03-16 13:51:31.9063|DEBUG|OnDoc|Generate_Word +2026-03-16 13:51:32.3761|DEBUG|OnDoc|Word2013 +2026-03-16 13:51:32.3761|DEBUG|OnDoc|Word2013 +2026-03-16 13:51:39.6030|DEBUG|OnDoc|Generate_Word +2026-03-16 13:51:39.6732|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014848 +2026-03-16 13:51:39.6732|INFO|DocLog|Dokument über API erstellt +2026-03-16 13:51:39.6732|INFO|APIDocLog|Dokument return to sender +2026-03-16 13:51:39.6732|DEBUG|OnDoc| +2026-03-16 13:51:39.6732|DEBUG|OnDoc| +2026-03-16 13:51:39.6732|DEBUG|OnDoc| +2026-03-16 13:51:39.6732|DEBUG|OnDoc| +2026-03-16 13:51:39.6732|DEBUG|OnDoc| +2026-03-16 13:51:39.6732|DEBUG|OnDoc| +2026-03-16 13:54:44.2759|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 13:54:44.3458|INFO|APIDocLog|Start CreateDoc +2026-03-16 13:54:44.3675|INFO|APIDocLog|Input JSON +2026-03-16 13:54:44.3675|DEBUG|OnDoc|Start GenDoc +2026-03-16 13:54:44.3675|DEBUG|OnDoc| +2026-03-16 13:54:44.3675|DEBUG|OnDoc| +2026-03-16 13:54:44.3675|DEBUG|OnDoc| +2026-03-16 13:54:44.3675|DEBUG|OnDoc| +2026-03-16 13:54:44.3675|DEBUG|OnDoc| +2026-03-16 13:54:44.3675|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3757|DEBUG|OnDoc| +2026-03-16 13:54:44.3912|DEBUG|OnDoc| +2026-03-16 13:54:44.3912|DEBUG|OnDoc| +2026-03-16 13:54:44.4119|DEBUG|OnDoc| +2026-03-16 13:54:44.4119|DEBUG|OnDoc| +2026-03-16 13:54:44.4374|DEBUG|OnDoc| +2026-03-16 13:54:44.4382|DEBUG|OnDoc| +2026-03-16 13:54:44.4382|DEBUG|OnDoc| +2026-03-16 13:54:44.4382|DEBUG|OnDoc| +2026-03-16 13:54:44.4382|DEBUG|OnDoc| +2026-03-16 13:54:44.4539|DEBUG|OnDoc| +2026-03-16 13:54:44.4539|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 13:54:44.4539|DEBUG|OnDoc| +2026-03-16 13:54:44.4707|DEBUG|OnDoc| +2026-03-16 13:54:44.4707|DEBUG|OnDoc| +2026-03-16 13:54:44.4707|DEBUG|OnDoc| +2026-03-16 13:54:44.4707|DEBUG|OnDoc| +2026-03-16 13:54:44.4707|DEBUG|OnDoc| +2026-03-16 13:54:44.4707|DEBUG|OnDoc| +2026-03-16 13:54:44.4849|DEBUG|OnDoc| +2026-03-16 13:54:44.4849|DEBUG|OnDoc|Generate_Word +2026-03-16 13:54:44.4849|DEBUG|OnDoc|Word2013 +2026-03-16 13:54:44.4849|DEBUG|OnDoc|Word2013 +2026-03-16 13:55:06.4607|DEBUG|OnDoc|Generate_Word +2026-03-16 13:55:06.4986|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014853 +2026-03-16 13:55:06.4986|INFO|DocLog|Dokument über API erstellt +2026-03-16 13:55:06.4986|INFO|APIDocLog|Dokument return to sender +2026-03-16 13:55:06.5006|DEBUG|OnDoc| +2026-03-16 13:55:06.5006|DEBUG|OnDoc| +2026-03-16 13:55:06.5006|DEBUG|OnDoc| +2026-03-16 13:55:06.5006|DEBUG|OnDoc| +2026-03-16 13:55:06.5006|DEBUG|OnDoc| +2026-03-16 13:55:06.5006|DEBUG|OnDoc| +2026-03-16 13:55:10.7645|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 13:55:10.8352|INFO|APIDocLog|Start CreateDoc +2026-03-16 13:55:10.8565|INFO|APIDocLog|Input JSON +2026-03-16 13:55:10.8565|DEBUG|OnDoc|Start GenDoc +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8595|DEBUG|OnDoc| +2026-03-16 13:55:10.8752|DEBUG|OnDoc| +2026-03-16 13:55:10.8752|DEBUG|OnDoc| +2026-03-16 13:55:10.8752|DEBUG|OnDoc| +2026-03-16 13:55:10.8752|DEBUG|OnDoc| +2026-03-16 13:55:10.8752|DEBUG|OnDoc| +2026-03-16 13:55:10.9095|DEBUG|OnDoc| +2026-03-16 13:55:10.9095|DEBUG|OnDoc| +2026-03-16 13:55:10.9095|DEBUG|OnDoc| +2026-03-16 13:55:10.9095|DEBUG|OnDoc| +2026-03-16 13:55:10.9095|DEBUG|OnDoc| +2026-03-16 13:55:10.9095|DEBUG|OnDoc| +2026-03-16 13:55:10.9308|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 13:55:10.9308|DEBUG|OnDoc| +2026-03-16 13:55:10.9378|DEBUG|OnDoc| +2026-03-16 13:55:10.9378|DEBUG|OnDoc| +2026-03-16 13:55:10.9378|DEBUG|OnDoc| +2026-03-16 13:55:10.9378|DEBUG|OnDoc| +2026-03-16 13:55:10.9378|DEBUG|OnDoc| +2026-03-16 13:55:10.9378|DEBUG|OnDoc| +2026-03-16 13:55:10.9378|DEBUG|OnDoc| +2026-03-16 13:55:10.9378|DEBUG|OnDoc|Generate_Word +2026-03-16 13:55:10.9547|DEBUG|OnDoc|Word2013 +2026-03-16 13:55:10.9547|DEBUG|OnDoc|Word2013 +2026-03-16 13:55:31.6039|DEBUG|OnDoc|Generate_Word +2026-03-16 13:55:31.6417|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014869 +2026-03-16 13:55:31.6417|INFO|DocLog|Dokument über API erstellt +2026-03-16 13:55:31.6417|INFO|APIDocLog|Dokument return to sender +2026-03-16 13:55:31.6417|DEBUG|OnDoc| +2026-03-16 13:55:31.6417|DEBUG|OnDoc| +2026-03-16 13:55:31.6417|DEBUG|OnDoc| +2026-03-16 13:55:31.6417|DEBUG|OnDoc| +2026-03-16 13:55:31.6417|DEBUG|OnDoc| +2026-03-16 13:55:31.6417|DEBUG|OnDoc| +2026-03-16 14:11:00.5739|DEBUG|OnDoc| +2026-03-16 14:11:00.6809|DEBUG|OnDoc| +2026-03-16 14:11:00.6809|DEBUG|OnDoc| +2026-03-16 14:11:00.6809|DEBUG|OnDoc| +2026-03-16 14:11:01.1040|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 14:11:01.4197|INFO|APIDocLog|Start CreateDoc +2026-03-16 14:11:01.5541|INFO|APIDocLog|Input JSON +2026-03-16 14:11:01.5887|DEBUG|OnDoc|Start GenDoc +2026-03-16 14:11:01.5887|DEBUG|OnDoc| +2026-03-16 14:11:01.5953|DEBUG|OnDoc| +2026-03-16 14:11:01.5953|DEBUG|OnDoc| +2026-03-16 14:11:01.5953|DEBUG|OnDoc| +2026-03-16 14:11:01.5953|DEBUG|OnDoc| +2026-03-16 14:11:01.5953|DEBUG|OnDoc| +2026-03-16 14:11:01.5953|DEBUG|OnDoc| +2026-03-16 14:11:01.5953|DEBUG|OnDoc| +2026-03-16 14:11:01.6098|DEBUG|OnDoc| +2026-03-16 14:11:01.6098|DEBUG|OnDoc| +2026-03-16 14:11:01.6098|DEBUG|OnDoc| +2026-03-16 14:11:01.6098|DEBUG|OnDoc| +2026-03-16 14:11:01.6098|DEBUG|OnDoc| +2026-03-16 14:11:01.6098|DEBUG|OnDoc| +2026-03-16 14:11:01.6253|DEBUG|OnDoc| +2026-03-16 14:11:01.6253|DEBUG|OnDoc| +2026-03-16 14:11:01.6253|DEBUG|OnDoc| +2026-03-16 14:11:01.6253|DEBUG|OnDoc| +2026-03-16 14:11:01.6253|DEBUG|OnDoc| +2026-03-16 14:11:01.6253|DEBUG|OnDoc| +2026-03-16 14:11:01.6555|DEBUG|OnDoc| +2026-03-16 14:11:01.6591|DEBUG|OnDoc| +2026-03-16 14:11:01.6591|DEBUG|OnDoc| +2026-03-16 14:11:01.6591|DEBUG|OnDoc| +2026-03-16 14:11:01.6591|DEBUG|OnDoc| +2026-03-16 14:11:01.6591|DEBUG|OnDoc| +2026-03-16 14:11:01.6591|DEBUG|OnDoc| +2026-03-16 14:11:01.6591|DEBUG|OnDoc| +2026-03-16 14:11:01.6591|DEBUG|OnDoc| +2026-03-16 14:11:01.6591|DEBUG|OnDoc| +2026-03-16 14:11:01.6591|DEBUG|OnDoc| +2026-03-16 14:11:01.6591|DEBUG|OnDoc| +2026-03-16 14:11:01.6736|DEBUG|OnDoc| +2026-03-16 14:11:01.6736|DEBUG|OnDoc| +2026-03-16 14:11:01.7120|DEBUG|OnDoc| +2026-03-16 14:11:01.7120|DEBUG|OnDoc| +2026-03-16 14:11:01.8317|DEBUG|OnDoc| +2026-03-16 14:11:01.8317|DEBUG|OnDoc| +2026-03-16 14:11:01.8808|DEBUG|OnDoc| +2026-03-16 14:11:01.8808|DEBUG|OnDoc| +2026-03-16 14:11:01.8808|DEBUG|OnDoc| +2026-03-16 14:11:01.8908|DEBUG|OnDoc| +2026-03-16 14:11:01.9456|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 14:11:01.9456|DEBUG|OnDoc| +2026-03-16 14:11:01.9627|DEBUG|OnDoc| +2026-03-16 14:11:01.9627|DEBUG|OnDoc| +2026-03-16 14:11:01.9627|DEBUG|OnDoc| +2026-03-16 14:11:01.9713|DEBUG|OnDoc| +2026-03-16 14:11:01.9713|DEBUG|OnDoc| +2026-03-16 14:11:01.9854|DEBUG|OnDoc| +2026-03-16 14:11:01.9854|DEBUG|OnDoc| +2026-03-16 14:11:01.9854|DEBUG|OnDoc|Generate_Word +2026-03-16 14:11:02.7104|DEBUG|OnDoc|Word2013 +2026-03-16 14:11:02.7210|DEBUG|OnDoc|Word2013 +2026-03-16 14:11:11.5768|DEBUG|OnDoc|Generate_Word +2026-03-16 14:11:11.6485|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014877 +2026-03-16 14:11:11.6485|INFO|DocLog|Dokument über API erstellt +2026-03-16 14:11:11.6485|INFO|APIDocLog|Dokument return to sender +2026-03-16 14:11:11.6485|DEBUG|OnDoc| +2026-03-16 14:11:11.6563|DEBUG|OnDoc| +2026-03-16 14:11:11.6563|DEBUG|OnDoc| +2026-03-16 14:11:11.6563|DEBUG|OnDoc| +2026-03-16 14:11:11.6563|DEBUG|OnDoc| +2026-03-16 14:11:11.6563|DEBUG|OnDoc| +2026-03-16 14:11:43.5082|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 14:11:43.6044|INFO|APIDocLog|Start CreateDoc +2026-03-16 14:11:43.6370|INFO|APIDocLog|Input JSON +2026-03-16 14:11:43.6370|DEBUG|OnDoc|Start GenDoc +2026-03-16 14:11:43.6370|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6412|DEBUG|OnDoc| +2026-03-16 14:11:43.6572|DEBUG|OnDoc| +2026-03-16 14:11:43.6572|DEBUG|OnDoc| +2026-03-16 14:11:43.6572|DEBUG|OnDoc| +2026-03-16 14:11:43.6572|DEBUG|OnDoc| +2026-03-16 14:11:43.6572|DEBUG|OnDoc| +2026-03-16 14:11:43.6572|DEBUG|OnDoc| +2026-03-16 14:11:43.6572|DEBUG|OnDoc| +2026-03-16 14:11:43.6822|DEBUG|OnDoc| +2026-03-16 14:11:43.6822|DEBUG|OnDoc| +2026-03-16 14:11:43.7152|DEBUG|OnDoc| +2026-03-16 14:11:43.7152|DEBUG|OnDoc| +2026-03-16 14:11:43.7307|DEBUG|OnDoc| +2026-03-16 14:11:43.7307|DEBUG|OnDoc| +2026-03-16 14:11:43.7307|DEBUG|OnDoc| +2026-03-16 14:11:43.7307|DEBUG|OnDoc| +2026-03-16 14:11:43.7546|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 14:11:43.7546|DEBUG|OnDoc| +2026-03-16 14:11:43.7546|DEBUG|OnDoc| +2026-03-16 14:11:43.7546|DEBUG|OnDoc| +2026-03-16 14:11:43.7546|DEBUG|OnDoc| +2026-03-16 14:11:43.7546|DEBUG|OnDoc| +2026-03-16 14:11:43.7670|DEBUG|OnDoc| +2026-03-16 14:11:43.7670|DEBUG|OnDoc| +2026-03-16 14:11:43.7670|DEBUG|OnDoc| +2026-03-16 14:11:43.7670|DEBUG|OnDoc|Generate_Word +2026-03-16 14:11:43.7670|DEBUG|OnDoc|Word2013 +2026-03-16 14:11:43.7820|DEBUG|OnDoc|Word2013 +2026-03-16 14:11:54.6201|DEBUG|OnDoc|Generate_Word +2026-03-16 14:11:54.6582|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014885 +2026-03-16 14:11:54.6582|INFO|DocLog|Dokument über API erstellt +2026-03-16 14:11:54.6582|INFO|APIDocLog|Dokument return to sender +2026-03-16 14:11:54.6582|DEBUG|OnDoc| +2026-03-16 14:11:54.6582|DEBUG|OnDoc| +2026-03-16 14:11:54.6582|DEBUG|OnDoc| +2026-03-16 14:11:54.6582|DEBUG|OnDoc| +2026-03-16 14:11:54.6582|DEBUG|OnDoc| +2026-03-16 14:11:54.6582|DEBUG|OnDoc| +2026-03-16 14:14:34.8641|DEBUG|OnDoc| +2026-03-16 14:14:34.9744|DEBUG|OnDoc| +2026-03-16 14:14:34.9744|DEBUG|OnDoc| +2026-03-16 14:14:34.9744|DEBUG|OnDoc| +2026-03-16 14:15:04.0394|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 14:15:04.3047|INFO|APIDocLog|Start CreateDoc +2026-03-16 14:15:04.3987|INFO|APIDocLog|Input JSON +2026-03-16 14:15:04.4228|DEBUG|OnDoc|Start GenDoc +2026-03-16 14:15:04.4228|DEBUG|OnDoc| +2026-03-16 14:15:04.4228|DEBUG|OnDoc| +2026-03-16 14:15:04.4228|DEBUG|OnDoc| +2026-03-16 14:15:04.4228|DEBUG|OnDoc| +2026-03-16 14:15:04.4228|DEBUG|OnDoc| +2026-03-16 14:15:04.4228|DEBUG|OnDoc| +2026-03-16 14:15:04.4228|DEBUG|OnDoc| +2026-03-16 14:15:04.4228|DEBUG|OnDoc| +2026-03-16 14:15:04.4228|DEBUG|OnDoc| +2026-03-16 14:15:04.4228|DEBUG|OnDoc| +2026-03-16 14:15:04.4228|DEBUG|OnDoc| +2026-03-16 14:15:04.4228|DEBUG|OnDoc| +2026-03-16 14:15:04.4228|DEBUG|OnDoc| +2026-03-16 14:15:04.4228|DEBUG|OnDoc| +2026-03-16 14:15:04.4392|DEBUG|OnDoc| +2026-03-16 14:15:04.4392|DEBUG|OnDoc| +2026-03-16 14:15:04.4392|DEBUG|OnDoc| +2026-03-16 14:15:04.4392|DEBUG|OnDoc| +2026-03-16 14:15:04.4392|DEBUG|OnDoc| +2026-03-16 14:15:04.4392|DEBUG|OnDoc| +2026-03-16 14:15:04.4392|DEBUG|OnDoc| +2026-03-16 14:15:04.4532|DEBUG|OnDoc| +2026-03-16 14:15:04.4532|DEBUG|OnDoc| +2026-03-16 14:15:04.4532|DEBUG|OnDoc| +2026-03-16 14:15:04.4532|DEBUG|OnDoc| +2026-03-16 14:15:04.4532|DEBUG|OnDoc| +2026-03-16 14:15:04.4532|DEBUG|OnDoc| +2026-03-16 14:15:04.4532|DEBUG|OnDoc| +2026-03-16 14:15:04.4532|DEBUG|OnDoc| +2026-03-16 14:15:04.4532|DEBUG|OnDoc| +2026-03-16 14:15:04.4532|DEBUG|OnDoc| +2026-03-16 14:15:04.4532|DEBUG|OnDoc| +2026-03-16 14:15:04.4532|DEBUG|OnDoc| +2026-03-16 14:15:04.4532|DEBUG|OnDoc| +2026-03-16 14:15:04.4794|DEBUG|OnDoc| +2026-03-16 14:15:04.4794|DEBUG|OnDoc| +2026-03-16 14:15:04.5389|DEBUG|OnDoc| +2026-03-16 14:15:04.5389|DEBUG|OnDoc| +2026-03-16 14:15:04.5679|DEBUG|OnDoc| +2026-03-16 14:15:04.5679|DEBUG|OnDoc| +2026-03-16 14:15:04.5679|DEBUG|OnDoc| +2026-03-16 14:15:04.5679|DEBUG|OnDoc| +2026-03-16 14:15:04.5895|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 14:15:04.5895|DEBUG|OnDoc| +2026-03-16 14:15:04.6014|DEBUG|OnDoc| +2026-03-16 14:15:04.6014|DEBUG|OnDoc| +2026-03-16 14:15:04.6014|DEBUG|OnDoc| +2026-03-16 14:15:04.6014|DEBUG|OnDoc| +2026-03-16 14:15:04.6100|DEBUG|OnDoc| +2026-03-16 14:15:04.6100|DEBUG|OnDoc| +2026-03-16 14:15:04.6100|DEBUG|OnDoc| +2026-03-16 14:15:04.6100|DEBUG|OnDoc|Generate_Word +2026-03-16 14:15:05.1306|DEBUG|OnDoc|Word2013 +2026-03-16 14:15:05.1306|DEBUG|OnDoc|Word2013 +2026-03-16 14:15:13.2739|DEBUG|OnDoc|Generate_Word +2026-03-16 14:15:13.3509|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014890 +2026-03-16 14:15:13.3509|INFO|DocLog|Dokument über API erstellt +2026-03-16 14:15:13.3509|INFO|APIDocLog|Dokument return to sender +2026-03-16 14:15:13.3509|DEBUG|OnDoc| +2026-03-16 14:15:13.3509|DEBUG|OnDoc| +2026-03-16 14:15:13.3509|DEBUG|OnDoc| +2026-03-16 14:15:13.3509|DEBUG|OnDoc| +2026-03-16 14:15:13.3509|DEBUG|OnDoc| +2026-03-16 14:15:13.3509|DEBUG|OnDoc| +2026-03-16 15:34:54.7430|DEBUG|OnDoc| +2026-03-16 15:34:54.8407|DEBUG|OnDoc| +2026-03-16 15:34:54.8457|DEBUG|OnDoc| +2026-03-16 15:34:54.8457|DEBUG|OnDoc| +2026-03-16 15:34:55.3057|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 15:34:55.6950|INFO|APIDocLog|Start CreateDoc +2026-03-16 15:34:55.8434|INFO|APIDocLog|Input JSON +2026-03-16 15:34:55.8733|DEBUG|OnDoc|Start GenDoc +2026-03-16 15:34:55.8768|DEBUG|OnDoc| +2026-03-16 15:34:55.8768|DEBUG|OnDoc| +2026-03-16 15:34:55.8768|DEBUG|OnDoc| +2026-03-16 15:34:55.8768|DEBUG|OnDoc| +2026-03-16 15:34:55.8768|DEBUG|OnDoc| +2026-03-16 15:34:55.8768|DEBUG|OnDoc| +2026-03-16 15:34:55.8768|DEBUG|OnDoc| +2026-03-16 15:34:55.8768|DEBUG|OnDoc| +2026-03-16 15:34:55.8768|DEBUG|OnDoc| +2026-03-16 15:34:55.8768|DEBUG|OnDoc| +2026-03-16 15:34:55.8768|DEBUG|OnDoc| +2026-03-16 15:34:55.8768|DEBUG|OnDoc| +2026-03-16 15:34:55.8768|DEBUG|OnDoc| +2026-03-16 15:34:55.8768|DEBUG|OnDoc| +2026-03-16 15:34:55.8939|DEBUG|OnDoc| +2026-03-16 15:34:55.8939|DEBUG|OnDoc| +2026-03-16 15:34:55.8939|DEBUG|OnDoc| +2026-03-16 15:34:55.8939|DEBUG|OnDoc| +2026-03-16 15:34:55.8939|DEBUG|OnDoc| +2026-03-16 15:34:55.8939|DEBUG|OnDoc| +2026-03-16 15:34:55.9090|DEBUG|OnDoc| +2026-03-16 15:34:55.9090|DEBUG|OnDoc| +2026-03-16 15:34:55.9090|DEBUG|OnDoc| +2026-03-16 15:34:55.9090|DEBUG|OnDoc| +2026-03-16 15:34:55.9090|DEBUG|OnDoc| +2026-03-16 15:34:55.9090|DEBUG|OnDoc| +2026-03-16 15:34:55.9090|DEBUG|OnDoc| +2026-03-16 15:34:55.9090|DEBUG|OnDoc| +2026-03-16 15:34:55.9090|DEBUG|OnDoc| +2026-03-16 15:34:55.9090|DEBUG|OnDoc| +2026-03-16 15:34:55.9090|DEBUG|OnDoc| +2026-03-16 15:34:55.9090|DEBUG|OnDoc| +2026-03-16 15:34:55.9264|DEBUG|OnDoc| +2026-03-16 15:34:55.9264|DEBUG|OnDoc| +2026-03-16 15:34:55.9593|DEBUG|OnDoc| +2026-03-16 15:34:55.9593|DEBUG|OnDoc| +2026-03-16 15:34:56.0799|DEBUG|OnDoc| +2026-03-16 15:34:56.0799|DEBUG|OnDoc| +2026-03-16 15:34:56.1223|DEBUG|OnDoc| +2026-03-16 15:34:56.1274|DEBUG|OnDoc| +2026-03-16 15:34:56.1274|DEBUG|OnDoc| +2026-03-16 15:34:56.1274|DEBUG|OnDoc| +2026-03-16 15:34:56.1721|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 15:34:56.1721|DEBUG|OnDoc| +2026-03-16 15:34:56.1721|DEBUG|OnDoc| +2026-03-16 15:34:56.1721|DEBUG|OnDoc| +2026-03-16 15:34:56.1721|DEBUG|OnDoc| +2026-03-16 15:34:56.1879|DEBUG|OnDoc| +2026-03-16 15:34:56.1879|DEBUG|OnDoc| +2026-03-16 15:34:56.1879|DEBUG|OnDoc| +2026-03-16 15:34:56.1879|DEBUG|OnDoc| +2026-03-16 15:34:56.2041|DEBUG|OnDoc|Generate_Word +2026-03-16 15:34:56.9248|DEBUG|OnDoc|Word2013 +2026-03-16 15:34:56.9248|DEBUG|OnDoc|Word2013 +2026-03-16 15:35:01.5273|DEBUG|OnDoc|Generate_Word +2026-03-16 15:35:01.5989|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014904 +2026-03-16 15:35:01.5989|INFO|DocLog|Dokument über API erstellt +2026-03-16 15:35:01.5989|INFO|APIDocLog|Dokument return to sender +2026-03-16 15:35:01.5989|DEBUG|OnDoc| +2026-03-16 15:35:01.6119|DEBUG|OnDoc| +2026-03-16 15:35:01.6119|DEBUG|OnDoc| +2026-03-16 15:35:01.6119|DEBUG|OnDoc| +2026-03-16 15:35:01.6119|DEBUG|OnDoc| +2026-03-16 15:35:01.6119|DEBUG|OnDoc| +2026-03-16 15:35:43.8957|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 15:35:43.9816|INFO|APIDocLog|Start CreateDoc +2026-03-16 15:35:44.0219|INFO|APIDocLog|Input JSON +2026-03-16 15:35:44.0219|DEBUG|OnDoc|Start GenDoc +2026-03-16 15:35:44.0219|DEBUG|OnDoc| +2026-03-16 15:35:44.0219|DEBUG|OnDoc| +2026-03-16 15:35:44.0219|DEBUG|OnDoc| +2026-03-16 15:35:44.0219|DEBUG|OnDoc| +2026-03-16 15:35:44.0219|DEBUG|OnDoc| +2026-03-16 15:35:44.0219|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0314|DEBUG|OnDoc| +2026-03-16 15:35:44.0470|DEBUG|OnDoc| +2026-03-16 15:35:44.0470|DEBUG|OnDoc| +2026-03-16 15:35:44.0470|DEBUG|OnDoc| +2026-03-16 15:35:44.0470|DEBUG|OnDoc| +2026-03-16 15:35:44.0470|DEBUG|OnDoc| +2026-03-16 15:35:44.0470|DEBUG|OnDoc| +2026-03-16 15:35:44.0470|DEBUG|OnDoc| +2026-03-16 15:35:44.0769|DEBUG|OnDoc| +2026-03-16 15:35:44.0794|DEBUG|OnDoc| +2026-03-16 15:35:44.1114|DEBUG|OnDoc| +2026-03-16 15:35:44.1114|DEBUG|OnDoc| +2026-03-16 15:35:44.1258|DEBUG|OnDoc| +2026-03-16 15:35:44.1258|DEBUG|OnDoc| +2026-03-16 15:35:44.1258|DEBUG|OnDoc| +2026-03-16 15:35:44.1258|DEBUG|OnDoc| +2026-03-16 15:35:44.1493|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 15:35:44.1493|DEBUG|OnDoc| +2026-03-16 15:35:44.1493|DEBUG|OnDoc| +2026-03-16 15:35:44.1493|DEBUG|OnDoc| +2026-03-16 15:35:44.1564|DEBUG|OnDoc| +2026-03-16 15:35:44.1564|DEBUG|OnDoc| +2026-03-16 15:35:44.1564|DEBUG|OnDoc| +2026-03-16 15:35:44.1564|DEBUG|OnDoc| +2026-03-16 15:35:44.1742|DEBUG|OnDoc| +2026-03-16 15:35:44.1742|DEBUG|OnDoc|Generate_Word +2026-03-16 15:35:44.1742|DEBUG|OnDoc|Word2013 +2026-03-16 15:35:44.1742|DEBUG|OnDoc|Word2013 +2026-03-16 15:35:46.8821|DEBUG|OnDoc|Generate_Word +2026-03-16 15:35:46.8931|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014912 +2026-03-16 15:35:46.8931|INFO|DocLog|Dokument über API erstellt +2026-03-16 15:35:46.8931|INFO|APIDocLog|Dokument return to sender +2026-03-16 15:35:46.8931|DEBUG|OnDoc| +2026-03-16 15:35:46.8931|DEBUG|OnDoc| +2026-03-16 15:35:46.8931|DEBUG|OnDoc| +2026-03-16 15:35:46.8931|DEBUG|OnDoc| +2026-03-16 15:35:46.8931|DEBUG|OnDoc| +2026-03-16 15:35:46.8931|DEBUG|OnDoc| +2026-03-16 15:36:05.6619|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 15:36:05.7505|INFO|APIDocLog|Start CreateDoc +2026-03-16 15:36:05.7814|INFO|APIDocLog|Input JSON +2026-03-16 15:36:05.7814|DEBUG|OnDoc|Start GenDoc +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7814|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.7972|DEBUG|OnDoc| +2026-03-16 15:36:05.8171|DEBUG|OnDoc| +2026-03-16 15:36:05.8171|DEBUG|OnDoc| +2026-03-16 15:36:05.8524|DEBUG|OnDoc| +2026-03-16 15:36:05.8524|DEBUG|OnDoc| +2026-03-16 15:36:05.8619|DEBUG|OnDoc| +2026-03-16 15:36:05.8619|DEBUG|OnDoc| +2026-03-16 15:36:05.8619|DEBUG|OnDoc| +2026-03-16 15:36:05.8619|DEBUG|OnDoc| +2026-03-16 15:36:05.8868|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 15:36:05.8868|DEBUG|OnDoc| +2026-03-16 15:36:05.8908|DEBUG|OnDoc| +2026-03-16 15:36:05.8908|DEBUG|OnDoc| +2026-03-16 15:36:05.8908|DEBUG|OnDoc| +2026-03-16 15:36:05.8908|DEBUG|OnDoc| +2026-03-16 15:36:05.8908|DEBUG|OnDoc| +2026-03-16 15:36:05.8908|DEBUG|OnDoc| +2026-03-16 15:36:05.8908|DEBUG|OnDoc| +2026-03-16 15:36:05.8908|DEBUG|OnDoc|Generate_Word +2026-03-16 15:36:05.9090|DEBUG|OnDoc|Word2013 +2026-03-16 15:36:05.9090|DEBUG|OnDoc|Word2013 +2026-03-16 15:36:08.2136|DEBUG|OnDoc|Generate_Word +2026-03-16 15:36:08.2236|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014928 +2026-03-16 15:36:08.2236|INFO|DocLog|Dokument über API erstellt +2026-03-16 15:36:08.2236|INFO|APIDocLog|Dokument return to sender +2026-03-16 15:36:08.2236|DEBUG|OnDoc| +2026-03-16 15:36:08.2236|DEBUG|OnDoc| +2026-03-16 15:36:08.2236|DEBUG|OnDoc| +2026-03-16 15:36:08.2236|DEBUG|OnDoc| +2026-03-16 15:36:08.2236|DEBUG|OnDoc| +2026-03-16 15:36:08.2236|DEBUG|OnDoc| +2026-03-16 15:36:23.6627|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 15:36:23.7590|INFO|APIDocLog|Start CreateDoc +2026-03-16 15:36:23.7941|INFO|APIDocLog|Input JSON +2026-03-16 15:36:23.7971|DEBUG|OnDoc|Start GenDoc +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.7971|DEBUG|OnDoc| +2026-03-16 15:36:23.8354|DEBUG|OnDoc| +2026-03-16 15:36:23.8354|DEBUG|OnDoc| +2026-03-16 15:36:23.8891|DEBUG|OnDoc| +2026-03-16 15:36:23.8918|DEBUG|OnDoc| +2026-03-16 15:36:23.8918|DEBUG|OnDoc| +2026-03-16 15:36:23.8918|DEBUG|OnDoc| +2026-03-16 15:36:23.8918|DEBUG|OnDoc| +2026-03-16 15:36:23.8918|DEBUG|OnDoc| +2026-03-16 15:36:23.9367|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 15:36:23.9367|DEBUG|OnDoc| +2026-03-16 15:36:23.9420|DEBUG|OnDoc| +2026-03-16 15:36:23.9420|DEBUG|OnDoc| +2026-03-16 15:36:23.9420|DEBUG|OnDoc| +2026-03-16 15:36:23.9420|DEBUG|OnDoc| +2026-03-16 15:36:23.9420|DEBUG|OnDoc| +2026-03-16 15:36:23.9420|DEBUG|OnDoc| +2026-03-16 15:36:23.9420|DEBUG|OnDoc| +2026-03-16 15:36:23.9420|DEBUG|OnDoc|Generate_Word +2026-03-16 15:36:23.9610|DEBUG|OnDoc|Word2013 +2026-03-16 15:36:23.9610|DEBUG|OnDoc|Word2013 +2026-03-16 16:16:09.5206|DEBUG|OnDoc| +2026-03-16 16:16:09.5931|DEBUG|OnDoc| +2026-03-16 16:16:09.5961|DEBUG|OnDoc| +2026-03-16 16:16:09.5961|DEBUG|OnDoc| +2026-03-16 16:16:15.3557|INFO|APIDocLog|DokumentGegnerator Start +2026-03-16 16:16:15.5717|INFO|APIDocLog|Start CreateDoc +2026-03-16 16:16:15.6619|INFO|APIDocLog|Input JSON +2026-03-16 16:16:15.6827|DEBUG|OnDoc|Start GenDoc +2026-03-16 16:16:15.6827|DEBUG|OnDoc| +2026-03-16 16:16:15.6827|DEBUG|OnDoc| +2026-03-16 16:16:15.6827|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.6877|DEBUG|OnDoc| +2026-03-16 16:16:15.7065|DEBUG|OnDoc| +2026-03-16 16:16:15.7065|DEBUG|OnDoc| +2026-03-16 16:16:15.7065|DEBUG|OnDoc| +2026-03-16 16:16:15.7065|DEBUG|OnDoc| +2026-03-16 16:16:15.7065|DEBUG|OnDoc| +2026-03-16 16:16:15.7065|DEBUG|OnDoc| +2026-03-16 16:16:15.7065|DEBUG|OnDoc| +2026-03-16 16:16:15.7065|DEBUG|OnDoc| +2026-03-16 16:16:15.7065|DEBUG|OnDoc| +2026-03-16 16:16:15.7065|DEBUG|OnDoc| +2026-03-16 16:16:15.7065|DEBUG|OnDoc| +2026-03-16 16:16:15.7065|DEBUG|OnDoc| +2026-03-16 16:16:15.7065|DEBUG|OnDoc| +2026-03-16 16:16:15.7065|DEBUG|OnDoc| +2026-03-16 16:16:15.7320|DEBUG|OnDoc| +2026-03-16 16:16:15.7352|DEBUG|OnDoc| +2026-03-16 16:16:15.7803|DEBUG|OnDoc| +2026-03-16 16:16:15.7829|DEBUG|OnDoc| +2026-03-16 16:16:15.8068|DEBUG|OnDoc| +2026-03-16 16:16:15.8068|DEBUG|OnDoc| +2026-03-16 16:16:15.8068|DEBUG|OnDoc| +2026-03-16 16:16:15.8068|DEBUG|OnDoc| +2026-03-16 16:16:15.8269|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-16 16:16:15.8297|DEBUG|OnDoc| +2026-03-16 16:16:15.8297|DEBUG|OnDoc| +2026-03-16 16:16:15.8297|DEBUG|OnDoc| +2026-03-16 16:16:15.8297|DEBUG|OnDoc| +2026-03-16 16:16:15.8297|DEBUG|OnDoc| +2026-03-16 16:16:15.8453|DEBUG|OnDoc| +2026-03-16 16:16:15.8453|DEBUG|OnDoc| +2026-03-16 16:16:15.8453|DEBUG|OnDoc| +2026-03-16 16:16:15.8453|DEBUG|OnDoc|Generate_Word +2026-03-16 16:16:16.3116|DEBUG|OnDoc|Word2013 +2026-03-16 16:16:16.3201|DEBUG|OnDoc|Word2013 +2026-03-16 16:16:22.8622|DEBUG|OnDoc|Generate_Word +2026-03-16 16:16:22.9098|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014949 +2026-03-16 16:16:22.9098|INFO|DocLog|Dokument über API erstellt +2026-03-16 16:16:22.9098|INFO|APIDocLog|Dokument return to sender +2026-03-16 16:16:22.9098|DEBUG|OnDoc| +2026-03-16 16:16:22.9098|DEBUG|OnDoc| +2026-03-16 16:16:22.9098|DEBUG|OnDoc| +2026-03-16 16:16:22.9098|DEBUG|OnDoc| +2026-03-16 16:16:22.9098|DEBUG|OnDoc| +2026-03-16 16:16:22.9098|DEBUG|OnDoc| +2026-03-17 11:46:58.8073|DEBUG|OnDoc| +2026-03-17 11:46:58.8780|DEBUG|OnDoc| +2026-03-17 11:46:58.8780|DEBUG|OnDoc| +2026-03-17 11:46:58.8780|DEBUG|OnDoc| +2026-03-17 12:38:56.0828|DEBUG|OnDoc| +2026-03-17 12:38:56.1711|DEBUG|OnDoc| +2026-03-17 12:38:56.1711|DEBUG|OnDoc| +2026-03-17 12:38:56.1711|DEBUG|OnDoc| +2026-03-17 13:36:31.5119|DEBUG|OnDoc| +2026-03-17 13:36:31.6005|DEBUG|OnDoc| +2026-03-17 13:36:31.6005|DEBUG|OnDoc| +2026-03-17 13:36:31.6005|DEBUG|OnDoc| +2026-03-17 13:45:08.4921|DEBUG|OnDoc| +2026-03-17 13:45:08.5797|DEBUG|OnDoc| +2026-03-17 13:45:08.5797|DEBUG|OnDoc| +2026-03-17 13:45:08.5797|DEBUG|OnDoc| +2026-03-17 13:46:16.6084|DEBUG|OnDoc| +2026-03-17 13:46:16.6984|DEBUG|OnDoc| +2026-03-17 13:46:16.7014|DEBUG|OnDoc| +2026-03-17 13:46:16.7014|DEBUG|OnDoc| +2026-03-17 14:10:22.2393|DEBUG|OnDoc| +2026-03-17 14:10:22.3025|DEBUG|OnDoc| +2026-03-17 14:10:22.3025|DEBUG|OnDoc| +2026-03-17 14:10:22.3025|DEBUG|OnDoc| +2026-03-17 14:20:28.1104|DEBUG|OnDoc| +2026-03-17 14:20:28.2278|DEBUG|OnDoc| +2026-03-17 14:20:28.2318|DEBUG|OnDoc| +2026-03-17 14:20:28.2318|DEBUG|OnDoc| +2026-03-17 14:25:37.3619|DEBUG|OnDoc| +2026-03-17 14:25:37.4690|DEBUG|OnDoc| +2026-03-17 14:25:37.4690|DEBUG|OnDoc| +2026-03-17 14:25:37.4690|DEBUG|OnDoc| +2026-03-17 14:25:37.9305|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:25:38.2963|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:25:38.4655|INFO|APIDocLog|Input JSON +2026-03-17 14:25:38.4915|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:25:38.4915|DEBUG|OnDoc| +2026-03-17 14:25:38.4968|DEBUG|OnDoc| +2026-03-17 14:25:38.4968|DEBUG|OnDoc| +2026-03-17 14:25:38.4968|DEBUG|OnDoc| +2026-03-17 14:25:38.4968|DEBUG|OnDoc| +2026-03-17 14:25:38.4968|DEBUG|OnDoc| +2026-03-17 14:25:38.4968|DEBUG|OnDoc| +2026-03-17 14:25:38.4968|DEBUG|OnDoc| +2026-03-17 14:25:38.4968|DEBUG|OnDoc| +2026-03-17 14:25:38.4968|DEBUG|OnDoc| +2026-03-17 14:25:38.4968|DEBUG|OnDoc| +2026-03-17 14:25:38.4968|DEBUG|OnDoc| +2026-03-17 14:25:38.4968|DEBUG|OnDoc| +2026-03-17 14:25:38.4968|DEBUG|OnDoc| +2026-03-17 14:25:38.5186|DEBUG|OnDoc| +2026-03-17 14:25:38.5186|DEBUG|OnDoc| +2026-03-17 14:25:38.5186|DEBUG|OnDoc| +2026-03-17 14:25:38.5186|DEBUG|OnDoc| +2026-03-17 14:25:38.5186|DEBUG|OnDoc| +2026-03-17 14:25:38.5283|DEBUG|OnDoc| +2026-03-17 14:25:38.5650|DEBUG|OnDoc| +2026-03-17 14:25:38.5650|DEBUG|OnDoc| +2026-03-17 14:25:38.5650|DEBUG|OnDoc| +2026-03-17 14:25:38.5650|DEBUG|OnDoc| +2026-03-17 14:25:38.5650|DEBUG|OnDoc| +2026-03-17 14:25:38.5650|DEBUG|OnDoc| +2026-03-17 14:25:38.5650|DEBUG|OnDoc| +2026-03-17 14:25:38.5650|DEBUG|OnDoc| +2026-03-17 14:25:38.5749|DEBUG|OnDoc| +2026-03-17 14:25:38.5749|DEBUG|OnDoc| +2026-03-17 14:25:38.5749|DEBUG|OnDoc| +2026-03-17 14:25:38.5749|DEBUG|OnDoc| +2026-03-17 14:25:38.5749|DEBUG|OnDoc| +2026-03-17 14:25:38.5749|DEBUG|OnDoc| +2026-03-17 14:25:38.6081|DEBUG|OnDoc| +2026-03-17 14:25:38.6081|DEBUG|OnDoc| +2026-03-17 14:25:38.6823|DEBUG|OnDoc| +2026-03-17 14:25:38.6868|DEBUG|OnDoc| +2026-03-17 14:25:38.9373|DEBUG|OnDoc| +2026-03-17 14:25:38.9373|DEBUG|OnDoc| +2026-03-17 14:25:38.9373|DEBUG|OnDoc| +2026-03-17 14:25:38.9373|DEBUG|OnDoc| +2026-03-17 14:25:38.9854|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:25:38.9854|DEBUG|OnDoc| +2026-03-17 14:25:39.0084|DEBUG|OnDoc| +2026-03-17 14:25:39.0084|DEBUG|OnDoc| +2026-03-17 14:25:39.0084|DEBUG|OnDoc| +2026-03-17 14:25:39.0135|DEBUG|OnDoc| +2026-03-17 14:25:39.0556|DEBUG|OnDoc| +2026-03-17 14:25:39.0556|DEBUG|OnDoc| +2026-03-17 14:25:39.0616|DEBUG|OnDoc| +2026-03-17 14:25:39.0616|DEBUG|OnDoc|Generate_Word +2026-03-17 14:25:39.7156|DEBUG|OnDoc|Word2013 +2026-03-17 14:25:39.7156|DEBUG|OnDoc|Word2013 +2026-03-17 14:25:45.0041|DEBUG|OnDoc|Generate_Word +2026-03-17 14:25:45.0505|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014957 +2026-03-17 14:25:45.0505|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:25:45.0505|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:25:45.0505|DEBUG|OnDoc| +2026-03-17 14:25:45.0657|DEBUG|OnDoc| +2026-03-17 14:25:45.0657|DEBUG|OnDoc| +2026-03-17 14:25:45.0657|DEBUG|OnDoc| +2026-03-17 14:25:45.0657|DEBUG|OnDoc| +2026-03-17 14:25:45.0657|DEBUG|OnDoc| +2026-03-17 14:26:29.3526|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:26:29.4483|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:26:29.4767|INFO|APIDocLog|Input JSON +2026-03-17 14:26:29.4767|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:26:29.4767|DEBUG|OnDoc| +2026-03-17 14:26:29.4767|DEBUG|OnDoc| +2026-03-17 14:26:29.4767|DEBUG|OnDoc| +2026-03-17 14:26:29.4767|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.4818|DEBUG|OnDoc| +2026-03-17 14:26:29.5161|DEBUG|OnDoc| +2026-03-17 14:26:29.5161|DEBUG|OnDoc| +2026-03-17 14:26:29.5464|DEBUG|OnDoc| +2026-03-17 14:26:29.5464|DEBUG|OnDoc| +2026-03-17 14:26:29.5643|DEBUG|OnDoc| +2026-03-17 14:26:29.5643|DEBUG|OnDoc| +2026-03-17 14:26:29.5643|DEBUG|OnDoc| +2026-03-17 14:26:29.5643|DEBUG|OnDoc| +2026-03-17 14:26:29.5935|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:26:29.5935|DEBUG|OnDoc| +2026-03-17 14:26:29.5935|DEBUG|OnDoc| +2026-03-17 14:26:29.5935|DEBUG|OnDoc| +2026-03-17 14:26:29.5935|DEBUG|OnDoc| +2026-03-17 14:26:29.5935|DEBUG|OnDoc| +2026-03-17 14:26:29.6148|DEBUG|OnDoc| +2026-03-17 14:26:29.6148|DEBUG|OnDoc| +2026-03-17 14:26:29.6218|DEBUG|OnDoc| +2026-03-17 14:26:29.6218|DEBUG|OnDoc|Generate_Word +2026-03-17 14:26:29.6218|DEBUG|OnDoc|Word2013 +2026-03-17 14:26:29.6218|DEBUG|OnDoc|Word2013 +2026-03-17 14:26:31.9922|DEBUG|OnDoc|Generate_Word +2026-03-17 14:26:32.0034|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014965 +2026-03-17 14:26:32.0034|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:26:32.0034|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:26:32.0034|DEBUG|OnDoc| +2026-03-17 14:26:32.0034|DEBUG|OnDoc| +2026-03-17 14:26:32.0034|DEBUG|OnDoc| +2026-03-17 14:26:32.0034|DEBUG|OnDoc| +2026-03-17 14:26:32.0034|DEBUG|OnDoc| +2026-03-17 14:26:32.0034|DEBUG|OnDoc| +2026-03-17 14:26:45.8469|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:26:45.9422|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:26:45.9721|INFO|APIDocLog|Input JSON +2026-03-17 14:26:45.9721|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9721|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:45.9826|DEBUG|OnDoc| +2026-03-17 14:26:46.0003|DEBUG|OnDoc| +2026-03-17 14:26:46.0003|DEBUG|OnDoc| +2026-03-17 14:26:46.0307|DEBUG|OnDoc| +2026-03-17 14:26:46.0307|DEBUG|OnDoc| +2026-03-17 14:26:46.0307|DEBUG|OnDoc| +2026-03-17 14:26:46.0307|DEBUG|OnDoc| +2026-03-17 14:26:46.0307|DEBUG|OnDoc| +2026-03-17 14:26:46.0307|DEBUG|OnDoc| +2026-03-17 14:26:46.0609|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:26:46.0609|DEBUG|OnDoc| +2026-03-17 14:26:46.0609|DEBUG|OnDoc| +2026-03-17 14:26:46.0609|DEBUG|OnDoc| +2026-03-17 14:26:46.0609|DEBUG|OnDoc| +2026-03-17 14:26:46.0609|DEBUG|OnDoc| +2026-03-17 14:26:46.0609|DEBUG|OnDoc| +2026-03-17 14:26:46.0609|DEBUG|OnDoc| +2026-03-17 14:26:46.0759|DEBUG|OnDoc| +2026-03-17 14:26:46.0759|DEBUG|OnDoc|Generate_Word +2026-03-17 14:26:46.0759|DEBUG|OnDoc|Word2013 +2026-03-17 14:26:46.0759|DEBUG|OnDoc|Word2013 +2026-03-17 14:27:04.9167|DEBUG|OnDoc|Generate_Word +2026-03-17 14:27:04.9564|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014970 +2026-03-17 14:27:04.9564|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:27:04.9564|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:27:04.9564|DEBUG|OnDoc| +2026-03-17 14:27:04.9750|DEBUG|OnDoc| +2026-03-17 14:27:04.9750|DEBUG|OnDoc| +2026-03-17 14:27:04.9750|DEBUG|OnDoc| +2026-03-17 14:27:04.9750|DEBUG|OnDoc| +2026-03-17 14:27:04.9750|DEBUG|OnDoc| +2026-03-17 14:27:07.8937|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:27:07.9519|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:27:07.9817|INFO|APIDocLog|Input JSON +2026-03-17 14:27:07.9817|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9817|DEBUG|OnDoc| +2026-03-17 14:27:07.9979|DEBUG|OnDoc| +2026-03-17 14:27:07.9979|DEBUG|OnDoc| +2026-03-17 14:27:07.9979|DEBUG|OnDoc| +2026-03-17 14:27:07.9979|DEBUG|OnDoc| +2026-03-17 14:27:07.9979|DEBUG|OnDoc| +2026-03-17 14:27:07.9979|DEBUG|OnDoc| +2026-03-17 14:27:07.9979|DEBUG|OnDoc| +2026-03-17 14:27:07.9979|DEBUG|OnDoc| +2026-03-17 14:27:07.9979|DEBUG|OnDoc| +2026-03-17 14:27:07.9979|DEBUG|OnDoc| +2026-03-17 14:27:07.9979|DEBUG|OnDoc| +2026-03-17 14:27:07.9979|DEBUG|OnDoc| +2026-03-17 14:27:07.9979|DEBUG|OnDoc| +2026-03-17 14:27:07.9979|DEBUG|OnDoc| +2026-03-17 14:27:08.0141|DEBUG|OnDoc| +2026-03-17 14:27:08.0141|DEBUG|OnDoc| +2026-03-17 14:27:08.0454|DEBUG|OnDoc| +2026-03-17 14:27:08.0454|DEBUG|OnDoc| +2026-03-17 14:27:08.0454|DEBUG|OnDoc| +2026-03-17 14:27:08.0454|DEBUG|OnDoc| +2026-03-17 14:27:08.0454|DEBUG|OnDoc| +2026-03-17 14:27:08.0454|DEBUG|OnDoc| +2026-03-17 14:27:08.0787|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:27:08.0787|DEBUG|OnDoc| +2026-03-17 14:27:08.0787|DEBUG|OnDoc| +2026-03-17 14:27:08.0787|DEBUG|OnDoc| +2026-03-17 14:27:08.0787|DEBUG|OnDoc| +2026-03-17 14:27:08.0787|DEBUG|OnDoc| +2026-03-17 14:27:08.0921|DEBUG|OnDoc| +2026-03-17 14:27:08.0921|DEBUG|OnDoc| +2026-03-17 14:27:08.0921|DEBUG|OnDoc| +2026-03-17 14:27:08.0921|DEBUG|OnDoc|Generate_Word +2026-03-17 14:27:08.1083|DEBUG|OnDoc|Word2013 +2026-03-17 14:27:08.1083|DEBUG|OnDoc|Word2013 +2026-03-17 14:27:30.3778|DEBUG|OnDoc|Generate_Word +2026-03-17 14:27:30.4187|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014981 +2026-03-17 14:27:30.4187|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:27:30.4187|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:27:30.4187|DEBUG|OnDoc| +2026-03-17 14:27:30.4187|DEBUG|OnDoc| +2026-03-17 14:27:30.4187|DEBUG|OnDoc| +2026-03-17 14:27:30.4187|DEBUG|OnDoc| +2026-03-17 14:27:30.4187|DEBUG|OnDoc| +2026-03-17 14:27:30.4353|DEBUG|OnDoc| +2026-03-17 14:27:32.9104|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:27:32.9674|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:27:32.9948|INFO|APIDocLog|Input JSON +2026-03-17 14:27:32.9968|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:32.9968|DEBUG|OnDoc| +2026-03-17 14:27:33.0206|DEBUG|OnDoc| +2026-03-17 14:27:33.0206|DEBUG|OnDoc| +2026-03-17 14:27:33.0541|DEBUG|OnDoc| +2026-03-17 14:27:33.0541|DEBUG|OnDoc| +2026-03-17 14:27:33.0657|DEBUG|OnDoc| +2026-03-17 14:27:33.0657|DEBUG|OnDoc| +2026-03-17 14:27:33.0657|DEBUG|OnDoc| +2026-03-17 14:27:33.0657|DEBUG|OnDoc| +2026-03-17 14:27:33.0875|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:27:33.0875|DEBUG|OnDoc| +2026-03-17 14:27:33.0948|DEBUG|OnDoc| +2026-03-17 14:27:33.0948|DEBUG|OnDoc| +2026-03-17 14:27:33.0948|DEBUG|OnDoc| +2026-03-17 14:27:33.0948|DEBUG|OnDoc| +2026-03-17 14:27:33.0948|DEBUG|OnDoc| +2026-03-17 14:27:33.0948|DEBUG|OnDoc| +2026-03-17 14:27:33.0948|DEBUG|OnDoc| +2026-03-17 14:27:33.0948|DEBUG|OnDoc|Generate_Word +2026-03-17 14:27:33.1126|DEBUG|OnDoc|Word2013 +2026-03-17 14:27:33.1126|DEBUG|OnDoc|Word2013 +2026-03-17 14:33:35.3376|DEBUG|OnDoc|Generate_Word +2026-03-17 14:33:35.3735|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000014996 +2026-03-17 14:33:35.3735|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:33:35.3735|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:33:35.3735|DEBUG|OnDoc| +2026-03-17 14:33:35.3735|DEBUG|OnDoc| +2026-03-17 14:33:35.3735|DEBUG|OnDoc| +2026-03-17 14:33:35.3735|DEBUG|OnDoc| +2026-03-17 14:33:35.3735|DEBUG|OnDoc| +2026-03-17 14:33:35.3735|DEBUG|OnDoc| +2026-03-17 14:33:46.5329|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:33:46.6279|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:33:46.6587|INFO|APIDocLog|Input JSON +2026-03-17 14:33:46.6587|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6587|DEBUG|OnDoc| +2026-03-17 14:33:46.6693|DEBUG|OnDoc| +2026-03-17 14:33:46.6693|DEBUG|OnDoc| +2026-03-17 14:33:46.6693|DEBUG|OnDoc| +2026-03-17 14:33:46.6693|DEBUG|OnDoc| +2026-03-17 14:33:46.6693|DEBUG|OnDoc| +2026-03-17 14:33:46.6693|DEBUG|OnDoc| +2026-03-17 14:33:46.6693|DEBUG|OnDoc| +2026-03-17 14:33:46.6693|DEBUG|OnDoc| +2026-03-17 14:33:46.6693|DEBUG|OnDoc| +2026-03-17 14:33:46.6693|DEBUG|OnDoc| +2026-03-17 14:33:46.6693|DEBUG|OnDoc| +2026-03-17 14:33:46.6693|DEBUG|OnDoc| +2026-03-17 14:33:46.6693|DEBUG|OnDoc| +2026-03-17 14:33:46.6693|DEBUG|OnDoc| +2026-03-17 14:33:46.6856|DEBUG|OnDoc| +2026-03-17 14:33:46.6856|DEBUG|OnDoc| +2026-03-17 14:33:46.7200|DEBUG|OnDoc| +2026-03-17 14:33:46.7200|DEBUG|OnDoc| +2026-03-17 14:33:46.7313|DEBUG|OnDoc| +2026-03-17 14:33:46.7313|DEBUG|OnDoc| +2026-03-17 14:33:46.7313|DEBUG|OnDoc| +2026-03-17 14:33:46.7313|DEBUG|OnDoc| +2026-03-17 14:33:46.7568|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:33:46.7568|DEBUG|OnDoc| +2026-03-17 14:33:46.7624|DEBUG|OnDoc| +2026-03-17 14:33:46.7624|DEBUG|OnDoc| +2026-03-17 14:33:46.7624|DEBUG|OnDoc| +2026-03-17 14:33:46.7624|DEBUG|OnDoc| +2026-03-17 14:33:46.7624|DEBUG|OnDoc| +2026-03-17 14:33:46.7624|DEBUG|OnDoc| +2026-03-17 14:33:46.7624|DEBUG|OnDoc| +2026-03-17 14:33:46.7624|DEBUG|OnDoc|Generate_Word +2026-03-17 14:33:46.7838|DEBUG|OnDoc|Word2013 +2026-03-17 14:33:46.7838|DEBUG|OnDoc|Word2013 +2026-03-17 14:34:06.4320|DEBUG|OnDoc|Generate_Word +2026-03-17 14:34:06.4704|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015007 +2026-03-17 14:34:06.4704|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:34:06.4704|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:34:06.4704|DEBUG|OnDoc| +2026-03-17 14:34:06.4704|DEBUG|OnDoc| +2026-03-17 14:34:06.4811|DEBUG|OnDoc| +2026-03-17 14:34:06.4811|DEBUG|OnDoc| +2026-03-17 14:34:06.4811|DEBUG|OnDoc| +2026-03-17 14:34:06.4811|DEBUG|OnDoc| +2026-03-17 14:34:11.8589|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:34:11.9276|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:34:11.9497|INFO|APIDocLog|Input JSON +2026-03-17 14:34:11.9522|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9522|DEBUG|OnDoc| +2026-03-17 14:34:11.9655|DEBUG|OnDoc| +2026-03-17 14:34:11.9655|DEBUG|OnDoc| +2026-03-17 14:34:11.9655|DEBUG|OnDoc| +2026-03-17 14:34:11.9655|DEBUG|OnDoc| +2026-03-17 14:34:11.9655|DEBUG|OnDoc| +2026-03-17 14:34:11.9655|DEBUG|OnDoc| +2026-03-17 14:34:11.9655|DEBUG|OnDoc| +2026-03-17 14:34:11.9655|DEBUG|OnDoc| +2026-03-17 14:34:11.9655|DEBUG|OnDoc| +2026-03-17 14:34:11.9655|DEBUG|OnDoc| +2026-03-17 14:34:11.9655|DEBUG|OnDoc| +2026-03-17 14:34:11.9655|DEBUG|OnDoc| +2026-03-17 14:34:11.9655|DEBUG|OnDoc| +2026-03-17 14:34:11.9655|DEBUG|OnDoc| +2026-03-17 14:34:11.9830|DEBUG|OnDoc| +2026-03-17 14:34:11.9830|DEBUG|OnDoc| +2026-03-17 14:34:12.0056|DEBUG|OnDoc| +2026-03-17 14:34:12.0056|DEBUG|OnDoc| +2026-03-17 14:34:12.0161|DEBUG|OnDoc| +2026-03-17 14:34:12.0161|DEBUG|OnDoc| +2026-03-17 14:34:12.0161|DEBUG|OnDoc| +2026-03-17 14:34:12.0161|DEBUG|OnDoc| +2026-03-17 14:34:12.0319|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:34:12.0319|DEBUG|OnDoc| +2026-03-17 14:34:12.0319|DEBUG|OnDoc| +2026-03-17 14:34:12.0319|DEBUG|OnDoc| +2026-03-17 14:34:12.0319|DEBUG|OnDoc| +2026-03-17 14:34:12.0319|DEBUG|OnDoc| +2026-03-17 14:34:12.0456|DEBUG|OnDoc| +2026-03-17 14:34:12.0456|DEBUG|OnDoc| +2026-03-17 14:34:12.0456|DEBUG|OnDoc| +2026-03-17 14:34:12.0456|DEBUG|OnDoc|Generate_Word +2026-03-17 14:34:12.0456|DEBUG|OnDoc|Word2013 +2026-03-17 14:34:12.0600|DEBUG|OnDoc|Word2013 +2026-03-17 14:35:08.2258|DEBUG|OnDoc|Generate_Word +2026-03-17 14:35:08.2638|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015015 +2026-03-17 14:35:08.2638|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:35:08.2638|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:35:08.2638|DEBUG|OnDoc| +2026-03-17 14:35:08.2638|DEBUG|OnDoc| +2026-03-17 14:35:08.2638|DEBUG|OnDoc| +2026-03-17 14:35:08.2638|DEBUG|OnDoc| +2026-03-17 14:35:08.2638|DEBUG|OnDoc| +2026-03-17 14:35:08.2638|DEBUG|OnDoc| +2026-03-17 14:35:09.6584|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:35:09.7055|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:35:09.7296|INFO|APIDocLog|Input JSON +2026-03-17 14:35:09.7331|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7331|DEBUG|OnDoc| +2026-03-17 14:35:09.7469|DEBUG|OnDoc| +2026-03-17 14:35:09.7469|DEBUG|OnDoc| +2026-03-17 14:35:09.7469|DEBUG|OnDoc| +2026-03-17 14:35:09.7469|DEBUG|OnDoc| +2026-03-17 14:35:09.7469|DEBUG|OnDoc| +2026-03-17 14:35:09.7469|DEBUG|OnDoc| +2026-03-17 14:35:09.7469|DEBUG|OnDoc| +2026-03-17 14:35:09.7469|DEBUG|OnDoc| +2026-03-17 14:35:09.7469|DEBUG|OnDoc| +2026-03-17 14:35:09.7469|DEBUG|OnDoc| +2026-03-17 14:35:09.7469|DEBUG|OnDoc| +2026-03-17 14:35:09.7469|DEBUG|OnDoc| +2026-03-17 14:35:09.7469|DEBUG|OnDoc| +2026-03-17 14:35:09.7644|DEBUG|OnDoc| +2026-03-17 14:35:09.7644|DEBUG|OnDoc| +2026-03-17 14:35:09.7883|DEBUG|OnDoc| +2026-03-17 14:35:09.7883|DEBUG|OnDoc| +2026-03-17 14:35:09.8011|DEBUG|OnDoc| +2026-03-17 14:35:09.8011|DEBUG|OnDoc| +2026-03-17 14:35:09.8011|DEBUG|OnDoc| +2026-03-17 14:35:09.8011|DEBUG|OnDoc| +2026-03-17 14:35:09.8170|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:35:09.8170|DEBUG|OnDoc| +2026-03-17 14:35:09.8170|DEBUG|OnDoc| +2026-03-17 14:35:09.8170|DEBUG|OnDoc| +2026-03-17 14:35:09.8170|DEBUG|OnDoc| +2026-03-17 14:35:09.8170|DEBUG|OnDoc| +2026-03-17 14:35:09.8284|DEBUG|OnDoc| +2026-03-17 14:35:09.8284|DEBUG|OnDoc| +2026-03-17 14:35:09.8284|DEBUG|OnDoc| +2026-03-17 14:35:09.8284|DEBUG|OnDoc|Generate_Word +2026-03-17 14:35:09.8420|DEBUG|OnDoc|Word2013 +2026-03-17 14:35:09.8420|DEBUG|OnDoc|Word2013 +2026-03-17 14:39:54.8932|DEBUG|OnDoc|Generate_Word +2026-03-17 14:39:54.9337|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015020 +2026-03-17 14:39:54.9347|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:39:54.9347|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:39:54.9347|DEBUG|OnDoc| +2026-03-17 14:39:54.9529|DEBUG|OnDoc| +2026-03-17 14:39:54.9529|DEBUG|OnDoc| +2026-03-17 14:39:54.9529|DEBUG|OnDoc| +2026-03-17 14:39:54.9529|DEBUG|OnDoc| +2026-03-17 14:39:54.9529|DEBUG|OnDoc| +2026-03-17 14:40:04.8079|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:40:04.9060|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:40:04.9291|INFO|APIDocLog|Input JSON +2026-03-17 14:40:04.9291|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:40:04.9291|DEBUG|OnDoc| +2026-03-17 14:40:04.9291|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9350|DEBUG|OnDoc| +2026-03-17 14:40:04.9502|DEBUG|OnDoc| +2026-03-17 14:40:04.9502|DEBUG|OnDoc| +2026-03-17 14:40:04.9502|DEBUG|OnDoc| +2026-03-17 14:40:04.9502|DEBUG|OnDoc| +2026-03-17 14:40:04.9502|DEBUG|OnDoc| +2026-03-17 14:40:04.9502|DEBUG|OnDoc| +2026-03-17 14:40:04.9502|DEBUG|OnDoc| +2026-03-17 14:40:04.9502|DEBUG|OnDoc| +2026-03-17 14:40:04.9502|DEBUG|OnDoc| +2026-03-17 14:40:04.9803|DEBUG|OnDoc| +2026-03-17 14:40:04.9818|DEBUG|OnDoc| +2026-03-17 14:40:05.0043|DEBUG|OnDoc| +2026-03-17 14:40:05.0043|DEBUG|OnDoc| +2026-03-17 14:40:05.0199|DEBUG|OnDoc| +2026-03-17 14:40:05.0199|DEBUG|OnDoc| +2026-03-17 14:40:05.0199|DEBUG|OnDoc| +2026-03-17 14:40:05.0199|DEBUG|OnDoc| +2026-03-17 14:40:05.0373|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:40:05.0373|DEBUG|OnDoc| +2026-03-17 14:40:05.0373|DEBUG|OnDoc| +2026-03-17 14:40:05.0373|DEBUG|OnDoc| +2026-03-17 14:40:05.0441|DEBUG|OnDoc| +2026-03-17 14:40:05.0441|DEBUG|OnDoc| +2026-03-17 14:40:05.0441|DEBUG|OnDoc| +2026-03-17 14:40:05.0441|DEBUG|OnDoc| +2026-03-17 14:40:05.0441|DEBUG|OnDoc| +2026-03-17 14:40:05.0595|DEBUG|OnDoc|Generate_Word +2026-03-17 14:40:05.0595|DEBUG|OnDoc|Word2013 +2026-03-17 14:40:05.0595|DEBUG|OnDoc|Word2013 +2026-03-17 14:41:21.2218|DEBUG|OnDoc|Generate_Word +2026-03-17 14:41:21.2582|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015031 +2026-03-17 14:41:21.2582|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:41:21.2582|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:41:21.2582|DEBUG|OnDoc| +2026-03-17 14:41:21.2635|DEBUG|OnDoc| +2026-03-17 14:41:21.2635|DEBUG|OnDoc| +2026-03-17 14:41:21.2635|DEBUG|OnDoc| +2026-03-17 14:41:21.2635|DEBUG|OnDoc| +2026-03-17 14:41:21.2635|DEBUG|OnDoc| +2026-03-17 14:41:49.0089|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:41:49.0833|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:41:49.1051|INFO|APIDocLog|Input JSON +2026-03-17 14:41:49.1084|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1084|DEBUG|OnDoc| +2026-03-17 14:41:49.1224|DEBUG|OnDoc| +2026-03-17 14:41:49.1224|DEBUG|OnDoc| +2026-03-17 14:41:49.1224|DEBUG|OnDoc| +2026-03-17 14:41:49.1224|DEBUG|OnDoc| +2026-03-17 14:41:49.1224|DEBUG|OnDoc| +2026-03-17 14:41:49.1224|DEBUG|OnDoc| +2026-03-17 14:41:49.1224|DEBUG|OnDoc| +2026-03-17 14:41:49.1224|DEBUG|OnDoc| +2026-03-17 14:41:49.1224|DEBUG|OnDoc| +2026-03-17 14:41:49.1224|DEBUG|OnDoc| +2026-03-17 14:41:49.1224|DEBUG|OnDoc| +2026-03-17 14:41:49.1224|DEBUG|OnDoc| +2026-03-17 14:41:49.1224|DEBUG|OnDoc| +2026-03-17 14:41:49.1224|DEBUG|OnDoc| +2026-03-17 14:41:49.1512|DEBUG|OnDoc| +2026-03-17 14:41:49.1535|DEBUG|OnDoc| +2026-03-17 14:41:49.1756|DEBUG|OnDoc| +2026-03-17 14:41:49.1756|DEBUG|OnDoc| +2026-03-17 14:41:49.1897|DEBUG|OnDoc| +2026-03-17 14:41:49.1897|DEBUG|OnDoc| +2026-03-17 14:41:49.1897|DEBUG|OnDoc| +2026-03-17 14:41:49.1897|DEBUG|OnDoc| +2026-03-17 14:41:49.2065|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:41:49.2065|DEBUG|OnDoc| +2026-03-17 14:41:49.2065|DEBUG|OnDoc| +2026-03-17 14:41:49.2065|DEBUG|OnDoc| +2026-03-17 14:41:49.2065|DEBUG|OnDoc| +2026-03-17 14:41:49.2065|DEBUG|OnDoc| +2026-03-17 14:41:49.2204|DEBUG|OnDoc| +2026-03-17 14:41:49.2204|DEBUG|OnDoc| +2026-03-17 14:41:49.2204|DEBUG|OnDoc| +2026-03-17 14:41:49.2204|DEBUG|OnDoc|Generate_Word +2026-03-17 14:41:49.2359|DEBUG|OnDoc|Word2013 +2026-03-17 14:41:49.2359|DEBUG|OnDoc|Word2013 +2026-03-17 14:41:54.2454|DEBUG|OnDoc|Generate_Word +2026-03-17 14:41:54.2838|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015046 +2026-03-17 14:41:54.2838|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:41:54.2838|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:41:54.2838|DEBUG|OnDoc| +2026-03-17 14:41:54.2946|DEBUG|OnDoc| +2026-03-17 14:41:54.2946|DEBUG|OnDoc| +2026-03-17 14:41:54.2946|DEBUG|OnDoc| +2026-03-17 14:41:54.2946|DEBUG|OnDoc| +2026-03-17 14:41:54.2946|DEBUG|OnDoc| +2026-03-17 14:44:28.7931|DEBUG|OnDoc| +2026-03-17 14:44:28.8844|DEBUG|OnDoc| +2026-03-17 14:44:28.8844|DEBUG|OnDoc| +2026-03-17 14:44:28.8895|DEBUG|OnDoc| +2026-03-17 14:44:29.1884|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:44:29.4552|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:44:29.5615|INFO|APIDocLog|Input JSON +2026-03-17 14:44:29.5817|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:44:29.5817|DEBUG|OnDoc| +2026-03-17 14:44:29.5817|DEBUG|OnDoc| +2026-03-17 14:44:29.5817|DEBUG|OnDoc| +2026-03-17 14:44:29.5817|DEBUG|OnDoc| +2026-03-17 14:44:29.5817|DEBUG|OnDoc| +2026-03-17 14:44:29.5817|DEBUG|OnDoc| +2026-03-17 14:44:29.5817|DEBUG|OnDoc| +2026-03-17 14:44:29.5817|DEBUG|OnDoc| +2026-03-17 14:44:29.5817|DEBUG|OnDoc| +2026-03-17 14:44:29.5817|DEBUG|OnDoc| +2026-03-17 14:44:29.5817|DEBUG|OnDoc| +2026-03-17 14:44:29.5907|DEBUG|OnDoc| +2026-03-17 14:44:29.5907|DEBUG|OnDoc| +2026-03-17 14:44:29.5907|DEBUG|OnDoc| +2026-03-17 14:44:29.5907|DEBUG|OnDoc| +2026-03-17 14:44:29.5907|DEBUG|OnDoc| +2026-03-17 14:44:29.5907|DEBUG|OnDoc| +2026-03-17 14:44:29.5907|DEBUG|OnDoc| +2026-03-17 14:44:29.5907|DEBUG|OnDoc| +2026-03-17 14:44:29.5907|DEBUG|OnDoc| +2026-03-17 14:44:29.6108|DEBUG|OnDoc| +2026-03-17 14:44:29.6108|DEBUG|OnDoc| +2026-03-17 14:44:29.6108|DEBUG|OnDoc| +2026-03-17 14:44:29.6108|DEBUG|OnDoc| +2026-03-17 14:44:29.6108|DEBUG|OnDoc| +2026-03-17 14:44:29.6108|DEBUG|OnDoc| +2026-03-17 14:44:29.6108|DEBUG|OnDoc| +2026-03-17 14:44:29.6108|DEBUG|OnDoc| +2026-03-17 14:44:29.6108|DEBUG|OnDoc| +2026-03-17 14:44:29.6108|DEBUG|OnDoc| +2026-03-17 14:44:29.6108|DEBUG|OnDoc| +2026-03-17 14:44:29.6108|DEBUG|OnDoc| +2026-03-17 14:44:29.6108|DEBUG|OnDoc| +2026-03-17 14:44:29.6108|DEBUG|OnDoc| +2026-03-17 14:44:29.6407|DEBUG|OnDoc| +2026-03-17 14:44:29.6407|DEBUG|OnDoc| +2026-03-17 14:44:29.6991|DEBUG|OnDoc| +2026-03-17 14:44:29.7027|DEBUG|OnDoc| +2026-03-17 14:44:29.7289|DEBUG|OnDoc| +2026-03-17 14:44:29.7318|DEBUG|OnDoc| +2026-03-17 14:44:29.7318|DEBUG|OnDoc| +2026-03-17 14:44:29.7318|DEBUG|OnDoc| +2026-03-17 14:44:29.7599|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:44:29.7629|DEBUG|OnDoc| +2026-03-17 14:44:29.7629|DEBUG|OnDoc| +2026-03-17 14:44:29.7629|DEBUG|OnDoc| +2026-03-17 14:44:29.7629|DEBUG|OnDoc| +2026-03-17 14:44:29.7629|DEBUG|OnDoc| +2026-03-17 14:44:29.7779|DEBUG|OnDoc| +2026-03-17 14:44:29.7779|DEBUG|OnDoc| +2026-03-17 14:44:29.7779|DEBUG|OnDoc| +2026-03-17 14:44:29.7779|DEBUG|OnDoc|Generate_Word +2026-03-17 14:44:30.3095|DEBUG|OnDoc|Word2013 +2026-03-17 14:44:30.3095|DEBUG|OnDoc|Word2013 +2026-03-17 14:44:36.3917|DEBUG|OnDoc|Generate_Word +2026-03-17 14:44:36.4330|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015054 +2026-03-17 14:44:36.4345|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:44:36.4345|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:44:36.4345|DEBUG|OnDoc| +2026-03-17 14:44:36.4345|DEBUG|OnDoc| +2026-03-17 14:44:36.4345|DEBUG|OnDoc| +2026-03-17 14:44:36.4345|DEBUG|OnDoc| +2026-03-17 14:44:36.4345|DEBUG|OnDoc| +2026-03-17 14:44:36.4345|DEBUG|OnDoc| +2026-03-17 14:45:06.0747|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:45:06.1653|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:45:06.1966|INFO|APIDocLog|Input JSON +2026-03-17 14:45:06.1966|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2001|DEBUG|OnDoc| +2026-03-17 14:45:06.2161|DEBUG|OnDoc| +2026-03-17 14:45:06.2161|DEBUG|OnDoc| +2026-03-17 14:45:06.2161|DEBUG|OnDoc| +2026-03-17 14:45:06.2161|DEBUG|OnDoc| +2026-03-17 14:45:06.2161|DEBUG|OnDoc| +2026-03-17 14:45:06.2161|DEBUG|OnDoc| +2026-03-17 14:45:06.2161|DEBUG|OnDoc| +2026-03-17 14:45:06.2322|DEBUG|OnDoc| +2026-03-17 14:45:06.2322|DEBUG|OnDoc| +2026-03-17 14:45:06.2638|DEBUG|OnDoc| +2026-03-17 14:45:06.2638|DEBUG|OnDoc| +2026-03-17 14:45:06.2858|DEBUG|OnDoc| +2026-03-17 14:45:06.2858|DEBUG|OnDoc| +2026-03-17 14:45:06.2858|DEBUG|OnDoc| +2026-03-17 14:45:06.2858|DEBUG|OnDoc| +2026-03-17 14:45:06.3118|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:45:06.3118|DEBUG|OnDoc| +2026-03-17 14:45:06.3118|DEBUG|OnDoc| +2026-03-17 14:45:06.3118|DEBUG|OnDoc| +2026-03-17 14:45:06.3249|DEBUG|OnDoc| +2026-03-17 14:45:06.3249|DEBUG|OnDoc| +2026-03-17 14:45:06.3249|DEBUG|OnDoc| +2026-03-17 14:45:06.3249|DEBUG|OnDoc| +2026-03-17 14:45:06.3249|DEBUG|OnDoc| +2026-03-17 14:45:06.3249|DEBUG|OnDoc|Generate_Word +2026-03-17 14:45:06.3439|DEBUG|OnDoc|Word2013 +2026-03-17 14:45:06.3439|DEBUG|OnDoc|Word2013 +2026-03-17 14:45:09.2779|DEBUG|OnDoc|Generate_Word +2026-03-17 14:45:09.2899|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015062 +2026-03-17 14:45:09.2899|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:45:09.2899|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:45:09.2899|DEBUG|OnDoc| +2026-03-17 14:45:09.2970|DEBUG|OnDoc| +2026-03-17 14:45:09.2970|DEBUG|OnDoc| +2026-03-17 14:45:09.2970|DEBUG|OnDoc| +2026-03-17 14:45:09.2970|DEBUG|OnDoc| +2026-03-17 14:45:09.2970|DEBUG|OnDoc| +2026-03-17 14:45:16.3661|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:45:16.4603|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:45:16.4907|INFO|APIDocLog|Input JSON +2026-03-17 14:45:16.4907|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:45:16.4907|DEBUG|OnDoc| +2026-03-17 14:45:16.4907|DEBUG|OnDoc| +2026-03-17 14:45:16.4907|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.4974|DEBUG|OnDoc| +2026-03-17 14:45:16.5125|DEBUG|OnDoc| +2026-03-17 14:45:16.5125|DEBUG|OnDoc| +2026-03-17 14:45:16.5125|DEBUG|OnDoc| +2026-03-17 14:45:16.5125|DEBUG|OnDoc| +2026-03-17 14:45:16.5125|DEBUG|OnDoc| +2026-03-17 14:45:16.5125|DEBUG|OnDoc| +2026-03-17 14:45:16.5280|DEBUG|OnDoc| +2026-03-17 14:45:16.5568|DEBUG|OnDoc| +2026-03-17 14:45:16.5568|DEBUG|OnDoc| +2026-03-17 14:45:16.5720|DEBUG|OnDoc| +2026-03-17 14:45:16.5720|DEBUG|OnDoc| +2026-03-17 14:45:16.5750|DEBUG|OnDoc| +2026-03-17 14:45:16.5750|DEBUG|OnDoc| +2026-03-17 14:45:16.6049|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:45:16.6049|DEBUG|OnDoc| +2026-03-17 14:45:16.6105|DEBUG|OnDoc| +2026-03-17 14:45:16.6105|DEBUG|OnDoc| +2026-03-17 14:45:16.6105|DEBUG|OnDoc| +2026-03-17 14:45:16.6105|DEBUG|OnDoc| +2026-03-17 14:45:16.6105|DEBUG|OnDoc| +2026-03-17 14:45:16.6105|DEBUG|OnDoc| +2026-03-17 14:45:16.6105|DEBUG|OnDoc| +2026-03-17 14:45:16.6225|DEBUG|OnDoc|Generate_Word +2026-03-17 14:45:16.6225|DEBUG|OnDoc|Word2013 +2026-03-17 14:45:16.6225|DEBUG|OnDoc|Word2013 +2026-03-17 14:46:33.6332|DEBUG|OnDoc|Generate_Word +2026-03-17 14:46:33.6703|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015078 +2026-03-17 14:46:33.6703|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:46:33.6703|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:46:33.6703|DEBUG|OnDoc| +2026-03-17 14:46:33.6703|DEBUG|OnDoc| +2026-03-17 14:46:33.6703|DEBUG|OnDoc| +2026-03-17 14:46:33.6703|DEBUG|OnDoc| +2026-03-17 14:46:33.6703|DEBUG|OnDoc| +2026-03-17 14:46:33.6703|DEBUG|OnDoc| +2026-03-17 14:46:45.5918|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:46:45.6793|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:46:45.7113|INFO|APIDocLog|Input JSON +2026-03-17 14:46:45.7113|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:46:45.7113|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7155|DEBUG|OnDoc| +2026-03-17 14:46:45.7402|DEBUG|OnDoc| +2026-03-17 14:46:45.7402|DEBUG|OnDoc| +2026-03-17 14:46:45.7746|DEBUG|OnDoc| +2026-03-17 14:46:45.7746|DEBUG|OnDoc| +2026-03-17 14:46:45.7842|DEBUG|OnDoc| +2026-03-17 14:46:45.7842|DEBUG|OnDoc| +2026-03-17 14:46:45.7842|DEBUG|OnDoc| +2026-03-17 14:46:45.7842|DEBUG|OnDoc| +2026-03-17 14:46:45.8082|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:46:45.8082|DEBUG|OnDoc| +2026-03-17 14:46:45.8128|DEBUG|OnDoc| +2026-03-17 14:46:45.8128|DEBUG|OnDoc| +2026-03-17 14:46:45.8128|DEBUG|OnDoc| +2026-03-17 14:46:45.8128|DEBUG|OnDoc| +2026-03-17 14:46:45.8128|DEBUG|OnDoc| +2026-03-17 14:46:45.8128|DEBUG|OnDoc| +2026-03-17 14:46:45.8128|DEBUG|OnDoc| +2026-03-17 14:46:45.8128|DEBUG|OnDoc|Generate_Word +2026-03-17 14:46:45.8298|DEBUG|OnDoc|Word2013 +2026-03-17 14:46:45.8298|DEBUG|OnDoc|Word2013 +2026-03-17 14:47:59.4056|DEBUG|OnDoc|Generate_Word +2026-03-17 14:47:59.4491|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015083 +2026-03-17 14:47:59.4491|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:47:59.4506|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:47:59.4506|DEBUG|OnDoc| +2026-03-17 14:47:59.4506|DEBUG|OnDoc| +2026-03-17 14:47:59.4506|DEBUG|OnDoc| +2026-03-17 14:47:59.4506|DEBUG|OnDoc| +2026-03-17 14:47:59.4506|DEBUG|OnDoc| +2026-03-17 14:47:59.4506|DEBUG|OnDoc| +2026-03-17 14:48:12.2670|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 14:48:12.3735|INFO|APIDocLog|Start CreateDoc +2026-03-17 14:48:12.4187|INFO|APIDocLog|Input JSON +2026-03-17 14:48:12.4187|DEBUG|OnDoc|Start GenDoc +2026-03-17 14:48:12.4187|DEBUG|OnDoc| +2026-03-17 14:48:12.4187|DEBUG|OnDoc| +2026-03-17 14:48:12.4187|DEBUG|OnDoc| +2026-03-17 14:48:12.4187|DEBUG|OnDoc| +2026-03-17 14:48:12.4187|DEBUG|OnDoc| +2026-03-17 14:48:12.4187|DEBUG|OnDoc| +2026-03-17 14:48:12.4187|DEBUG|OnDoc| +2026-03-17 14:48:12.4187|DEBUG|OnDoc| +2026-03-17 14:48:12.4187|DEBUG|OnDoc| +2026-03-17 14:48:12.4187|DEBUG|OnDoc| +2026-03-17 14:48:12.4187|DEBUG|OnDoc| +2026-03-17 14:48:12.4187|DEBUG|OnDoc| +2026-03-17 14:48:12.4187|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4346|DEBUG|OnDoc| +2026-03-17 14:48:12.4513|DEBUG|OnDoc| +2026-03-17 14:48:12.4513|DEBUG|OnDoc| +2026-03-17 14:48:12.4513|DEBUG|OnDoc| +2026-03-17 14:48:12.4689|DEBUG|OnDoc| +2026-03-17 14:48:12.4689|DEBUG|OnDoc| +2026-03-17 14:48:12.5158|DEBUG|OnDoc| +2026-03-17 14:48:12.5158|DEBUG|OnDoc| +2026-03-17 14:48:12.5158|DEBUG|OnDoc| +2026-03-17 14:48:12.5293|DEBUG|OnDoc| +2026-03-17 14:48:12.5293|DEBUG|OnDoc| +2026-03-17 14:48:12.5293|DEBUG|OnDoc| +2026-03-17 14:48:12.5576|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 14:48:12.5576|DEBUG|OnDoc| +2026-03-17 14:48:12.5651|DEBUG|OnDoc| +2026-03-17 14:48:12.5651|DEBUG|OnDoc| +2026-03-17 14:48:12.5651|DEBUG|OnDoc| +2026-03-17 14:48:12.5651|DEBUG|OnDoc| +2026-03-17 14:48:12.5785|DEBUG|OnDoc| +2026-03-17 14:48:12.5785|DEBUG|OnDoc| +2026-03-17 14:48:12.5785|DEBUG|OnDoc| +2026-03-17 14:48:12.5785|DEBUG|OnDoc|Generate_Word +2026-03-17 14:48:12.5941|DEBUG|OnDoc|Word2013 +2026-03-17 14:48:12.5941|DEBUG|OnDoc|Word2013 +2026-03-17 14:48:18.2955|DEBUG|OnDoc|Generate_Word +2026-03-17 14:48:18.3326|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015099 +2026-03-17 14:48:18.3326|INFO|DocLog|Dokument über API erstellt +2026-03-17 14:48:18.3326|INFO|APIDocLog|Dokument return to sender +2026-03-17 14:48:18.3326|DEBUG|OnDoc| +2026-03-17 14:48:18.3444|DEBUG|OnDoc| +2026-03-17 14:48:18.3444|DEBUG|OnDoc| +2026-03-17 14:48:18.3444|DEBUG|OnDoc| +2026-03-17 14:48:18.3444|DEBUG|OnDoc| +2026-03-17 14:48:18.3444|DEBUG|OnDoc| +2026-03-17 14:58:15.0247|DEBUG|OnDoc| +2026-03-17 14:58:15.1141|DEBUG|OnDoc| +2026-03-17 14:58:15.1141|DEBUG|OnDoc| +2026-03-17 14:58:15.1141|DEBUG|OnDoc| +2026-03-17 15:01:33.6273|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 15:01:34.0259|INFO|APIDocLog|Start CreateDoc +2026-03-17 15:01:34.1631|INFO|APIDocLog|Input JSON +2026-03-17 15:01:34.1985|DEBUG|OnDoc|Start GenDoc +2026-03-17 15:01:34.2020|DEBUG|OnDoc| +2026-03-17 15:01:34.2020|DEBUG|OnDoc| +2026-03-17 15:01:34.2020|DEBUG|OnDoc| +2026-03-17 15:01:34.2020|DEBUG|OnDoc| +2026-03-17 15:01:34.2020|DEBUG|OnDoc| +2026-03-17 15:01:34.2020|DEBUG|OnDoc| +2026-03-17 15:01:34.2020|DEBUG|OnDoc| +2026-03-17 15:01:34.2020|DEBUG|OnDoc| +2026-03-17 15:01:34.2020|DEBUG|OnDoc| +2026-03-17 15:01:34.2020|DEBUG|OnDoc| +2026-03-17 15:01:34.2020|DEBUG|OnDoc| +2026-03-17 15:01:34.2020|DEBUG|OnDoc| +2026-03-17 15:01:34.2020|DEBUG|OnDoc| +2026-03-17 15:01:34.2020|DEBUG|OnDoc| +2026-03-17 15:01:34.2183|DEBUG|OnDoc| +2026-03-17 15:01:34.2183|DEBUG|OnDoc| +2026-03-17 15:01:34.2183|DEBUG|OnDoc| +2026-03-17 15:01:34.2183|DEBUG|OnDoc| +2026-03-17 15:01:34.2183|DEBUG|OnDoc| +2026-03-17 15:01:34.2183|DEBUG|OnDoc| +2026-03-17 15:01:34.2359|DEBUG|OnDoc| +2026-03-17 15:01:34.2359|DEBUG|OnDoc| +2026-03-17 15:01:34.2359|DEBUG|OnDoc| +2026-03-17 15:01:34.2359|DEBUG|OnDoc| +2026-03-17 15:01:34.2359|DEBUG|OnDoc| +2026-03-17 15:01:34.2359|DEBUG|OnDoc| +2026-03-17 15:01:34.2477|DEBUG|OnDoc| +2026-03-17 15:01:34.2477|DEBUG|OnDoc| +2026-03-17 15:01:34.2477|DEBUG|OnDoc| +2026-03-17 15:01:34.2477|DEBUG|OnDoc| +2026-03-17 15:01:34.2477|DEBUG|OnDoc| +2026-03-17 15:01:34.2477|DEBUG|OnDoc| +2026-03-17 15:01:34.2477|DEBUG|OnDoc| +2026-03-17 15:01:34.2477|DEBUG|OnDoc| +2026-03-17 15:01:34.3030|DEBUG|OnDoc| +2026-03-17 15:01:34.3030|DEBUG|OnDoc| +2026-03-17 15:01:34.4404|DEBUG|OnDoc| +2026-03-17 15:01:34.4404|DEBUG|OnDoc| +2026-03-17 15:01:34.5142|DEBUG|OnDoc| +2026-03-17 15:01:34.5142|DEBUG|OnDoc| +2026-03-17 15:01:34.5142|DEBUG|OnDoc| +2026-03-17 15:01:34.5142|DEBUG|OnDoc| +2026-03-17 15:01:34.5663|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 15:01:34.5663|DEBUG|OnDoc| +2026-03-17 15:01:34.5831|DEBUG|OnDoc| +2026-03-17 15:01:34.5831|DEBUG|OnDoc| +2026-03-17 15:01:34.5831|DEBUG|OnDoc| +2026-03-17 15:01:34.5933|DEBUG|OnDoc| +2026-03-17 15:01:34.5933|DEBUG|OnDoc| +2026-03-17 15:01:34.6074|DEBUG|OnDoc| +2026-03-17 15:01:34.6074|DEBUG|OnDoc| +2026-03-17 15:01:34.6074|DEBUG|OnDoc|Generate_Word +2026-03-17 15:01:35.3485|DEBUG|OnDoc|Word2013 +2026-03-17 15:01:35.3585|DEBUG|OnDoc|Word2013 +2026-03-17 15:01:42.9567|DEBUG|OnDoc|Generate_Word +2026-03-17 15:01:43.0304|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015106 +2026-03-17 15:01:43.0304|INFO|DocLog|Dokument über API erstellt +2026-03-17 15:01:43.0304|INFO|APIDocLog|Dokument return to sender +2026-03-17 15:01:43.0304|DEBUG|OnDoc| +2026-03-17 15:01:43.0436|DEBUG|OnDoc| +2026-03-17 15:01:43.0436|DEBUG|OnDoc| +2026-03-17 15:01:43.0436|DEBUG|OnDoc| +2026-03-17 15:01:43.0436|DEBUG|OnDoc| +2026-03-17 15:01:43.0436|DEBUG|OnDoc| +2026-03-17 15:20:03.5711|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 15:20:03.6435|INFO|APIDocLog|Start CreateDoc +2026-03-17 15:20:03.6642|INFO|APIDocLog|Input JSON +2026-03-17 15:20:03.6642|DEBUG|OnDoc|Start GenDoc +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6687|DEBUG|OnDoc| +2026-03-17 15:20:03.6843|DEBUG|OnDoc| +2026-03-17 15:20:03.6843|DEBUG|OnDoc| +2026-03-17 15:20:03.6843|DEBUG|OnDoc| +2026-03-17 15:20:03.6843|DEBUG|OnDoc| +2026-03-17 15:20:03.6843|DEBUG|OnDoc| +2026-03-17 15:20:03.6843|DEBUG|OnDoc| +2026-03-17 15:20:03.6843|DEBUG|OnDoc| +2026-03-17 15:20:03.6843|DEBUG|OnDoc| +2026-03-17 15:20:03.6843|DEBUG|OnDoc| +2026-03-17 15:20:03.6843|DEBUG|OnDoc| +2026-03-17 15:20:03.6843|DEBUG|OnDoc| +2026-03-17 15:20:03.6843|DEBUG|OnDoc| +2026-03-17 15:20:03.7138|DEBUG|OnDoc| +2026-03-17 15:20:03.7158|DEBUG|OnDoc| +2026-03-17 15:20:03.7344|DEBUG|OnDoc| +2026-03-17 15:20:03.7344|DEBUG|OnDoc| +2026-03-17 15:20:03.7502|DEBUG|OnDoc| +2026-03-17 15:20:03.7502|DEBUG|OnDoc| +2026-03-17 15:20:03.7502|DEBUG|OnDoc| +2026-03-17 15:20:03.7502|DEBUG|OnDoc| +2026-03-17 15:20:03.7636|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 15:20:03.7636|DEBUG|OnDoc| +2026-03-17 15:20:03.7636|DEBUG|OnDoc| +2026-03-17 15:20:03.7636|DEBUG|OnDoc| +2026-03-17 15:20:03.7636|DEBUG|OnDoc| +2026-03-17 15:20:03.7636|DEBUG|OnDoc| +2026-03-17 15:20:03.7636|DEBUG|OnDoc| +2026-03-17 15:20:03.7787|DEBUG|OnDoc| +2026-03-17 15:20:03.7787|DEBUG|OnDoc| +2026-03-17 15:20:03.7787|DEBUG|OnDoc|Generate_Word +2026-03-17 15:20:03.7787|DEBUG|OnDoc|Word2013 +2026-03-17 15:20:03.7949|DEBUG|OnDoc|Word2013 +2026-03-17 15:20:09.8819|DEBUG|OnDoc|Generate_Word +2026-03-17 15:20:09.9206|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015114 +2026-03-17 15:20:09.9206|INFO|DocLog|Dokument über API erstellt +2026-03-17 15:20:09.9206|INFO|APIDocLog|Dokument return to sender +2026-03-17 15:20:09.9206|DEBUG|OnDoc| +2026-03-17 15:20:09.9206|DEBUG|OnDoc| +2026-03-17 15:20:09.9206|DEBUG|OnDoc| +2026-03-17 15:20:09.9206|DEBUG|OnDoc| +2026-03-17 15:20:09.9206|DEBUG|OnDoc| +2026-03-17 15:20:09.9206|DEBUG|OnDoc| +2026-03-17 15:30:34.0946|DEBUG|OnDoc| +2026-03-17 15:30:34.1849|DEBUG|OnDoc| +2026-03-17 15:30:34.1849|DEBUG|OnDoc| +2026-03-17 15:30:34.1849|DEBUG|OnDoc| +2026-03-17 15:30:39.1334|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 15:30:39.4263|INFO|APIDocLog|Start CreateDoc +2026-03-17 15:30:39.5472|INFO|APIDocLog|Input JSON +2026-03-17 15:30:39.5745|DEBUG|OnDoc|Start GenDoc +2026-03-17 15:30:39.5785|DEBUG|OnDoc| +2026-03-17 15:30:39.5785|DEBUG|OnDoc| +2026-03-17 15:30:39.5785|DEBUG|OnDoc| +2026-03-17 15:30:39.5785|DEBUG|OnDoc| +2026-03-17 15:30:39.5785|DEBUG|OnDoc| +2026-03-17 15:30:39.5785|DEBUG|OnDoc| +2026-03-17 15:30:39.5785|DEBUG|OnDoc| +2026-03-17 15:30:39.5785|DEBUG|OnDoc| +2026-03-17 15:30:39.5785|DEBUG|OnDoc| +2026-03-17 15:30:39.5785|DEBUG|OnDoc| +2026-03-17 15:30:39.5785|DEBUG|OnDoc| +2026-03-17 15:30:39.5785|DEBUG|OnDoc| +2026-03-17 15:30:39.5785|DEBUG|OnDoc| +2026-03-17 15:30:39.5785|DEBUG|OnDoc| +2026-03-17 15:30:39.5982|DEBUG|OnDoc| +2026-03-17 15:30:39.5982|DEBUG|OnDoc| +2026-03-17 15:30:39.5982|DEBUG|OnDoc| +2026-03-17 15:30:39.6061|DEBUG|OnDoc| +2026-03-17 15:30:39.6061|DEBUG|OnDoc| +2026-03-17 15:30:39.6061|DEBUG|OnDoc| +2026-03-17 15:30:39.6061|DEBUG|OnDoc| +2026-03-17 15:30:39.6227|DEBUG|OnDoc| +2026-03-17 15:30:39.6227|DEBUG|OnDoc| +2026-03-17 15:30:39.6227|DEBUG|OnDoc| +2026-03-17 15:30:39.6227|DEBUG|OnDoc| +2026-03-17 15:30:39.6227|DEBUG|OnDoc| +2026-03-17 15:30:39.6227|DEBUG|OnDoc| +2026-03-17 15:30:39.6227|DEBUG|OnDoc| +2026-03-17 15:30:39.6227|DEBUG|OnDoc| +2026-03-17 15:30:39.6227|DEBUG|OnDoc| +2026-03-17 15:30:39.6227|DEBUG|OnDoc| +2026-03-17 15:30:39.6227|DEBUG|OnDoc| +2026-03-17 15:30:39.6227|DEBUG|OnDoc| +2026-03-17 15:30:39.6227|DEBUG|OnDoc| +2026-03-17 15:30:39.6674|DEBUG|OnDoc| +2026-03-17 15:30:39.6697|DEBUG|OnDoc| +2026-03-17 15:30:39.7468|DEBUG|OnDoc| +2026-03-17 15:30:39.7468|DEBUG|OnDoc| +2026-03-17 15:30:39.7864|DEBUG|OnDoc| +2026-03-17 15:30:39.7864|DEBUG|OnDoc| +2026-03-17 15:30:39.7864|DEBUG|OnDoc| +2026-03-17 15:30:39.7864|DEBUG|OnDoc| +2026-03-17 15:30:39.8319|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 15:30:39.8319|DEBUG|OnDoc| +2026-03-17 15:30:39.8443|DEBUG|OnDoc| +2026-03-17 15:30:39.8443|DEBUG|OnDoc| +2026-03-17 15:30:39.8443|DEBUG|OnDoc| +2026-03-17 15:30:39.8443|DEBUG|OnDoc| +2026-03-17 15:30:39.8567|DEBUG|OnDoc| +2026-03-17 15:30:39.8567|DEBUG|OnDoc| +2026-03-17 15:30:39.8567|DEBUG|OnDoc| +2026-03-17 15:30:39.8567|DEBUG|OnDoc|Generate_Word +2026-03-17 15:30:40.5266|DEBUG|OnDoc|Word2013 +2026-03-17 15:30:40.5364|DEBUG|OnDoc|Word2013 +2026-03-17 15:30:49.6416|DEBUG|OnDoc|Generate_Word +2026-03-17 15:30:49.7143|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015122 +2026-03-17 15:30:49.7143|INFO|DocLog|Dokument über API erstellt +2026-03-17 15:30:49.7163|INFO|APIDocLog|Dokument return to sender +2026-03-17 15:30:49.7163|DEBUG|OnDoc| +2026-03-17 15:30:49.7163|DEBUG|OnDoc| +2026-03-17 15:30:49.7163|DEBUG|OnDoc| +2026-03-17 15:30:49.7163|DEBUG|OnDoc| +2026-03-17 15:30:49.7163|DEBUG|OnDoc| +2026-03-17 15:30:49.7163|DEBUG|OnDoc| +2026-03-17 15:41:24.9380|DEBUG|OnDoc| +2026-03-17 15:41:25.0299|DEBUG|OnDoc| +2026-03-17 15:41:25.0299|DEBUG|OnDoc| +2026-03-17 15:41:25.0299|DEBUG|OnDoc| +2026-03-17 15:41:25.3456|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 15:41:25.6070|INFO|APIDocLog|Start CreateDoc +2026-03-17 15:41:25.7145|INFO|APIDocLog|Input JSON +2026-03-17 15:41:25.7352|DEBUG|OnDoc|Start GenDoc +2026-03-17 15:41:25.7352|DEBUG|OnDoc| +2026-03-17 15:41:25.7352|DEBUG|OnDoc| +2026-03-17 15:41:25.7352|DEBUG|OnDoc| +2026-03-17 15:41:25.7352|DEBUG|OnDoc| +2026-03-17 15:41:25.7352|DEBUG|OnDoc| +2026-03-17 15:41:25.7352|DEBUG|OnDoc| +2026-03-17 15:41:25.7352|DEBUG|OnDoc| +2026-03-17 15:41:25.7352|DEBUG|OnDoc| +2026-03-17 15:41:25.7352|DEBUG|OnDoc| +2026-03-17 15:41:25.7352|DEBUG|OnDoc| +2026-03-17 15:41:25.7352|DEBUG|OnDoc| +2026-03-17 15:41:25.7352|DEBUG|OnDoc| +2026-03-17 15:41:25.7352|DEBUG|OnDoc| +2026-03-17 15:41:25.7352|DEBUG|OnDoc| +2026-03-17 15:41:25.7492|DEBUG|OnDoc| +2026-03-17 15:41:25.7492|DEBUG|OnDoc| +2026-03-17 15:41:25.7492|DEBUG|OnDoc| +2026-03-17 15:41:25.7492|DEBUG|OnDoc| +2026-03-17 15:41:25.7492|DEBUG|OnDoc| +2026-03-17 15:41:25.7492|DEBUG|OnDoc| +2026-03-17 15:41:25.7679|DEBUG|OnDoc| +2026-03-17 15:41:25.7679|DEBUG|OnDoc| +2026-03-17 15:41:25.7679|DEBUG|OnDoc| +2026-03-17 15:41:25.7679|DEBUG|OnDoc| +2026-03-17 15:41:25.7679|DEBUG|OnDoc| +2026-03-17 15:41:25.7679|DEBUG|OnDoc| +2026-03-17 15:41:25.7679|DEBUG|OnDoc| +2026-03-17 15:41:25.7679|DEBUG|OnDoc| +2026-03-17 15:41:25.7679|DEBUG|OnDoc| +2026-03-17 15:41:25.7679|DEBUG|OnDoc| +2026-03-17 15:41:25.7679|DEBUG|OnDoc| +2026-03-17 15:41:25.7679|DEBUG|OnDoc| +2026-03-17 15:41:25.7679|DEBUG|OnDoc| +2026-03-17 15:41:25.7679|DEBUG|OnDoc| +2026-03-17 15:41:25.8157|DEBUG|OnDoc| +2026-03-17 15:41:25.8157|DEBUG|OnDoc| +2026-03-17 15:41:25.8716|DEBUG|OnDoc| +2026-03-17 15:41:25.8746|DEBUG|OnDoc| +2026-03-17 15:41:25.9003|DEBUG|OnDoc| +2026-03-17 15:41:25.9056|DEBUG|OnDoc| +2026-03-17 15:41:25.9056|DEBUG|OnDoc| +2026-03-17 15:41:25.9056|DEBUG|OnDoc| +2026-03-17 15:41:25.9356|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 15:41:25.9356|DEBUG|OnDoc| +2026-03-17 15:41:25.9356|DEBUG|OnDoc| +2026-03-17 15:41:25.9356|DEBUG|OnDoc| +2026-03-17 15:41:25.9356|DEBUG|OnDoc| +2026-03-17 15:41:25.9356|DEBUG|OnDoc| +2026-03-17 15:41:25.9525|DEBUG|OnDoc| +2026-03-17 15:41:25.9525|DEBUG|OnDoc| +2026-03-17 15:41:25.9525|DEBUG|OnDoc| +2026-03-17 15:41:25.9525|DEBUG|OnDoc|Generate_Word +2026-03-17 15:41:26.4152|DEBUG|OnDoc|Word2013 +2026-03-17 15:41:26.4242|DEBUG|OnDoc|Word2013 +2026-03-17 15:41:33.9372|DEBUG|OnDoc|Generate_Word +2026-03-17 15:41:34.0117|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015138 +2026-03-17 15:41:34.0131|INFO|DocLog|Dokument über API erstellt +2026-03-17 15:41:34.0131|INFO|APIDocLog|Dokument return to sender +2026-03-17 15:41:34.0131|DEBUG|OnDoc| +2026-03-17 15:41:34.0131|DEBUG|OnDoc| +2026-03-17 15:41:34.0131|DEBUG|OnDoc| +2026-03-17 15:41:34.0131|DEBUG|OnDoc| +2026-03-17 15:41:34.0131|DEBUG|OnDoc| +2026-03-17 15:41:34.0131|DEBUG|OnDoc| +2026-03-17 15:44:39.9998|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 15:44:40.0672|INFO|APIDocLog|Start CreateDoc +2026-03-17 15:44:40.0871|INFO|APIDocLog|Input JSON +2026-03-17 15:44:40.0871|DEBUG|OnDoc|Start GenDoc +2026-03-17 15:44:40.0871|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.0906|DEBUG|OnDoc| +2026-03-17 15:44:40.1163|DEBUG|OnDoc| +2026-03-17 15:44:40.1163|DEBUG|OnDoc| +2026-03-17 15:44:40.2013|DEBUG|OnDoc| +2026-03-17 15:44:40.2013|DEBUG|OnDoc| +2026-03-17 15:44:40.2286|DEBUG|OnDoc| +2026-03-17 15:44:40.2313|DEBUG|OnDoc| +2026-03-17 15:44:40.2313|DEBUG|OnDoc| +2026-03-17 15:44:40.2313|DEBUG|OnDoc| +2026-03-17 15:44:40.2313|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 15:44:40.2483|DEBUG|OnDoc| +2026-03-17 15:44:40.2483|DEBUG|OnDoc| +2026-03-17 15:44:40.2483|DEBUG|OnDoc| +2026-03-17 15:44:40.2483|DEBUG|OnDoc| +2026-03-17 15:44:40.2483|DEBUG|OnDoc| +2026-03-17 15:44:40.2674|DEBUG|OnDoc| +2026-03-17 15:44:40.2674|DEBUG|OnDoc| +2026-03-17 15:44:40.2674|DEBUG|OnDoc| +2026-03-17 15:44:40.2674|DEBUG|OnDoc|Generate_Word +2026-03-17 15:44:40.2844|DEBUG|OnDoc|Word2013 +2026-03-17 15:44:40.2844|DEBUG|OnDoc|Word2013 +2026-03-17 15:58:01.8174|DEBUG|OnDoc|Generate_Word +2026-03-17 15:58:01.8309|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015143 +2026-03-17 15:58:01.8309|INFO|DocLog|Dokument über API erstellt +2026-03-17 15:58:01.8309|INFO|APIDocLog|Dokument return to sender +2026-03-17 15:58:01.8309|DEBUG|OnDoc| +2026-03-17 15:58:01.8309|DEBUG|OnDoc| +2026-03-17 15:58:01.8309|DEBUG|OnDoc| +2026-03-17 15:58:01.8404|DEBUG|OnDoc| +2026-03-17 15:58:01.8404|DEBUG|OnDoc| +2026-03-17 15:58:01.8404|DEBUG|OnDoc| +2026-03-17 16:06:04.9201|DEBUG|OnDoc| +2026-03-17 16:06:04.9828|DEBUG|OnDoc| +2026-03-17 16:06:04.9828|DEBUG|OnDoc| +2026-03-17 16:06:04.9828|DEBUG|OnDoc| +2026-03-17 16:06:05.2874|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 16:06:05.5506|INFO|APIDocLog|Start CreateDoc +2026-03-17 16:06:05.6541|INFO|APIDocLog|Input JSON +2026-03-17 16:06:05.6762|DEBUG|OnDoc|Start GenDoc +2026-03-17 16:06:05.6762|DEBUG|OnDoc| +2026-03-17 16:06:05.6762|DEBUG|OnDoc| +2026-03-17 16:06:05.6762|DEBUG|OnDoc| +2026-03-17 16:06:05.6762|DEBUG|OnDoc| +2026-03-17 16:06:05.6843|DEBUG|OnDoc| +2026-03-17 16:06:05.6843|DEBUG|OnDoc| +2026-03-17 16:06:05.6843|DEBUG|OnDoc| +2026-03-17 16:06:05.6843|DEBUG|OnDoc| +2026-03-17 16:06:05.6843|DEBUG|OnDoc| +2026-03-17 16:06:05.6843|DEBUG|OnDoc| +2026-03-17 16:06:05.6843|DEBUG|OnDoc| +2026-03-17 16:06:05.6843|DEBUG|OnDoc| +2026-03-17 16:06:05.6843|DEBUG|OnDoc| +2026-03-17 16:06:05.6843|DEBUG|OnDoc| +2026-03-17 16:06:05.7018|DEBUG|OnDoc| +2026-03-17 16:06:05.7018|DEBUG|OnDoc| +2026-03-17 16:06:05.7018|DEBUG|OnDoc| +2026-03-17 16:06:05.7018|DEBUG|OnDoc| +2026-03-17 16:06:05.7018|DEBUG|OnDoc| +2026-03-17 16:06:05.7018|DEBUG|OnDoc| +2026-03-17 16:06:05.7159|DEBUG|OnDoc| +2026-03-17 16:06:05.7159|DEBUG|OnDoc| +2026-03-17 16:06:05.7159|DEBUG|OnDoc| +2026-03-17 16:06:05.7159|DEBUG|OnDoc| +2026-03-17 16:06:05.7159|DEBUG|OnDoc| +2026-03-17 16:06:05.7159|DEBUG|OnDoc| +2026-03-17 16:06:05.7159|DEBUG|OnDoc| +2026-03-17 16:06:05.7159|DEBUG|OnDoc| +2026-03-17 16:06:05.7159|DEBUG|OnDoc| +2026-03-17 16:06:05.7159|DEBUG|OnDoc| +2026-03-17 16:06:05.7159|DEBUG|OnDoc| +2026-03-17 16:06:05.7159|DEBUG|OnDoc| +2026-03-17 16:06:05.7159|DEBUG|OnDoc| +2026-03-17 16:06:05.7159|DEBUG|OnDoc| +2026-03-17 16:06:05.7490|DEBUG|OnDoc| +2026-03-17 16:06:05.7490|DEBUG|OnDoc| +2026-03-17 16:06:05.8045|DEBUG|OnDoc| +2026-03-17 16:06:05.8045|DEBUG|OnDoc| +2026-03-17 16:06:05.8350|DEBUG|OnDoc| +2026-03-17 16:06:05.8350|DEBUG|OnDoc| +2026-03-17 16:06:05.8416|DEBUG|OnDoc| +2026-03-17 16:06:05.8416|DEBUG|OnDoc| +2026-03-17 16:06:05.8709|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 16:06:05.8739|DEBUG|OnDoc| +2026-03-17 16:06:05.8739|DEBUG|OnDoc| +2026-03-17 16:06:05.8739|DEBUG|OnDoc| +2026-03-17 16:06:05.8739|DEBUG|OnDoc| +2026-03-17 16:06:05.8874|DEBUG|OnDoc| +2026-03-17 16:06:05.8874|DEBUG|OnDoc| +2026-03-17 16:06:05.8874|DEBUG|OnDoc| +2026-03-17 16:06:05.9030|DEBUG|OnDoc| +2026-03-17 16:06:05.9030|DEBUG|OnDoc|Generate_Word +2026-03-17 16:06:06.3567|DEBUG|OnDoc|Word2013 +2026-03-17 16:06:06.3567|DEBUG|OnDoc|Word2013 +2026-03-17 16:06:15.4639|DEBUG|OnDoc|Generate_Word +2026-03-17 16:06:15.5415|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015159 +2026-03-17 16:06:15.5435|INFO|DocLog|Dokument über API erstellt +2026-03-17 16:06:15.5435|INFO|APIDocLog|Dokument return to sender +2026-03-17 16:06:15.5435|DEBUG|OnDoc| +2026-03-17 16:06:15.5435|DEBUG|OnDoc| +2026-03-17 16:06:15.5435|DEBUG|OnDoc| +2026-03-17 16:06:15.5594|DEBUG|OnDoc| +2026-03-17 16:06:15.5594|DEBUG|OnDoc| +2026-03-17 16:06:15.5594|DEBUG|OnDoc| +2026-03-17 16:06:58.6851|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 16:06:58.7816|INFO|APIDocLog|Start CreateDoc +2026-03-17 16:06:58.8111|INFO|APIDocLog|Input JSON +2026-03-17 16:06:58.8111|DEBUG|OnDoc|Start GenDoc +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8111|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8254|DEBUG|OnDoc| +2026-03-17 16:06:58.8609|DEBUG|OnDoc| +2026-03-17 16:06:58.8609|DEBUG|OnDoc| +2026-03-17 16:06:58.8955|DEBUG|OnDoc| +2026-03-17 16:06:58.8955|DEBUG|OnDoc| +2026-03-17 16:06:58.9096|DEBUG|OnDoc| +2026-03-17 16:06:58.9096|DEBUG|OnDoc| +2026-03-17 16:06:58.9096|DEBUG|OnDoc| +2026-03-17 16:06:58.9096|DEBUG|OnDoc| +2026-03-17 16:06:58.9348|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 16:06:58.9348|DEBUG|OnDoc| +2026-03-17 16:06:58.9348|DEBUG|OnDoc| +2026-03-17 16:06:58.9348|DEBUG|OnDoc| +2026-03-17 16:06:58.9348|DEBUG|OnDoc| +2026-03-17 16:06:58.9348|DEBUG|OnDoc| +2026-03-17 16:06:58.9533|DEBUG|OnDoc| +2026-03-17 16:06:58.9533|DEBUG|OnDoc| +2026-03-17 16:06:58.9533|DEBUG|OnDoc| +2026-03-17 16:06:58.9533|DEBUG|OnDoc|Generate_Word +2026-03-17 16:06:58.9678|DEBUG|OnDoc|Word2013 +2026-03-17 16:06:58.9678|DEBUG|OnDoc|Word2013 +2026-03-17 16:07:04.6727|DEBUG|OnDoc|Generate_Word +2026-03-17 16:07:04.7153|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015167 +2026-03-17 16:07:04.7153|INFO|DocLog|Dokument über API erstellt +2026-03-17 16:07:04.7163|INFO|APIDocLog|Dokument return to sender +2026-03-17 16:07:04.7163|DEBUG|OnDoc| +2026-03-17 16:07:04.7163|DEBUG|OnDoc| +2026-03-17 16:07:04.7163|DEBUG|OnDoc| +2026-03-17 16:07:04.7163|DEBUG|OnDoc| +2026-03-17 16:07:04.7163|DEBUG|OnDoc| +2026-03-17 16:07:04.7163|DEBUG|OnDoc| +2026-03-17 16:07:48.4363|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 16:07:48.5424|INFO|APIDocLog|Start CreateDoc +2026-03-17 16:07:48.5766|INFO|APIDocLog|Input JSON +2026-03-17 16:07:48.5766|DEBUG|OnDoc|Start GenDoc +2026-03-17 16:07:48.5766|DEBUG|OnDoc| +2026-03-17 16:07:48.5766|DEBUG|OnDoc| +2026-03-17 16:07:48.5766|DEBUG|OnDoc| +2026-03-17 16:07:48.5766|DEBUG|OnDoc| +2026-03-17 16:07:48.5766|DEBUG|OnDoc| +2026-03-17 16:07:48.5766|DEBUG|OnDoc| +2026-03-17 16:07:48.5766|DEBUG|OnDoc| +2026-03-17 16:07:48.5766|DEBUG|OnDoc| +2026-03-17 16:07:48.5766|DEBUG|OnDoc| +2026-03-17 16:07:48.5766|DEBUG|OnDoc| +2026-03-17 16:07:48.5766|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.5905|DEBUG|OnDoc| +2026-03-17 16:07:48.6062|DEBUG|OnDoc| +2026-03-17 16:07:48.6062|DEBUG|OnDoc| +2026-03-17 16:07:48.6062|DEBUG|OnDoc| +2026-03-17 16:07:48.6298|DEBUG|OnDoc| +2026-03-17 16:07:48.6298|DEBUG|OnDoc| +2026-03-17 16:07:48.6651|DEBUG|OnDoc| +2026-03-17 16:07:48.6651|DEBUG|OnDoc| +2026-03-17 16:07:48.6772|DEBUG|OnDoc| +2026-03-17 16:07:48.6772|DEBUG|OnDoc| +2026-03-17 16:07:48.6772|DEBUG|OnDoc| +2026-03-17 16:07:48.6772|DEBUG|OnDoc| +2026-03-17 16:07:48.7059|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 16:07:48.7059|DEBUG|OnDoc| +2026-03-17 16:07:48.7059|DEBUG|OnDoc| +2026-03-17 16:07:48.7059|DEBUG|OnDoc| +2026-03-17 16:07:48.7059|DEBUG|OnDoc| +2026-03-17 16:07:48.7059|DEBUG|OnDoc| +2026-03-17 16:07:48.7208|DEBUG|OnDoc| +2026-03-17 16:07:48.7208|DEBUG|OnDoc| +2026-03-17 16:07:48.7208|DEBUG|OnDoc| +2026-03-17 16:07:48.7323|DEBUG|OnDoc|Generate_Word +2026-03-17 16:07:48.7323|DEBUG|OnDoc|Word2013 +2026-03-17 16:07:48.7323|DEBUG|OnDoc|Word2013 +2026-03-17 16:07:52.3703|DEBUG|OnDoc|Generate_Word +2026-03-17 16:07:52.3823|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015175 +2026-03-17 16:07:52.3823|INFO|DocLog|Dokument über API erstellt +2026-03-17 16:07:52.3823|INFO|APIDocLog|Dokument return to sender +2026-03-17 16:07:52.3823|DEBUG|OnDoc| +2026-03-17 16:07:52.3894|DEBUG|OnDoc| +2026-03-17 16:07:52.3894|DEBUG|OnDoc| +2026-03-17 16:07:52.3894|DEBUG|OnDoc| +2026-03-17 16:07:52.3894|DEBUG|OnDoc| +2026-03-17 16:07:52.3894|DEBUG|OnDoc| +2026-03-17 16:08:05.8418|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 16:08:05.9393|INFO|APIDocLog|Start CreateDoc +2026-03-17 16:08:05.9779|INFO|APIDocLog|Input JSON +2026-03-17 16:08:05.9779|DEBUG|OnDoc|Start GenDoc +2026-03-17 16:08:05.9779|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9819|DEBUG|OnDoc| +2026-03-17 16:08:05.9967|DEBUG|OnDoc| +2026-03-17 16:08:05.9967|DEBUG|OnDoc| +2026-03-17 16:08:05.9967|DEBUG|OnDoc| +2026-03-17 16:08:05.9967|DEBUG|OnDoc| +2026-03-17 16:08:05.9967|DEBUG|OnDoc| +2026-03-17 16:08:05.9967|DEBUG|OnDoc| +2026-03-17 16:08:05.9967|DEBUG|OnDoc| +2026-03-17 16:08:05.9967|DEBUG|OnDoc| +2026-03-17 16:08:06.0247|DEBUG|OnDoc| +2026-03-17 16:08:06.0279|DEBUG|OnDoc| +2026-03-17 16:08:06.0612|DEBUG|OnDoc| +2026-03-17 16:08:06.0612|DEBUG|OnDoc| +2026-03-17 16:08:06.0612|DEBUG|OnDoc| +2026-03-17 16:08:06.0612|DEBUG|OnDoc| +2026-03-17 16:08:06.0612|DEBUG|OnDoc| +2026-03-17 16:08:06.0612|DEBUG|OnDoc| +2026-03-17 16:08:06.0975|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 16:08:06.0975|DEBUG|OnDoc| +2026-03-17 16:08:06.0975|DEBUG|OnDoc| +2026-03-17 16:08:06.0975|DEBUG|OnDoc| +2026-03-17 16:08:06.0975|DEBUG|OnDoc| +2026-03-17 16:08:06.1069|DEBUG|OnDoc| +2026-03-17 16:08:06.1069|DEBUG|OnDoc| +2026-03-17 16:08:06.1069|DEBUG|OnDoc| +2026-03-17 16:08:06.1069|DEBUG|OnDoc| +2026-03-17 16:08:06.1069|DEBUG|OnDoc|Generate_Word +2026-03-17 16:08:06.1250|DEBUG|OnDoc|Word2013 +2026-03-17 16:08:06.1250|DEBUG|OnDoc|Word2013 +2026-03-17 16:09:11.9560|DEBUG|OnDoc|Generate_Word +2026-03-17 16:09:11.9989|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015180 +2026-03-17 16:09:11.9989|INFO|DocLog|Dokument über API erstellt +2026-03-17 16:09:11.9989|INFO|APIDocLog|Dokument return to sender +2026-03-17 16:09:11.9989|DEBUG|OnDoc| +2026-03-17 16:09:12.0214|DEBUG|OnDoc| +2026-03-17 16:09:12.0214|DEBUG|OnDoc| +2026-03-17 16:09:12.0285|DEBUG|OnDoc| +2026-03-17 16:09:12.0285|DEBUG|OnDoc| +2026-03-17 16:09:12.0285|DEBUG|OnDoc| +2026-03-17 16:09:25.5102|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 16:09:25.5832|INFO|APIDocLog|Start CreateDoc +2026-03-17 16:09:25.6221|INFO|APIDocLog|Input JSON +2026-03-17 16:09:25.6221|DEBUG|OnDoc|Start GenDoc +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6221|DEBUG|OnDoc| +2026-03-17 16:09:25.6469|DEBUG|OnDoc| +2026-03-17 16:09:25.6469|DEBUG|OnDoc| +2026-03-17 16:09:25.7205|DEBUG|OnDoc| +2026-03-17 16:09:25.7205|DEBUG|OnDoc| +2026-03-17 16:09:25.7411|DEBUG|OnDoc| +2026-03-17 16:09:25.7411|DEBUG|OnDoc| +2026-03-17 16:09:25.7411|DEBUG|OnDoc| +2026-03-17 16:09:25.7411|DEBUG|OnDoc| +2026-03-17 16:09:25.7819|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 16:09:25.7819|DEBUG|OnDoc| +2026-03-17 16:09:25.7952|DEBUG|OnDoc| +2026-03-17 16:09:25.7952|DEBUG|OnDoc| +2026-03-17 16:09:25.7952|DEBUG|OnDoc| +2026-03-17 16:09:25.7952|DEBUG|OnDoc| +2026-03-17 16:09:25.7952|DEBUG|OnDoc| +2026-03-17 16:09:25.7952|DEBUG|OnDoc| +2026-03-17 16:09:25.8131|DEBUG|OnDoc| +2026-03-17 16:09:25.8131|DEBUG|OnDoc|Generate_Word +2026-03-17 16:09:25.8131|DEBUG|OnDoc|Word2013 +2026-03-17 16:09:25.8131|DEBUG|OnDoc|Word2013 +2026-03-17 16:09:36.8335|DEBUG|OnDoc|Generate_Word +2026-03-17 16:09:36.8706|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015191 +2026-03-17 16:09:36.8706|INFO|DocLog|Dokument über API erstellt +2026-03-17 16:09:36.8726|INFO|APIDocLog|Dokument return to sender +2026-03-17 16:09:36.8726|DEBUG|OnDoc| +2026-03-17 16:09:36.8726|DEBUG|OnDoc| +2026-03-17 16:09:36.8726|DEBUG|OnDoc| +2026-03-17 16:09:36.8726|DEBUG|OnDoc| +2026-03-17 16:09:36.8726|DEBUG|OnDoc| +2026-03-17 16:09:36.8726|DEBUG|OnDoc| +2026-03-17 16:10:02.5081|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 16:10:02.6235|INFO|APIDocLog|Start CreateDoc +2026-03-17 16:10:02.6689|INFO|APIDocLog|Input JSON +2026-03-17 16:10:02.6689|DEBUG|OnDoc|Start GenDoc +2026-03-17 16:10:02.6689|DEBUG|OnDoc| +2026-03-17 16:10:02.6689|DEBUG|OnDoc| +2026-03-17 16:10:02.6689|DEBUG|OnDoc| +2026-03-17 16:10:02.6689|DEBUG|OnDoc| +2026-03-17 16:10:02.6689|DEBUG|OnDoc| +2026-03-17 16:10:02.6689|DEBUG|OnDoc| +2026-03-17 16:10:02.6689|DEBUG|OnDoc| +2026-03-17 16:10:02.6689|DEBUG|OnDoc| +2026-03-17 16:10:02.6689|DEBUG|OnDoc| +2026-03-17 16:10:02.6689|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.6846|DEBUG|OnDoc| +2026-03-17 16:10:02.7000|DEBUG|OnDoc| +2026-03-17 16:10:02.7000|DEBUG|OnDoc| +2026-03-17 16:10:02.7000|DEBUG|OnDoc| +2026-03-17 16:10:02.7000|DEBUG|OnDoc| +2026-03-17 16:10:02.7000|DEBUG|OnDoc| +2026-03-17 16:10:02.7000|DEBUG|OnDoc| +2026-03-17 16:10:02.7000|DEBUG|OnDoc| +2026-03-17 16:10:02.7000|DEBUG|OnDoc| +2026-03-17 16:10:02.7000|DEBUG|OnDoc| +2026-03-17 16:10:02.7304|DEBUG|OnDoc| +2026-03-17 16:10:02.7339|DEBUG|OnDoc| +2026-03-17 16:10:02.7717|DEBUG|OnDoc| +2026-03-17 16:10:02.7717|DEBUG|OnDoc| +2026-03-17 16:10:02.7841|DEBUG|OnDoc| +2026-03-17 16:10:02.7841|DEBUG|OnDoc| +2026-03-17 16:10:02.7841|DEBUG|OnDoc| +2026-03-17 16:10:02.7841|DEBUG|OnDoc| +2026-03-17 16:10:02.8170|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 16:10:02.8170|DEBUG|OnDoc| +2026-03-17 16:10:02.8170|DEBUG|OnDoc| +2026-03-17 16:10:02.8170|DEBUG|OnDoc| +2026-03-17 16:10:02.8170|DEBUG|OnDoc| +2026-03-17 16:10:02.8170|DEBUG|OnDoc| +2026-03-17 16:10:02.8296|DEBUG|OnDoc| +2026-03-17 16:10:02.8296|DEBUG|OnDoc| +2026-03-17 16:10:02.8296|DEBUG|OnDoc| +2026-03-17 16:10:02.8296|DEBUG|OnDoc|Generate_Word +2026-03-17 16:10:02.8451|DEBUG|OnDoc|Word2013 +2026-03-17 16:10:02.8451|DEBUG|OnDoc|Word2013 +2026-03-17 16:10:07.8713|DEBUG|OnDoc|Generate_Word +2026-03-17 16:10:07.9123|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015209 +2026-03-17 16:10:07.9123|INFO|DocLog|Dokument über API erstellt +2026-03-17 16:10:07.9123|INFO|APIDocLog|Dokument return to sender +2026-03-17 16:10:07.9123|DEBUG|OnDoc| +2026-03-17 16:10:07.9247|DEBUG|OnDoc| +2026-03-17 16:10:07.9247|DEBUG|OnDoc| +2026-03-17 16:10:07.9247|DEBUG|OnDoc| +2026-03-17 16:10:07.9247|DEBUG|OnDoc| +2026-03-17 16:10:07.9247|DEBUG|OnDoc| +2026-03-17 16:10:35.4372|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 16:10:35.5581|INFO|APIDocLog|Start CreateDoc +2026-03-17 16:10:35.6056|INFO|APIDocLog|Input JSON +2026-03-17 16:10:35.6092|DEBUG|OnDoc|Start GenDoc +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6092|DEBUG|OnDoc| +2026-03-17 16:10:35.6221|DEBUG|OnDoc| +2026-03-17 16:10:35.6221|DEBUG|OnDoc| +2026-03-17 16:10:35.6221|DEBUG|OnDoc| +2026-03-17 16:10:35.6221|DEBUG|OnDoc| +2026-03-17 16:10:35.6221|DEBUG|OnDoc| +2026-03-17 16:10:35.6221|DEBUG|OnDoc| +2026-03-17 16:10:35.6221|DEBUG|OnDoc| +2026-03-17 16:10:35.6450|DEBUG|OnDoc| +2026-03-17 16:10:35.6450|DEBUG|OnDoc| +2026-03-17 16:10:35.6876|DEBUG|OnDoc| +2026-03-17 16:10:35.6876|DEBUG|OnDoc| +2026-03-17 16:10:35.6876|DEBUG|OnDoc| +2026-03-17 16:10:35.6876|DEBUG|OnDoc| +2026-03-17 16:10:35.6876|DEBUG|OnDoc| +2026-03-17 16:10:35.7006|DEBUG|OnDoc| +2026-03-17 16:10:35.7325|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 16:10:35.7325|DEBUG|OnDoc| +2026-03-17 16:10:35.7325|DEBUG|OnDoc| +2026-03-17 16:10:35.7325|DEBUG|OnDoc| +2026-03-17 16:10:35.7325|DEBUG|OnDoc| +2026-03-17 16:10:35.7325|DEBUG|OnDoc| +2026-03-17 16:10:35.7571|DEBUG|OnDoc| +2026-03-17 16:10:35.7571|DEBUG|OnDoc| +2026-03-17 16:10:35.7631|DEBUG|OnDoc| +2026-03-17 16:10:35.7631|DEBUG|OnDoc|Generate_Word +2026-03-17 16:10:35.7631|DEBUG|OnDoc|Word2013 +2026-03-17 16:10:35.7631|DEBUG|OnDoc|Word2013 +2026-03-17 16:10:44.5353|DEBUG|OnDoc|Generate_Word +2026-03-17 16:10:44.5736|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015217 +2026-03-17 16:10:44.5736|INFO|DocLog|Dokument über API erstellt +2026-03-17 16:10:44.5736|INFO|APIDocLog|Dokument return to sender +2026-03-17 16:10:44.5761|DEBUG|OnDoc| +2026-03-17 16:10:44.5761|DEBUG|OnDoc| +2026-03-17 16:10:44.5761|DEBUG|OnDoc| +2026-03-17 16:10:44.5761|DEBUG|OnDoc| +2026-03-17 16:10:44.5761|DEBUG|OnDoc| +2026-03-17 16:10:44.5761|DEBUG|OnDoc| +2026-03-17 16:28:24.4127|DEBUG|OnDoc| +2026-03-17 16:28:24.5005|DEBUG|OnDoc| +2026-03-17 16:28:24.5005|DEBUG|OnDoc| +2026-03-17 16:28:24.5005|DEBUG|OnDoc| +2026-03-17 16:28:27.4941|INFO|APIDocLog|DokumentGegnerator Start +2026-03-17 16:28:27.6822|INFO|APIDocLog|Start CreateDoc +2026-03-17 16:28:27.7644|INFO|APIDocLog|Input JSON +2026-03-17 16:28:27.7845|DEBUG|OnDoc|Start GenDoc +2026-03-17 16:28:27.7845|DEBUG|OnDoc| +2026-03-17 16:28:27.7845|DEBUG|OnDoc| +2026-03-17 16:28:27.7845|DEBUG|OnDoc| +2026-03-17 16:28:27.7845|DEBUG|OnDoc| +2026-03-17 16:28:27.7845|DEBUG|OnDoc| +2026-03-17 16:28:27.7845|DEBUG|OnDoc| +2026-03-17 16:28:27.7845|DEBUG|OnDoc| +2026-03-17 16:28:27.7845|DEBUG|OnDoc| +2026-03-17 16:28:27.7845|DEBUG|OnDoc| +2026-03-17 16:28:27.7845|DEBUG|OnDoc| +2026-03-17 16:28:27.7845|DEBUG|OnDoc| +2026-03-17 16:28:27.7845|DEBUG|OnDoc| +2026-03-17 16:28:27.7845|DEBUG|OnDoc| +2026-03-17 16:28:27.7845|DEBUG|OnDoc| +2026-03-17 16:28:27.7961|DEBUG|OnDoc| +2026-03-17 16:28:27.7961|DEBUG|OnDoc| +2026-03-17 16:28:27.7961|DEBUG|OnDoc| +2026-03-17 16:28:27.7961|DEBUG|OnDoc| +2026-03-17 16:28:27.7961|DEBUG|OnDoc| +2026-03-17 16:28:27.7961|DEBUG|OnDoc| +2026-03-17 16:28:27.7961|DEBUG|OnDoc| +2026-03-17 16:28:27.7961|DEBUG|OnDoc| +2026-03-17 16:28:27.7961|DEBUG|OnDoc| +2026-03-17 16:28:27.7961|DEBUG|OnDoc| +2026-03-17 16:28:27.8092|DEBUG|OnDoc| +2026-03-17 16:28:27.8092|DEBUG|OnDoc| +2026-03-17 16:28:27.8092|DEBUG|OnDoc| +2026-03-17 16:28:27.8092|DEBUG|OnDoc| +2026-03-17 16:28:27.8092|DEBUG|OnDoc| +2026-03-17 16:28:27.8092|DEBUG|OnDoc| +2026-03-17 16:28:27.8092|DEBUG|OnDoc| +2026-03-17 16:28:27.8092|DEBUG|OnDoc| +2026-03-17 16:28:27.8092|DEBUG|OnDoc| +2026-03-17 16:28:27.8092|DEBUG|OnDoc| +2026-03-17 16:28:27.8314|DEBUG|OnDoc| +2026-03-17 16:28:27.8314|DEBUG|OnDoc| +2026-03-17 16:28:27.8775|DEBUG|OnDoc| +2026-03-17 16:28:27.8775|DEBUG|OnDoc| +2026-03-17 16:28:27.9033|DEBUG|OnDoc| +2026-03-17 16:28:27.9033|DEBUG|OnDoc| +2026-03-17 16:28:27.9033|DEBUG|OnDoc| +2026-03-17 16:28:27.9033|DEBUG|OnDoc| +2026-03-17 16:28:27.9234|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-17 16:28:27.9234|DEBUG|OnDoc| +2026-03-17 16:28:27.9234|DEBUG|OnDoc| +2026-03-17 16:28:27.9234|DEBUG|OnDoc| +2026-03-17 16:28:27.9349|DEBUG|OnDoc| +2026-03-17 16:28:27.9349|DEBUG|OnDoc| +2026-03-17 16:28:27.9349|DEBUG|OnDoc| +2026-03-17 16:28:27.9511|DEBUG|OnDoc| +2026-03-17 16:28:27.9511|DEBUG|OnDoc| +2026-03-17 16:28:27.9511|DEBUG|OnDoc|Generate_Word +2026-03-17 16:28:28.3630|DEBUG|OnDoc|Word2013 +2026-03-17 16:28:28.3730|DEBUG|OnDoc|Word2013 +2026-03-17 16:28:38.2448|DEBUG|OnDoc|Generate_Word +2026-03-17 16:28:38.2906|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015225 +2026-03-17 16:28:38.2906|INFO|DocLog|Dokument über API erstellt +2026-03-17 16:28:38.2906|INFO|APIDocLog|Dokument return to sender +2026-03-17 16:28:38.2961|DEBUG|OnDoc| +2026-03-17 16:28:38.2961|DEBUG|OnDoc| +2026-03-17 16:28:38.2961|DEBUG|OnDoc| +2026-03-17 16:28:38.2961|DEBUG|OnDoc| +2026-03-17 16:28:38.2961|DEBUG|OnDoc| +2026-03-17 16:28:38.2961|DEBUG|OnDoc| +2026-03-18 07:33:04.3511|DEBUG|OnDoc| +2026-03-18 07:33:04.4318|DEBUG|OnDoc| +2026-03-18 07:33:04.4358|DEBUG|OnDoc| +2026-03-18 07:33:04.4358|DEBUG|OnDoc| +2026-03-18 07:38:26.5379|DEBUG|OnDoc| +2026-03-18 07:38:26.6270|DEBUG|OnDoc| +2026-03-18 07:38:26.6270|DEBUG|OnDoc| +2026-03-18 07:38:26.6270|DEBUG|OnDoc| +2026-03-18 07:41:18.6938|DEBUG|OnDoc| +2026-03-18 07:41:18.7861|DEBUG|OnDoc| +2026-03-18 07:41:18.7861|DEBUG|OnDoc| +2026-03-18 07:41:18.7861|DEBUG|OnDoc| +2026-03-18 07:41:35.0355|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 07:41:35.2802|INFO|APIDocLog|Start CreateDoc +2026-03-18 07:41:35.3713|INFO|APIDocLog|Input JSON +2026-03-18 07:41:35.3919|DEBUG|OnDoc|Start GenDoc +2026-03-18 07:41:35.3919|DEBUG|OnDoc| +2026-03-18 07:41:35.3919|DEBUG|OnDoc| +2026-03-18 07:41:35.3919|DEBUG|OnDoc| +2026-03-18 07:41:35.3919|DEBUG|OnDoc| +2026-03-18 07:41:35.3919|DEBUG|OnDoc| +2026-03-18 07:41:35.3919|DEBUG|OnDoc| +2026-03-18 07:41:35.3919|DEBUG|OnDoc| +2026-03-18 07:41:35.3919|DEBUG|OnDoc| +2026-03-18 07:41:35.3919|DEBUG|OnDoc| +2026-03-18 07:41:35.3919|DEBUG|OnDoc| +2026-03-18 07:41:35.3919|DEBUG|OnDoc| +2026-03-18 07:41:35.3919|DEBUG|OnDoc| +2026-03-18 07:41:35.3919|DEBUG|OnDoc| +2026-03-18 07:41:35.3919|DEBUG|OnDoc| +2026-03-18 07:41:35.4069|DEBUG|OnDoc| +2026-03-18 07:41:35.4069|DEBUG|OnDoc| +2026-03-18 07:41:35.4069|DEBUG|OnDoc| +2026-03-18 07:41:35.4069|DEBUG|OnDoc| +2026-03-18 07:41:35.4069|DEBUG|OnDoc| +2026-03-18 07:41:35.4069|DEBUG|OnDoc| +2026-03-18 07:41:35.4069|DEBUG|OnDoc| +2026-03-18 07:41:35.4184|DEBUG|OnDoc| +2026-03-18 07:41:35.4184|DEBUG|OnDoc| +2026-03-18 07:41:35.4184|DEBUG|OnDoc| +2026-03-18 07:41:35.4184|DEBUG|OnDoc| +2026-03-18 07:41:35.4184|DEBUG|OnDoc| +2026-03-18 07:41:35.4184|DEBUG|OnDoc| +2026-03-18 07:41:35.4184|DEBUG|OnDoc| +2026-03-18 07:41:35.4184|DEBUG|OnDoc| +2026-03-18 07:41:35.4184|DEBUG|OnDoc| +2026-03-18 07:41:35.4184|DEBUG|OnDoc| +2026-03-18 07:41:35.4184|DEBUG|OnDoc| +2026-03-18 07:41:35.4184|DEBUG|OnDoc| +2026-03-18 07:41:35.4184|DEBUG|OnDoc| +2026-03-18 07:41:35.4503|DEBUG|OnDoc| +2026-03-18 07:41:35.4503|DEBUG|OnDoc| +2026-03-18 07:41:35.4985|DEBUG|OnDoc| +2026-03-18 07:41:35.4985|DEBUG|OnDoc| +2026-03-18 07:41:35.5228|DEBUG|OnDoc| +2026-03-18 07:41:35.5228|DEBUG|OnDoc| +2026-03-18 07:41:35.5228|DEBUG|OnDoc| +2026-03-18 07:41:35.5228|DEBUG|OnDoc| +2026-03-18 07:41:35.5428|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 07:41:35.5438|DEBUG|OnDoc| +2026-03-18 07:41:35.5438|DEBUG|OnDoc| +2026-03-18 07:41:35.5438|DEBUG|OnDoc| +2026-03-18 07:41:35.5438|DEBUG|OnDoc| +2026-03-18 07:41:35.5438|DEBUG|OnDoc| +2026-03-18 07:41:35.5607|DEBUG|OnDoc| +2026-03-18 07:41:35.5607|DEBUG|OnDoc| +2026-03-18 07:41:35.5607|DEBUG|OnDoc| +2026-03-18 07:41:35.5607|DEBUG|OnDoc|Generate_Word +2026-03-18 07:41:36.0212|DEBUG|OnDoc|Word2013 +2026-03-18 07:41:36.0313|DEBUG|OnDoc|Word2013 +2026-03-18 07:41:45.8180|DEBUG|OnDoc|Generate_Word +2026-03-18 07:41:45.8899|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015241 +2026-03-18 07:41:45.8899|INFO|DocLog|Dokument über API erstellt +2026-03-18 07:41:45.8899|INFO|APIDocLog|Dokument return to sender +2026-03-18 07:41:45.8899|DEBUG|OnDoc| +2026-03-18 07:41:45.8899|DEBUG|OnDoc| +2026-03-18 07:41:45.8899|DEBUG|OnDoc| +2026-03-18 07:41:45.8899|DEBUG|OnDoc| +2026-03-18 07:41:45.8899|DEBUG|OnDoc| +2026-03-18 07:41:45.8899|DEBUG|OnDoc| +2026-03-18 08:13:12.3966|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 08:13:12.4705|INFO|APIDocLog|Start CreateDoc +2026-03-18 08:13:12.4899|INFO|APIDocLog|Input JSON +2026-03-18 08:13:12.4899|DEBUG|OnDoc|Start GenDoc +2026-03-18 08:13:12.4899|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.4966|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5120|DEBUG|OnDoc| +2026-03-18 08:13:12.5495|DEBUG|OnDoc| +2026-03-18 08:13:12.5495|DEBUG|OnDoc| +2026-03-18 08:13:12.5737|DEBUG|OnDoc| +2026-03-18 08:13:12.5747|DEBUG|OnDoc| +2026-03-18 08:13:12.5747|DEBUG|OnDoc| +2026-03-18 08:13:12.5906|DEBUG|OnDoc| +2026-03-18 08:13:12.5906|DEBUG|OnDoc| +2026-03-18 08:13:12.5906|DEBUG|OnDoc| +2026-03-18 08:13:12.5906|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 08:13:12.5906|DEBUG|OnDoc| +2026-03-18 08:13:12.6099|DEBUG|OnDoc| +2026-03-18 08:13:12.6099|DEBUG|OnDoc| +2026-03-18 08:13:12.6099|DEBUG|OnDoc| +2026-03-18 08:13:12.6099|DEBUG|OnDoc| +2026-03-18 08:13:12.6099|DEBUG|OnDoc| +2026-03-18 08:13:12.6099|DEBUG|OnDoc| +2026-03-18 08:13:12.6249|DEBUG|OnDoc| +2026-03-18 08:13:12.6249|DEBUG|OnDoc|Generate_Word +2026-03-18 08:13:12.6249|DEBUG|OnDoc|Word2013 +2026-03-18 08:13:12.6393|DEBUG|OnDoc|Word2013 +2026-03-18 08:13:21.3018|DEBUG|OnDoc|Generate_Word +2026-03-18 08:13:21.3393|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015256 +2026-03-18 08:13:21.3393|INFO|DocLog|Dokument über API erstellt +2026-03-18 08:13:21.3403|INFO|APIDocLog|Dokument return to sender +2026-03-18 08:13:21.3403|DEBUG|OnDoc| +2026-03-18 08:13:21.3403|DEBUG|OnDoc| +2026-03-18 08:13:21.3403|DEBUG|OnDoc| +2026-03-18 08:13:21.3403|DEBUG|OnDoc| +2026-03-18 08:13:21.3403|DEBUG|OnDoc| +2026-03-18 08:13:21.3403|DEBUG|OnDoc| +2026-03-18 08:20:57.1181|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 08:20:57.2151|INFO|APIDocLog|Start CreateDoc +2026-03-18 08:20:57.2371|INFO|APIDocLog|Input JSON +2026-03-18 08:20:57.2371|DEBUG|OnDoc|Start GenDoc +2026-03-18 08:20:57.2371|DEBUG|OnDoc| +2026-03-18 08:20:57.2371|DEBUG|OnDoc| +2026-03-18 08:20:57.2371|DEBUG|OnDoc| +2026-03-18 08:20:57.2371|DEBUG|OnDoc| +2026-03-18 08:20:57.2371|DEBUG|OnDoc| +2026-03-18 08:20:57.2371|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2472|DEBUG|OnDoc| +2026-03-18 08:20:57.2721|DEBUG|OnDoc| +2026-03-18 08:20:57.2721|DEBUG|OnDoc| +2026-03-18 08:20:57.2938|DEBUG|OnDoc| +2026-03-18 08:20:57.2938|DEBUG|OnDoc| +2026-03-18 08:20:57.2938|DEBUG|OnDoc| +2026-03-18 08:20:57.2938|DEBUG|OnDoc| +2026-03-18 08:20:57.3097|DEBUG|OnDoc| +2026-03-18 08:20:57.3097|DEBUG|OnDoc| +2026-03-18 08:20:57.3097|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 08:20:57.3097|DEBUG|OnDoc| +2026-03-18 08:20:57.3298|DEBUG|OnDoc| +2026-03-18 08:20:57.3298|DEBUG|OnDoc| +2026-03-18 08:20:57.3298|DEBUG|OnDoc| +2026-03-18 08:20:57.3298|DEBUG|OnDoc| +2026-03-18 08:20:57.3298|DEBUG|OnDoc| +2026-03-18 08:20:57.3298|DEBUG|OnDoc| +2026-03-18 08:20:57.3443|DEBUG|OnDoc| +2026-03-18 08:20:57.3443|DEBUG|OnDoc|Generate_Word +2026-03-18 08:20:57.3443|DEBUG|OnDoc|Word2013 +2026-03-18 08:20:57.3443|DEBUG|OnDoc|Word2013 +2026-03-18 08:20:59.9860|DEBUG|OnDoc|Generate_Word +2026-03-18 08:20:59.9987|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015264 +2026-03-18 08:20:59.9987|INFO|DocLog|Dokument über API erstellt +2026-03-18 08:20:59.9987|INFO|APIDocLog|Dokument return to sender +2026-03-18 08:20:59.9987|DEBUG|OnDoc| +2026-03-18 08:20:59.9987|DEBUG|OnDoc| +2026-03-18 08:20:59.9987|DEBUG|OnDoc| +2026-03-18 08:20:59.9987|DEBUG|OnDoc| +2026-03-18 08:21:00.0122|DEBUG|OnDoc| +2026-03-18 08:21:00.0122|DEBUG|OnDoc| +2026-03-18 08:21:21.3864|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 08:21:21.4566|INFO|APIDocLog|Start CreateDoc +2026-03-18 08:21:21.4789|INFO|APIDocLog|Input JSON +2026-03-18 08:21:21.4822|DEBUG|OnDoc|Start GenDoc +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4822|DEBUG|OnDoc| +2026-03-18 08:21:21.4972|DEBUG|OnDoc| +2026-03-18 08:21:21.4972|DEBUG|OnDoc| +2026-03-18 08:21:21.4972|DEBUG|OnDoc| +2026-03-18 08:21:21.5207|DEBUG|OnDoc| +2026-03-18 08:21:21.5207|DEBUG|OnDoc| +2026-03-18 08:21:21.5437|DEBUG|OnDoc| +2026-03-18 08:21:21.5437|DEBUG|OnDoc| +2026-03-18 08:21:21.5437|DEBUG|OnDoc| +2026-03-18 08:21:21.5437|DEBUG|OnDoc| +2026-03-18 08:21:21.5437|DEBUG|OnDoc| +2026-03-18 08:21:21.5437|DEBUG|OnDoc| +2026-03-18 08:21:21.5659|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 08:21:21.5659|DEBUG|OnDoc| +2026-03-18 08:21:21.5659|DEBUG|OnDoc| +2026-03-18 08:21:21.5659|DEBUG|OnDoc| +2026-03-18 08:21:21.5659|DEBUG|OnDoc| +2026-03-18 08:21:21.5659|DEBUG|OnDoc| +2026-03-18 08:21:21.5773|DEBUG|OnDoc| +2026-03-18 08:21:21.5773|DEBUG|OnDoc| +2026-03-18 08:21:21.5773|DEBUG|OnDoc| +2026-03-18 08:21:21.5773|DEBUG|OnDoc|Generate_Word +2026-03-18 08:21:21.5773|DEBUG|OnDoc|Word2013 +2026-03-18 08:21:21.5926|DEBUG|OnDoc|Word2013 +2026-03-18 08:21:38.0162|DEBUG|OnDoc|Generate_Word +2026-03-18 08:21:38.0527|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015272 +2026-03-18 08:21:38.0527|INFO|DocLog|Dokument über API erstellt +2026-03-18 08:21:38.0527|INFO|APIDocLog|Dokument return to sender +2026-03-18 08:21:38.0527|DEBUG|OnDoc| +2026-03-18 08:21:38.0527|DEBUG|OnDoc| +2026-03-18 08:21:38.0527|DEBUG|OnDoc| +2026-03-18 08:21:38.0590|DEBUG|OnDoc| +2026-03-18 08:21:38.0590|DEBUG|OnDoc| +2026-03-18 08:21:38.0590|DEBUG|OnDoc| +2026-03-18 08:27:04.9083|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 08:27:04.9775|INFO|APIDocLog|Start CreateDoc +2026-03-18 08:27:05.0028|INFO|APIDocLog|Input JSON +2026-03-18 08:27:05.0028|DEBUG|OnDoc|Start GenDoc +2026-03-18 08:27:05.0028|DEBUG|OnDoc| +2026-03-18 08:27:05.0028|DEBUG|OnDoc| +2026-03-18 08:27:05.0028|DEBUG|OnDoc| +2026-03-18 08:27:05.0028|DEBUG|OnDoc| +2026-03-18 08:27:05.0028|DEBUG|OnDoc| +2026-03-18 08:27:05.0028|DEBUG|OnDoc| +2026-03-18 08:27:05.0028|DEBUG|OnDoc| +2026-03-18 08:27:05.0028|DEBUG|OnDoc| +2026-03-18 08:27:05.0028|DEBUG|OnDoc| +2026-03-18 08:27:05.0028|DEBUG|OnDoc| +2026-03-18 08:27:05.0028|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0129|DEBUG|OnDoc| +2026-03-18 08:27:05.0466|DEBUG|OnDoc| +2026-03-18 08:27:05.0466|DEBUG|OnDoc| +2026-03-18 08:27:05.0736|DEBUG|OnDoc| +2026-03-18 08:27:05.0736|DEBUG|OnDoc| +2026-03-18 08:27:05.0862|DEBUG|OnDoc| +2026-03-18 08:27:05.0862|DEBUG|OnDoc| +2026-03-18 08:27:05.0862|DEBUG|OnDoc| +2026-03-18 08:27:05.0862|DEBUG|OnDoc| +2026-03-18 08:27:05.1024|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 08:27:05.1024|DEBUG|OnDoc| +2026-03-18 08:27:05.1099|DEBUG|OnDoc| +2026-03-18 08:27:05.1099|DEBUG|OnDoc| +2026-03-18 08:27:05.1099|DEBUG|OnDoc| +2026-03-18 08:27:05.1099|DEBUG|OnDoc| +2026-03-18 08:27:05.1099|DEBUG|OnDoc| +2026-03-18 08:27:05.1099|DEBUG|OnDoc| +2026-03-18 08:27:05.1229|DEBUG|OnDoc| +2026-03-18 08:27:05.1229|DEBUG|OnDoc|Generate_Word +2026-03-18 08:27:05.1229|DEBUG|OnDoc|Word2013 +2026-03-18 08:27:05.1229|DEBUG|OnDoc|Word2013 +2026-03-18 08:27:08.4369|DEBUG|OnDoc|Generate_Word +2026-03-18 08:27:08.4747|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015288 +2026-03-18 08:27:08.4747|INFO|DocLog|Dokument über API erstellt +2026-03-18 08:27:08.4747|INFO|APIDocLog|Dokument return to sender +2026-03-18 08:27:08.4747|DEBUG|OnDoc| +2026-03-18 08:27:08.4816|DEBUG|OnDoc| +2026-03-18 08:27:08.4816|DEBUG|OnDoc| +2026-03-18 08:27:08.4816|DEBUG|OnDoc| +2026-03-18 08:27:08.4816|DEBUG|OnDoc| +2026-03-18 08:27:08.4816|DEBUG|OnDoc| +2026-03-18 08:27:56.9360|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 08:27:57.0358|INFO|APIDocLog|Start CreateDoc +2026-03-18 08:27:57.0657|INFO|APIDocLog|Input JSON +2026-03-18 08:27:57.0657|DEBUG|OnDoc|Start GenDoc +2026-03-18 08:27:57.0657|DEBUG|OnDoc| +2026-03-18 08:27:57.0657|DEBUG|OnDoc| +2026-03-18 08:27:57.0657|DEBUG|OnDoc| +2026-03-18 08:27:57.0657|DEBUG|OnDoc| +2026-03-18 08:27:57.0657|DEBUG|OnDoc| +2026-03-18 08:27:57.0657|DEBUG|OnDoc| +2026-03-18 08:27:57.0657|DEBUG|OnDoc| +2026-03-18 08:27:57.0657|DEBUG|OnDoc| +2026-03-18 08:27:57.0657|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.0747|DEBUG|OnDoc| +2026-03-18 08:27:57.1111|DEBUG|OnDoc| +2026-03-18 08:27:57.1111|DEBUG|OnDoc| +2026-03-18 08:27:57.1426|DEBUG|OnDoc| +2026-03-18 08:27:57.1426|DEBUG|OnDoc| +2026-03-18 08:27:57.1426|DEBUG|OnDoc| +2026-03-18 08:27:57.1426|DEBUG|OnDoc| +2026-03-18 08:27:57.1426|DEBUG|OnDoc| +2026-03-18 08:27:57.1426|DEBUG|OnDoc| +2026-03-18 08:27:57.1671|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 08:27:57.1671|DEBUG|OnDoc| +2026-03-18 08:27:57.1739|DEBUG|OnDoc| +2026-03-18 08:27:57.1739|DEBUG|OnDoc| +2026-03-18 08:27:57.1739|DEBUG|OnDoc| +2026-03-18 08:27:57.1739|DEBUG|OnDoc| +2026-03-18 08:27:57.1739|DEBUG|OnDoc| +2026-03-18 08:27:57.1739|DEBUG|OnDoc| +2026-03-18 08:27:57.1842|DEBUG|OnDoc| +2026-03-18 08:27:57.1842|DEBUG|OnDoc|Generate_Word +2026-03-18 08:27:57.1842|DEBUG|OnDoc|Word2013 +2026-03-18 08:27:57.1842|DEBUG|OnDoc|Word2013 +2026-03-18 08:27:59.9645|DEBUG|OnDoc|Generate_Word +2026-03-18 08:27:59.9789|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015293 +2026-03-18 08:27:59.9789|INFO|DocLog|Dokument über API erstellt +2026-03-18 08:27:59.9789|INFO|APIDocLog|Dokument return to sender +2026-03-18 08:27:59.9832|DEBUG|OnDoc| +2026-03-18 08:27:59.9832|DEBUG|OnDoc| +2026-03-18 08:27:59.9832|DEBUG|OnDoc| +2026-03-18 08:27:59.9832|DEBUG|OnDoc| +2026-03-18 08:27:59.9832|DEBUG|OnDoc| +2026-03-18 08:27:59.9832|DEBUG|OnDoc| +2026-03-18 08:28:10.3861|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 08:28:10.4551|INFO|APIDocLog|Start CreateDoc +2026-03-18 08:28:10.4772|INFO|APIDocLog|Input JSON +2026-03-18 08:28:10.4772|DEBUG|OnDoc|Start GenDoc +2026-03-18 08:28:10.4772|DEBUG|OnDoc| +2026-03-18 08:28:10.4772|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.4813|DEBUG|OnDoc| +2026-03-18 08:28:10.5150|DEBUG|OnDoc| +2026-03-18 08:28:10.5150|DEBUG|OnDoc| +2026-03-18 08:28:10.5396|DEBUG|OnDoc| +2026-03-18 08:28:10.5396|DEBUG|OnDoc| +2026-03-18 08:28:10.5495|DEBUG|OnDoc| +2026-03-18 08:28:10.5495|DEBUG|OnDoc| +2026-03-18 08:28:10.5495|DEBUG|OnDoc| +2026-03-18 08:28:10.5495|DEBUG|OnDoc| +2026-03-18 08:28:10.5626|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 08:28:10.5626|DEBUG|OnDoc| +2026-03-18 08:28:10.5626|DEBUG|OnDoc| +2026-03-18 08:28:10.5626|DEBUG|OnDoc| +2026-03-18 08:28:10.5626|DEBUG|OnDoc| +2026-03-18 08:28:10.5626|DEBUG|OnDoc| +2026-03-18 08:28:10.5758|DEBUG|OnDoc| +2026-03-18 08:28:10.5758|DEBUG|OnDoc| +2026-03-18 08:28:10.5758|DEBUG|OnDoc| +2026-03-18 08:28:10.5758|DEBUG|OnDoc|Generate_Word +2026-03-18 08:28:10.5758|DEBUG|OnDoc|Word2013 +2026-03-18 08:28:10.5904|DEBUG|OnDoc|Word2013 +2026-03-18 08:29:06.9548|DEBUG|OnDoc| +2026-03-18 08:29:07.0498|DEBUG|OnDoc| +2026-03-18 08:29:07.0498|DEBUG|OnDoc| +2026-03-18 08:29:07.0498|DEBUG|OnDoc| +2026-03-18 08:29:07.3725|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 08:29:07.6392|INFO|APIDocLog|Start CreateDoc +2026-03-18 08:29:07.7416|INFO|APIDocLog|Input JSON +2026-03-18 08:29:07.7627|DEBUG|OnDoc|Start GenDoc +2026-03-18 08:29:07.7627|DEBUG|OnDoc| +2026-03-18 08:29:07.7627|DEBUG|OnDoc| +2026-03-18 08:29:07.7627|DEBUG|OnDoc| +2026-03-18 08:29:07.7627|DEBUG|OnDoc| +2026-03-18 08:29:07.7627|DEBUG|OnDoc| +2026-03-18 08:29:07.7627|DEBUG|OnDoc| +2026-03-18 08:29:07.7627|DEBUG|OnDoc| +2026-03-18 08:29:07.7627|DEBUG|OnDoc| +2026-03-18 08:29:07.7782|DEBUG|OnDoc| +2026-03-18 08:29:07.7782|DEBUG|OnDoc| +2026-03-18 08:29:07.7782|DEBUG|OnDoc| +2026-03-18 08:29:07.7782|DEBUG|OnDoc| +2026-03-18 08:29:07.7782|DEBUG|OnDoc| +2026-03-18 08:29:07.7782|DEBUG|OnDoc| +2026-03-18 08:29:07.7782|DEBUG|OnDoc| +2026-03-18 08:29:07.7957|DEBUG|OnDoc| +2026-03-18 08:29:07.7957|DEBUG|OnDoc| +2026-03-18 08:29:07.7957|DEBUG|OnDoc| +2026-03-18 08:29:07.7957|DEBUG|OnDoc| +2026-03-18 08:29:07.7957|DEBUG|OnDoc| +2026-03-18 08:29:07.7957|DEBUG|OnDoc| +2026-03-18 08:29:07.8089|DEBUG|OnDoc| +2026-03-18 08:29:07.8089|DEBUG|OnDoc| +2026-03-18 08:29:07.8089|DEBUG|OnDoc| +2026-03-18 08:29:07.8089|DEBUG|OnDoc| +2026-03-18 08:29:07.8089|DEBUG|OnDoc| +2026-03-18 08:29:07.8089|DEBUG|OnDoc| +2026-03-18 08:29:07.8089|DEBUG|OnDoc| +2026-03-18 08:29:07.8089|DEBUG|OnDoc| +2026-03-18 08:29:07.8089|DEBUG|OnDoc| +2026-03-18 08:29:07.8089|DEBUG|OnDoc| +2026-03-18 08:29:07.8089|DEBUG|OnDoc| +2026-03-18 08:29:07.8089|DEBUG|OnDoc| +2026-03-18 08:29:07.8089|DEBUG|OnDoc| +2026-03-18 08:29:07.8485|DEBUG|OnDoc| +2026-03-18 08:29:07.8485|DEBUG|OnDoc| +2026-03-18 08:29:07.9049|DEBUG|OnDoc| +2026-03-18 08:29:07.9049|DEBUG|OnDoc| +2026-03-18 08:29:07.9403|DEBUG|OnDoc| +2026-03-18 08:29:07.9403|DEBUG|OnDoc| +2026-03-18 08:29:07.9403|DEBUG|OnDoc| +2026-03-18 08:29:07.9403|DEBUG|OnDoc| +2026-03-18 08:29:07.9705|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 08:29:07.9705|DEBUG|OnDoc| +2026-03-18 08:29:07.9815|DEBUG|OnDoc| +2026-03-18 08:29:07.9815|DEBUG|OnDoc| +2026-03-18 08:29:07.9815|DEBUG|OnDoc| +2026-03-18 08:29:07.9815|DEBUG|OnDoc| +2026-03-18 08:29:07.9985|DEBUG|OnDoc| +2026-03-18 08:29:07.9985|DEBUG|OnDoc| +2026-03-18 08:29:07.9985|DEBUG|OnDoc| +2026-03-18 08:29:07.9985|DEBUG|OnDoc|Generate_Word +2026-03-18 08:29:08.4819|DEBUG|OnDoc|Word2013 +2026-03-18 08:29:08.4989|DEBUG|OnDoc|Word2013 +2026-03-18 08:29:36.4223|DEBUG|OnDoc|Generate_Word +2026-03-18 08:29:36.4953|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015316 +2026-03-18 08:29:36.4953|INFO|DocLog|Dokument über API erstellt +2026-03-18 08:29:36.4974|INFO|APIDocLog|Dokument return to sender +2026-03-18 08:29:36.4974|DEBUG|OnDoc| +2026-03-18 08:29:36.4974|DEBUG|OnDoc| +2026-03-18 08:29:36.4974|DEBUG|OnDoc| +2026-03-18 08:29:36.4974|DEBUG|OnDoc| +2026-03-18 08:29:36.4974|DEBUG|OnDoc| +2026-03-18 08:29:36.4974|DEBUG|OnDoc| +2026-03-18 08:48:12.7951|DEBUG|OnDoc| +2026-03-18 08:48:12.8872|DEBUG|OnDoc| +2026-03-18 08:48:12.8872|DEBUG|OnDoc| +2026-03-18 08:48:12.8872|DEBUG|OnDoc| +2026-03-18 08:51:42.5677|DEBUG|OnDoc| +2026-03-18 08:51:42.6592|DEBUG|OnDoc| +2026-03-18 08:51:42.6592|DEBUG|OnDoc| +2026-03-18 08:51:42.6592|DEBUG|OnDoc| +2026-03-18 08:51:43.0008|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 08:51:43.3731|INFO|APIDocLog|Start CreateDoc +2026-03-18 08:51:43.4778|INFO|APIDocLog|Input JSON +2026-03-18 08:51:43.4981|DEBUG|OnDoc|Start GenDoc +2026-03-18 08:51:43.4981|DEBUG|OnDoc| +2026-03-18 08:51:43.4981|DEBUG|OnDoc| +2026-03-18 08:51:43.4981|DEBUG|OnDoc| +2026-03-18 08:51:43.4981|DEBUG|OnDoc| +2026-03-18 08:51:43.4981|DEBUG|OnDoc| +2026-03-18 08:51:43.4981|DEBUG|OnDoc| +2026-03-18 08:51:43.4981|DEBUG|OnDoc| +2026-03-18 08:51:43.4981|DEBUG|OnDoc| +2026-03-18 08:51:43.4981|DEBUG|OnDoc| +2026-03-18 08:51:43.4981|DEBUG|OnDoc| +2026-03-18 08:51:43.4981|DEBUG|OnDoc| +2026-03-18 08:51:43.4981|DEBUG|OnDoc| +2026-03-18 08:51:43.4981|DEBUG|OnDoc| +2026-03-18 08:51:43.4981|DEBUG|OnDoc| +2026-03-18 08:51:43.5169|DEBUG|OnDoc| +2026-03-18 08:51:43.5169|DEBUG|OnDoc| +2026-03-18 08:51:43.5169|DEBUG|OnDoc| +2026-03-18 08:51:43.5169|DEBUG|OnDoc| +2026-03-18 08:51:43.5169|DEBUG|OnDoc| +2026-03-18 08:51:43.5169|DEBUG|OnDoc| +2026-03-18 08:51:43.5288|DEBUG|OnDoc| +2026-03-18 08:51:43.5288|DEBUG|OnDoc| +2026-03-18 08:51:43.5288|DEBUG|OnDoc| +2026-03-18 08:51:43.5288|DEBUG|OnDoc| +2026-03-18 08:51:43.5288|DEBUG|OnDoc| +2026-03-18 08:51:43.5288|DEBUG|OnDoc| +2026-03-18 08:51:43.5288|DEBUG|OnDoc| +2026-03-18 08:51:43.5288|DEBUG|OnDoc| +2026-03-18 08:51:43.5288|DEBUG|OnDoc| +2026-03-18 08:51:43.5288|DEBUG|OnDoc| +2026-03-18 08:51:43.5288|DEBUG|OnDoc| +2026-03-18 08:51:43.5288|DEBUG|OnDoc| +2026-03-18 08:51:43.5288|DEBUG|OnDoc| +2026-03-18 08:51:43.5288|DEBUG|OnDoc| +2026-03-18 08:51:43.5602|DEBUG|OnDoc| +2026-03-18 08:51:43.5602|DEBUG|OnDoc| +2026-03-18 08:51:43.6136|DEBUG|OnDoc| +2026-03-18 08:51:43.6136|DEBUG|OnDoc| +2026-03-18 08:51:43.6458|DEBUG|OnDoc| +2026-03-18 08:51:43.6458|DEBUG|OnDoc| +2026-03-18 08:51:43.6458|DEBUG|OnDoc| +2026-03-18 08:51:43.6458|DEBUG|OnDoc| +2026-03-18 08:51:43.6804|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 08:51:43.6804|DEBUG|OnDoc| +2026-03-18 08:51:43.6931|DEBUG|OnDoc| +2026-03-18 08:51:43.6931|DEBUG|OnDoc| +2026-03-18 08:51:43.6931|DEBUG|OnDoc| +2026-03-18 08:51:43.6931|DEBUG|OnDoc| +2026-03-18 08:51:43.7084|DEBUG|OnDoc| +2026-03-18 08:51:43.7084|DEBUG|OnDoc| +2026-03-18 08:51:43.7179|DEBUG|OnDoc| +2026-03-18 08:51:43.7179|DEBUG|OnDoc|Generate_Word +2026-03-18 08:51:44.1913|DEBUG|OnDoc|Word2013 +2026-03-18 08:51:44.2014|DEBUG|OnDoc|Word2013 +2026-03-18 08:52:27.5618|DEBUG|OnDoc|Generate_Word +2026-03-18 08:52:27.6337|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015324 +2026-03-18 08:52:27.6337|INFO|DocLog|Dokument über API erstellt +2026-03-18 08:52:27.6337|INFO|APIDocLog|Dokument return to sender +2026-03-18 08:52:27.6378|DEBUG|OnDoc| +2026-03-18 08:52:27.6378|DEBUG|OnDoc| +2026-03-18 08:52:27.6378|DEBUG|OnDoc| +2026-03-18 08:52:27.6378|DEBUG|OnDoc| +2026-03-18 08:52:27.6378|DEBUG|OnDoc| +2026-03-18 08:52:27.6378|DEBUG|OnDoc| +2026-03-18 08:55:08.2646|DEBUG|OnDoc| +2026-03-18 08:55:08.3572|DEBUG|OnDoc| +2026-03-18 08:55:08.3572|DEBUG|OnDoc| +2026-03-18 08:55:08.3572|DEBUG|OnDoc| +2026-03-18 08:55:08.6701|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 08:55:08.9870|INFO|APIDocLog|Start CreateDoc +2026-03-18 08:55:09.1007|INFO|APIDocLog|Input JSON +2026-03-18 08:55:09.1294|DEBUG|OnDoc|Start GenDoc +2026-03-18 08:55:09.1294|DEBUG|OnDoc| +2026-03-18 08:55:09.1370|DEBUG|OnDoc| +2026-03-18 08:55:09.1370|DEBUG|OnDoc| +2026-03-18 08:55:09.1370|DEBUG|OnDoc| +2026-03-18 08:55:09.1370|DEBUG|OnDoc| +2026-03-18 08:55:09.1370|DEBUG|OnDoc| +2026-03-18 08:55:09.1370|DEBUG|OnDoc| +2026-03-18 08:55:09.1370|DEBUG|OnDoc| +2026-03-18 08:55:09.1370|DEBUG|OnDoc| +2026-03-18 08:55:09.1370|DEBUG|OnDoc| +2026-03-18 08:55:09.1370|DEBUG|OnDoc| +2026-03-18 08:55:09.1370|DEBUG|OnDoc| +2026-03-18 08:55:09.1370|DEBUG|OnDoc| +2026-03-18 08:55:09.1370|DEBUG|OnDoc| +2026-03-18 08:55:09.1370|DEBUG|OnDoc| +2026-03-18 08:55:09.1531|DEBUG|OnDoc| +2026-03-18 08:55:09.1531|DEBUG|OnDoc| +2026-03-18 08:55:09.1531|DEBUG|OnDoc| +2026-03-18 08:55:09.1531|DEBUG|OnDoc| +2026-03-18 08:55:09.1531|DEBUG|OnDoc| +2026-03-18 08:55:09.1531|DEBUG|OnDoc| +2026-03-18 08:55:09.1531|DEBUG|OnDoc| +2026-03-18 08:55:09.1682|DEBUG|OnDoc| +2026-03-18 08:55:09.1682|DEBUG|OnDoc| +2026-03-18 08:55:09.1682|DEBUG|OnDoc| +2026-03-18 08:55:09.1682|DEBUG|OnDoc| +2026-03-18 08:55:09.1682|DEBUG|OnDoc| +2026-03-18 08:55:09.1682|DEBUG|OnDoc| +2026-03-18 08:55:09.1682|DEBUG|OnDoc| +2026-03-18 08:55:09.1682|DEBUG|OnDoc| +2026-03-18 08:55:09.1682|DEBUG|OnDoc| +2026-03-18 08:55:09.1682|DEBUG|OnDoc| +2026-03-18 08:55:09.1682|DEBUG|OnDoc| +2026-03-18 08:55:09.1858|DEBUG|OnDoc| +2026-03-18 08:55:09.2171|DEBUG|OnDoc| +2026-03-18 08:55:09.2171|DEBUG|OnDoc| +2026-03-18 08:55:09.2733|DEBUG|OnDoc| +2026-03-18 08:55:09.2733|DEBUG|OnDoc| +2026-03-18 08:55:09.3082|DEBUG|OnDoc| +2026-03-18 08:55:09.3107|DEBUG|OnDoc| +2026-03-18 08:55:09.3107|DEBUG|OnDoc| +2026-03-18 08:55:09.3107|DEBUG|OnDoc| +2026-03-18 08:55:09.3446|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 08:55:09.3446|DEBUG|OnDoc| +2026-03-18 08:55:09.3617|DEBUG|OnDoc| +2026-03-18 08:55:09.3617|DEBUG|OnDoc| +2026-03-18 08:55:09.3617|DEBUG|OnDoc| +2026-03-18 08:55:09.3617|DEBUG|OnDoc| +2026-03-18 08:55:09.3744|DEBUG|OnDoc| +2026-03-18 08:55:09.3884|DEBUG|OnDoc| +2026-03-18 08:55:09.3884|DEBUG|OnDoc| +2026-03-18 08:55:09.3884|DEBUG|OnDoc|Generate_Word +2026-03-18 08:55:09.9493|DEBUG|OnDoc|Word2013 +2026-03-18 08:55:09.9600|DEBUG|OnDoc|Word2013 +2026-03-18 08:55:21.7083|DEBUG|OnDoc|Generate_Word +2026-03-18 08:55:21.7840|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015332 +2026-03-18 08:55:21.7840|INFO|DocLog|Dokument über API erstellt +2026-03-18 08:55:21.7840|INFO|APIDocLog|Dokument return to sender +2026-03-18 08:55:21.7840|DEBUG|OnDoc| +2026-03-18 08:55:21.7932|DEBUG|OnDoc| +2026-03-18 08:55:21.7932|DEBUG|OnDoc| +2026-03-18 08:55:21.7932|DEBUG|OnDoc| +2026-03-18 08:55:21.7932|DEBUG|OnDoc| +2026-03-18 08:55:21.7932|DEBUG|OnDoc| +2026-03-18 08:55:49.4204|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 08:55:49.5387|INFO|APIDocLog|Start CreateDoc +2026-03-18 08:55:49.5870|INFO|APIDocLog|Input JSON +2026-03-18 08:55:49.5870|DEBUG|OnDoc|Start GenDoc +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.5910|DEBUG|OnDoc| +2026-03-18 08:55:49.6062|DEBUG|OnDoc| +2026-03-18 08:55:49.6062|DEBUG|OnDoc| +2026-03-18 08:55:49.6062|DEBUG|OnDoc| +2026-03-18 08:55:49.6062|DEBUG|OnDoc| +2026-03-18 08:55:49.6062|DEBUG|OnDoc| +2026-03-18 08:55:49.6220|DEBUG|OnDoc| +2026-03-18 08:55:49.6220|DEBUG|OnDoc| +2026-03-18 08:55:49.6542|DEBUG|OnDoc| +2026-03-18 08:55:49.6542|DEBUG|OnDoc| +2026-03-18 08:55:49.6692|DEBUG|OnDoc| +2026-03-18 08:55:49.6692|DEBUG|OnDoc| +2026-03-18 08:55:49.6692|DEBUG|OnDoc| +2026-03-18 08:55:49.6692|DEBUG|OnDoc| +2026-03-18 08:55:49.6947|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 08:55:49.6947|DEBUG|OnDoc| +2026-03-18 08:55:49.7027|DEBUG|OnDoc| +2026-03-18 08:55:49.7027|DEBUG|OnDoc| +2026-03-18 08:55:49.7027|DEBUG|OnDoc| +2026-03-18 08:55:49.7027|DEBUG|OnDoc| +2026-03-18 08:55:49.7027|DEBUG|OnDoc| +2026-03-18 08:55:49.7027|DEBUG|OnDoc| +2026-03-18 08:55:49.7161|DEBUG|OnDoc| +2026-03-18 08:55:49.7161|DEBUG|OnDoc|Generate_Word +2026-03-18 08:55:49.7347|DEBUG|OnDoc|Word2013 +2026-03-18 08:55:49.7347|DEBUG|OnDoc|Word2013 +2026-03-18 08:55:59.9462|DEBUG|OnDoc|Generate_Word +2026-03-18 08:55:59.9841|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015348 +2026-03-18 08:55:59.9841|INFO|DocLog|Dokument über API erstellt +2026-03-18 08:55:59.9841|INFO|APIDocLog|Dokument return to sender +2026-03-18 08:55:59.9841|DEBUG|OnDoc| +2026-03-18 08:55:59.9841|DEBUG|OnDoc| +2026-03-18 08:55:59.9841|DEBUG|OnDoc| +2026-03-18 08:55:59.9841|DEBUG|OnDoc| +2026-03-18 08:55:59.9841|DEBUG|OnDoc| +2026-03-18 08:55:59.9841|DEBUG|OnDoc| +2026-03-18 08:57:17.2419|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 08:57:17.3291|INFO|APIDocLog|Start CreateDoc +2026-03-18 08:57:17.3569|INFO|APIDocLog|Input JSON +2026-03-18 08:57:17.3569|DEBUG|OnDoc|Start GenDoc +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3569|DEBUG|OnDoc| +2026-03-18 08:57:17.3714|DEBUG|OnDoc| +2026-03-18 08:57:17.3714|DEBUG|OnDoc| +2026-03-18 08:57:17.3714|DEBUG|OnDoc| +2026-03-18 08:57:17.3714|DEBUG|OnDoc| +2026-03-18 08:57:17.3714|DEBUG|OnDoc| +2026-03-18 08:57:17.3714|DEBUG|OnDoc| +2026-03-18 08:57:17.3714|DEBUG|OnDoc| +2026-03-18 08:57:17.3714|DEBUG|OnDoc| +2026-03-18 08:57:17.3714|DEBUG|OnDoc| +2026-03-18 08:57:17.3714|DEBUG|OnDoc| +2026-03-18 08:57:17.3714|DEBUG|OnDoc| +2026-03-18 08:57:17.3714|DEBUG|OnDoc| +2026-03-18 08:57:17.3714|DEBUG|OnDoc| +2026-03-18 08:57:17.3714|DEBUG|OnDoc| +2026-03-18 08:57:17.4128|DEBUG|OnDoc| +2026-03-18 08:57:17.4128|DEBUG|OnDoc| +2026-03-18 08:57:17.4476|DEBUG|OnDoc| +2026-03-18 08:57:17.4476|DEBUG|OnDoc| +2026-03-18 08:57:17.4599|DEBUG|OnDoc| +2026-03-18 08:57:17.4599|DEBUG|OnDoc| +2026-03-18 08:57:17.4599|DEBUG|OnDoc| +2026-03-18 08:57:17.4599|DEBUG|OnDoc| +2026-03-18 08:57:17.4808|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 08:57:17.4808|DEBUG|OnDoc| +2026-03-18 08:57:17.4808|DEBUG|OnDoc| +2026-03-18 08:57:17.4808|DEBUG|OnDoc| +2026-03-18 08:57:17.4808|DEBUG|OnDoc| +2026-03-18 08:57:17.4808|DEBUG|OnDoc| +2026-03-18 08:57:17.4971|DEBUG|OnDoc| +2026-03-18 08:57:17.4971|DEBUG|OnDoc| +2026-03-18 08:57:17.4971|DEBUG|OnDoc| +2026-03-18 08:57:17.4971|DEBUG|OnDoc|Generate_Word +2026-03-18 08:57:17.5659|DEBUG|OnDoc|Word2013 +2026-03-18 08:57:17.5659|DEBUG|OnDoc|Word2013 +2026-03-18 08:59:27.5646|DEBUG|OnDoc|Generate_Word +2026-03-18 08:59:27.6039|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015353 +2026-03-18 08:59:27.6039|INFO|DocLog|Dokument über API erstellt +2026-03-18 08:59:27.6069|INFO|APIDocLog|Dokument return to sender +2026-03-18 08:59:27.6069|DEBUG|OnDoc| +2026-03-18 08:59:27.6069|DEBUG|OnDoc| +2026-03-18 08:59:27.6069|DEBUG|OnDoc| +2026-03-18 08:59:27.6069|DEBUG|OnDoc| +2026-03-18 08:59:27.6069|DEBUG|OnDoc| +2026-03-18 08:59:27.6069|DEBUG|OnDoc| +2026-03-18 08:59:31.6966|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 08:59:31.7786|INFO|APIDocLog|Start CreateDoc +2026-03-18 08:59:31.8307|INFO|APIDocLog|Input JSON +2026-03-18 08:59:31.8307|DEBUG|OnDoc|Start GenDoc +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8307|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8407|DEBUG|OnDoc| +2026-03-18 08:59:31.8650|DEBUG|OnDoc| +2026-03-18 08:59:31.8650|DEBUG|OnDoc| +2026-03-18 08:59:31.9207|DEBUG|OnDoc| +2026-03-18 08:59:31.9207|DEBUG|OnDoc| +2026-03-18 08:59:31.9207|DEBUG|OnDoc| +2026-03-18 08:59:31.9207|DEBUG|OnDoc| +2026-03-18 08:59:31.9207|DEBUG|OnDoc| +2026-03-18 08:59:31.9207|DEBUG|OnDoc| +2026-03-18 08:59:31.9914|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 08:59:31.9914|DEBUG|OnDoc| +2026-03-18 08:59:31.9980|DEBUG|OnDoc| +2026-03-18 08:59:31.9980|DEBUG|OnDoc| +2026-03-18 08:59:31.9980|DEBUG|OnDoc| +2026-03-18 08:59:31.9980|DEBUG|OnDoc| +2026-03-18 08:59:31.9980|DEBUG|OnDoc| +2026-03-18 08:59:31.9980|DEBUG|OnDoc| +2026-03-18 08:59:31.9980|DEBUG|OnDoc| +2026-03-18 08:59:31.9980|DEBUG|OnDoc|Generate_Word +2026-03-18 08:59:32.0180|DEBUG|OnDoc|Word2013 +2026-03-18 08:59:32.0180|DEBUG|OnDoc|Word2013 +2026-03-18 08:59:40.0042|DEBUG|OnDoc|Generate_Word +2026-03-18 08:59:40.0448|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015369 +2026-03-18 08:59:40.0448|INFO|DocLog|Dokument über API erstellt +2026-03-18 08:59:40.0448|INFO|APIDocLog|Dokument return to sender +2026-03-18 08:59:40.0448|DEBUG|OnDoc| +2026-03-18 08:59:40.0448|DEBUG|OnDoc| +2026-03-18 08:59:40.0448|DEBUG|OnDoc| +2026-03-18 08:59:40.0448|DEBUG|OnDoc| +2026-03-18 08:59:40.0448|DEBUG|OnDoc| +2026-03-18 08:59:40.0448|DEBUG|OnDoc| +2026-03-18 08:59:53.9178|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 08:59:53.9700|INFO|APIDocLog|Start CreateDoc +2026-03-18 08:59:53.9971|INFO|APIDocLog|Input JSON +2026-03-18 08:59:53.9971|DEBUG|OnDoc|Start GenDoc +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:53.9971|DEBUG|OnDoc| +2026-03-18 08:59:54.0145|DEBUG|OnDoc| +2026-03-18 08:59:54.0145|DEBUG|OnDoc| +2026-03-18 08:59:54.0145|DEBUG|OnDoc| +2026-03-18 08:59:54.0145|DEBUG|OnDoc| +2026-03-18 08:59:54.0145|DEBUG|OnDoc| +2026-03-18 08:59:54.0145|DEBUG|OnDoc| +2026-03-18 08:59:54.0145|DEBUG|OnDoc| +2026-03-18 08:59:54.0145|DEBUG|OnDoc| +2026-03-18 08:59:54.0145|DEBUG|OnDoc| +2026-03-18 08:59:54.0145|DEBUG|OnDoc| +2026-03-18 08:59:54.0145|DEBUG|OnDoc| +2026-03-18 08:59:54.0145|DEBUG|OnDoc| +2026-03-18 08:59:54.0145|DEBUG|OnDoc| +2026-03-18 08:59:54.0145|DEBUG|OnDoc| +2026-03-18 08:59:54.0323|DEBUG|OnDoc| +2026-03-18 08:59:54.0323|DEBUG|OnDoc| +2026-03-18 08:59:54.0609|DEBUG|OnDoc| +2026-03-18 08:59:54.0609|DEBUG|OnDoc| +2026-03-18 08:59:54.0609|DEBUG|OnDoc| +2026-03-18 08:59:54.0609|DEBUG|OnDoc| +2026-03-18 08:59:54.0609|DEBUG|OnDoc| +2026-03-18 08:59:54.0609|DEBUG|OnDoc| +2026-03-18 08:59:54.0897|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 08:59:54.0897|DEBUG|OnDoc| +2026-03-18 08:59:54.0964|DEBUG|OnDoc| +2026-03-18 08:59:54.0964|DEBUG|OnDoc| +2026-03-18 08:59:54.0964|DEBUG|OnDoc| +2026-03-18 08:59:54.0964|DEBUG|OnDoc| +2026-03-18 08:59:54.0964|DEBUG|OnDoc| +2026-03-18 08:59:54.0964|DEBUG|OnDoc| +2026-03-18 08:59:54.1078|DEBUG|OnDoc| +2026-03-18 08:59:54.1078|DEBUG|OnDoc|Generate_Word +2026-03-18 08:59:54.1078|DEBUG|OnDoc|Word2013 +2026-03-18 08:59:54.1078|DEBUG|OnDoc|Word2013 +2026-03-18 09:00:11.1706|DEBUG|OnDoc|Generate_Word +2026-03-18 09:00:11.2114|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015377 +2026-03-18 09:00:11.2114|INFO|DocLog|Dokument über API erstellt +2026-03-18 09:00:11.2164|INFO|APIDocLog|Dokument return to sender +2026-03-18 09:00:11.2164|DEBUG|OnDoc| +2026-03-18 09:00:11.2315|DEBUG|OnDoc| +2026-03-18 09:00:11.2315|DEBUG|OnDoc| +2026-03-18 09:00:11.2315|DEBUG|OnDoc| +2026-03-18 09:00:11.2315|DEBUG|OnDoc| +2026-03-18 09:00:11.2315|DEBUG|OnDoc| +2026-03-18 09:05:19.2324|DEBUG|OnDoc| +2026-03-18 09:05:19.3233|DEBUG|OnDoc| +2026-03-18 09:05:19.3263|DEBUG|OnDoc| +2026-03-18 09:05:19.3263|DEBUG|OnDoc| +2026-03-18 09:05:34.2972|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 09:05:34.5275|INFO|APIDocLog|Start CreateDoc +2026-03-18 09:05:34.6243|INFO|APIDocLog|Input JSON +2026-03-18 09:05:34.6454|DEBUG|OnDoc|Start GenDoc +2026-03-18 09:05:34.6454|DEBUG|OnDoc| +2026-03-18 09:05:34.6454|DEBUG|OnDoc| +2026-03-18 09:05:34.6454|DEBUG|OnDoc| +2026-03-18 09:05:34.6454|DEBUG|OnDoc| +2026-03-18 09:05:34.6454|DEBUG|OnDoc| +2026-03-18 09:05:34.6454|DEBUG|OnDoc| +2026-03-18 09:05:34.6454|DEBUG|OnDoc| +2026-03-18 09:05:34.6454|DEBUG|OnDoc| +2026-03-18 09:05:34.6454|DEBUG|OnDoc| +2026-03-18 09:05:34.6454|DEBUG|OnDoc| +2026-03-18 09:05:34.6454|DEBUG|OnDoc| +2026-03-18 09:05:34.6454|DEBUG|OnDoc| +2026-03-18 09:05:34.6539|DEBUG|OnDoc| +2026-03-18 09:05:34.6539|DEBUG|OnDoc| +2026-03-18 09:05:34.6539|DEBUG|OnDoc| +2026-03-18 09:05:34.6539|DEBUG|OnDoc| +2026-03-18 09:05:34.6539|DEBUG|OnDoc| +2026-03-18 09:05:34.6539|DEBUG|OnDoc| +2026-03-18 09:05:34.6539|DEBUG|OnDoc| +2026-03-18 09:05:34.6539|DEBUG|OnDoc| +2026-03-18 09:05:34.6694|DEBUG|OnDoc| +2026-03-18 09:05:34.6694|DEBUG|OnDoc| +2026-03-18 09:05:34.6694|DEBUG|OnDoc| +2026-03-18 09:05:34.6694|DEBUG|OnDoc| +2026-03-18 09:05:34.6694|DEBUG|OnDoc| +2026-03-18 09:05:34.6694|DEBUG|OnDoc| +2026-03-18 09:05:34.6694|DEBUG|OnDoc| +2026-03-18 09:05:34.6694|DEBUG|OnDoc| +2026-03-18 09:05:34.6694|DEBUG|OnDoc| +2026-03-18 09:05:34.6694|DEBUG|OnDoc| +2026-03-18 09:05:34.6694|DEBUG|OnDoc| +2026-03-18 09:05:34.6694|DEBUG|OnDoc| +2026-03-18 09:05:34.6694|DEBUG|OnDoc| +2026-03-18 09:05:34.6694|DEBUG|OnDoc| +2026-03-18 09:05:34.6939|DEBUG|OnDoc| +2026-03-18 09:05:34.6939|DEBUG|OnDoc| +2026-03-18 09:05:34.7434|DEBUG|OnDoc| +2026-03-18 09:05:34.7471|DEBUG|OnDoc| +2026-03-18 09:05:34.7752|DEBUG|OnDoc| +2026-03-18 09:05:34.7752|DEBUG|OnDoc| +2026-03-18 09:05:34.7752|DEBUG|OnDoc| +2026-03-18 09:05:34.7752|DEBUG|OnDoc| +2026-03-18 09:05:34.7957|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 09:05:34.7957|DEBUG|OnDoc| +2026-03-18 09:05:34.7957|DEBUG|OnDoc| +2026-03-18 09:05:34.7957|DEBUG|OnDoc| +2026-03-18 09:05:34.7957|DEBUG|OnDoc| +2026-03-18 09:05:34.8095|DEBUG|OnDoc| +2026-03-18 09:05:34.8095|DEBUG|OnDoc| +2026-03-18 09:05:34.8095|DEBUG|OnDoc| +2026-03-18 09:05:34.8095|DEBUG|OnDoc| +2026-03-18 09:05:34.8095|DEBUG|OnDoc|Generate_Word +2026-03-18 09:05:35.2757|DEBUG|OnDoc|Word2013 +2026-03-18 09:05:35.2857|DEBUG|OnDoc|Word2013 +2026-03-18 09:05:41.3722|DEBUG|OnDoc|Generate_Word +2026-03-18 09:05:41.4451|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015385 +2026-03-18 09:05:41.4451|INFO|DocLog|Dokument über API erstellt +2026-03-18 09:05:41.4451|INFO|APIDocLog|Dokument return to sender +2026-03-18 09:05:41.4451|DEBUG|OnDoc| +2026-03-18 09:05:41.4511|DEBUG|OnDoc| +2026-03-18 09:05:41.4511|DEBUG|OnDoc| +2026-03-18 09:05:41.4511|DEBUG|OnDoc| +2026-03-18 09:05:41.4511|DEBUG|OnDoc| +2026-03-18 09:05:41.4511|DEBUG|OnDoc| +2026-03-18 09:06:03.0191|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 09:06:03.0901|INFO|APIDocLog|Start CreateDoc +2026-03-18 09:06:03.1106|INFO|APIDocLog|Input JSON +2026-03-18 09:06:03.1106|DEBUG|OnDoc|Start GenDoc +2026-03-18 09:06:03.1106|DEBUG|OnDoc| +2026-03-18 09:06:03.1106|DEBUG|OnDoc| +2026-03-18 09:06:03.1106|DEBUG|OnDoc| +2026-03-18 09:06:03.1106|DEBUG|OnDoc| +2026-03-18 09:06:03.1106|DEBUG|OnDoc| +2026-03-18 09:06:03.1106|DEBUG|OnDoc| +2026-03-18 09:06:03.1106|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1214|DEBUG|OnDoc| +2026-03-18 09:06:03.1388|DEBUG|OnDoc| +2026-03-18 09:06:03.1388|DEBUG|OnDoc| +2026-03-18 09:06:03.1388|DEBUG|OnDoc| +2026-03-18 09:06:03.1388|DEBUG|OnDoc| +2026-03-18 09:06:03.1388|DEBUG|OnDoc| +2026-03-18 09:06:03.1388|DEBUG|OnDoc| +2026-03-18 09:06:03.1388|DEBUG|OnDoc| +2026-03-18 09:06:03.1388|DEBUG|OnDoc| +2026-03-18 09:06:03.1388|DEBUG|OnDoc| +2026-03-18 09:06:03.1388|DEBUG|OnDoc| +2026-03-18 09:06:03.1388|DEBUG|OnDoc| +2026-03-18 09:06:03.1688|DEBUG|OnDoc| +2026-03-18 09:06:03.1688|DEBUG|OnDoc| +2026-03-18 09:06:03.1941|DEBUG|OnDoc| +2026-03-18 09:06:03.1941|DEBUG|OnDoc| +2026-03-18 09:06:03.2076|DEBUG|OnDoc| +2026-03-18 09:06:03.2076|DEBUG|OnDoc| +2026-03-18 09:06:03.2076|DEBUG|OnDoc| +2026-03-18 09:06:03.2076|DEBUG|OnDoc| +2026-03-18 09:06:03.2248|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 09:06:03.2248|DEBUG|OnDoc| +2026-03-18 09:06:03.2330|DEBUG|OnDoc| +2026-03-18 09:06:03.2330|DEBUG|OnDoc| +2026-03-18 09:06:03.2330|DEBUG|OnDoc| +2026-03-18 09:06:03.2330|DEBUG|OnDoc| +2026-03-18 09:06:03.2488|DEBUG|OnDoc| +2026-03-18 09:06:03.2488|DEBUG|OnDoc| +2026-03-18 09:06:03.2488|DEBUG|OnDoc| +2026-03-18 09:06:03.2488|DEBUG|OnDoc|Generate_Word +2026-03-18 09:06:03.2681|DEBUG|OnDoc|Word2013 +2026-03-18 09:06:03.2681|DEBUG|OnDoc|Word2013 +2026-03-18 09:06:23.1975|DEBUG|OnDoc|Generate_Word +2026-03-18 09:06:23.2350|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015390 +2026-03-18 09:06:23.2350|INFO|DocLog|Dokument über API erstellt +2026-03-18 09:06:23.2350|INFO|APIDocLog|Dokument return to sender +2026-03-18 09:06:23.2350|DEBUG|OnDoc| +2026-03-18 09:06:23.2350|DEBUG|OnDoc| +2026-03-18 09:06:23.2350|DEBUG|OnDoc| +2026-03-18 09:06:23.2350|DEBUG|OnDoc| +2026-03-18 09:06:23.2350|DEBUG|OnDoc| +2026-03-18 09:06:23.2350|DEBUG|OnDoc| +2026-03-18 09:10:12.9243|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 09:10:13.0057|INFO|APIDocLog|Start CreateDoc +2026-03-18 09:10:13.0264|INFO|APIDocLog|Input JSON +2026-03-18 09:10:13.0295|DEBUG|OnDoc|Start GenDoc +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0295|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0432|DEBUG|OnDoc| +2026-03-18 09:10:13.0591|DEBUG|OnDoc| +2026-03-18 09:10:13.0591|DEBUG|OnDoc| +2026-03-18 09:10:13.0591|DEBUG|OnDoc| +2026-03-18 09:10:13.0591|DEBUG|OnDoc| +2026-03-18 09:10:13.0889|DEBUG|OnDoc| +2026-03-18 09:10:13.0920|DEBUG|OnDoc| +2026-03-18 09:10:13.1156|DEBUG|OnDoc| +2026-03-18 09:10:13.1156|DEBUG|OnDoc| +2026-03-18 09:10:13.1266|DEBUG|OnDoc| +2026-03-18 09:10:13.1266|DEBUG|OnDoc| +2026-03-18 09:10:13.1266|DEBUG|OnDoc| +2026-03-18 09:10:13.1266|DEBUG|OnDoc| +2026-03-18 09:10:13.1416|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 09:10:13.1416|DEBUG|OnDoc| +2026-03-18 09:10:13.1560|DEBUG|OnDoc| +2026-03-18 09:10:13.1560|DEBUG|OnDoc| +2026-03-18 09:10:13.1560|DEBUG|OnDoc| +2026-03-18 09:10:13.1560|DEBUG|OnDoc| +2026-03-18 09:10:13.1560|DEBUG|OnDoc| +2026-03-18 09:10:13.1689|DEBUG|OnDoc| +2026-03-18 09:10:13.1689|DEBUG|OnDoc| +2026-03-18 09:10:13.1689|DEBUG|OnDoc|Generate_Word +2026-03-18 09:10:13.1859|DEBUG|OnDoc|Word2013 +2026-03-18 09:10:13.1859|DEBUG|OnDoc|Word2013 +2026-03-18 09:10:41.6909|DEBUG|OnDoc|Generate_Word +2026-03-18 09:10:41.7288|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015404 +2026-03-18 09:10:41.7288|INFO|DocLog|Dokument über API erstellt +2026-03-18 09:10:41.7325|INFO|APIDocLog|Dokument return to sender +2026-03-18 09:10:41.7325|DEBUG|OnDoc| +2026-03-18 09:10:41.7325|DEBUG|OnDoc| +2026-03-18 09:10:41.7325|DEBUG|OnDoc| +2026-03-18 09:10:41.7325|DEBUG|OnDoc| +2026-03-18 09:10:41.7325|DEBUG|OnDoc| +2026-03-18 09:10:41.7325|DEBUG|OnDoc| +2026-03-18 09:11:10.2168|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 09:11:10.2981|INFO|APIDocLog|Start CreateDoc +2026-03-18 09:11:10.3212|INFO|APIDocLog|Input JSON +2026-03-18 09:11:10.3257|DEBUG|OnDoc|Start GenDoc +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3257|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3403|DEBUG|OnDoc| +2026-03-18 09:11:10.3742|DEBUG|OnDoc| +2026-03-18 09:11:10.3742|DEBUG|OnDoc| +2026-03-18 09:11:10.4238|DEBUG|OnDoc| +2026-03-18 09:11:10.4238|DEBUG|OnDoc| +2026-03-18 09:11:10.4371|DEBUG|OnDoc| +2026-03-18 09:11:10.4371|DEBUG|OnDoc| +2026-03-18 09:11:10.4371|DEBUG|OnDoc| +2026-03-18 09:11:10.4371|DEBUG|OnDoc| +2026-03-18 09:11:10.4526|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 09:11:10.4526|DEBUG|OnDoc| +2026-03-18 09:11:10.4526|DEBUG|OnDoc| +2026-03-18 09:11:10.4526|DEBUG|OnDoc| +2026-03-18 09:11:10.4526|DEBUG|OnDoc| +2026-03-18 09:11:10.4526|DEBUG|OnDoc| +2026-03-18 09:11:10.4691|DEBUG|OnDoc| +2026-03-18 09:11:10.4691|DEBUG|OnDoc| +2026-03-18 09:11:10.4691|DEBUG|OnDoc| +2026-03-18 09:11:10.4691|DEBUG|OnDoc|Generate_Word +2026-03-18 09:11:10.4852|DEBUG|OnDoc|Word2013 +2026-03-18 09:11:10.4852|DEBUG|OnDoc|Word2013 +2026-03-18 09:12:00.8502|DEBUG|OnDoc|Generate_Word +2026-03-18 09:12:00.8886|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015412 +2026-03-18 09:12:00.8886|INFO|DocLog|Dokument über API erstellt +2026-03-18 09:12:00.8886|INFO|APIDocLog|Dokument return to sender +2026-03-18 09:12:00.8886|DEBUG|OnDoc| +2026-03-18 09:12:00.8886|DEBUG|OnDoc| +2026-03-18 09:12:00.8886|DEBUG|OnDoc| +2026-03-18 09:12:00.8886|DEBUG|OnDoc| +2026-03-18 09:12:00.8886|DEBUG|OnDoc| +2026-03-18 09:12:00.8886|DEBUG|OnDoc| +2026-03-18 09:39:13.8062|DEBUG|OnDoc| +2026-03-18 09:39:13.8744|DEBUG|OnDoc| +2026-03-18 09:39:13.8744|DEBUG|OnDoc| +2026-03-18 09:39:13.8744|DEBUG|OnDoc| +2026-03-18 09:39:14.1952|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 09:39:14.4706|INFO|APIDocLog|Start CreateDoc +2026-03-18 09:39:14.5726|INFO|APIDocLog|Input JSON +2026-03-18 09:39:14.5886|DEBUG|OnDoc|Start GenDoc +2026-03-18 09:39:14.5916|DEBUG|OnDoc| +2026-03-18 09:39:14.5916|DEBUG|OnDoc| +2026-03-18 09:39:14.5916|DEBUG|OnDoc| +2026-03-18 09:39:14.5916|DEBUG|OnDoc| +2026-03-18 09:39:14.5916|DEBUG|OnDoc| +2026-03-18 09:39:14.5916|DEBUG|OnDoc| +2026-03-18 09:39:14.5916|DEBUG|OnDoc| +2026-03-18 09:39:14.5916|DEBUG|OnDoc| +2026-03-18 09:39:14.5916|DEBUG|OnDoc| +2026-03-18 09:39:14.5916|DEBUG|OnDoc| +2026-03-18 09:39:14.6065|DEBUG|OnDoc| +2026-03-18 09:39:14.6065|DEBUG|OnDoc| +2026-03-18 09:39:14.6065|DEBUG|OnDoc| +2026-03-18 09:39:14.6065|DEBUG|OnDoc| +2026-03-18 09:39:14.6065|DEBUG|OnDoc| +2026-03-18 09:39:14.6065|DEBUG|OnDoc| +2026-03-18 09:39:14.6065|DEBUG|OnDoc| +2026-03-18 09:39:14.6233|DEBUG|OnDoc| +2026-03-18 09:39:14.6233|DEBUG|OnDoc| +2026-03-18 09:39:14.6233|DEBUG|OnDoc| +2026-03-18 09:39:14.6233|DEBUG|OnDoc| +2026-03-18 09:39:14.6233|DEBUG|OnDoc| +2026-03-18 09:39:14.6233|DEBUG|OnDoc| +2026-03-18 09:39:14.6233|DEBUG|OnDoc| +2026-03-18 09:39:14.6373|DEBUG|OnDoc| +2026-03-18 09:39:14.6373|DEBUG|OnDoc| +2026-03-18 09:39:14.6373|DEBUG|OnDoc| +2026-03-18 09:39:14.6373|DEBUG|OnDoc| +2026-03-18 09:39:14.6373|DEBUG|OnDoc| +2026-03-18 09:39:14.6373|DEBUG|OnDoc| +2026-03-18 09:39:14.6373|DEBUG|OnDoc| +2026-03-18 09:39:14.6373|DEBUG|OnDoc| +2026-03-18 09:39:14.6373|DEBUG|OnDoc| +2026-03-18 09:39:14.6373|DEBUG|OnDoc| +2026-03-18 09:39:14.6828|DEBUG|OnDoc| +2026-03-18 09:39:14.6858|DEBUG|OnDoc| +2026-03-18 09:39:14.7489|DEBUG|OnDoc| +2026-03-18 09:39:14.7489|DEBUG|OnDoc| +2026-03-18 09:39:14.7859|DEBUG|OnDoc| +2026-03-18 09:39:14.7859|DEBUG|OnDoc| +2026-03-18 09:39:14.7859|DEBUG|OnDoc| +2026-03-18 09:39:14.7859|DEBUG|OnDoc| +2026-03-18 09:39:14.8185|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 09:39:14.8185|DEBUG|OnDoc| +2026-03-18 09:39:14.8311|DEBUG|OnDoc| +2026-03-18 09:39:14.8311|DEBUG|OnDoc| +2026-03-18 09:39:14.8311|DEBUG|OnDoc| +2026-03-18 09:39:14.8405|DEBUG|OnDoc| +2026-03-18 09:39:14.8405|DEBUG|OnDoc| +2026-03-18 09:39:14.8405|DEBUG|OnDoc| +2026-03-18 09:39:14.8589|DEBUG|OnDoc| +2026-03-18 09:39:14.8589|DEBUG|OnDoc|Generate_Word +2026-03-18 09:39:15.3644|DEBUG|OnDoc|Word2013 +2026-03-18 09:39:15.3755|DEBUG|OnDoc|Word2013 +2026-03-18 09:39:55.2318|DEBUG|OnDoc|Generate_Word +2026-03-18 09:39:55.3063|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015428 +2026-03-18 09:39:55.3063|INFO|DocLog|Dokument über API erstellt +2026-03-18 09:39:55.3103|INFO|APIDocLog|Dokument return to sender +2026-03-18 09:39:55.3103|DEBUG|OnDoc| +2026-03-18 09:39:55.3103|DEBUG|OnDoc| +2026-03-18 09:39:55.3103|DEBUG|OnDoc| +2026-03-18 09:39:55.3103|DEBUG|OnDoc| +2026-03-18 09:39:55.3103|DEBUG|OnDoc| +2026-03-18 09:39:55.3103|DEBUG|OnDoc| +2026-03-18 09:40:05.5111|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 09:40:05.6100|INFO|APIDocLog|Start CreateDoc +2026-03-18 09:40:05.6417|INFO|APIDocLog|Input JSON +2026-03-18 09:40:05.6417|DEBUG|OnDoc|Start GenDoc +2026-03-18 09:40:05.6417|DEBUG|OnDoc| +2026-03-18 09:40:05.6417|DEBUG|OnDoc| +2026-03-18 09:40:05.6417|DEBUG|OnDoc| +2026-03-18 09:40:05.6417|DEBUG|OnDoc| +2026-03-18 09:40:05.6417|DEBUG|OnDoc| +2026-03-18 09:40:05.6417|DEBUG|OnDoc| +2026-03-18 09:40:05.6417|DEBUG|OnDoc| +2026-03-18 09:40:05.6417|DEBUG|OnDoc| +2026-03-18 09:40:05.6417|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6531|DEBUG|OnDoc| +2026-03-18 09:40:05.6687|DEBUG|OnDoc| +2026-03-18 09:40:05.6687|DEBUG|OnDoc| +2026-03-18 09:40:05.6687|DEBUG|OnDoc| +2026-03-18 09:40:05.6687|DEBUG|OnDoc| +2026-03-18 09:40:05.6687|DEBUG|OnDoc| +2026-03-18 09:40:05.6687|DEBUG|OnDoc| +2026-03-18 09:40:05.6864|DEBUG|OnDoc| +2026-03-18 09:40:05.6864|DEBUG|OnDoc| +2026-03-18 09:40:05.7190|DEBUG|OnDoc| +2026-03-18 09:40:05.7190|DEBUG|OnDoc| +2026-03-18 09:40:05.7326|DEBUG|OnDoc| +2026-03-18 09:40:05.7326|DEBUG|OnDoc| +2026-03-18 09:40:05.7326|DEBUG|OnDoc| +2026-03-18 09:40:05.7326|DEBUG|OnDoc| +2026-03-18 09:40:05.7576|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 09:40:05.7576|DEBUG|OnDoc| +2026-03-18 09:40:05.7661|DEBUG|OnDoc| +2026-03-18 09:40:05.7661|DEBUG|OnDoc| +2026-03-18 09:40:05.7661|DEBUG|OnDoc| +2026-03-18 09:40:05.7787|DEBUG|OnDoc| +2026-03-18 09:40:05.7787|DEBUG|OnDoc| +2026-03-18 09:40:05.7787|DEBUG|OnDoc| +2026-03-18 09:40:05.8008|DEBUG|OnDoc| +2026-03-18 09:40:05.8008|DEBUG|OnDoc|Generate_Word +2026-03-18 09:40:05.8203|DEBUG|OnDoc|Word2013 +2026-03-18 09:40:05.8203|DEBUG|OnDoc|Word2013 +2026-03-18 09:41:43.2594|DEBUG|OnDoc|Generate_Word +2026-03-18 09:41:43.2960|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015433 +2026-03-18 09:41:43.2960|INFO|DocLog|Dokument über API erstellt +2026-03-18 09:41:43.2960|INFO|APIDocLog|Dokument return to sender +2026-03-18 09:41:43.2960|DEBUG|OnDoc| +2026-03-18 09:41:43.2960|DEBUG|OnDoc| +2026-03-18 09:41:43.2960|DEBUG|OnDoc| +2026-03-18 09:41:43.2960|DEBUG|OnDoc| +2026-03-18 09:41:43.2960|DEBUG|OnDoc| +2026-03-18 09:41:43.2960|DEBUG|OnDoc| +2026-03-18 09:44:37.6888|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 09:44:37.7793|INFO|APIDocLog|Start CreateDoc +2026-03-18 09:44:37.8104|INFO|APIDocLog|Input JSON +2026-03-18 09:44:37.8104|DEBUG|OnDoc|Start GenDoc +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8104|DEBUG|OnDoc| +2026-03-18 09:44:37.8248|DEBUG|OnDoc| +2026-03-18 09:44:37.8248|DEBUG|OnDoc| +2026-03-18 09:44:37.8248|DEBUG|OnDoc| +2026-03-18 09:44:37.8248|DEBUG|OnDoc| +2026-03-18 09:44:37.8248|DEBUG|OnDoc| +2026-03-18 09:44:37.8476|DEBUG|OnDoc| +2026-03-18 09:44:37.8476|DEBUG|OnDoc| +2026-03-18 09:44:37.8804|DEBUG|OnDoc| +2026-03-18 09:44:37.8804|DEBUG|OnDoc| +2026-03-18 09:44:37.8901|DEBUG|OnDoc| +2026-03-18 09:44:37.8901|DEBUG|OnDoc| +2026-03-18 09:44:37.8901|DEBUG|OnDoc| +2026-03-18 09:44:37.8901|DEBUG|OnDoc| +2026-03-18 09:44:37.9146|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 09:44:37.9146|DEBUG|OnDoc| +2026-03-18 09:44:37.9207|DEBUG|OnDoc| +2026-03-18 09:44:37.9207|DEBUG|OnDoc| +2026-03-18 09:44:37.9207|DEBUG|OnDoc| +2026-03-18 09:44:37.9207|DEBUG|OnDoc| +2026-03-18 09:44:37.9207|DEBUG|OnDoc| +2026-03-18 09:44:37.9207|DEBUG|OnDoc| +2026-03-18 09:44:37.9207|DEBUG|OnDoc| +2026-03-18 09:44:37.9207|DEBUG|OnDoc|Generate_Word +2026-03-18 09:44:37.9432|DEBUG|OnDoc|Word2013 +2026-03-18 09:44:37.9432|DEBUG|OnDoc|Word2013 +2026-03-18 09:44:52.5671|DEBUG|OnDoc|Generate_Word +2026-03-18 09:44:52.6067|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015449 +2026-03-18 09:44:52.6067|INFO|DocLog|Dokument über API erstellt +2026-03-18 09:44:52.6067|INFO|APIDocLog|Dokument return to sender +2026-03-18 09:44:52.6067|DEBUG|OnDoc| +2026-03-18 09:44:52.6067|DEBUG|OnDoc| +2026-03-18 09:44:52.6067|DEBUG|OnDoc| +2026-03-18 09:44:52.6225|DEBUG|OnDoc| +2026-03-18 09:44:52.6225|DEBUG|OnDoc| +2026-03-18 09:44:52.6225|DEBUG|OnDoc| +2026-03-18 09:54:56.0351|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 09:54:56.1601|INFO|APIDocLog|Start CreateDoc +2026-03-18 09:54:56.2059|INFO|APIDocLog|Input JSON +2026-03-18 09:54:56.2059|DEBUG|OnDoc|Start GenDoc +2026-03-18 09:54:56.2059|DEBUG|OnDoc| +2026-03-18 09:54:56.2059|DEBUG|OnDoc| +2026-03-18 09:54:56.2059|DEBUG|OnDoc| +2026-03-18 09:54:56.2059|DEBUG|OnDoc| +2026-03-18 09:54:56.2059|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2159|DEBUG|OnDoc| +2026-03-18 09:54:56.2309|DEBUG|OnDoc| +2026-03-18 09:54:56.2309|DEBUG|OnDoc| +2026-03-18 09:54:56.2309|DEBUG|OnDoc| +2026-03-18 09:54:56.2309|DEBUG|OnDoc| +2026-03-18 09:54:56.2309|DEBUG|OnDoc| +2026-03-18 09:54:56.2309|DEBUG|OnDoc| +2026-03-18 09:54:56.2309|DEBUG|OnDoc| +2026-03-18 09:54:56.2309|DEBUG|OnDoc| +2026-03-18 09:54:56.2554|DEBUG|OnDoc| +2026-03-18 09:54:56.2554|DEBUG|OnDoc| +2026-03-18 09:54:56.3005|DEBUG|OnDoc| +2026-03-18 09:54:56.3005|DEBUG|OnDoc| +2026-03-18 09:54:56.3124|DEBUG|OnDoc| +2026-03-18 09:54:56.3124|DEBUG|OnDoc| +2026-03-18 09:54:56.3124|DEBUG|OnDoc| +2026-03-18 09:54:56.3124|DEBUG|OnDoc| +2026-03-18 09:54:56.3451|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 09:54:56.3451|DEBUG|OnDoc| +2026-03-18 09:54:56.3451|DEBUG|OnDoc| +2026-03-18 09:54:56.3559|DEBUG|OnDoc| +2026-03-18 09:54:56.3559|DEBUG|OnDoc| +2026-03-18 09:54:56.3559|DEBUG|OnDoc| +2026-03-18 09:54:56.3559|DEBUG|OnDoc| +2026-03-18 09:54:56.3559|DEBUG|OnDoc| +2026-03-18 09:54:56.3559|DEBUG|OnDoc| +2026-03-18 09:54:56.3559|DEBUG|OnDoc|Generate_Word +2026-03-18 09:54:56.3825|DEBUG|OnDoc|Word2013 +2026-03-18 09:54:56.3825|DEBUG|OnDoc|Word2013 +2026-03-18 09:55:07.0530|DEBUG|OnDoc|Generate_Word +2026-03-18 09:55:07.0923|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015457 +2026-03-18 09:55:07.0923|INFO|DocLog|Dokument über API erstellt +2026-03-18 09:55:07.0923|INFO|APIDocLog|Dokument return to sender +2026-03-18 09:55:07.0923|DEBUG|OnDoc| +2026-03-18 09:55:07.0923|DEBUG|OnDoc| +2026-03-18 09:55:07.0923|DEBUG|OnDoc| +2026-03-18 09:55:07.1059|DEBUG|OnDoc| +2026-03-18 09:55:07.1059|DEBUG|OnDoc| +2026-03-18 09:55:07.1059|DEBUG|OnDoc| +2026-03-18 09:56:32.7718|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 09:56:32.8777|INFO|APIDocLog|Start CreateDoc +2026-03-18 09:56:32.9245|INFO|APIDocLog|Input JSON +2026-03-18 09:56:32.9245|DEBUG|OnDoc|Start GenDoc +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9245|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9345|DEBUG|OnDoc| +2026-03-18 09:56:32.9621|DEBUG|OnDoc| +2026-03-18 09:56:32.9651|DEBUG|OnDoc| +2026-03-18 09:56:33.0079|DEBUG|OnDoc| +2026-03-18 09:56:33.0079|DEBUG|OnDoc| +2026-03-18 09:56:33.0169|DEBUG|OnDoc| +2026-03-18 09:56:33.0169|DEBUG|OnDoc| +2026-03-18 09:56:33.0169|DEBUG|OnDoc| +2026-03-18 09:56:33.0169|DEBUG|OnDoc| +2026-03-18 09:56:33.0499|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 09:56:33.0499|DEBUG|OnDoc| +2026-03-18 09:56:33.0499|DEBUG|OnDoc| +2026-03-18 09:56:33.0499|DEBUG|OnDoc| +2026-03-18 09:56:33.0499|DEBUG|OnDoc| +2026-03-18 09:56:33.0499|DEBUG|OnDoc| +2026-03-18 09:56:33.0628|DEBUG|OnDoc| +2026-03-18 09:56:33.0628|DEBUG|OnDoc| +2026-03-18 09:56:33.0628|DEBUG|OnDoc| +2026-03-18 09:56:33.0628|DEBUG|OnDoc|Generate_Word +2026-03-18 09:56:33.0628|DEBUG|OnDoc|Word2013 +2026-03-18 09:56:33.0763|DEBUG|OnDoc|Word2013 +2026-03-18 10:07:27.2037|DEBUG|OnDoc|Generate_Word +2026-03-18 10:07:27.2490|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015465 +2026-03-18 10:07:27.2490|INFO|DocLog|Dokument über API erstellt +2026-03-18 10:07:27.2490|INFO|APIDocLog|Dokument return to sender +2026-03-18 10:07:27.2490|DEBUG|OnDoc| +2026-03-18 10:07:27.2490|DEBUG|OnDoc| +2026-03-18 10:07:27.2490|DEBUG|OnDoc| +2026-03-18 10:07:27.2490|DEBUG|OnDoc| +2026-03-18 10:07:27.2490|DEBUG|OnDoc| +2026-03-18 10:07:27.2490|DEBUG|OnDoc| +2026-03-18 10:07:37.9938|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 10:07:38.0910|INFO|APIDocLog|Start CreateDoc +2026-03-18 10:07:38.1577|INFO|APIDocLog|Input JSON +2026-03-18 10:07:38.1577|DEBUG|OnDoc|Start GenDoc +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1577|DEBUG|OnDoc| +2026-03-18 10:07:38.1697|DEBUG|OnDoc| +2026-03-18 10:07:38.1697|DEBUG|OnDoc| +2026-03-18 10:07:38.1697|DEBUG|OnDoc| +2026-03-18 10:07:38.1697|DEBUG|OnDoc| +2026-03-18 10:07:38.1697|DEBUG|OnDoc| +2026-03-18 10:07:38.1697|DEBUG|OnDoc| +2026-03-18 10:07:38.1697|DEBUG|OnDoc| +2026-03-18 10:07:38.1697|DEBUG|OnDoc| +2026-03-18 10:07:38.1697|DEBUG|OnDoc| +2026-03-18 10:07:38.1697|DEBUG|OnDoc| +2026-03-18 10:07:38.1697|DEBUG|OnDoc| +2026-03-18 10:07:38.1697|DEBUG|OnDoc| +2026-03-18 10:07:38.1697|DEBUG|OnDoc| +2026-03-18 10:07:38.1697|DEBUG|OnDoc| +2026-03-18 10:07:38.1888|DEBUG|OnDoc| +2026-03-18 10:07:38.1888|DEBUG|OnDoc| +2026-03-18 10:07:38.2445|DEBUG|OnDoc| +2026-03-18 10:07:38.2470|DEBUG|OnDoc| +2026-03-18 10:07:38.2470|DEBUG|OnDoc| +2026-03-18 10:07:38.2470|DEBUG|OnDoc| +2026-03-18 10:07:38.2470|DEBUG|OnDoc| +2026-03-18 10:07:38.2470|DEBUG|OnDoc| +2026-03-18 10:07:38.3038|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 10:07:38.3038|DEBUG|OnDoc| +2026-03-18 10:07:38.3138|DEBUG|OnDoc| +2026-03-18 10:07:38.3138|DEBUG|OnDoc| +2026-03-18 10:07:38.3138|DEBUG|OnDoc| +2026-03-18 10:07:38.3138|DEBUG|OnDoc| +2026-03-18 10:07:38.3138|DEBUG|OnDoc| +2026-03-18 10:07:38.3138|DEBUG|OnDoc| +2026-03-18 10:07:38.3276|DEBUG|OnDoc| +2026-03-18 10:07:38.3276|DEBUG|OnDoc|Generate_Word +2026-03-18 10:07:38.3276|DEBUG|OnDoc|Word2013 +2026-03-18 10:07:38.3276|DEBUG|OnDoc|Word2013 +2026-03-18 10:07:45.6490|DEBUG|OnDoc|Generate_Word +2026-03-18 10:07:45.6876|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015470 +2026-03-18 10:07:45.6876|INFO|DocLog|Dokument über API erstellt +2026-03-18 10:07:45.6876|INFO|APIDocLog|Dokument return to sender +2026-03-18 10:07:45.6876|DEBUG|OnDoc| +2026-03-18 10:07:45.7022|DEBUG|OnDoc| +2026-03-18 10:07:45.7022|DEBUG|OnDoc| +2026-03-18 10:07:45.7022|DEBUG|OnDoc| +2026-03-18 10:07:45.7022|DEBUG|OnDoc| +2026-03-18 10:07:45.7022|DEBUG|OnDoc| +2026-03-18 10:08:29.6346|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 10:08:29.7678|INFO|APIDocLog|Start CreateDoc +2026-03-18 10:08:29.8272|INFO|APIDocLog|Input JSON +2026-03-18 10:08:29.8272|DEBUG|OnDoc|Start GenDoc +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8272|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8403|DEBUG|OnDoc| +2026-03-18 10:08:29.8696|DEBUG|OnDoc| +2026-03-18 10:08:29.8721|DEBUG|OnDoc| +2026-03-18 10:08:29.9265|DEBUG|OnDoc| +2026-03-18 10:08:29.9265|DEBUG|OnDoc| +2026-03-18 10:08:29.9393|DEBUG|OnDoc| +2026-03-18 10:08:29.9393|DEBUG|OnDoc| +2026-03-18 10:08:29.9393|DEBUG|OnDoc| +2026-03-18 10:08:29.9393|DEBUG|OnDoc| +2026-03-18 10:08:29.9865|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 10:08:29.9865|DEBUG|OnDoc| +2026-03-18 10:08:29.9865|DEBUG|OnDoc| +2026-03-18 10:08:29.9865|DEBUG|OnDoc| +2026-03-18 10:08:29.9865|DEBUG|OnDoc| +2026-03-18 10:08:29.9865|DEBUG|OnDoc| +2026-03-18 10:08:29.9997|DEBUG|OnDoc| +2026-03-18 10:08:29.9997|DEBUG|OnDoc| +2026-03-18 10:08:29.9997|DEBUG|OnDoc| +2026-03-18 10:08:29.9997|DEBUG|OnDoc|Generate_Word +2026-03-18 10:08:30.0139|DEBUG|OnDoc|Word2013 +2026-03-18 10:08:30.0139|DEBUG|OnDoc|Word2013 +2026-03-18 10:09:32.4199|DEBUG|OnDoc|Generate_Word +2026-03-18 10:09:32.4570|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015481 +2026-03-18 10:09:32.4570|INFO|DocLog|Dokument über API erstellt +2026-03-18 10:09:32.4570|INFO|APIDocLog|Dokument return to sender +2026-03-18 10:09:32.4570|DEBUG|OnDoc| +2026-03-18 10:09:32.4570|DEBUG|OnDoc| +2026-03-18 10:09:32.4570|DEBUG|OnDoc| +2026-03-18 10:09:32.4570|DEBUG|OnDoc| +2026-03-18 10:09:32.4570|DEBUG|OnDoc| +2026-03-18 10:09:32.4570|DEBUG|OnDoc| +2026-03-18 10:09:45.9484|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 10:09:46.0858|INFO|APIDocLog|Start CreateDoc +2026-03-18 10:09:46.1497|INFO|APIDocLog|Input JSON +2026-03-18 10:09:46.1497|DEBUG|OnDoc|Start GenDoc +2026-03-18 10:09:46.1497|DEBUG|OnDoc| +2026-03-18 10:09:46.1497|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1532|DEBUG|OnDoc| +2026-03-18 10:09:46.1769|DEBUG|OnDoc| +2026-03-18 10:09:46.1769|DEBUG|OnDoc| +2026-03-18 10:09:46.2401|DEBUG|OnDoc| +2026-03-18 10:09:46.2401|DEBUG|OnDoc| +2026-03-18 10:09:46.2501|DEBUG|OnDoc| +2026-03-18 10:09:46.2501|DEBUG|OnDoc| +2026-03-18 10:09:46.2501|DEBUG|OnDoc| +2026-03-18 10:09:46.2501|DEBUG|OnDoc| +2026-03-18 10:09:46.3016|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 10:09:46.3016|DEBUG|OnDoc| +2026-03-18 10:09:46.3016|DEBUG|OnDoc| +2026-03-18 10:09:46.3016|DEBUG|OnDoc| +2026-03-18 10:09:46.3097|DEBUG|OnDoc| +2026-03-18 10:09:46.3097|DEBUG|OnDoc| +2026-03-18 10:09:46.3097|DEBUG|OnDoc| +2026-03-18 10:09:46.3097|DEBUG|OnDoc| +2026-03-18 10:09:46.3097|DEBUG|OnDoc| +2026-03-18 10:09:46.3097|DEBUG|OnDoc|Generate_Word +2026-03-18 10:09:46.3271|DEBUG|OnDoc|Word2013 +2026-03-18 10:09:46.3271|DEBUG|OnDoc|Word2013 +2026-03-18 10:10:49.8909|DEBUG|OnDoc|Generate_Word +2026-03-18 10:10:49.9281|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015496 +2026-03-18 10:10:49.9281|INFO|DocLog|Dokument über API erstellt +2026-03-18 10:10:49.9281|INFO|APIDocLog|Dokument return to sender +2026-03-18 10:10:49.9281|DEBUG|OnDoc| +2026-03-18 10:10:49.9341|DEBUG|OnDoc| +2026-03-18 10:10:49.9341|DEBUG|OnDoc| +2026-03-18 10:10:49.9341|DEBUG|OnDoc| +2026-03-18 10:10:49.9341|DEBUG|OnDoc| +2026-03-18 10:10:49.9341|DEBUG|OnDoc| +2026-03-18 11:35:13.1221|DEBUG|OnDoc| +2026-03-18 11:35:13.2319|DEBUG|OnDoc| +2026-03-18 11:35:13.2319|DEBUG|OnDoc| +2026-03-18 11:35:13.2319|DEBUG|OnDoc| +2026-03-18 11:45:38.2358|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 11:45:38.4588|INFO|APIDocLog|Start CreateDoc +2026-03-18 11:45:38.5418|INFO|APIDocLog|Input JSON +2026-03-18 11:45:38.5612|DEBUG|OnDoc|Start GenDoc +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5612|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5749|DEBUG|OnDoc| +2026-03-18 11:45:38.5903|DEBUG|OnDoc| +2026-03-18 11:45:38.5903|DEBUG|OnDoc| +2026-03-18 11:45:38.5903|DEBUG|OnDoc| +2026-03-18 11:45:38.6232|DEBUG|OnDoc| +2026-03-18 11:45:38.6232|DEBUG|OnDoc| +2026-03-18 11:45:38.6689|DEBUG|OnDoc| +2026-03-18 11:45:38.6689|DEBUG|OnDoc| +2026-03-18 11:45:38.6951|DEBUG|OnDoc| +2026-03-18 11:45:38.6951|DEBUG|OnDoc| +2026-03-18 11:45:38.6951|DEBUG|OnDoc| +2026-03-18 11:45:38.6951|DEBUG|OnDoc| +2026-03-18 11:45:38.7153|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 11:45:38.7153|DEBUG|OnDoc| +2026-03-18 11:45:38.7153|DEBUG|OnDoc| +2026-03-18 11:45:38.7153|DEBUG|OnDoc| +2026-03-18 11:45:38.7153|DEBUG|OnDoc| +2026-03-18 11:45:38.7153|DEBUG|OnDoc| +2026-03-18 11:45:38.7351|DEBUG|OnDoc| +2026-03-18 11:45:38.7351|DEBUG|OnDoc| +2026-03-18 11:45:38.7351|DEBUG|OnDoc| +2026-03-18 11:45:38.7351|DEBUG|OnDoc|Generate_Word +2026-03-18 11:45:40.3382|DEBUG|OnDoc|Word2013 +2026-03-18 11:45:40.3473|DEBUG|OnDoc|Word2013 +2026-03-18 11:45:50.3304|DEBUG|OnDoc|Generate_Word +2026-03-18 11:45:50.3798|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015508 +2026-03-18 11:45:50.3798|INFO|DocLog|Dokument über API erstellt +2026-03-18 11:45:50.3798|INFO|APIDocLog|Dokument return to sender +2026-03-18 11:45:50.3798|DEBUG|OnDoc| +2026-03-18 11:45:50.3892|DEBUG|OnDoc| +2026-03-18 11:45:50.3892|DEBUG|OnDoc| +2026-03-18 11:45:50.3892|DEBUG|OnDoc| +2026-03-18 11:45:50.3892|DEBUG|OnDoc| +2026-03-18 11:45:50.3892|DEBUG|OnDoc| +2026-03-18 11:46:38.0514|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 11:46:38.1186|INFO|APIDocLog|Start CreateDoc +2026-03-18 11:46:38.1366|INFO|APIDocLog|Input JSON +2026-03-18 11:46:38.1388|DEBUG|OnDoc|Start GenDoc +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1388|DEBUG|OnDoc| +2026-03-18 11:46:38.1745|DEBUG|OnDoc| +2026-03-18 11:46:38.1745|DEBUG|OnDoc| +2026-03-18 11:46:38.1945|DEBUG|OnDoc| +2026-03-18 11:46:38.1945|DEBUG|OnDoc| +2026-03-18 11:46:38.2061|DEBUG|OnDoc| +2026-03-18 11:46:38.2061|DEBUG|OnDoc| +2026-03-18 11:46:38.2061|DEBUG|OnDoc| +2026-03-18 11:46:38.2061|DEBUG|OnDoc| +2026-03-18 11:46:38.2161|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 11:46:38.2161|DEBUG|OnDoc| +2026-03-18 11:46:38.2161|DEBUG|OnDoc| +2026-03-18 11:46:38.2161|DEBUG|OnDoc| +2026-03-18 11:46:38.2161|DEBUG|OnDoc| +2026-03-18 11:46:38.2161|DEBUG|OnDoc| +2026-03-18 11:46:38.2161|DEBUG|OnDoc| +2026-03-18 11:46:38.2161|DEBUG|OnDoc| +2026-03-18 11:46:38.2336|DEBUG|OnDoc| +2026-03-18 11:46:38.2336|DEBUG|OnDoc|Generate_Word +2026-03-18 11:46:38.2336|DEBUG|OnDoc|Word2013 +2026-03-18 11:46:38.2336|DEBUG|OnDoc|Word2013 +2026-03-18 11:48:31.0195|DEBUG|OnDoc|Generate_Word +2026-03-18 11:48:31.0566|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015513 +2026-03-18 11:48:31.0566|INFO|DocLog|Dokument über API erstellt +2026-03-18 11:48:31.0566|INFO|APIDocLog|Dokument return to sender +2026-03-18 11:48:31.0566|DEBUG|OnDoc| +2026-03-18 11:48:31.0612|DEBUG|OnDoc| +2026-03-18 11:48:31.0612|DEBUG|OnDoc| +2026-03-18 11:48:31.0612|DEBUG|OnDoc| +2026-03-18 11:48:31.0612|DEBUG|OnDoc| +2026-03-18 11:48:31.0612|DEBUG|OnDoc| +2026-03-18 11:48:44.0322|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 11:48:44.1100|INFO|APIDocLog|Start CreateDoc +2026-03-18 11:48:44.1362|INFO|APIDocLog|Input JSON +2026-03-18 11:48:44.1377|DEBUG|OnDoc|Start GenDoc +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1377|DEBUG|OnDoc| +2026-03-18 11:48:44.1602|DEBUG|OnDoc| +2026-03-18 11:48:44.1602|DEBUG|OnDoc| +2026-03-18 11:48:44.1875|DEBUG|OnDoc| +2026-03-18 11:48:44.1875|DEBUG|OnDoc| +2026-03-18 11:48:44.1875|DEBUG|OnDoc| +2026-03-18 11:48:44.1875|DEBUG|OnDoc| +2026-03-18 11:48:44.1875|DEBUG|OnDoc| +2026-03-18 11:48:44.1875|DEBUG|OnDoc| +2026-03-18 11:48:44.2161|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 11:48:44.2161|DEBUG|OnDoc| +2026-03-18 11:48:44.2161|DEBUG|OnDoc| +2026-03-18 11:48:44.2161|DEBUG|OnDoc| +2026-03-18 11:48:44.2161|DEBUG|OnDoc| +2026-03-18 11:48:44.2161|DEBUG|OnDoc| +2026-03-18 11:48:44.2161|DEBUG|OnDoc| +2026-03-18 11:48:44.2161|DEBUG|OnDoc| +2026-03-18 11:48:44.2161|DEBUG|OnDoc| +2026-03-18 11:48:44.2161|DEBUG|OnDoc|Generate_Word +2026-03-18 11:48:44.2373|DEBUG|OnDoc|Word2013 +2026-03-18 11:48:44.2373|DEBUG|OnDoc|Word2013 +2026-03-18 11:48:44.9349|DEBUG|OnDoc|Generate_Word +2026-03-18 11:48:44.9349|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015529 +2026-03-18 11:48:44.9494|INFO|DocLog|Dokument über API erstellt +2026-03-18 11:48:44.9494|INFO|APIDocLog|Dokument return to sender +2026-03-18 11:48:44.9494|DEBUG|OnDoc| +2026-03-18 11:48:44.9494|DEBUG|OnDoc| +2026-03-18 11:48:44.9494|DEBUG|OnDoc| +2026-03-18 11:48:44.9494|DEBUG|OnDoc| +2026-03-18 11:48:44.9494|DEBUG|OnDoc| +2026-03-18 11:48:44.9494|DEBUG|OnDoc| +2026-03-18 11:55:46.4292|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 11:55:46.5309|INFO|APIDocLog|Start CreateDoc +2026-03-18 11:55:46.5621|INFO|APIDocLog|Input JSON +2026-03-18 11:55:46.5621|DEBUG|OnDoc|Start GenDoc +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5621|DEBUG|OnDoc| +2026-03-18 11:55:46.5754|DEBUG|OnDoc| +2026-03-18 11:55:46.5754|DEBUG|OnDoc| +2026-03-18 11:55:46.5754|DEBUG|OnDoc| +2026-03-18 11:55:46.5754|DEBUG|OnDoc| +2026-03-18 11:55:46.5754|DEBUG|OnDoc| +2026-03-18 11:55:46.5754|DEBUG|OnDoc| +2026-03-18 11:55:46.5754|DEBUG|OnDoc| +2026-03-18 11:55:46.5754|DEBUG|OnDoc| +2026-03-18 11:55:46.5754|DEBUG|OnDoc| +2026-03-18 11:55:46.5754|DEBUG|OnDoc| +2026-03-18 11:55:46.5754|DEBUG|OnDoc| +2026-03-18 11:55:46.5754|DEBUG|OnDoc| +2026-03-18 11:55:46.5754|DEBUG|OnDoc| +2026-03-18 11:55:46.6012|DEBUG|OnDoc| +2026-03-18 11:55:46.6012|DEBUG|OnDoc| +2026-03-18 11:55:46.6363|DEBUG|OnDoc| +2026-03-18 11:55:46.6363|DEBUG|OnDoc| +2026-03-18 11:55:46.6469|DEBUG|OnDoc| +2026-03-18 11:55:46.6469|DEBUG|OnDoc| +2026-03-18 11:55:46.6469|DEBUG|OnDoc| +2026-03-18 11:55:46.6469|DEBUG|OnDoc| +2026-03-18 11:55:46.6726|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 11:55:46.6726|DEBUG|OnDoc| +2026-03-18 11:55:46.6726|DEBUG|OnDoc| +2026-03-18 11:55:46.6726|DEBUG|OnDoc| +2026-03-18 11:55:46.6726|DEBUG|OnDoc| +2026-03-18 11:55:46.6726|DEBUG|OnDoc| +2026-03-18 11:55:46.6856|DEBUG|OnDoc| +2026-03-18 11:55:46.6856|DEBUG|OnDoc| +2026-03-18 11:55:46.6856|DEBUG|OnDoc| +2026-03-18 11:55:46.6856|DEBUG|OnDoc|Generate_Word +2026-03-18 11:55:46.7024|DEBUG|OnDoc|Word2013 +2026-03-18 11:55:46.7024|DEBUG|OnDoc|Word2013 +2026-03-18 11:55:47.5608|DEBUG|OnDoc|Generate_Word +2026-03-18 11:55:47.5608|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015537 +2026-03-18 11:55:47.5608|INFO|DocLog|Dokument über API erstellt +2026-03-18 11:55:47.5608|INFO|APIDocLog|Dokument return to sender +2026-03-18 11:55:47.5608|DEBUG|OnDoc| +2026-03-18 11:55:47.5763|DEBUG|OnDoc| +2026-03-18 11:55:47.5763|DEBUG|OnDoc| +2026-03-18 11:55:47.5763|DEBUG|OnDoc| +2026-03-18 11:55:47.5763|DEBUG|OnDoc| +2026-03-18 11:55:47.5763|DEBUG|OnDoc| +2026-03-18 12:28:05.6206|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 12:28:05.7286|INFO|APIDocLog|Start CreateDoc +2026-03-18 12:28:05.7683|INFO|APIDocLog|Input JSON +2026-03-18 12:28:05.7683|DEBUG|OnDoc|Start GenDoc +2026-03-18 12:28:05.7683|DEBUG|OnDoc| +2026-03-18 12:28:05.7683|DEBUG|OnDoc| +2026-03-18 12:28:05.7683|DEBUG|OnDoc| +2026-03-18 12:28:05.7683|DEBUG|OnDoc| +2026-03-18 12:28:05.7683|DEBUG|OnDoc| +2026-03-18 12:28:05.7683|DEBUG|OnDoc| +2026-03-18 12:28:05.7683|DEBUG|OnDoc| +2026-03-18 12:28:05.7683|DEBUG|OnDoc| +2026-03-18 12:28:05.7683|DEBUG|OnDoc| +2026-03-18 12:28:05.7683|DEBUG|OnDoc| +2026-03-18 12:28:05.7683|DEBUG|OnDoc| +2026-03-18 12:28:05.7683|DEBUG|OnDoc| +2026-03-18 12:28:05.7683|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.7784|DEBUG|OnDoc| +2026-03-18 12:28:05.8088|DEBUG|OnDoc| +2026-03-18 12:28:05.8088|DEBUG|OnDoc| +2026-03-18 12:28:05.8509|DEBUG|OnDoc| +2026-03-18 12:28:05.8509|DEBUG|OnDoc| +2026-03-18 12:28:05.8624|DEBUG|OnDoc| +2026-03-18 12:28:05.8624|DEBUG|OnDoc| +2026-03-18 12:28:05.8624|DEBUG|OnDoc| +2026-03-18 12:28:05.8624|DEBUG|OnDoc| +2026-03-18 12:28:05.8949|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 12:28:05.8949|DEBUG|OnDoc| +2026-03-18 12:28:05.9069|DEBUG|OnDoc| +2026-03-18 12:28:05.9069|DEBUG|OnDoc| +2026-03-18 12:28:05.9069|DEBUG|OnDoc| +2026-03-18 12:28:05.9069|DEBUG|OnDoc| +2026-03-18 12:28:05.9200|DEBUG|OnDoc| +2026-03-18 12:28:05.9200|DEBUG|OnDoc| +2026-03-18 12:28:05.9200|DEBUG|OnDoc| +2026-03-18 12:28:05.9200|DEBUG|OnDoc|Generate_Word +2026-03-18 12:28:05.9401|DEBUG|OnDoc|Word2013 +2026-03-18 12:28:05.9401|DEBUG|OnDoc|Word2013 +2026-03-18 12:28:06.8720|DEBUG|OnDoc|Generate_Word +2026-03-18 12:28:06.8720|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015545 +2026-03-18 12:28:06.8720|INFO|DocLog|Dokument über API erstellt +2026-03-18 12:28:06.8720|INFO|APIDocLog|Dokument return to sender +2026-03-18 12:28:06.8720|DEBUG|OnDoc| +2026-03-18 12:28:06.8913|DEBUG|OnDoc| +2026-03-18 12:28:06.8913|DEBUG|OnDoc| +2026-03-18 12:28:06.8913|DEBUG|OnDoc| +2026-03-18 12:28:06.8913|DEBUG|OnDoc| +2026-03-18 12:28:06.8913|DEBUG|OnDoc| +2026-03-18 12:28:46.6948|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 12:28:46.8092|INFO|APIDocLog|Start CreateDoc +2026-03-18 12:28:46.8606|INFO|APIDocLog|Input JSON +2026-03-18 12:28:46.8606|DEBUG|OnDoc|Start GenDoc +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8606|DEBUG|OnDoc| +2026-03-18 12:28:46.8721|DEBUG|OnDoc| +2026-03-18 12:28:46.8721|DEBUG|OnDoc| +2026-03-18 12:28:46.8721|DEBUG|OnDoc| +2026-03-18 12:28:46.8721|DEBUG|OnDoc| +2026-03-18 12:28:46.8721|DEBUG|OnDoc| +2026-03-18 12:28:46.8721|DEBUG|OnDoc| +2026-03-18 12:28:46.8721|DEBUG|OnDoc| +2026-03-18 12:28:46.8721|DEBUG|OnDoc| +2026-03-18 12:28:46.8721|DEBUG|OnDoc| +2026-03-18 12:28:46.8973|DEBUG|OnDoc| +2026-03-18 12:28:46.8973|DEBUG|OnDoc| +2026-03-18 12:28:46.9489|DEBUG|OnDoc| +2026-03-18 12:28:46.9509|DEBUG|OnDoc| +2026-03-18 12:28:46.9509|DEBUG|OnDoc| +2026-03-18 12:28:46.9509|DEBUG|OnDoc| +2026-03-18 12:28:46.9509|DEBUG|OnDoc| +2026-03-18 12:28:46.9509|DEBUG|OnDoc| +2026-03-18 12:28:46.9985|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 12:28:46.9985|DEBUG|OnDoc| +2026-03-18 12:28:46.9985|DEBUG|OnDoc| +2026-03-18 12:28:46.9985|DEBUG|OnDoc| +2026-03-18 12:28:46.9985|DEBUG|OnDoc| +2026-03-18 12:28:46.9985|DEBUG|OnDoc| +2026-03-18 12:28:47.0127|DEBUG|OnDoc| +2026-03-18 12:28:47.0127|DEBUG|OnDoc| +2026-03-18 12:28:47.0127|DEBUG|OnDoc| +2026-03-18 12:28:47.0127|DEBUG|OnDoc|Generate_Word +2026-03-18 12:28:47.0297|DEBUG|OnDoc|Word2013 +2026-03-18 12:28:47.0297|DEBUG|OnDoc|Word2013 +2026-03-18 12:28:48.0525|DEBUG|OnDoc|Generate_Word +2026-03-18 12:28:48.0635|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015550 +2026-03-18 12:28:48.0635|INFO|DocLog|Dokument über API erstellt +2026-03-18 12:28:48.0635|INFO|APIDocLog|Dokument return to sender +2026-03-18 12:28:48.0771|DEBUG|OnDoc| +2026-03-18 12:28:48.0771|DEBUG|OnDoc| +2026-03-18 12:28:48.0771|DEBUG|OnDoc| +2026-03-18 12:28:48.0771|DEBUG|OnDoc| +2026-03-18 12:28:48.0771|DEBUG|OnDoc| +2026-03-18 12:28:48.0771|DEBUG|OnDoc| +2026-03-18 12:53:56.0166|DEBUG|OnDoc| +2026-03-18 12:53:56.1097|DEBUG|OnDoc| +2026-03-18 12:53:56.1097|DEBUG|OnDoc| +2026-03-18 12:53:56.1097|DEBUG|OnDoc| +2026-03-18 12:53:56.4305|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 12:53:56.6991|INFO|APIDocLog|Start CreateDoc +2026-03-18 12:53:56.7982|INFO|APIDocLog|Input JSON +2026-03-18 12:53:56.8296|DEBUG|OnDoc|Start GenDoc +2026-03-18 12:53:56.8296|DEBUG|OnDoc| +2026-03-18 12:53:56.8296|DEBUG|OnDoc| +2026-03-18 12:53:56.8296|DEBUG|OnDoc| +2026-03-18 12:53:56.8296|DEBUG|OnDoc| +2026-03-18 12:53:56.8296|DEBUG|OnDoc| +2026-03-18 12:53:56.8296|DEBUG|OnDoc| +2026-03-18 12:53:56.8296|DEBUG|OnDoc| +2026-03-18 12:53:56.8296|DEBUG|OnDoc| +2026-03-18 12:53:56.8296|DEBUG|OnDoc| +2026-03-18 12:53:56.8296|DEBUG|OnDoc| +2026-03-18 12:53:56.8296|DEBUG|OnDoc| +2026-03-18 12:53:56.8408|DEBUG|OnDoc| +2026-03-18 12:53:56.8408|DEBUG|OnDoc| +2026-03-18 12:53:56.8408|DEBUG|OnDoc| +2026-03-18 12:53:56.8408|DEBUG|OnDoc| +2026-03-18 12:53:56.8408|DEBUG|OnDoc| +2026-03-18 12:53:56.8408|DEBUG|OnDoc| +2026-03-18 12:53:56.8408|DEBUG|OnDoc| +2026-03-18 12:53:56.8408|DEBUG|OnDoc| +2026-03-18 12:53:56.8408|DEBUG|OnDoc| +2026-03-18 12:53:56.8598|DEBUG|OnDoc| +2026-03-18 12:53:56.8598|DEBUG|OnDoc| +2026-03-18 12:53:56.8598|DEBUG|OnDoc| +2026-03-18 12:53:56.8598|DEBUG|OnDoc| +2026-03-18 12:53:56.8598|DEBUG|OnDoc| +2026-03-18 12:53:56.8598|DEBUG|OnDoc| +2026-03-18 12:53:56.8598|DEBUG|OnDoc| +2026-03-18 12:53:56.8598|DEBUG|OnDoc| +2026-03-18 12:53:56.8598|DEBUG|OnDoc| +2026-03-18 12:53:56.8598|DEBUG|OnDoc| +2026-03-18 12:53:56.8598|DEBUG|OnDoc| +2026-03-18 12:53:56.8598|DEBUG|OnDoc| +2026-03-18 12:53:56.8756|DEBUG|OnDoc| +2026-03-18 12:53:56.8756|DEBUG|OnDoc| +2026-03-18 12:53:56.9112|DEBUG|OnDoc| +2026-03-18 12:53:56.9112|DEBUG|OnDoc| +2026-03-18 12:53:56.9697|DEBUG|OnDoc| +2026-03-18 12:53:56.9697|DEBUG|OnDoc| +2026-03-18 12:53:57.0097|DEBUG|OnDoc| +2026-03-18 12:53:57.0123|DEBUG|OnDoc| +2026-03-18 12:53:57.0123|DEBUG|OnDoc| +2026-03-18 12:53:57.0123|DEBUG|OnDoc| +2026-03-18 12:53:57.0460|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 12:53:57.0460|DEBUG|OnDoc| +2026-03-18 12:53:57.0624|DEBUG|OnDoc| +2026-03-18 12:53:57.0624|DEBUG|OnDoc| +2026-03-18 12:53:57.0624|DEBUG|OnDoc| +2026-03-18 12:53:57.0624|DEBUG|OnDoc| +2026-03-18 12:53:57.0786|DEBUG|OnDoc| +2026-03-18 12:53:57.0786|DEBUG|OnDoc| +2026-03-18 12:53:57.0786|DEBUG|OnDoc| +2026-03-18 12:53:57.0786|DEBUG|OnDoc|Generate_Word +2026-03-18 12:53:57.5622|DEBUG|OnDoc|Word2013 +2026-03-18 12:53:57.5622|DEBUG|OnDoc|Word2013 +2026-03-18 12:53:59.6532|DEBUG|OnDoc|Generate_Word +2026-03-18 12:53:59.7038|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015561 +2026-03-18 12:53:59.7038|INFO|DocLog|Dokument über API erstellt +2026-03-18 12:53:59.7038|INFO|APIDocLog|Dokument return to sender +2026-03-18 12:53:59.7038|DEBUG|OnDoc| +2026-03-18 12:53:59.7173|DEBUG|OnDoc| +2026-03-18 12:53:59.7173|DEBUG|OnDoc| +2026-03-18 12:53:59.7173|DEBUG|OnDoc| +2026-03-18 12:53:59.7173|DEBUG|OnDoc| +2026-03-18 12:53:59.7173|DEBUG|OnDoc| +2026-03-18 12:54:39.2031|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 12:54:39.2986|INFO|APIDocLog|Start CreateDoc +2026-03-18 12:54:39.3260|INFO|APIDocLog|Input JSON +2026-03-18 12:54:39.3260|DEBUG|OnDoc|Start GenDoc +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3260|DEBUG|OnDoc| +2026-03-18 12:54:39.3401|DEBUG|OnDoc| +2026-03-18 12:54:39.3401|DEBUG|OnDoc| +2026-03-18 12:54:39.3401|DEBUG|OnDoc| +2026-03-18 12:54:39.3401|DEBUG|OnDoc| +2026-03-18 12:54:39.3401|DEBUG|OnDoc| +2026-03-18 12:54:39.3401|DEBUG|OnDoc| +2026-03-18 12:54:39.3401|DEBUG|OnDoc| +2026-03-18 12:54:39.3401|DEBUG|OnDoc| +2026-03-18 12:54:39.3401|DEBUG|OnDoc| +2026-03-18 12:54:39.3401|DEBUG|OnDoc| +2026-03-18 12:54:39.3401|DEBUG|OnDoc| +2026-03-18 12:54:39.3401|DEBUG|OnDoc| +2026-03-18 12:54:39.3401|DEBUG|OnDoc| +2026-03-18 12:54:39.3401|DEBUG|OnDoc| +2026-03-18 12:54:39.3687|DEBUG|OnDoc| +2026-03-18 12:54:39.3687|DEBUG|OnDoc| +2026-03-18 12:54:39.3980|DEBUG|OnDoc| +2026-03-18 12:54:39.3980|DEBUG|OnDoc| +2026-03-18 12:54:39.4117|DEBUG|OnDoc| +2026-03-18 12:54:39.4117|DEBUG|OnDoc| +2026-03-18 12:54:39.4117|DEBUG|OnDoc| +2026-03-18 12:54:39.4117|DEBUG|OnDoc| +2026-03-18 12:54:39.4323|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 12:54:39.4323|DEBUG|OnDoc| +2026-03-18 12:54:39.4418|DEBUG|OnDoc| +2026-03-18 12:54:39.4418|DEBUG|OnDoc| +2026-03-18 12:54:39.4418|DEBUG|OnDoc| +2026-03-18 12:54:39.4418|DEBUG|OnDoc| +2026-03-18 12:54:39.4418|DEBUG|OnDoc| +2026-03-18 12:54:39.4418|DEBUG|OnDoc| +2026-03-18 12:54:39.4542|DEBUG|OnDoc| +2026-03-18 12:54:39.4542|DEBUG|OnDoc|Generate_Word +2026-03-18 12:54:39.4542|DEBUG|OnDoc|Word2013 +2026-03-18 12:54:39.4542|DEBUG|OnDoc|Word2013 +2026-03-18 13:00:19.0676|DEBUG|OnDoc|Generate_Word +2026-03-18 13:00:19.1051|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015576 +2026-03-18 13:00:19.1061|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:00:19.1061|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:00:19.1061|DEBUG|OnDoc| +2026-03-18 13:00:19.1061|DEBUG|OnDoc| +2026-03-18 13:00:19.1061|DEBUG|OnDoc| +2026-03-18 13:00:19.1061|DEBUG|OnDoc| +2026-03-18 13:00:19.1061|DEBUG|OnDoc| +2026-03-18 13:00:19.1061|DEBUG|OnDoc| +2026-03-18 13:00:33.3042|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:00:33.4367|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:00:33.4905|INFO|APIDocLog|Input JSON +2026-03-18 13:00:33.4905|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:00:33.4905|DEBUG|OnDoc| +2026-03-18 13:00:33.4905|DEBUG|OnDoc| +2026-03-18 13:00:33.4905|DEBUG|OnDoc| +2026-03-18 13:00:33.4905|DEBUG|OnDoc| +2026-03-18 13:00:33.4905|DEBUG|OnDoc| +2026-03-18 13:00:33.4905|DEBUG|OnDoc| +2026-03-18 13:00:33.4905|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.4964|DEBUG|OnDoc| +2026-03-18 13:00:33.5238|DEBUG|OnDoc| +2026-03-18 13:00:33.5238|DEBUG|OnDoc| +2026-03-18 13:00:33.5736|DEBUG|OnDoc| +2026-03-18 13:00:33.5756|DEBUG|OnDoc| +2026-03-18 13:00:33.5756|DEBUG|OnDoc| +2026-03-18 13:00:33.5756|DEBUG|OnDoc| +2026-03-18 13:00:33.5756|DEBUG|OnDoc| +2026-03-18 13:00:33.5908|DEBUG|OnDoc| +2026-03-18 13:00:33.6286|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:00:33.6286|DEBUG|OnDoc| +2026-03-18 13:00:33.6286|DEBUG|OnDoc| +2026-03-18 13:00:33.6286|DEBUG|OnDoc| +2026-03-18 13:00:33.6286|DEBUG|OnDoc| +2026-03-18 13:00:33.6286|DEBUG|OnDoc| +2026-03-18 13:00:33.6424|DEBUG|OnDoc| +2026-03-18 13:00:33.6424|DEBUG|OnDoc| +2026-03-18 13:00:33.6424|DEBUG|OnDoc| +2026-03-18 13:00:33.6424|DEBUG|OnDoc|Generate_Word +2026-03-18 13:00:33.6568|DEBUG|OnDoc|Word2013 +2026-03-18 13:00:33.6568|DEBUG|OnDoc|Word2013 +2026-03-18 13:00:35.0192|DEBUG|OnDoc|Generate_Word +2026-03-18 13:00:35.0317|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015584 +2026-03-18 13:00:35.0317|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:00:35.0317|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:00:35.0317|DEBUG|OnDoc| +2026-03-18 13:00:35.0317|DEBUG|OnDoc| +2026-03-18 13:00:35.0317|DEBUG|OnDoc| +2026-03-18 13:00:35.0317|DEBUG|OnDoc| +2026-03-18 13:00:35.0432|DEBUG|OnDoc| +2026-03-18 13:00:35.0432|DEBUG|OnDoc| +2026-03-18 13:00:54.0212|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:00:54.1051|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:00:54.1333|INFO|APIDocLog|Input JSON +2026-03-18 13:00:54.1369|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1369|DEBUG|OnDoc| +2026-03-18 13:00:54.1544|DEBUG|OnDoc| +2026-03-18 13:00:54.1544|DEBUG|OnDoc| +2026-03-18 13:00:54.1544|DEBUG|OnDoc| +2026-03-18 13:00:54.1544|DEBUG|OnDoc| +2026-03-18 13:00:54.1544|DEBUG|OnDoc| +2026-03-18 13:00:54.1544|DEBUG|OnDoc| +2026-03-18 13:00:54.1544|DEBUG|OnDoc| +2026-03-18 13:00:54.1544|DEBUG|OnDoc| +2026-03-18 13:00:54.1544|DEBUG|OnDoc| +2026-03-18 13:00:54.1694|DEBUG|OnDoc| +2026-03-18 13:00:54.1694|DEBUG|OnDoc| +2026-03-18 13:00:54.1694|DEBUG|OnDoc| +2026-03-18 13:00:54.1694|DEBUG|OnDoc| +2026-03-18 13:00:54.1694|DEBUG|OnDoc| +2026-03-18 13:00:54.1848|DEBUG|OnDoc| +2026-03-18 13:00:54.1848|DEBUG|OnDoc| +2026-03-18 13:00:54.2166|DEBUG|OnDoc| +2026-03-18 13:00:54.2166|DEBUG|OnDoc| +2026-03-18 13:00:54.2329|DEBUG|OnDoc| +2026-03-18 13:00:54.2329|DEBUG|OnDoc| +2026-03-18 13:00:54.2329|DEBUG|OnDoc| +2026-03-18 13:00:54.2329|DEBUG|OnDoc| +2026-03-18 13:00:54.2574|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:00:54.2574|DEBUG|OnDoc| +2026-03-18 13:00:54.2760|DEBUG|OnDoc| +2026-03-18 13:00:54.2786|DEBUG|OnDoc| +2026-03-18 13:00:54.2786|DEBUG|OnDoc| +2026-03-18 13:00:54.2786|DEBUG|OnDoc| +2026-03-18 13:00:54.2985|DEBUG|OnDoc| +2026-03-18 13:00:54.2985|DEBUG|OnDoc| +2026-03-18 13:00:54.2985|DEBUG|OnDoc| +2026-03-18 13:00:54.2985|DEBUG|OnDoc|Generate_Word +2026-03-18 13:00:54.3179|DEBUG|OnDoc|Word2013 +2026-03-18 13:00:54.3179|DEBUG|OnDoc|Word2013 +2026-03-18 13:08:38.4673|DEBUG|OnDoc| +2026-03-18 13:08:38.5304|DEBUG|OnDoc| +2026-03-18 13:08:38.5304|DEBUG|OnDoc| +2026-03-18 13:08:38.5304|DEBUG|OnDoc| +2026-03-18 13:08:53.4410|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:08:53.6642|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:08:53.7504|INFO|APIDocLog|Input JSON +2026-03-18 13:08:53.7715|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:08:53.7715|DEBUG|OnDoc| +2026-03-18 13:08:53.7715|DEBUG|OnDoc| +2026-03-18 13:08:53.7715|DEBUG|OnDoc| +2026-03-18 13:08:53.7715|DEBUG|OnDoc| +2026-03-18 13:08:53.7715|DEBUG|OnDoc| +2026-03-18 13:08:53.7715|DEBUG|OnDoc| +2026-03-18 13:08:53.7715|DEBUG|OnDoc| +2026-03-18 13:08:53.7785|DEBUG|OnDoc| +2026-03-18 13:08:53.7785|DEBUG|OnDoc| +2026-03-18 13:08:53.7785|DEBUG|OnDoc| +2026-03-18 13:08:53.7785|DEBUG|OnDoc| +2026-03-18 13:08:53.7785|DEBUG|OnDoc| +2026-03-18 13:08:53.7785|DEBUG|OnDoc| +2026-03-18 13:08:53.7785|DEBUG|OnDoc| +2026-03-18 13:08:53.7785|DEBUG|OnDoc| +2026-03-18 13:08:53.7785|DEBUG|OnDoc| +2026-03-18 13:08:53.7785|DEBUG|OnDoc| +2026-03-18 13:08:53.7785|DEBUG|OnDoc| +2026-03-18 13:08:53.7785|DEBUG|OnDoc| +2026-03-18 13:08:53.7785|DEBUG|OnDoc| +2026-03-18 13:08:53.7996|DEBUG|OnDoc| +2026-03-18 13:08:53.7996|DEBUG|OnDoc| +2026-03-18 13:08:53.7996|DEBUG|OnDoc| +2026-03-18 13:08:53.7996|DEBUG|OnDoc| +2026-03-18 13:08:53.7996|DEBUG|OnDoc| +2026-03-18 13:08:53.7996|DEBUG|OnDoc| +2026-03-18 13:08:53.7996|DEBUG|OnDoc| +2026-03-18 13:08:53.7996|DEBUG|OnDoc| +2026-03-18 13:08:53.7996|DEBUG|OnDoc| +2026-03-18 13:08:53.7996|DEBUG|OnDoc| +2026-03-18 13:08:53.7996|DEBUG|OnDoc| +2026-03-18 13:08:53.7996|DEBUG|OnDoc| +2026-03-18 13:08:53.8095|DEBUG|OnDoc| +2026-03-18 13:08:53.8095|DEBUG|OnDoc| +2026-03-18 13:08:53.8270|DEBUG|OnDoc| +2026-03-18 13:08:53.8270|DEBUG|OnDoc| +2026-03-18 13:08:53.8734|DEBUG|OnDoc| +2026-03-18 13:08:53.8734|DEBUG|OnDoc| +2026-03-18 13:08:53.9047|DEBUG|OnDoc| +2026-03-18 13:08:53.9047|DEBUG|OnDoc| +2026-03-18 13:08:53.9047|DEBUG|OnDoc| +2026-03-18 13:08:53.9047|DEBUG|OnDoc| +2026-03-18 13:08:53.9249|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:08:53.9249|DEBUG|OnDoc| +2026-03-18 13:08:53.9368|DEBUG|OnDoc| +2026-03-18 13:08:53.9368|DEBUG|OnDoc| +2026-03-18 13:08:53.9368|DEBUG|OnDoc| +2026-03-18 13:08:53.9368|DEBUG|OnDoc| +2026-03-18 13:08:53.9368|DEBUG|OnDoc| +2026-03-18 13:08:53.9368|DEBUG|OnDoc| +2026-03-18 13:08:53.9506|DEBUG|OnDoc| +2026-03-18 13:08:53.9506|DEBUG|OnDoc|Generate_Word +2026-03-18 13:08:54.3592|DEBUG|OnDoc|Word2013 +2026-03-18 13:08:54.3592|DEBUG|OnDoc|Word2013 +2026-03-18 13:08:56.4996|DEBUG|OnDoc|Generate_Word +2026-03-18 13:08:56.5449|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015600 +2026-03-18 13:08:56.5449|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:08:56.5449|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:08:56.5449|DEBUG|OnDoc| +2026-03-18 13:08:56.5449|DEBUG|OnDoc| +2026-03-18 13:08:56.5449|DEBUG|OnDoc| +2026-03-18 13:08:56.5594|DEBUG|OnDoc| +2026-03-18 13:08:56.5594|DEBUG|OnDoc| +2026-03-18 13:08:56.5594|DEBUG|OnDoc| +2026-03-18 13:09:18.0086|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:09:18.0763|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:09:18.0968|INFO|APIDocLog|Input JSON +2026-03-18 13:09:18.0968|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:09:18.0968|DEBUG|OnDoc| +2026-03-18 13:09:18.0968|DEBUG|OnDoc| +2026-03-18 13:09:18.0968|DEBUG|OnDoc| +2026-03-18 13:09:18.0968|DEBUG|OnDoc| +2026-03-18 13:09:18.0968|DEBUG|OnDoc| +2026-03-18 13:09:18.0968|DEBUG|OnDoc| +2026-03-18 13:09:18.0968|DEBUG|OnDoc| +2026-03-18 13:09:18.0968|DEBUG|OnDoc| +2026-03-18 13:09:18.0968|DEBUG|OnDoc| +2026-03-18 13:09:18.0968|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1061|DEBUG|OnDoc| +2026-03-18 13:09:18.1279|DEBUG|OnDoc| +2026-03-18 13:09:18.1279|DEBUG|OnDoc| +2026-03-18 13:09:18.1483|DEBUG|OnDoc| +2026-03-18 13:09:18.1483|DEBUG|OnDoc| +2026-03-18 13:09:18.1611|DEBUG|OnDoc| +2026-03-18 13:09:18.1611|DEBUG|OnDoc| +2026-03-18 13:09:18.1611|DEBUG|OnDoc| +2026-03-18 13:09:18.1611|DEBUG|OnDoc| +2026-03-18 13:09:18.1737|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:09:18.1737|DEBUG|OnDoc| +2026-03-18 13:09:18.1737|DEBUG|OnDoc| +2026-03-18 13:09:18.1737|DEBUG|OnDoc| +2026-03-18 13:09:18.1737|DEBUG|OnDoc| +2026-03-18 13:09:18.1737|DEBUG|OnDoc| +2026-03-18 13:09:18.1862|DEBUG|OnDoc| +2026-03-18 13:09:18.1862|DEBUG|OnDoc| +2026-03-18 13:09:18.1862|DEBUG|OnDoc| +2026-03-18 13:09:18.1862|DEBUG|OnDoc|Generate_Word +2026-03-18 13:09:18.1862|DEBUG|OnDoc|Word2013 +2026-03-18 13:09:18.2012|DEBUG|OnDoc|Word2013 +2026-03-18 13:10:34.6629|DEBUG|OnDoc|Generate_Word +2026-03-18 13:10:34.6995|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015611 +2026-03-18 13:10:34.6995|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:10:34.6995|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:10:34.6995|DEBUG|OnDoc| +2026-03-18 13:10:34.6995|DEBUG|OnDoc| +2026-03-18 13:10:34.6995|DEBUG|OnDoc| +2026-03-18 13:10:34.6995|DEBUG|OnDoc| +2026-03-18 13:10:34.6995|DEBUG|OnDoc| +2026-03-18 13:10:34.6995|DEBUG|OnDoc| +2026-03-18 13:10:37.6987|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:10:37.7777|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:10:37.8260|INFO|APIDocLog|Input JSON +2026-03-18 13:10:37.8260|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8260|DEBUG|OnDoc| +2026-03-18 13:10:37.8408|DEBUG|OnDoc| +2026-03-18 13:10:37.8408|DEBUG|OnDoc| +2026-03-18 13:10:37.8408|DEBUG|OnDoc| +2026-03-18 13:10:37.8408|DEBUG|OnDoc| +2026-03-18 13:10:37.8408|DEBUG|OnDoc| +2026-03-18 13:10:37.8408|DEBUG|OnDoc| +2026-03-18 13:10:37.8408|DEBUG|OnDoc| +2026-03-18 13:10:37.8408|DEBUG|OnDoc| +2026-03-18 13:10:37.8408|DEBUG|OnDoc| +2026-03-18 13:10:37.8598|DEBUG|OnDoc| +2026-03-18 13:10:37.8598|DEBUG|OnDoc| +2026-03-18 13:10:37.9070|DEBUG|OnDoc| +2026-03-18 13:10:37.9070|DEBUG|OnDoc| +2026-03-18 13:10:37.9070|DEBUG|OnDoc| +2026-03-18 13:10:37.9070|DEBUG|OnDoc| +2026-03-18 13:10:37.9070|DEBUG|OnDoc| +2026-03-18 13:10:37.9070|DEBUG|OnDoc| +2026-03-18 13:10:37.9510|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:10:37.9510|DEBUG|OnDoc| +2026-03-18 13:10:37.9510|DEBUG|OnDoc| +2026-03-18 13:10:37.9510|DEBUG|OnDoc| +2026-03-18 13:10:37.9510|DEBUG|OnDoc| +2026-03-18 13:10:37.9510|DEBUG|OnDoc| +2026-03-18 13:10:37.9510|DEBUG|OnDoc| +2026-03-18 13:10:37.9510|DEBUG|OnDoc| +2026-03-18 13:10:37.9655|DEBUG|OnDoc| +2026-03-18 13:10:37.9655|DEBUG|OnDoc|Generate_Word +2026-03-18 13:10:37.9655|DEBUG|OnDoc|Word2013 +2026-03-18 13:10:37.9655|DEBUG|OnDoc|Word2013 +2026-03-18 13:11:08.9874|DEBUG|OnDoc| +2026-03-18 13:11:09.0774|DEBUG|OnDoc| +2026-03-18 13:11:09.0774|DEBUG|OnDoc| +2026-03-18 13:11:09.0774|DEBUG|OnDoc| +2026-03-18 13:11:16.8781|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:11:17.1071|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:11:17.1946|INFO|APIDocLog|Input JSON +2026-03-18 13:11:17.2167|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:11:17.2167|DEBUG|OnDoc| +2026-03-18 13:11:17.2167|DEBUG|OnDoc| +2026-03-18 13:11:17.2167|DEBUG|OnDoc| +2026-03-18 13:11:17.2167|DEBUG|OnDoc| +2026-03-18 13:11:17.2167|DEBUG|OnDoc| +2026-03-18 13:11:17.2167|DEBUG|OnDoc| +2026-03-18 13:11:17.2167|DEBUG|OnDoc| +2026-03-18 13:11:17.2167|DEBUG|OnDoc| +2026-03-18 13:11:17.2167|DEBUG|OnDoc| +2026-03-18 13:11:17.2167|DEBUG|OnDoc| +2026-03-18 13:11:17.2167|DEBUG|OnDoc| +2026-03-18 13:11:17.2167|DEBUG|OnDoc| +2026-03-18 13:11:17.2167|DEBUG|OnDoc| +2026-03-18 13:11:17.2167|DEBUG|OnDoc| +2026-03-18 13:11:17.2340|DEBUG|OnDoc| +2026-03-18 13:11:17.2340|DEBUG|OnDoc| +2026-03-18 13:11:17.2340|DEBUG|OnDoc| +2026-03-18 13:11:17.2340|DEBUG|OnDoc| +2026-03-18 13:11:17.2340|DEBUG|OnDoc| +2026-03-18 13:11:17.2340|DEBUG|OnDoc| +2026-03-18 13:11:17.2467|DEBUG|OnDoc| +2026-03-18 13:11:17.2467|DEBUG|OnDoc| +2026-03-18 13:11:17.2467|DEBUG|OnDoc| +2026-03-18 13:11:17.2467|DEBUG|OnDoc| +2026-03-18 13:11:17.2467|DEBUG|OnDoc| +2026-03-18 13:11:17.2467|DEBUG|OnDoc| +2026-03-18 13:11:17.2467|DEBUG|OnDoc| +2026-03-18 13:11:17.2467|DEBUG|OnDoc| +2026-03-18 13:11:17.2467|DEBUG|OnDoc| +2026-03-18 13:11:17.2467|DEBUG|OnDoc| +2026-03-18 13:11:17.2467|DEBUG|OnDoc| +2026-03-18 13:11:17.2467|DEBUG|OnDoc| +2026-03-18 13:11:17.2467|DEBUG|OnDoc| +2026-03-18 13:11:17.2467|DEBUG|OnDoc| +2026-03-18 13:11:17.2794|DEBUG|OnDoc| +2026-03-18 13:11:17.2794|DEBUG|OnDoc| +2026-03-18 13:11:17.3279|DEBUG|OnDoc| +2026-03-18 13:11:17.3279|DEBUG|OnDoc| +2026-03-18 13:11:17.3550|DEBUG|OnDoc| +2026-03-18 13:11:17.3560|DEBUG|OnDoc| +2026-03-18 13:11:17.3560|DEBUG|OnDoc| +2026-03-18 13:11:17.3560|DEBUG|OnDoc| +2026-03-18 13:11:17.3750|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:11:17.3750|DEBUG|OnDoc| +2026-03-18 13:11:17.3750|DEBUG|OnDoc| +2026-03-18 13:11:17.3750|DEBUG|OnDoc| +2026-03-18 13:11:17.3750|DEBUG|OnDoc| +2026-03-18 13:11:17.3750|DEBUG|OnDoc| +2026-03-18 13:11:17.3931|DEBUG|OnDoc| +2026-03-18 13:11:17.3931|DEBUG|OnDoc| +2026-03-18 13:11:17.3931|DEBUG|OnDoc| +2026-03-18 13:11:17.3931|DEBUG|OnDoc|Generate_Word +2026-03-18 13:11:17.8170|DEBUG|OnDoc|Word2013 +2026-03-18 13:11:17.8261|DEBUG|OnDoc|Word2013 +2026-03-18 13:12:05.6288|DEBUG|OnDoc| +2026-03-18 13:12:05.7208|DEBUG|OnDoc| +2026-03-18 13:12:05.7208|DEBUG|OnDoc| +2026-03-18 13:12:05.7208|DEBUG|OnDoc| +2026-03-18 13:12:23.7395|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:12:23.9343|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:12:24.0237|INFO|APIDocLog|Input JSON +2026-03-18 13:12:24.0458|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0458|DEBUG|OnDoc| +2026-03-18 13:12:24.0611|DEBUG|OnDoc| +2026-03-18 13:12:24.0611|DEBUG|OnDoc| +2026-03-18 13:12:24.0611|DEBUG|OnDoc| +2026-03-18 13:12:24.0611|DEBUG|OnDoc| +2026-03-18 13:12:24.0611|DEBUG|OnDoc| +2026-03-18 13:12:24.0611|DEBUG|OnDoc| +2026-03-18 13:12:24.0611|DEBUG|OnDoc| +2026-03-18 13:12:24.0611|DEBUG|OnDoc| +2026-03-18 13:12:24.0611|DEBUG|OnDoc| +2026-03-18 13:12:24.0611|DEBUG|OnDoc| +2026-03-18 13:12:24.0611|DEBUG|OnDoc| +2026-03-18 13:12:24.0611|DEBUG|OnDoc| +2026-03-18 13:12:24.0611|DEBUG|OnDoc| +2026-03-18 13:12:24.0748|DEBUG|OnDoc| +2026-03-18 13:12:24.0748|DEBUG|OnDoc| +2026-03-18 13:12:24.0748|DEBUG|OnDoc| +2026-03-18 13:12:24.0748|DEBUG|OnDoc| +2026-03-18 13:12:24.0748|DEBUG|OnDoc| +2026-03-18 13:12:24.0748|DEBUG|OnDoc| +2026-03-18 13:12:24.1040|DEBUG|OnDoc| +2026-03-18 13:12:24.1067|DEBUG|OnDoc| +2026-03-18 13:12:24.1525|DEBUG|OnDoc| +2026-03-18 13:12:24.1545|DEBUG|OnDoc| +2026-03-18 13:12:24.1769|DEBUG|OnDoc| +2026-03-18 13:12:24.1769|DEBUG|OnDoc| +2026-03-18 13:12:24.1769|DEBUG|OnDoc| +2026-03-18 13:12:24.1769|DEBUG|OnDoc| +2026-03-18 13:12:24.1962|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:12:24.1962|DEBUG|OnDoc| +2026-03-18 13:12:24.2067|DEBUG|OnDoc| +2026-03-18 13:12:24.2067|DEBUG|OnDoc| +2026-03-18 13:12:24.2067|DEBUG|OnDoc| +2026-03-18 13:12:24.2067|DEBUG|OnDoc| +2026-03-18 13:12:24.2152|DEBUG|OnDoc| +2026-03-18 13:12:24.2152|DEBUG|OnDoc| +2026-03-18 13:12:24.2152|DEBUG|OnDoc| +2026-03-18 13:12:24.2152|DEBUG|OnDoc|Generate_Word +2026-03-18 13:12:24.7027|DEBUG|OnDoc|Word2013 +2026-03-18 13:12:24.7027|DEBUG|OnDoc|Word2013 +2026-03-18 13:12:55.2255|DEBUG|OnDoc|Generate_Word +2026-03-18 13:12:55.2995|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015642 +2026-03-18 13:12:55.2995|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:12:55.2995|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:12:55.2995|DEBUG|OnDoc| +2026-03-18 13:12:55.3100|DEBUG|OnDoc| +2026-03-18 13:12:55.3100|DEBUG|OnDoc| +2026-03-18 13:12:55.3100|DEBUG|OnDoc| +2026-03-18 13:12:55.3100|DEBUG|OnDoc| +2026-03-18 13:12:55.3100|DEBUG|OnDoc| +2026-03-18 13:12:55.8729|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:12:55.9277|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:12:55.9559|INFO|APIDocLog|Input JSON +2026-03-18 13:12:55.9559|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:12:55.9559|DEBUG|OnDoc| +2026-03-18 13:12:55.9559|DEBUG|OnDoc| +2026-03-18 13:12:55.9559|DEBUG|OnDoc| +2026-03-18 13:12:55.9559|DEBUG|OnDoc| +2026-03-18 13:12:55.9559|DEBUG|OnDoc| +2026-03-18 13:12:55.9559|DEBUG|OnDoc| +2026-03-18 13:12:55.9559|DEBUG|OnDoc| +2026-03-18 13:12:55.9559|DEBUG|OnDoc| +2026-03-18 13:12:55.9559|DEBUG|OnDoc| +2026-03-18 13:12:55.9559|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:55.9660|DEBUG|OnDoc| +2026-03-18 13:12:56.0039|DEBUG|OnDoc| +2026-03-18 13:12:56.0039|DEBUG|OnDoc| +2026-03-18 13:12:56.0340|DEBUG|OnDoc| +2026-03-18 13:12:56.0340|DEBUG|OnDoc| +2026-03-18 13:12:56.0475|DEBUG|OnDoc| +2026-03-18 13:12:56.0475|DEBUG|OnDoc| +2026-03-18 13:12:56.0475|DEBUG|OnDoc| +2026-03-18 13:12:56.0475|DEBUG|OnDoc| +2026-03-18 13:12:56.0680|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:12:56.0680|DEBUG|OnDoc| +2026-03-18 13:12:56.0759|DEBUG|OnDoc| +2026-03-18 13:12:56.0759|DEBUG|OnDoc| +2026-03-18 13:12:56.0759|DEBUG|OnDoc| +2026-03-18 13:12:56.0759|DEBUG|OnDoc| +2026-03-18 13:12:56.0759|DEBUG|OnDoc| +2026-03-18 13:12:56.0759|DEBUG|OnDoc| +2026-03-18 13:12:56.0759|DEBUG|OnDoc| +2026-03-18 13:12:56.0759|DEBUG|OnDoc|Generate_Word +2026-03-18 13:12:56.0955|DEBUG|OnDoc|Word2013 +2026-03-18 13:12:56.0955|DEBUG|OnDoc|Word2013 +2026-03-18 13:13:25.9528|DEBUG|OnDoc|Generate_Word +2026-03-18 13:13:25.9927|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015658 +2026-03-18 13:13:25.9927|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:13:25.9927|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:13:25.9975|DEBUG|OnDoc| +2026-03-18 13:13:26.0121|DEBUG|OnDoc| +2026-03-18 13:13:26.0121|DEBUG|OnDoc| +2026-03-18 13:13:26.0121|DEBUG|OnDoc| +2026-03-18 13:13:26.0121|DEBUG|OnDoc| +2026-03-18 13:13:26.0121|DEBUG|OnDoc| +2026-03-18 13:14:56.6011|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:14:56.7661|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:14:56.8444|INFO|APIDocLog|Input JSON +2026-03-18 13:14:56.8444|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:14:56.8444|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8559|DEBUG|OnDoc| +2026-03-18 13:14:56.8716|DEBUG|OnDoc| +2026-03-18 13:14:56.8716|DEBUG|OnDoc| +2026-03-18 13:14:56.8716|DEBUG|OnDoc| +2026-03-18 13:14:56.8716|DEBUG|OnDoc| +2026-03-18 13:14:56.8716|DEBUG|OnDoc| +2026-03-18 13:14:56.8716|DEBUG|OnDoc| +2026-03-18 13:14:56.8716|DEBUG|OnDoc| +2026-03-18 13:14:56.8716|DEBUG|OnDoc| +2026-03-18 13:14:56.8716|DEBUG|OnDoc| +2026-03-18 13:14:56.8716|DEBUG|OnDoc| +2026-03-18 13:14:56.8716|DEBUG|OnDoc| +2026-03-18 13:14:56.9018|DEBUG|OnDoc| +2026-03-18 13:14:56.9043|DEBUG|OnDoc| +2026-03-18 13:14:56.9645|DEBUG|OnDoc| +2026-03-18 13:14:56.9675|DEBUG|OnDoc| +2026-03-18 13:14:56.9865|DEBUG|OnDoc| +2026-03-18 13:14:56.9865|DEBUG|OnDoc| +2026-03-18 13:14:56.9865|DEBUG|OnDoc| +2026-03-18 13:14:56.9865|DEBUG|OnDoc| +2026-03-18 13:14:57.0431|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:14:57.0441|DEBUG|OnDoc| +2026-03-18 13:14:57.0441|DEBUG|OnDoc| +2026-03-18 13:14:57.0441|DEBUG|OnDoc| +2026-03-18 13:14:57.0441|DEBUG|OnDoc| +2026-03-18 13:14:57.0596|DEBUG|OnDoc| +2026-03-18 13:14:57.0596|DEBUG|OnDoc| +2026-03-18 13:14:57.0596|DEBUG|OnDoc| +2026-03-18 13:14:57.0596|DEBUG|OnDoc| +2026-03-18 13:14:57.0757|DEBUG|OnDoc|Generate_Word +2026-03-18 13:14:57.0990|DEBUG|OnDoc|Word2013 +2026-03-18 13:14:57.0990|DEBUG|OnDoc|Word2013 +2026-03-18 13:15:07.2921|DEBUG|OnDoc|Generate_Word +2026-03-18 13:15:07.3333|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015663 +2026-03-18 13:15:07.3333|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:15:07.3333|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:15:07.3333|DEBUG|OnDoc| +2026-03-18 13:15:07.3417|DEBUG|OnDoc| +2026-03-18 13:15:07.3417|DEBUG|OnDoc| +2026-03-18 13:15:07.3417|DEBUG|OnDoc| +2026-03-18 13:15:07.3417|DEBUG|OnDoc| +2026-03-18 13:15:07.3417|DEBUG|OnDoc| +2026-03-18 13:15:54.2844|DEBUG|OnDoc| +2026-03-18 13:15:54.3778|DEBUG|OnDoc| +2026-03-18 13:15:54.3778|DEBUG|OnDoc| +2026-03-18 13:15:54.3778|DEBUG|OnDoc| +2026-03-18 13:15:54.7244|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:15:55.0446|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:15:55.1794|INFO|APIDocLog|Input JSON +2026-03-18 13:15:55.2096|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:15:55.2096|DEBUG|OnDoc| +2026-03-18 13:15:55.2167|DEBUG|OnDoc| +2026-03-18 13:15:55.2167|DEBUG|OnDoc| +2026-03-18 13:15:55.2167|DEBUG|OnDoc| +2026-03-18 13:15:55.2167|DEBUG|OnDoc| +2026-03-18 13:15:55.2167|DEBUG|OnDoc| +2026-03-18 13:15:55.2167|DEBUG|OnDoc| +2026-03-18 13:15:55.2167|DEBUG|OnDoc| +2026-03-18 13:15:55.2167|DEBUG|OnDoc| +2026-03-18 13:15:55.2167|DEBUG|OnDoc| +2026-03-18 13:15:55.2167|DEBUG|OnDoc| +2026-03-18 13:15:55.2167|DEBUG|OnDoc| +2026-03-18 13:15:55.2167|DEBUG|OnDoc| +2026-03-18 13:15:55.2322|DEBUG|OnDoc| +2026-03-18 13:15:55.2322|DEBUG|OnDoc| +2026-03-18 13:15:55.2472|DEBUG|OnDoc| +2026-03-18 13:15:55.2472|DEBUG|OnDoc| +2026-03-18 13:15:55.2472|DEBUG|OnDoc| +2026-03-18 13:15:55.2472|DEBUG|OnDoc| +2026-03-18 13:15:55.2472|DEBUG|OnDoc| +2026-03-18 13:15:55.2472|DEBUG|OnDoc| +2026-03-18 13:15:55.2621|DEBUG|OnDoc| +2026-03-18 13:15:55.2621|DEBUG|OnDoc| +2026-03-18 13:15:55.2621|DEBUG|OnDoc| +2026-03-18 13:15:55.2621|DEBUG|OnDoc| +2026-03-18 13:15:55.2621|DEBUG|OnDoc| +2026-03-18 13:15:55.2621|DEBUG|OnDoc| +2026-03-18 13:15:55.2621|DEBUG|OnDoc| +2026-03-18 13:15:55.2621|DEBUG|OnDoc| +2026-03-18 13:15:55.2621|DEBUG|OnDoc| +2026-03-18 13:15:55.2621|DEBUG|OnDoc| +2026-03-18 13:15:55.2621|DEBUG|OnDoc| +2026-03-18 13:15:55.2621|DEBUG|OnDoc| +2026-03-18 13:15:55.2621|DEBUG|OnDoc| +2026-03-18 13:15:55.3077|DEBUG|OnDoc| +2026-03-18 13:15:55.3117|DEBUG|OnDoc| +2026-03-18 13:15:55.3668|DEBUG|OnDoc| +2026-03-18 13:15:55.3720|DEBUG|OnDoc| +2026-03-18 13:15:55.3976|DEBUG|OnDoc| +2026-03-18 13:15:55.4070|DEBUG|OnDoc| +2026-03-18 13:15:55.4070|DEBUG|OnDoc| +2026-03-18 13:15:55.4070|DEBUG|OnDoc| +2026-03-18 13:15:55.4419|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:15:55.4419|DEBUG|OnDoc| +2026-03-18 13:15:55.4537|DEBUG|OnDoc| +2026-03-18 13:15:55.4537|DEBUG|OnDoc| +2026-03-18 13:15:55.4537|DEBUG|OnDoc| +2026-03-18 13:15:55.4537|DEBUG|OnDoc| +2026-03-18 13:15:55.4665|DEBUG|OnDoc| +2026-03-18 13:15:55.4665|DEBUG|OnDoc| +2026-03-18 13:15:55.4665|DEBUG|OnDoc| +2026-03-18 13:15:55.4665|DEBUG|OnDoc|Generate_Word +2026-03-18 13:15:56.0260|DEBUG|OnDoc|Word2013 +2026-03-18 13:15:56.0356|DEBUG|OnDoc|Word2013 +2026-03-18 13:16:05.4631|DEBUG|OnDoc|Generate_Word +2026-03-18 13:16:05.5364|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015679 +2026-03-18 13:16:05.5364|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:16:05.5364|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:16:05.5435|DEBUG|OnDoc| +2026-03-18 13:16:05.5435|DEBUG|OnDoc| +2026-03-18 13:16:05.5435|DEBUG|OnDoc| +2026-03-18 13:16:05.5435|DEBUG|OnDoc| +2026-03-18 13:16:05.5435|DEBUG|OnDoc| +2026-03-18 13:16:05.5435|DEBUG|OnDoc| +2026-03-18 13:16:22.6431|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:16:22.7254|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:16:22.7512|INFO|APIDocLog|Input JSON +2026-03-18 13:16:22.7512|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7512|DEBUG|OnDoc| +2026-03-18 13:16:22.7627|DEBUG|OnDoc| +2026-03-18 13:16:22.7627|DEBUG|OnDoc| +2026-03-18 13:16:22.7627|DEBUG|OnDoc| +2026-03-18 13:16:22.7627|DEBUG|OnDoc| +2026-03-18 13:16:22.7627|DEBUG|OnDoc| +2026-03-18 13:16:22.7627|DEBUG|OnDoc| +2026-03-18 13:16:22.7627|DEBUG|OnDoc| +2026-03-18 13:16:22.7627|DEBUG|OnDoc| +2026-03-18 13:16:22.7627|DEBUG|OnDoc| +2026-03-18 13:16:22.7627|DEBUG|OnDoc| +2026-03-18 13:16:22.7627|DEBUG|OnDoc| +2026-03-18 13:16:22.7627|DEBUG|OnDoc| +2026-03-18 13:16:22.7627|DEBUG|OnDoc| +2026-03-18 13:16:22.7627|DEBUG|OnDoc| +2026-03-18 13:16:22.7904|DEBUG|OnDoc| +2026-03-18 13:16:22.7904|DEBUG|OnDoc| +2026-03-18 13:16:22.8197|DEBUG|OnDoc| +2026-03-18 13:16:22.8197|DEBUG|OnDoc| +2026-03-18 13:16:22.8324|DEBUG|OnDoc| +2026-03-18 13:16:22.8324|DEBUG|OnDoc| +2026-03-18 13:16:22.8324|DEBUG|OnDoc| +2026-03-18 13:16:22.8324|DEBUG|OnDoc| +2026-03-18 13:16:22.8545|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:16:22.8545|DEBUG|OnDoc| +2026-03-18 13:16:22.8595|DEBUG|OnDoc| +2026-03-18 13:16:22.8595|DEBUG|OnDoc| +2026-03-18 13:16:22.8595|DEBUG|OnDoc| +2026-03-18 13:16:22.8595|DEBUG|OnDoc| +2026-03-18 13:16:22.8595|DEBUG|OnDoc| +2026-03-18 13:16:22.8595|DEBUG|OnDoc| +2026-03-18 13:16:22.8595|DEBUG|OnDoc| +2026-03-18 13:16:22.8595|DEBUG|OnDoc|Generate_Word +2026-03-18 13:16:22.8791|DEBUG|OnDoc|Word2013 +2026-03-18 13:16:22.8791|DEBUG|OnDoc|Word2013 +2026-03-18 13:16:32.5021|DEBUG|OnDoc|Generate_Word +2026-03-18 13:16:32.5396|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015687 +2026-03-18 13:16:32.5396|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:16:32.5396|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:16:32.5396|DEBUG|OnDoc| +2026-03-18 13:16:32.5459|DEBUG|OnDoc| +2026-03-18 13:16:32.5459|DEBUG|OnDoc| +2026-03-18 13:16:32.5459|DEBUG|OnDoc| +2026-03-18 13:16:32.5459|DEBUG|OnDoc| +2026-03-18 13:16:32.5459|DEBUG|OnDoc| +2026-03-18 13:17:31.3618|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:17:31.5181|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:17:31.5911|INFO|APIDocLog|Input JSON +2026-03-18 13:17:31.5911|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:17:31.5911|DEBUG|OnDoc| +2026-03-18 13:17:31.5911|DEBUG|OnDoc| +2026-03-18 13:17:31.5911|DEBUG|OnDoc| +2026-03-18 13:17:31.5911|DEBUG|OnDoc| +2026-03-18 13:17:31.5911|DEBUG|OnDoc| +2026-03-18 13:17:31.5911|DEBUG|OnDoc| +2026-03-18 13:17:31.5911|DEBUG|OnDoc| +2026-03-18 13:17:31.5911|DEBUG|OnDoc| +2026-03-18 13:17:31.5911|DEBUG|OnDoc| +2026-03-18 13:17:31.5911|DEBUG|OnDoc| +2026-03-18 13:17:31.5911|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6066|DEBUG|OnDoc| +2026-03-18 13:17:31.6227|DEBUG|OnDoc| +2026-03-18 13:17:31.6227|DEBUG|OnDoc| +2026-03-18 13:17:31.6227|DEBUG|OnDoc| +2026-03-18 13:17:31.6473|DEBUG|OnDoc| +2026-03-18 13:17:31.6473|DEBUG|OnDoc| +2026-03-18 13:17:31.7306|DEBUG|OnDoc| +2026-03-18 13:17:31.7316|DEBUG|OnDoc| +2026-03-18 13:17:31.7316|DEBUG|OnDoc| +2026-03-18 13:17:31.7316|DEBUG|OnDoc| +2026-03-18 13:17:31.7316|DEBUG|OnDoc| +2026-03-18 13:17:31.7316|DEBUG|OnDoc| +2026-03-18 13:17:31.8015|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:17:31.8015|DEBUG|OnDoc| +2026-03-18 13:17:31.8098|DEBUG|OnDoc| +2026-03-18 13:17:31.8098|DEBUG|OnDoc| +2026-03-18 13:17:31.8098|DEBUG|OnDoc| +2026-03-18 13:17:31.8098|DEBUG|OnDoc| +2026-03-18 13:17:31.8098|DEBUG|OnDoc| +2026-03-18 13:17:31.8098|DEBUG|OnDoc| +2026-03-18 13:17:31.8249|DEBUG|OnDoc| +2026-03-18 13:17:31.8249|DEBUG|OnDoc|Generate_Word +2026-03-18 13:17:31.9224|DEBUG|OnDoc|Word2013 +2026-03-18 13:17:31.9224|DEBUG|OnDoc|Word2013 +2026-03-18 13:17:38.5829|DEBUG|OnDoc|Generate_Word +2026-03-18 13:17:38.6229|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015695 +2026-03-18 13:17:38.6229|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:17:38.6229|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:17:38.6229|DEBUG|OnDoc| +2026-03-18 13:17:38.6229|DEBUG|OnDoc| +2026-03-18 13:17:38.6229|DEBUG|OnDoc| +2026-03-18 13:17:38.6229|DEBUG|OnDoc| +2026-03-18 13:17:38.6229|DEBUG|OnDoc| +2026-03-18 13:17:38.6229|DEBUG|OnDoc| +2026-03-18 13:17:59.9622|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:18:00.1739|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:18:00.2687|INFO|APIDocLog|Input JSON +2026-03-18 13:18:00.2802|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2802|DEBUG|OnDoc| +2026-03-18 13:18:00.2939|DEBUG|OnDoc| +2026-03-18 13:18:00.2939|DEBUG|OnDoc| +2026-03-18 13:18:00.2939|DEBUG|OnDoc| +2026-03-18 13:18:00.2939|DEBUG|OnDoc| +2026-03-18 13:18:00.2939|DEBUG|OnDoc| +2026-03-18 13:18:00.2939|DEBUG|OnDoc| +2026-03-18 13:18:00.2939|DEBUG|OnDoc| +2026-03-18 13:18:00.2939|DEBUG|OnDoc| +2026-03-18 13:18:00.2939|DEBUG|OnDoc| +2026-03-18 13:18:00.3102|DEBUG|OnDoc| +2026-03-18 13:18:00.3102|DEBUG|OnDoc| +2026-03-18 13:18:00.4385|DEBUG|OnDoc| +2026-03-18 13:18:00.4385|DEBUG|OnDoc| +2026-03-18 13:18:00.4575|DEBUG|OnDoc| +2026-03-18 13:18:00.4575|DEBUG|OnDoc| +2026-03-18 13:18:00.4575|DEBUG|OnDoc| +2026-03-18 13:18:00.4575|DEBUG|OnDoc| +2026-03-18 13:18:00.5566|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:18:00.5566|DEBUG|OnDoc| +2026-03-18 13:18:00.5677|DEBUG|OnDoc| +2026-03-18 13:18:00.5677|DEBUG|OnDoc| +2026-03-18 13:18:00.5677|DEBUG|OnDoc| +2026-03-18 13:18:00.5677|DEBUG|OnDoc| +2026-03-18 13:18:00.5793|DEBUG|OnDoc| +2026-03-18 13:18:00.5793|DEBUG|OnDoc| +2026-03-18 13:18:00.5793|DEBUG|OnDoc| +2026-03-18 13:18:00.5793|DEBUG|OnDoc|Generate_Word +2026-03-18 13:18:00.6024|DEBUG|OnDoc|Word2013 +2026-03-18 13:18:00.6024|DEBUG|OnDoc|Word2013 +2026-03-18 13:18:07.1042|DEBUG|OnDoc|Generate_Word +2026-03-18 13:18:07.1450|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015705 +2026-03-18 13:18:07.1450|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:18:07.1450|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:18:07.1450|DEBUG|OnDoc| +2026-03-18 13:18:07.1530|DEBUG|OnDoc| +2026-03-18 13:18:07.1530|DEBUG|OnDoc| +2026-03-18 13:18:07.1530|DEBUG|OnDoc| +2026-03-18 13:18:07.1530|DEBUG|OnDoc| +2026-03-18 13:18:07.1530|DEBUG|OnDoc| +2026-03-18 13:22:05.7347|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:22:18.0960|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-03-18 13:22:18.1495|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-03-18 13:22:39.9041|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:22:52.1167|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-03-18 13:22:52.1523|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-03-18 13:23:12.2943|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:23:12.3987|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:23:12.4472|INFO|APIDocLog|Input JSON +2026-03-18 13:23:12.4517|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:23:12.4517|DEBUG|OnDoc| +2026-03-18 13:23:12.4517|DEBUG|OnDoc| +2026-03-18 13:23:12.4517|DEBUG|OnDoc| +2026-03-18 13:23:12.4517|DEBUG|OnDoc| +2026-03-18 13:23:12.4517|DEBUG|OnDoc| +2026-03-18 13:23:12.4517|DEBUG|OnDoc| +2026-03-18 13:23:12.4517|DEBUG|OnDoc| +2026-03-18 13:23:12.4517|DEBUG|OnDoc| +2026-03-18 13:23:12.4517|DEBUG|OnDoc| +2026-03-18 13:23:12.4517|DEBUG|OnDoc| +2026-03-18 13:23:12.4517|DEBUG|OnDoc| +2026-03-18 13:23:12.4517|DEBUG|OnDoc| +2026-03-18 13:23:12.4517|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4656|DEBUG|OnDoc| +2026-03-18 13:23:12.4807|DEBUG|OnDoc| +2026-03-18 13:23:12.4807|DEBUG|OnDoc| +2026-03-18 13:23:12.4807|DEBUG|OnDoc| +2026-03-18 13:23:12.5057|DEBUG|OnDoc| +2026-03-18 13:23:12.5057|DEBUG|OnDoc| +2026-03-18 13:23:12.5530|DEBUG|OnDoc| +2026-03-18 13:23:12.5530|DEBUG|OnDoc| +2026-03-18 13:23:12.5654|DEBUG|OnDoc| +2026-03-18 13:23:12.5654|DEBUG|OnDoc| +2026-03-18 13:23:12.5654|DEBUG|OnDoc| +2026-03-18 13:23:12.5654|DEBUG|OnDoc| +2026-03-18 13:23:12.6010|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:23:12.6010|DEBUG|OnDoc| +2026-03-18 13:23:12.6091|DEBUG|OnDoc| +2026-03-18 13:23:12.6091|DEBUG|OnDoc| +2026-03-18 13:23:12.6091|DEBUG|OnDoc| +2026-03-18 13:23:12.6091|DEBUG|OnDoc| +2026-03-18 13:23:12.6091|DEBUG|OnDoc| +2026-03-18 13:23:12.6091|DEBUG|OnDoc| +2026-03-18 13:23:12.6220|DEBUG|OnDoc| +2026-03-18 13:23:12.6220|DEBUG|OnDoc|Generate_Word +2026-03-18 13:23:12.6220|DEBUG|OnDoc|Word2013 +2026-03-18 13:23:12.6378|DEBUG|OnDoc|Word2013 +2026-03-18 13:23:18.4146|DEBUG|OnDoc|Generate_Word +2026-03-18 13:23:18.4553|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015710 +2026-03-18 13:23:18.4553|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:23:18.4553|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:23:18.4553|DEBUG|OnDoc| +2026-03-18 13:23:18.4669|DEBUG|OnDoc| +2026-03-18 13:23:18.4669|DEBUG|OnDoc| +2026-03-18 13:23:18.4669|DEBUG|OnDoc| +2026-03-18 13:23:18.4669|DEBUG|OnDoc| +2026-03-18 13:23:18.4669|DEBUG|OnDoc| +2026-03-18 13:23:43.6291|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:23:43.7464|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:23:43.7944|INFO|APIDocLog|Input JSON +2026-03-18 13:23:43.7944|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.7944|DEBUG|OnDoc| +2026-03-18 13:23:43.8097|DEBUG|OnDoc| +2026-03-18 13:23:43.8097|DEBUG|OnDoc| +2026-03-18 13:23:43.8097|DEBUG|OnDoc| +2026-03-18 13:23:43.8097|DEBUG|OnDoc| +2026-03-18 13:23:43.8097|DEBUG|OnDoc| +2026-03-18 13:23:43.8097|DEBUG|OnDoc| +2026-03-18 13:23:43.8260|DEBUG|OnDoc| +2026-03-18 13:23:43.8688|DEBUG|OnDoc| +2026-03-18 13:23:43.8688|DEBUG|OnDoc| +2026-03-18 13:23:43.8774|DEBUG|OnDoc| +2026-03-18 13:23:43.8774|DEBUG|OnDoc| +2026-03-18 13:23:43.8774|DEBUG|OnDoc| +2026-03-18 13:23:43.8774|DEBUG|OnDoc| +2026-03-18 13:23:43.9142|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:23:43.9142|DEBUG|OnDoc| +2026-03-18 13:23:43.9215|DEBUG|OnDoc| +2026-03-18 13:23:43.9215|DEBUG|OnDoc| +2026-03-18 13:23:43.9215|DEBUG|OnDoc| +2026-03-18 13:23:43.9215|DEBUG|OnDoc| +2026-03-18 13:23:43.9215|DEBUG|OnDoc| +2026-03-18 13:23:43.9215|DEBUG|OnDoc| +2026-03-18 13:23:43.9215|DEBUG|OnDoc| +2026-03-18 13:23:43.9215|DEBUG|OnDoc|Generate_Word +2026-03-18 13:23:43.9382|DEBUG|OnDoc|Word2013 +2026-03-18 13:23:43.9382|DEBUG|OnDoc|Word2013 +2026-03-18 13:23:48.8270|DEBUG|OnDoc|Generate_Word +2026-03-18 13:23:48.8648|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015721 +2026-03-18 13:23:48.8648|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:23:48.8648|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:23:48.8648|DEBUG|OnDoc| +2026-03-18 13:23:48.8726|DEBUG|OnDoc| +2026-03-18 13:23:48.8726|DEBUG|OnDoc| +2026-03-18 13:23:48.8726|DEBUG|OnDoc| +2026-03-18 13:23:48.8726|DEBUG|OnDoc| +2026-03-18 13:23:48.8726|DEBUG|OnDoc| +2026-03-18 13:24:04.4380|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:24:04.5644|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:24:04.6247|INFO|APIDocLog|Input JSON +2026-03-18 13:24:04.6247|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6247|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6372|DEBUG|OnDoc| +2026-03-18 13:24:04.6585|DEBUG|OnDoc| +2026-03-18 13:24:04.6585|DEBUG|OnDoc| +2026-03-18 13:24:04.7143|DEBUG|OnDoc| +2026-03-18 13:24:04.7153|DEBUG|OnDoc| +2026-03-18 13:24:04.7153|DEBUG|OnDoc| +2026-03-18 13:24:04.7153|DEBUG|OnDoc| +2026-03-18 13:24:04.7153|DEBUG|OnDoc| +2026-03-18 13:24:04.7153|DEBUG|OnDoc| +2026-03-18 13:24:04.7690|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:24:04.7690|DEBUG|OnDoc| +2026-03-18 13:24:04.7690|DEBUG|OnDoc| +2026-03-18 13:24:04.7690|DEBUG|OnDoc| +2026-03-18 13:24:04.7785|DEBUG|OnDoc| +2026-03-18 13:24:04.7785|DEBUG|OnDoc| +2026-03-18 13:24:04.7785|DEBUG|OnDoc| +2026-03-18 13:24:04.7785|DEBUG|OnDoc| +2026-03-18 13:24:04.7785|DEBUG|OnDoc| +2026-03-18 13:24:04.7785|DEBUG|OnDoc|Generate_Word +2026-03-18 13:24:04.8055|DEBUG|OnDoc|Word2013 +2026-03-18 13:24:04.8055|DEBUG|OnDoc|Word2013 +2026-03-18 13:24:10.7032|DEBUG|OnDoc|Generate_Word +2026-03-18 13:24:10.7418|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015736 +2026-03-18 13:24:10.7418|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:24:10.7418|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:24:10.7418|DEBUG|OnDoc| +2026-03-18 13:24:10.7489|DEBUG|OnDoc| +2026-03-18 13:24:10.7489|DEBUG|OnDoc| +2026-03-18 13:24:10.7489|DEBUG|OnDoc| +2026-03-18 13:24:10.7489|DEBUG|OnDoc| +2026-03-18 13:24:10.7489|DEBUG|OnDoc| +2026-03-18 13:24:41.8009|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:24:41.9306|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:24:41.9866|INFO|APIDocLog|Input JSON +2026-03-18 13:24:41.9866|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9866|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:41.9971|DEBUG|OnDoc| +2026-03-18 13:24:42.0141|DEBUG|OnDoc| +2026-03-18 13:24:42.0141|DEBUG|OnDoc| +2026-03-18 13:24:42.0689|DEBUG|OnDoc| +2026-03-18 13:24:42.0689|DEBUG|OnDoc| +2026-03-18 13:24:42.0909|DEBUG|OnDoc| +2026-03-18 13:24:42.0909|DEBUG|OnDoc| +2026-03-18 13:24:42.0909|DEBUG|OnDoc| +2026-03-18 13:24:42.0909|DEBUG|OnDoc| +2026-03-18 13:24:42.1408|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:24:42.1408|DEBUG|OnDoc| +2026-03-18 13:24:42.1408|DEBUG|OnDoc| +2026-03-18 13:24:42.1408|DEBUG|OnDoc| +2026-03-18 13:24:42.1408|DEBUG|OnDoc| +2026-03-18 13:24:42.1408|DEBUG|OnDoc| +2026-03-18 13:24:42.1532|DEBUG|OnDoc| +2026-03-18 13:24:42.1532|DEBUG|OnDoc| +2026-03-18 13:24:42.1532|DEBUG|OnDoc| +2026-03-18 13:24:42.1532|DEBUG|OnDoc|Generate_Word +2026-03-18 13:24:42.1532|DEBUG|OnDoc|Word2013 +2026-03-18 13:24:42.1532|DEBUG|OnDoc|Word2013 +2026-03-18 13:24:47.0498|DEBUG|OnDoc|Generate_Word +2026-03-18 13:24:47.0876|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015744 +2026-03-18 13:24:47.0876|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:24:47.0876|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:24:47.0901|DEBUG|OnDoc| +2026-03-18 13:24:47.0901|DEBUG|OnDoc| +2026-03-18 13:24:47.0901|DEBUG|OnDoc| +2026-03-18 13:24:47.0901|DEBUG|OnDoc| +2026-03-18 13:24:47.0901|DEBUG|OnDoc| +2026-03-18 13:24:47.0901|DEBUG|OnDoc| +2026-03-18 13:25:45.8659|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:25:45.9984|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:25:46.0565|INFO|APIDocLog|Input JSON +2026-03-18 13:25:46.0595|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0595|DEBUG|OnDoc| +2026-03-18 13:25:46.0751|DEBUG|OnDoc| +2026-03-18 13:25:46.0751|DEBUG|OnDoc| +2026-03-18 13:25:46.0751|DEBUG|OnDoc| +2026-03-18 13:25:46.0751|DEBUG|OnDoc| +2026-03-18 13:25:46.0751|DEBUG|OnDoc| +2026-03-18 13:25:46.0751|DEBUG|OnDoc| +2026-03-18 13:25:46.0751|DEBUG|OnDoc| +2026-03-18 13:25:46.0751|DEBUG|OnDoc| +2026-03-18 13:25:46.0751|DEBUG|OnDoc| +2026-03-18 13:25:46.0751|DEBUG|OnDoc| +2026-03-18 13:25:46.1017|DEBUG|OnDoc| +2026-03-18 13:25:46.1017|DEBUG|OnDoc| +2026-03-18 13:25:46.1549|DEBUG|OnDoc| +2026-03-18 13:25:46.1549|DEBUG|OnDoc| +2026-03-18 13:25:46.1683|DEBUG|OnDoc| +2026-03-18 13:25:46.1683|DEBUG|OnDoc| +2026-03-18 13:25:46.1683|DEBUG|OnDoc| +2026-03-18 13:25:46.1683|DEBUG|OnDoc| +2026-03-18 13:25:46.2131|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:25:46.2131|DEBUG|OnDoc| +2026-03-18 13:25:46.2266|DEBUG|OnDoc| +2026-03-18 13:25:46.2266|DEBUG|OnDoc| +2026-03-18 13:25:46.2266|DEBUG|OnDoc| +2026-03-18 13:25:46.2266|DEBUG|OnDoc| +2026-03-18 13:25:46.2371|DEBUG|OnDoc| +2026-03-18 13:25:46.2371|DEBUG|OnDoc| +2026-03-18 13:25:46.2371|DEBUG|OnDoc| +2026-03-18 13:25:46.2371|DEBUG|OnDoc|Generate_Word +2026-03-18 13:25:46.2519|DEBUG|OnDoc|Word2013 +2026-03-18 13:25:46.2519|DEBUG|OnDoc|Word2013 +2026-03-18 13:25:51.4503|DEBUG|OnDoc|Generate_Word +2026-03-18 13:25:51.4934|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015752 +2026-03-18 13:25:51.4934|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:25:51.4964|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:25:51.4964|DEBUG|OnDoc| +2026-03-18 13:25:51.4964|DEBUG|OnDoc| +2026-03-18 13:25:51.4964|DEBUG|OnDoc| +2026-03-18 13:25:51.4964|DEBUG|OnDoc| +2026-03-18 13:25:51.4964|DEBUG|OnDoc| +2026-03-18 13:25:51.5123|DEBUG|OnDoc| +2026-03-18 13:26:36.4531|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:26:36.5712|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:26:36.6247|INFO|APIDocLog|Input JSON +2026-03-18 13:26:36.6247|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6247|DEBUG|OnDoc| +2026-03-18 13:26:36.6375|DEBUG|OnDoc| +2026-03-18 13:26:36.6375|DEBUG|OnDoc| +2026-03-18 13:26:36.6375|DEBUG|OnDoc| +2026-03-18 13:26:36.6375|DEBUG|OnDoc| +2026-03-18 13:26:36.6375|DEBUG|OnDoc| +2026-03-18 13:26:36.6375|DEBUG|OnDoc| +2026-03-18 13:26:36.6375|DEBUG|OnDoc| +2026-03-18 13:26:36.6375|DEBUG|OnDoc| +2026-03-18 13:26:36.6375|DEBUG|OnDoc| +2026-03-18 13:26:36.6375|DEBUG|OnDoc| +2026-03-18 13:26:36.6375|DEBUG|OnDoc| +2026-03-18 13:26:36.6622|DEBUG|OnDoc| +2026-03-18 13:26:36.6622|DEBUG|OnDoc| +2026-03-18 13:26:36.7113|DEBUG|OnDoc| +2026-03-18 13:26:36.7113|DEBUG|OnDoc| +2026-03-18 13:26:36.7193|DEBUG|OnDoc| +2026-03-18 13:26:36.7193|DEBUG|OnDoc| +2026-03-18 13:26:36.7193|DEBUG|OnDoc| +2026-03-18 13:26:36.7193|DEBUG|OnDoc| +2026-03-18 13:26:36.7607|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:26:36.7607|DEBUG|OnDoc| +2026-03-18 13:26:36.7668|DEBUG|OnDoc| +2026-03-18 13:26:36.7668|DEBUG|OnDoc| +2026-03-18 13:26:36.7668|DEBUG|OnDoc| +2026-03-18 13:26:36.7668|DEBUG|OnDoc| +2026-03-18 13:26:36.7668|DEBUG|OnDoc| +2026-03-18 13:26:36.7668|DEBUG|OnDoc| +2026-03-18 13:26:36.7668|DEBUG|OnDoc| +2026-03-18 13:26:36.7783|DEBUG|OnDoc|Generate_Word +2026-03-18 13:26:36.7783|DEBUG|OnDoc|Word2013 +2026-03-18 13:26:36.7783|DEBUG|OnDoc|Word2013 +2026-03-18 13:26:43.3769|DEBUG|OnDoc|Generate_Word +2026-03-18 13:26:43.4144|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015768 +2026-03-18 13:26:43.4144|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:26:43.4144|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:26:43.4144|DEBUG|OnDoc| +2026-03-18 13:26:43.4207|DEBUG|OnDoc| +2026-03-18 13:26:43.4207|DEBUG|OnDoc| +2026-03-18 13:26:43.4207|DEBUG|OnDoc| +2026-03-18 13:26:43.4207|DEBUG|OnDoc| +2026-03-18 13:26:43.4207|DEBUG|OnDoc| +2026-03-18 13:27:01.8633|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:27:02.0432|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:27:02.1511|INFO|APIDocLog|Input JSON +2026-03-18 13:27:02.1637|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:27:02.1637|DEBUG|OnDoc| +2026-03-18 13:27:02.1637|DEBUG|OnDoc| +2026-03-18 13:27:02.1637|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1682|DEBUG|OnDoc| +2026-03-18 13:27:02.1849|DEBUG|OnDoc| +2026-03-18 13:27:02.1849|DEBUG|OnDoc| +2026-03-18 13:27:02.1849|DEBUG|OnDoc| +2026-03-18 13:27:02.1849|DEBUG|OnDoc| +2026-03-18 13:27:02.1849|DEBUG|OnDoc| +2026-03-18 13:27:02.1849|DEBUG|OnDoc| +2026-03-18 13:27:02.1849|DEBUG|OnDoc| +2026-03-18 13:27:02.1849|DEBUG|OnDoc| +2026-03-18 13:27:02.1849|DEBUG|OnDoc| +2026-03-18 13:27:02.1849|DEBUG|OnDoc| +2026-03-18 13:27:02.1849|DEBUG|OnDoc| +2026-03-18 13:27:02.1849|DEBUG|OnDoc| +2026-03-18 13:27:02.1849|DEBUG|OnDoc| +2026-03-18 13:27:02.2085|DEBUG|OnDoc| +2026-03-18 13:27:02.2085|DEBUG|OnDoc| +2026-03-18 13:27:02.3006|DEBUG|OnDoc| +2026-03-18 13:27:02.3006|DEBUG|OnDoc| +2026-03-18 13:27:02.3136|DEBUG|OnDoc| +2026-03-18 13:27:02.3136|DEBUG|OnDoc| +2026-03-18 13:27:02.3136|DEBUG|OnDoc| +2026-03-18 13:27:02.3136|DEBUG|OnDoc| +2026-03-18 13:27:02.4099|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:27:02.4099|DEBUG|OnDoc| +2026-03-18 13:27:02.4208|DEBUG|OnDoc| +2026-03-18 13:27:02.4208|DEBUG|OnDoc| +2026-03-18 13:27:02.4208|DEBUG|OnDoc| +2026-03-18 13:27:02.4208|DEBUG|OnDoc| +2026-03-18 13:27:02.4208|DEBUG|OnDoc| +2026-03-18 13:27:02.4208|DEBUG|OnDoc| +2026-03-18 13:27:02.4358|DEBUG|OnDoc| +2026-03-18 13:27:02.4358|DEBUG|OnDoc|Generate_Word +2026-03-18 13:27:02.4358|DEBUG|OnDoc|Word2013 +2026-03-18 13:27:02.4358|DEBUG|OnDoc|Word2013 +2026-03-18 13:27:03.5865|DEBUG|OnDoc|Generate_Word +2026-03-18 13:27:03.6009|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015773 +2026-03-18 13:27:03.6009|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:27:03.6009|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:27:03.6071|DEBUG|OnDoc| +2026-03-18 13:27:03.6071|DEBUG|OnDoc| +2026-03-18 13:27:03.6071|DEBUG|OnDoc| +2026-03-18 13:27:03.6071|DEBUG|OnDoc| +2026-03-18 13:27:03.6071|DEBUG|OnDoc| +2026-03-18 13:27:03.6071|DEBUG|OnDoc| +2026-03-18 13:27:38.8818|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:27:39.0222|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:27:39.0837|INFO|APIDocLog|Input JSON +2026-03-18 13:27:39.0837|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:27:39.0837|DEBUG|OnDoc| +2026-03-18 13:27:39.0837|DEBUG|OnDoc| +2026-03-18 13:27:39.0837|DEBUG|OnDoc| +2026-03-18 13:27:39.0837|DEBUG|OnDoc| +2026-03-18 13:27:39.0837|DEBUG|OnDoc| +2026-03-18 13:27:39.0837|DEBUG|OnDoc| +2026-03-18 13:27:39.0837|DEBUG|OnDoc| +2026-03-18 13:27:39.0837|DEBUG|OnDoc| +2026-03-18 13:27:39.0837|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.0909|DEBUG|OnDoc| +2026-03-18 13:27:39.1216|DEBUG|OnDoc| +2026-03-18 13:27:39.1216|DEBUG|OnDoc| +2026-03-18 13:27:39.1792|DEBUG|OnDoc| +2026-03-18 13:27:39.1792|DEBUG|OnDoc| +2026-03-18 13:27:39.1887|DEBUG|OnDoc| +2026-03-18 13:27:39.1887|DEBUG|OnDoc| +2026-03-18 13:27:39.1887|DEBUG|OnDoc| +2026-03-18 13:27:39.1887|DEBUG|OnDoc| +2026-03-18 13:27:39.2355|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:27:39.2355|DEBUG|OnDoc| +2026-03-18 13:27:39.2355|DEBUG|OnDoc| +2026-03-18 13:27:39.2355|DEBUG|OnDoc| +2026-03-18 13:27:39.2355|DEBUG|OnDoc| +2026-03-18 13:27:39.2355|DEBUG|OnDoc| +2026-03-18 13:27:39.2471|DEBUG|OnDoc| +2026-03-18 13:27:39.2471|DEBUG|OnDoc| +2026-03-18 13:27:39.2471|DEBUG|OnDoc| +2026-03-18 13:27:39.2471|DEBUG|OnDoc|Generate_Word +2026-03-18 13:27:39.2642|DEBUG|OnDoc|Word2013 +2026-03-18 13:27:39.2642|DEBUG|OnDoc|Word2013 +2026-03-18 13:27:40.3480|DEBUG|OnDoc|Generate_Word +2026-03-18 13:27:40.3601|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015789 +2026-03-18 13:27:40.3601|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:27:40.3601|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:27:40.3601|DEBUG|OnDoc| +2026-03-18 13:27:40.3601|DEBUG|OnDoc| +2026-03-18 13:27:40.3601|DEBUG|OnDoc| +2026-03-18 13:27:40.3601|DEBUG|OnDoc| +2026-03-18 13:27:40.3601|DEBUG|OnDoc| +2026-03-18 13:27:40.3601|DEBUG|OnDoc| +2026-03-18 13:35:21.0825|DEBUG|OnDoc| +2026-03-18 13:35:21.1764|DEBUG|OnDoc| +2026-03-18 13:35:21.1764|DEBUG|OnDoc| +2026-03-18 13:35:21.1764|DEBUG|OnDoc| +2026-03-18 13:35:21.4918|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:35:21.7662|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:35:21.8689|INFO|APIDocLog|Input JSON +2026-03-18 13:35:21.8915|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:35:21.8915|DEBUG|OnDoc| +2026-03-18 13:35:21.8915|DEBUG|OnDoc| +2026-03-18 13:35:21.8915|DEBUG|OnDoc| +2026-03-18 13:35:21.8915|DEBUG|OnDoc| +2026-03-18 13:35:21.8915|DEBUG|OnDoc| +2026-03-18 13:35:21.8915|DEBUG|OnDoc| +2026-03-18 13:35:21.8915|DEBUG|OnDoc| +2026-03-18 13:35:21.8915|DEBUG|OnDoc| +2026-03-18 13:35:21.8915|DEBUG|OnDoc| +2026-03-18 13:35:21.9035|DEBUG|OnDoc| +2026-03-18 13:35:21.9035|DEBUG|OnDoc| +2026-03-18 13:35:21.9035|DEBUG|OnDoc| +2026-03-18 13:35:21.9035|DEBUG|OnDoc| +2026-03-18 13:35:21.9035|DEBUG|OnDoc| +2026-03-18 13:35:21.9035|DEBUG|OnDoc| +2026-03-18 13:35:21.9035|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9187|DEBUG|OnDoc| +2026-03-18 13:35:21.9348|DEBUG|OnDoc| +2026-03-18 13:35:21.9348|DEBUG|OnDoc| +2026-03-18 13:35:21.9698|DEBUG|OnDoc| +2026-03-18 13:35:21.9698|DEBUG|OnDoc| +2026-03-18 13:35:22.0529|DEBUG|OnDoc| +2026-03-18 13:35:22.0529|DEBUG|OnDoc| +2026-03-18 13:35:22.0923|DEBUG|OnDoc| +2026-03-18 13:35:22.0923|DEBUG|OnDoc| +2026-03-18 13:35:22.0923|DEBUG|OnDoc| +2026-03-18 13:35:22.0923|DEBUG|OnDoc| +2026-03-18 13:35:22.1234|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:35:22.1234|DEBUG|OnDoc| +2026-03-18 13:35:22.1234|DEBUG|OnDoc| +2026-03-18 13:35:22.1389|DEBUG|OnDoc| +2026-03-18 13:35:22.1389|DEBUG|OnDoc| +2026-03-18 13:35:22.1389|DEBUG|OnDoc| +2026-03-18 13:35:22.1389|DEBUG|OnDoc| +2026-03-18 13:35:22.1389|DEBUG|OnDoc| +2026-03-18 13:35:22.1539|DEBUG|OnDoc| +2026-03-18 13:35:22.1539|DEBUG|OnDoc|Generate_Word +2026-03-18 13:35:22.6445|DEBUG|OnDoc|Word2013 +2026-03-18 13:35:22.6540|DEBUG|OnDoc|Word2013 +2026-03-18 13:35:24.8056|DEBUG|OnDoc|Generate_Word +2026-03-18 13:35:24.8546|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015797 +2026-03-18 13:35:24.8566|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:35:24.8566|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:35:24.8566|DEBUG|OnDoc| +2026-03-18 13:35:24.8566|DEBUG|OnDoc| +2026-03-18 13:35:24.8566|DEBUG|OnDoc| +2026-03-18 13:35:24.8566|DEBUG|OnDoc| +2026-03-18 13:35:24.8566|DEBUG|OnDoc| +2026-03-18 13:35:24.8566|DEBUG|OnDoc| +2026-03-18 13:36:17.3705|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:36:17.4791|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:36:17.5324|INFO|APIDocLog|Input JSON +2026-03-18 13:36:17.5324|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5324|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5440|DEBUG|OnDoc| +2026-03-18 13:36:17.5759|DEBUG|OnDoc| +2026-03-18 13:36:17.5759|DEBUG|OnDoc| +2026-03-18 13:36:17.6294|DEBUG|OnDoc| +2026-03-18 13:36:17.6294|DEBUG|OnDoc| +2026-03-18 13:36:17.6499|DEBUG|OnDoc| +2026-03-18 13:36:17.6540|DEBUG|OnDoc| +2026-03-18 13:36:17.6540|DEBUG|OnDoc| +2026-03-18 13:36:17.6540|DEBUG|OnDoc| +2026-03-18 13:36:17.7159|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:36:17.7159|DEBUG|OnDoc| +2026-03-18 13:36:17.7159|DEBUG|OnDoc| +2026-03-18 13:36:17.7159|DEBUG|OnDoc| +2026-03-18 13:36:17.7159|DEBUG|OnDoc| +2026-03-18 13:36:17.7159|DEBUG|OnDoc| +2026-03-18 13:36:17.7324|DEBUG|OnDoc| +2026-03-18 13:36:17.7324|DEBUG|OnDoc| +2026-03-18 13:36:17.7324|DEBUG|OnDoc| +2026-03-18 13:36:17.7324|DEBUG|OnDoc|Generate_Word +2026-03-18 13:36:17.7532|DEBUG|OnDoc|Word2013 +2026-03-18 13:36:17.7532|DEBUG|OnDoc|Word2013 +2026-03-18 13:36:18.7640|DEBUG|OnDoc|Generate_Word +2026-03-18 13:36:18.7640|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015802 +2026-03-18 13:36:18.7640|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:36:18.7640|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:36:18.7640|DEBUG|OnDoc| +2026-03-18 13:36:18.7806|DEBUG|OnDoc| +2026-03-18 13:36:18.7806|DEBUG|OnDoc| +2026-03-18 13:36:18.7806|DEBUG|OnDoc| +2026-03-18 13:36:18.7806|DEBUG|OnDoc| +2026-03-18 13:36:18.7806|DEBUG|OnDoc| +2026-03-18 13:57:29.6034|DEBUG|OnDoc| +2026-03-18 13:57:29.6897|DEBUG|OnDoc| +2026-03-18 13:57:29.6897|DEBUG|OnDoc| +2026-03-18 13:57:29.6897|DEBUG|OnDoc| +2026-03-18 13:58:43.1287|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:58:43.3249|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:58:43.4157|INFO|APIDocLog|Input JSON +2026-03-18 13:58:43.4383|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:58:43.4383|DEBUG|OnDoc| +2026-03-18 13:58:43.4383|DEBUG|OnDoc| +2026-03-18 13:58:43.4383|DEBUG|OnDoc| +2026-03-18 13:58:43.4383|DEBUG|OnDoc| +2026-03-18 13:58:43.4383|DEBUG|OnDoc| +2026-03-18 13:58:43.4383|DEBUG|OnDoc| +2026-03-18 13:58:43.4383|DEBUG|OnDoc| +2026-03-18 13:58:43.4383|DEBUG|OnDoc| +2026-03-18 13:58:43.4383|DEBUG|OnDoc| +2026-03-18 13:58:43.4383|DEBUG|OnDoc| +2026-03-18 13:58:43.4383|DEBUG|OnDoc| +2026-03-18 13:58:43.4383|DEBUG|OnDoc| +2026-03-18 13:58:43.4383|DEBUG|OnDoc| +2026-03-18 13:58:43.4383|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4515|DEBUG|OnDoc| +2026-03-18 13:58:43.4657|DEBUG|OnDoc| +2026-03-18 13:58:43.4657|DEBUG|OnDoc| +2026-03-18 13:58:43.4657|DEBUG|OnDoc| +2026-03-18 13:58:43.4657|DEBUG|OnDoc| +2026-03-18 13:58:43.4657|DEBUG|OnDoc| +2026-03-18 13:58:43.4963|DEBUG|OnDoc| +2026-03-18 13:58:43.4963|DEBUG|OnDoc| +2026-03-18 13:58:43.5439|DEBUG|OnDoc| +2026-03-18 13:58:43.5439|DEBUG|OnDoc| +2026-03-18 13:58:43.5662|DEBUG|OnDoc| +2026-03-18 13:58:43.5662|DEBUG|OnDoc| +2026-03-18 13:58:43.5662|DEBUG|OnDoc| +2026-03-18 13:58:43.5662|DEBUG|OnDoc| +2026-03-18 13:58:43.5859|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:58:43.5859|DEBUG|OnDoc| +2026-03-18 13:58:43.5942|DEBUG|OnDoc| +2026-03-18 13:58:43.5942|DEBUG|OnDoc| +2026-03-18 13:58:43.5942|DEBUG|OnDoc| +2026-03-18 13:58:43.5942|DEBUG|OnDoc| +2026-03-18 13:58:43.5942|DEBUG|OnDoc| +2026-03-18 13:58:43.5942|DEBUG|OnDoc| +2026-03-18 13:58:43.6097|DEBUG|OnDoc| +2026-03-18 13:58:43.6097|DEBUG|OnDoc|Generate_Word +2026-03-18 13:58:44.0474|DEBUG|OnDoc|Word2013 +2026-03-18 13:58:44.0474|DEBUG|OnDoc|Word2013 +2026-03-18 13:58:54.6440|DEBUG|OnDoc|Generate_Word +2026-03-18 13:58:54.6908|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015818 +2026-03-18 13:58:54.6908|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:58:54.6908|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:58:54.6908|DEBUG|OnDoc| +2026-03-18 13:58:54.6998|DEBUG|OnDoc| +2026-03-18 13:58:54.6998|DEBUG|OnDoc| +2026-03-18 13:58:54.6998|DEBUG|OnDoc| +2026-03-18 13:58:54.6998|DEBUG|OnDoc| +2026-03-18 13:58:54.6998|DEBUG|OnDoc| +2026-03-18 13:59:29.8040|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 13:59:29.8881|INFO|APIDocLog|Start CreateDoc +2026-03-18 13:59:29.9202|INFO|APIDocLog|Input JSON +2026-03-18 13:59:29.9202|DEBUG|OnDoc|Start GenDoc +2026-03-18 13:59:29.9202|DEBUG|OnDoc| +2026-03-18 13:59:29.9202|DEBUG|OnDoc| +2026-03-18 13:59:29.9202|DEBUG|OnDoc| +2026-03-18 13:59:29.9202|DEBUG|OnDoc| +2026-03-18 13:59:29.9202|DEBUG|OnDoc| +2026-03-18 13:59:29.9202|DEBUG|OnDoc| +2026-03-18 13:59:29.9202|DEBUG|OnDoc| +2026-03-18 13:59:29.9202|DEBUG|OnDoc| +2026-03-18 13:59:29.9202|DEBUG|OnDoc| +2026-03-18 13:59:29.9202|DEBUG|OnDoc| +2026-03-18 13:59:29.9202|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9345|DEBUG|OnDoc| +2026-03-18 13:59:29.9617|DEBUG|OnDoc| +2026-03-18 13:59:29.9617|DEBUG|OnDoc| +2026-03-18 13:59:29.9876|DEBUG|OnDoc| +2026-03-18 13:59:29.9876|DEBUG|OnDoc| +2026-03-18 13:59:30.0032|DEBUG|OnDoc| +2026-03-18 13:59:30.0032|DEBUG|OnDoc| +2026-03-18 13:59:30.0032|DEBUG|OnDoc| +2026-03-18 13:59:30.0032|DEBUG|OnDoc| +2026-03-18 13:59:30.0166|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 13:59:30.0166|DEBUG|OnDoc| +2026-03-18 13:59:30.0166|DEBUG|OnDoc| +2026-03-18 13:59:30.0166|DEBUG|OnDoc| +2026-03-18 13:59:30.0166|DEBUG|OnDoc| +2026-03-18 13:59:30.0166|DEBUG|OnDoc| +2026-03-18 13:59:30.0320|DEBUG|OnDoc| +2026-03-18 13:59:30.0320|DEBUG|OnDoc| +2026-03-18 13:59:30.0320|DEBUG|OnDoc| +2026-03-18 13:59:30.0320|DEBUG|OnDoc|Generate_Word +2026-03-18 13:59:30.0471|DEBUG|OnDoc|Word2013 +2026-03-18 13:59:30.0471|DEBUG|OnDoc|Word2013 +2026-03-18 13:59:30.7019|DEBUG|OnDoc|Generate_Word +2026-03-18 13:59:30.7019|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015823 +2026-03-18 13:59:30.7019|INFO|DocLog|Dokument über API erstellt +2026-03-18 13:59:30.7156|INFO|APIDocLog|Dokument return to sender +2026-03-18 13:59:30.7156|DEBUG|OnDoc| +2026-03-18 13:59:30.7156|DEBUG|OnDoc| +2026-03-18 13:59:30.7156|DEBUG|OnDoc| +2026-03-18 13:59:30.7156|DEBUG|OnDoc| +2026-03-18 13:59:30.7156|DEBUG|OnDoc| +2026-03-18 13:59:30.7156|DEBUG|OnDoc| +2026-03-18 14:00:13.7676|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:00:13.8499|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:00:13.8760|INFO|APIDocLog|Input JSON +2026-03-18 14:00:13.8760|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8760|DEBUG|OnDoc| +2026-03-18 14:00:13.8875|DEBUG|OnDoc| +2026-03-18 14:00:13.8875|DEBUG|OnDoc| +2026-03-18 14:00:13.8875|DEBUG|OnDoc| +2026-03-18 14:00:13.8875|DEBUG|OnDoc| +2026-03-18 14:00:13.8875|DEBUG|OnDoc| +2026-03-18 14:00:13.8875|DEBUG|OnDoc| +2026-03-18 14:00:13.8875|DEBUG|OnDoc| +2026-03-18 14:00:13.8875|DEBUG|OnDoc| +2026-03-18 14:00:13.8875|DEBUG|OnDoc| +2026-03-18 14:00:13.8875|DEBUG|OnDoc| +2026-03-18 14:00:13.8875|DEBUG|OnDoc| +2026-03-18 14:00:13.8875|DEBUG|OnDoc| +2026-03-18 14:00:13.8875|DEBUG|OnDoc| +2026-03-18 14:00:13.9061|DEBUG|OnDoc| +2026-03-18 14:00:13.9061|DEBUG|OnDoc| +2026-03-18 14:00:13.9361|DEBUG|OnDoc| +2026-03-18 14:00:13.9361|DEBUG|OnDoc| +2026-03-18 14:00:13.9361|DEBUG|OnDoc| +2026-03-18 14:00:13.9361|DEBUG|OnDoc| +2026-03-18 14:00:13.9361|DEBUG|OnDoc| +2026-03-18 14:00:13.9361|DEBUG|OnDoc| +2026-03-18 14:00:13.9640|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:00:13.9640|DEBUG|OnDoc| +2026-03-18 14:00:13.9700|DEBUG|OnDoc| +2026-03-18 14:00:13.9700|DEBUG|OnDoc| +2026-03-18 14:00:13.9700|DEBUG|OnDoc| +2026-03-18 14:00:13.9700|DEBUG|OnDoc| +2026-03-18 14:00:13.9700|DEBUG|OnDoc| +2026-03-18 14:00:13.9700|DEBUG|OnDoc| +2026-03-18 14:00:13.9700|DEBUG|OnDoc| +2026-03-18 14:00:13.9700|DEBUG|OnDoc|Generate_Word +2026-03-18 14:00:13.9926|DEBUG|OnDoc|Word2013 +2026-03-18 14:00:13.9926|DEBUG|OnDoc|Word2013 +2026-03-18 14:00:29.8385|DEBUG|OnDoc|Generate_Word +2026-03-18 14:00:29.8757|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015839 +2026-03-18 14:00:29.8757|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:00:29.8757|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:00:29.8757|DEBUG|OnDoc| +2026-03-18 14:00:29.8757|DEBUG|OnDoc| +2026-03-18 14:00:29.8757|DEBUG|OnDoc| +2026-03-18 14:00:29.8757|DEBUG|OnDoc| +2026-03-18 14:00:29.8757|DEBUG|OnDoc| +2026-03-18 14:00:29.8757|DEBUG|OnDoc| +2026-03-18 14:01:01.6925|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:01:01.7709|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:01:01.7968|INFO|APIDocLog|Input JSON +2026-03-18 14:01:01.7968|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.7968|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8088|DEBUG|OnDoc| +2026-03-18 14:01:01.8350|DEBUG|OnDoc| +2026-03-18 14:01:01.8350|DEBUG|OnDoc| +2026-03-18 14:01:01.8644|DEBUG|OnDoc| +2026-03-18 14:01:01.8644|DEBUG|OnDoc| +2026-03-18 14:01:01.8744|DEBUG|OnDoc| +2026-03-18 14:01:01.8744|DEBUG|OnDoc| +2026-03-18 14:01:01.8744|DEBUG|OnDoc| +2026-03-18 14:01:01.8744|DEBUG|OnDoc| +2026-03-18 14:01:01.8935|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:01:01.8935|DEBUG|OnDoc| +2026-03-18 14:01:01.8935|DEBUG|OnDoc| +2026-03-18 14:01:01.9031|DEBUG|OnDoc| +2026-03-18 14:01:01.9031|DEBUG|OnDoc| +2026-03-18 14:01:01.9031|DEBUG|OnDoc| +2026-03-18 14:01:01.9031|DEBUG|OnDoc| +2026-03-18 14:01:01.9031|DEBUG|OnDoc| +2026-03-18 14:01:01.9031|DEBUG|OnDoc| +2026-03-18 14:01:01.9031|DEBUG|OnDoc|Generate_Word +2026-03-18 14:01:01.9204|DEBUG|OnDoc|Word2013 +2026-03-18 14:01:01.9204|DEBUG|OnDoc|Word2013 +2026-03-18 14:02:44.2162|DEBUG|OnDoc|Generate_Word +2026-03-18 14:02:44.2526|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015847 +2026-03-18 14:02:44.2526|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:02:44.2526|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:02:44.2526|DEBUG|OnDoc| +2026-03-18 14:02:44.2526|DEBUG|OnDoc| +2026-03-18 14:02:44.2526|DEBUG|OnDoc| +2026-03-18 14:02:44.2526|DEBUG|OnDoc| +2026-03-18 14:02:44.2526|DEBUG|OnDoc| +2026-03-18 14:02:44.2526|DEBUG|OnDoc| +2026-03-18 14:03:00.6105|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:03:00.7166|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:03:00.7580|INFO|APIDocLog|Input JSON +2026-03-18 14:03:00.7580|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:03:00.7580|DEBUG|OnDoc| +2026-03-18 14:03:00.7580|DEBUG|OnDoc| +2026-03-18 14:03:00.7580|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7622|DEBUG|OnDoc| +2026-03-18 14:03:00.7968|DEBUG|OnDoc| +2026-03-18 14:03:00.7968|DEBUG|OnDoc| +2026-03-18 14:03:00.8352|DEBUG|OnDoc| +2026-03-18 14:03:00.8352|DEBUG|OnDoc| +2026-03-18 14:03:00.8462|DEBUG|OnDoc| +2026-03-18 14:03:00.8462|DEBUG|OnDoc| +2026-03-18 14:03:00.8462|DEBUG|OnDoc| +2026-03-18 14:03:00.8462|DEBUG|OnDoc| +2026-03-18 14:03:00.8749|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:03:00.8749|DEBUG|OnDoc| +2026-03-18 14:03:00.8749|DEBUG|OnDoc| +2026-03-18 14:03:00.8749|DEBUG|OnDoc| +2026-03-18 14:03:00.8749|DEBUG|OnDoc| +2026-03-18 14:03:00.8749|DEBUG|OnDoc| +2026-03-18 14:03:00.8898|DEBUG|OnDoc| +2026-03-18 14:03:00.8898|DEBUG|OnDoc| +2026-03-18 14:03:00.8898|DEBUG|OnDoc| +2026-03-18 14:03:00.8898|DEBUG|OnDoc|Generate_Word +2026-03-18 14:03:00.9034|DEBUG|OnDoc|Word2013 +2026-03-18 14:03:00.9034|DEBUG|OnDoc|Word2013 +2026-03-18 14:03:04.8102|DEBUG|OnDoc|Generate_Word +2026-03-18 14:03:04.8475|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015855 +2026-03-18 14:03:04.8475|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:03:04.8475|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:03:04.8475|DEBUG|OnDoc| +2026-03-18 14:03:04.8475|DEBUG|OnDoc| +2026-03-18 14:03:04.8475|DEBUG|OnDoc| +2026-03-18 14:03:04.8475|DEBUG|OnDoc| +2026-03-18 14:03:04.8475|DEBUG|OnDoc| +2026-03-18 14:03:04.8475|DEBUG|OnDoc| +2026-03-18 14:03:26.5187|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:03:26.6252|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:03:26.6715|INFO|APIDocLog|Input JSON +2026-03-18 14:03:26.6715|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6715|DEBUG|OnDoc| +2026-03-18 14:03:26.6841|DEBUG|OnDoc| +2026-03-18 14:03:26.6841|DEBUG|OnDoc| +2026-03-18 14:03:26.6841|DEBUG|OnDoc| +2026-03-18 14:03:26.6841|DEBUG|OnDoc| +2026-03-18 14:03:26.6841|DEBUG|OnDoc| +2026-03-18 14:03:26.6841|DEBUG|OnDoc| +2026-03-18 14:03:26.6841|DEBUG|OnDoc| +2026-03-18 14:03:26.6841|DEBUG|OnDoc| +2026-03-18 14:03:26.6841|DEBUG|OnDoc| +2026-03-18 14:03:26.6841|DEBUG|OnDoc| +2026-03-18 14:03:26.6841|DEBUG|OnDoc| +2026-03-18 14:03:26.6841|DEBUG|OnDoc| +2026-03-18 14:03:26.6841|DEBUG|OnDoc| +2026-03-18 14:03:26.7002|DEBUG|OnDoc| +2026-03-18 14:03:26.7002|DEBUG|OnDoc| +2026-03-18 14:03:26.7447|DEBUG|OnDoc| +2026-03-18 14:03:26.7467|DEBUG|OnDoc| +2026-03-18 14:03:26.7467|DEBUG|OnDoc| +2026-03-18 14:03:26.7467|DEBUG|OnDoc| +2026-03-18 14:03:26.7467|DEBUG|OnDoc| +2026-03-18 14:03:26.7467|DEBUG|OnDoc| +2026-03-18 14:03:26.7903|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:03:26.7903|DEBUG|OnDoc| +2026-03-18 14:03:26.7969|DEBUG|OnDoc| +2026-03-18 14:03:26.7969|DEBUG|OnDoc| +2026-03-18 14:03:26.7969|DEBUG|OnDoc| +2026-03-18 14:03:26.7969|DEBUG|OnDoc| +2026-03-18 14:03:26.7969|DEBUG|OnDoc| +2026-03-18 14:03:26.7969|DEBUG|OnDoc| +2026-03-18 14:03:26.8089|DEBUG|OnDoc| +2026-03-18 14:03:26.8089|DEBUG|OnDoc|Generate_Word +2026-03-18 14:03:26.8089|DEBUG|OnDoc|Word2013 +2026-03-18 14:03:26.8249|DEBUG|OnDoc|Word2013 +2026-03-18 14:03:32.0494|DEBUG|OnDoc|Generate_Word +2026-03-18 14:03:32.0860|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015860 +2026-03-18 14:03:32.0860|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:03:32.0860|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:03:32.0860|DEBUG|OnDoc| +2026-03-18 14:03:32.0920|DEBUG|OnDoc| +2026-03-18 14:03:32.0920|DEBUG|OnDoc| +2026-03-18 14:03:32.0920|DEBUG|OnDoc| +2026-03-18 14:03:32.0920|DEBUG|OnDoc| +2026-03-18 14:03:32.0920|DEBUG|OnDoc| +2026-03-18 14:03:43.7728|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:03:43.8882|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:03:43.9421|INFO|APIDocLog|Input JSON +2026-03-18 14:03:43.9421|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:03:43.9421|DEBUG|OnDoc| +2026-03-18 14:03:43.9421|DEBUG|OnDoc| +2026-03-18 14:03:43.9421|DEBUG|OnDoc| +2026-03-18 14:03:43.9421|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9501|DEBUG|OnDoc| +2026-03-18 14:03:43.9652|DEBUG|OnDoc| +2026-03-18 14:03:43.9652|DEBUG|OnDoc| +2026-03-18 14:03:43.9652|DEBUG|OnDoc| +2026-03-18 14:03:44.0183|DEBUG|OnDoc| +2026-03-18 14:03:44.0183|DEBUG|OnDoc| +2026-03-18 14:03:44.0282|DEBUG|OnDoc| +2026-03-18 14:03:44.0282|DEBUG|OnDoc| +2026-03-18 14:03:44.0282|DEBUG|OnDoc| +2026-03-18 14:03:44.0282|DEBUG|OnDoc| +2026-03-18 14:03:44.0618|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:03:44.0618|DEBUG|OnDoc| +2026-03-18 14:03:44.0618|DEBUG|OnDoc| +2026-03-18 14:03:44.0618|DEBUG|OnDoc| +2026-03-18 14:03:44.0618|DEBUG|OnDoc| +2026-03-18 14:03:44.0618|DEBUG|OnDoc| +2026-03-18 14:03:44.0618|DEBUG|OnDoc| +2026-03-18 14:03:44.0618|DEBUG|OnDoc| +2026-03-18 14:03:44.0763|DEBUG|OnDoc| +2026-03-18 14:03:44.0763|DEBUG|OnDoc|Generate_Word +2026-03-18 14:03:44.0763|DEBUG|OnDoc|Word2013 +2026-03-18 14:03:44.0763|DEBUG|OnDoc|Word2013 +2026-03-18 14:03:48.5907|DEBUG|OnDoc|Generate_Word +2026-03-18 14:03:48.6281|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015871 +2026-03-18 14:03:48.6281|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:03:48.6281|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:03:48.6281|DEBUG|OnDoc| +2026-03-18 14:03:48.6281|DEBUG|OnDoc| +2026-03-18 14:03:48.6281|DEBUG|OnDoc| +2026-03-18 14:03:48.6371|DEBUG|OnDoc| +2026-03-18 14:03:48.6371|DEBUG|OnDoc| +2026-03-18 14:03:48.6371|DEBUG|OnDoc| +2026-03-18 14:04:11.8046|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:04:11.9131|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:04:11.9616|INFO|APIDocLog|Input JSON +2026-03-18 14:04:11.9651|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9651|DEBUG|OnDoc| +2026-03-18 14:04:11.9812|DEBUG|OnDoc| +2026-03-18 14:04:11.9812|DEBUG|OnDoc| +2026-03-18 14:04:11.9812|DEBUG|OnDoc| +2026-03-18 14:04:11.9812|DEBUG|OnDoc| +2026-03-18 14:04:11.9812|DEBUG|OnDoc| +2026-03-18 14:04:11.9812|DEBUG|OnDoc| +2026-03-18 14:04:11.9812|DEBUG|OnDoc| +2026-03-18 14:04:11.9812|DEBUG|OnDoc| +2026-03-18 14:04:11.9812|DEBUG|OnDoc| +2026-03-18 14:04:11.9812|DEBUG|OnDoc| +2026-03-18 14:04:11.9812|DEBUG|OnDoc| +2026-03-18 14:04:12.0073|DEBUG|OnDoc| +2026-03-18 14:04:12.0073|DEBUG|OnDoc| +2026-03-18 14:04:12.0524|DEBUG|OnDoc| +2026-03-18 14:04:12.0524|DEBUG|OnDoc| +2026-03-18 14:04:12.0629|DEBUG|OnDoc| +2026-03-18 14:04:12.0629|DEBUG|OnDoc| +2026-03-18 14:04:12.0629|DEBUG|OnDoc| +2026-03-18 14:04:12.0629|DEBUG|OnDoc| +2026-03-18 14:04:12.0975|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:04:12.0975|DEBUG|OnDoc| +2026-03-18 14:04:12.0975|DEBUG|OnDoc| +2026-03-18 14:04:12.0975|DEBUG|OnDoc| +2026-03-18 14:04:12.0975|DEBUG|OnDoc| +2026-03-18 14:04:12.0975|DEBUG|OnDoc| +2026-03-18 14:04:12.1112|DEBUG|OnDoc| +2026-03-18 14:04:12.1112|DEBUG|OnDoc| +2026-03-18 14:04:12.1112|DEBUG|OnDoc| +2026-03-18 14:04:12.1112|DEBUG|OnDoc|Generate_Word +2026-03-18 14:04:12.1231|DEBUG|OnDoc|Word2013 +2026-03-18 14:04:12.1231|DEBUG|OnDoc|Word2013 +2026-03-18 14:04:17.1362|DEBUG|OnDoc|Generate_Word +2026-03-18 14:04:17.1727|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015886 +2026-03-18 14:04:17.1727|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:04:17.1727|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:04:17.1727|DEBUG|OnDoc| +2026-03-18 14:04:17.1727|DEBUG|OnDoc| +2026-03-18 14:04:17.1727|DEBUG|OnDoc| +2026-03-18 14:04:17.1727|DEBUG|OnDoc| +2026-03-18 14:04:17.1727|DEBUG|OnDoc| +2026-03-18 14:04:17.1727|DEBUG|OnDoc| +2026-03-18 14:04:27.2045|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:04:27.3132|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:04:27.3612|INFO|APIDocLog|Input JSON +2026-03-18 14:04:27.3612|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3612|DEBUG|OnDoc| +2026-03-18 14:04:27.3731|DEBUG|OnDoc| +2026-03-18 14:04:27.3731|DEBUG|OnDoc| +2026-03-18 14:04:27.3731|DEBUG|OnDoc| +2026-03-18 14:04:27.3731|DEBUG|OnDoc| +2026-03-18 14:04:27.3731|DEBUG|OnDoc| +2026-03-18 14:04:27.3731|DEBUG|OnDoc| +2026-03-18 14:04:27.3731|DEBUG|OnDoc| +2026-03-18 14:04:27.3731|DEBUG|OnDoc| +2026-03-18 14:04:27.3731|DEBUG|OnDoc| +2026-03-18 14:04:27.3731|DEBUG|OnDoc| +2026-03-18 14:04:27.3731|DEBUG|OnDoc| +2026-03-18 14:04:27.3731|DEBUG|OnDoc| +2026-03-18 14:04:27.3731|DEBUG|OnDoc| +2026-03-18 14:04:27.3731|DEBUG|OnDoc| +2026-03-18 14:04:27.3897|DEBUG|OnDoc| +2026-03-18 14:04:27.3897|DEBUG|OnDoc| +2026-03-18 14:04:27.4342|DEBUG|OnDoc| +2026-03-18 14:04:27.4342|DEBUG|OnDoc| +2026-03-18 14:04:27.4342|DEBUG|OnDoc| +2026-03-18 14:04:27.4342|DEBUG|OnDoc| +2026-03-18 14:04:27.4342|DEBUG|OnDoc| +2026-03-18 14:04:27.4342|DEBUG|OnDoc| +2026-03-18 14:04:27.4777|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:04:27.4777|DEBUG|OnDoc| +2026-03-18 14:04:27.4827|DEBUG|OnDoc| +2026-03-18 14:04:27.4827|DEBUG|OnDoc| +2026-03-18 14:04:27.4827|DEBUG|OnDoc| +2026-03-18 14:04:27.4827|DEBUG|OnDoc| +2026-03-18 14:04:27.4827|DEBUG|OnDoc| +2026-03-18 14:04:27.4827|DEBUG|OnDoc| +2026-03-18 14:04:27.4827|DEBUG|OnDoc| +2026-03-18 14:04:27.4827|DEBUG|OnDoc|Generate_Word +2026-03-18 14:04:27.4993|DEBUG|OnDoc|Word2013 +2026-03-18 14:04:27.4993|DEBUG|OnDoc|Word2013 +2026-03-18 14:04:32.1687|DEBUG|OnDoc|Generate_Word +2026-03-18 14:04:32.2051|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015894 +2026-03-18 14:04:32.2051|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:04:32.2051|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:04:32.2051|DEBUG|OnDoc| +2026-03-18 14:04:32.2051|DEBUG|OnDoc| +2026-03-18 14:04:32.2051|DEBUG|OnDoc| +2026-03-18 14:04:32.2051|DEBUG|OnDoc| +2026-03-18 14:04:32.2051|DEBUG|OnDoc| +2026-03-18 14:04:32.2051|DEBUG|OnDoc| +2026-03-18 14:04:48.8097|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:04:48.9132|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:04:48.9623|INFO|APIDocLog|Input JSON +2026-03-18 14:04:48.9623|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9656|DEBUG|OnDoc| +2026-03-18 14:04:48.9917|DEBUG|OnDoc| +2026-03-18 14:04:48.9917|DEBUG|OnDoc| +2026-03-18 14:04:49.0353|DEBUG|OnDoc| +2026-03-18 14:04:49.0353|DEBUG|OnDoc| +2026-03-18 14:04:49.0464|DEBUG|OnDoc| +2026-03-18 14:04:49.0464|DEBUG|OnDoc| +2026-03-18 14:04:49.0464|DEBUG|OnDoc| +2026-03-18 14:04:49.0464|DEBUG|OnDoc| +2026-03-18 14:04:49.0801|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:04:49.0801|DEBUG|OnDoc| +2026-03-18 14:04:49.0801|DEBUG|OnDoc| +2026-03-18 14:04:49.0801|DEBUG|OnDoc| +2026-03-18 14:04:49.0801|DEBUG|OnDoc| +2026-03-18 14:04:49.0801|DEBUG|OnDoc| +2026-03-18 14:04:49.0927|DEBUG|OnDoc| +2026-03-18 14:04:49.0927|DEBUG|OnDoc| +2026-03-18 14:04:49.0927|DEBUG|OnDoc| +2026-03-18 14:04:49.0927|DEBUG|OnDoc|Generate_Word +2026-03-18 14:04:49.1069|DEBUG|OnDoc|Word2013 +2026-03-18 14:04:49.1069|DEBUG|OnDoc|Word2013 +2026-03-18 14:04:53.4365|DEBUG|OnDoc|Generate_Word +2026-03-18 14:04:53.4737|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015903 +2026-03-18 14:04:53.4737|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:04:53.4737|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:04:53.4737|DEBUG|OnDoc| +2026-03-18 14:04:53.4737|DEBUG|OnDoc| +2026-03-18 14:04:53.4737|DEBUG|OnDoc| +2026-03-18 14:04:53.4737|DEBUG|OnDoc| +2026-03-18 14:04:53.4737|DEBUG|OnDoc| +2026-03-18 14:04:53.4810|DEBUG|OnDoc| +2026-03-18 14:06:15.8750|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:06:15.9934|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:06:16.0503|INFO|APIDocLog|Input JSON +2026-03-18 14:06:16.0503|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:06:16.0503|DEBUG|OnDoc| +2026-03-18 14:06:16.0503|DEBUG|OnDoc| +2026-03-18 14:06:16.0503|DEBUG|OnDoc| +2026-03-18 14:06:16.0503|DEBUG|OnDoc| +2026-03-18 14:06:16.0503|DEBUG|OnDoc| +2026-03-18 14:06:16.0503|DEBUG|OnDoc| +2026-03-18 14:06:16.0503|DEBUG|OnDoc| +2026-03-18 14:06:16.0503|DEBUG|OnDoc| +2026-03-18 14:06:16.0503|DEBUG|OnDoc| +2026-03-18 14:06:16.0503|DEBUG|OnDoc| +2026-03-18 14:06:16.0503|DEBUG|OnDoc| +2026-03-18 14:06:16.0503|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0593|DEBUG|OnDoc| +2026-03-18 14:06:16.0916|DEBUG|OnDoc| +2026-03-18 14:06:16.0916|DEBUG|OnDoc| +2026-03-18 14:06:16.1432|DEBUG|OnDoc| +2026-03-18 14:06:16.1432|DEBUG|OnDoc| +2026-03-18 14:06:16.1548|DEBUG|OnDoc| +2026-03-18 14:06:16.1548|DEBUG|OnDoc| +2026-03-18 14:06:16.1548|DEBUG|OnDoc| +2026-03-18 14:06:16.1548|DEBUG|OnDoc| +2026-03-18 14:06:16.1950|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:06:16.1950|DEBUG|OnDoc| +2026-03-18 14:06:16.2045|DEBUG|OnDoc| +2026-03-18 14:06:16.2045|DEBUG|OnDoc| +2026-03-18 14:06:16.2045|DEBUG|OnDoc| +2026-03-18 14:06:16.2045|DEBUG|OnDoc| +2026-03-18 14:06:16.2045|DEBUG|OnDoc| +2026-03-18 14:06:16.2045|DEBUG|OnDoc| +2026-03-18 14:06:16.2226|DEBUG|OnDoc| +2026-03-18 14:06:16.2226|DEBUG|OnDoc|Generate_Word +2026-03-18 14:06:16.2376|DEBUG|OnDoc|Word2013 +2026-03-18 14:06:16.2376|DEBUG|OnDoc|Word2013 +2026-03-18 14:06:21.2786|DEBUG|OnDoc|Generate_Word +2026-03-18 14:06:21.3208|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015919 +2026-03-18 14:06:21.3208|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:06:21.3208|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:06:21.3258|DEBUG|OnDoc| +2026-03-18 14:06:21.3258|DEBUG|OnDoc| +2026-03-18 14:06:21.3258|DEBUG|OnDoc| +2026-03-18 14:06:21.3258|DEBUG|OnDoc| +2026-03-18 14:06:21.3258|DEBUG|OnDoc| +2026-03-18 14:06:21.3258|DEBUG|OnDoc| +2026-03-18 14:06:32.9830|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:06:33.1025|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:06:33.1568|INFO|APIDocLog|Input JSON +2026-03-18 14:06:33.1568|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1568|DEBUG|OnDoc| +2026-03-18 14:06:33.1684|DEBUG|OnDoc| +2026-03-18 14:06:33.1684|DEBUG|OnDoc| +2026-03-18 14:06:33.1684|DEBUG|OnDoc| +2026-03-18 14:06:33.1684|DEBUG|OnDoc| +2026-03-18 14:06:33.1684|DEBUG|OnDoc| +2026-03-18 14:06:33.1684|DEBUG|OnDoc| +2026-03-18 14:06:33.1684|DEBUG|OnDoc| +2026-03-18 14:06:33.1684|DEBUG|OnDoc| +2026-03-18 14:06:33.1684|DEBUG|OnDoc| +2026-03-18 14:06:33.1684|DEBUG|OnDoc| +2026-03-18 14:06:33.1684|DEBUG|OnDoc| +2026-03-18 14:06:33.1934|DEBUG|OnDoc| +2026-03-18 14:06:33.1934|DEBUG|OnDoc| +2026-03-18 14:06:33.2436|DEBUG|OnDoc| +2026-03-18 14:06:33.2436|DEBUG|OnDoc| +2026-03-18 14:06:33.2517|DEBUG|OnDoc| +2026-03-18 14:06:33.2517|DEBUG|OnDoc| +2026-03-18 14:06:33.2517|DEBUG|OnDoc| +2026-03-18 14:06:33.2517|DEBUG|OnDoc| +2026-03-18 14:06:33.2926|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:06:33.2936|DEBUG|OnDoc| +2026-03-18 14:06:33.2936|DEBUG|OnDoc| +2026-03-18 14:06:33.2936|DEBUG|OnDoc| +2026-03-18 14:06:33.2936|DEBUG|OnDoc| +2026-03-18 14:06:33.2936|DEBUG|OnDoc| +2026-03-18 14:06:33.2936|DEBUG|OnDoc| +2026-03-18 14:06:33.2936|DEBUG|OnDoc| +2026-03-18 14:06:33.2936|DEBUG|OnDoc| +2026-03-18 14:06:33.3092|DEBUG|OnDoc|Generate_Word +2026-03-18 14:06:33.3092|DEBUG|OnDoc|Word2013 +2026-03-18 14:06:33.3092|DEBUG|OnDoc|Word2013 +2026-03-18 14:06:37.4414|DEBUG|OnDoc|Generate_Word +2026-03-18 14:06:37.4781|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015927 +2026-03-18 14:06:37.4781|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:06:37.4781|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:06:37.4812|DEBUG|OnDoc| +2026-03-18 14:06:37.4812|DEBUG|OnDoc| +2026-03-18 14:06:37.4812|DEBUG|OnDoc| +2026-03-18 14:06:37.4812|DEBUG|OnDoc| +2026-03-18 14:06:37.4812|DEBUG|OnDoc| +2026-03-18 14:06:37.4812|DEBUG|OnDoc| +2026-03-18 14:07:18.1353|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:07:18.2670|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:07:18.3314|INFO|APIDocLog|Input JSON +2026-03-18 14:07:18.3314|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:07:18.3314|DEBUG|OnDoc| +2026-03-18 14:07:18.3314|DEBUG|OnDoc| +2026-03-18 14:07:18.3314|DEBUG|OnDoc| +2026-03-18 14:07:18.3314|DEBUG|OnDoc| +2026-03-18 14:07:18.3314|DEBUG|OnDoc| +2026-03-18 14:07:18.3314|DEBUG|OnDoc| +2026-03-18 14:07:18.3314|DEBUG|OnDoc| +2026-03-18 14:07:18.3314|DEBUG|OnDoc| +2026-03-18 14:07:18.3314|DEBUG|OnDoc| +2026-03-18 14:07:18.3314|DEBUG|OnDoc| +2026-03-18 14:07:18.3314|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3409|DEBUG|OnDoc| +2026-03-18 14:07:18.3563|DEBUG|OnDoc| +2026-03-18 14:07:18.3563|DEBUG|OnDoc| +2026-03-18 14:07:18.3563|DEBUG|OnDoc| +2026-03-18 14:07:18.3563|DEBUG|OnDoc| +2026-03-18 14:07:18.3563|DEBUG|OnDoc| +2026-03-18 14:07:18.3563|DEBUG|OnDoc| +2026-03-18 14:07:18.3843|DEBUG|OnDoc| +2026-03-18 14:07:18.3878|DEBUG|OnDoc| +2026-03-18 14:07:18.4518|DEBUG|OnDoc| +2026-03-18 14:07:18.4518|DEBUG|OnDoc| +2026-03-18 14:07:18.4518|DEBUG|OnDoc| +2026-03-18 14:07:18.4518|DEBUG|OnDoc| +2026-03-18 14:07:18.4518|DEBUG|OnDoc| +2026-03-18 14:07:18.4518|DEBUG|OnDoc| +2026-03-18 14:07:18.5114|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:07:18.5114|DEBUG|OnDoc| +2026-03-18 14:07:18.5194|DEBUG|OnDoc| +2026-03-18 14:07:18.5194|DEBUG|OnDoc| +2026-03-18 14:07:18.5194|DEBUG|OnDoc| +2026-03-18 14:07:18.5194|DEBUG|OnDoc| +2026-03-18 14:07:18.5194|DEBUG|OnDoc| +2026-03-18 14:07:18.5194|DEBUG|OnDoc| +2026-03-18 14:07:18.5310|DEBUG|OnDoc| +2026-03-18 14:07:18.5310|DEBUG|OnDoc|Generate_Word +2026-03-18 14:07:18.5450|DEBUG|OnDoc|Word2013 +2026-03-18 14:07:18.5450|DEBUG|OnDoc|Word2013 +2026-03-18 14:07:22.6372|DEBUG|OnDoc|Generate_Word +2026-03-18 14:07:22.6372|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015935 +2026-03-18 14:07:22.6372|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:07:22.6372|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:07:22.6372|DEBUG|OnDoc| +2026-03-18 14:07:22.6538|DEBUG|OnDoc| +2026-03-18 14:07:22.6538|DEBUG|OnDoc| +2026-03-18 14:07:22.6538|DEBUG|OnDoc| +2026-03-18 14:07:22.6538|DEBUG|OnDoc| +2026-03-18 14:07:22.6538|DEBUG|OnDoc| +2026-03-18 14:07:53.9897|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:07:54.1376|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:07:54.2086|INFO|APIDocLog|Input JSON +2026-03-18 14:07:54.2086|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:07:54.2086|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2151|DEBUG|OnDoc| +2026-03-18 14:07:54.2498|DEBUG|OnDoc| +2026-03-18 14:07:54.2498|DEBUG|OnDoc| +2026-03-18 14:07:54.3213|DEBUG|OnDoc| +2026-03-18 14:07:54.3213|DEBUG|OnDoc| +2026-03-18 14:07:54.3318|DEBUG|OnDoc| +2026-03-18 14:07:54.3318|DEBUG|OnDoc| +2026-03-18 14:07:54.3318|DEBUG|OnDoc| +2026-03-18 14:07:54.3318|DEBUG|OnDoc| +2026-03-18 14:07:54.3946|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:07:54.3946|DEBUG|OnDoc| +2026-03-18 14:07:54.4052|DEBUG|OnDoc| +2026-03-18 14:07:54.4052|DEBUG|OnDoc| +2026-03-18 14:07:54.4052|DEBUG|OnDoc| +2026-03-18 14:07:54.4052|DEBUG|OnDoc| +2026-03-18 14:07:54.4052|DEBUG|OnDoc| +2026-03-18 14:07:54.4052|DEBUG|OnDoc| +2026-03-18 14:07:54.4223|DEBUG|OnDoc| +2026-03-18 14:07:54.4223|DEBUG|OnDoc|Generate_Word +2026-03-18 14:07:54.4402|DEBUG|OnDoc|Word2013 +2026-03-18 14:07:54.4402|DEBUG|OnDoc|Word2013 +2026-03-18 14:07:59.6234|DEBUG|OnDoc|Generate_Word +2026-03-18 14:07:59.6627|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015940 +2026-03-18 14:07:59.6627|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:07:59.6627|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:07:59.6627|DEBUG|OnDoc| +2026-03-18 14:07:59.6627|DEBUG|OnDoc| +2026-03-18 14:07:59.6627|DEBUG|OnDoc| +2026-03-18 14:07:59.6699|DEBUG|OnDoc| +2026-03-18 14:07:59.6699|DEBUG|OnDoc| +2026-03-18 14:07:59.6699|DEBUG|OnDoc| +2026-03-18 14:08:09.9055|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:08:10.0542|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:08:10.1239|INFO|APIDocLog|Input JSON +2026-03-18 14:08:10.1239|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1239|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1370|DEBUG|OnDoc| +2026-03-18 14:08:10.1581|DEBUG|OnDoc| +2026-03-18 14:08:10.1581|DEBUG|OnDoc| +2026-03-18 14:08:10.2295|DEBUG|OnDoc| +2026-03-18 14:08:10.2295|DEBUG|OnDoc| +2026-03-18 14:08:10.2421|DEBUG|OnDoc| +2026-03-18 14:08:10.2421|DEBUG|OnDoc| +2026-03-18 14:08:10.2421|DEBUG|OnDoc| +2026-03-18 14:08:10.2421|DEBUG|OnDoc| +2026-03-18 14:08:10.3002|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:08:10.3002|DEBUG|OnDoc| +2026-03-18 14:08:10.3002|DEBUG|OnDoc| +2026-03-18 14:08:10.3096|DEBUG|OnDoc| +2026-03-18 14:08:10.3096|DEBUG|OnDoc| +2026-03-18 14:08:10.3096|DEBUG|OnDoc| +2026-03-18 14:08:10.3096|DEBUG|OnDoc| +2026-03-18 14:08:10.3096|DEBUG|OnDoc| +2026-03-18 14:08:10.3096|DEBUG|OnDoc| +2026-03-18 14:08:10.3096|DEBUG|OnDoc|Generate_Word +2026-03-18 14:08:10.3286|DEBUG|OnDoc|Word2013 +2026-03-18 14:08:10.3286|DEBUG|OnDoc|Word2013 +2026-03-18 14:08:14.9855|DEBUG|OnDoc|Generate_Word +2026-03-18 14:08:15.0220|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015951 +2026-03-18 14:08:15.0220|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:08:15.0220|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:08:15.0220|DEBUG|OnDoc| +2026-03-18 14:08:15.0290|DEBUG|OnDoc| +2026-03-18 14:08:15.0290|DEBUG|OnDoc| +2026-03-18 14:08:15.0290|DEBUG|OnDoc| +2026-03-18 14:08:15.0290|DEBUG|OnDoc| +2026-03-18 14:08:15.0290|DEBUG|OnDoc| +2026-03-18 14:08:26.9687|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:08:27.1336|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:08:27.2012|INFO|APIDocLog|Input JSON +2026-03-18 14:08:27.2012|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2012|DEBUG|OnDoc| +2026-03-18 14:08:27.2158|DEBUG|OnDoc| +2026-03-18 14:08:27.2158|DEBUG|OnDoc| +2026-03-18 14:08:27.2158|DEBUG|OnDoc| +2026-03-18 14:08:27.2158|DEBUG|OnDoc| +2026-03-18 14:08:27.2158|DEBUG|OnDoc| +2026-03-18 14:08:27.2923|DEBUG|OnDoc| +2026-03-18 14:08:27.2936|DEBUG|OnDoc| +2026-03-18 14:08:27.2936|DEBUG|OnDoc| +2026-03-18 14:08:27.2936|DEBUG|OnDoc| +2026-03-18 14:08:27.2936|DEBUG|OnDoc| +2026-03-18 14:08:27.2936|DEBUG|OnDoc| +2026-03-18 14:08:27.3562|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:08:27.3562|DEBUG|OnDoc| +2026-03-18 14:08:27.3562|DEBUG|OnDoc| +2026-03-18 14:08:27.3562|DEBUG|OnDoc| +2026-03-18 14:08:27.3562|DEBUG|OnDoc| +2026-03-18 14:08:27.3562|DEBUG|OnDoc| +2026-03-18 14:08:27.3562|DEBUG|OnDoc| +2026-03-18 14:08:27.3562|DEBUG|OnDoc| +2026-03-18 14:08:27.3729|DEBUG|OnDoc| +2026-03-18 14:08:27.3729|DEBUG|OnDoc|Generate_Word +2026-03-18 14:08:27.3729|DEBUG|OnDoc|Word2013 +2026-03-18 14:08:27.3729|DEBUG|OnDoc|Word2013 +2026-03-18 14:08:32.0559|DEBUG|OnDoc|Generate_Word +2026-03-18 14:08:32.0941|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015966 +2026-03-18 14:08:32.0941|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:08:32.0941|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:08:32.0941|DEBUG|OnDoc| +2026-03-18 14:08:32.0941|DEBUG|OnDoc| +2026-03-18 14:08:32.0941|DEBUG|OnDoc| +2026-03-18 14:08:32.0941|DEBUG|OnDoc| +2026-03-18 14:08:32.0941|DEBUG|OnDoc| +2026-03-18 14:08:32.0941|DEBUG|OnDoc| +2026-03-18 14:08:49.2159|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:08:49.3705|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:08:49.4425|INFO|APIDocLog|Input JSON +2026-03-18 14:08:49.4425|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:08:49.4425|DEBUG|OnDoc| +2026-03-18 14:08:49.4425|DEBUG|OnDoc| +2026-03-18 14:08:49.4425|DEBUG|OnDoc| +2026-03-18 14:08:49.4425|DEBUG|OnDoc| +2026-03-18 14:08:49.4425|DEBUG|OnDoc| +2026-03-18 14:08:49.4425|DEBUG|OnDoc| +2026-03-18 14:08:49.4425|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4500|DEBUG|OnDoc| +2026-03-18 14:08:49.4766|DEBUG|OnDoc| +2026-03-18 14:08:49.4766|DEBUG|OnDoc| +2026-03-18 14:08:49.5490|DEBUG|OnDoc| +2026-03-18 14:08:49.5490|DEBUG|OnDoc| +2026-03-18 14:08:49.5610|DEBUG|OnDoc| +2026-03-18 14:08:49.5610|DEBUG|OnDoc| +2026-03-18 14:08:49.5610|DEBUG|OnDoc| +2026-03-18 14:08:49.5610|DEBUG|OnDoc| +2026-03-18 14:08:49.6194|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:08:49.6214|DEBUG|OnDoc| +2026-03-18 14:08:49.6214|DEBUG|OnDoc| +2026-03-18 14:08:49.6214|DEBUG|OnDoc| +2026-03-18 14:08:49.6214|DEBUG|OnDoc| +2026-03-18 14:08:49.6214|DEBUG|OnDoc| +2026-03-18 14:08:49.6214|DEBUG|OnDoc| +2026-03-18 14:08:49.6214|DEBUG|OnDoc| +2026-03-18 14:08:49.6400|DEBUG|OnDoc| +2026-03-18 14:08:49.6400|DEBUG|OnDoc|Generate_Word +2026-03-18 14:08:49.6400|DEBUG|OnDoc|Word2013 +2026-03-18 14:08:49.6400|DEBUG|OnDoc|Word2013 +2026-03-18 14:08:54.5831|DEBUG|OnDoc|Generate_Word +2026-03-18 14:08:54.5944|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015974 +2026-03-18 14:08:54.5944|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:08:54.5944|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:08:54.5944|DEBUG|OnDoc| +2026-03-18 14:08:54.5944|DEBUG|OnDoc| +2026-03-18 14:08:54.5944|DEBUG|OnDoc| +2026-03-18 14:08:54.5944|DEBUG|OnDoc| +2026-03-18 14:08:54.5944|DEBUG|OnDoc| +2026-03-18 14:08:54.5944|DEBUG|OnDoc| +2026-03-18 14:09:49.6587|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:09:49.8092|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:09:49.8789|INFO|APIDocLog|Input JSON +2026-03-18 14:09:49.8789|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:09:49.8789|DEBUG|OnDoc| +2026-03-18 14:09:49.8789|DEBUG|OnDoc| +2026-03-18 14:09:49.8789|DEBUG|OnDoc| +2026-03-18 14:09:49.8789|DEBUG|OnDoc| +2026-03-18 14:09:49.8789|DEBUG|OnDoc| +2026-03-18 14:09:49.8789|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.8875|DEBUG|OnDoc| +2026-03-18 14:09:49.9230|DEBUG|OnDoc| +2026-03-18 14:09:49.9230|DEBUG|OnDoc| +2026-03-18 14:09:49.9942|DEBUG|OnDoc| +2026-03-18 14:09:49.9942|DEBUG|OnDoc| +2026-03-18 14:09:50.0052|DEBUG|OnDoc| +2026-03-18 14:09:50.0052|DEBUG|OnDoc| +2026-03-18 14:09:50.0052|DEBUG|OnDoc| +2026-03-18 14:09:50.0052|DEBUG|OnDoc| +2026-03-18 14:09:50.0623|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:09:50.0623|DEBUG|OnDoc| +2026-03-18 14:09:50.0623|DEBUG|OnDoc| +2026-03-18 14:09:50.0623|DEBUG|OnDoc| +2026-03-18 14:09:50.0623|DEBUG|OnDoc| +2026-03-18 14:09:50.0623|DEBUG|OnDoc| +2026-03-18 14:09:50.0780|DEBUG|OnDoc| +2026-03-18 14:09:50.0780|DEBUG|OnDoc| +2026-03-18 14:09:50.0780|DEBUG|OnDoc| +2026-03-18 14:09:50.0780|DEBUG|OnDoc|Generate_Word +2026-03-18 14:09:50.0905|DEBUG|OnDoc|Word2013 +2026-03-18 14:09:50.0905|DEBUG|OnDoc|Word2013 +2026-03-18 14:09:54.3914|DEBUG|OnDoc|Generate_Word +2026-03-18 14:09:54.4286|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015982 +2026-03-18 14:09:54.4286|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:09:54.4286|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:09:54.4286|DEBUG|OnDoc| +2026-03-18 14:09:54.4286|DEBUG|OnDoc| +2026-03-18 14:09:54.4346|DEBUG|OnDoc| +2026-03-18 14:09:54.4346|DEBUG|OnDoc| +2026-03-18 14:09:54.4346|DEBUG|OnDoc| +2026-03-18 14:09:54.4346|DEBUG|OnDoc| +2026-03-18 14:10:15.9204|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:10:16.0678|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:10:16.1348|INFO|APIDocLog|Input JSON +2026-03-18 14:10:16.1378|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1378|DEBUG|OnDoc| +2026-03-18 14:10:16.1526|DEBUG|OnDoc| +2026-03-18 14:10:16.1727|DEBUG|OnDoc| +2026-03-18 14:10:16.1727|DEBUG|OnDoc| +2026-03-18 14:10:16.2394|DEBUG|OnDoc| +2026-03-18 14:10:16.2394|DEBUG|OnDoc| +2026-03-18 14:10:16.2489|DEBUG|OnDoc| +2026-03-18 14:10:16.2489|DEBUG|OnDoc| +2026-03-18 14:10:16.2489|DEBUG|OnDoc| +2026-03-18 14:10:16.2489|DEBUG|OnDoc| +2026-03-18 14:10:16.3080|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:10:16.3105|DEBUG|OnDoc| +2026-03-18 14:10:16.3105|DEBUG|OnDoc| +2026-03-18 14:10:16.3105|DEBUG|OnDoc| +2026-03-18 14:10:16.3105|DEBUG|OnDoc| +2026-03-18 14:10:16.3105|DEBUG|OnDoc| +2026-03-18 14:10:16.3105|DEBUG|OnDoc| +2026-03-18 14:10:16.3262|DEBUG|OnDoc| +2026-03-18 14:10:16.3262|DEBUG|OnDoc| +2026-03-18 14:10:16.3262|DEBUG|OnDoc|Generate_Word +2026-03-18 14:10:16.3401|DEBUG|OnDoc|Word2013 +2026-03-18 14:10:16.3401|DEBUG|OnDoc|Word2013 +2026-03-18 14:10:19.9811|DEBUG|OnDoc|Generate_Word +2026-03-18 14:10:20.0172|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000015998 +2026-03-18 14:10:20.0172|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:10:20.0172|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:10:20.0172|DEBUG|OnDoc| +2026-03-18 14:10:20.0172|DEBUG|OnDoc| +2026-03-18 14:10:20.0172|DEBUG|OnDoc| +2026-03-18 14:10:20.0172|DEBUG|OnDoc| +2026-03-18 14:10:20.0172|DEBUG|OnDoc| +2026-03-18 14:10:20.0172|DEBUG|OnDoc| +2026-03-18 14:10:36.7316|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:10:36.8900|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:10:36.9593|INFO|APIDocLog|Input JSON +2026-03-18 14:10:36.9593|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:10:36.9593|DEBUG|OnDoc| +2026-03-18 14:10:36.9593|DEBUG|OnDoc| +2026-03-18 14:10:36.9593|DEBUG|OnDoc| +2026-03-18 14:10:36.9593|DEBUG|OnDoc| +2026-03-18 14:10:36.9593|DEBUG|OnDoc| +2026-03-18 14:10:36.9593|DEBUG|OnDoc| +2026-03-18 14:10:36.9593|DEBUG|OnDoc| +2026-03-18 14:10:36.9593|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9654|DEBUG|OnDoc| +2026-03-18 14:10:36.9867|DEBUG|OnDoc| +2026-03-18 14:10:36.9867|DEBUG|OnDoc| +2026-03-18 14:10:37.0527|DEBUG|OnDoc| +2026-03-18 14:10:37.0527|DEBUG|OnDoc| +2026-03-18 14:10:37.0627|DEBUG|OnDoc| +2026-03-18 14:10:37.0627|DEBUG|OnDoc| +2026-03-18 14:10:37.0627|DEBUG|OnDoc| +2026-03-18 14:10:37.0627|DEBUG|OnDoc| +2026-03-18 14:10:37.1159|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:10:37.1159|DEBUG|OnDoc| +2026-03-18 14:10:37.1228|DEBUG|OnDoc| +2026-03-18 14:10:37.1228|DEBUG|OnDoc| +2026-03-18 14:10:37.1228|DEBUG|OnDoc| +2026-03-18 14:10:37.1228|DEBUG|OnDoc| +2026-03-18 14:10:37.1228|DEBUG|OnDoc| +2026-03-18 14:10:37.1228|DEBUG|OnDoc| +2026-03-18 14:10:37.1228|DEBUG|OnDoc| +2026-03-18 14:10:37.1228|DEBUG|OnDoc|Generate_Word +2026-03-18 14:10:37.1393|DEBUG|OnDoc|Word2013 +2026-03-18 14:10:37.1393|DEBUG|OnDoc|Word2013 +2026-03-18 14:10:41.5971|DEBUG|OnDoc|Generate_Word +2026-03-18 14:10:41.6341|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016009 +2026-03-18 14:10:41.6341|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:10:41.6341|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:10:41.6341|DEBUG|OnDoc| +2026-03-18 14:10:41.6381|DEBUG|OnDoc| +2026-03-18 14:10:41.6381|DEBUG|OnDoc| +2026-03-18 14:10:41.6381|DEBUG|OnDoc| +2026-03-18 14:10:41.6381|DEBUG|OnDoc| +2026-03-18 14:10:41.6381|DEBUG|OnDoc| +2026-03-18 14:11:03.4907|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:11:03.6460|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:11:03.7136|INFO|APIDocLog|Input JSON +2026-03-18 14:11:03.7166|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7166|DEBUG|OnDoc| +2026-03-18 14:11:03.7526|DEBUG|OnDoc| +2026-03-18 14:11:03.7526|DEBUG|OnDoc| +2026-03-18 14:11:03.8218|DEBUG|OnDoc| +2026-03-18 14:11:03.8218|DEBUG|OnDoc| +2026-03-18 14:11:03.8309|DEBUG|OnDoc| +2026-03-18 14:11:03.8309|DEBUG|OnDoc| +2026-03-18 14:11:03.8309|DEBUG|OnDoc| +2026-03-18 14:11:03.8309|DEBUG|OnDoc| +2026-03-18 14:11:03.8864|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:11:03.8874|DEBUG|OnDoc| +2026-03-18 14:11:03.8874|DEBUG|OnDoc| +2026-03-18 14:11:03.8874|DEBUG|OnDoc| +2026-03-18 14:11:03.8874|DEBUG|OnDoc| +2026-03-18 14:11:03.8874|DEBUG|OnDoc| +2026-03-18 14:11:03.8874|DEBUG|OnDoc| +2026-03-18 14:11:03.8874|DEBUG|OnDoc| +2026-03-18 14:11:03.9040|DEBUG|OnDoc| +2026-03-18 14:11:03.9040|DEBUG|OnDoc|Generate_Word +2026-03-18 14:11:03.9040|DEBUG|OnDoc|Word2013 +2026-03-18 14:11:03.9040|DEBUG|OnDoc|Word2013 +2026-03-18 14:11:08.5807|DEBUG|OnDoc|Generate_Word +2026-03-18 14:11:08.6181|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016017 +2026-03-18 14:11:08.6181|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:11:08.6181|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:11:08.6181|DEBUG|OnDoc| +2026-03-18 14:11:08.6243|DEBUG|OnDoc| +2026-03-18 14:11:08.6243|DEBUG|OnDoc| +2026-03-18 14:11:08.6243|DEBUG|OnDoc| +2026-03-18 14:11:08.6243|DEBUG|OnDoc| +2026-03-18 14:11:08.6243|DEBUG|OnDoc| +2026-03-18 14:11:33.5117|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:11:33.6724|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:11:33.7411|INFO|APIDocLog|Input JSON +2026-03-18 14:11:33.7411|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:11:33.7411|DEBUG|OnDoc| +2026-03-18 14:11:33.7411|DEBUG|OnDoc| +2026-03-18 14:11:33.7411|DEBUG|OnDoc| +2026-03-18 14:11:33.7411|DEBUG|OnDoc| +2026-03-18 14:11:33.7411|DEBUG|OnDoc| +2026-03-18 14:11:33.7411|DEBUG|OnDoc| +2026-03-18 14:11:33.7411|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7471|DEBUG|OnDoc| +2026-03-18 14:11:33.7782|DEBUG|OnDoc| +2026-03-18 14:11:33.7782|DEBUG|OnDoc| +2026-03-18 14:11:33.8441|DEBUG|OnDoc| +2026-03-18 14:11:33.8441|DEBUG|OnDoc| +2026-03-18 14:11:33.8441|DEBUG|OnDoc| +2026-03-18 14:11:33.8559|DEBUG|OnDoc| +2026-03-18 14:11:33.8559|DEBUG|OnDoc| +2026-03-18 14:11:33.8559|DEBUG|OnDoc| +2026-03-18 14:11:33.9117|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:11:33.9117|DEBUG|OnDoc| +2026-03-18 14:11:33.9193|DEBUG|OnDoc| +2026-03-18 14:11:33.9193|DEBUG|OnDoc| +2026-03-18 14:11:33.9193|DEBUG|OnDoc| +2026-03-18 14:11:33.9193|DEBUG|OnDoc| +2026-03-18 14:11:33.9193|DEBUG|OnDoc| +2026-03-18 14:11:33.9193|DEBUG|OnDoc| +2026-03-18 14:11:33.9193|DEBUG|OnDoc| +2026-03-18 14:11:33.9193|DEBUG|OnDoc|Generate_Word +2026-03-18 14:11:33.9400|DEBUG|OnDoc|Word2013 +2026-03-18 14:11:33.9400|DEBUG|OnDoc|Word2013 +2026-03-18 14:12:02.3411|DEBUG|OnDoc|Generate_Word +2026-03-18 14:12:02.3784|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016025 +2026-03-18 14:12:02.3784|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:12:02.3784|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:12:02.3784|DEBUG|OnDoc| +2026-03-18 14:12:02.3784|DEBUG|OnDoc| +2026-03-18 14:12:02.3784|DEBUG|OnDoc| +2026-03-18 14:12:02.3784|DEBUG|OnDoc| +2026-03-18 14:12:02.3784|DEBUG|OnDoc| +2026-03-18 14:12:02.3784|DEBUG|OnDoc| +2026-03-18 14:12:07.8904|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:12:08.0537|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:12:08.1213|INFO|APIDocLog|Input JSON +2026-03-18 14:12:08.1213|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1213|DEBUG|OnDoc| +2026-03-18 14:12:08.1369|DEBUG|OnDoc| +2026-03-18 14:12:08.1369|DEBUG|OnDoc| +2026-03-18 14:12:08.1369|DEBUG|OnDoc| +2026-03-18 14:12:08.1369|DEBUG|OnDoc| +2026-03-18 14:12:08.1369|DEBUG|OnDoc| +2026-03-18 14:12:08.1369|DEBUG|OnDoc| +2026-03-18 14:12:08.1369|DEBUG|OnDoc| +2026-03-18 14:12:08.1369|DEBUG|OnDoc| +2026-03-18 14:12:08.1369|DEBUG|OnDoc| +2026-03-18 14:12:08.1369|DEBUG|OnDoc| +2026-03-18 14:12:08.1369|DEBUG|OnDoc| +2026-03-18 14:12:08.1369|DEBUG|OnDoc| +2026-03-18 14:12:08.1369|DEBUG|OnDoc| +2026-03-18 14:12:08.1369|DEBUG|OnDoc| +2026-03-18 14:12:08.1538|DEBUG|OnDoc| +2026-03-18 14:12:08.2227|DEBUG|OnDoc| +2026-03-18 14:12:08.2227|DEBUG|OnDoc| +2026-03-18 14:12:08.2330|DEBUG|OnDoc| +2026-03-18 14:12:08.2330|DEBUG|OnDoc| +2026-03-18 14:12:08.2330|DEBUG|OnDoc| +2026-03-18 14:12:08.2330|DEBUG|OnDoc| +2026-03-18 14:12:08.2898|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:12:08.2898|DEBUG|OnDoc| +2026-03-18 14:12:08.2969|DEBUG|OnDoc| +2026-03-18 14:12:08.2969|DEBUG|OnDoc| +2026-03-18 14:12:08.2969|DEBUG|OnDoc| +2026-03-18 14:12:08.2969|DEBUG|OnDoc| +2026-03-18 14:12:08.2969|DEBUG|OnDoc| +2026-03-18 14:12:08.2969|DEBUG|OnDoc| +2026-03-18 14:12:08.2969|DEBUG|OnDoc| +2026-03-18 14:12:08.2969|DEBUG|OnDoc|Generate_Word +2026-03-18 14:12:08.3157|DEBUG|OnDoc|Word2013 +2026-03-18 14:12:08.3157|DEBUG|OnDoc|Word2013 +2026-03-18 14:16:08.8963|DEBUG|OnDoc|Generate_Word +2026-03-18 14:16:08.9374|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016030 +2026-03-18 14:16:08.9374|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:16:08.9374|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:16:08.9374|DEBUG|OnDoc| +2026-03-18 14:16:08.9374|DEBUG|OnDoc| +2026-03-18 14:16:08.9374|DEBUG|OnDoc| +2026-03-18 14:16:08.9374|DEBUG|OnDoc| +2026-03-18 14:16:08.9374|DEBUG|OnDoc| +2026-03-18 14:16:08.9374|DEBUG|OnDoc| +2026-03-18 14:16:23.0331|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:16:23.1683|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:16:23.2458|INFO|APIDocLog|Input JSON +2026-03-18 14:16:23.2553|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2553|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2621|DEBUG|OnDoc| +2026-03-18 14:16:23.2911|DEBUG|OnDoc| +2026-03-18 14:16:23.2941|DEBUG|OnDoc| +2026-03-18 14:16:23.3771|DEBUG|OnDoc| +2026-03-18 14:16:23.3771|DEBUG|OnDoc| +2026-03-18 14:16:23.3895|DEBUG|OnDoc| +2026-03-18 14:16:23.3895|DEBUG|OnDoc| +2026-03-18 14:16:23.3895|DEBUG|OnDoc| +2026-03-18 14:16:23.3895|DEBUG|OnDoc| +2026-03-18 14:16:23.4582|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:16:23.4582|DEBUG|OnDoc| +2026-03-18 14:16:23.4657|DEBUG|OnDoc| +2026-03-18 14:16:23.4657|DEBUG|OnDoc| +2026-03-18 14:16:23.4657|DEBUG|OnDoc| +2026-03-18 14:16:23.4657|DEBUG|OnDoc| +2026-03-18 14:16:23.4657|DEBUG|OnDoc| +2026-03-18 14:16:23.4657|DEBUG|OnDoc| +2026-03-18 14:16:23.4657|DEBUG|OnDoc| +2026-03-18 14:16:23.4657|DEBUG|OnDoc|Generate_Word +2026-03-18 14:16:23.4859|DEBUG|OnDoc|Word2013 +2026-03-18 14:16:23.4859|DEBUG|OnDoc|Word2013 +2026-03-18 14:16:35.1754|DEBUG|OnDoc|Generate_Word +2026-03-18 14:16:35.2147|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016041 +2026-03-18 14:16:35.2157|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:16:35.2157|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:16:35.2157|DEBUG|OnDoc| +2026-03-18 14:16:35.2157|DEBUG|OnDoc| +2026-03-18 14:16:35.2157|DEBUG|OnDoc| +2026-03-18 14:16:35.2157|DEBUG|OnDoc| +2026-03-18 14:16:35.2157|DEBUG|OnDoc| +2026-03-18 14:16:35.2157|DEBUG|OnDoc| +2026-03-18 14:18:17.8155|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:18:18.0483|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:18:18.1369|INFO|APIDocLog|Input JSON +2026-03-18 14:18:18.1369|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:18:18.1369|DEBUG|OnDoc| +2026-03-18 14:18:18.1369|DEBUG|OnDoc| +2026-03-18 14:18:18.1369|DEBUG|OnDoc| +2026-03-18 14:18:18.1369|DEBUG|OnDoc| +2026-03-18 14:18:18.1369|DEBUG|OnDoc| +2026-03-18 14:18:18.1369|DEBUG|OnDoc| +2026-03-18 14:18:18.1369|DEBUG|OnDoc| +2026-03-18 14:18:18.1369|DEBUG|OnDoc| +2026-03-18 14:18:18.1369|DEBUG|OnDoc| +2026-03-18 14:18:18.1369|DEBUG|OnDoc| +2026-03-18 14:18:18.1369|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1530|DEBUG|OnDoc| +2026-03-18 14:18:18.1869|DEBUG|OnDoc| +2026-03-18 14:18:18.1869|DEBUG|OnDoc| +2026-03-18 14:18:18.3142|DEBUG|OnDoc| +2026-03-18 14:18:18.3142|DEBUG|OnDoc| +2026-03-18 14:18:18.3292|DEBUG|OnDoc| +2026-03-18 14:18:18.3292|DEBUG|OnDoc| +2026-03-18 14:18:18.3292|DEBUG|OnDoc| +2026-03-18 14:18:18.3292|DEBUG|OnDoc| +2026-03-18 14:18:18.4129|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:18:18.4129|DEBUG|OnDoc| +2026-03-18 14:18:18.4214|DEBUG|OnDoc| +2026-03-18 14:18:18.4214|DEBUG|OnDoc| +2026-03-18 14:18:18.4214|DEBUG|OnDoc| +2026-03-18 14:18:18.4214|DEBUG|OnDoc| +2026-03-18 14:18:18.4214|DEBUG|OnDoc| +2026-03-18 14:18:18.4214|DEBUG|OnDoc| +2026-03-18 14:18:18.4214|DEBUG|OnDoc| +2026-03-18 14:18:18.4214|DEBUG|OnDoc|Generate_Word +2026-03-18 14:18:18.4459|DEBUG|OnDoc|Word2013 +2026-03-18 14:18:18.4459|DEBUG|OnDoc|Word2013 +2026-03-18 14:18:29.6036|DEBUG|OnDoc|Generate_Word +2026-03-18 14:18:29.6412|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016056 +2026-03-18 14:18:29.6412|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:18:29.6412|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:18:29.6412|DEBUG|OnDoc| +2026-03-18 14:18:29.6412|DEBUG|OnDoc| +2026-03-18 14:18:29.6412|DEBUG|OnDoc| +2026-03-18 14:18:29.6412|DEBUG|OnDoc| +2026-03-18 14:18:29.6412|DEBUG|OnDoc| +2026-03-18 14:18:29.6412|DEBUG|OnDoc| +2026-03-18 14:19:31.5250|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:19:31.7394|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:19:31.8395|INFO|APIDocLog|Input JSON +2026-03-18 14:19:31.8517|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:19:31.8517|DEBUG|OnDoc| +2026-03-18 14:19:31.8517|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8559|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8715|DEBUG|OnDoc| +2026-03-18 14:19:31.8877|DEBUG|OnDoc| +2026-03-18 14:19:31.9100|DEBUG|OnDoc| +2026-03-18 14:19:31.9100|DEBUG|OnDoc| +2026-03-18 14:19:32.0160|DEBUG|OnDoc| +2026-03-18 14:19:32.0160|DEBUG|OnDoc| +2026-03-18 14:19:32.0160|DEBUG|OnDoc| +2026-03-18 14:19:32.0160|DEBUG|OnDoc| +2026-03-18 14:19:32.0160|DEBUG|OnDoc| +2026-03-18 14:19:32.0160|DEBUG|OnDoc| +2026-03-18 14:19:32.1222|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:19:32.1222|DEBUG|OnDoc| +2026-03-18 14:19:32.1222|DEBUG|OnDoc| +2026-03-18 14:19:32.1222|DEBUG|OnDoc| +2026-03-18 14:19:32.1222|DEBUG|OnDoc| +2026-03-18 14:19:32.1222|DEBUG|OnDoc| +2026-03-18 14:19:32.1426|DEBUG|OnDoc| +2026-03-18 14:19:32.1426|DEBUG|OnDoc| +2026-03-18 14:19:32.1426|DEBUG|OnDoc| +2026-03-18 14:19:32.1426|DEBUG|OnDoc|Generate_Word +2026-03-18 14:19:32.1836|DEBUG|OnDoc|Word2013 +2026-03-18 14:19:32.1866|DEBUG|OnDoc|Word2013 +2026-03-18 14:21:27.5058|DEBUG|OnDoc|Generate_Word +2026-03-18 14:21:27.5431|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016064 +2026-03-18 14:21:27.5431|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:21:27.5445|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:21:27.5445|DEBUG|OnDoc| +2026-03-18 14:21:27.5445|DEBUG|OnDoc| +2026-03-18 14:21:27.5445|DEBUG|OnDoc| +2026-03-18 14:21:27.5445|DEBUG|OnDoc| +2026-03-18 14:21:27.5445|DEBUG|OnDoc| +2026-03-18 14:21:27.5445|DEBUG|OnDoc| +2026-03-18 14:21:42.7275|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:21:42.9466|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:21:43.0541|INFO|APIDocLog|Input JSON +2026-03-18 14:21:43.0642|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0642|DEBUG|OnDoc| +2026-03-18 14:21:43.0755|DEBUG|OnDoc| +2026-03-18 14:21:43.0755|DEBUG|OnDoc| +2026-03-18 14:21:43.0755|DEBUG|OnDoc| +2026-03-18 14:21:43.0755|DEBUG|OnDoc| +2026-03-18 14:21:43.0755|DEBUG|OnDoc| +2026-03-18 14:21:43.0755|DEBUG|OnDoc| +2026-03-18 14:21:43.0755|DEBUG|OnDoc| +2026-03-18 14:21:43.0755|DEBUG|OnDoc| +2026-03-18 14:21:43.0755|DEBUG|OnDoc| +2026-03-18 14:21:43.0755|DEBUG|OnDoc| +2026-03-18 14:21:43.0755|DEBUG|OnDoc| +2026-03-18 14:21:43.0755|DEBUG|OnDoc| +2026-03-18 14:21:43.0755|DEBUG|OnDoc| +2026-03-18 14:21:43.1019|DEBUG|OnDoc| +2026-03-18 14:21:43.1019|DEBUG|OnDoc| +2026-03-18 14:21:43.2123|DEBUG|OnDoc| +2026-03-18 14:21:43.2123|DEBUG|OnDoc| +2026-03-18 14:21:43.2218|DEBUG|OnDoc| +2026-03-18 14:21:43.2218|DEBUG|OnDoc| +2026-03-18 14:21:43.2218|DEBUG|OnDoc| +2026-03-18 14:21:43.2218|DEBUG|OnDoc| +2026-03-18 14:21:43.3203|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:21:43.3203|DEBUG|OnDoc| +2026-03-18 14:21:43.3284|DEBUG|OnDoc| +2026-03-18 14:21:43.3284|DEBUG|OnDoc| +2026-03-18 14:21:43.3284|DEBUG|OnDoc| +2026-03-18 14:21:43.3284|DEBUG|OnDoc| +2026-03-18 14:21:43.3284|DEBUG|OnDoc| +2026-03-18 14:21:43.3284|DEBUG|OnDoc| +2026-03-18 14:21:43.3409|DEBUG|OnDoc| +2026-03-18 14:21:43.3409|DEBUG|OnDoc|Generate_Word +2026-03-18 14:21:43.3409|DEBUG|OnDoc|Word2013 +2026-03-18 14:21:43.3409|DEBUG|OnDoc|Word2013 +2026-03-18 14:21:45.1142|DEBUG|OnDoc|Generate_Word +2026-03-18 14:21:45.1277|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016072 +2026-03-18 14:21:45.1277|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:21:45.1277|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:21:45.1277|DEBUG|OnDoc| +2026-03-18 14:21:45.1277|DEBUG|OnDoc| +2026-03-18 14:21:45.1373|DEBUG|OnDoc| +2026-03-18 14:21:45.1373|DEBUG|OnDoc| +2026-03-18 14:21:45.1373|DEBUG|OnDoc| +2026-03-18 14:21:45.1373|DEBUG|OnDoc| +2026-03-18 14:22:00.5076|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:22:00.7236|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:22:00.8285|INFO|APIDocLog|Input JSON +2026-03-18 14:22:00.8285|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8406|DEBUG|OnDoc| +2026-03-18 14:22:00.8578|DEBUG|OnDoc| +2026-03-18 14:22:00.8578|DEBUG|OnDoc| +2026-03-18 14:22:00.8578|DEBUG|OnDoc| +2026-03-18 14:22:00.8578|DEBUG|OnDoc| +2026-03-18 14:22:00.8578|DEBUG|OnDoc| +2026-03-18 14:22:00.8578|DEBUG|OnDoc| +2026-03-18 14:22:00.8578|DEBUG|OnDoc| +2026-03-18 14:22:00.8578|DEBUG|OnDoc| +2026-03-18 14:22:00.8578|DEBUG|OnDoc| +2026-03-18 14:22:00.8578|DEBUG|OnDoc| +2026-03-18 14:22:00.8578|DEBUG|OnDoc| +2026-03-18 14:22:00.8578|DEBUG|OnDoc| +2026-03-18 14:22:00.8578|DEBUG|OnDoc| +2026-03-18 14:22:00.8578|DEBUG|OnDoc| +2026-03-18 14:22:00.8783|DEBUG|OnDoc| +2026-03-18 14:22:00.8783|DEBUG|OnDoc| +2026-03-18 14:22:00.9911|DEBUG|OnDoc| +2026-03-18 14:22:00.9911|DEBUG|OnDoc| +2026-03-18 14:22:01.0013|DEBUG|OnDoc| +2026-03-18 14:22:01.0013|DEBUG|OnDoc| +2026-03-18 14:22:01.0013|DEBUG|OnDoc| +2026-03-18 14:22:01.0013|DEBUG|OnDoc| +2026-03-18 14:22:01.0997|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:22:01.0997|DEBUG|OnDoc| +2026-03-18 14:22:01.1090|DEBUG|OnDoc| +2026-03-18 14:22:01.1090|DEBUG|OnDoc| +2026-03-18 14:22:01.1090|DEBUG|OnDoc| +2026-03-18 14:22:01.1090|DEBUG|OnDoc| +2026-03-18 14:22:01.1090|DEBUG|OnDoc| +2026-03-18 14:22:01.1090|DEBUG|OnDoc| +2026-03-18 14:22:01.1090|DEBUG|OnDoc| +2026-03-18 14:22:01.1215|DEBUG|OnDoc|Generate_Word +2026-03-18 14:22:01.1215|DEBUG|OnDoc|Word2013 +2026-03-18 14:22:01.1215|DEBUG|OnDoc|Word2013 +2026-03-18 14:22:03.0198|DEBUG|OnDoc|Generate_Word +2026-03-18 14:22:03.0334|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016088 +2026-03-18 14:22:03.0334|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:22:03.0334|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:22:03.0334|DEBUG|OnDoc| +2026-03-18 14:22:03.0455|DEBUG|OnDoc| +2026-03-18 14:22:03.0455|DEBUG|OnDoc| +2026-03-18 14:22:03.0455|DEBUG|OnDoc| +2026-03-18 14:22:03.0455|DEBUG|OnDoc| +2026-03-18 14:22:03.0455|DEBUG|OnDoc| +2026-03-18 14:22:10.7574|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:22:10.9859|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:22:11.0975|INFO|APIDocLog|Input JSON +2026-03-18 14:22:11.1090|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1090|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1216|DEBUG|OnDoc| +2026-03-18 14:22:11.1378|DEBUG|OnDoc| +2026-03-18 14:22:11.1378|DEBUG|OnDoc| +2026-03-18 14:22:11.1378|DEBUG|OnDoc| +2026-03-18 14:22:11.2657|DEBUG|OnDoc| +2026-03-18 14:22:11.2657|DEBUG|OnDoc| +2026-03-18 14:22:11.2657|DEBUG|OnDoc| +2026-03-18 14:22:11.2657|DEBUG|OnDoc| +2026-03-18 14:22:11.2782|DEBUG|OnDoc| +2026-03-18 14:22:11.2782|DEBUG|OnDoc| +2026-03-18 14:22:11.3814|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:22:11.3814|DEBUG|OnDoc| +2026-03-18 14:22:11.3909|DEBUG|OnDoc| +2026-03-18 14:22:11.3909|DEBUG|OnDoc| +2026-03-18 14:22:11.3909|DEBUG|OnDoc| +2026-03-18 14:22:11.3909|DEBUG|OnDoc| +2026-03-18 14:22:11.3909|DEBUG|OnDoc| +2026-03-18 14:22:11.3909|DEBUG|OnDoc| +2026-03-18 14:22:11.4047|DEBUG|OnDoc| +2026-03-18 14:22:11.4047|DEBUG|OnDoc|Generate_Word +2026-03-18 14:22:11.4047|DEBUG|OnDoc|Word2013 +2026-03-18 14:22:11.4047|DEBUG|OnDoc|Word2013 +2026-03-18 14:22:13.2722|DEBUG|OnDoc|Generate_Word +2026-03-18 14:22:13.2845|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016093 +2026-03-18 14:22:13.2845|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:22:13.2845|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:22:13.2845|DEBUG|OnDoc| +2026-03-18 14:22:13.2845|DEBUG|OnDoc| +2026-03-18 14:22:13.2845|DEBUG|OnDoc| +2026-03-18 14:22:13.2845|DEBUG|OnDoc| +2026-03-18 14:22:13.2845|DEBUG|OnDoc| +2026-03-18 14:22:13.2845|DEBUG|OnDoc| +2026-03-18 14:22:34.5708|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:22:34.7959|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:22:34.9066|INFO|APIDocLog|Input JSON +2026-03-18 14:22:34.9066|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:22:34.9066|DEBUG|OnDoc| +2026-03-18 14:22:34.9066|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9195|DEBUG|OnDoc| +2026-03-18 14:22:34.9548|DEBUG|OnDoc| +2026-03-18 14:22:34.9548|DEBUG|OnDoc| +2026-03-18 14:22:35.0688|DEBUG|OnDoc| +2026-03-18 14:22:35.0688|DEBUG|OnDoc| +2026-03-18 14:22:35.0789|DEBUG|OnDoc| +2026-03-18 14:22:35.0789|DEBUG|OnDoc| +2026-03-18 14:22:35.0789|DEBUG|OnDoc| +2026-03-18 14:22:35.0789|DEBUG|OnDoc| +2026-03-18 14:22:35.1816|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:22:35.1816|DEBUG|OnDoc| +2026-03-18 14:22:35.1896|DEBUG|OnDoc| +2026-03-18 14:22:35.1896|DEBUG|OnDoc| +2026-03-18 14:22:35.1896|DEBUG|OnDoc| +2026-03-18 14:22:35.1896|DEBUG|OnDoc| +2026-03-18 14:22:35.1896|DEBUG|OnDoc| +2026-03-18 14:22:35.1896|DEBUG|OnDoc| +2026-03-18 14:22:35.2042|DEBUG|OnDoc| +2026-03-18 14:22:35.2042|DEBUG|OnDoc|Generate_Word +2026-03-18 14:22:35.2229|DEBUG|OnDoc|Word2013 +2026-03-18 14:22:35.2229|DEBUG|OnDoc|Word2013 +2026-03-18 14:23:19.1991|DEBUG|OnDoc|Generate_Word +2026-03-18 14:23:19.2376|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016101 +2026-03-18 14:23:19.2376|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:23:19.2376|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:23:19.2376|DEBUG|OnDoc| +2026-03-18 14:23:19.2376|DEBUG|OnDoc| +2026-03-18 14:23:19.2376|DEBUG|OnDoc| +2026-03-18 14:23:19.2376|DEBUG|OnDoc| +2026-03-18 14:23:19.2376|DEBUG|OnDoc| +2026-03-18 14:23:19.2376|DEBUG|OnDoc| +2026-03-18 14:23:38.0233|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:23:38.2404|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:23:38.3489|INFO|APIDocLog|Input JSON +2026-03-18 14:23:38.3585|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3585|DEBUG|OnDoc| +2026-03-18 14:23:38.3720|DEBUG|OnDoc| +2026-03-18 14:23:38.3720|DEBUG|OnDoc| +2026-03-18 14:23:38.3937|DEBUG|OnDoc| +2026-03-18 14:23:38.3937|DEBUG|OnDoc| +2026-03-18 14:23:38.5146|DEBUG|OnDoc| +2026-03-18 14:23:38.5146|DEBUG|OnDoc| +2026-03-18 14:23:38.5420|DEBUG|OnDoc| +2026-03-18 14:23:38.5460|DEBUG|OnDoc| +2026-03-18 14:23:38.5460|DEBUG|OnDoc| +2026-03-18 14:23:38.5460|DEBUG|OnDoc| +2026-03-18 14:23:38.6532|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:23:38.6532|DEBUG|OnDoc| +2026-03-18 14:23:38.6532|DEBUG|OnDoc| +2026-03-18 14:23:38.6532|DEBUG|OnDoc| +2026-03-18 14:23:38.6532|DEBUG|OnDoc| +2026-03-18 14:23:38.6532|DEBUG|OnDoc| +2026-03-18 14:23:38.6532|DEBUG|OnDoc| +2026-03-18 14:23:38.6532|DEBUG|OnDoc| +2026-03-18 14:23:38.6700|DEBUG|OnDoc| +2026-03-18 14:23:38.6700|DEBUG|OnDoc|Generate_Word +2026-03-18 14:23:38.6700|DEBUG|OnDoc|Word2013 +2026-03-18 14:23:38.6700|DEBUG|OnDoc|Word2013 +2026-03-18 14:24:05.6417|DEBUG|OnDoc|Generate_Word +2026-03-18 14:24:05.6808|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016116 +2026-03-18 14:24:05.6808|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:24:05.6808|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:24:05.6853|DEBUG|OnDoc| +2026-03-18 14:24:05.6853|DEBUG|OnDoc| +2026-03-18 14:24:05.6853|DEBUG|OnDoc| +2026-03-18 14:24:05.6853|DEBUG|OnDoc| +2026-03-18 14:24:05.6853|DEBUG|OnDoc| +2026-03-18 14:24:05.6853|DEBUG|OnDoc| +2026-03-18 14:24:47.1333|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:24:47.3668|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:24:47.5090|INFO|APIDocLog|Input JSON +2026-03-18 14:24:47.5205|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:24:47.5205|DEBUG|OnDoc| +2026-03-18 14:24:47.5205|DEBUG|OnDoc| +2026-03-18 14:24:47.5205|DEBUG|OnDoc| +2026-03-18 14:24:47.5205|DEBUG|OnDoc| +2026-03-18 14:24:47.5205|DEBUG|OnDoc| +2026-03-18 14:24:47.5205|DEBUG|OnDoc| +2026-03-18 14:24:47.5205|DEBUG|OnDoc| +2026-03-18 14:24:47.5205|DEBUG|OnDoc| +2026-03-18 14:24:47.5281|DEBUG|OnDoc| +2026-03-18 14:24:47.5281|DEBUG|OnDoc| +2026-03-18 14:24:47.5281|DEBUG|OnDoc| +2026-03-18 14:24:47.5281|DEBUG|OnDoc| +2026-03-18 14:24:47.5281|DEBUG|OnDoc| +2026-03-18 14:24:47.5281|DEBUG|OnDoc| +2026-03-18 14:24:47.5281|DEBUG|OnDoc| +2026-03-18 14:24:47.5281|DEBUG|OnDoc| +2026-03-18 14:24:47.5281|DEBUG|OnDoc| +2026-03-18 14:24:47.5281|DEBUG|OnDoc| +2026-03-18 14:24:47.5281|DEBUG|OnDoc| +2026-03-18 14:24:47.5281|DEBUG|OnDoc| +2026-03-18 14:24:47.5281|DEBUG|OnDoc| +2026-03-18 14:24:47.5436|DEBUG|OnDoc| +2026-03-18 14:24:47.5436|DEBUG|OnDoc| +2026-03-18 14:24:47.5436|DEBUG|OnDoc| +2026-03-18 14:24:47.5436|DEBUG|OnDoc| +2026-03-18 14:24:47.5436|DEBUG|OnDoc| +2026-03-18 14:24:47.5436|DEBUG|OnDoc| +2026-03-18 14:24:47.5436|DEBUG|OnDoc| +2026-03-18 14:24:47.5436|DEBUG|OnDoc| +2026-03-18 14:24:47.5436|DEBUG|OnDoc| +2026-03-18 14:24:47.5436|DEBUG|OnDoc| +2026-03-18 14:24:47.5436|DEBUG|OnDoc| +2026-03-18 14:24:47.5436|DEBUG|OnDoc| +2026-03-18 14:24:47.5436|DEBUG|OnDoc| +2026-03-18 14:24:47.5763|DEBUG|OnDoc| +2026-03-18 14:24:47.5763|DEBUG|OnDoc| +2026-03-18 14:24:47.7026|DEBUG|OnDoc| +2026-03-18 14:24:47.7026|DEBUG|OnDoc| +2026-03-18 14:24:47.7026|DEBUG|OnDoc| +2026-03-18 14:24:47.7026|DEBUG|OnDoc| +2026-03-18 14:24:47.7154|DEBUG|OnDoc| +2026-03-18 14:24:47.7154|DEBUG|OnDoc| +2026-03-18 14:24:47.8273|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:24:47.8273|DEBUG|OnDoc| +2026-03-18 14:24:47.8273|DEBUG|OnDoc| +2026-03-18 14:24:47.8409|DEBUG|OnDoc| +2026-03-18 14:24:47.8409|DEBUG|OnDoc| +2026-03-18 14:24:47.8409|DEBUG|OnDoc| +2026-03-18 14:24:47.8409|DEBUG|OnDoc| +2026-03-18 14:24:47.8565|DEBUG|OnDoc| +2026-03-18 14:24:47.8565|DEBUG|OnDoc| +2026-03-18 14:24:47.8565|DEBUG|OnDoc|Generate_Word +2026-03-18 14:24:47.8746|DEBUG|OnDoc|Word2013 +2026-03-18 14:24:47.8746|DEBUG|OnDoc|Word2013 +2026-03-18 14:24:52.6092|DEBUG|OnDoc|Generate_Word +2026-03-18 14:24:52.6509|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016124 +2026-03-18 14:24:52.6529|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:24:52.6529|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:24:52.6529|DEBUG|OnDoc| +2026-03-18 14:24:52.6529|DEBUG|OnDoc| +2026-03-18 14:24:52.6529|DEBUG|OnDoc| +2026-03-18 14:24:52.6529|DEBUG|OnDoc| +2026-03-18 14:24:52.6529|DEBUG|OnDoc| +2026-03-18 14:24:52.6529|DEBUG|OnDoc| +2026-03-18 14:27:19.5753|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:27:19.8248|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:27:19.9423|INFO|APIDocLog|Input JSON +2026-03-18 14:27:19.9525|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9525|DEBUG|OnDoc| +2026-03-18 14:27:19.9655|DEBUG|OnDoc| +2026-03-18 14:27:19.9655|DEBUG|OnDoc| +2026-03-18 14:27:19.9655|DEBUG|OnDoc| +2026-03-18 14:27:19.9655|DEBUG|OnDoc| +2026-03-18 14:27:19.9655|DEBUG|OnDoc| +2026-03-18 14:27:19.9655|DEBUG|OnDoc| +2026-03-18 14:27:19.9655|DEBUG|OnDoc| +2026-03-18 14:27:19.9655|DEBUG|OnDoc| +2026-03-18 14:27:19.9655|DEBUG|OnDoc| +2026-03-18 14:27:19.9655|DEBUG|OnDoc| +2026-03-18 14:27:19.9655|DEBUG|OnDoc| +2026-03-18 14:27:19.9918|DEBUG|OnDoc| +2026-03-18 14:27:19.9918|DEBUG|OnDoc| +2026-03-18 14:27:20.1180|DEBUG|OnDoc| +2026-03-18 14:27:20.1180|DEBUG|OnDoc| +2026-03-18 14:27:20.1283|DEBUG|OnDoc| +2026-03-18 14:27:20.1283|DEBUG|OnDoc| +2026-03-18 14:27:20.1283|DEBUG|OnDoc| +2026-03-18 14:27:20.1283|DEBUG|OnDoc| +2026-03-18 14:27:20.2445|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:27:20.2445|DEBUG|OnDoc| +2026-03-18 14:27:20.2557|DEBUG|OnDoc| +2026-03-18 14:27:20.2557|DEBUG|OnDoc| +2026-03-18 14:27:20.2557|DEBUG|OnDoc| +2026-03-18 14:27:20.2557|DEBUG|OnDoc| +2026-03-18 14:27:20.2623|DEBUG|OnDoc| +2026-03-18 14:27:20.2623|DEBUG|OnDoc| +2026-03-18 14:27:20.2623|DEBUG|OnDoc| +2026-03-18 14:27:20.2623|DEBUG|OnDoc|Generate_Word +2026-03-18 14:27:20.2623|DEBUG|OnDoc|Word2013 +2026-03-18 14:27:20.2623|DEBUG|OnDoc|Word2013 +2026-03-18 14:27:26.8872|DEBUG|OnDoc|Generate_Word +2026-03-18 14:27:26.9269|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016132 +2026-03-18 14:27:26.9269|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:27:26.9269|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:27:26.9269|DEBUG|OnDoc| +2026-03-18 14:27:26.9269|DEBUG|OnDoc| +2026-03-18 14:27:26.9343|DEBUG|OnDoc| +2026-03-18 14:27:26.9343|DEBUG|OnDoc| +2026-03-18 14:27:26.9343|DEBUG|OnDoc| +2026-03-18 14:27:26.9343|DEBUG|OnDoc| +2026-03-18 14:27:37.9464|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:27:38.1824|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:27:38.2972|INFO|APIDocLog|Input JSON +2026-03-18 14:27:38.2972|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:27:38.2972|DEBUG|OnDoc| +2026-03-18 14:27:38.2972|DEBUG|OnDoc| +2026-03-18 14:27:38.2972|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3095|DEBUG|OnDoc| +2026-03-18 14:27:38.3320|DEBUG|OnDoc| +2026-03-18 14:27:38.3320|DEBUG|OnDoc| +2026-03-18 14:27:38.4581|DEBUG|OnDoc| +2026-03-18 14:27:38.4581|DEBUG|OnDoc| +2026-03-18 14:27:38.4701|DEBUG|OnDoc| +2026-03-18 14:27:38.4701|DEBUG|OnDoc| +2026-03-18 14:27:38.4701|DEBUG|OnDoc| +2026-03-18 14:27:38.4701|DEBUG|OnDoc| +2026-03-18 14:27:38.5814|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:27:38.5814|DEBUG|OnDoc| +2026-03-18 14:27:38.5814|DEBUG|OnDoc| +2026-03-18 14:27:38.5814|DEBUG|OnDoc| +2026-03-18 14:27:38.5814|DEBUG|OnDoc| +2026-03-18 14:27:38.5814|DEBUG|OnDoc| +2026-03-18 14:27:38.5944|DEBUG|OnDoc| +2026-03-18 14:27:38.5944|DEBUG|OnDoc| +2026-03-18 14:27:38.5944|DEBUG|OnDoc| +2026-03-18 14:27:38.5944|DEBUG|OnDoc|Generate_Word +2026-03-18 14:27:38.6062|DEBUG|OnDoc|Word2013 +2026-03-18 14:27:38.6062|DEBUG|OnDoc|Word2013 +2026-03-18 14:27:40.6297|DEBUG|OnDoc|Generate_Word +2026-03-18 14:27:40.6399|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016148 +2026-03-18 14:27:40.6399|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:27:40.6399|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:27:40.6399|DEBUG|OnDoc| +2026-03-18 14:27:40.6399|DEBUG|OnDoc| +2026-03-18 14:27:40.6399|DEBUG|OnDoc| +2026-03-18 14:27:40.6399|DEBUG|OnDoc| +2026-03-18 14:27:40.6399|DEBUG|OnDoc| +2026-03-18 14:27:40.6399|DEBUG|OnDoc| +2026-03-18 14:27:59.8605|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:28:00.0953|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:28:00.2077|INFO|APIDocLog|Input JSON +2026-03-18 14:28:00.2188|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2188|DEBUG|OnDoc| +2026-03-18 14:28:00.2316|DEBUG|OnDoc| +2026-03-18 14:28:00.2316|DEBUG|OnDoc| +2026-03-18 14:28:00.2316|DEBUG|OnDoc| +2026-03-18 14:28:00.2316|DEBUG|OnDoc| +2026-03-18 14:28:00.2316|DEBUG|OnDoc| +2026-03-18 14:28:00.2316|DEBUG|OnDoc| +2026-03-18 14:28:00.2316|DEBUG|OnDoc| +2026-03-18 14:28:00.2316|DEBUG|OnDoc| +2026-03-18 14:28:00.2316|DEBUG|OnDoc| +2026-03-18 14:28:00.2316|DEBUG|OnDoc| +2026-03-18 14:28:00.2316|DEBUG|OnDoc| +2026-03-18 14:28:00.2316|DEBUG|OnDoc| +2026-03-18 14:28:00.2316|DEBUG|OnDoc| +2026-03-18 14:28:00.2316|DEBUG|OnDoc| +2026-03-18 14:28:00.2548|DEBUG|OnDoc| +2026-03-18 14:28:00.2548|DEBUG|OnDoc| +2026-03-18 14:28:00.3829|DEBUG|OnDoc| +2026-03-18 14:28:00.3829|DEBUG|OnDoc| +2026-03-18 14:28:00.3936|DEBUG|OnDoc| +2026-03-18 14:28:00.3936|DEBUG|OnDoc| +2026-03-18 14:28:00.3936|DEBUG|OnDoc| +2026-03-18 14:28:00.3936|DEBUG|OnDoc| +2026-03-18 14:28:00.5084|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:28:00.5084|DEBUG|OnDoc| +2026-03-18 14:28:00.5180|DEBUG|OnDoc| +2026-03-18 14:28:00.5180|DEBUG|OnDoc| +2026-03-18 14:28:00.5180|DEBUG|OnDoc| +2026-03-18 14:28:00.5180|DEBUG|OnDoc| +2026-03-18 14:28:00.5277|DEBUG|OnDoc| +2026-03-18 14:28:00.5277|DEBUG|OnDoc| +2026-03-18 14:28:00.5277|DEBUG|OnDoc| +2026-03-18 14:28:00.5277|DEBUG|OnDoc|Generate_Word +2026-03-18 14:28:00.5277|DEBUG|OnDoc|Word2013 +2026-03-18 14:28:00.5448|DEBUG|OnDoc|Word2013 +2026-03-18 14:28:02.4390|DEBUG|OnDoc|Generate_Word +2026-03-18 14:28:02.4505|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016153 +2026-03-18 14:28:02.4505|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:28:02.4505|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:28:02.4505|DEBUG|OnDoc| +2026-03-18 14:28:02.4505|DEBUG|OnDoc| +2026-03-18 14:28:02.4505|DEBUG|OnDoc| +2026-03-18 14:28:02.4505|DEBUG|OnDoc| +2026-03-18 14:28:02.4505|DEBUG|OnDoc| +2026-03-18 14:28:02.4505|DEBUG|OnDoc| +2026-03-18 14:28:33.0461|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:28:33.3312|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:28:33.4620|INFO|APIDocLog|Input JSON +2026-03-18 14:28:33.4730|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:28:33.4730|DEBUG|OnDoc| +2026-03-18 14:28:33.4730|DEBUG|OnDoc| +2026-03-18 14:28:33.4730|DEBUG|OnDoc| +2026-03-18 14:28:33.4730|DEBUG|OnDoc| +2026-03-18 14:28:33.4730|DEBUG|OnDoc| +2026-03-18 14:28:33.4730|DEBUG|OnDoc| +2026-03-18 14:28:33.4730|DEBUG|OnDoc| +2026-03-18 14:28:33.4730|DEBUG|OnDoc| +2026-03-18 14:28:33.4730|DEBUG|OnDoc| +2026-03-18 14:28:33.4730|DEBUG|OnDoc| +2026-03-18 14:28:33.4730|DEBUG|OnDoc| +2026-03-18 14:28:33.4730|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.4816|DEBUG|OnDoc| +2026-03-18 14:28:33.5156|DEBUG|OnDoc| +2026-03-18 14:28:33.5156|DEBUG|OnDoc| +2026-03-18 14:28:33.6592|DEBUG|OnDoc| +2026-03-18 14:28:33.6592|DEBUG|OnDoc| +2026-03-18 14:28:33.6747|DEBUG|OnDoc| +2026-03-18 14:28:33.6747|DEBUG|OnDoc| +2026-03-18 14:28:33.6747|DEBUG|OnDoc| +2026-03-18 14:28:33.6747|DEBUG|OnDoc| +2026-03-18 14:28:33.8127|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:28:33.8127|DEBUG|OnDoc| +2026-03-18 14:28:33.8127|DEBUG|OnDoc| +2026-03-18 14:28:33.8127|DEBUG|OnDoc| +2026-03-18 14:28:33.8127|DEBUG|OnDoc| +2026-03-18 14:28:33.8127|DEBUG|OnDoc| +2026-03-18 14:28:33.8263|DEBUG|OnDoc| +2026-03-18 14:28:33.8263|DEBUG|OnDoc| +2026-03-18 14:28:33.8263|DEBUG|OnDoc| +2026-03-18 14:28:33.8263|DEBUG|OnDoc|Generate_Word +2026-03-18 14:28:33.8468|DEBUG|OnDoc|Word2013 +2026-03-18 14:28:33.8468|DEBUG|OnDoc|Word2013 +2026-03-18 14:28:36.0336|DEBUG|OnDoc|Generate_Word +2026-03-18 14:28:36.0448|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016169 +2026-03-18 14:28:36.0448|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:28:36.0448|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:28:36.0448|DEBUG|OnDoc| +2026-03-18 14:28:36.0448|DEBUG|OnDoc| +2026-03-18 14:28:36.0448|DEBUG|OnDoc| +2026-03-18 14:28:36.0448|DEBUG|OnDoc| +2026-03-18 14:28:36.0448|DEBUG|OnDoc| +2026-03-18 14:28:36.0448|DEBUG|OnDoc| +2026-03-18 14:28:47.9424|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:28:48.2078|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:28:48.3372|INFO|APIDocLog|Input JSON +2026-03-18 14:28:48.3487|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:28:48.3487|DEBUG|OnDoc| +2026-03-18 14:28:48.3487|DEBUG|OnDoc| +2026-03-18 14:28:48.3487|DEBUG|OnDoc| +2026-03-18 14:28:48.3487|DEBUG|OnDoc| +2026-03-18 14:28:48.3487|DEBUG|OnDoc| +2026-03-18 14:28:48.3487|DEBUG|OnDoc| +2026-03-18 14:28:48.3487|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3563|DEBUG|OnDoc| +2026-03-18 14:28:48.3725|DEBUG|OnDoc| +2026-03-18 14:28:48.3725|DEBUG|OnDoc| +2026-03-18 14:28:48.3725|DEBUG|OnDoc| +2026-03-18 14:28:48.3725|DEBUG|OnDoc| +2026-03-18 14:28:48.3725|DEBUG|OnDoc| +2026-03-18 14:28:48.3725|DEBUG|OnDoc| +2026-03-18 14:28:48.3725|DEBUG|OnDoc| +2026-03-18 14:28:48.3725|DEBUG|OnDoc| +2026-03-18 14:28:48.3999|DEBUG|OnDoc| +2026-03-18 14:28:48.4029|DEBUG|OnDoc| +2026-03-18 14:28:48.5396|DEBUG|OnDoc| +2026-03-18 14:28:48.5396|DEBUG|OnDoc| +2026-03-18 14:28:48.5514|DEBUG|OnDoc| +2026-03-18 14:28:48.5514|DEBUG|OnDoc| +2026-03-18 14:28:48.5514|DEBUG|OnDoc| +2026-03-18 14:28:48.5514|DEBUG|OnDoc| +2026-03-18 14:28:48.6736|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:28:48.6736|DEBUG|OnDoc| +2026-03-18 14:28:48.6839|DEBUG|OnDoc| +2026-03-18 14:28:48.6839|DEBUG|OnDoc| +2026-03-18 14:28:48.6839|DEBUG|OnDoc| +2026-03-18 14:28:48.6839|DEBUG|OnDoc| +2026-03-18 14:28:48.6839|DEBUG|OnDoc| +2026-03-18 14:28:48.6839|DEBUG|OnDoc| +2026-03-18 14:28:48.6839|DEBUG|OnDoc| +2026-03-18 14:28:48.7000|DEBUG|OnDoc|Generate_Word +2026-03-18 14:28:48.7000|DEBUG|OnDoc|Word2013 +2026-03-18 14:28:48.7000|DEBUG|OnDoc|Word2013 +2026-03-18 14:28:50.8558|DEBUG|OnDoc|Generate_Word +2026-03-18 14:28:50.8558|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016177 +2026-03-18 14:28:50.8558|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:28:50.8558|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:28:50.8715|DEBUG|OnDoc| +2026-03-18 14:28:50.8715|DEBUG|OnDoc| +2026-03-18 14:28:50.8715|DEBUG|OnDoc| +2026-03-18 14:28:50.8715|DEBUG|OnDoc| +2026-03-18 14:28:50.8715|DEBUG|OnDoc| +2026-03-18 14:28:50.8715|DEBUG|OnDoc| +2026-03-18 14:29:04.7784|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:29:05.0456|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:29:05.1735|INFO|APIDocLog|Input JSON +2026-03-18 14:29:05.1846|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.1846|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2006|DEBUG|OnDoc| +2026-03-18 14:29:05.2247|DEBUG|OnDoc| +2026-03-18 14:29:05.2247|DEBUG|OnDoc| +2026-03-18 14:29:05.3687|DEBUG|OnDoc| +2026-03-18 14:29:05.3687|DEBUG|OnDoc| +2026-03-18 14:29:05.3823|DEBUG|OnDoc| +2026-03-18 14:29:05.3823|DEBUG|OnDoc| +2026-03-18 14:29:05.3823|DEBUG|OnDoc| +2026-03-18 14:29:05.3823|DEBUG|OnDoc| +2026-03-18 14:29:05.5085|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:29:05.5085|DEBUG|OnDoc| +2026-03-18 14:29:05.5176|DEBUG|OnDoc| +2026-03-18 14:29:05.5176|DEBUG|OnDoc| +2026-03-18 14:29:05.5176|DEBUG|OnDoc| +2026-03-18 14:29:05.5176|DEBUG|OnDoc| +2026-03-18 14:29:05.5176|DEBUG|OnDoc| +2026-03-18 14:29:05.5176|DEBUG|OnDoc| +2026-03-18 14:29:05.5319|DEBUG|OnDoc| +2026-03-18 14:29:05.5319|DEBUG|OnDoc|Generate_Word +2026-03-18 14:29:05.5319|DEBUG|OnDoc|Word2013 +2026-03-18 14:29:05.5319|DEBUG|OnDoc|Word2013 +2026-03-18 14:29:07.7681|DEBUG|OnDoc|Generate_Word +2026-03-18 14:29:07.7809|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016185 +2026-03-18 14:29:07.7809|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:29:07.7809|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:29:07.7809|DEBUG|OnDoc| +2026-03-18 14:29:07.7945|DEBUG|OnDoc| +2026-03-18 14:29:07.7945|DEBUG|OnDoc| +2026-03-18 14:29:07.7945|DEBUG|OnDoc| +2026-03-18 14:29:07.7945|DEBUG|OnDoc| +2026-03-18 14:29:07.7945|DEBUG|OnDoc| +2026-03-18 14:29:15.6185|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:29:15.8725|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:29:15.9914|INFO|APIDocLog|Input JSON +2026-03-18 14:29:16.0028|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:29:16.0028|DEBUG|OnDoc| +2026-03-18 14:29:16.0028|DEBUG|OnDoc| +2026-03-18 14:29:16.0028|DEBUG|OnDoc| +2026-03-18 14:29:16.0028|DEBUG|OnDoc| +2026-03-18 14:29:16.0028|DEBUG|OnDoc| +2026-03-18 14:29:16.0028|DEBUG|OnDoc| +2026-03-18 14:29:16.0028|DEBUG|OnDoc| +2026-03-18 14:29:16.0028|DEBUG|OnDoc| +2026-03-18 14:29:16.0028|DEBUG|OnDoc| +2026-03-18 14:29:16.0028|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0128|DEBUG|OnDoc| +2026-03-18 14:29:16.0280|DEBUG|OnDoc| +2026-03-18 14:29:16.0280|DEBUG|OnDoc| +2026-03-18 14:29:16.0280|DEBUG|OnDoc| +2026-03-18 14:29:16.0280|DEBUG|OnDoc| +2026-03-18 14:29:16.0280|DEBUG|OnDoc| +2026-03-18 14:29:16.0443|DEBUG|OnDoc| +2026-03-18 14:29:16.1839|DEBUG|OnDoc| +2026-03-18 14:29:16.1839|DEBUG|OnDoc| +2026-03-18 14:29:16.1839|DEBUG|OnDoc| +2026-03-18 14:29:16.1839|DEBUG|OnDoc| +2026-03-18 14:29:16.1996|DEBUG|OnDoc| +2026-03-18 14:29:16.1996|DEBUG|OnDoc| +2026-03-18 14:29:16.3193|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:29:16.3193|DEBUG|OnDoc| +2026-03-18 14:29:16.3270|DEBUG|OnDoc| +2026-03-18 14:29:16.3270|DEBUG|OnDoc| +2026-03-18 14:29:16.3270|DEBUG|OnDoc| +2026-03-18 14:29:16.3270|DEBUG|OnDoc| +2026-03-18 14:29:16.3270|DEBUG|OnDoc| +2026-03-18 14:29:16.3270|DEBUG|OnDoc| +2026-03-18 14:29:16.3428|DEBUG|OnDoc| +2026-03-18 14:29:16.3428|DEBUG|OnDoc|Generate_Word +2026-03-18 14:29:16.3617|DEBUG|OnDoc|Word2013 +2026-03-18 14:29:16.3617|DEBUG|OnDoc|Word2013 +2026-03-18 14:29:18.4274|DEBUG|OnDoc|Generate_Word +2026-03-18 14:29:18.4377|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016190 +2026-03-18 14:29:18.4377|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:29:18.4377|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:29:18.4377|DEBUG|OnDoc| +2026-03-18 14:29:18.4377|DEBUG|OnDoc| +2026-03-18 14:29:18.4377|DEBUG|OnDoc| +2026-03-18 14:29:18.4377|DEBUG|OnDoc| +2026-03-18 14:29:18.4377|DEBUG|OnDoc| +2026-03-18 14:29:18.4377|DEBUG|OnDoc| +2026-03-18 14:29:42.0587|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:29:42.3187|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:29:42.4425|INFO|APIDocLog|Input JSON +2026-03-18 14:29:42.4521|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4521|DEBUG|OnDoc| +2026-03-18 14:29:42.4657|DEBUG|OnDoc| +2026-03-18 14:29:42.4657|DEBUG|OnDoc| +2026-03-18 14:29:42.4657|DEBUG|OnDoc| +2026-03-18 14:29:42.4867|DEBUG|OnDoc| +2026-03-18 14:29:42.4867|DEBUG|OnDoc| +2026-03-18 14:29:42.6159|DEBUG|OnDoc| +2026-03-18 14:29:42.6159|DEBUG|OnDoc| +2026-03-18 14:29:42.6265|DEBUG|OnDoc| +2026-03-18 14:29:42.6265|DEBUG|OnDoc| +2026-03-18 14:29:42.6265|DEBUG|OnDoc| +2026-03-18 14:29:42.6265|DEBUG|OnDoc| +2026-03-18 14:29:42.7459|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:29:42.7474|DEBUG|OnDoc| +2026-03-18 14:29:42.7474|DEBUG|OnDoc| +2026-03-18 14:29:42.7474|DEBUG|OnDoc| +2026-03-18 14:29:42.7474|DEBUG|OnDoc| +2026-03-18 14:29:42.7474|DEBUG|OnDoc| +2026-03-18 14:29:42.7639|DEBUG|OnDoc| +2026-03-18 14:29:42.7639|DEBUG|OnDoc| +2026-03-18 14:29:42.7639|DEBUG|OnDoc| +2026-03-18 14:29:42.7639|DEBUG|OnDoc|Generate_Word +2026-03-18 14:29:42.7639|DEBUG|OnDoc|Word2013 +2026-03-18 14:29:42.7639|DEBUG|OnDoc|Word2013 +2026-03-18 14:29:44.8565|DEBUG|OnDoc|Generate_Word +2026-03-18 14:29:44.8565|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016204 +2026-03-18 14:29:44.8565|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:29:44.8565|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:29:44.8565|DEBUG|OnDoc| +2026-03-18 14:29:44.8716|DEBUG|OnDoc| +2026-03-18 14:29:44.8716|DEBUG|OnDoc| +2026-03-18 14:29:44.8716|DEBUG|OnDoc| +2026-03-18 14:29:44.8716|DEBUG|OnDoc| +2026-03-18 14:29:44.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.3586|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:30:54.6503|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:30:54.8576|INFO|APIDocLog|Input JSON +2026-03-18 14:30:54.8576|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:30:54.8576|DEBUG|OnDoc| +2026-03-18 14:30:54.8576|DEBUG|OnDoc| +2026-03-18 14:30:54.8576|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8716|DEBUG|OnDoc| +2026-03-18 14:30:54.8872|DEBUG|OnDoc| +2026-03-18 14:30:54.8872|DEBUG|OnDoc| +2026-03-18 14:30:54.8872|DEBUG|OnDoc| +2026-03-18 14:30:54.8872|DEBUG|OnDoc| +2026-03-18 14:30:54.8872|DEBUG|OnDoc| +2026-03-18 14:30:54.8872|DEBUG|OnDoc| +2026-03-18 14:30:54.8872|DEBUG|OnDoc| +2026-03-18 14:30:54.8872|DEBUG|OnDoc| +2026-03-18 14:30:54.8872|DEBUG|OnDoc| +2026-03-18 14:30:54.9139|DEBUG|OnDoc| +2026-03-18 14:30:54.9139|DEBUG|OnDoc| +2026-03-18 14:30:55.0616|DEBUG|OnDoc| +2026-03-18 14:30:55.0616|DEBUG|OnDoc| +2026-03-18 14:30:55.0751|DEBUG|OnDoc| +2026-03-18 14:30:55.0751|DEBUG|OnDoc| +2026-03-18 14:30:55.0751|DEBUG|OnDoc| +2026-03-18 14:30:55.0751|DEBUG|OnDoc| +2026-03-18 14:30:55.2072|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:30:55.2072|DEBUG|OnDoc| +2026-03-18 14:30:55.2173|DEBUG|OnDoc| +2026-03-18 14:30:55.2173|DEBUG|OnDoc| +2026-03-18 14:30:55.2173|DEBUG|OnDoc| +2026-03-18 14:30:55.2173|DEBUG|OnDoc| +2026-03-18 14:30:55.2173|DEBUG|OnDoc| +2026-03-18 14:30:55.2173|DEBUG|OnDoc| +2026-03-18 14:30:55.2368|DEBUG|OnDoc| +2026-03-18 14:30:55.2368|DEBUG|OnDoc|Generate_Word +2026-03-18 14:30:55.2524|DEBUG|OnDoc|Word2013 +2026-03-18 14:30:55.2524|DEBUG|OnDoc|Word2013 +2026-03-18 14:30:57.5317|DEBUG|OnDoc|Generate_Word +2026-03-18 14:30:57.5434|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016212 +2026-03-18 14:30:57.5434|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:30:57.5434|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:30:57.5434|DEBUG|OnDoc| +2026-03-18 14:30:57.5434|DEBUG|OnDoc| +2026-03-18 14:30:57.5434|DEBUG|OnDoc| +2026-03-18 14:30:57.5434|DEBUG|OnDoc| +2026-03-18 14:30:57.5434|DEBUG|OnDoc| +2026-03-18 14:30:57.5434|DEBUG|OnDoc| +2026-03-18 14:31:11.2707|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:31:11.5570|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:31:11.6879|INFO|APIDocLog|Input JSON +2026-03-18 14:31:11.6879|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7004|DEBUG|OnDoc| +2026-03-18 14:31:11.7169|DEBUG|OnDoc| +2026-03-18 14:31:11.7169|DEBUG|OnDoc| +2026-03-18 14:31:11.7169|DEBUG|OnDoc| +2026-03-18 14:31:11.7169|DEBUG|OnDoc| +2026-03-18 14:31:11.7169|DEBUG|OnDoc| +2026-03-18 14:31:11.7169|DEBUG|OnDoc| +2026-03-18 14:31:11.7169|DEBUG|OnDoc| +2026-03-18 14:31:11.7169|DEBUG|OnDoc| +2026-03-18 14:31:11.7169|DEBUG|OnDoc| +2026-03-18 14:31:11.7169|DEBUG|OnDoc| +2026-03-18 14:31:11.7169|DEBUG|OnDoc| +2026-03-18 14:31:11.7169|DEBUG|OnDoc| +2026-03-18 14:31:11.7169|DEBUG|OnDoc| +2026-03-18 14:31:11.7169|DEBUG|OnDoc| +2026-03-18 14:31:11.7374|DEBUG|OnDoc| +2026-03-18 14:31:11.7374|DEBUG|OnDoc| +2026-03-18 14:31:11.8846|DEBUG|OnDoc| +2026-03-18 14:31:11.8871|DEBUG|OnDoc| +2026-03-18 14:31:11.8871|DEBUG|OnDoc| +2026-03-18 14:31:11.8871|DEBUG|OnDoc| +2026-03-18 14:31:11.8871|DEBUG|OnDoc| +2026-03-18 14:31:11.8871|DEBUG|OnDoc| +2026-03-18 14:31:12.0239|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:31:12.0239|DEBUG|OnDoc| +2026-03-18 14:31:12.0344|DEBUG|OnDoc| +2026-03-18 14:31:12.0344|DEBUG|OnDoc| +2026-03-18 14:31:12.0344|DEBUG|OnDoc| +2026-03-18 14:31:12.0344|DEBUG|OnDoc| +2026-03-18 14:31:12.0344|DEBUG|OnDoc| +2026-03-18 14:31:12.0434|DEBUG|OnDoc| +2026-03-18 14:31:12.0434|DEBUG|OnDoc| +2026-03-18 14:31:12.0434|DEBUG|OnDoc|Generate_Word +2026-03-18 14:31:12.0434|DEBUG|OnDoc|Word2013 +2026-03-18 14:31:12.0597|DEBUG|OnDoc|Word2013 +2026-03-18 14:31:14.2982|DEBUG|OnDoc|Generate_Word +2026-03-18 14:31:14.3099|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016228 +2026-03-18 14:31:14.3099|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:31:14.3099|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:31:14.3099|DEBUG|OnDoc| +2026-03-18 14:31:14.3099|DEBUG|OnDoc| +2026-03-18 14:31:14.3099|DEBUG|OnDoc| +2026-03-18 14:31:14.3099|DEBUG|OnDoc| +2026-03-18 14:31:14.3099|DEBUG|OnDoc| +2026-03-18 14:31:14.3099|DEBUG|OnDoc| +2026-03-18 14:31:24.6993|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:31:24.9766|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:31:25.1116|INFO|APIDocLog|Input JSON +2026-03-18 14:31:25.1236|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1236|DEBUG|OnDoc| +2026-03-18 14:31:25.1373|DEBUG|OnDoc| +2026-03-18 14:31:25.1373|DEBUG|OnDoc| +2026-03-18 14:31:25.1373|DEBUG|OnDoc| +2026-03-18 14:31:25.1373|DEBUG|OnDoc| +2026-03-18 14:31:25.1373|DEBUG|OnDoc| +2026-03-18 14:31:25.1373|DEBUG|OnDoc| +2026-03-18 14:31:25.1607|DEBUG|OnDoc| +2026-03-18 14:31:25.1607|DEBUG|OnDoc| +2026-03-18 14:31:25.3056|DEBUG|OnDoc| +2026-03-18 14:31:25.3056|DEBUG|OnDoc| +2026-03-18 14:31:25.3162|DEBUG|OnDoc| +2026-03-18 14:31:25.3162|DEBUG|OnDoc| +2026-03-18 14:31:25.3162|DEBUG|OnDoc| +2026-03-18 14:31:25.3162|DEBUG|OnDoc| +2026-03-18 14:31:25.4511|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:31:25.4511|DEBUG|OnDoc| +2026-03-18 14:31:25.4511|DEBUG|OnDoc| +2026-03-18 14:31:25.4511|DEBUG|OnDoc| +2026-03-18 14:31:25.4511|DEBUG|OnDoc| +2026-03-18 14:31:25.4511|DEBUG|OnDoc| +2026-03-18 14:31:25.4667|DEBUG|OnDoc| +2026-03-18 14:31:25.4667|DEBUG|OnDoc| +2026-03-18 14:31:25.4667|DEBUG|OnDoc| +2026-03-18 14:31:25.4667|DEBUG|OnDoc|Generate_Word +2026-03-18 14:31:25.4841|DEBUG|OnDoc|Word2013 +2026-03-18 14:31:25.4841|DEBUG|OnDoc|Word2013 +2026-03-18 14:31:27.7826|DEBUG|OnDoc|Generate_Word +2026-03-18 14:31:27.7945|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016233 +2026-03-18 14:31:27.7945|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:31:27.7945|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:31:27.7945|DEBUG|OnDoc| +2026-03-18 14:31:27.7945|DEBUG|OnDoc| +2026-03-18 14:31:27.7945|DEBUG|OnDoc| +2026-03-18 14:31:27.7945|DEBUG|OnDoc| +2026-03-18 14:31:27.7945|DEBUG|OnDoc| +2026-03-18 14:31:27.7945|DEBUG|OnDoc| +2026-03-18 14:43:07.9385|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:43:08.1895|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:43:08.3224|INFO|APIDocLog|Input JSON +2026-03-18 14:43:08.3339|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:43:08.3339|DEBUG|OnDoc| +2026-03-18 14:43:08.3339|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3401|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3561|DEBUG|OnDoc| +2026-03-18 14:43:08.3937|DEBUG|OnDoc| +2026-03-18 14:43:08.3937|DEBUG|OnDoc| +2026-03-18 14:43:08.5429|DEBUG|OnDoc| +2026-03-18 14:43:08.5449|DEBUG|OnDoc| +2026-03-18 14:43:08.5651|DEBUG|OnDoc| +2026-03-18 14:43:08.5651|DEBUG|OnDoc| +2026-03-18 14:43:08.5651|DEBUG|OnDoc| +2026-03-18 14:43:08.5651|DEBUG|OnDoc| +2026-03-18 14:43:08.6997|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:43:08.6997|DEBUG|OnDoc| +2026-03-18 14:43:08.7201|DEBUG|OnDoc| +2026-03-18 14:43:08.7201|DEBUG|OnDoc| +2026-03-18 14:43:08.7201|DEBUG|OnDoc| +2026-03-18 14:43:08.7201|DEBUG|OnDoc| +2026-03-18 14:43:08.7421|DEBUG|OnDoc| +2026-03-18 14:43:08.7421|DEBUG|OnDoc| +2026-03-18 14:43:08.7518|DEBUG|OnDoc| +2026-03-18 14:43:08.7518|DEBUG|OnDoc|Generate_Word +2026-03-18 14:43:08.7655|DEBUG|OnDoc|Word2013 +2026-03-18 14:43:08.7655|DEBUG|OnDoc|Word2013 +2026-03-18 14:49:10.0052|DEBUG|OnDoc|Generate_Word +2026-03-18 14:49:10.0472|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016249 +2026-03-18 14:49:10.0472|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:49:10.0472|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:49:10.0472|DEBUG|OnDoc| +2026-03-18 14:49:10.0597|DEBUG|OnDoc| +2026-03-18 14:49:10.0597|DEBUG|OnDoc| +2026-03-18 14:49:10.0597|DEBUG|OnDoc| +2026-03-18 14:49:10.0597|DEBUG|OnDoc| +2026-03-18 14:49:10.0597|DEBUG|OnDoc| +2026-03-18 14:49:28.7537|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:49:29.0274|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:49:29.1557|INFO|APIDocLog|Input JSON +2026-03-18 14:49:29.1557|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:49:29.1557|DEBUG|OnDoc| +2026-03-18 14:49:29.1557|DEBUG|OnDoc| +2026-03-18 14:49:29.1557|DEBUG|OnDoc| +2026-03-18 14:49:29.1557|DEBUG|OnDoc| +2026-03-18 14:49:29.1557|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1682|DEBUG|OnDoc| +2026-03-18 14:49:29.1926|DEBUG|OnDoc| +2026-03-18 14:49:29.1926|DEBUG|OnDoc| +2026-03-18 14:49:29.3342|DEBUG|OnDoc| +2026-03-18 14:49:29.3342|DEBUG|OnDoc| +2026-03-18 14:49:29.3447|DEBUG|OnDoc| +2026-03-18 14:49:29.3447|DEBUG|OnDoc| +2026-03-18 14:49:29.3447|DEBUG|OnDoc| +2026-03-18 14:49:29.3447|DEBUG|OnDoc| +2026-03-18 14:49:29.4720|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:49:29.4720|DEBUG|OnDoc| +2026-03-18 14:49:29.4818|DEBUG|OnDoc| +2026-03-18 14:49:29.4818|DEBUG|OnDoc| +2026-03-18 14:49:29.4818|DEBUG|OnDoc| +2026-03-18 14:49:29.4818|DEBUG|OnDoc| +2026-03-18 14:49:29.4818|DEBUG|OnDoc| +2026-03-18 14:49:29.4818|DEBUG|OnDoc| +2026-03-18 14:49:29.4818|DEBUG|OnDoc| +2026-03-18 14:49:29.4818|DEBUG|OnDoc|Generate_Word +2026-03-18 14:49:29.5041|DEBUG|OnDoc|Word2013 +2026-03-18 14:49:29.5041|DEBUG|OnDoc|Word2013 +2026-03-18 14:49:53.3062|DEBUG|OnDoc|Generate_Word +2026-03-18 14:49:53.3488|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016257 +2026-03-18 14:49:53.3488|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:49:53.3488|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:49:53.3567|DEBUG|OnDoc| +2026-03-18 14:49:53.3567|DEBUG|OnDoc| +2026-03-18 14:49:53.3567|DEBUG|OnDoc| +2026-03-18 14:49:53.3716|DEBUG|OnDoc| +2026-03-18 14:49:53.3716|DEBUG|OnDoc| +2026-03-18 14:49:53.3716|DEBUG|OnDoc| +2026-03-18 14:50:15.1660|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:50:15.4347|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:50:15.5704|INFO|APIDocLog|Input JSON +2026-03-18 14:50:15.5811|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:50:15.5811|DEBUG|OnDoc| +2026-03-18 14:50:15.5811|DEBUG|OnDoc| +2026-03-18 14:50:15.5811|DEBUG|OnDoc| +2026-03-18 14:50:15.5811|DEBUG|OnDoc| +2026-03-18 14:50:15.5811|DEBUG|OnDoc| +2026-03-18 14:50:15.5811|DEBUG|OnDoc| +2026-03-18 14:50:15.5811|DEBUG|OnDoc| +2026-03-18 14:50:15.5811|DEBUG|OnDoc| +2026-03-18 14:50:15.5811|DEBUG|OnDoc| +2026-03-18 14:50:15.5811|DEBUG|OnDoc| +2026-03-18 14:50:15.5811|DEBUG|OnDoc| +2026-03-18 14:50:15.5915|DEBUG|OnDoc| +2026-03-18 14:50:15.5915|DEBUG|OnDoc| +2026-03-18 14:50:15.5915|DEBUG|OnDoc| +2026-03-18 14:50:15.5915|DEBUG|OnDoc| +2026-03-18 14:50:15.5915|DEBUG|OnDoc| +2026-03-18 14:50:15.5915|DEBUG|OnDoc| +2026-03-18 14:50:15.5915|DEBUG|OnDoc| +2026-03-18 14:50:15.5915|DEBUG|OnDoc| +2026-03-18 14:50:15.5915|DEBUG|OnDoc| +2026-03-18 14:50:15.5915|DEBUG|OnDoc| +2026-03-18 14:50:15.5915|DEBUG|OnDoc| +2026-03-18 14:50:15.5915|DEBUG|OnDoc| +2026-03-18 14:50:15.6063|DEBUG|OnDoc| +2026-03-18 14:50:15.6063|DEBUG|OnDoc| +2026-03-18 14:50:15.6063|DEBUG|OnDoc| +2026-03-18 14:50:15.6063|DEBUG|OnDoc| +2026-03-18 14:50:15.6063|DEBUG|OnDoc| +2026-03-18 14:50:15.6063|DEBUG|OnDoc| +2026-03-18 14:50:15.6063|DEBUG|OnDoc| +2026-03-18 14:50:15.6063|DEBUG|OnDoc| +2026-03-18 14:50:15.6063|DEBUG|OnDoc| +2026-03-18 14:50:15.6063|DEBUG|OnDoc| +2026-03-18 14:50:15.6063|DEBUG|OnDoc| +2026-03-18 14:50:15.6240|DEBUG|OnDoc| +2026-03-18 14:50:15.6240|DEBUG|OnDoc| +2026-03-18 14:50:15.7665|DEBUG|OnDoc| +2026-03-18 14:50:15.7665|DEBUG|OnDoc| +2026-03-18 14:50:15.7872|DEBUG|OnDoc| +2026-03-18 14:50:15.7872|DEBUG|OnDoc| +2026-03-18 14:50:15.7872|DEBUG|OnDoc| +2026-03-18 14:50:15.7872|DEBUG|OnDoc| +2026-03-18 14:50:15.9312|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:50:15.9312|DEBUG|OnDoc| +2026-03-18 14:50:15.9527|DEBUG|OnDoc| +2026-03-18 14:50:15.9527|DEBUG|OnDoc| +2026-03-18 14:50:15.9527|DEBUG|OnDoc| +2026-03-18 14:50:15.9527|DEBUG|OnDoc| +2026-03-18 14:50:15.9670|DEBUG|OnDoc| +2026-03-18 14:50:15.9670|DEBUG|OnDoc| +2026-03-18 14:50:15.9670|DEBUG|OnDoc| +2026-03-18 14:50:15.9670|DEBUG|OnDoc|Generate_Word +2026-03-18 14:50:15.9879|DEBUG|OnDoc|Word2013 +2026-03-18 14:50:15.9879|DEBUG|OnDoc|Word2013 +2026-03-18 14:52:00.6278|DEBUG|OnDoc|Generate_Word +2026-03-18 14:52:00.6684|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016265 +2026-03-18 14:52:00.6684|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:52:00.6684|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:52:00.6684|DEBUG|OnDoc| +2026-03-18 14:52:00.6684|DEBUG|OnDoc| +2026-03-18 14:52:00.6684|DEBUG|OnDoc| +2026-03-18 14:52:00.6844|DEBUG|OnDoc| +2026-03-18 14:52:00.6844|DEBUG|OnDoc| +2026-03-18 14:52:00.6844|DEBUG|OnDoc| +2026-03-18 14:52:10.0453|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:52:10.3586|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:52:10.5134|INFO|APIDocLog|Input JSON +2026-03-18 14:52:10.5134|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:52:10.5134|DEBUG|OnDoc| +2026-03-18 14:52:10.5134|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5277|DEBUG|OnDoc| +2026-03-18 14:52:10.5438|DEBUG|OnDoc| +2026-03-18 14:52:10.5438|DEBUG|OnDoc| +2026-03-18 14:52:10.5438|DEBUG|OnDoc| +2026-03-18 14:52:10.5438|DEBUG|OnDoc| +2026-03-18 14:52:10.5438|DEBUG|OnDoc| +2026-03-18 14:52:10.5438|DEBUG|OnDoc| +2026-03-18 14:52:10.5438|DEBUG|OnDoc| +2026-03-18 14:52:10.5438|DEBUG|OnDoc| +2026-03-18 14:52:10.5438|DEBUG|OnDoc| +2026-03-18 14:52:10.5438|DEBUG|OnDoc| +2026-03-18 14:52:10.5438|DEBUG|OnDoc| +2026-03-18 14:52:10.5618|DEBUG|OnDoc| +2026-03-18 14:52:10.5618|DEBUG|OnDoc| +2026-03-18 14:52:10.7334|DEBUG|OnDoc| +2026-03-18 14:52:10.7334|DEBUG|OnDoc| +2026-03-18 14:52:10.7528|DEBUG|OnDoc| +2026-03-18 14:52:10.7528|DEBUG|OnDoc| +2026-03-18 14:52:10.7528|DEBUG|OnDoc| +2026-03-18 14:52:10.7528|DEBUG|OnDoc| +2026-03-18 14:52:10.9090|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:52:10.9090|DEBUG|OnDoc| +2026-03-18 14:52:10.9311|DEBUG|OnDoc| +2026-03-18 14:52:10.9311|DEBUG|OnDoc| +2026-03-18 14:52:10.9351|DEBUG|OnDoc| +2026-03-18 14:52:10.9351|DEBUG|OnDoc| +2026-03-18 14:52:10.9351|DEBUG|OnDoc| +2026-03-18 14:52:10.9351|DEBUG|OnDoc| +2026-03-18 14:52:10.9578|DEBUG|OnDoc| +2026-03-18 14:52:10.9578|DEBUG|OnDoc|Generate_Word +2026-03-18 14:52:10.9668|DEBUG|OnDoc|Word2013 +2026-03-18 14:52:10.9668|DEBUG|OnDoc|Word2013 +2026-03-18 14:53:48.9451|DEBUG|OnDoc|Generate_Word +2026-03-18 14:53:48.9861|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016270 +2026-03-18 14:53:48.9861|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:53:48.9861|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:53:48.9861|DEBUG|OnDoc| +2026-03-18 14:53:49.0074|DEBUG|OnDoc| +2026-03-18 14:53:49.0074|DEBUG|OnDoc| +2026-03-18 14:53:49.0119|DEBUG|OnDoc| +2026-03-18 14:53:49.0119|DEBUG|OnDoc| +2026-03-18 14:53:49.0119|DEBUG|OnDoc| +2026-03-18 14:54:21.1801|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:54:21.5418|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:54:21.7129|INFO|APIDocLog|Input JSON +2026-03-18 14:54:21.7237|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7237|DEBUG|OnDoc| +2026-03-18 14:54:21.7317|DEBUG|OnDoc| +2026-03-18 14:54:21.7317|DEBUG|OnDoc| +2026-03-18 14:54:21.7317|DEBUG|OnDoc| +2026-03-18 14:54:21.7317|DEBUG|OnDoc| +2026-03-18 14:54:21.7317|DEBUG|OnDoc| +2026-03-18 14:54:21.7317|DEBUG|OnDoc| +2026-03-18 14:54:21.7317|DEBUG|OnDoc| +2026-03-18 14:54:21.7317|DEBUG|OnDoc| +2026-03-18 14:54:21.7317|DEBUG|OnDoc| +2026-03-18 14:54:21.7317|DEBUG|OnDoc| +2026-03-18 14:54:21.7317|DEBUG|OnDoc| +2026-03-18 14:54:21.7317|DEBUG|OnDoc| +2026-03-18 14:54:21.7317|DEBUG|OnDoc| +2026-03-18 14:54:21.7317|DEBUG|OnDoc| +2026-03-18 14:54:21.7472|DEBUG|OnDoc| +2026-03-18 14:54:21.7472|DEBUG|OnDoc| +2026-03-18 14:54:21.9366|DEBUG|OnDoc| +2026-03-18 14:54:21.9366|DEBUG|OnDoc| +2026-03-18 14:54:21.9366|DEBUG|OnDoc| +2026-03-18 14:54:21.9366|DEBUG|OnDoc| +2026-03-18 14:54:21.9366|DEBUG|OnDoc| +2026-03-18 14:54:21.9366|DEBUG|OnDoc| +2026-03-18 14:54:22.1168|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:54:22.1168|DEBUG|OnDoc| +2026-03-18 14:54:22.1253|DEBUG|OnDoc| +2026-03-18 14:54:22.1253|DEBUG|OnDoc| +2026-03-18 14:54:22.1253|DEBUG|OnDoc| +2026-03-18 14:54:22.1253|DEBUG|OnDoc| +2026-03-18 14:54:22.1253|DEBUG|OnDoc| +2026-03-18 14:54:22.1253|DEBUG|OnDoc| +2026-03-18 14:54:22.1391|DEBUG|OnDoc| +2026-03-18 14:54:22.1391|DEBUG|OnDoc|Generate_Word +2026-03-18 14:54:22.1391|DEBUG|OnDoc|Word2013 +2026-03-18 14:54:22.1391|DEBUG|OnDoc|Word2013 +2026-03-18 14:54:59.8504|DEBUG|OnDoc|Generate_Word +2026-03-18 14:54:59.8911|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016281 +2026-03-18 14:54:59.8911|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:54:59.8911|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:54:59.8911|DEBUG|OnDoc| +2026-03-18 14:54:59.9041|DEBUG|OnDoc| +2026-03-18 14:54:59.9041|DEBUG|OnDoc| +2026-03-18 14:54:59.9041|DEBUG|OnDoc| +2026-03-18 14:54:59.9041|DEBUG|OnDoc| +2026-03-18 14:54:59.9041|DEBUG|OnDoc| +2026-03-18 14:55:21.4256|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:55:21.7757|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:55:21.9569|INFO|APIDocLog|Input JSON +2026-03-18 14:55:21.9678|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9678|DEBUG|OnDoc| +2026-03-18 14:55:21.9815|DEBUG|OnDoc| +2026-03-18 14:55:21.9815|DEBUG|OnDoc| +2026-03-18 14:55:21.9815|DEBUG|OnDoc| +2026-03-18 14:55:22.0040|DEBUG|OnDoc| +2026-03-18 14:55:22.0040|DEBUG|OnDoc| +2026-03-18 14:55:22.2161|DEBUG|OnDoc| +2026-03-18 14:55:22.2161|DEBUG|OnDoc| +2026-03-18 14:55:22.2392|DEBUG|OnDoc| +2026-03-18 14:55:22.2392|DEBUG|OnDoc| +2026-03-18 14:55:22.2392|DEBUG|OnDoc| +2026-03-18 14:55:22.2392|DEBUG|OnDoc| +2026-03-18 14:55:22.4270|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:55:22.4270|DEBUG|OnDoc| +2026-03-18 14:55:22.4513|DEBUG|OnDoc| +2026-03-18 14:55:22.4513|DEBUG|OnDoc| +2026-03-18 14:55:22.4513|DEBUG|OnDoc| +2026-03-18 14:55:22.4513|DEBUG|OnDoc| +2026-03-18 14:55:22.4513|DEBUG|OnDoc| +2026-03-18 14:55:22.4513|DEBUG|OnDoc| +2026-03-18 14:55:22.4686|DEBUG|OnDoc| +2026-03-18 14:55:22.4686|DEBUG|OnDoc|Generate_Word +2026-03-18 14:55:22.4686|DEBUG|OnDoc|Word2013 +2026-03-18 14:55:22.4686|DEBUG|OnDoc|Word2013 +2026-03-18 14:55:44.7225|DEBUG|OnDoc|Generate_Word +2026-03-18 14:55:44.7601|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016296 +2026-03-18 14:55:44.7601|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:55:44.7601|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:55:44.7626|DEBUG|OnDoc| +2026-03-18 14:55:44.7626|DEBUG|OnDoc| +2026-03-18 14:55:44.7626|DEBUG|OnDoc| +2026-03-18 14:55:44.7626|DEBUG|OnDoc| +2026-03-18 14:55:44.7626|DEBUG|OnDoc| +2026-03-18 14:55:44.7626|DEBUG|OnDoc| +2026-03-18 14:55:52.1612|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:55:52.5347|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:55:52.7050|INFO|APIDocLog|Input JSON +2026-03-18 14:55:52.7158|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:55:52.7158|DEBUG|OnDoc| +2026-03-18 14:55:52.7158|DEBUG|OnDoc| +2026-03-18 14:55:52.7158|DEBUG|OnDoc| +2026-03-18 14:55:52.7158|DEBUG|OnDoc| +2026-03-18 14:55:52.7158|DEBUG|OnDoc| +2026-03-18 14:55:52.7158|DEBUG|OnDoc| +2026-03-18 14:55:52.7158|DEBUG|OnDoc| +2026-03-18 14:55:52.7158|DEBUG|OnDoc| +2026-03-18 14:55:52.7158|DEBUG|OnDoc| +2026-03-18 14:55:52.7158|DEBUG|OnDoc| +2026-03-18 14:55:52.7158|DEBUG|OnDoc| +2026-03-18 14:55:52.7158|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7312|DEBUG|OnDoc| +2026-03-18 14:55:52.7469|DEBUG|OnDoc| +2026-03-18 14:55:52.7469|DEBUG|OnDoc| +2026-03-18 14:55:52.7469|DEBUG|OnDoc| +2026-03-18 14:55:52.7469|DEBUG|OnDoc| +2026-03-18 14:55:52.7469|DEBUG|OnDoc| +2026-03-18 14:55:52.7469|DEBUG|OnDoc| +2026-03-18 14:55:52.7469|DEBUG|OnDoc| +2026-03-18 14:55:52.7760|DEBUG|OnDoc| +2026-03-18 14:55:52.7790|DEBUG|OnDoc| +2026-03-18 14:55:52.9720|DEBUG|OnDoc| +2026-03-18 14:55:52.9720|DEBUG|OnDoc| +2026-03-18 14:55:52.9974|DEBUG|OnDoc| +2026-03-18 14:55:52.9974|DEBUG|OnDoc| +2026-03-18 14:55:52.9974|DEBUG|OnDoc| +2026-03-18 14:55:52.9974|DEBUG|OnDoc| +2026-03-18 14:55:53.1821|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:55:53.1853|DEBUG|OnDoc| +2026-03-18 14:55:53.2066|DEBUG|OnDoc| +2026-03-18 14:55:53.2066|DEBUG|OnDoc| +2026-03-18 14:55:53.2066|DEBUG|OnDoc| +2026-03-18 14:55:53.2066|DEBUG|OnDoc| +2026-03-18 14:55:53.2197|DEBUG|OnDoc| +2026-03-18 14:55:53.2197|DEBUG|OnDoc| +2026-03-18 14:55:53.2197|DEBUG|OnDoc| +2026-03-18 14:55:53.2197|DEBUG|OnDoc|Generate_Word +2026-03-18 14:55:53.2386|DEBUG|OnDoc|Word2013 +2026-03-18 14:55:53.2386|DEBUG|OnDoc|Word2013 +2026-03-18 14:56:01.1188|DEBUG|OnDoc|Generate_Word +2026-03-18 14:56:01.1604|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016308 +2026-03-18 14:56:01.1604|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:56:01.1604|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:56:01.1604|DEBUG|OnDoc| +2026-03-18 14:56:01.1775|DEBUG|OnDoc| +2026-03-18 14:56:01.1775|DEBUG|OnDoc| +2026-03-18 14:56:01.1775|DEBUG|OnDoc| +2026-03-18 14:56:01.1775|DEBUG|OnDoc| +2026-03-18 14:56:01.1775|DEBUG|OnDoc| +2026-03-18 14:56:12.2224|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:56:12.5978|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:56:12.7776|INFO|APIDocLog|Input JSON +2026-03-18 14:56:12.7776|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:56:12.7776|DEBUG|OnDoc| +2026-03-18 14:56:12.7776|DEBUG|OnDoc| +2026-03-18 14:56:12.7776|DEBUG|OnDoc| +2026-03-18 14:56:12.7940|DEBUG|OnDoc| +2026-03-18 14:56:12.7940|DEBUG|OnDoc| +2026-03-18 14:56:12.7940|DEBUG|OnDoc| +2026-03-18 14:56:12.7940|DEBUG|OnDoc| +2026-03-18 14:56:12.7940|DEBUG|OnDoc| +2026-03-18 14:56:12.7940|DEBUG|OnDoc| +2026-03-18 14:56:12.7940|DEBUG|OnDoc| +2026-03-18 14:56:12.7940|DEBUG|OnDoc| +2026-03-18 14:56:12.7940|DEBUG|OnDoc| +2026-03-18 14:56:12.7940|DEBUG|OnDoc| +2026-03-18 14:56:12.7940|DEBUG|OnDoc| +2026-03-18 14:56:12.7940|DEBUG|OnDoc| +2026-03-18 14:56:12.7940|DEBUG|OnDoc| +2026-03-18 14:56:12.7940|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8089|DEBUG|OnDoc| +2026-03-18 14:56:12.8416|DEBUG|OnDoc| +2026-03-18 14:56:12.8416|DEBUG|OnDoc| +2026-03-18 14:56:13.0506|DEBUG|OnDoc| +2026-03-18 14:56:13.0506|DEBUG|OnDoc| +2026-03-18 14:56:13.0756|DEBUG|OnDoc| +2026-03-18 14:56:13.0756|DEBUG|OnDoc| +2026-03-18 14:56:13.0756|DEBUG|OnDoc| +2026-03-18 14:56:13.0756|DEBUG|OnDoc| +2026-03-18 14:56:13.2672|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:56:13.2672|DEBUG|OnDoc| +2026-03-18 14:56:13.2802|DEBUG|OnDoc| +2026-03-18 14:56:13.2802|DEBUG|OnDoc| +2026-03-18 14:56:13.2802|DEBUG|OnDoc| +2026-03-18 14:56:13.2802|DEBUG|OnDoc| +2026-03-18 14:56:13.3026|DEBUG|OnDoc| +2026-03-18 14:56:13.3026|DEBUG|OnDoc| +2026-03-18 14:56:13.3142|DEBUG|OnDoc| +2026-03-18 14:56:13.3142|DEBUG|OnDoc|Generate_Word +2026-03-18 14:56:13.3288|DEBUG|OnDoc|Word2013 +2026-03-18 14:56:13.3288|DEBUG|OnDoc|Word2013 +2026-03-18 14:56:20.8760|DEBUG|OnDoc|Generate_Word +2026-03-18 14:56:20.9130|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016313 +2026-03-18 14:56:20.9130|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:56:20.9130|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:56:20.9130|DEBUG|OnDoc| +2026-03-18 14:56:20.9182|DEBUG|OnDoc| +2026-03-18 14:56:20.9182|DEBUG|OnDoc| +2026-03-18 14:56:20.9182|DEBUG|OnDoc| +2026-03-18 14:56:20.9182|DEBUG|OnDoc| +2026-03-18 14:56:20.9182|DEBUG|OnDoc| +2026-03-18 14:56:32.3682|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:56:32.7480|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:56:32.9194|INFO|APIDocLog|Input JSON +2026-03-18 14:56:32.9194|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:56:32.9194|DEBUG|OnDoc| +2026-03-18 14:56:32.9194|DEBUG|OnDoc| +2026-03-18 14:56:32.9194|DEBUG|OnDoc| +2026-03-18 14:56:32.9194|DEBUG|OnDoc| +2026-03-18 14:56:32.9194|DEBUG|OnDoc| +2026-03-18 14:56:32.9194|DEBUG|OnDoc| +2026-03-18 14:56:32.9194|DEBUG|OnDoc| +2026-03-18 14:56:32.9194|DEBUG|OnDoc| +2026-03-18 14:56:32.9194|DEBUG|OnDoc| +2026-03-18 14:56:32.9194|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9341|DEBUG|OnDoc| +2026-03-18 14:56:32.9646|DEBUG|OnDoc| +2026-03-18 14:56:32.9666|DEBUG|OnDoc| +2026-03-18 14:56:33.1507|DEBUG|OnDoc| +2026-03-18 14:56:33.1543|DEBUG|OnDoc| +2026-03-18 14:56:33.1543|DEBUG|OnDoc| +2026-03-18 14:56:33.1543|DEBUG|OnDoc| +2026-03-18 14:56:33.1543|DEBUG|OnDoc| +2026-03-18 14:56:33.1543|DEBUG|OnDoc| +2026-03-18 14:56:33.3315|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:56:33.3315|DEBUG|OnDoc| +2026-03-18 14:56:33.3315|DEBUG|OnDoc| +2026-03-18 14:56:33.3315|DEBUG|OnDoc| +2026-03-18 14:56:33.3315|DEBUG|OnDoc| +2026-03-18 14:56:33.3405|DEBUG|OnDoc| +2026-03-18 14:56:33.3405|DEBUG|OnDoc| +2026-03-18 14:56:33.3405|DEBUG|OnDoc| +2026-03-18 14:56:33.3563|DEBUG|OnDoc| +2026-03-18 14:56:33.3563|DEBUG|OnDoc|Generate_Word +2026-03-18 14:56:33.3563|DEBUG|OnDoc|Word2013 +2026-03-18 14:56:33.3563|DEBUG|OnDoc|Word2013 +2026-03-18 14:56:40.7457|DEBUG|OnDoc|Generate_Word +2026-03-18 14:56:40.7832|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016329 +2026-03-18 14:56:40.7832|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:56:40.7832|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:56:40.7832|DEBUG|OnDoc| +2026-03-18 14:56:40.7832|DEBUG|OnDoc| +2026-03-18 14:56:40.7832|DEBUG|OnDoc| +2026-03-18 14:56:40.7832|DEBUG|OnDoc| +2026-03-18 14:56:40.7938|DEBUG|OnDoc| +2026-03-18 14:56:40.7938|DEBUG|OnDoc| +2026-03-18 14:56:51.7290|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:56:52.1032|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:56:52.2730|INFO|APIDocLog|Input JSON +2026-03-18 14:56:52.2841|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:56:52.2841|DEBUG|OnDoc| +2026-03-18 14:56:52.2841|DEBUG|OnDoc| +2026-03-18 14:56:52.2841|DEBUG|OnDoc| +2026-03-18 14:56:52.2841|DEBUG|OnDoc| +2026-03-18 14:56:52.2841|DEBUG|OnDoc| +2026-03-18 14:56:52.2841|DEBUG|OnDoc| +2026-03-18 14:56:52.2841|DEBUG|OnDoc| +2026-03-18 14:56:52.2841|DEBUG|OnDoc| +2026-03-18 14:56:52.2943|DEBUG|OnDoc| +2026-03-18 14:56:52.2943|DEBUG|OnDoc| +2026-03-18 14:56:52.2943|DEBUG|OnDoc| +2026-03-18 14:56:52.2943|DEBUG|OnDoc| +2026-03-18 14:56:52.2943|DEBUG|OnDoc| +2026-03-18 14:56:52.2943|DEBUG|OnDoc| +2026-03-18 14:56:52.2943|DEBUG|OnDoc| +2026-03-18 14:56:52.2943|DEBUG|OnDoc| +2026-03-18 14:56:52.2943|DEBUG|OnDoc| +2026-03-18 14:56:52.2943|DEBUG|OnDoc| +2026-03-18 14:56:52.2943|DEBUG|OnDoc| +2026-03-18 14:56:52.2943|DEBUG|OnDoc| +2026-03-18 14:56:52.2943|DEBUG|OnDoc| +2026-03-18 14:56:52.3088|DEBUG|OnDoc| +2026-03-18 14:56:52.3088|DEBUG|OnDoc| +2026-03-18 14:56:52.3088|DEBUG|OnDoc| +2026-03-18 14:56:52.3088|DEBUG|OnDoc| +2026-03-18 14:56:52.3088|DEBUG|OnDoc| +2026-03-18 14:56:52.3088|DEBUG|OnDoc| +2026-03-18 14:56:52.3088|DEBUG|OnDoc| +2026-03-18 14:56:52.3088|DEBUG|OnDoc| +2026-03-18 14:56:52.3088|DEBUG|OnDoc| +2026-03-18 14:56:52.3088|DEBUG|OnDoc| +2026-03-18 14:56:52.3088|DEBUG|OnDoc| +2026-03-18 14:56:52.3088|DEBUG|OnDoc| +2026-03-18 14:56:52.3088|DEBUG|OnDoc| +2026-03-18 14:56:52.3408|DEBUG|OnDoc| +2026-03-18 14:56:52.3408|DEBUG|OnDoc| +2026-03-18 14:56:52.5513|DEBUG|OnDoc| +2026-03-18 14:56:52.5513|DEBUG|OnDoc| +2026-03-18 14:56:52.5643|DEBUG|OnDoc| +2026-03-18 14:56:52.5643|DEBUG|OnDoc| +2026-03-18 14:56:52.5643|DEBUG|OnDoc| +2026-03-18 14:56:52.5643|DEBUG|OnDoc| +2026-03-18 14:56:52.7501|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:56:52.7501|DEBUG|OnDoc| +2026-03-18 14:56:52.7654|DEBUG|OnDoc| +2026-03-18 14:56:52.7654|DEBUG|OnDoc| +2026-03-18 14:56:52.7654|DEBUG|OnDoc| +2026-03-18 14:56:52.7654|DEBUG|OnDoc| +2026-03-18 14:56:52.7796|DEBUG|OnDoc| +2026-03-18 14:56:52.7796|DEBUG|OnDoc| +2026-03-18 14:56:52.7796|DEBUG|OnDoc| +2026-03-18 14:56:52.7796|DEBUG|OnDoc|Generate_Word +2026-03-18 14:56:52.7998|DEBUG|OnDoc|Word2013 +2026-03-18 14:56:52.7998|DEBUG|OnDoc|Word2013 +2026-03-18 14:56:55.7942|DEBUG|OnDoc|Generate_Word +2026-03-18 14:56:55.8094|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016337 +2026-03-18 14:56:55.8094|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:56:55.8094|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:56:55.8094|DEBUG|OnDoc| +2026-03-18 14:56:55.8248|DEBUG|OnDoc| +2026-03-18 14:56:55.8248|DEBUG|OnDoc| +2026-03-18 14:56:55.8248|DEBUG|OnDoc| +2026-03-18 14:56:55.8248|DEBUG|OnDoc| +2026-03-18 14:56:55.8248|DEBUG|OnDoc| +2026-03-18 14:57:07.3710|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:57:07.7264|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:57:07.9021|INFO|APIDocLog|Input JSON +2026-03-18 14:57:07.9132|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:57:07.9132|DEBUG|OnDoc| +2026-03-18 14:57:07.9132|DEBUG|OnDoc| +2026-03-18 14:57:07.9132|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9183|DEBUG|OnDoc| +2026-03-18 14:57:07.9365|DEBUG|OnDoc| +2026-03-18 14:57:07.9365|DEBUG|OnDoc| +2026-03-18 14:57:07.9365|DEBUG|OnDoc| +2026-03-18 14:57:07.9365|DEBUG|OnDoc| +2026-03-18 14:57:07.9365|DEBUG|OnDoc| +2026-03-18 14:57:07.9365|DEBUG|OnDoc| +2026-03-18 14:57:07.9365|DEBUG|OnDoc| +2026-03-18 14:57:07.9365|DEBUG|OnDoc| +2026-03-18 14:57:07.9365|DEBUG|OnDoc| +2026-03-18 14:57:07.9365|DEBUG|OnDoc| +2026-03-18 14:57:07.9365|DEBUG|OnDoc| +2026-03-18 14:57:07.9365|DEBUG|OnDoc| +2026-03-18 14:57:07.9365|DEBUG|OnDoc| +2026-03-18 14:57:07.9365|DEBUG|OnDoc| +2026-03-18 14:57:07.9659|DEBUG|OnDoc| +2026-03-18 14:57:07.9659|DEBUG|OnDoc| +2026-03-18 14:57:08.1597|DEBUG|OnDoc| +2026-03-18 14:57:08.1597|DEBUG|OnDoc| +2026-03-18 14:57:08.1877|DEBUG|OnDoc| +2026-03-18 14:57:08.1877|DEBUG|OnDoc| +2026-03-18 14:57:08.1877|DEBUG|OnDoc| +2026-03-18 14:57:08.1877|DEBUG|OnDoc| +2026-03-18 14:57:08.3635|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:57:08.3635|DEBUG|OnDoc| +2026-03-18 14:57:08.3874|DEBUG|OnDoc| +2026-03-18 14:57:08.3874|DEBUG|OnDoc| +2026-03-18 14:57:08.3874|DEBUG|OnDoc| +2026-03-18 14:57:08.3874|DEBUG|OnDoc| +2026-03-18 14:57:08.4034|DEBUG|OnDoc| +2026-03-18 14:57:08.4034|DEBUG|OnDoc| +2026-03-18 14:57:08.4034|DEBUG|OnDoc| +2026-03-18 14:57:08.4034|DEBUG|OnDoc|Generate_Word +2026-03-18 14:57:08.4265|DEBUG|OnDoc|Word2013 +2026-03-18 14:57:08.4265|DEBUG|OnDoc|Word2013 +2026-03-18 14:57:11.3672|DEBUG|OnDoc|Generate_Word +2026-03-18 14:57:11.3823|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016345 +2026-03-18 14:57:11.3823|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:57:11.3823|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:57:11.3823|DEBUG|OnDoc| +2026-03-18 14:57:11.3985|DEBUG|OnDoc| +2026-03-18 14:57:11.3985|DEBUG|OnDoc| +2026-03-18 14:57:11.3985|DEBUG|OnDoc| +2026-03-18 14:57:11.4046|DEBUG|OnDoc| +2026-03-18 14:57:11.4046|DEBUG|OnDoc| +2026-03-18 14:57:41.7694|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 14:57:42.1655|INFO|APIDocLog|Start CreateDoc +2026-03-18 14:57:42.3626|INFO|APIDocLog|Input JSON +2026-03-18 14:57:42.3738|DEBUG|OnDoc|Start GenDoc +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3738|DEBUG|OnDoc| +2026-03-18 14:57:42.3872|DEBUG|OnDoc| +2026-03-18 14:57:42.3872|DEBUG|OnDoc| +2026-03-18 14:57:42.3872|DEBUG|OnDoc| +2026-03-18 14:57:42.3872|DEBUG|OnDoc| +2026-03-18 14:57:42.3872|DEBUG|OnDoc| +2026-03-18 14:57:42.3872|DEBUG|OnDoc| +2026-03-18 14:57:42.3872|DEBUG|OnDoc| +2026-03-18 14:57:42.3872|DEBUG|OnDoc| +2026-03-18 14:57:42.3872|DEBUG|OnDoc| +2026-03-18 14:57:42.3872|DEBUG|OnDoc| +2026-03-18 14:57:42.3872|DEBUG|OnDoc| +2026-03-18 14:57:42.4043|DEBUG|OnDoc| +2026-03-18 14:57:42.4043|DEBUG|OnDoc| +2026-03-18 14:57:42.6320|DEBUG|OnDoc| +2026-03-18 14:57:42.6320|DEBUG|OnDoc| +2026-03-18 14:57:42.6464|DEBUG|OnDoc| +2026-03-18 14:57:42.6464|DEBUG|OnDoc| +2026-03-18 14:57:42.6464|DEBUG|OnDoc| +2026-03-18 14:57:42.6464|DEBUG|OnDoc| +2026-03-18 14:57:42.8564|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 14:57:42.8564|DEBUG|OnDoc| +2026-03-18 14:57:42.8564|DEBUG|OnDoc| +2026-03-18 14:57:42.8564|DEBUG|OnDoc| +2026-03-18 14:57:42.8564|DEBUG|OnDoc| +2026-03-18 14:57:42.8564|DEBUG|OnDoc| +2026-03-18 14:57:42.8564|DEBUG|OnDoc| +2026-03-18 14:57:42.8564|DEBUG|OnDoc| +2026-03-18 14:57:42.8727|DEBUG|OnDoc| +2026-03-18 14:57:42.8727|DEBUG|OnDoc|Generate_Word +2026-03-18 14:57:42.8727|DEBUG|OnDoc|Word2013 +2026-03-18 14:57:42.8876|DEBUG|OnDoc|Word2013 +2026-03-18 14:57:46.1174|DEBUG|OnDoc|Generate_Word +2026-03-18 14:57:46.1539|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016350 +2026-03-18 14:57:46.1539|INFO|DocLog|Dokument über API erstellt +2026-03-18 14:57:46.1539|INFO|APIDocLog|Dokument return to sender +2026-03-18 14:57:46.1539|DEBUG|OnDoc| +2026-03-18 14:57:46.1539|DEBUG|OnDoc| +2026-03-18 14:57:46.1539|DEBUG|OnDoc| +2026-03-18 14:57:46.1539|DEBUG|OnDoc| +2026-03-18 14:57:46.1539|DEBUG|OnDoc| +2026-03-18 14:57:46.1539|DEBUG|OnDoc| +2026-03-18 15:34:26.2519|DEBUG|OnDoc| +2026-03-18 15:34:26.3429|DEBUG|OnDoc| +2026-03-18 15:34:26.3429|DEBUG|OnDoc| +2026-03-18 15:34:26.3429|DEBUG|OnDoc| +2026-03-18 15:34:26.6738|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:34:26.9552|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:34:27.0536|INFO|APIDocLog|Input JSON +2026-03-18 15:34:27.0746|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0746|DEBUG|OnDoc| +2026-03-18 15:34:27.0908|DEBUG|OnDoc| +2026-03-18 15:34:27.0908|DEBUG|OnDoc| +2026-03-18 15:34:27.0908|DEBUG|OnDoc| +2026-03-18 15:34:27.0908|DEBUG|OnDoc| +2026-03-18 15:34:27.0908|DEBUG|OnDoc| +2026-03-18 15:34:27.0908|DEBUG|OnDoc| +2026-03-18 15:34:27.0908|DEBUG|OnDoc| +2026-03-18 15:34:27.0908|DEBUG|OnDoc| +2026-03-18 15:34:27.0908|DEBUG|OnDoc| +2026-03-18 15:34:27.0908|DEBUG|OnDoc| +2026-03-18 15:34:27.0908|DEBUG|OnDoc| +2026-03-18 15:34:27.0908|DEBUG|OnDoc| +2026-03-18 15:34:27.0908|DEBUG|OnDoc| +2026-03-18 15:34:27.1063|DEBUG|OnDoc| +2026-03-18 15:34:27.1063|DEBUG|OnDoc| +2026-03-18 15:34:27.1063|DEBUG|OnDoc| +2026-03-18 15:34:27.1349|DEBUG|OnDoc| +2026-03-18 15:34:27.1374|DEBUG|OnDoc| +2026-03-18 15:34:27.1925|DEBUG|OnDoc| +2026-03-18 15:34:27.1925|DEBUG|OnDoc| +2026-03-18 15:34:27.2225|DEBUG|OnDoc| +2026-03-18 15:34:27.2225|DEBUG|OnDoc| +2026-03-18 15:34:27.2225|DEBUG|OnDoc| +2026-03-18 15:34:27.2225|DEBUG|OnDoc| +2026-03-18 15:34:27.2498|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:34:27.2498|DEBUG|OnDoc| +2026-03-18 15:34:27.2498|DEBUG|OnDoc| +2026-03-18 15:34:27.2498|DEBUG|OnDoc| +2026-03-18 15:34:27.2498|DEBUG|OnDoc| +2026-03-18 15:34:27.2627|DEBUG|OnDoc| +2026-03-18 15:34:27.2627|DEBUG|OnDoc| +2026-03-18 15:34:27.2627|DEBUG|OnDoc| +2026-03-18 15:34:27.2627|DEBUG|OnDoc| +2026-03-18 15:34:27.2627|DEBUG|OnDoc|Generate_Word +2026-03-18 15:34:27.9069|DEBUG|OnDoc|Word2013 +2026-03-18 15:34:27.9069|DEBUG|OnDoc|Word2013 +2026-03-18 15:34:29.9753|DEBUG|OnDoc|Generate_Word +2026-03-18 15:34:30.0235|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016361 +2026-03-18 15:34:30.0235|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:34:30.0235|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:34:30.0235|DEBUG|OnDoc| +2026-03-18 15:34:30.0310|DEBUG|OnDoc| +2026-03-18 15:34:30.0310|DEBUG|OnDoc| +2026-03-18 15:34:30.0310|DEBUG|OnDoc| +2026-03-18 15:34:30.0310|DEBUG|OnDoc| +2026-03-18 15:34:30.0310|DEBUG|OnDoc| +2026-03-18 15:35:10.1617|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:35:10.2379|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:35:10.2652|INFO|APIDocLog|Input JSON +2026-03-18 15:35:10.2652|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:35:10.2652|DEBUG|OnDoc| +2026-03-18 15:35:10.2652|DEBUG|OnDoc| +2026-03-18 15:35:10.2652|DEBUG|OnDoc| +2026-03-18 15:35:10.2652|DEBUG|OnDoc| +2026-03-18 15:35:10.2652|DEBUG|OnDoc| +2026-03-18 15:35:10.2652|DEBUG|OnDoc| +2026-03-18 15:35:10.2652|DEBUG|OnDoc| +2026-03-18 15:35:10.2652|DEBUG|OnDoc| +2026-03-18 15:35:10.2652|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2782|DEBUG|OnDoc| +2026-03-18 15:35:10.2932|DEBUG|OnDoc| +2026-03-18 15:35:10.2932|DEBUG|OnDoc| +2026-03-18 15:35:10.2932|DEBUG|OnDoc| +2026-03-18 15:35:10.3172|DEBUG|OnDoc| +2026-03-18 15:35:10.3172|DEBUG|OnDoc| +2026-03-18 15:35:10.3493|DEBUG|OnDoc| +2026-03-18 15:35:10.3493|DEBUG|OnDoc| +2026-03-18 15:35:10.3638|DEBUG|OnDoc| +2026-03-18 15:35:10.3638|DEBUG|OnDoc| +2026-03-18 15:35:10.3638|DEBUG|OnDoc| +2026-03-18 15:35:10.3638|DEBUG|OnDoc| +2026-03-18 15:35:10.3852|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:35:10.3852|DEBUG|OnDoc| +2026-03-18 15:35:10.3934|DEBUG|OnDoc| +2026-03-18 15:35:10.3934|DEBUG|OnDoc| +2026-03-18 15:35:10.3934|DEBUG|OnDoc| +2026-03-18 15:35:10.3934|DEBUG|OnDoc| +2026-03-18 15:35:10.3934|DEBUG|OnDoc| +2026-03-18 15:35:10.3934|DEBUG|OnDoc| +2026-03-18 15:35:10.4055|DEBUG|OnDoc| +2026-03-18 15:35:10.4055|DEBUG|OnDoc|Generate_Word +2026-03-18 15:35:10.4055|DEBUG|OnDoc|Word2013 +2026-03-18 15:35:10.4185|DEBUG|OnDoc|Word2013 +2026-03-18 15:35:11.1678|DEBUG|OnDoc|Generate_Word +2026-03-18 15:35:11.1783|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016376 +2026-03-18 15:35:11.1783|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:35:11.1783|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:35:11.1783|DEBUG|OnDoc| +2026-03-18 15:35:11.1783|DEBUG|OnDoc| +2026-03-18 15:35:11.1783|DEBUG|OnDoc| +2026-03-18 15:35:11.1783|DEBUG|OnDoc| +2026-03-18 15:35:11.1783|DEBUG|OnDoc| +2026-03-18 15:35:11.1783|DEBUG|OnDoc| +2026-03-18 15:36:02.1200|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:36:02.2146|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:36:02.2440|INFO|APIDocLog|Input JSON +2026-03-18 15:36:02.2470|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2470|DEBUG|OnDoc| +2026-03-18 15:36:02.2622|DEBUG|OnDoc| +2026-03-18 15:36:02.2622|DEBUG|OnDoc| +2026-03-18 15:36:02.2622|DEBUG|OnDoc| +2026-03-18 15:36:02.2622|DEBUG|OnDoc| +2026-03-18 15:36:02.2622|DEBUG|OnDoc| +2026-03-18 15:36:02.2622|DEBUG|OnDoc| +2026-03-18 15:36:02.2622|DEBUG|OnDoc| +2026-03-18 15:36:02.2622|DEBUG|OnDoc| +2026-03-18 15:36:02.2622|DEBUG|OnDoc| +2026-03-18 15:36:02.2622|DEBUG|OnDoc| +2026-03-18 15:36:02.2622|DEBUG|OnDoc| +2026-03-18 15:36:02.2622|DEBUG|OnDoc| +2026-03-18 15:36:02.2622|DEBUG|OnDoc| +2026-03-18 15:36:02.2903|DEBUG|OnDoc| +2026-03-18 15:36:02.2933|DEBUG|OnDoc| +2026-03-18 15:36:02.3211|DEBUG|OnDoc| +2026-03-18 15:36:02.3211|DEBUG|OnDoc| +2026-03-18 15:36:02.3316|DEBUG|OnDoc| +2026-03-18 15:36:02.3316|DEBUG|OnDoc| +2026-03-18 15:36:02.3316|DEBUG|OnDoc| +2026-03-18 15:36:02.3316|DEBUG|OnDoc| +2026-03-18 15:36:02.3549|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:36:02.3559|DEBUG|OnDoc| +2026-03-18 15:36:02.3559|DEBUG|OnDoc| +2026-03-18 15:36:02.3559|DEBUG|OnDoc| +2026-03-18 15:36:02.3559|DEBUG|OnDoc| +2026-03-18 15:36:02.3559|DEBUG|OnDoc| +2026-03-18 15:36:02.3729|DEBUG|OnDoc| +2026-03-18 15:36:02.3729|DEBUG|OnDoc| +2026-03-18 15:36:02.3729|DEBUG|OnDoc| +2026-03-18 15:36:02.3729|DEBUG|OnDoc|Generate_Word +2026-03-18 15:36:02.3872|DEBUG|OnDoc|Word2013 +2026-03-18 15:36:02.3872|DEBUG|OnDoc|Word2013 +2026-03-18 15:36:03.0171|DEBUG|OnDoc|Generate_Word +2026-03-18 15:36:03.0285|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016384 +2026-03-18 15:36:03.0285|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:36:03.0285|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:36:03.0285|DEBUG|OnDoc| +2026-03-18 15:36:03.0285|DEBUG|OnDoc| +2026-03-18 15:36:03.0285|DEBUG|OnDoc| +2026-03-18 15:36:03.0285|DEBUG|OnDoc| +2026-03-18 15:36:03.0285|DEBUG|OnDoc| +2026-03-18 15:36:03.0285|DEBUG|OnDoc| +2026-03-18 15:36:15.8641|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:36:15.9585|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:36:15.9861|INFO|APIDocLog|Input JSON +2026-03-18 15:36:15.9861|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:36:15.9861|DEBUG|OnDoc| +2026-03-18 15:36:15.9861|DEBUG|OnDoc| +2026-03-18 15:36:15.9861|DEBUG|OnDoc| +2026-03-18 15:36:15.9861|DEBUG|OnDoc| +2026-03-18 15:36:15.9861|DEBUG|OnDoc| +2026-03-18 15:36:15.9861|DEBUG|OnDoc| +2026-03-18 15:36:15.9861|DEBUG|OnDoc| +2026-03-18 15:36:15.9861|DEBUG|OnDoc| +2026-03-18 15:36:15.9861|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:15.9967|DEBUG|OnDoc| +2026-03-18 15:36:16.0212|DEBUG|OnDoc| +2026-03-18 15:36:16.0212|DEBUG|OnDoc| +2026-03-18 15:36:16.0514|DEBUG|OnDoc| +2026-03-18 15:36:16.0514|DEBUG|OnDoc| +2026-03-18 15:36:16.0630|DEBUG|OnDoc| +2026-03-18 15:36:16.0630|DEBUG|OnDoc| +2026-03-18 15:36:16.0630|DEBUG|OnDoc| +2026-03-18 15:36:16.0630|DEBUG|OnDoc| +2026-03-18 15:36:16.0841|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:36:16.0841|DEBUG|OnDoc| +2026-03-18 15:36:16.0931|DEBUG|OnDoc| +2026-03-18 15:36:16.0931|DEBUG|OnDoc| +2026-03-18 15:36:16.0931|DEBUG|OnDoc| +2026-03-18 15:36:16.0931|DEBUG|OnDoc| +2026-03-18 15:36:16.0931|DEBUG|OnDoc| +2026-03-18 15:36:16.0931|DEBUG|OnDoc| +2026-03-18 15:36:16.1059|DEBUG|OnDoc| +2026-03-18 15:36:16.1059|DEBUG|OnDoc|Generate_Word +2026-03-18 15:36:16.1059|DEBUG|OnDoc|Word2013 +2026-03-18 15:36:16.1059|DEBUG|OnDoc|Word2013 +2026-03-18 15:36:16.8373|DEBUG|OnDoc|Generate_Word +2026-03-18 15:36:16.8490|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016392 +2026-03-18 15:36:16.8490|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:36:16.8490|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:36:16.8490|DEBUG|OnDoc| +2026-03-18 15:36:16.8602|DEBUG|OnDoc| +2026-03-18 15:36:16.8602|DEBUG|OnDoc| +2026-03-18 15:36:16.8602|DEBUG|OnDoc| +2026-03-18 15:36:16.8602|DEBUG|OnDoc| +2026-03-18 15:36:16.8602|DEBUG|OnDoc| +2026-03-18 15:36:23.9872|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:36:24.0687|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:36:24.0950|INFO|APIDocLog|Input JSON +2026-03-18 15:36:24.0950|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.0950|DEBUG|OnDoc| +2026-03-18 15:36:24.1068|DEBUG|OnDoc| +2026-03-18 15:36:24.1068|DEBUG|OnDoc| +2026-03-18 15:36:24.1068|DEBUG|OnDoc| +2026-03-18 15:36:24.1068|DEBUG|OnDoc| +2026-03-18 15:36:24.1068|DEBUG|OnDoc| +2026-03-18 15:36:24.1068|DEBUG|OnDoc| +2026-03-18 15:36:24.1068|DEBUG|OnDoc| +2026-03-18 15:36:24.1068|DEBUG|OnDoc| +2026-03-18 15:36:24.1068|DEBUG|OnDoc| +2026-03-18 15:36:24.1068|DEBUG|OnDoc| +2026-03-18 15:36:24.1068|DEBUG|OnDoc| +2026-03-18 15:36:24.1068|DEBUG|OnDoc| +2026-03-18 15:36:24.1068|DEBUG|OnDoc| +2026-03-18 15:36:24.1068|DEBUG|OnDoc| +2026-03-18 15:36:24.1230|DEBUG|OnDoc| +2026-03-18 15:36:24.1230|DEBUG|OnDoc| +2026-03-18 15:36:24.1512|DEBUG|OnDoc| +2026-03-18 15:36:24.1512|DEBUG|OnDoc| +2026-03-18 15:36:24.1607|DEBUG|OnDoc| +2026-03-18 15:36:24.1607|DEBUG|OnDoc| +2026-03-18 15:36:24.1607|DEBUG|OnDoc| +2026-03-18 15:36:24.1607|DEBUG|OnDoc| +2026-03-18 15:36:24.1799|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:36:24.1799|DEBUG|OnDoc| +2026-03-18 15:36:24.1894|DEBUG|OnDoc| +2026-03-18 15:36:24.1894|DEBUG|OnDoc| +2026-03-18 15:36:24.1894|DEBUG|OnDoc| +2026-03-18 15:36:24.1894|DEBUG|OnDoc| +2026-03-18 15:36:24.1894|DEBUG|OnDoc| +2026-03-18 15:36:24.1894|DEBUG|OnDoc| +2026-03-18 15:36:24.1994|DEBUG|OnDoc| +2026-03-18 15:36:24.1994|DEBUG|OnDoc|Generate_Word +2026-03-18 15:36:24.1994|DEBUG|OnDoc|Word2013 +2026-03-18 15:36:24.1994|DEBUG|OnDoc|Word2013 +2026-03-18 15:36:24.9773|DEBUG|OnDoc|Generate_Word +2026-03-18 15:36:24.9883|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016400 +2026-03-18 15:36:24.9883|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:36:24.9883|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:36:24.9883|DEBUG|OnDoc| +2026-03-18 15:36:24.9883|DEBUG|OnDoc| +2026-03-18 15:36:24.9883|DEBUG|OnDoc| +2026-03-18 15:36:24.9963|DEBUG|OnDoc| +2026-03-18 15:36:24.9963|DEBUG|OnDoc| +2026-03-18 15:36:24.9963|DEBUG|OnDoc| +2026-03-18 15:44:00.4486|DEBUG|OnDoc| +2026-03-18 15:44:00.5487|DEBUG|OnDoc| +2026-03-18 15:44:00.5487|DEBUG|OnDoc| +2026-03-18 15:44:00.5487|DEBUG|OnDoc| +2026-03-18 15:44:16.1364|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:44:16.3741|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:44:16.4630|INFO|APIDocLog|Input JSON +2026-03-18 15:44:16.4840|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:44:16.4840|DEBUG|OnDoc| +2026-03-18 15:44:16.4840|DEBUG|OnDoc| +2026-03-18 15:44:16.4840|DEBUG|OnDoc| +2026-03-18 15:44:16.4840|DEBUG|OnDoc| +2026-03-18 15:44:16.4840|DEBUG|OnDoc| +2026-03-18 15:44:16.4840|DEBUG|OnDoc| +2026-03-18 15:44:16.4840|DEBUG|OnDoc| +2026-03-18 15:44:16.4840|DEBUG|OnDoc| +2026-03-18 15:44:16.4840|DEBUG|OnDoc| +2026-03-18 15:44:16.4840|DEBUG|OnDoc| +2026-03-18 15:44:16.4840|DEBUG|OnDoc| +2026-03-18 15:44:16.4840|DEBUG|OnDoc| +2026-03-18 15:44:16.4840|DEBUG|OnDoc| +2026-03-18 15:44:16.4840|DEBUG|OnDoc| +2026-03-18 15:44:16.4992|DEBUG|OnDoc| +2026-03-18 15:44:16.4992|DEBUG|OnDoc| +2026-03-18 15:44:16.4992|DEBUG|OnDoc| +2026-03-18 15:44:16.4992|DEBUG|OnDoc| +2026-03-18 15:44:16.4992|DEBUG|OnDoc| +2026-03-18 15:44:16.4992|DEBUG|OnDoc| +2026-03-18 15:44:16.5121|DEBUG|OnDoc| +2026-03-18 15:44:16.5121|DEBUG|OnDoc| +2026-03-18 15:44:16.5121|DEBUG|OnDoc| +2026-03-18 15:44:16.5121|DEBUG|OnDoc| +2026-03-18 15:44:16.5121|DEBUG|OnDoc| +2026-03-18 15:44:16.5121|DEBUG|OnDoc| +2026-03-18 15:44:16.5121|DEBUG|OnDoc| +2026-03-18 15:44:16.5121|DEBUG|OnDoc| +2026-03-18 15:44:16.5121|DEBUG|OnDoc| +2026-03-18 15:44:16.5121|DEBUG|OnDoc| +2026-03-18 15:44:16.5121|DEBUG|OnDoc| +2026-03-18 15:44:16.5121|DEBUG|OnDoc| +2026-03-18 15:44:16.5121|DEBUG|OnDoc| +2026-03-18 15:44:16.5121|DEBUG|OnDoc| +2026-03-18 15:44:16.5388|DEBUG|OnDoc| +2026-03-18 15:44:16.5388|DEBUG|OnDoc| +2026-03-18 15:44:16.5853|DEBUG|OnDoc| +2026-03-18 15:44:16.5853|DEBUG|OnDoc| +2026-03-18 15:44:16.6157|DEBUG|OnDoc| +2026-03-18 15:44:16.6157|DEBUG|OnDoc| +2026-03-18 15:44:16.6157|DEBUG|OnDoc| +2026-03-18 15:44:16.6217|DEBUG|OnDoc| +2026-03-18 15:44:16.6407|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:44:16.6407|DEBUG|OnDoc| +2026-03-18 15:44:16.6407|DEBUG|OnDoc| +2026-03-18 15:44:16.6407|DEBUG|OnDoc| +2026-03-18 15:44:16.6533|DEBUG|OnDoc| +2026-03-18 15:44:16.6533|DEBUG|OnDoc| +2026-03-18 15:44:16.6533|DEBUG|OnDoc| +2026-03-18 15:44:16.6533|DEBUG|OnDoc| +2026-03-18 15:44:16.6533|DEBUG|OnDoc| +2026-03-18 15:44:16.6533|DEBUG|OnDoc|Generate_Word +2026-03-18 15:44:17.1007|DEBUG|OnDoc|Word2013 +2026-03-18 15:44:17.1097|DEBUG|OnDoc|Word2013 +2026-03-18 15:44:25.8980|DEBUG|OnDoc|Generate_Word +2026-03-18 15:44:25.9750|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016411 +2026-03-18 15:44:25.9750|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:44:25.9750|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:44:25.9750|DEBUG|OnDoc| +2026-03-18 15:44:25.9815|DEBUG|OnDoc| +2026-03-18 15:44:25.9815|DEBUG|OnDoc| +2026-03-18 15:44:25.9815|DEBUG|OnDoc| +2026-03-18 15:44:25.9815|DEBUG|OnDoc| +2026-03-18 15:44:25.9815|DEBUG|OnDoc| +2026-03-18 15:45:23.7714|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:45:23.8412|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:45:23.8633|INFO|APIDocLog|Input JSON +2026-03-18 15:45:23.8633|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:45:23.8633|DEBUG|OnDoc| +2026-03-18 15:45:23.8633|DEBUG|OnDoc| +2026-03-18 15:45:23.8633|DEBUG|OnDoc| +2026-03-18 15:45:23.8633|DEBUG|OnDoc| +2026-03-18 15:45:23.8633|DEBUG|OnDoc| +2026-03-18 15:45:23.8633|DEBUG|OnDoc| +2026-03-18 15:45:23.8633|DEBUG|OnDoc| +2026-03-18 15:45:23.8633|DEBUG|OnDoc| +2026-03-18 15:45:23.8633|DEBUG|OnDoc| +2026-03-18 15:45:23.8633|DEBUG|OnDoc| +2026-03-18 15:45:23.8633|DEBUG|OnDoc| +2026-03-18 15:45:23.8633|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.8714|DEBUG|OnDoc| +2026-03-18 15:45:23.9037|DEBUG|OnDoc| +2026-03-18 15:45:23.9037|DEBUG|OnDoc| +2026-03-18 15:45:23.9242|DEBUG|OnDoc| +2026-03-18 15:45:23.9242|DEBUG|OnDoc| +2026-03-18 15:45:23.9428|DEBUG|OnDoc| +2026-03-18 15:45:23.9428|DEBUG|OnDoc| +2026-03-18 15:45:23.9428|DEBUG|OnDoc| +2026-03-18 15:45:23.9428|DEBUG|OnDoc| +2026-03-18 15:45:23.9556|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:45:23.9556|DEBUG|OnDoc| +2026-03-18 15:45:23.9556|DEBUG|OnDoc| +2026-03-18 15:45:23.9556|DEBUG|OnDoc| +2026-03-18 15:45:23.9556|DEBUG|OnDoc| +2026-03-18 15:45:23.9556|DEBUG|OnDoc| +2026-03-18 15:45:23.9690|DEBUG|OnDoc| +2026-03-18 15:45:23.9690|DEBUG|OnDoc| +2026-03-18 15:45:23.9690|DEBUG|OnDoc| +2026-03-18 15:45:23.9690|DEBUG|OnDoc|Generate_Word +2026-03-18 15:45:23.9833|DEBUG|OnDoc|Word2013 +2026-03-18 15:45:23.9833|DEBUG|OnDoc|Word2013 +2026-03-18 15:45:32.5902|DEBUG|OnDoc|Generate_Word +2026-03-18 15:45:32.6271|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016426 +2026-03-18 15:45:32.6271|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:45:32.6271|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:45:32.6271|DEBUG|OnDoc| +2026-03-18 15:45:32.6271|DEBUG|OnDoc| +2026-03-18 15:45:32.6271|DEBUG|OnDoc| +2026-03-18 15:45:32.6271|DEBUG|OnDoc| +2026-03-18 15:45:32.6271|DEBUG|OnDoc| +2026-03-18 15:45:32.6271|DEBUG|OnDoc| +2026-03-18 15:46:12.4099|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:46:12.4898|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:46:12.5102|INFO|APIDocLog|Input JSON +2026-03-18 15:46:12.5127|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5127|DEBUG|OnDoc| +2026-03-18 15:46:12.5285|DEBUG|OnDoc| +2026-03-18 15:46:12.5285|DEBUG|OnDoc| +2026-03-18 15:46:12.5285|DEBUG|OnDoc| +2026-03-18 15:46:12.5285|DEBUG|OnDoc| +2026-03-18 15:46:12.5285|DEBUG|OnDoc| +2026-03-18 15:46:12.5285|DEBUG|OnDoc| +2026-03-18 15:46:12.5285|DEBUG|OnDoc| +2026-03-18 15:46:12.5285|DEBUG|OnDoc| +2026-03-18 15:46:12.5285|DEBUG|OnDoc| +2026-03-18 15:46:12.5285|DEBUG|OnDoc| +2026-03-18 15:46:12.5565|DEBUG|OnDoc| +2026-03-18 15:46:12.5610|DEBUG|OnDoc| +2026-03-18 15:46:12.5822|DEBUG|OnDoc| +2026-03-18 15:46:12.5822|DEBUG|OnDoc| +2026-03-18 15:46:12.6015|DEBUG|OnDoc| +2026-03-18 15:46:12.6015|DEBUG|OnDoc| +2026-03-18 15:46:12.6015|DEBUG|OnDoc| +2026-03-18 15:46:12.6015|DEBUG|OnDoc| +2026-03-18 15:46:12.6180|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:46:12.6180|DEBUG|OnDoc| +2026-03-18 15:46:12.6292|DEBUG|OnDoc| +2026-03-18 15:46:12.6292|DEBUG|OnDoc| +2026-03-18 15:46:12.6292|DEBUG|OnDoc| +2026-03-18 15:46:12.6292|DEBUG|OnDoc| +2026-03-18 15:46:12.6434|DEBUG|OnDoc| +2026-03-18 15:46:12.6434|DEBUG|OnDoc| +2026-03-18 15:46:12.6562|DEBUG|OnDoc| +2026-03-18 15:46:12.6562|DEBUG|OnDoc|Generate_Word +2026-03-18 15:46:12.6562|DEBUG|OnDoc|Word2013 +2026-03-18 15:46:12.6691|DEBUG|OnDoc|Word2013 +2026-03-18 15:47:18.5115|DEBUG|OnDoc|Generate_Word +2026-03-18 15:47:18.5481|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016434 +2026-03-18 15:47:18.5481|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:47:18.5481|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:47:18.5481|DEBUG|OnDoc| +2026-03-18 15:47:18.5481|DEBUG|OnDoc| +2026-03-18 15:47:18.5481|DEBUG|OnDoc| +2026-03-18 15:47:18.5481|DEBUG|OnDoc| +2026-03-18 15:47:18.5481|DEBUG|OnDoc| +2026-03-18 15:47:18.5481|DEBUG|OnDoc| +2026-03-18 15:47:27.9878|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:47:28.0669|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:47:28.0937|INFO|APIDocLog|Input JSON +2026-03-18 15:47:28.0937|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.0937|DEBUG|OnDoc| +2026-03-18 15:47:28.1059|DEBUG|OnDoc| +2026-03-18 15:47:28.1059|DEBUG|OnDoc| +2026-03-18 15:47:28.1059|DEBUG|OnDoc| +2026-03-18 15:47:28.1059|DEBUG|OnDoc| +2026-03-18 15:47:28.1059|DEBUG|OnDoc| +2026-03-18 15:47:28.1059|DEBUG|OnDoc| +2026-03-18 15:47:28.1059|DEBUG|OnDoc| +2026-03-18 15:47:28.1059|DEBUG|OnDoc| +2026-03-18 15:47:28.1059|DEBUG|OnDoc| +2026-03-18 15:47:28.1059|DEBUG|OnDoc| +2026-03-18 15:47:28.1059|DEBUG|OnDoc| +2026-03-18 15:47:28.1059|DEBUG|OnDoc| +2026-03-18 15:47:28.1059|DEBUG|OnDoc| +2026-03-18 15:47:28.1059|DEBUG|OnDoc| +2026-03-18 15:47:28.1240|DEBUG|OnDoc| +2026-03-18 15:47:28.1240|DEBUG|OnDoc| +2026-03-18 15:47:28.1546|DEBUG|OnDoc| +2026-03-18 15:47:28.1546|DEBUG|OnDoc| +2026-03-18 15:47:28.1546|DEBUG|OnDoc| +2026-03-18 15:47:28.1546|DEBUG|OnDoc| +2026-03-18 15:47:28.1546|DEBUG|OnDoc| +2026-03-18 15:47:28.1546|DEBUG|OnDoc| +2026-03-18 15:47:28.1861|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:47:28.1861|DEBUG|OnDoc| +2026-03-18 15:47:28.1861|DEBUG|OnDoc| +2026-03-18 15:47:28.1861|DEBUG|OnDoc| +2026-03-18 15:47:28.1861|DEBUG|OnDoc| +2026-03-18 15:47:28.1861|DEBUG|OnDoc| +2026-03-18 15:47:28.1861|DEBUG|OnDoc| +2026-03-18 15:47:28.1861|DEBUG|OnDoc| +2026-03-18 15:47:28.2029|DEBUG|OnDoc| +2026-03-18 15:47:28.2029|DEBUG|OnDoc|Generate_Word +2026-03-18 15:47:28.2029|DEBUG|OnDoc|Word2013 +2026-03-18 15:47:28.2029|DEBUG|OnDoc|Word2013 +2026-03-18 15:47:33.4786|DEBUG|OnDoc|Generate_Word +2026-03-18 15:47:33.5168|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016442 +2026-03-18 15:47:33.5168|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:47:33.5168|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:47:33.5168|DEBUG|OnDoc| +2026-03-18 15:47:33.5168|DEBUG|OnDoc| +2026-03-18 15:47:33.5168|DEBUG|OnDoc| +2026-03-18 15:47:33.5168|DEBUG|OnDoc| +2026-03-18 15:47:33.5168|DEBUG|OnDoc| +2026-03-18 15:47:33.5168|DEBUG|OnDoc| +2026-03-18 15:47:42.9883|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:47:43.0683|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:47:43.0975|INFO|APIDocLog|Input JSON +2026-03-18 15:47:43.0975|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:47:43.0975|DEBUG|OnDoc| +2026-03-18 15:47:43.0975|DEBUG|OnDoc| +2026-03-18 15:47:43.0975|DEBUG|OnDoc| +2026-03-18 15:47:43.0975|DEBUG|OnDoc| +2026-03-18 15:47:43.0975|DEBUG|OnDoc| +2026-03-18 15:47:43.0975|DEBUG|OnDoc| +2026-03-18 15:47:43.0975|DEBUG|OnDoc| +2026-03-18 15:47:43.0975|DEBUG|OnDoc| +2026-03-18 15:47:43.0975|DEBUG|OnDoc| +2026-03-18 15:47:43.0975|DEBUG|OnDoc| +2026-03-18 15:47:43.0975|DEBUG|OnDoc| +2026-03-18 15:47:43.0975|DEBUG|OnDoc| +2026-03-18 15:47:43.0975|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1061|DEBUG|OnDoc| +2026-03-18 15:47:43.1283|DEBUG|OnDoc| +2026-03-18 15:47:43.1283|DEBUG|OnDoc| +2026-03-18 15:47:43.1596|DEBUG|OnDoc| +2026-03-18 15:47:43.1596|DEBUG|OnDoc| +2026-03-18 15:47:43.1596|DEBUG|OnDoc| +2026-03-18 15:47:43.1691|DEBUG|OnDoc| +2026-03-18 15:47:43.1691|DEBUG|OnDoc| +2026-03-18 15:47:43.1691|DEBUG|OnDoc| +2026-03-18 15:47:43.1890|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:47:43.1890|DEBUG|OnDoc| +2026-03-18 15:47:43.1890|DEBUG|OnDoc| +2026-03-18 15:47:43.1890|DEBUG|OnDoc| +2026-03-18 15:47:43.1890|DEBUG|OnDoc| +2026-03-18 15:47:43.1890|DEBUG|OnDoc| +2026-03-18 15:47:43.2015|DEBUG|OnDoc| +2026-03-18 15:47:43.2015|DEBUG|OnDoc| +2026-03-18 15:47:43.2015|DEBUG|OnDoc| +2026-03-18 15:47:43.2015|DEBUG|OnDoc|Generate_Word +2026-03-18 15:47:43.2015|DEBUG|OnDoc|Word2013 +2026-03-18 15:47:43.2015|DEBUG|OnDoc|Word2013 +2026-03-18 15:47:47.9646|DEBUG|OnDoc|Generate_Word +2026-03-18 15:47:48.0033|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016458 +2026-03-18 15:47:48.0033|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:47:48.0033|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:47:48.0033|DEBUG|OnDoc| +2026-03-18 15:47:48.0033|DEBUG|OnDoc| +2026-03-18 15:47:48.0033|DEBUG|OnDoc| +2026-03-18 15:47:48.0033|DEBUG|OnDoc| +2026-03-18 15:47:48.0033|DEBUG|OnDoc| +2026-03-18 15:47:48.0033|DEBUG|OnDoc| +2026-03-18 15:48:05.5434|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:48:05.6315|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:48:05.6589|INFO|APIDocLog|Input JSON +2026-03-18 15:48:05.6589|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:48:05.6589|DEBUG|OnDoc| +2026-03-18 15:48:05.6589|DEBUG|OnDoc| +2026-03-18 15:48:05.6589|DEBUG|OnDoc| +2026-03-18 15:48:05.6589|DEBUG|OnDoc| +2026-03-18 15:48:05.6589|DEBUG|OnDoc| +2026-03-18 15:48:05.6589|DEBUG|OnDoc| +2026-03-18 15:48:05.6589|DEBUG|OnDoc| +2026-03-18 15:48:05.6589|DEBUG|OnDoc| +2026-03-18 15:48:05.6589|DEBUG|OnDoc| +2026-03-18 15:48:05.6589|DEBUG|OnDoc| +2026-03-18 15:48:05.6589|DEBUG|OnDoc| +2026-03-18 15:48:05.6589|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.6689|DEBUG|OnDoc| +2026-03-18 15:48:05.7032|DEBUG|OnDoc| +2026-03-18 15:48:05.7032|DEBUG|OnDoc| +2026-03-18 15:48:05.7338|DEBUG|OnDoc| +2026-03-18 15:48:05.7338|DEBUG|OnDoc| +2026-03-18 15:48:05.7338|DEBUG|OnDoc| +2026-03-18 15:48:05.7338|DEBUG|OnDoc| +2026-03-18 15:48:05.7338|DEBUG|OnDoc| +2026-03-18 15:48:05.7464|DEBUG|OnDoc| +2026-03-18 15:48:05.7673|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:48:05.7673|DEBUG|OnDoc| +2026-03-18 15:48:05.7673|DEBUG|OnDoc| +2026-03-18 15:48:05.7673|DEBUG|OnDoc| +2026-03-18 15:48:05.7673|DEBUG|OnDoc| +2026-03-18 15:48:05.7673|DEBUG|OnDoc| +2026-03-18 15:48:05.7816|DEBUG|OnDoc| +2026-03-18 15:48:05.7816|DEBUG|OnDoc| +2026-03-18 15:48:05.7816|DEBUG|OnDoc| +2026-03-18 15:48:05.7816|DEBUG|OnDoc|Generate_Word +2026-03-18 15:48:05.7949|DEBUG|OnDoc|Word2013 +2026-03-18 15:48:05.7949|DEBUG|OnDoc|Word2013 +2026-03-18 15:48:07.5429|DEBUG|OnDoc|Generate_Word +2026-03-18 15:48:07.5539|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016463 +2026-03-18 15:48:07.5539|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:48:07.5539|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:48:07.5539|DEBUG|OnDoc| +2026-03-18 15:48:07.5594|DEBUG|OnDoc| +2026-03-18 15:48:07.5594|DEBUG|OnDoc| +2026-03-18 15:48:07.5594|DEBUG|OnDoc| +2026-03-18 15:48:07.5594|DEBUG|OnDoc| +2026-03-18 15:48:07.5594|DEBUG|OnDoc| +2026-03-18 15:48:19.4012|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:48:19.5019|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:48:19.5340|INFO|APIDocLog|Input JSON +2026-03-18 15:48:19.5340|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:48:19.5340|DEBUG|OnDoc| +2026-03-18 15:48:19.5340|DEBUG|OnDoc| +2026-03-18 15:48:19.5340|DEBUG|OnDoc| +2026-03-18 15:48:19.5340|DEBUG|OnDoc| +2026-03-18 15:48:19.5340|DEBUG|OnDoc| +2026-03-18 15:48:19.5340|DEBUG|OnDoc| +2026-03-18 15:48:19.5340|DEBUG|OnDoc| +2026-03-18 15:48:19.5340|DEBUG|OnDoc| +2026-03-18 15:48:19.5340|DEBUG|OnDoc| +2026-03-18 15:48:19.5340|DEBUG|OnDoc| +2026-03-18 15:48:19.5340|DEBUG|OnDoc| +2026-03-18 15:48:19.5340|DEBUG|OnDoc| +2026-03-18 15:48:19.5340|DEBUG|OnDoc| +2026-03-18 15:48:19.5340|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5432|DEBUG|OnDoc| +2026-03-18 15:48:19.5644|DEBUG|OnDoc| +2026-03-18 15:48:19.5644|DEBUG|OnDoc| +2026-03-18 15:48:19.5983|DEBUG|OnDoc| +2026-03-18 15:48:19.5983|DEBUG|OnDoc| +2026-03-18 15:48:19.6098|DEBUG|OnDoc| +2026-03-18 15:48:19.6098|DEBUG|OnDoc| +2026-03-18 15:48:19.6098|DEBUG|OnDoc| +2026-03-18 15:48:19.6098|DEBUG|OnDoc| +2026-03-18 15:48:19.6303|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:48:19.6303|DEBUG|OnDoc| +2026-03-18 15:48:19.6303|DEBUG|OnDoc| +2026-03-18 15:48:19.6303|DEBUG|OnDoc| +2026-03-18 15:48:19.6378|DEBUG|OnDoc| +2026-03-18 15:48:19.6378|DEBUG|OnDoc| +2026-03-18 15:48:19.6378|DEBUG|OnDoc| +2026-03-18 15:48:19.6378|DEBUG|OnDoc| +2026-03-18 15:48:19.6378|DEBUG|OnDoc| +2026-03-18 15:48:19.6378|DEBUG|OnDoc|Generate_Word +2026-03-18 15:48:19.6543|DEBUG|OnDoc|Word2013 +2026-03-18 15:48:19.6543|DEBUG|OnDoc|Word2013 +2026-03-18 15:48:23.9649|DEBUG|OnDoc|Generate_Word +2026-03-18 15:48:24.0020|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016479 +2026-03-18 15:48:24.0020|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:48:24.0020|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:48:24.0020|DEBUG|OnDoc| +2026-03-18 15:48:24.0020|DEBUG|OnDoc| +2026-03-18 15:48:24.0020|DEBUG|OnDoc| +2026-03-18 15:48:24.0020|DEBUG|OnDoc| +2026-03-18 15:48:24.0020|DEBUG|OnDoc| +2026-03-18 15:48:24.0020|DEBUG|OnDoc| +2026-03-18 15:49:11.9284|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:49:12.0157|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:49:12.0424|INFO|APIDocLog|Input JSON +2026-03-18 15:49:12.0466|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0466|DEBUG|OnDoc| +2026-03-18 15:49:12.0591|DEBUG|OnDoc| +2026-03-18 15:49:12.0591|DEBUG|OnDoc| +2026-03-18 15:49:12.0591|DEBUG|OnDoc| +2026-03-18 15:49:12.0591|DEBUG|OnDoc| +2026-03-18 15:49:12.0591|DEBUG|OnDoc| +2026-03-18 15:49:12.0591|DEBUG|OnDoc| +2026-03-18 15:49:12.0591|DEBUG|OnDoc| +2026-03-18 15:49:12.0591|DEBUG|OnDoc| +2026-03-18 15:49:12.0591|DEBUG|OnDoc| +2026-03-18 15:49:12.0591|DEBUG|OnDoc| +2026-03-18 15:49:12.0591|DEBUG|OnDoc| +2026-03-18 15:49:12.0591|DEBUG|OnDoc| +2026-03-18 15:49:12.0591|DEBUG|OnDoc| +2026-03-18 15:49:12.0867|DEBUG|OnDoc| +2026-03-18 15:49:12.0867|DEBUG|OnDoc| +2026-03-18 15:49:12.1181|DEBUG|OnDoc| +2026-03-18 15:49:12.1181|DEBUG|OnDoc| +2026-03-18 15:49:12.1288|DEBUG|OnDoc| +2026-03-18 15:49:12.1288|DEBUG|OnDoc| +2026-03-18 15:49:12.1288|DEBUG|OnDoc| +2026-03-18 15:49:12.1288|DEBUG|OnDoc| +2026-03-18 15:49:12.1501|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:49:12.1501|DEBUG|OnDoc| +2026-03-18 15:49:12.1563|DEBUG|OnDoc| +2026-03-18 15:49:12.1563|DEBUG|OnDoc| +2026-03-18 15:49:12.1563|DEBUG|OnDoc| +2026-03-18 15:49:12.1563|DEBUG|OnDoc| +2026-03-18 15:49:12.1563|DEBUG|OnDoc| +2026-03-18 15:49:12.1563|DEBUG|OnDoc| +2026-03-18 15:49:12.1683|DEBUG|OnDoc| +2026-03-18 15:49:12.1683|DEBUG|OnDoc|Generate_Word +2026-03-18 15:49:12.1683|DEBUG|OnDoc|Word2013 +2026-03-18 15:49:12.1683|DEBUG|OnDoc|Word2013 +2026-03-18 15:50:02.5232|DEBUG|OnDoc|Generate_Word +2026-03-18 15:50:02.5598|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016487 +2026-03-18 15:50:02.5598|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:50:02.5598|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:50:02.5598|DEBUG|OnDoc| +2026-03-18 15:50:02.5598|DEBUG|OnDoc| +2026-03-18 15:50:02.5598|DEBUG|OnDoc| +2026-03-18 15:50:02.5598|DEBUG|OnDoc| +2026-03-18 15:50:02.5598|DEBUG|OnDoc| +2026-03-18 15:50:02.5598|DEBUG|OnDoc| +2026-03-18 15:50:12.5744|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:50:12.6640|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:50:12.6955|INFO|APIDocLog|Input JSON +2026-03-18 15:50:12.6955|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:50:12.6955|DEBUG|OnDoc| +2026-03-18 15:50:12.6955|DEBUG|OnDoc| +2026-03-18 15:50:12.6955|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7001|DEBUG|OnDoc| +2026-03-18 15:50:12.7153|DEBUG|OnDoc| +2026-03-18 15:50:12.7153|DEBUG|OnDoc| +2026-03-18 15:50:12.7153|DEBUG|OnDoc| +2026-03-18 15:50:12.7153|DEBUG|OnDoc| +2026-03-18 15:50:12.7549|DEBUG|OnDoc| +2026-03-18 15:50:12.7549|DEBUG|OnDoc| +2026-03-18 15:50:12.7629|DEBUG|OnDoc| +2026-03-18 15:50:12.7629|DEBUG|OnDoc| +2026-03-18 15:50:12.7629|DEBUG|OnDoc| +2026-03-18 15:50:12.7629|DEBUG|OnDoc| +2026-03-18 15:50:12.7856|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:50:12.7856|DEBUG|OnDoc| +2026-03-18 15:50:12.7856|DEBUG|OnDoc| +2026-03-18 15:50:12.7856|DEBUG|OnDoc| +2026-03-18 15:50:12.7939|DEBUG|OnDoc| +2026-03-18 15:50:12.7939|DEBUG|OnDoc| +2026-03-18 15:50:12.7939|DEBUG|OnDoc| +2026-03-18 15:50:12.8089|DEBUG|OnDoc| +2026-03-18 15:50:12.8089|DEBUG|OnDoc| +2026-03-18 15:50:12.8089|DEBUG|OnDoc|Generate_Word +2026-03-18 15:50:12.8089|DEBUG|OnDoc|Word2013 +2026-03-18 15:50:12.8089|DEBUG|OnDoc|Word2013 +2026-03-18 15:50:15.0854|DEBUG|OnDoc|Generate_Word +2026-03-18 15:50:15.0959|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016495 +2026-03-18 15:50:15.0959|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:50:15.0959|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:50:15.0959|DEBUG|OnDoc| +2026-03-18 15:50:15.0959|DEBUG|OnDoc| +2026-03-18 15:50:15.0959|DEBUG|OnDoc| +2026-03-18 15:50:15.0959|DEBUG|OnDoc| +2026-03-18 15:50:15.0959|DEBUG|OnDoc| +2026-03-18 15:50:15.0959|DEBUG|OnDoc| +2026-03-18 15:52:53.0556|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:52:53.1429|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:52:53.1720|INFO|APIDocLog|Input JSON +2026-03-18 15:52:53.1720|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1720|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.1840|DEBUG|OnDoc| +2026-03-18 15:52:53.2139|DEBUG|OnDoc| +2026-03-18 15:52:53.2165|DEBUG|OnDoc| +2026-03-18 15:52:53.2431|DEBUG|OnDoc| +2026-03-18 15:52:53.2431|DEBUG|OnDoc| +2026-03-18 15:52:53.2575|DEBUG|OnDoc| +2026-03-18 15:52:53.2575|DEBUG|OnDoc| +2026-03-18 15:52:53.2575|DEBUG|OnDoc| +2026-03-18 15:52:53.2575|DEBUG|OnDoc| +2026-03-18 15:52:53.2795|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:52:53.2795|DEBUG|OnDoc| +2026-03-18 15:52:53.2795|DEBUG|OnDoc| +2026-03-18 15:52:53.2795|DEBUG|OnDoc| +2026-03-18 15:52:53.2795|DEBUG|OnDoc| +2026-03-18 15:52:53.2795|DEBUG|OnDoc| +2026-03-18 15:52:53.2938|DEBUG|OnDoc| +2026-03-18 15:52:53.2938|DEBUG|OnDoc| +2026-03-18 15:52:53.2938|DEBUG|OnDoc| +2026-03-18 15:52:53.2938|DEBUG|OnDoc|Generate_Word +2026-03-18 15:52:53.2938|DEBUG|OnDoc|Word2013 +2026-03-18 15:52:53.2938|DEBUG|OnDoc|Word2013 +2026-03-18 15:54:45.4155|DEBUG|OnDoc|Generate_Word +2026-03-18 15:54:45.4285|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016505 +2026-03-18 15:54:45.4285|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:54:45.4285|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:54:45.4285|DEBUG|OnDoc| +2026-03-18 15:54:45.4380|DEBUG|OnDoc| +2026-03-18 15:54:45.4380|DEBUG|OnDoc| +2026-03-18 15:54:45.4380|DEBUG|OnDoc| +2026-03-18 15:54:45.4380|DEBUG|OnDoc| +2026-03-18 15:54:45.4380|DEBUG|OnDoc| +2026-03-18 15:54:57.0134|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:54:57.1171|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:54:57.1609|INFO|APIDocLog|Input JSON +2026-03-18 15:54:57.1609|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:54:57.1609|DEBUG|OnDoc| +2026-03-18 15:54:57.1609|DEBUG|OnDoc| +2026-03-18 15:54:57.1609|DEBUG|OnDoc| +2026-03-18 15:54:57.1609|DEBUG|OnDoc| +2026-03-18 15:54:57.1609|DEBUG|OnDoc| +2026-03-18 15:54:57.1609|DEBUG|OnDoc| +2026-03-18 15:54:57.1609|DEBUG|OnDoc| +2026-03-18 15:54:57.1609|DEBUG|OnDoc| +2026-03-18 15:54:57.1609|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1696|DEBUG|OnDoc| +2026-03-18 15:54:57.1935|DEBUG|OnDoc| +2026-03-18 15:54:57.1935|DEBUG|OnDoc| +2026-03-18 15:54:57.2357|DEBUG|OnDoc| +2026-03-18 15:54:57.2357|DEBUG|OnDoc| +2026-03-18 15:54:57.2357|DEBUG|OnDoc| +2026-03-18 15:54:57.2357|DEBUG|OnDoc| +2026-03-18 15:54:57.2472|DEBUG|OnDoc| +2026-03-18 15:54:57.2472|DEBUG|OnDoc| +2026-03-18 15:54:57.2745|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:54:57.2745|DEBUG|OnDoc| +2026-03-18 15:54:57.2832|DEBUG|OnDoc| +2026-03-18 15:54:57.2832|DEBUG|OnDoc| +2026-03-18 15:54:57.2832|DEBUG|OnDoc| +2026-03-18 15:54:57.2832|DEBUG|OnDoc| +2026-03-18 15:54:57.2832|DEBUG|OnDoc| +2026-03-18 15:54:57.2832|DEBUG|OnDoc| +2026-03-18 15:54:57.2967|DEBUG|OnDoc| +2026-03-18 15:54:57.2967|DEBUG|OnDoc|Generate_Word +2026-03-18 15:54:57.2967|DEBUG|OnDoc|Word2013 +2026-03-18 15:54:57.2967|DEBUG|OnDoc|Word2013 +2026-03-18 15:55:09.0585|DEBUG|OnDoc|Generate_Word +2026-03-18 15:55:09.0959|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016510 +2026-03-18 15:55:09.0959|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:55:09.0959|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:55:09.0959|DEBUG|OnDoc| +2026-03-18 15:55:09.0959|DEBUG|OnDoc| +2026-03-18 15:55:09.0959|DEBUG|OnDoc| +2026-03-18 15:55:09.0959|DEBUG|OnDoc| +2026-03-18 15:55:09.0959|DEBUG|OnDoc| +2026-03-18 15:55:09.0959|DEBUG|OnDoc| +2026-03-18 15:55:22.4190|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:55:22.5262|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:55:22.5703|INFO|APIDocLog|Input JSON +2026-03-18 15:55:22.5703|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:55:22.5703|DEBUG|OnDoc| +2026-03-18 15:55:22.5703|DEBUG|OnDoc| +2026-03-18 15:55:22.5703|DEBUG|OnDoc| +2026-03-18 15:55:22.5703|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5748|DEBUG|OnDoc| +2026-03-18 15:55:22.5974|DEBUG|OnDoc| +2026-03-18 15:55:22.5974|DEBUG|OnDoc| +2026-03-18 15:55:22.6364|DEBUG|OnDoc| +2026-03-18 15:55:22.6364|DEBUG|OnDoc| +2026-03-18 15:55:22.6450|DEBUG|OnDoc| +2026-03-18 15:55:22.6450|DEBUG|OnDoc| +2026-03-18 15:55:22.6450|DEBUG|OnDoc| +2026-03-18 15:55:22.6450|DEBUG|OnDoc| +2026-03-18 15:55:22.6716|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:55:22.6716|DEBUG|OnDoc| +2026-03-18 15:55:22.6716|DEBUG|OnDoc| +2026-03-18 15:55:22.6716|DEBUG|OnDoc| +2026-03-18 15:55:22.6716|DEBUG|OnDoc| +2026-03-18 15:55:22.6716|DEBUG|OnDoc| +2026-03-18 15:55:22.6716|DEBUG|OnDoc| +2026-03-18 15:55:22.6716|DEBUG|OnDoc| +2026-03-18 15:55:22.6879|DEBUG|OnDoc| +2026-03-18 15:55:22.6879|DEBUG|OnDoc|Generate_Word +2026-03-18 15:55:22.6879|DEBUG|OnDoc|Word2013 +2026-03-18 15:55:22.6879|DEBUG|OnDoc|Word2013 +2026-03-18 15:55:27.5582|DEBUG|OnDoc|Generate_Word +2026-03-18 15:55:27.5968|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016521 +2026-03-18 15:55:27.5968|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:55:27.5968|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:55:27.5968|DEBUG|OnDoc| +2026-03-18 15:55:27.5968|DEBUG|OnDoc| +2026-03-18 15:55:27.5968|DEBUG|OnDoc| +2026-03-18 15:55:27.5968|DEBUG|OnDoc| +2026-03-18 15:55:27.5968|DEBUG|OnDoc| +2026-03-18 15:55:27.5968|DEBUG|OnDoc| +2026-03-18 15:55:41.9479|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:55:42.0844|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:55:42.1408|INFO|APIDocLog|Input JSON +2026-03-18 15:55:42.1408|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1408|DEBUG|OnDoc| +2026-03-18 15:55:42.1532|DEBUG|OnDoc| +2026-03-18 15:55:42.1532|DEBUG|OnDoc| +2026-03-18 15:55:42.1532|DEBUG|OnDoc| +2026-03-18 15:55:42.1532|DEBUG|OnDoc| +2026-03-18 15:55:42.1532|DEBUG|OnDoc| +2026-03-18 15:55:42.1532|DEBUG|OnDoc| +2026-03-18 15:55:42.1532|DEBUG|OnDoc| +2026-03-18 15:55:42.1532|DEBUG|OnDoc| +2026-03-18 15:55:42.1532|DEBUG|OnDoc| +2026-03-18 15:55:42.1532|DEBUG|OnDoc| +2026-03-18 15:55:42.1532|DEBUG|OnDoc| +2026-03-18 15:55:42.1532|DEBUG|OnDoc| +2026-03-18 15:55:42.1532|DEBUG|OnDoc| +2026-03-18 15:55:42.1532|DEBUG|OnDoc| +2026-03-18 15:55:42.1697|DEBUG|OnDoc| +2026-03-18 15:55:42.1697|DEBUG|OnDoc| +2026-03-18 15:55:42.2293|DEBUG|OnDoc| +2026-03-18 15:55:42.2323|DEBUG|OnDoc| +2026-03-18 15:55:42.2323|DEBUG|OnDoc| +2026-03-18 15:55:42.2323|DEBUG|OnDoc| +2026-03-18 15:55:42.2323|DEBUG|OnDoc| +2026-03-18 15:55:42.2323|DEBUG|OnDoc| +2026-03-18 15:55:42.2977|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:55:42.2977|DEBUG|OnDoc| +2026-03-18 15:55:42.2977|DEBUG|OnDoc| +2026-03-18 15:55:42.2977|DEBUG|OnDoc| +2026-03-18 15:55:42.2977|DEBUG|OnDoc| +2026-03-18 15:55:42.2977|DEBUG|OnDoc| +2026-03-18 15:55:42.3127|DEBUG|OnDoc| +2026-03-18 15:55:42.3127|DEBUG|OnDoc| +2026-03-18 15:55:42.3127|DEBUG|OnDoc| +2026-03-18 15:55:42.3127|DEBUG|OnDoc|Generate_Word +2026-03-18 15:55:42.3304|DEBUG|OnDoc|Word2013 +2026-03-18 15:55:42.3304|DEBUG|OnDoc|Word2013 +2026-03-18 15:55:45.0275|DEBUG|OnDoc|Generate_Word +2026-03-18 15:55:45.0390|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016536 +2026-03-18 15:55:45.0390|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:55:45.0390|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:55:45.0390|DEBUG|OnDoc| +2026-03-18 15:55:45.0442|DEBUG|OnDoc| +2026-03-18 15:55:45.0442|DEBUG|OnDoc| +2026-03-18 15:55:45.0442|DEBUG|OnDoc| +2026-03-18 15:55:45.0442|DEBUG|OnDoc| +2026-03-18 15:55:45.0442|DEBUG|OnDoc| +2026-03-18 15:56:11.2100|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:56:11.3767|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:56:11.4469|INFO|APIDocLog|Input JSON +2026-03-18 15:56:11.4509|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4509|DEBUG|OnDoc| +2026-03-18 15:56:11.4653|DEBUG|OnDoc| +2026-03-18 15:56:11.4653|DEBUG|OnDoc| +2026-03-18 15:56:11.4653|DEBUG|OnDoc| +2026-03-18 15:56:11.4653|DEBUG|OnDoc| +2026-03-18 15:56:11.4653|DEBUG|OnDoc| +2026-03-18 15:56:11.4653|DEBUG|OnDoc| +2026-03-18 15:56:11.4653|DEBUG|OnDoc| +2026-03-18 15:56:11.4653|DEBUG|OnDoc| +2026-03-18 15:56:11.4653|DEBUG|OnDoc| +2026-03-18 15:56:11.4653|DEBUG|OnDoc| +2026-03-18 15:56:11.4653|DEBUG|OnDoc| +2026-03-18 15:56:11.4653|DEBUG|OnDoc| +2026-03-18 15:56:11.4653|DEBUG|OnDoc| +2026-03-18 15:56:11.4833|DEBUG|OnDoc| +2026-03-18 15:56:11.4833|DEBUG|OnDoc| +2026-03-18 15:56:11.5506|DEBUG|OnDoc| +2026-03-18 15:56:11.5506|DEBUG|OnDoc| +2026-03-18 15:56:11.5662|DEBUG|OnDoc| +2026-03-18 15:56:11.5662|DEBUG|OnDoc| +2026-03-18 15:56:11.5662|DEBUG|OnDoc| +2026-03-18 15:56:11.5662|DEBUG|OnDoc| +2026-03-18 15:56:11.6212|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:56:11.6222|DEBUG|OnDoc| +2026-03-18 15:56:11.6222|DEBUG|OnDoc| +2026-03-18 15:56:11.6222|DEBUG|OnDoc| +2026-03-18 15:56:11.6222|DEBUG|OnDoc| +2026-03-18 15:56:11.6222|DEBUG|OnDoc| +2026-03-18 15:56:11.6391|DEBUG|OnDoc| +2026-03-18 15:56:11.6391|DEBUG|OnDoc| +2026-03-18 15:56:11.6391|DEBUG|OnDoc| +2026-03-18 15:56:11.6391|DEBUG|OnDoc|Generate_Word +2026-03-18 15:56:11.6623|DEBUG|OnDoc|Word2013 +2026-03-18 15:56:11.6623|DEBUG|OnDoc|Word2013 +2026-03-18 15:56:18.6254|DEBUG|OnDoc|Generate_Word +2026-03-18 15:56:18.6637|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016544 +2026-03-18 15:56:18.6637|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:56:18.6637|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:56:18.6637|DEBUG|OnDoc| +2026-03-18 15:56:18.6728|DEBUG|OnDoc| +2026-03-18 15:56:18.6728|DEBUG|OnDoc| +2026-03-18 15:56:18.6728|DEBUG|OnDoc| +2026-03-18 15:56:18.6728|DEBUG|OnDoc| +2026-03-18 15:56:18.6728|DEBUG|OnDoc| +2026-03-18 15:56:31.7764|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:56:31.9510|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:56:32.0367|INFO|APIDocLog|Input JSON +2026-03-18 15:56:32.0492|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:56:32.0492|DEBUG|OnDoc| +2026-03-18 15:56:32.0492|DEBUG|OnDoc| +2026-03-18 15:56:32.0492|DEBUG|OnDoc| +2026-03-18 15:56:32.0492|DEBUG|OnDoc| +2026-03-18 15:56:32.0492|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0592|DEBUG|OnDoc| +2026-03-18 15:56:32.0758|DEBUG|OnDoc| +2026-03-18 15:56:32.0758|DEBUG|OnDoc| +2026-03-18 15:56:32.0758|DEBUG|OnDoc| +2026-03-18 15:56:32.0758|DEBUG|OnDoc| +2026-03-18 15:56:32.0758|DEBUG|OnDoc| +2026-03-18 15:56:32.0758|DEBUG|OnDoc| +2026-03-18 15:56:32.0758|DEBUG|OnDoc| +2026-03-18 15:56:32.0758|DEBUG|OnDoc| +2026-03-18 15:56:32.0758|DEBUG|OnDoc| +2026-03-18 15:56:32.0758|DEBUG|OnDoc| +2026-03-18 15:56:32.0758|DEBUG|OnDoc| +2026-03-18 15:56:32.0758|DEBUG|OnDoc| +2026-03-18 15:56:32.0758|DEBUG|OnDoc| +2026-03-18 15:56:32.0758|DEBUG|OnDoc| +2026-03-18 15:56:32.0923|DEBUG|OnDoc| +2026-03-18 15:56:32.0923|DEBUG|OnDoc| +2026-03-18 15:56:32.1701|DEBUG|OnDoc| +2026-03-18 15:56:32.1701|DEBUG|OnDoc| +2026-03-18 15:56:32.1701|DEBUG|OnDoc| +2026-03-18 15:56:32.1842|DEBUG|OnDoc| +2026-03-18 15:56:32.1842|DEBUG|OnDoc| +2026-03-18 15:56:32.1842|DEBUG|OnDoc| +2026-03-18 15:56:32.2433|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:56:32.2433|DEBUG|OnDoc| +2026-03-18 15:56:32.2495|DEBUG|OnDoc| +2026-03-18 15:56:32.2495|DEBUG|OnDoc| +2026-03-18 15:56:32.2495|DEBUG|OnDoc| +2026-03-18 15:56:32.2495|DEBUG|OnDoc| +2026-03-18 15:56:32.2495|DEBUG|OnDoc| +2026-03-18 15:56:32.2495|DEBUG|OnDoc| +2026-03-18 15:56:32.2495|DEBUG|OnDoc| +2026-03-18 15:56:32.2495|DEBUG|OnDoc|Generate_Word +2026-03-18 15:56:32.2730|DEBUG|OnDoc|Word2013 +2026-03-18 15:56:32.2730|DEBUG|OnDoc|Word2013 +2026-03-18 15:56:37.8968|DEBUG|OnDoc|Generate_Word +2026-03-18 15:56:37.9352|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016552 +2026-03-18 15:56:37.9352|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:56:37.9352|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:56:37.9352|DEBUG|OnDoc| +2026-03-18 15:56:37.9352|DEBUG|OnDoc| +2026-03-18 15:56:37.9352|DEBUG|OnDoc| +2026-03-18 15:56:37.9352|DEBUG|OnDoc| +2026-03-18 15:56:37.9352|DEBUG|OnDoc| +2026-03-18 15:56:37.9352|DEBUG|OnDoc| +2026-03-18 15:57:20.0403|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:57:20.2183|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:57:20.3059|INFO|APIDocLog|Input JSON +2026-03-18 15:57:20.3159|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3159|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3250|DEBUG|OnDoc| +2026-03-18 15:57:20.3553|DEBUG|OnDoc| +2026-03-18 15:57:20.3577|DEBUG|OnDoc| +2026-03-18 15:57:20.4509|DEBUG|OnDoc| +2026-03-18 15:57:20.4509|DEBUG|OnDoc| +2026-03-18 15:57:20.4509|DEBUG|OnDoc| +2026-03-18 15:57:20.4509|DEBUG|OnDoc| +2026-03-18 15:57:20.4509|DEBUG|OnDoc| +2026-03-18 15:57:20.4509|DEBUG|OnDoc| +2026-03-18 15:57:20.5347|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:57:20.5347|DEBUG|OnDoc| +2026-03-18 15:57:20.5347|DEBUG|OnDoc| +2026-03-18 15:57:20.5347|DEBUG|OnDoc| +2026-03-18 15:57:20.5440|DEBUG|OnDoc| +2026-03-18 15:57:20.5440|DEBUG|OnDoc| +2026-03-18 15:57:20.5440|DEBUG|OnDoc| +2026-03-18 15:57:20.5440|DEBUG|OnDoc| +2026-03-18 15:57:20.5440|DEBUG|OnDoc| +2026-03-18 15:57:20.5440|DEBUG|OnDoc|Generate_Word +2026-03-18 15:57:20.5675|DEBUG|OnDoc|Word2013 +2026-03-18 15:57:20.5675|DEBUG|OnDoc|Word2013 +2026-03-18 15:57:25.2081|DEBUG|OnDoc|Generate_Word +2026-03-18 15:57:25.2453|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016568 +2026-03-18 15:57:25.2453|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:57:25.2463|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:57:25.2463|DEBUG|OnDoc| +2026-03-18 15:57:25.2463|DEBUG|OnDoc| +2026-03-18 15:57:25.2463|DEBUG|OnDoc| +2026-03-18 15:57:25.2463|DEBUG|OnDoc| +2026-03-18 15:57:25.2463|DEBUG|OnDoc| +2026-03-18 15:57:25.2463|DEBUG|OnDoc| +2026-03-18 15:57:43.9476|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:57:44.1299|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:57:44.2140|INFO|APIDocLog|Input JSON +2026-03-18 15:57:44.2238|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2238|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2309|DEBUG|OnDoc| +2026-03-18 15:57:44.2518|DEBUG|OnDoc| +2026-03-18 15:57:44.2518|DEBUG|OnDoc| +2026-03-18 15:57:44.3431|DEBUG|OnDoc| +2026-03-18 15:57:44.3431|DEBUG|OnDoc| +2026-03-18 15:57:44.3431|DEBUG|OnDoc| +2026-03-18 15:57:44.3431|DEBUG|OnDoc| +2026-03-18 15:57:44.3431|DEBUG|OnDoc| +2026-03-18 15:57:44.3431|DEBUG|OnDoc| +2026-03-18 15:57:44.4327|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:57:44.4327|DEBUG|OnDoc| +2026-03-18 15:57:44.4415|DEBUG|OnDoc| +2026-03-18 15:57:44.4415|DEBUG|OnDoc| +2026-03-18 15:57:44.4415|DEBUG|OnDoc| +2026-03-18 15:57:44.4415|DEBUG|OnDoc| +2026-03-18 15:57:44.4415|DEBUG|OnDoc| +2026-03-18 15:57:44.4415|DEBUG|OnDoc| +2026-03-18 15:57:44.4541|DEBUG|OnDoc| +2026-03-18 15:57:44.4541|DEBUG|OnDoc|Generate_Word +2026-03-18 15:57:44.4541|DEBUG|OnDoc|Word2013 +2026-03-18 15:57:44.4541|DEBUG|OnDoc|Word2013 +2026-03-18 15:57:49.0024|DEBUG|OnDoc|Generate_Word +2026-03-18 15:57:49.0398|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016573 +2026-03-18 15:57:49.0398|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:57:49.0398|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:57:49.0398|DEBUG|OnDoc| +2026-03-18 15:57:49.0498|DEBUG|OnDoc| +2026-03-18 15:57:49.0498|DEBUG|OnDoc| +2026-03-18 15:57:49.0498|DEBUG|OnDoc| +2026-03-18 15:57:49.0498|DEBUG|OnDoc| +2026-03-18 15:57:49.0498|DEBUG|OnDoc| +2026-03-18 15:58:03.2821|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:58:03.4795|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:58:03.5809|INFO|APIDocLog|Input JSON +2026-03-18 15:58:03.5920|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.5920|DEBUG|OnDoc| +2026-03-18 15:58:03.6058|DEBUG|OnDoc| +2026-03-18 15:58:03.6058|DEBUG|OnDoc| +2026-03-18 15:58:03.6058|DEBUG|OnDoc| +2026-03-18 15:58:03.6058|DEBUG|OnDoc| +2026-03-18 15:58:03.6058|DEBUG|OnDoc| +2026-03-18 15:58:03.6058|DEBUG|OnDoc| +2026-03-18 15:58:03.6058|DEBUG|OnDoc| +2026-03-18 15:58:03.6058|DEBUG|OnDoc| +2026-03-18 15:58:03.6058|DEBUG|OnDoc| +2026-03-18 15:58:03.6058|DEBUG|OnDoc| +2026-03-18 15:58:03.6058|DEBUG|OnDoc| +2026-03-18 15:58:03.6058|DEBUG|OnDoc| +2026-03-18 15:58:03.6058|DEBUG|OnDoc| +2026-03-18 15:58:03.6058|DEBUG|OnDoc| +2026-03-18 15:58:03.6254|DEBUG|OnDoc| +2026-03-18 15:58:03.6254|DEBUG|OnDoc| +2026-03-18 15:58:03.7326|DEBUG|OnDoc| +2026-03-18 15:58:03.7326|DEBUG|OnDoc| +2026-03-18 15:58:03.7326|DEBUG|OnDoc| +2026-03-18 15:58:03.7326|DEBUG|OnDoc| +2026-03-18 15:58:03.7326|DEBUG|OnDoc| +2026-03-18 15:58:03.7466|DEBUG|OnDoc| +2026-03-18 15:58:03.8402|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:58:03.8402|DEBUG|OnDoc| +2026-03-18 15:58:03.8402|DEBUG|OnDoc| +2026-03-18 15:58:03.8402|DEBUG|OnDoc| +2026-03-18 15:58:03.8402|DEBUG|OnDoc| +2026-03-18 15:58:03.8402|DEBUG|OnDoc| +2026-03-18 15:58:03.8402|DEBUG|OnDoc| +2026-03-18 15:58:03.8402|DEBUG|OnDoc| +2026-03-18 15:58:03.8618|DEBUG|OnDoc| +2026-03-18 15:58:03.8618|DEBUG|OnDoc|Generate_Word +2026-03-18 15:58:03.8783|DEBUG|OnDoc|Word2013 +2026-03-18 15:58:03.8783|DEBUG|OnDoc|Word2013 +2026-03-18 15:58:10.8716|DEBUG|OnDoc|Generate_Word +2026-03-18 15:58:10.9095|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016589 +2026-03-18 15:58:10.9095|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:58:10.9095|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:58:10.9095|DEBUG|OnDoc| +2026-03-18 15:58:10.9095|DEBUG|OnDoc| +2026-03-18 15:58:10.9095|DEBUG|OnDoc| +2026-03-18 15:58:10.9095|DEBUG|OnDoc| +2026-03-18 15:58:10.9095|DEBUG|OnDoc| +2026-03-18 15:58:10.9095|DEBUG|OnDoc| +2026-03-18 15:58:22.1192|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:58:22.3240|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:58:22.4365|INFO|APIDocLog|Input JSON +2026-03-18 15:58:22.4365|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:58:22.4365|DEBUG|OnDoc| +2026-03-18 15:58:22.4365|DEBUG|OnDoc| +2026-03-18 15:58:22.4365|DEBUG|OnDoc| +2026-03-18 15:58:22.4365|DEBUG|OnDoc| +2026-03-18 15:58:22.4365|DEBUG|OnDoc| +2026-03-18 15:58:22.4365|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4496|DEBUG|OnDoc| +2026-03-18 15:58:22.4708|DEBUG|OnDoc| +2026-03-18 15:58:22.4708|DEBUG|OnDoc| +2026-03-18 15:58:22.5887|DEBUG|OnDoc| +2026-03-18 15:58:22.5887|DEBUG|OnDoc| +2026-03-18 15:58:22.5986|DEBUG|OnDoc| +2026-03-18 15:58:22.5986|DEBUG|OnDoc| +2026-03-18 15:58:22.5986|DEBUG|OnDoc| +2026-03-18 15:58:22.5986|DEBUG|OnDoc| +2026-03-18 15:58:22.7028|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:58:22.7028|DEBUG|OnDoc| +2026-03-18 15:58:22.7028|DEBUG|OnDoc| +2026-03-18 15:58:22.7028|DEBUG|OnDoc| +2026-03-18 15:58:22.7028|DEBUG|OnDoc| +2026-03-18 15:58:22.7028|DEBUG|OnDoc| +2026-03-18 15:58:22.7028|DEBUG|OnDoc| +2026-03-18 15:58:22.7028|DEBUG|OnDoc| +2026-03-18 15:58:22.7199|DEBUG|OnDoc| +2026-03-18 15:58:22.7199|DEBUG|OnDoc|Generate_Word +2026-03-18 15:58:22.7329|DEBUG|OnDoc|Word2013 +2026-03-18 15:58:22.7329|DEBUG|OnDoc|Word2013 +2026-03-18 15:58:31.2147|DEBUG|OnDoc|Generate_Word +2026-03-18 15:58:31.2508|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016597 +2026-03-18 15:58:31.2508|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:58:31.2508|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:58:31.2508|DEBUG|OnDoc| +2026-03-18 15:58:31.2508|DEBUG|OnDoc| +2026-03-18 15:58:31.2508|DEBUG|OnDoc| +2026-03-18 15:58:31.2508|DEBUG|OnDoc| +2026-03-18 15:58:31.2508|DEBUG|OnDoc| +2026-03-18 15:58:31.2508|DEBUG|OnDoc| +2026-03-18 15:58:59.9607|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 15:59:00.2584|INFO|APIDocLog|Start CreateDoc +2026-03-18 15:59:00.3762|INFO|APIDocLog|Input JSON +2026-03-18 15:59:00.3874|DEBUG|OnDoc|Start GenDoc +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.3874|DEBUG|OnDoc| +2026-03-18 15:59:00.4026|DEBUG|OnDoc| +2026-03-18 15:59:00.4026|DEBUG|OnDoc| +2026-03-18 15:59:00.4026|DEBUG|OnDoc| +2026-03-18 15:59:00.4026|DEBUG|OnDoc| +2026-03-18 15:59:00.4026|DEBUG|OnDoc| +2026-03-18 15:59:00.4026|DEBUG|OnDoc| +2026-03-18 15:59:00.4026|DEBUG|OnDoc| +2026-03-18 15:59:00.4026|DEBUG|OnDoc| +2026-03-18 15:59:00.4026|DEBUG|OnDoc| +2026-03-18 15:59:00.4276|DEBUG|OnDoc| +2026-03-18 15:59:00.4276|DEBUG|OnDoc| +2026-03-18 15:59:00.5761|DEBUG|OnDoc| +2026-03-18 15:59:00.5761|DEBUG|OnDoc| +2026-03-18 15:59:00.5941|DEBUG|OnDoc| +2026-03-18 15:59:00.5941|DEBUG|OnDoc| +2026-03-18 15:59:00.5941|DEBUG|OnDoc| +2026-03-18 15:59:00.5941|DEBUG|OnDoc| +2026-03-18 15:59:00.7103|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 15:59:00.7103|DEBUG|OnDoc| +2026-03-18 15:59:00.7174|DEBUG|OnDoc| +2026-03-18 15:59:00.7174|DEBUG|OnDoc| +2026-03-18 15:59:00.7174|DEBUG|OnDoc| +2026-03-18 15:59:00.7174|DEBUG|OnDoc| +2026-03-18 15:59:00.7174|DEBUG|OnDoc| +2026-03-18 15:59:00.7174|DEBUG|OnDoc| +2026-03-18 15:59:00.7174|DEBUG|OnDoc| +2026-03-18 15:59:00.7174|DEBUG|OnDoc|Generate_Word +2026-03-18 15:59:00.7420|DEBUG|OnDoc|Word2013 +2026-03-18 15:59:00.7420|DEBUG|OnDoc|Word2013 +2026-03-18 15:59:05.9253|DEBUG|OnDoc|Generate_Word +2026-03-18 15:59:05.9628|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016602 +2026-03-18 15:59:05.9628|INFO|DocLog|Dokument über API erstellt +2026-03-18 15:59:05.9663|INFO|APIDocLog|Dokument return to sender +2026-03-18 15:59:05.9663|DEBUG|OnDoc| +2026-03-18 15:59:05.9663|DEBUG|OnDoc| +2026-03-18 15:59:05.9663|DEBUG|OnDoc| +2026-03-18 15:59:05.9663|DEBUG|OnDoc| +2026-03-18 15:59:05.9663|DEBUG|OnDoc| +2026-03-18 15:59:05.9663|DEBUG|OnDoc| +2026-03-18 16:00:16.3608|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:00:16.6255|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:00:16.7551|INFO|APIDocLog|Input JSON +2026-03-18 16:00:16.7663|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7663|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7780|DEBUG|OnDoc| +2026-03-18 16:00:16.7955|DEBUG|OnDoc| +2026-03-18 16:00:16.7955|DEBUG|OnDoc| +2026-03-18 16:00:16.9367|DEBUG|OnDoc| +2026-03-18 16:00:16.9367|DEBUG|OnDoc| +2026-03-18 16:00:16.9367|DEBUG|OnDoc| +2026-03-18 16:00:16.9367|DEBUG|OnDoc| +2026-03-18 16:00:16.9367|DEBUG|OnDoc| +2026-03-18 16:00:16.9367|DEBUG|OnDoc| +2026-03-18 16:00:17.0768|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:00:17.0768|DEBUG|OnDoc| +2026-03-18 16:00:17.0768|DEBUG|OnDoc| +2026-03-18 16:00:17.0768|DEBUG|OnDoc| +2026-03-18 16:00:17.0768|DEBUG|OnDoc| +2026-03-18 16:00:17.0768|DEBUG|OnDoc| +2026-03-18 16:00:17.1029|DEBUG|OnDoc| +2026-03-18 16:00:17.1029|DEBUG|OnDoc| +2026-03-18 16:00:17.1125|DEBUG|OnDoc| +2026-03-18 16:00:17.1125|DEBUG|OnDoc|Generate_Word +2026-03-18 16:00:17.1316|DEBUG|OnDoc|Word2013 +2026-03-18 16:00:17.1316|DEBUG|OnDoc|Word2013 +2026-03-18 16:00:25.2685|DEBUG|OnDoc|Generate_Word +2026-03-18 16:00:25.3055|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016618 +2026-03-18 16:00:25.3055|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:00:25.3055|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:00:25.3055|DEBUG|OnDoc| +2026-03-18 16:00:25.3105|DEBUG|OnDoc| +2026-03-18 16:00:25.3105|DEBUG|OnDoc| +2026-03-18 16:00:25.3105|DEBUG|OnDoc| +2026-03-18 16:00:25.3105|DEBUG|OnDoc| +2026-03-18 16:00:25.3105|DEBUG|OnDoc| +2026-03-18 16:00:40.5016|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:00:40.8060|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:00:40.9493|INFO|APIDocLog|Input JSON +2026-03-18 16:00:40.9604|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:00:40.9604|DEBUG|OnDoc| +2026-03-18 16:00:40.9604|DEBUG|OnDoc| +2026-03-18 16:00:40.9604|DEBUG|OnDoc| +2026-03-18 16:00:40.9604|DEBUG|OnDoc| +2026-03-18 16:00:40.9604|DEBUG|OnDoc| +2026-03-18 16:00:40.9604|DEBUG|OnDoc| +2026-03-18 16:00:40.9604|DEBUG|OnDoc| +2026-03-18 16:00:40.9604|DEBUG|OnDoc| +2026-03-18 16:00:40.9604|DEBUG|OnDoc| +2026-03-18 16:00:40.9604|DEBUG|OnDoc| +2026-03-18 16:00:40.9604|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9656|DEBUG|OnDoc| +2026-03-18 16:00:40.9852|DEBUG|OnDoc| +2026-03-18 16:00:40.9852|DEBUG|OnDoc| +2026-03-18 16:00:41.1370|DEBUG|OnDoc| +2026-03-18 16:00:41.1370|DEBUG|OnDoc| +2026-03-18 16:00:41.1580|DEBUG|OnDoc| +2026-03-18 16:00:41.1580|DEBUG|OnDoc| +2026-03-18 16:00:41.1580|DEBUG|OnDoc| +2026-03-18 16:00:41.1580|DEBUG|OnDoc| +2026-03-18 16:00:41.3025|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:00:41.3025|DEBUG|OnDoc| +2026-03-18 16:00:41.3211|DEBUG|OnDoc| +2026-03-18 16:00:41.3211|DEBUG|OnDoc| +2026-03-18 16:00:41.3258|DEBUG|OnDoc| +2026-03-18 16:00:41.3258|DEBUG|OnDoc| +2026-03-18 16:00:41.3258|DEBUG|OnDoc| +2026-03-18 16:00:41.3258|DEBUG|OnDoc| +2026-03-18 16:00:41.3455|DEBUG|OnDoc| +2026-03-18 16:00:41.3455|DEBUG|OnDoc|Generate_Word +2026-03-18 16:00:41.3707|DEBUG|OnDoc|Word2013 +2026-03-18 16:00:41.3737|DEBUG|OnDoc|Word2013 +2026-03-18 16:00:47.8308|DEBUG|OnDoc|Generate_Word +2026-03-18 16:00:47.8675|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016623 +2026-03-18 16:00:47.8675|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:00:47.8675|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:00:47.8675|DEBUG|OnDoc| +2026-03-18 16:00:47.8729|DEBUG|OnDoc| +2026-03-18 16:00:47.8729|DEBUG|OnDoc| +2026-03-18 16:00:47.8729|DEBUG|OnDoc| +2026-03-18 16:00:47.8729|DEBUG|OnDoc| +2026-03-18 16:00:47.8729|DEBUG|OnDoc| +2026-03-18 16:01:04.8361|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:01:05.1457|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:01:05.3480|INFO|APIDocLog|Input JSON +2026-03-18 16:01:05.3586|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:01:05.3586|DEBUG|OnDoc| +2026-03-18 16:01:05.3586|DEBUG|OnDoc| +2026-03-18 16:01:05.3586|DEBUG|OnDoc| +2026-03-18 16:01:05.3586|DEBUG|OnDoc| +2026-03-18 16:01:05.3586|DEBUG|OnDoc| +2026-03-18 16:01:05.3586|DEBUG|OnDoc| +2026-03-18 16:01:05.3586|DEBUG|OnDoc| +2026-03-18 16:01:05.3586|DEBUG|OnDoc| +2026-03-18 16:01:05.3586|DEBUG|OnDoc| +2026-03-18 16:01:05.3586|DEBUG|OnDoc| +2026-03-18 16:01:05.3586|DEBUG|OnDoc| +2026-03-18 16:01:05.3586|DEBUG|OnDoc| +2026-03-18 16:01:05.3586|DEBUG|OnDoc| +2026-03-18 16:01:05.3586|DEBUG|OnDoc| +2026-03-18 16:01:05.3801|DEBUG|OnDoc| +2026-03-18 16:01:05.3801|DEBUG|OnDoc| +2026-03-18 16:01:05.3801|DEBUG|OnDoc| +2026-03-18 16:01:05.3801|DEBUG|OnDoc| +2026-03-18 16:01:05.3801|DEBUG|OnDoc| +2026-03-18 16:01:05.3801|DEBUG|OnDoc| +2026-03-18 16:01:05.3877|DEBUG|OnDoc| +2026-03-18 16:01:05.3877|DEBUG|OnDoc| +2026-03-18 16:01:05.3877|DEBUG|OnDoc| +2026-03-18 16:01:05.3877|DEBUG|OnDoc| +2026-03-18 16:01:05.3877|DEBUG|OnDoc| +2026-03-18 16:01:05.3877|DEBUG|OnDoc| +2026-03-18 16:01:05.3877|DEBUG|OnDoc| +2026-03-18 16:01:05.3877|DEBUG|OnDoc| +2026-03-18 16:01:05.3877|DEBUG|OnDoc| +2026-03-18 16:01:05.3877|DEBUG|OnDoc| +2026-03-18 16:01:05.3877|DEBUG|OnDoc| +2026-03-18 16:01:05.3877|DEBUG|OnDoc| +2026-03-18 16:01:05.3877|DEBUG|OnDoc| +2026-03-18 16:01:05.3877|DEBUG|OnDoc| +2026-03-18 16:01:05.4093|DEBUG|OnDoc| +2026-03-18 16:01:05.4093|DEBUG|OnDoc| +2026-03-18 16:01:05.5728|DEBUG|OnDoc| +2026-03-18 16:01:05.5758|DEBUG|OnDoc| +2026-03-18 16:01:05.5758|DEBUG|OnDoc| +2026-03-18 16:01:05.5902|DEBUG|OnDoc| +2026-03-18 16:01:05.5902|DEBUG|OnDoc| +2026-03-18 16:01:05.5902|DEBUG|OnDoc| +2026-03-18 16:01:05.7320|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:01:05.7320|DEBUG|OnDoc| +2026-03-18 16:01:05.7320|DEBUG|OnDoc| +2026-03-18 16:01:05.7320|DEBUG|OnDoc| +2026-03-18 16:01:05.7320|DEBUG|OnDoc| +2026-03-18 16:01:05.7320|DEBUG|OnDoc| +2026-03-18 16:01:05.7470|DEBUG|OnDoc| +2026-03-18 16:01:05.7470|DEBUG|OnDoc| +2026-03-18 16:01:05.7470|DEBUG|OnDoc| +2026-03-18 16:01:05.7470|DEBUG|OnDoc|Generate_Word +2026-03-18 16:01:05.7651|DEBUG|OnDoc|Word2013 +2026-03-18 16:01:05.7651|DEBUG|OnDoc|Word2013 +2026-03-18 16:01:12.3497|DEBUG|OnDoc|Generate_Word +2026-03-18 16:01:12.3855|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016639 +2026-03-18 16:01:12.3870|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:01:12.3870|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:01:12.3870|DEBUG|OnDoc| +2026-03-18 16:01:12.3870|DEBUG|OnDoc| +2026-03-18 16:01:12.3870|DEBUG|OnDoc| +2026-03-18 16:01:12.3870|DEBUG|OnDoc| +2026-03-18 16:01:12.3870|DEBUG|OnDoc| +2026-03-18 16:01:12.3870|DEBUG|OnDoc| +2026-03-18 16:01:31.6149|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:01:31.9472|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:01:32.1262|INFO|APIDocLog|Input JSON +2026-03-18 16:01:32.1377|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1377|DEBUG|OnDoc| +2026-03-18 16:01:32.1646|DEBUG|OnDoc| +2026-03-18 16:01:32.1646|DEBUG|OnDoc| +2026-03-18 16:01:32.3442|DEBUG|OnDoc| +2026-03-18 16:01:32.3442|DEBUG|OnDoc| +2026-03-18 16:01:32.3617|DEBUG|OnDoc| +2026-03-18 16:01:32.3617|DEBUG|OnDoc| +2026-03-18 16:01:32.3617|DEBUG|OnDoc| +2026-03-18 16:01:32.3617|DEBUG|OnDoc| +2026-03-18 16:01:32.5274|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:01:32.5274|DEBUG|OnDoc| +2026-03-18 16:01:32.5333|DEBUG|OnDoc| +2026-03-18 16:01:32.5333|DEBUG|OnDoc| +2026-03-18 16:01:32.5333|DEBUG|OnDoc| +2026-03-18 16:01:32.5333|DEBUG|OnDoc| +2026-03-18 16:01:32.5333|DEBUG|OnDoc| +2026-03-18 16:01:32.5333|DEBUG|OnDoc| +2026-03-18 16:01:32.5456|DEBUG|OnDoc| +2026-03-18 16:01:32.5456|DEBUG|OnDoc|Generate_Word +2026-03-18 16:01:32.5601|DEBUG|OnDoc|Word2013 +2026-03-18 16:01:32.5601|DEBUG|OnDoc|Word2013 +2026-03-18 16:01:36.1405|DEBUG|OnDoc|Generate_Word +2026-03-18 16:01:36.1776|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016647 +2026-03-18 16:01:36.1776|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:01:36.1776|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:01:36.1776|DEBUG|OnDoc| +2026-03-18 16:01:36.1776|DEBUG|OnDoc| +2026-03-18 16:01:36.1776|DEBUG|OnDoc| +2026-03-18 16:01:36.1841|DEBUG|OnDoc| +2026-03-18 16:01:36.1841|DEBUG|OnDoc| +2026-03-18 16:01:36.1841|DEBUG|OnDoc| +2026-03-18 16:06:49.5015|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:06:49.8395|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:06:50.0013|INFO|APIDocLog|Input JSON +2026-03-18 16:06:50.0126|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0126|DEBUG|OnDoc| +2026-03-18 16:06:50.0281|DEBUG|OnDoc| +2026-03-18 16:06:50.0281|DEBUG|OnDoc| +2026-03-18 16:06:50.0281|DEBUG|OnDoc| +2026-03-18 16:06:50.0281|DEBUG|OnDoc| +2026-03-18 16:06:50.0509|DEBUG|OnDoc| +2026-03-18 16:06:50.0509|DEBUG|OnDoc| +2026-03-18 16:06:50.2319|DEBUG|OnDoc| +2026-03-18 16:06:50.2319|DEBUG|OnDoc| +2026-03-18 16:06:50.2319|DEBUG|OnDoc| +2026-03-18 16:06:50.2319|DEBUG|OnDoc| +2026-03-18 16:06:50.2319|DEBUG|OnDoc| +2026-03-18 16:06:50.2469|DEBUG|OnDoc| +2026-03-18 16:06:50.4252|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:06:50.4252|DEBUG|OnDoc| +2026-03-18 16:06:50.4252|DEBUG|OnDoc| +2026-03-18 16:06:50.4252|DEBUG|OnDoc| +2026-03-18 16:06:50.4252|DEBUG|OnDoc| +2026-03-18 16:06:50.4252|DEBUG|OnDoc| +2026-03-18 16:06:50.4400|DEBUG|OnDoc| +2026-03-18 16:06:50.4400|DEBUG|OnDoc| +2026-03-18 16:06:50.4400|DEBUG|OnDoc| +2026-03-18 16:06:50.4400|DEBUG|OnDoc|Generate_Word +2026-03-18 16:06:50.4535|DEBUG|OnDoc|Word2013 +2026-03-18 16:06:50.4535|DEBUG|OnDoc|Word2013 +2026-03-18 16:07:04.5792|DEBUG|OnDoc|Generate_Word +2026-03-18 16:07:04.6191|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016655 +2026-03-18 16:07:04.6191|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:07:04.6215|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:07:04.6215|DEBUG|OnDoc| +2026-03-18 16:07:04.6215|DEBUG|OnDoc| +2026-03-18 16:07:04.6215|DEBUG|OnDoc| +2026-03-18 16:07:04.6215|DEBUG|OnDoc| +2026-03-18 16:07:04.6215|DEBUG|OnDoc| +2026-03-18 16:07:04.6215|DEBUG|OnDoc| +2026-03-18 16:07:11.3677|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:07:11.7313|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:07:11.9057|INFO|APIDocLog|Input JSON +2026-03-18 16:07:11.9057|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:07:11.9057|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9187|DEBUG|OnDoc| +2026-03-18 16:07:11.9341|DEBUG|OnDoc| +2026-03-18 16:07:11.9341|DEBUG|OnDoc| +2026-03-18 16:07:11.9341|DEBUG|OnDoc| +2026-03-18 16:07:12.1382|DEBUG|OnDoc| +2026-03-18 16:07:12.1382|DEBUG|OnDoc| +2026-03-18 16:07:12.1382|DEBUG|OnDoc| +2026-03-18 16:07:12.1382|DEBUG|OnDoc| +2026-03-18 16:07:12.1382|DEBUG|OnDoc| +2026-03-18 16:07:12.1382|DEBUG|OnDoc| +2026-03-18 16:07:12.3165|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:07:12.3165|DEBUG|OnDoc| +2026-03-18 16:07:12.3286|DEBUG|OnDoc| +2026-03-18 16:07:12.3286|DEBUG|OnDoc| +2026-03-18 16:07:12.3286|DEBUG|OnDoc| +2026-03-18 16:07:12.3286|DEBUG|OnDoc| +2026-03-18 16:07:12.3286|DEBUG|OnDoc| +2026-03-18 16:07:12.3286|DEBUG|OnDoc| +2026-03-18 16:07:12.3427|DEBUG|OnDoc| +2026-03-18 16:07:12.3427|DEBUG|OnDoc|Generate_Word +2026-03-18 16:07:12.3427|DEBUG|OnDoc|Word2013 +2026-03-18 16:07:12.3427|DEBUG|OnDoc|Word2013 +2026-03-18 16:07:38.9613|DEBUG|OnDoc|Generate_Word +2026-03-18 16:07:38.9981|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016660 +2026-03-18 16:07:38.9981|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:07:38.9981|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:07:38.9981|DEBUG|OnDoc| +2026-03-18 16:07:38.9981|DEBUG|OnDoc| +2026-03-18 16:07:38.9981|DEBUG|OnDoc| +2026-03-18 16:07:38.9981|DEBUG|OnDoc| +2026-03-18 16:07:39.0132|DEBUG|OnDoc| +2026-03-18 16:07:39.0132|DEBUG|OnDoc| +2026-03-18 16:07:53.6448|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:07:54.0080|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:07:54.1830|INFO|APIDocLog|Input JSON +2026-03-18 16:07:54.1941|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:07:54.1941|DEBUG|OnDoc| +2026-03-18 16:07:54.1941|DEBUG|OnDoc| +2026-03-18 16:07:54.1941|DEBUG|OnDoc| +2026-03-18 16:07:54.1941|DEBUG|OnDoc| +2026-03-18 16:07:54.1941|DEBUG|OnDoc| +2026-03-18 16:07:54.1941|DEBUG|OnDoc| +2026-03-18 16:07:54.1941|DEBUG|OnDoc| +2026-03-18 16:07:54.1941|DEBUG|OnDoc| +2026-03-18 16:07:54.1941|DEBUG|OnDoc| +2026-03-18 16:07:54.1941|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.1996|DEBUG|OnDoc| +2026-03-18 16:07:54.2223|DEBUG|OnDoc| +2026-03-18 16:07:54.2223|DEBUG|OnDoc| +2026-03-18 16:07:54.4139|DEBUG|OnDoc| +2026-03-18 16:07:54.4139|DEBUG|OnDoc| +2026-03-18 16:07:54.4239|DEBUG|OnDoc| +2026-03-18 16:07:54.4239|DEBUG|OnDoc| +2026-03-18 16:07:54.4239|DEBUG|OnDoc| +2026-03-18 16:07:54.4239|DEBUG|OnDoc| +2026-03-18 16:07:54.5956|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:07:54.5956|DEBUG|OnDoc| +2026-03-18 16:07:54.5956|DEBUG|OnDoc| +2026-03-18 16:07:54.5956|DEBUG|OnDoc| +2026-03-18 16:07:54.5956|DEBUG|OnDoc| +2026-03-18 16:07:54.5956|DEBUG|OnDoc| +2026-03-18 16:07:54.6081|DEBUG|OnDoc| +2026-03-18 16:07:54.6081|DEBUG|OnDoc| +2026-03-18 16:07:54.6081|DEBUG|OnDoc| +2026-03-18 16:07:54.6081|DEBUG|OnDoc|Generate_Word +2026-03-18 16:07:54.6081|DEBUG|OnDoc|Word2013 +2026-03-18 16:07:54.6213|DEBUG|OnDoc|Word2013 +2026-03-18 16:08:26.7800|DEBUG|OnDoc|Generate_Word +2026-03-18 16:08:26.8160|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016671 +2026-03-18 16:08:26.8160|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:08:26.8160|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:08:26.8250|DEBUG|OnDoc| +2026-03-18 16:08:26.8250|DEBUG|OnDoc| +2026-03-18 16:08:26.8250|DEBUG|OnDoc| +2026-03-18 16:08:26.8250|DEBUG|OnDoc| +2026-03-18 16:08:26.8250|DEBUG|OnDoc| +2026-03-18 16:08:26.8250|DEBUG|OnDoc| +2026-03-18 16:09:14.8665|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:09:15.2776|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:09:15.4809|INFO|APIDocLog|Input JSON +2026-03-18 16:09:15.4809|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:09:15.4809|DEBUG|OnDoc| +2026-03-18 16:09:15.4809|DEBUG|OnDoc| +2026-03-18 16:09:15.4809|DEBUG|OnDoc| +2026-03-18 16:09:15.4809|DEBUG|OnDoc| +2026-03-18 16:09:15.4809|DEBUG|OnDoc| +2026-03-18 16:09:15.4809|DEBUG|OnDoc| +2026-03-18 16:09:15.4809|DEBUG|OnDoc| +2026-03-18 16:09:15.4809|DEBUG|OnDoc| +2026-03-18 16:09:15.4809|DEBUG|OnDoc| +2026-03-18 16:09:15.4809|DEBUG|OnDoc| +2026-03-18 16:09:15.4809|DEBUG|OnDoc| +2026-03-18 16:09:15.4809|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.4969|DEBUG|OnDoc| +2026-03-18 16:09:15.5331|DEBUG|OnDoc| +2026-03-18 16:09:15.5331|DEBUG|OnDoc| +2026-03-18 16:09:15.7721|DEBUG|OnDoc| +2026-03-18 16:09:15.7721|DEBUG|OnDoc| +2026-03-18 16:09:15.7850|DEBUG|OnDoc| +2026-03-18 16:09:15.7850|DEBUG|OnDoc| +2026-03-18 16:09:15.7850|DEBUG|OnDoc| +2026-03-18 16:09:15.7850|DEBUG|OnDoc| +2026-03-18 16:09:15.9850|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:09:15.9850|DEBUG|OnDoc| +2026-03-18 16:09:15.9850|DEBUG|OnDoc| +2026-03-18 16:09:15.9850|DEBUG|OnDoc| +2026-03-18 16:09:15.9850|DEBUG|OnDoc| +2026-03-18 16:09:15.9850|DEBUG|OnDoc| +2026-03-18 16:09:15.9973|DEBUG|OnDoc| +2026-03-18 16:09:15.9973|DEBUG|OnDoc| +2026-03-18 16:09:15.9973|DEBUG|OnDoc| +2026-03-18 16:09:15.9973|DEBUG|OnDoc|Generate_Word +2026-03-18 16:09:16.0162|DEBUG|OnDoc|Word2013 +2026-03-18 16:09:16.0162|DEBUG|OnDoc|Word2013 +2026-03-18 16:09:31.1951|DEBUG|OnDoc|Generate_Word +2026-03-18 16:09:31.2325|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016686 +2026-03-18 16:09:31.2325|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:09:31.2325|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:09:31.2325|DEBUG|OnDoc| +2026-03-18 16:09:31.2325|DEBUG|OnDoc| +2026-03-18 16:09:31.2325|DEBUG|OnDoc| +2026-03-18 16:09:31.2325|DEBUG|OnDoc| +2026-03-18 16:09:31.2325|DEBUG|OnDoc| +2026-03-18 16:09:31.2325|DEBUG|OnDoc| +2026-03-18 16:09:55.3847|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:09:55.8117|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:09:56.0135|INFO|APIDocLog|Input JSON +2026-03-18 16:09:56.0135|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:09:56.0135|DEBUG|OnDoc| +2026-03-18 16:09:56.0135|DEBUG|OnDoc| +2026-03-18 16:09:56.0135|DEBUG|OnDoc| +2026-03-18 16:09:56.0135|DEBUG|OnDoc| +2026-03-18 16:09:56.0135|DEBUG|OnDoc| +2026-03-18 16:09:56.0135|DEBUG|OnDoc| +2026-03-18 16:09:56.0135|DEBUG|OnDoc| +2026-03-18 16:09:56.0135|DEBUG|OnDoc| +2026-03-18 16:09:56.0135|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0277|DEBUG|OnDoc| +2026-03-18 16:09:56.0504|DEBUG|OnDoc| +2026-03-18 16:09:56.0504|DEBUG|OnDoc| +2026-03-18 16:09:56.2635|DEBUG|OnDoc| +2026-03-18 16:09:56.2635|DEBUG|OnDoc| +2026-03-18 16:09:56.2635|DEBUG|OnDoc| +2026-03-18 16:09:56.2635|DEBUG|OnDoc| +2026-03-18 16:09:56.2635|DEBUG|OnDoc| +2026-03-18 16:09:56.2635|DEBUG|OnDoc| +2026-03-18 16:09:56.4644|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:09:56.4655|DEBUG|OnDoc| +2026-03-18 16:09:56.4655|DEBUG|OnDoc| +2026-03-18 16:09:56.4655|DEBUG|OnDoc| +2026-03-18 16:09:56.4655|DEBUG|OnDoc| +2026-03-18 16:09:56.4655|DEBUG|OnDoc| +2026-03-18 16:09:56.4655|DEBUG|OnDoc| +2026-03-18 16:09:56.4655|DEBUG|OnDoc| +2026-03-18 16:09:56.4823|DEBUG|OnDoc| +2026-03-18 16:09:56.4823|DEBUG|OnDoc|Generate_Word +2026-03-18 16:09:56.4823|DEBUG|OnDoc|Word2013 +2026-03-18 16:09:56.4823|DEBUG|OnDoc|Word2013 +2026-03-18 16:10:04.6296|DEBUG|OnDoc|Generate_Word +2026-03-18 16:10:04.6670|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016694 +2026-03-18 16:10:04.6670|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:10:04.6670|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:10:04.6700|DEBUG|OnDoc| +2026-03-18 16:10:04.6700|DEBUG|OnDoc| +2026-03-18 16:10:04.6700|DEBUG|OnDoc| +2026-03-18 16:10:04.6700|DEBUG|OnDoc| +2026-03-18 16:10:04.6700|DEBUG|OnDoc| +2026-03-18 16:10:04.6700|DEBUG|OnDoc| +2026-03-18 16:10:34.6394|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:10:35.1050|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:10:35.3352|INFO|APIDocLog|Input JSON +2026-03-18 16:10:35.3464|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3464|DEBUG|OnDoc| +2026-03-18 16:10:35.3571|DEBUG|OnDoc| +2026-03-18 16:10:35.3571|DEBUG|OnDoc| +2026-03-18 16:10:35.3571|DEBUG|OnDoc| +2026-03-18 16:10:35.3571|DEBUG|OnDoc| +2026-03-18 16:10:35.3571|DEBUG|OnDoc| +2026-03-18 16:10:35.3571|DEBUG|OnDoc| +2026-03-18 16:10:35.3571|DEBUG|OnDoc| +2026-03-18 16:10:35.3571|DEBUG|OnDoc| +2026-03-18 16:10:35.3571|DEBUG|OnDoc| +2026-03-18 16:10:35.3571|DEBUG|OnDoc| +2026-03-18 16:10:35.3571|DEBUG|OnDoc| +2026-03-18 16:10:35.3571|DEBUG|OnDoc| +2026-03-18 16:10:35.3571|DEBUG|OnDoc| +2026-03-18 16:10:35.3571|DEBUG|OnDoc| +2026-03-18 16:10:35.3847|DEBUG|OnDoc| +2026-03-18 16:10:35.3847|DEBUG|OnDoc| +2026-03-18 16:10:35.6358|DEBUG|OnDoc| +2026-03-18 16:10:35.6358|DEBUG|OnDoc| +2026-03-18 16:10:35.6470|DEBUG|OnDoc| +2026-03-18 16:10:35.6470|DEBUG|OnDoc| +2026-03-18 16:10:35.6470|DEBUG|OnDoc| +2026-03-18 16:10:35.6470|DEBUG|OnDoc| +2026-03-18 16:10:35.8997|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:10:35.8997|DEBUG|OnDoc| +2026-03-18 16:10:35.9059|DEBUG|OnDoc| +2026-03-18 16:10:35.9059|DEBUG|OnDoc| +2026-03-18 16:10:35.9059|DEBUG|OnDoc| +2026-03-18 16:10:35.9059|DEBUG|OnDoc| +2026-03-18 16:10:35.9059|DEBUG|OnDoc| +2026-03-18 16:10:35.9059|DEBUG|OnDoc| +2026-03-18 16:10:35.9190|DEBUG|OnDoc| +2026-03-18 16:10:35.9190|DEBUG|OnDoc|Generate_Word +2026-03-18 16:10:35.9372|DEBUG|OnDoc|Word2013 +2026-03-18 16:10:35.9372|DEBUG|OnDoc|Word2013 +2026-03-18 16:10:42.2394|DEBUG|OnDoc|Generate_Word +2026-03-18 16:10:42.2783|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016703 +2026-03-18 16:10:42.2783|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:10:42.2783|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:10:42.2783|DEBUG|OnDoc| +2026-03-18 16:10:42.2783|DEBUG|OnDoc| +2026-03-18 16:10:42.2783|DEBUG|OnDoc| +2026-03-18 16:10:42.2783|DEBUG|OnDoc| +2026-03-18 16:10:42.2783|DEBUG|OnDoc| +2026-03-18 16:10:42.2783|DEBUG|OnDoc| +2026-03-18 16:11:01.7953|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:11:02.2745|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:11:02.5021|INFO|APIDocLog|Input JSON +2026-03-18 16:11:02.5125|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5125|DEBUG|OnDoc| +2026-03-18 16:11:02.5283|DEBUG|OnDoc| +2026-03-18 16:11:02.5283|DEBUG|OnDoc| +2026-03-18 16:11:02.5283|DEBUG|OnDoc| +2026-03-18 16:11:02.5283|DEBUG|OnDoc| +2026-03-18 16:11:02.5283|DEBUG|OnDoc| +2026-03-18 16:11:02.5283|DEBUG|OnDoc| +2026-03-18 16:11:02.5283|DEBUG|OnDoc| +2026-03-18 16:11:02.5440|DEBUG|OnDoc| +2026-03-18 16:11:02.8003|DEBUG|OnDoc| +2026-03-18 16:11:02.8003|DEBUG|OnDoc| +2026-03-18 16:11:02.8099|DEBUG|OnDoc| +2026-03-18 16:11:02.8099|DEBUG|OnDoc| +2026-03-18 16:11:02.8099|DEBUG|OnDoc| +2026-03-18 16:11:02.8099|DEBUG|OnDoc| +2026-03-18 16:11:03.0397|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:11:03.0397|DEBUG|OnDoc| +2026-03-18 16:11:03.0469|DEBUG|OnDoc| +2026-03-18 16:11:03.0469|DEBUG|OnDoc| +2026-03-18 16:11:03.0469|DEBUG|OnDoc| +2026-03-18 16:11:03.0469|DEBUG|OnDoc| +2026-03-18 16:11:03.0469|DEBUG|OnDoc| +2026-03-18 16:11:03.0469|DEBUG|OnDoc| +2026-03-18 16:11:03.0590|DEBUG|OnDoc| +2026-03-18 16:11:03.0590|DEBUG|OnDoc|Generate_Word +2026-03-18 16:11:03.0590|DEBUG|OnDoc|Word2013 +2026-03-18 16:11:03.0590|DEBUG|OnDoc|Word2013 +2026-03-18 16:11:10.6335|DEBUG|OnDoc|Generate_Word +2026-03-18 16:11:10.6697|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016719 +2026-03-18 16:11:10.6697|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:11:10.6697|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:11:10.6697|DEBUG|OnDoc| +2026-03-18 16:11:10.6697|DEBUG|OnDoc| +2026-03-18 16:11:10.6697|DEBUG|OnDoc| +2026-03-18 16:11:10.6697|DEBUG|OnDoc| +2026-03-18 16:11:10.6697|DEBUG|OnDoc| +2026-03-18 16:11:10.6697|DEBUG|OnDoc| +2026-03-18 16:11:33.4192|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:11:33.9309|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:11:34.2082|INFO|APIDocLog|Input JSON +2026-03-18 16:11:34.2184|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:11:34.2184|DEBUG|OnDoc| +2026-03-18 16:11:34.2184|DEBUG|OnDoc| +2026-03-18 16:11:34.2184|DEBUG|OnDoc| +2026-03-18 16:11:34.2184|DEBUG|OnDoc| +2026-03-18 16:11:34.2184|DEBUG|OnDoc| +2026-03-18 16:11:34.2184|DEBUG|OnDoc| +2026-03-18 16:11:34.2184|DEBUG|OnDoc| +2026-03-18 16:11:34.2184|DEBUG|OnDoc| +2026-03-18 16:11:34.2184|DEBUG|OnDoc| +2026-03-18 16:11:34.2311|DEBUG|OnDoc| +2026-03-18 16:11:34.2311|DEBUG|OnDoc| +2026-03-18 16:11:34.2311|DEBUG|OnDoc| +2026-03-18 16:11:34.2311|DEBUG|OnDoc| +2026-03-18 16:11:34.2311|DEBUG|OnDoc| +2026-03-18 16:11:34.2311|DEBUG|OnDoc| +2026-03-18 16:11:34.2311|DEBUG|OnDoc| +2026-03-18 16:11:34.2311|DEBUG|OnDoc| +2026-03-18 16:11:34.2311|DEBUG|OnDoc| +2026-03-18 16:11:34.2311|DEBUG|OnDoc| +2026-03-18 16:11:34.2311|DEBUG|OnDoc| +2026-03-18 16:11:34.2311|DEBUG|OnDoc| +2026-03-18 16:11:34.2311|DEBUG|OnDoc| +2026-03-18 16:11:34.2467|DEBUG|OnDoc| +2026-03-18 16:11:34.2467|DEBUG|OnDoc| +2026-03-18 16:11:34.2467|DEBUG|OnDoc| +2026-03-18 16:11:34.2467|DEBUG|OnDoc| +2026-03-18 16:11:34.2467|DEBUG|OnDoc| +2026-03-18 16:11:34.2467|DEBUG|OnDoc| +2026-03-18 16:11:34.2467|DEBUG|OnDoc| +2026-03-18 16:11:34.2467|DEBUG|OnDoc| +2026-03-18 16:11:34.2467|DEBUG|OnDoc| +2026-03-18 16:11:34.2467|DEBUG|OnDoc| +2026-03-18 16:11:34.2467|DEBUG|OnDoc| +2026-03-18 16:11:34.2467|DEBUG|OnDoc| +2026-03-18 16:11:34.2651|DEBUG|OnDoc| +2026-03-18 16:11:34.2651|DEBUG|OnDoc| +2026-03-18 16:11:34.5431|DEBUG|OnDoc| +2026-03-18 16:11:34.5451|DEBUG|OnDoc| +2026-03-18 16:11:34.5451|DEBUG|OnDoc| +2026-03-18 16:11:34.5451|DEBUG|OnDoc| +2026-03-18 16:11:34.5451|DEBUG|OnDoc| +2026-03-18 16:11:34.5451|DEBUG|OnDoc| +2026-03-18 16:11:34.8137|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:11:34.8137|DEBUG|OnDoc| +2026-03-18 16:11:34.8137|DEBUG|OnDoc| +2026-03-18 16:11:34.8137|DEBUG|OnDoc| +2026-03-18 16:11:34.8137|DEBUG|OnDoc| +2026-03-18 16:11:34.8137|DEBUG|OnDoc| +2026-03-18 16:11:34.8273|DEBUG|OnDoc| +2026-03-18 16:11:34.8273|DEBUG|OnDoc| +2026-03-18 16:11:34.8273|DEBUG|OnDoc| +2026-03-18 16:11:34.8273|DEBUG|OnDoc|Generate_Word +2026-03-18 16:11:34.8466|DEBUG|OnDoc|Word2013 +2026-03-18 16:11:34.8466|DEBUG|OnDoc|Word2013 +2026-03-18 16:11:39.0702|DEBUG|OnDoc|Generate_Word +2026-03-18 16:11:39.1078|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016727 +2026-03-18 16:11:39.1078|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:11:39.1078|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:11:39.1078|DEBUG|OnDoc| +2026-03-18 16:11:39.1078|DEBUG|OnDoc| +2026-03-18 16:11:39.1078|DEBUG|OnDoc| +2026-03-18 16:11:39.1078|DEBUG|OnDoc| +2026-03-18 16:11:39.1078|DEBUG|OnDoc| +2026-03-18 16:11:39.1078|DEBUG|OnDoc| +2026-03-18 16:12:13.0783|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:12:13.6906|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:12:13.9788|INFO|APIDocLog|Input JSON +2026-03-18 16:12:13.9896|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:12:13.9896|DEBUG|OnDoc| +2026-03-18 16:12:13.9896|DEBUG|OnDoc| +2026-03-18 16:12:13.9896|DEBUG|OnDoc| +2026-03-18 16:12:13.9896|DEBUG|OnDoc| +2026-03-18 16:12:13.9896|DEBUG|OnDoc| +2026-03-18 16:12:13.9896|DEBUG|OnDoc| +2026-03-18 16:12:13.9896|DEBUG|OnDoc| +2026-03-18 16:12:13.9896|DEBUG|OnDoc| +2026-03-18 16:12:13.9896|DEBUG|OnDoc| +2026-03-18 16:12:13.9896|DEBUG|OnDoc| +2026-03-18 16:12:13.9896|DEBUG|OnDoc| +2026-03-18 16:12:13.9896|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:13.9968|DEBUG|OnDoc| +2026-03-18 16:12:14.0299|DEBUG|OnDoc| +2026-03-18 16:12:14.0299|DEBUG|OnDoc| +2026-03-18 16:12:14.3456|DEBUG|OnDoc| +2026-03-18 16:12:14.3456|DEBUG|OnDoc| +2026-03-18 16:12:14.3582|DEBUG|OnDoc| +2026-03-18 16:12:14.3582|DEBUG|OnDoc| +2026-03-18 16:12:14.3582|DEBUG|OnDoc| +2026-03-18 16:12:14.3582|DEBUG|OnDoc| +2026-03-18 16:12:14.6370|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:12:14.6370|DEBUG|OnDoc| +2026-03-18 16:12:14.6370|DEBUG|OnDoc| +2026-03-18 16:12:14.6370|DEBUG|OnDoc| +2026-03-18 16:12:14.6370|DEBUG|OnDoc| +2026-03-18 16:12:14.6370|DEBUG|OnDoc| +2026-03-18 16:12:14.6370|DEBUG|OnDoc| +2026-03-18 16:12:14.6370|DEBUG|OnDoc| +2026-03-18 16:12:14.6572|DEBUG|OnDoc| +2026-03-18 16:12:14.6572|DEBUG|OnDoc|Generate_Word +2026-03-18 16:12:14.6720|DEBUG|OnDoc|Word2013 +2026-03-18 16:12:14.6720|DEBUG|OnDoc|Word2013 +2026-03-18 16:12:19.1004|DEBUG|OnDoc|Generate_Word +2026-03-18 16:12:19.1371|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016735 +2026-03-18 16:12:19.1371|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:12:19.1371|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:12:19.1371|DEBUG|OnDoc| +2026-03-18 16:12:19.1371|DEBUG|OnDoc| +2026-03-18 16:12:19.1371|DEBUG|OnDoc| +2026-03-18 16:12:19.1371|DEBUG|OnDoc| +2026-03-18 16:12:19.1371|DEBUG|OnDoc| +2026-03-18 16:12:19.1371|DEBUG|OnDoc| +2026-03-18 16:12:35.5684|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:12:36.1512|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:12:36.4568|INFO|APIDocLog|Input JSON +2026-03-18 16:12:36.4690|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:12:36.4690|DEBUG|OnDoc| +2026-03-18 16:12:36.4690|DEBUG|OnDoc| +2026-03-18 16:12:36.4690|DEBUG|OnDoc| +2026-03-18 16:12:36.4690|DEBUG|OnDoc| +2026-03-18 16:12:36.4690|DEBUG|OnDoc| +2026-03-18 16:12:36.4690|DEBUG|OnDoc| +2026-03-18 16:12:36.4690|DEBUG|OnDoc| +2026-03-18 16:12:36.4690|DEBUG|OnDoc| +2026-03-18 16:12:36.4690|DEBUG|OnDoc| +2026-03-18 16:12:36.4690|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.4809|DEBUG|OnDoc| +2026-03-18 16:12:36.5075|DEBUG|OnDoc| +2026-03-18 16:12:36.5075|DEBUG|OnDoc| +2026-03-18 16:12:36.8247|DEBUG|OnDoc| +2026-03-18 16:12:36.8247|DEBUG|OnDoc| +2026-03-18 16:12:36.8247|DEBUG|OnDoc| +2026-03-18 16:12:36.8247|DEBUG|OnDoc| +2026-03-18 16:12:36.8247|DEBUG|OnDoc| +2026-03-18 16:12:36.8247|DEBUG|OnDoc| +2026-03-18 16:12:37.1752|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:12:37.1752|DEBUG|OnDoc| +2026-03-18 16:12:37.1902|DEBUG|OnDoc| +2026-03-18 16:12:37.1902|DEBUG|OnDoc| +2026-03-18 16:12:37.1902|DEBUG|OnDoc| +2026-03-18 16:12:37.1902|DEBUG|OnDoc| +2026-03-18 16:12:37.2071|DEBUG|OnDoc| +2026-03-18 16:12:37.2071|DEBUG|OnDoc| +2026-03-18 16:12:37.2178|DEBUG|OnDoc| +2026-03-18 16:12:37.2178|DEBUG|OnDoc|Generate_Word +2026-03-18 16:12:37.2361|DEBUG|OnDoc|Word2013 +2026-03-18 16:12:37.2361|DEBUG|OnDoc|Word2013 +2026-03-18 16:12:41.8126|DEBUG|OnDoc|Generate_Word +2026-03-18 16:12:41.8493|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016740 +2026-03-18 16:12:41.8493|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:12:41.8493|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:12:41.8493|DEBUG|OnDoc| +2026-03-18 16:12:41.8493|DEBUG|OnDoc| +2026-03-18 16:12:41.8493|DEBUG|OnDoc| +2026-03-18 16:12:41.8559|DEBUG|OnDoc| +2026-03-18 16:12:41.8559|DEBUG|OnDoc| +2026-03-18 16:12:41.8559|DEBUG|OnDoc| +2026-03-18 16:12:54.9700|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:12:55.5385|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:12:55.8285|INFO|APIDocLog|Input JSON +2026-03-18 16:12:55.8285|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:12:55.8285|DEBUG|OnDoc| +2026-03-18 16:12:55.8285|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8413|DEBUG|OnDoc| +2026-03-18 16:12:55.8562|DEBUG|OnDoc| +2026-03-18 16:12:55.8562|DEBUG|OnDoc| +2026-03-18 16:12:55.8562|DEBUG|OnDoc| +2026-03-18 16:12:55.8562|DEBUG|OnDoc| +2026-03-18 16:12:55.8562|DEBUG|OnDoc| +2026-03-18 16:12:55.8562|DEBUG|OnDoc| +2026-03-18 16:12:55.8787|DEBUG|OnDoc| +2026-03-18 16:12:55.8787|DEBUG|OnDoc| +2026-03-18 16:12:56.2253|DEBUG|OnDoc| +2026-03-18 16:12:56.2253|DEBUG|OnDoc| +2026-03-18 16:12:56.2383|DEBUG|OnDoc| +2026-03-18 16:12:56.2383|DEBUG|OnDoc| +2026-03-18 16:12:56.2383|DEBUG|OnDoc| +2026-03-18 16:12:56.2383|DEBUG|OnDoc| +2026-03-18 16:12:56.5699|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:12:56.5699|DEBUG|OnDoc| +2026-03-18 16:12:56.5792|DEBUG|OnDoc| +2026-03-18 16:12:56.5792|DEBUG|OnDoc| +2026-03-18 16:12:56.5792|DEBUG|OnDoc| +2026-03-18 16:12:56.5792|DEBUG|OnDoc| +2026-03-18 16:12:56.5792|DEBUG|OnDoc| +2026-03-18 16:12:56.5792|DEBUG|OnDoc| +2026-03-18 16:12:56.5927|DEBUG|OnDoc| +2026-03-18 16:12:56.5927|DEBUG|OnDoc|Generate_Word +2026-03-18 16:12:56.5927|DEBUG|OnDoc|Word2013 +2026-03-18 16:12:56.5927|DEBUG|OnDoc|Word2013 +2026-03-18 16:13:01.3534|DEBUG|OnDoc|Generate_Word +2026-03-18 16:13:01.3901|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016751 +2026-03-18 16:13:01.3901|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:13:01.3901|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:13:01.3901|DEBUG|OnDoc| +2026-03-18 16:13:01.3901|DEBUG|OnDoc| +2026-03-18 16:13:01.3901|DEBUG|OnDoc| +2026-03-18 16:13:01.3901|DEBUG|OnDoc| +2026-03-18 16:13:01.3901|DEBUG|OnDoc| +2026-03-18 16:13:01.3901|DEBUG|OnDoc| +2026-03-18 16:13:48.4423|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:13:49.0703|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:13:49.3992|INFO|APIDocLog|Input JSON +2026-03-18 16:13:49.4102|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:13:49.4102|DEBUG|OnDoc| +2026-03-18 16:13:49.4102|DEBUG|OnDoc| +2026-03-18 16:13:49.4102|DEBUG|OnDoc| +2026-03-18 16:13:49.4102|DEBUG|OnDoc| +2026-03-18 16:13:49.4102|DEBUG|OnDoc| +2026-03-18 16:13:49.4102|DEBUG|OnDoc| +2026-03-18 16:13:49.4102|DEBUG|OnDoc| +2026-03-18 16:13:49.4102|DEBUG|OnDoc| +2026-03-18 16:13:49.4102|DEBUG|OnDoc| +2026-03-18 16:13:49.4102|DEBUG|OnDoc| +2026-03-18 16:13:49.4102|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4186|DEBUG|OnDoc| +2026-03-18 16:13:49.4342|DEBUG|OnDoc| +2026-03-18 16:13:49.4342|DEBUG|OnDoc| +2026-03-18 16:13:49.4342|DEBUG|OnDoc| +2026-03-18 16:13:49.4342|DEBUG|OnDoc| +2026-03-18 16:13:49.4342|DEBUG|OnDoc| +2026-03-18 16:13:49.4342|DEBUG|OnDoc| +2026-03-18 16:13:49.4342|DEBUG|OnDoc| +2026-03-18 16:13:49.4635|DEBUG|OnDoc| +2026-03-18 16:13:49.4665|DEBUG|OnDoc| +2026-03-18 16:13:49.8332|DEBUG|OnDoc| +2026-03-18 16:13:49.8332|DEBUG|OnDoc| +2026-03-18 16:13:49.8449|DEBUG|OnDoc| +2026-03-18 16:13:49.8449|DEBUG|OnDoc| +2026-03-18 16:13:49.8449|DEBUG|OnDoc| +2026-03-18 16:13:49.8449|DEBUG|OnDoc| +2026-03-18 16:13:50.1815|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:13:50.1815|DEBUG|OnDoc| +2026-03-18 16:13:50.1890|DEBUG|OnDoc| +2026-03-18 16:13:50.1890|DEBUG|OnDoc| +2026-03-18 16:13:50.1890|DEBUG|OnDoc| +2026-03-18 16:13:50.1890|DEBUG|OnDoc| +2026-03-18 16:13:50.1890|DEBUG|OnDoc| +2026-03-18 16:13:50.1890|DEBUG|OnDoc| +2026-03-18 16:13:50.2011|DEBUG|OnDoc| +2026-03-18 16:13:50.2011|DEBUG|OnDoc|Generate_Word +2026-03-18 16:13:50.2167|DEBUG|OnDoc|Word2013 +2026-03-18 16:13:50.2167|DEBUG|OnDoc|Word2013 +2026-03-18 16:14:27.2562|DEBUG|OnDoc|Generate_Word +2026-03-18 16:14:27.2940|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016766 +2026-03-18 16:14:27.2940|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:14:27.2940|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:14:27.2940|DEBUG|OnDoc| +2026-03-18 16:14:27.2940|DEBUG|OnDoc| +2026-03-18 16:14:27.2940|DEBUG|OnDoc| +2026-03-18 16:14:27.2940|DEBUG|OnDoc| +2026-03-18 16:14:27.2940|DEBUG|OnDoc| +2026-03-18 16:14:27.2940|DEBUG|OnDoc| +2026-03-18 16:14:35.9345|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:14:36.5717|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:14:36.8730|INFO|APIDocLog|Input JSON +2026-03-18 16:14:36.8730|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:14:36.8730|DEBUG|OnDoc| +2026-03-18 16:14:36.8730|DEBUG|OnDoc| +2026-03-18 16:14:36.8730|DEBUG|OnDoc| +2026-03-18 16:14:36.8730|DEBUG|OnDoc| +2026-03-18 16:14:36.8730|DEBUG|OnDoc| +2026-03-18 16:14:36.8730|DEBUG|OnDoc| +2026-03-18 16:14:36.8730|DEBUG|OnDoc| +2026-03-18 16:14:36.8730|DEBUG|OnDoc| +2026-03-18 16:14:36.8730|DEBUG|OnDoc| +2026-03-18 16:14:36.8730|DEBUG|OnDoc| +2026-03-18 16:14:36.8730|DEBUG|OnDoc| +2026-03-18 16:14:36.8730|DEBUG|OnDoc| +2026-03-18 16:14:36.8730|DEBUG|OnDoc| +2026-03-18 16:14:36.8730|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.8878|DEBUG|OnDoc| +2026-03-18 16:14:36.9061|DEBUG|OnDoc| +2026-03-18 16:14:36.9061|DEBUG|OnDoc| +2026-03-18 16:14:37.2815|DEBUG|OnDoc| +2026-03-18 16:14:37.2815|DEBUG|OnDoc| +2026-03-18 16:14:37.2815|DEBUG|OnDoc| +2026-03-18 16:14:37.2815|DEBUG|OnDoc| +2026-03-18 16:14:37.2815|DEBUG|OnDoc| +2026-03-18 16:14:37.2940|DEBUG|OnDoc| +2026-03-18 16:14:37.5971|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:14:37.5971|DEBUG|OnDoc| +2026-03-18 16:14:37.5971|DEBUG|OnDoc| +2026-03-18 16:14:37.5971|DEBUG|OnDoc| +2026-03-18 16:14:37.5971|DEBUG|OnDoc| +2026-03-18 16:14:37.5971|DEBUG|OnDoc| +2026-03-18 16:14:37.6098|DEBUG|OnDoc| +2026-03-18 16:14:37.6098|DEBUG|OnDoc| +2026-03-18 16:14:37.6098|DEBUG|OnDoc| +2026-03-18 16:14:37.6098|DEBUG|OnDoc|Generate_Word +2026-03-18 16:14:37.6213|DEBUG|OnDoc|Word2013 +2026-03-18 16:14:37.6213|DEBUG|OnDoc|Word2013 +2026-03-18 16:14:48.4518|DEBUG|OnDoc|Generate_Word +2026-03-18 16:14:48.4906|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016774 +2026-03-18 16:14:48.4906|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:14:48.4906|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:14:48.4906|DEBUG|OnDoc| +2026-03-18 16:14:48.4906|DEBUG|OnDoc| +2026-03-18 16:14:48.4966|DEBUG|OnDoc| +2026-03-18 16:14:48.4966|DEBUG|OnDoc| +2026-03-18 16:14:48.4966|DEBUG|OnDoc| +2026-03-18 16:14:48.4966|DEBUG|OnDoc| +2026-03-18 16:15:26.5770|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:15:27.2537|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:15:27.5892|INFO|APIDocLog|Input JSON +2026-03-18 16:15:27.5992|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.5992|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6063|DEBUG|OnDoc| +2026-03-18 16:15:27.6315|DEBUG|OnDoc| +2026-03-18 16:15:27.6315|DEBUG|OnDoc| +2026-03-18 16:15:28.0072|DEBUG|OnDoc| +2026-03-18 16:15:28.0072|DEBUG|OnDoc| +2026-03-18 16:15:28.0177|DEBUG|OnDoc| +2026-03-18 16:15:28.0177|DEBUG|OnDoc| +2026-03-18 16:15:28.0177|DEBUG|OnDoc| +2026-03-18 16:15:28.0177|DEBUG|OnDoc| +2026-03-18 16:15:28.3604|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:15:28.3604|DEBUG|OnDoc| +2026-03-18 16:15:28.3728|DEBUG|OnDoc| +2026-03-18 16:15:28.3728|DEBUG|OnDoc| +2026-03-18 16:15:28.3728|DEBUG|OnDoc| +2026-03-18 16:15:28.3728|DEBUG|OnDoc| +2026-03-18 16:15:28.3728|DEBUG|OnDoc| +2026-03-18 16:15:28.3728|DEBUG|OnDoc| +2026-03-18 16:15:28.3909|DEBUG|OnDoc| +2026-03-18 16:15:28.3909|DEBUG|OnDoc|Generate_Word +2026-03-18 16:15:28.4070|DEBUG|OnDoc|Word2013 +2026-03-18 16:15:28.4070|DEBUG|OnDoc|Word2013 +2026-03-18 16:15:37.2563|DEBUG|OnDoc|Generate_Word +2026-03-18 16:15:37.2933|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016782 +2026-03-18 16:15:37.2933|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:15:37.2933|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:15:37.2933|DEBUG|OnDoc| +2026-03-18 16:15:37.2933|DEBUG|OnDoc| +2026-03-18 16:15:37.2933|DEBUG|OnDoc| +2026-03-18 16:15:37.2933|DEBUG|OnDoc| +2026-03-18 16:15:37.2933|DEBUG|OnDoc| +2026-03-18 16:15:37.2933|DEBUG|OnDoc| +2026-03-18 16:16:02.9806|DEBUG|OnDoc| +2026-03-18 16:16:03.0902|DEBUG|OnDoc| +2026-03-18 16:16:03.0902|DEBUG|OnDoc| +2026-03-18 16:16:03.0902|DEBUG|OnDoc| +2026-03-18 16:16:03.4538|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:16:03.7602|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:16:03.8700|INFO|APIDocLog|Input JSON +2026-03-18 16:16:03.8930|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:16:03.8930|DEBUG|OnDoc| +2026-03-18 16:16:03.8930|DEBUG|OnDoc| +2026-03-18 16:16:03.8930|DEBUG|OnDoc| +2026-03-18 16:16:03.8930|DEBUG|OnDoc| +2026-03-18 16:16:03.8930|DEBUG|OnDoc| +2026-03-18 16:16:03.9033|DEBUG|OnDoc| +2026-03-18 16:16:03.9033|DEBUG|OnDoc| +2026-03-18 16:16:03.9033|DEBUG|OnDoc| +2026-03-18 16:16:03.9033|DEBUG|OnDoc| +2026-03-18 16:16:03.9033|DEBUG|OnDoc| +2026-03-18 16:16:03.9033|DEBUG|OnDoc| +2026-03-18 16:16:03.9033|DEBUG|OnDoc| +2026-03-18 16:16:03.9033|DEBUG|OnDoc| +2026-03-18 16:16:03.9033|DEBUG|OnDoc| +2026-03-18 16:16:03.9033|DEBUG|OnDoc| +2026-03-18 16:16:03.9235|DEBUG|OnDoc| +2026-03-18 16:16:03.9235|DEBUG|OnDoc| +2026-03-18 16:16:03.9235|DEBUG|OnDoc| +2026-03-18 16:16:03.9235|DEBUG|OnDoc| +2026-03-18 16:16:03.9235|DEBUG|OnDoc| +2026-03-18 16:16:03.9346|DEBUG|OnDoc| +2026-03-18 16:16:03.9346|DEBUG|OnDoc| +2026-03-18 16:16:03.9346|DEBUG|OnDoc| +2026-03-18 16:16:03.9346|DEBUG|OnDoc| +2026-03-18 16:16:03.9346|DEBUG|OnDoc| +2026-03-18 16:16:03.9346|DEBUG|OnDoc| +2026-03-18 16:16:03.9346|DEBUG|OnDoc| +2026-03-18 16:16:03.9346|DEBUG|OnDoc| +2026-03-18 16:16:03.9346|DEBUG|OnDoc| +2026-03-18 16:16:03.9346|DEBUG|OnDoc| +2026-03-18 16:16:03.9346|DEBUG|OnDoc| +2026-03-18 16:16:03.9346|DEBUG|OnDoc| +2026-03-18 16:16:03.9346|DEBUG|OnDoc| +2026-03-18 16:16:03.9346|DEBUG|OnDoc| +2026-03-18 16:16:03.9692|DEBUG|OnDoc| +2026-03-18 16:16:03.9692|DEBUG|OnDoc| +2026-03-18 16:16:04.0325|DEBUG|OnDoc| +2026-03-18 16:16:04.0325|DEBUG|OnDoc| +2026-03-18 16:16:04.0609|DEBUG|OnDoc| +2026-03-18 16:16:04.0609|DEBUG|OnDoc| +2026-03-18 16:16:04.0609|DEBUG|OnDoc| +2026-03-18 16:16:04.0609|DEBUG|OnDoc| +2026-03-18 16:16:04.0915|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:16:04.0915|DEBUG|OnDoc| +2026-03-18 16:16:04.1091|DEBUG|OnDoc| +2026-03-18 16:16:04.1091|DEBUG|OnDoc| +2026-03-18 16:16:04.1091|DEBUG|OnDoc| +2026-03-18 16:16:04.1091|DEBUG|OnDoc| +2026-03-18 16:16:04.1327|DEBUG|OnDoc| +2026-03-18 16:16:04.1327|DEBUG|OnDoc| +2026-03-18 16:16:04.1518|DEBUG|OnDoc| +2026-03-18 16:16:04.1538|DEBUG|OnDoc|Generate_Word +2026-03-18 16:16:04.6997|DEBUG|OnDoc|Word2013 +2026-03-18 16:16:04.6997|DEBUG|OnDoc|Word2013 +2026-03-18 16:16:10.1837|DEBUG|OnDoc|Generate_Word +2026-03-18 16:16:10.2590|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016798 +2026-03-18 16:16:10.2590|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:16:10.2625|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:16:10.2625|DEBUG|OnDoc| +2026-03-18 16:16:10.2625|DEBUG|OnDoc| +2026-03-18 16:16:10.2625|DEBUG|OnDoc| +2026-03-18 16:16:10.2625|DEBUG|OnDoc| +2026-03-18 16:16:10.2625|DEBUG|OnDoc| +2026-03-18 16:16:10.2625|DEBUG|OnDoc| +2026-03-18 16:16:37.4226|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:16:37.5541|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:16:37.6150|INFO|APIDocLog|Input JSON +2026-03-18 16:16:37.6150|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:16:37.6150|DEBUG|OnDoc| +2026-03-18 16:16:37.6215|DEBUG|OnDoc| +2026-03-18 16:16:37.6215|DEBUG|OnDoc| +2026-03-18 16:16:37.6215|DEBUG|OnDoc| +2026-03-18 16:16:37.6215|DEBUG|OnDoc| +2026-03-18 16:16:37.6215|DEBUG|OnDoc| +2026-03-18 16:16:37.6215|DEBUG|OnDoc| +2026-03-18 16:16:37.6215|DEBUG|OnDoc| +2026-03-18 16:16:37.6215|DEBUG|OnDoc| +2026-03-18 16:16:37.6215|DEBUG|OnDoc| +2026-03-18 16:16:37.6215|DEBUG|OnDoc| +2026-03-18 16:16:37.6215|DEBUG|OnDoc| +2026-03-18 16:16:37.6215|DEBUG|OnDoc| +2026-03-18 16:16:37.6380|DEBUG|OnDoc| +2026-03-18 16:16:37.6380|DEBUG|OnDoc| +2026-03-18 16:16:37.6380|DEBUG|OnDoc| +2026-03-18 16:16:37.6380|DEBUG|OnDoc| +2026-03-18 16:16:37.6380|DEBUG|OnDoc| +2026-03-18 16:16:37.6380|DEBUG|OnDoc| +2026-03-18 16:16:37.6380|DEBUG|OnDoc| +2026-03-18 16:16:37.6574|DEBUG|OnDoc| +2026-03-18 16:16:37.6574|DEBUG|OnDoc| +2026-03-18 16:16:37.6574|DEBUG|OnDoc| +2026-03-18 16:16:37.6699|DEBUG|OnDoc| +2026-03-18 16:16:37.6699|DEBUG|OnDoc| +2026-03-18 16:16:37.6699|DEBUG|OnDoc| +2026-03-18 16:16:37.6699|DEBUG|OnDoc| +2026-03-18 16:16:37.6699|DEBUG|OnDoc| +2026-03-18 16:16:37.6699|DEBUG|OnDoc| +2026-03-18 16:16:37.6699|DEBUG|OnDoc| +2026-03-18 16:16:37.6699|DEBUG|OnDoc| +2026-03-18 16:16:37.6840|DEBUG|OnDoc| +2026-03-18 16:16:37.6840|DEBUG|OnDoc| +2026-03-18 16:16:37.6840|DEBUG|OnDoc| +2026-03-18 16:16:37.7141|DEBUG|OnDoc| +2026-03-18 16:16:37.7156|DEBUG|OnDoc| +2026-03-18 16:16:37.7636|DEBUG|OnDoc| +2026-03-18 16:16:37.7636|DEBUG|OnDoc| +2026-03-18 16:16:37.7840|DEBUG|OnDoc| +2026-03-18 16:16:37.7840|DEBUG|OnDoc| +2026-03-18 16:16:37.7840|DEBUG|OnDoc| +2026-03-18 16:16:37.7840|DEBUG|OnDoc| +2026-03-18 16:16:37.8253|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:16:37.8253|DEBUG|OnDoc| +2026-03-18 16:16:37.8253|DEBUG|OnDoc| +2026-03-18 16:16:37.8253|DEBUG|OnDoc| +2026-03-18 16:16:37.8253|DEBUG|OnDoc| +2026-03-18 16:16:37.8253|DEBUG|OnDoc| +2026-03-18 16:16:37.8408|DEBUG|OnDoc| +2026-03-18 16:16:37.8408|DEBUG|OnDoc| +2026-03-18 16:16:37.8408|DEBUG|OnDoc| +2026-03-18 16:16:37.8408|DEBUG|OnDoc|Generate_Word +2026-03-18 16:16:37.8604|DEBUG|OnDoc|Word2013 +2026-03-18 16:16:37.8604|DEBUG|OnDoc|Word2013 +2026-03-18 16:16:47.1958|DEBUG|OnDoc|Generate_Word +2026-03-18 16:16:47.2349|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016807 +2026-03-18 16:16:47.2349|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:16:47.2349|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:16:47.2349|DEBUG|OnDoc| +2026-03-18 16:16:47.2349|DEBUG|OnDoc| +2026-03-18 16:16:47.2349|DEBUG|OnDoc| +2026-03-18 16:16:47.2349|DEBUG|OnDoc| +2026-03-18 16:16:47.2349|DEBUG|OnDoc| +2026-03-18 16:16:47.2349|DEBUG|OnDoc| +2026-03-18 16:17:00.4464|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:17:00.6220|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:17:00.7079|INFO|APIDocLog|Input JSON +2026-03-18 16:17:00.7180|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7180|DEBUG|OnDoc| +2026-03-18 16:17:00.7312|DEBUG|OnDoc| +2026-03-18 16:17:00.7312|DEBUG|OnDoc| +2026-03-18 16:17:00.7312|DEBUG|OnDoc| +2026-03-18 16:17:00.7312|DEBUG|OnDoc| +2026-03-18 16:17:00.7312|DEBUG|OnDoc| +2026-03-18 16:17:00.7312|DEBUG|OnDoc| +2026-03-18 16:17:00.7312|DEBUG|OnDoc| +2026-03-18 16:17:00.7312|DEBUG|OnDoc| +2026-03-18 16:17:00.7312|DEBUG|OnDoc| +2026-03-18 16:17:00.7312|DEBUG|OnDoc| +2026-03-18 16:17:00.7312|DEBUG|OnDoc| +2026-03-18 16:17:00.7312|DEBUG|OnDoc| +2026-03-18 16:17:00.7312|DEBUG|OnDoc| +2026-03-18 16:17:00.7312|DEBUG|OnDoc| +2026-03-18 16:17:00.7511|DEBUG|OnDoc| +2026-03-18 16:17:00.7511|DEBUG|OnDoc| +2026-03-18 16:17:00.8335|DEBUG|OnDoc| +2026-03-18 16:17:00.8335|DEBUG|OnDoc| +2026-03-18 16:17:00.8449|DEBUG|OnDoc| +2026-03-18 16:17:00.8449|DEBUG|OnDoc| +2026-03-18 16:17:00.8449|DEBUG|OnDoc| +2026-03-18 16:17:00.8449|DEBUG|OnDoc| +2026-03-18 16:17:00.9254|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:17:00.9254|DEBUG|OnDoc| +2026-03-18 16:17:00.9389|DEBUG|OnDoc| +2026-03-18 16:17:00.9389|DEBUG|OnDoc| +2026-03-18 16:17:00.9389|DEBUG|OnDoc| +2026-03-18 16:17:00.9389|DEBUG|OnDoc| +2026-03-18 16:17:00.9389|DEBUG|OnDoc| +2026-03-18 16:17:00.9389|DEBUG|OnDoc| +2026-03-18 16:17:00.9521|DEBUG|OnDoc| +2026-03-18 16:17:00.9521|DEBUG|OnDoc|Generate_Word +2026-03-18 16:17:00.9654|DEBUG|OnDoc|Word2013 +2026-03-18 16:17:00.9654|DEBUG|OnDoc|Word2013 +2026-03-18 16:17:04.8099|DEBUG|OnDoc|Generate_Word +2026-03-18 16:17:04.8481|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016815 +2026-03-18 16:17:04.8481|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:17:04.8481|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:17:04.8481|DEBUG|OnDoc| +2026-03-18 16:17:04.8481|DEBUG|OnDoc| +2026-03-18 16:17:04.8573|DEBUG|OnDoc| +2026-03-18 16:17:04.8573|DEBUG|OnDoc| +2026-03-18 16:17:04.8573|DEBUG|OnDoc| +2026-03-18 16:17:04.8573|DEBUG|OnDoc| +2026-03-18 16:17:22.7586|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:17:22.9760|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:17:23.0688|INFO|APIDocLog|Input JSON +2026-03-18 16:17:23.0786|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0786|DEBUG|OnDoc| +2026-03-18 16:17:23.0901|DEBUG|OnDoc| +2026-03-18 16:17:23.0901|DEBUG|OnDoc| +2026-03-18 16:17:23.0901|DEBUG|OnDoc| +2026-03-18 16:17:23.0901|DEBUG|OnDoc| +2026-03-18 16:17:23.0901|DEBUG|OnDoc| +2026-03-18 16:17:23.0901|DEBUG|OnDoc| +2026-03-18 16:17:23.0901|DEBUG|OnDoc| +2026-03-18 16:17:23.0901|DEBUG|OnDoc| +2026-03-18 16:17:23.0901|DEBUG|OnDoc| +2026-03-18 16:17:23.0901|DEBUG|OnDoc| +2026-03-18 16:17:23.0901|DEBUG|OnDoc| +2026-03-18 16:17:23.0901|DEBUG|OnDoc| +2026-03-18 16:17:23.1058|DEBUG|OnDoc| +2026-03-18 16:17:23.1058|DEBUG|OnDoc| +2026-03-18 16:17:23.2089|DEBUG|OnDoc| +2026-03-18 16:17:23.2089|DEBUG|OnDoc| +2026-03-18 16:17:23.2188|DEBUG|OnDoc| +2026-03-18 16:17:23.2188|DEBUG|OnDoc| +2026-03-18 16:17:23.2188|DEBUG|OnDoc| +2026-03-18 16:17:23.2188|DEBUG|OnDoc| +2026-03-18 16:17:23.3117|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:17:23.3117|DEBUG|OnDoc| +2026-03-18 16:17:23.3117|DEBUG|OnDoc| +2026-03-18 16:17:23.3247|DEBUG|OnDoc| +2026-03-18 16:17:23.3247|DEBUG|OnDoc| +2026-03-18 16:17:23.3247|DEBUG|OnDoc| +2026-03-18 16:17:23.3247|DEBUG|OnDoc| +2026-03-18 16:17:23.3247|DEBUG|OnDoc| +2026-03-18 16:17:23.3423|DEBUG|OnDoc| +2026-03-18 16:17:23.3423|DEBUG|OnDoc|Generate_Word +2026-03-18 16:17:23.3583|DEBUG|OnDoc|Word2013 +2026-03-18 16:17:23.3583|DEBUG|OnDoc|Word2013 +2026-03-18 16:17:33.4636|DEBUG|OnDoc|Generate_Word +2026-03-18 16:17:33.5009|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016820 +2026-03-18 16:17:33.5009|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:17:33.5009|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:17:33.5009|DEBUG|OnDoc| +2026-03-18 16:17:33.5009|DEBUG|OnDoc| +2026-03-18 16:17:33.5009|DEBUG|OnDoc| +2026-03-18 16:17:33.5009|DEBUG|OnDoc| +2026-03-18 16:17:33.5009|DEBUG|OnDoc| +2026-03-18 16:17:33.5009|DEBUG|OnDoc| +2026-03-18 16:17:47.1928|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:17:47.4505|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:17:47.5661|INFO|APIDocLog|Input JSON +2026-03-18 16:17:47.5753|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.5753|DEBUG|OnDoc| +2026-03-18 16:17:47.6017|DEBUG|OnDoc| +2026-03-18 16:17:47.6017|DEBUG|OnDoc| +2026-03-18 16:17:47.7323|DEBUG|OnDoc| +2026-03-18 16:17:47.7323|DEBUG|OnDoc| +2026-03-18 16:17:47.7323|DEBUG|OnDoc| +2026-03-18 16:17:47.7471|DEBUG|OnDoc| +2026-03-18 16:17:47.7471|DEBUG|OnDoc| +2026-03-18 16:17:47.7471|DEBUG|OnDoc| +2026-03-18 16:17:47.8512|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:17:47.8512|DEBUG|OnDoc| +2026-03-18 16:17:47.8607|DEBUG|OnDoc| +2026-03-18 16:17:47.8607|DEBUG|OnDoc| +2026-03-18 16:17:47.8607|DEBUG|OnDoc| +2026-03-18 16:17:47.8607|DEBUG|OnDoc| +2026-03-18 16:17:47.8607|DEBUG|OnDoc| +2026-03-18 16:17:47.8607|DEBUG|OnDoc| +2026-03-18 16:17:47.8607|DEBUG|OnDoc| +2026-03-18 16:17:47.8607|DEBUG|OnDoc|Generate_Word +2026-03-18 16:17:47.8846|DEBUG|OnDoc|Word2013 +2026-03-18 16:17:47.8846|DEBUG|OnDoc|Word2013 +2026-03-18 16:17:52.8821|DEBUG|OnDoc|Generate_Word +2026-03-18 16:17:52.9188|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016831 +2026-03-18 16:17:52.9188|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:17:52.9188|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:17:52.9188|DEBUG|OnDoc| +2026-03-18 16:17:52.9188|DEBUG|OnDoc| +2026-03-18 16:17:52.9188|DEBUG|OnDoc| +2026-03-18 16:17:52.9188|DEBUG|OnDoc| +2026-03-18 16:17:52.9188|DEBUG|OnDoc| +2026-03-18 16:17:52.9188|DEBUG|OnDoc| +2026-03-18 16:18:01.6202|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:18:01.8857|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:18:02.0117|INFO|APIDocLog|Input JSON +2026-03-18 16:18:02.0238|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:18:02.0238|DEBUG|OnDoc| +2026-03-18 16:18:02.0238|DEBUG|OnDoc| +2026-03-18 16:18:02.0238|DEBUG|OnDoc| +2026-03-18 16:18:02.0238|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0283|DEBUG|OnDoc| +2026-03-18 16:18:02.0434|DEBUG|OnDoc| +2026-03-18 16:18:02.0434|DEBUG|OnDoc| +2026-03-18 16:18:02.0434|DEBUG|OnDoc| +2026-03-18 16:18:02.0434|DEBUG|OnDoc| +2026-03-18 16:18:02.0434|DEBUG|OnDoc| +2026-03-18 16:18:02.0434|DEBUG|OnDoc| +2026-03-18 16:18:02.0434|DEBUG|OnDoc| +2026-03-18 16:18:02.0434|DEBUG|OnDoc| +2026-03-18 16:18:02.0434|DEBUG|OnDoc| +2026-03-18 16:18:02.0434|DEBUG|OnDoc| +2026-03-18 16:18:02.0434|DEBUG|OnDoc| +2026-03-18 16:18:02.0434|DEBUG|OnDoc| +2026-03-18 16:18:02.0434|DEBUG|OnDoc| +2026-03-18 16:18:02.0434|DEBUG|OnDoc| +2026-03-18 16:18:02.0646|DEBUG|OnDoc| +2026-03-18 16:18:02.0646|DEBUG|OnDoc| +2026-03-18 16:18:02.2062|DEBUG|OnDoc| +2026-03-18 16:18:02.2062|DEBUG|OnDoc| +2026-03-18 16:18:02.2202|DEBUG|OnDoc| +2026-03-18 16:18:02.2202|DEBUG|OnDoc| +2026-03-18 16:18:02.2202|DEBUG|OnDoc| +2026-03-18 16:18:02.2202|DEBUG|OnDoc| +2026-03-18 16:18:02.3529|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:18:02.3529|DEBUG|OnDoc| +2026-03-18 16:18:02.3606|DEBUG|OnDoc| +2026-03-18 16:18:02.3606|DEBUG|OnDoc| +2026-03-18 16:18:02.3606|DEBUG|OnDoc| +2026-03-18 16:18:02.3606|DEBUG|OnDoc| +2026-03-18 16:18:02.3606|DEBUG|OnDoc| +2026-03-18 16:18:02.3606|DEBUG|OnDoc| +2026-03-18 16:18:02.3756|DEBUG|OnDoc| +2026-03-18 16:18:02.3756|DEBUG|OnDoc|Generate_Word +2026-03-18 16:18:02.3926|DEBUG|OnDoc|Word2013 +2026-03-18 16:18:02.3926|DEBUG|OnDoc|Word2013 +2026-03-18 16:18:06.7415|DEBUG|OnDoc|Generate_Word +2026-03-18 16:18:06.7808|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016846 +2026-03-18 16:18:06.7808|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:18:06.7808|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:18:06.7808|DEBUG|OnDoc| +2026-03-18 16:18:06.7808|DEBUG|OnDoc| +2026-03-18 16:18:06.7808|DEBUG|OnDoc| +2026-03-18 16:18:06.7808|DEBUG|OnDoc| +2026-03-18 16:18:06.7808|DEBUG|OnDoc| +2026-03-18 16:18:06.7808|DEBUG|OnDoc| +2026-03-18 16:18:06.8641|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:18:07.0836|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:18:07.2017|INFO|APIDocLog|Input JSON +2026-03-18 16:18:07.2177|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2177|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2312|DEBUG|OnDoc| +2026-03-18 16:18:07.2561|DEBUG|OnDoc| +2026-03-18 16:18:07.2561|DEBUG|OnDoc| +2026-03-18 16:18:07.4038|DEBUG|OnDoc| +2026-03-18 16:18:07.4038|DEBUG|OnDoc| +2026-03-18 16:18:07.4038|DEBUG|OnDoc| +2026-03-18 16:18:07.4038|DEBUG|OnDoc| +2026-03-18 16:18:07.4183|DEBUG|OnDoc| +2026-03-18 16:18:07.4183|DEBUG|OnDoc| +2026-03-18 16:18:07.5373|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:18:07.5373|DEBUG|OnDoc| +2026-03-18 16:18:07.5458|DEBUG|OnDoc| +2026-03-18 16:18:07.5458|DEBUG|OnDoc| +2026-03-18 16:18:07.5458|DEBUG|OnDoc| +2026-03-18 16:18:07.5458|DEBUG|OnDoc| +2026-03-18 16:18:07.5458|DEBUG|OnDoc| +2026-03-18 16:18:07.5458|DEBUG|OnDoc| +2026-03-18 16:18:07.5644|DEBUG|OnDoc| +2026-03-18 16:18:07.5644|DEBUG|OnDoc|Generate_Word +2026-03-18 16:18:07.5644|DEBUG|OnDoc|Word2013 +2026-03-18 16:18:07.5748|DEBUG|OnDoc|Word2013 +2026-03-18 16:18:13.1518|DEBUG|OnDoc|Generate_Word +2026-03-18 16:18:13.1922|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016854 +2026-03-18 16:18:13.1922|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:18:13.1922|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:18:13.1922|DEBUG|OnDoc| +2026-03-18 16:18:13.2052|DEBUG|OnDoc| +2026-03-18 16:18:13.2052|DEBUG|OnDoc| +2026-03-18 16:18:13.2052|DEBUG|OnDoc| +2026-03-18 16:18:13.2052|DEBUG|OnDoc| +2026-03-18 16:18:13.2052|DEBUG|OnDoc| +2026-03-18 16:18:27.2724|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:18:27.5806|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:18:27.7366|INFO|APIDocLog|Input JSON +2026-03-18 16:18:27.7474|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7474|DEBUG|OnDoc| +2026-03-18 16:18:27.7726|DEBUG|OnDoc| +2026-03-18 16:18:27.7726|DEBUG|OnDoc| +2026-03-18 16:18:27.9362|DEBUG|OnDoc| +2026-03-18 16:18:27.9362|DEBUG|OnDoc| +2026-03-18 16:18:27.9520|DEBUG|OnDoc| +2026-03-18 16:18:27.9520|DEBUG|OnDoc| +2026-03-18 16:18:27.9520|DEBUG|OnDoc| +2026-03-18 16:18:27.9520|DEBUG|OnDoc| +2026-03-18 16:18:28.1563|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:18:28.1563|DEBUG|OnDoc| +2026-03-18 16:18:28.1563|DEBUG|OnDoc| +2026-03-18 16:18:28.1563|DEBUG|OnDoc| +2026-03-18 16:18:28.1563|DEBUG|OnDoc| +2026-03-18 16:18:28.1563|DEBUG|OnDoc| +2026-03-18 16:18:28.1729|DEBUG|OnDoc| +2026-03-18 16:18:28.1729|DEBUG|OnDoc| +2026-03-18 16:18:28.1729|DEBUG|OnDoc| +2026-03-18 16:18:28.1729|DEBUG|OnDoc|Generate_Word +2026-03-18 16:18:28.1944|DEBUG|OnDoc|Word2013 +2026-03-18 16:18:28.1944|DEBUG|OnDoc|Word2013 +2026-03-18 16:18:33.8161|DEBUG|OnDoc|Generate_Word +2026-03-18 16:18:33.8533|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016862 +2026-03-18 16:18:33.8533|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:18:33.8533|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:18:33.8533|DEBUG|OnDoc| +2026-03-18 16:18:33.8589|DEBUG|OnDoc| +2026-03-18 16:18:33.8589|DEBUG|OnDoc| +2026-03-18 16:18:33.8589|DEBUG|OnDoc| +2026-03-18 16:18:33.8589|DEBUG|OnDoc| +2026-03-18 16:18:33.8589|DEBUG|OnDoc| +2026-03-18 16:18:55.9777|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:18:56.3614|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:18:56.5646|INFO|APIDocLog|Input JSON +2026-03-18 16:18:56.5757|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:18:56.5757|DEBUG|OnDoc| +2026-03-18 16:18:56.5757|DEBUG|OnDoc| +2026-03-18 16:18:56.5757|DEBUG|OnDoc| +2026-03-18 16:18:56.5757|DEBUG|OnDoc| +2026-03-18 16:18:56.5757|DEBUG|OnDoc| +2026-03-18 16:18:56.5757|DEBUG|OnDoc| +2026-03-18 16:18:56.5757|DEBUG|OnDoc| +2026-03-18 16:18:56.5757|DEBUG|OnDoc| +2026-03-18 16:18:56.5757|DEBUG|OnDoc| +2026-03-18 16:18:56.5757|DEBUG|OnDoc| +2026-03-18 16:18:56.5757|DEBUG|OnDoc| +2026-03-18 16:18:56.5900|DEBUG|OnDoc| +2026-03-18 16:18:56.5900|DEBUG|OnDoc| +2026-03-18 16:18:56.5900|DEBUG|OnDoc| +2026-03-18 16:18:56.5900|DEBUG|OnDoc| +2026-03-18 16:18:56.5900|DEBUG|OnDoc| +2026-03-18 16:18:56.5900|DEBUG|OnDoc| +2026-03-18 16:18:56.5900|DEBUG|OnDoc| +2026-03-18 16:18:56.5900|DEBUG|OnDoc| +2026-03-18 16:18:56.5900|DEBUG|OnDoc| +2026-03-18 16:18:56.6133|DEBUG|OnDoc| +2026-03-18 16:18:56.6133|DEBUG|OnDoc| +2026-03-18 16:18:56.6133|DEBUG|OnDoc| +2026-03-18 16:18:56.6133|DEBUG|OnDoc| +2026-03-18 16:18:56.6133|DEBUG|OnDoc| +2026-03-18 16:18:56.6133|DEBUG|OnDoc| +2026-03-18 16:18:56.6213|DEBUG|OnDoc| +2026-03-18 16:18:56.6213|DEBUG|OnDoc| +2026-03-18 16:18:56.6213|DEBUG|OnDoc| +2026-03-18 16:18:56.6213|DEBUG|OnDoc| +2026-03-18 16:18:56.6213|DEBUG|OnDoc| +2026-03-18 16:18:56.6213|DEBUG|OnDoc| +2026-03-18 16:18:56.6213|DEBUG|OnDoc| +2026-03-18 16:18:56.6213|DEBUG|OnDoc| +2026-03-18 16:18:56.6474|DEBUG|OnDoc| +2026-03-18 16:18:56.6474|DEBUG|OnDoc| +2026-03-18 16:18:56.8671|DEBUG|OnDoc| +2026-03-18 16:18:56.8671|DEBUG|OnDoc| +2026-03-18 16:18:56.8791|DEBUG|OnDoc| +2026-03-18 16:18:56.8791|DEBUG|OnDoc| +2026-03-18 16:18:56.8791|DEBUG|OnDoc| +2026-03-18 16:18:56.8791|DEBUG|OnDoc| +2026-03-18 16:18:57.0584|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:18:57.0594|DEBUG|OnDoc| +2026-03-18 16:18:57.0594|DEBUG|OnDoc| +2026-03-18 16:18:57.0594|DEBUG|OnDoc| +2026-03-18 16:18:57.0594|DEBUG|OnDoc| +2026-03-18 16:18:57.0594|DEBUG|OnDoc| +2026-03-18 16:18:57.0744|DEBUG|OnDoc| +2026-03-18 16:18:57.0744|DEBUG|OnDoc| +2026-03-18 16:18:57.0744|DEBUG|OnDoc| +2026-03-18 16:18:57.0744|DEBUG|OnDoc|Generate_Word +2026-03-18 16:18:57.0945|DEBUG|OnDoc|Word2013 +2026-03-18 16:18:57.0945|DEBUG|OnDoc|Word2013 +2026-03-18 16:19:04.4274|DEBUG|OnDoc|Generate_Word +2026-03-18 16:19:04.4664|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016878 +2026-03-18 16:19:04.4664|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:19:04.4664|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:19:04.4664|DEBUG|OnDoc| +2026-03-18 16:19:04.4664|DEBUG|OnDoc| +2026-03-18 16:19:04.4664|DEBUG|OnDoc| +2026-03-18 16:19:04.4664|DEBUG|OnDoc| +2026-03-18 16:19:04.4664|DEBUG|OnDoc| +2026-03-18 16:19:04.4664|DEBUG|OnDoc| +2026-03-18 16:19:33.8535|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:19:34.2796|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:19:34.5010|INFO|APIDocLog|Input JSON +2026-03-18 16:19:34.5130|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:19:34.5130|DEBUG|OnDoc| +2026-03-18 16:19:34.5130|DEBUG|OnDoc| +2026-03-18 16:19:34.5130|DEBUG|OnDoc| +2026-03-18 16:19:34.5130|DEBUG|OnDoc| +2026-03-18 16:19:34.5130|DEBUG|OnDoc| +2026-03-18 16:19:34.5130|DEBUG|OnDoc| +2026-03-18 16:19:34.5130|DEBUG|OnDoc| +2026-03-18 16:19:34.5130|DEBUG|OnDoc| +2026-03-18 16:19:34.5130|DEBUG|OnDoc| +2026-03-18 16:19:34.5130|DEBUG|OnDoc| +2026-03-18 16:19:34.5130|DEBUG|OnDoc| +2026-03-18 16:19:34.5130|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5285|DEBUG|OnDoc| +2026-03-18 16:19:34.5436|DEBUG|OnDoc| +2026-03-18 16:19:34.5436|DEBUG|OnDoc| +2026-03-18 16:19:34.5436|DEBUG|OnDoc| +2026-03-18 16:19:34.5436|DEBUG|OnDoc| +2026-03-18 16:19:34.5436|DEBUG|OnDoc| +2026-03-18 16:19:34.5436|DEBUG|OnDoc| +2026-03-18 16:19:34.5436|DEBUG|OnDoc| +2026-03-18 16:19:34.5633|DEBUG|OnDoc| +2026-03-18 16:19:34.5633|DEBUG|OnDoc| +2026-03-18 16:19:34.8322|DEBUG|OnDoc| +2026-03-18 16:19:34.8322|DEBUG|OnDoc| +2026-03-18 16:19:34.8427|DEBUG|OnDoc| +2026-03-18 16:19:34.8427|DEBUG|OnDoc| +2026-03-18 16:19:34.8427|DEBUG|OnDoc| +2026-03-18 16:19:34.8427|DEBUG|OnDoc| +2026-03-18 16:19:35.0666|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:19:35.0666|DEBUG|OnDoc| +2026-03-18 16:19:35.0751|DEBUG|OnDoc| +2026-03-18 16:19:35.0751|DEBUG|OnDoc| +2026-03-18 16:19:35.0751|DEBUG|OnDoc| +2026-03-18 16:19:35.0751|DEBUG|OnDoc| +2026-03-18 16:19:35.0751|DEBUG|OnDoc| +2026-03-18 16:19:35.0751|DEBUG|OnDoc| +2026-03-18 16:19:35.0751|DEBUG|OnDoc| +2026-03-18 16:19:35.0751|DEBUG|OnDoc|Generate_Word +2026-03-18 16:19:35.1021|DEBUG|OnDoc|Word2013 +2026-03-18 16:19:35.1021|DEBUG|OnDoc|Word2013 +2026-03-18 16:19:43.0898|DEBUG|OnDoc|Generate_Word +2026-03-18 16:19:43.1287|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016883 +2026-03-18 16:19:43.1287|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:19:43.1287|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:19:43.1287|DEBUG|OnDoc| +2026-03-18 16:19:43.1287|DEBUG|OnDoc| +2026-03-18 16:19:43.1287|DEBUG|OnDoc| +2026-03-18 16:19:43.1287|DEBUG|OnDoc| +2026-03-18 16:19:43.1287|DEBUG|OnDoc| +2026-03-18 16:19:43.1287|DEBUG|OnDoc| +2026-03-18 16:20:14.6519|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:20:15.1246|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:20:15.3590|INFO|APIDocLog|Input JSON +2026-03-18 16:20:15.3590|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3722|DEBUG|OnDoc| +2026-03-18 16:20:15.3875|DEBUG|OnDoc| +2026-03-18 16:20:15.3875|DEBUG|OnDoc| +2026-03-18 16:20:15.3875|DEBUG|OnDoc| +2026-03-18 16:20:15.3875|DEBUG|OnDoc| +2026-03-18 16:20:15.3875|DEBUG|OnDoc| +2026-03-18 16:20:15.3875|DEBUG|OnDoc| +2026-03-18 16:20:15.3875|DEBUG|OnDoc| +2026-03-18 16:20:15.3875|DEBUG|OnDoc| +2026-03-18 16:20:15.3875|DEBUG|OnDoc| +2026-03-18 16:20:15.3875|DEBUG|OnDoc| +2026-03-18 16:20:15.3875|DEBUG|OnDoc| +2026-03-18 16:20:15.3875|DEBUG|OnDoc| +2026-03-18 16:20:15.3875|DEBUG|OnDoc| +2026-03-18 16:20:15.3875|DEBUG|OnDoc| +2026-03-18 16:20:15.4086|DEBUG|OnDoc| +2026-03-18 16:20:15.4086|DEBUG|OnDoc| +2026-03-18 16:20:15.6898|DEBUG|OnDoc| +2026-03-18 16:20:15.6898|DEBUG|OnDoc| +2026-03-18 16:20:15.7042|DEBUG|OnDoc| +2026-03-18 16:20:15.7042|DEBUG|OnDoc| +2026-03-18 16:20:15.7042|DEBUG|OnDoc| +2026-03-18 16:20:15.7042|DEBUG|OnDoc| +2026-03-18 16:20:16.0038|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:20:16.0038|DEBUG|OnDoc| +2026-03-18 16:20:16.0193|DEBUG|OnDoc| +2026-03-18 16:20:16.0193|DEBUG|OnDoc| +2026-03-18 16:20:16.0193|DEBUG|OnDoc| +2026-03-18 16:20:16.0193|DEBUG|OnDoc| +2026-03-18 16:20:16.0309|DEBUG|OnDoc| +2026-03-18 16:20:16.0309|DEBUG|OnDoc| +2026-03-18 16:20:16.0309|DEBUG|OnDoc| +2026-03-18 16:20:16.0309|DEBUG|OnDoc|Generate_Word +2026-03-18 16:20:16.0471|DEBUG|OnDoc|Word2013 +2026-03-18 16:20:16.0471|DEBUG|OnDoc|Word2013 +2026-03-18 16:20:22.7020|DEBUG|OnDoc|Generate_Word +2026-03-18 16:20:22.7386|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016899 +2026-03-18 16:20:22.7386|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:20:22.7386|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:20:22.7386|DEBUG|OnDoc| +2026-03-18 16:20:22.7386|DEBUG|OnDoc| +2026-03-18 16:20:22.7386|DEBUG|OnDoc| +2026-03-18 16:20:22.7469|DEBUG|OnDoc| +2026-03-18 16:20:22.7469|DEBUG|OnDoc| +2026-03-18 16:20:22.7469|DEBUG|OnDoc| +2026-03-18 16:20:27.7930|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:20:28.2457|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:20:28.4694|INFO|APIDocLog|Input JSON +2026-03-18 16:20:28.4694|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:20:28.4694|DEBUG|OnDoc| +2026-03-18 16:20:28.4694|DEBUG|OnDoc| +2026-03-18 16:20:28.4694|DEBUG|OnDoc| +2026-03-18 16:20:28.4694|DEBUG|OnDoc| +2026-03-18 16:20:28.4694|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.4820|DEBUG|OnDoc| +2026-03-18 16:20:28.5169|DEBUG|OnDoc| +2026-03-18 16:20:28.5169|DEBUG|OnDoc| +2026-03-18 16:20:28.7665|DEBUG|OnDoc| +2026-03-18 16:20:28.7665|DEBUG|OnDoc| +2026-03-18 16:20:28.7665|DEBUG|OnDoc| +2026-03-18 16:20:28.7665|DEBUG|OnDoc| +2026-03-18 16:20:28.7665|DEBUG|OnDoc| +2026-03-18 16:20:28.7776|DEBUG|OnDoc| +2026-03-18 16:20:29.0027|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:20:29.0027|DEBUG|OnDoc| +2026-03-18 16:20:29.0027|DEBUG|OnDoc| +2026-03-18 16:20:29.0027|DEBUG|OnDoc| +2026-03-18 16:20:29.0027|DEBUG|OnDoc| +2026-03-18 16:20:29.0027|DEBUG|OnDoc| +2026-03-18 16:20:29.0194|DEBUG|OnDoc| +2026-03-18 16:20:29.0194|DEBUG|OnDoc| +2026-03-18 16:20:29.0285|DEBUG|OnDoc| +2026-03-18 16:20:29.0285|DEBUG|OnDoc|Generate_Word +2026-03-18 16:20:29.0285|DEBUG|OnDoc|Word2013 +2026-03-18 16:20:29.0285|DEBUG|OnDoc|Word2013 +2026-03-18 16:20:47.4763|DEBUG|OnDoc|Generate_Word +2026-03-18 16:20:47.5129|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016906 +2026-03-18 16:20:47.5129|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:20:47.5129|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:20:47.5129|DEBUG|OnDoc| +2026-03-18 16:20:47.5129|DEBUG|OnDoc| +2026-03-18 16:20:47.5129|DEBUG|OnDoc| +2026-03-18 16:20:47.5129|DEBUG|OnDoc| +2026-03-18 16:20:47.5129|DEBUG|OnDoc| +2026-03-18 16:20:47.5129|DEBUG|OnDoc| +2026-03-18 16:20:49.6193|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:20:50.0529|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:20:50.2748|INFO|APIDocLog|Input JSON +2026-03-18 16:20:50.2841|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:20:50.2841|DEBUG|OnDoc| +2026-03-18 16:20:50.2841|DEBUG|OnDoc| +2026-03-18 16:20:50.2841|DEBUG|OnDoc| +2026-03-18 16:20:50.2841|DEBUG|OnDoc| +2026-03-18 16:20:50.2841|DEBUG|OnDoc| +2026-03-18 16:20:50.2841|DEBUG|OnDoc| +2026-03-18 16:20:50.2841|DEBUG|OnDoc| +2026-03-18 16:20:50.2841|DEBUG|OnDoc| +2026-03-18 16:20:50.2841|DEBUG|OnDoc| +2026-03-18 16:20:50.2841|DEBUG|OnDoc| +2026-03-18 16:20:50.2841|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.2937|DEBUG|OnDoc| +2026-03-18 16:20:50.3089|DEBUG|OnDoc| +2026-03-18 16:20:50.3265|DEBUG|OnDoc| +2026-03-18 16:20:50.3265|DEBUG|OnDoc| +2026-03-18 16:20:50.6191|DEBUG|OnDoc| +2026-03-18 16:20:50.6191|DEBUG|OnDoc| +2026-03-18 16:20:50.6344|DEBUG|OnDoc| +2026-03-18 16:20:50.6344|DEBUG|OnDoc| +2026-03-18 16:20:50.6344|DEBUG|OnDoc| +2026-03-18 16:20:50.6374|DEBUG|OnDoc| +2026-03-18 16:20:50.8667|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:20:50.8667|DEBUG|OnDoc| +2026-03-18 16:20:50.8763|DEBUG|OnDoc| +2026-03-18 16:20:50.8763|DEBUG|OnDoc| +2026-03-18 16:20:50.8763|DEBUG|OnDoc| +2026-03-18 16:20:50.8763|DEBUG|OnDoc| +2026-03-18 16:20:50.8877|DEBUG|OnDoc| +2026-03-18 16:20:50.8877|DEBUG|OnDoc| +2026-03-18 16:20:50.8877|DEBUG|OnDoc| +2026-03-18 16:20:50.8877|DEBUG|OnDoc|Generate_Word +2026-03-18 16:20:50.9156|DEBUG|OnDoc|Word2013 +2026-03-18 16:20:50.9182|DEBUG|OnDoc|Word2013 +2026-03-18 16:21:17.0642|DEBUG|OnDoc|Generate_Word +2026-03-18 16:21:17.1036|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016914 +2026-03-18 16:21:17.1036|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:21:17.1036|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:21:17.1077|DEBUG|OnDoc| +2026-03-18 16:21:17.1077|DEBUG|OnDoc| +2026-03-18 16:21:17.1077|DEBUG|OnDoc| +2026-03-18 16:21:17.1077|DEBUG|OnDoc| +2026-03-18 16:21:17.1077|DEBUG|OnDoc| +2026-03-18 16:21:17.1077|DEBUG|OnDoc| +2026-03-18 16:21:19.6006|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:21:20.0668|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:21:20.2909|INFO|APIDocLog|Input JSON +2026-03-18 16:21:20.3019|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3019|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3092|DEBUG|OnDoc| +2026-03-18 16:21:20.3301|DEBUG|OnDoc| +2026-03-18 16:21:20.3301|DEBUG|OnDoc| +2026-03-18 16:21:20.6065|DEBUG|OnDoc| +2026-03-18 16:21:20.6065|DEBUG|OnDoc| +2026-03-18 16:21:20.6065|DEBUG|OnDoc| +2026-03-18 16:21:20.6065|DEBUG|OnDoc| +2026-03-18 16:21:20.6065|DEBUG|OnDoc| +2026-03-18 16:21:20.6065|DEBUG|OnDoc| +2026-03-18 16:21:20.8321|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:21:20.8321|DEBUG|OnDoc| +2026-03-18 16:21:20.8321|DEBUG|OnDoc| +2026-03-18 16:21:20.8321|DEBUG|OnDoc| +2026-03-18 16:21:20.8321|DEBUG|OnDoc| +2026-03-18 16:21:20.8321|DEBUG|OnDoc| +2026-03-18 16:21:20.8497|DEBUG|OnDoc| +2026-03-18 16:21:20.8497|DEBUG|OnDoc| +2026-03-18 16:21:20.8497|DEBUG|OnDoc| +2026-03-18 16:21:20.8497|DEBUG|OnDoc|Generate_Word +2026-03-18 16:21:20.8614|DEBUG|OnDoc|Word2013 +2026-03-18 16:21:20.8614|DEBUG|OnDoc|Word2013 +2026-03-18 16:21:47.4460|DEBUG|OnDoc|Generate_Word +2026-03-18 16:21:47.4831|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016922 +2026-03-18 16:21:47.4831|INFO|DocLog|Dokument über API erstellt +2026-03-18 16:21:47.4831|INFO|APIDocLog|Dokument return to sender +2026-03-18 16:21:47.4831|DEBUG|OnDoc| +2026-03-18 16:21:47.4831|DEBUG|OnDoc| +2026-03-18 16:21:47.4831|DEBUG|OnDoc| +2026-03-18 16:21:47.4831|DEBUG|OnDoc| +2026-03-18 16:21:47.4831|DEBUG|OnDoc| +2026-03-18 16:21:47.4831|DEBUG|OnDoc| +2026-03-18 16:21:49.6016|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 16:21:50.0458|INFO|APIDocLog|Start CreateDoc +2026-03-18 16:21:50.2641|INFO|APIDocLog|Input JSON +2026-03-18 16:21:50.2641|DEBUG|OnDoc|Start GenDoc +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2780|DEBUG|OnDoc| +2026-03-18 16:21:50.2937|DEBUG|OnDoc| +2026-03-18 16:21:50.2937|DEBUG|OnDoc| +2026-03-18 16:21:50.2937|DEBUG|OnDoc| +2026-03-18 16:21:50.2937|DEBUG|OnDoc| +2026-03-18 16:21:50.2937|DEBUG|OnDoc| +2026-03-18 16:21:50.2937|DEBUG|OnDoc| +2026-03-18 16:21:50.2937|DEBUG|OnDoc| +2026-03-18 16:21:50.2937|DEBUG|OnDoc| +2026-03-18 16:21:50.2937|DEBUG|OnDoc| +2026-03-18 16:21:50.2937|DEBUG|OnDoc| +2026-03-18 16:21:50.2937|DEBUG|OnDoc| +2026-03-18 16:21:50.2937|DEBUG|OnDoc| +2026-03-18 16:21:50.2937|DEBUG|OnDoc| +2026-03-18 16:21:50.3236|DEBUG|OnDoc| +2026-03-18 16:21:50.3267|DEBUG|OnDoc| +2026-03-18 16:21:50.5885|DEBUG|OnDoc| +2026-03-18 16:21:50.5885|DEBUG|OnDoc| +2026-03-18 16:21:50.5987|DEBUG|OnDoc| +2026-03-18 16:21:50.5987|DEBUG|OnDoc| +2026-03-18 16:21:50.5987|DEBUG|OnDoc| +2026-03-18 16:21:50.5987|DEBUG|OnDoc| +2026-03-18 16:21:50.8284|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 16:21:50.8284|DEBUG|OnDoc| +2026-03-18 16:21:50.8284|DEBUG|OnDoc| +2026-03-18 16:21:50.8284|DEBUG|OnDoc| +2026-03-18 16:21:50.8284|DEBUG|OnDoc| +2026-03-18 16:21:50.8284|DEBUG|OnDoc| +2026-03-18 16:21:50.8434|DEBUG|OnDoc| +2026-03-18 16:21:50.8434|DEBUG|OnDoc| +2026-03-18 16:21:50.8434|DEBUG|OnDoc| +2026-03-18 16:21:50.8434|DEBUG|OnDoc|Generate_Word +2026-03-18 16:21:50.8561|DEBUG|OnDoc|Word2013 +2026-03-18 16:21:50.8561|DEBUG|OnDoc|Word2013 +2026-03-18 17:00:05.7235|DEBUG|OnDoc| +2026-03-18 17:00:05.8162|DEBUG|OnDoc| +2026-03-18 17:00:05.8162|DEBUG|OnDoc| +2026-03-18 17:00:05.8162|DEBUG|OnDoc| +2026-03-18 17:00:06.1563|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 17:00:06.4341|INFO|APIDocLog|Start CreateDoc +2026-03-18 17:00:06.5484|INFO|APIDocLog|Input JSON +2026-03-18 17:00:06.5704|DEBUG|OnDoc|Start GenDoc +2026-03-18 17:00:06.5810|DEBUG|OnDoc| +2026-03-18 17:00:06.5810|DEBUG|OnDoc| +2026-03-18 17:00:06.5810|DEBUG|OnDoc| +2026-03-18 17:00:06.5810|DEBUG|OnDoc| +2026-03-18 17:00:06.5810|DEBUG|OnDoc| +2026-03-18 17:00:06.5810|DEBUG|OnDoc| +2026-03-18 17:00:06.5810|DEBUG|OnDoc| +2026-03-18 17:00:06.5810|DEBUG|OnDoc| +2026-03-18 17:00:06.5810|DEBUG|OnDoc| +2026-03-18 17:00:06.5810|DEBUG|OnDoc| +2026-03-18 17:00:06.5910|DEBUG|OnDoc| +2026-03-18 17:00:06.5910|DEBUG|OnDoc| +2026-03-18 17:00:06.5910|DEBUG|OnDoc| +2026-03-18 17:00:06.5910|DEBUG|OnDoc| +2026-03-18 17:00:06.5910|DEBUG|OnDoc| +2026-03-18 17:00:06.5910|DEBUG|OnDoc| +2026-03-18 17:00:06.5910|DEBUG|OnDoc| +2026-03-18 17:00:06.5910|DEBUG|OnDoc| +2026-03-18 17:00:06.6066|DEBUG|OnDoc| +2026-03-18 17:00:06.6066|DEBUG|OnDoc| +2026-03-18 17:00:06.6066|DEBUG|OnDoc| +2026-03-18 17:00:06.6066|DEBUG|OnDoc| +2026-03-18 17:00:06.6066|DEBUG|OnDoc| +2026-03-18 17:00:06.6066|DEBUG|OnDoc| +2026-03-18 17:00:06.6066|DEBUG|OnDoc| +2026-03-18 17:00:06.6066|DEBUG|OnDoc| +2026-03-18 17:00:06.6066|DEBUG|OnDoc| +2026-03-18 17:00:06.6066|DEBUG|OnDoc| +2026-03-18 17:00:06.6066|DEBUG|OnDoc| +2026-03-18 17:00:06.6217|DEBUG|OnDoc| +2026-03-18 17:00:06.6217|DEBUG|OnDoc| +2026-03-18 17:00:06.6217|DEBUG|OnDoc| +2026-03-18 17:00:06.6217|DEBUG|OnDoc| +2026-03-18 17:00:06.6217|DEBUG|OnDoc| +2026-03-18 17:00:06.6538|DEBUG|OnDoc| +2026-03-18 17:00:06.6538|DEBUG|OnDoc| +2026-03-18 17:00:06.7132|DEBUG|OnDoc| +2026-03-18 17:00:06.7162|DEBUG|OnDoc| +2026-03-18 17:00:06.7452|DEBUG|OnDoc| +2026-03-18 17:00:06.7622|DEBUG|OnDoc| +2026-03-18 17:00:06.7622|DEBUG|OnDoc| +2026-03-18 17:00:06.7622|DEBUG|OnDoc| +2026-03-18 17:00:06.7963|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 17:00:06.7963|DEBUG|OnDoc| +2026-03-18 17:00:06.8113|DEBUG|OnDoc| +2026-03-18 17:00:06.8113|DEBUG|OnDoc| +2026-03-18 17:00:06.8113|DEBUG|OnDoc| +2026-03-18 17:00:06.8113|DEBUG|OnDoc| +2026-03-18 17:00:06.8274|DEBUG|OnDoc| +2026-03-18 17:00:06.8274|DEBUG|OnDoc| +2026-03-18 17:00:06.8274|DEBUG|OnDoc| +2026-03-18 17:00:06.8274|DEBUG|OnDoc|Generate_Word +2026-03-18 17:00:07.3100|DEBUG|OnDoc|Word2013 +2026-03-18 17:00:07.3260|DEBUG|OnDoc|Word2013 +2026-03-18 17:00:12.6566|DEBUG|OnDoc|Generate_Word +2026-03-18 17:00:12.7018|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016943 +2026-03-18 17:00:12.7018|INFO|DocLog|Dokument über API erstellt +2026-03-18 17:00:12.7018|INFO|APIDocLog|Dokument return to sender +2026-03-18 17:00:12.7018|DEBUG|OnDoc| +2026-03-18 17:00:12.7187|DEBUG|OnDoc| +2026-03-18 17:00:12.7187|DEBUG|OnDoc| +2026-03-18 17:00:12.7187|DEBUG|OnDoc| +2026-03-18 17:00:12.7187|DEBUG|OnDoc| +2026-03-18 17:00:12.7187|DEBUG|OnDoc| +2026-03-18 17:00:39.1918|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 17:00:39.3144|INFO|APIDocLog|Start CreateDoc +2026-03-18 17:00:39.3698|INFO|APIDocLog|Input JSON +2026-03-18 17:00:39.3728|DEBUG|OnDoc|Start GenDoc +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3728|DEBUG|OnDoc| +2026-03-18 17:00:39.3983|DEBUG|OnDoc| +2026-03-18 17:00:39.3983|DEBUG|OnDoc| +2026-03-18 17:00:39.4522|DEBUG|OnDoc| +2026-03-18 17:00:39.4522|DEBUG|OnDoc| +2026-03-18 17:00:39.4658|DEBUG|OnDoc| +2026-03-18 17:00:39.4658|DEBUG|OnDoc| +2026-03-18 17:00:39.4658|DEBUG|OnDoc| +2026-03-18 17:00:39.4658|DEBUG|OnDoc| +2026-03-18 17:00:39.5140|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 17:00:39.5140|DEBUG|OnDoc| +2026-03-18 17:00:39.5140|DEBUG|OnDoc| +2026-03-18 17:00:39.5140|DEBUG|OnDoc| +2026-03-18 17:00:39.5140|DEBUG|OnDoc| +2026-03-18 17:00:39.5140|DEBUG|OnDoc| +2026-03-18 17:00:39.5311|DEBUG|OnDoc| +2026-03-18 17:00:39.5311|DEBUG|OnDoc| +2026-03-18 17:00:39.5311|DEBUG|OnDoc| +2026-03-18 17:00:39.5311|DEBUG|OnDoc|Generate_Word +2026-03-18 17:00:39.5513|DEBUG|OnDoc|Word2013 +2026-03-18 17:00:39.5513|DEBUG|OnDoc|Word2013 +2026-03-18 17:00:46.3766|DEBUG|OnDoc|Generate_Word +2026-03-18 17:00:46.4137|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016959 +2026-03-18 17:00:46.4137|INFO|DocLog|Dokument über API erstellt +2026-03-18 17:00:46.4137|INFO|APIDocLog|Dokument return to sender +2026-03-18 17:00:46.4137|DEBUG|OnDoc| +2026-03-18 17:00:46.4207|DEBUG|OnDoc| +2026-03-18 17:00:46.4207|DEBUG|OnDoc| +2026-03-18 17:00:46.4207|DEBUG|OnDoc| +2026-03-18 17:00:46.4207|DEBUG|OnDoc| +2026-03-18 17:00:46.4207|DEBUG|OnDoc| +2026-03-18 17:00:46.4769|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 17:00:46.5578|INFO|APIDocLog|Start CreateDoc +2026-03-18 17:00:46.6134|INFO|APIDocLog|Input JSON +2026-03-18 17:00:46.6134|DEBUG|OnDoc|Start GenDoc +2026-03-18 17:00:46.6134|DEBUG|OnDoc| +2026-03-18 17:00:46.6134|DEBUG|OnDoc| +2026-03-18 17:00:46.6134|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6219|DEBUG|OnDoc| +2026-03-18 17:00:46.6375|DEBUG|OnDoc| +2026-03-18 17:00:46.6375|DEBUG|OnDoc| +2026-03-18 17:00:46.6375|DEBUG|OnDoc| +2026-03-18 17:00:46.6375|DEBUG|OnDoc| +2026-03-18 17:00:46.6375|DEBUG|OnDoc| +2026-03-18 17:00:46.6375|DEBUG|OnDoc| +2026-03-18 17:00:46.6375|DEBUG|OnDoc| +2026-03-18 17:00:46.6375|DEBUG|OnDoc| +2026-03-18 17:00:46.6375|DEBUG|OnDoc| +2026-03-18 17:00:46.6375|DEBUG|OnDoc| +2026-03-18 17:00:46.6375|DEBUG|OnDoc| +2026-03-18 17:00:46.6375|DEBUG|OnDoc| +2026-03-18 17:00:46.6705|DEBUG|OnDoc| +2026-03-18 17:00:46.6705|DEBUG|OnDoc| +2026-03-18 17:00:46.7268|DEBUG|OnDoc| +2026-03-18 17:00:46.7268|DEBUG|OnDoc| +2026-03-18 17:00:46.7430|DEBUG|OnDoc| +2026-03-18 17:00:46.7430|DEBUG|OnDoc| +2026-03-18 17:00:46.7430|DEBUG|OnDoc| +2026-03-18 17:00:46.7430|DEBUG|OnDoc| +2026-03-18 17:00:46.7843|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 17:00:46.7843|DEBUG|OnDoc| +2026-03-18 17:00:46.7988|DEBUG|OnDoc| +2026-03-18 17:00:46.7988|DEBUG|OnDoc| +2026-03-18 17:00:46.7988|DEBUG|OnDoc| +2026-03-18 17:00:46.7988|DEBUG|OnDoc| +2026-03-18 17:00:46.7988|DEBUG|OnDoc| +2026-03-18 17:00:46.7988|DEBUG|OnDoc| +2026-03-18 17:00:46.8101|DEBUG|OnDoc| +2026-03-18 17:00:46.8101|DEBUG|OnDoc|Generate_Word +2026-03-18 17:00:46.8101|DEBUG|OnDoc|Word2013 +2026-03-18 17:00:46.8101|DEBUG|OnDoc|Word2013 +2026-03-18 17:00:52.4727|DEBUG|OnDoc|Generate_Word +2026-03-18 17:00:52.4899|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016967 +2026-03-18 17:00:52.4899|INFO|DocLog|Dokument über API erstellt +2026-03-18 17:00:52.4899|INFO|APIDocLog|Dokument return to sender +2026-03-18 17:00:52.4899|DEBUG|OnDoc| +2026-03-18 17:00:52.5010|DEBUG|OnDoc| +2026-03-18 17:00:52.5010|DEBUG|OnDoc| +2026-03-18 17:00:52.5010|DEBUG|OnDoc| +2026-03-18 17:00:52.5010|DEBUG|OnDoc| +2026-03-18 17:00:52.5010|DEBUG|OnDoc| +2026-03-18 17:01:04.0147|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 17:01:04.1329|INFO|APIDocLog|Start CreateDoc +2026-03-18 17:01:04.1882|INFO|APIDocLog|Input JSON +2026-03-18 17:01:04.1882|DEBUG|OnDoc|Start GenDoc +2026-03-18 17:01:04.1882|DEBUG|OnDoc| +2026-03-18 17:01:04.1882|DEBUG|OnDoc| +2026-03-18 17:01:04.1882|DEBUG|OnDoc| +2026-03-18 17:01:04.1882|DEBUG|OnDoc| +2026-03-18 17:01:04.1882|DEBUG|OnDoc| +2026-03-18 17:01:04.1882|DEBUG|OnDoc| +2026-03-18 17:01:04.1882|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.1996|DEBUG|OnDoc| +2026-03-18 17:01:04.2164|DEBUG|OnDoc| +2026-03-18 17:01:04.2164|DEBUG|OnDoc| +2026-03-18 17:01:04.2164|DEBUG|OnDoc| +2026-03-18 17:01:04.2164|DEBUG|OnDoc| +2026-03-18 17:01:04.2164|DEBUG|OnDoc| +2026-03-18 17:01:04.2164|DEBUG|OnDoc| +2026-03-18 17:01:04.2164|DEBUG|OnDoc| +2026-03-18 17:01:04.2164|DEBUG|OnDoc| +2026-03-18 17:01:04.2164|DEBUG|OnDoc| +2026-03-18 17:01:04.2164|DEBUG|OnDoc| +2026-03-18 17:01:04.2164|DEBUG|OnDoc| +2026-03-18 17:01:04.2438|DEBUG|OnDoc| +2026-03-18 17:01:04.2569|DEBUG|OnDoc| +2026-03-18 17:01:04.3112|DEBUG|OnDoc| +2026-03-18 17:01:04.3112|DEBUG|OnDoc| +2026-03-18 17:01:04.3283|DEBUG|OnDoc| +2026-03-18 17:01:04.3283|DEBUG|OnDoc| +2026-03-18 17:01:04.3283|DEBUG|OnDoc| +2026-03-18 17:01:04.3283|DEBUG|OnDoc| +2026-03-18 17:01:04.3733|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 17:01:04.3733|DEBUG|OnDoc| +2026-03-18 17:01:04.3733|DEBUG|OnDoc| +2026-03-18 17:01:04.3872|DEBUG|OnDoc| +2026-03-18 17:01:04.3872|DEBUG|OnDoc| +2026-03-18 17:01:04.3872|DEBUG|OnDoc| +2026-03-18 17:01:04.3872|DEBUG|OnDoc| +2026-03-18 17:01:04.3872|DEBUG|OnDoc| +2026-03-18 17:01:04.4072|DEBUG|OnDoc| +2026-03-18 17:01:04.4072|DEBUG|OnDoc|Generate_Word +2026-03-18 17:01:04.4299|DEBUG|OnDoc|Word2013 +2026-03-18 17:01:04.4299|DEBUG|OnDoc|Word2013 +2026-03-18 17:01:09.7370|DEBUG|OnDoc|Generate_Word +2026-03-18 17:01:09.7735|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016975 +2026-03-18 17:01:09.7735|INFO|DocLog|Dokument über API erstellt +2026-03-18 17:01:09.7735|INFO|APIDocLog|Dokument return to sender +2026-03-18 17:01:09.7735|DEBUG|OnDoc| +2026-03-18 17:01:09.7790|DEBUG|OnDoc| +2026-03-18 17:01:09.7790|DEBUG|OnDoc| +2026-03-18 17:01:09.7790|DEBUG|OnDoc| +2026-03-18 17:01:09.7790|DEBUG|OnDoc| +2026-03-18 17:01:09.7790|DEBUG|OnDoc| +2026-03-18 17:01:20.3131|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 17:01:20.4888|INFO|APIDocLog|Start CreateDoc +2026-03-18 17:01:20.5726|INFO|APIDocLog|Input JSON +2026-03-18 17:01:20.5841|DEBUG|OnDoc|Start GenDoc +2026-03-18 17:01:20.5841|DEBUG|OnDoc| +2026-03-18 17:01:20.5841|DEBUG|OnDoc| +2026-03-18 17:01:20.5841|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.5901|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6066|DEBUG|OnDoc| +2026-03-18 17:01:20.6337|DEBUG|OnDoc| +2026-03-18 17:01:20.6337|DEBUG|OnDoc| +2026-03-18 17:01:20.7196|DEBUG|OnDoc| +2026-03-18 17:01:20.7196|DEBUG|OnDoc| +2026-03-18 17:01:20.7196|DEBUG|OnDoc| +2026-03-18 17:01:20.7308|DEBUG|OnDoc| +2026-03-18 17:01:20.7308|DEBUG|OnDoc| +2026-03-18 17:01:20.7308|DEBUG|OnDoc| +2026-03-18 17:01:20.7910|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 17:01:20.7910|DEBUG|OnDoc| +2026-03-18 17:01:20.8008|DEBUG|OnDoc| +2026-03-18 17:01:20.8008|DEBUG|OnDoc| +2026-03-18 17:01:20.8008|DEBUG|OnDoc| +2026-03-18 17:01:20.8008|DEBUG|OnDoc| +2026-03-18 17:01:20.8008|DEBUG|OnDoc| +2026-03-18 17:01:20.8008|DEBUG|OnDoc| +2026-03-18 17:01:20.8102|DEBUG|OnDoc| +2026-03-18 17:01:20.8102|DEBUG|OnDoc|Generate_Word +2026-03-18 17:01:20.8102|DEBUG|OnDoc|Word2013 +2026-03-18 17:01:20.8102|DEBUG|OnDoc|Word2013 +2026-03-18 17:01:27.8487|DEBUG|OnDoc|Generate_Word +2026-03-18 17:01:27.8853|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016980 +2026-03-18 17:01:27.8853|INFO|DocLog|Dokument über API erstellt +2026-03-18 17:01:27.8873|INFO|APIDocLog|Dokument return to sender +2026-03-18 17:01:27.8873|DEBUG|OnDoc| +2026-03-18 17:01:27.8873|DEBUG|OnDoc| +2026-03-18 17:01:27.8873|DEBUG|OnDoc| +2026-03-18 17:01:27.8873|DEBUG|OnDoc| +2026-03-18 17:01:27.9028|DEBUG|OnDoc| +2026-03-18 17:01:27.9028|DEBUG|OnDoc| +2026-03-18 17:39:14.6849|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 17:39:14.7863|INFO|APIDocLog|Start CreateDoc +2026-03-18 17:39:14.8549|INFO|APIDocLog|Input JSON +2026-03-18 17:39:14.8584|DEBUG|OnDoc|Start GenDoc +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8584|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.8714|DEBUG|OnDoc| +2026-03-18 17:39:14.9093|DEBUG|OnDoc| +2026-03-18 17:39:14.9093|DEBUG|OnDoc| +2026-03-18 17:39:14.9692|DEBUG|OnDoc| +2026-03-18 17:39:14.9692|DEBUG|OnDoc| +2026-03-18 17:39:14.9852|DEBUG|OnDoc| +2026-03-18 17:39:14.9852|DEBUG|OnDoc| +2026-03-18 17:39:14.9852|DEBUG|OnDoc| +2026-03-18 17:39:14.9852|DEBUG|OnDoc| +2026-03-18 17:39:15.0328|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 17:39:15.0328|DEBUG|OnDoc| +2026-03-18 17:39:15.0328|DEBUG|OnDoc| +2026-03-18 17:39:15.0328|DEBUG|OnDoc| +2026-03-18 17:39:15.0328|DEBUG|OnDoc| +2026-03-18 17:39:15.0328|DEBUG|OnDoc| +2026-03-18 17:39:15.0489|DEBUG|OnDoc| +2026-03-18 17:39:15.0489|DEBUG|OnDoc| +2026-03-18 17:39:15.0489|DEBUG|OnDoc| +2026-03-18 17:39:15.0489|DEBUG|OnDoc|Generate_Word +2026-03-18 17:39:15.0701|DEBUG|OnDoc|Word2013 +2026-03-18 17:39:15.0701|DEBUG|OnDoc|Word2013 +2026-03-18 17:39:21.8330|DEBUG|OnDoc|Generate_Word +2026-03-18 17:39:21.8756|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000016991 +2026-03-18 17:39:21.8756|INFO|DocLog|Dokument über API erstellt +2026-03-18 17:39:21.8756|INFO|APIDocLog|Dokument return to sender +2026-03-18 17:39:21.8756|DEBUG|OnDoc| +2026-03-18 17:39:21.8756|DEBUG|OnDoc| +2026-03-18 17:39:21.8756|DEBUG|OnDoc| +2026-03-18 17:39:21.8756|DEBUG|OnDoc| +2026-03-18 17:39:21.8756|DEBUG|OnDoc| +2026-03-18 17:39:21.8756|DEBUG|OnDoc| +2026-03-18 17:39:54.5338|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 17:39:54.6736|INFO|APIDocLog|Start CreateDoc +2026-03-18 17:39:54.7388|INFO|APIDocLog|Input JSON +2026-03-18 17:39:54.7388|DEBUG|OnDoc|Start GenDoc +2026-03-18 17:39:54.7388|DEBUG|OnDoc| +2026-03-18 17:39:54.7388|DEBUG|OnDoc| +2026-03-18 17:39:54.7388|DEBUG|OnDoc| +2026-03-18 17:39:54.7388|DEBUG|OnDoc| +2026-03-18 17:39:54.7388|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7473|DEBUG|OnDoc| +2026-03-18 17:39:54.7619|DEBUG|OnDoc| +2026-03-18 17:39:54.7619|DEBUG|OnDoc| +2026-03-18 17:39:54.7848|DEBUG|OnDoc| +2026-03-18 17:39:54.7848|DEBUG|OnDoc| +2026-03-18 17:39:54.8471|DEBUG|OnDoc| +2026-03-18 17:39:54.8471|DEBUG|OnDoc| +2026-03-18 17:39:54.8592|DEBUG|OnDoc| +2026-03-18 17:39:54.8592|DEBUG|OnDoc| +2026-03-18 17:39:54.8592|DEBUG|OnDoc| +2026-03-18 17:39:54.8592|DEBUG|OnDoc| +2026-03-18 17:39:54.9077|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 17:39:54.9077|DEBUG|OnDoc| +2026-03-18 17:39:54.9077|DEBUG|OnDoc| +2026-03-18 17:39:54.9077|DEBUG|OnDoc| +2026-03-18 17:39:54.9188|DEBUG|OnDoc| +2026-03-18 17:39:54.9188|DEBUG|OnDoc| +2026-03-18 17:39:54.9188|DEBUG|OnDoc| +2026-03-18 17:39:54.9188|DEBUG|OnDoc| +2026-03-18 17:39:54.9188|DEBUG|OnDoc| +2026-03-18 17:39:54.9188|DEBUG|OnDoc|Generate_Word +2026-03-18 17:39:54.9410|DEBUG|OnDoc|Word2013 +2026-03-18 17:39:54.9410|DEBUG|OnDoc|Word2013 +2026-03-18 17:40:45.9277|DEBUG|OnDoc|Generate_Word +2026-03-18 17:40:45.9693|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017004 +2026-03-18 17:40:45.9693|INFO|DocLog|Dokument über API erstellt +2026-03-18 17:40:45.9693|INFO|APIDocLog|Dokument return to sender +2026-03-18 17:40:45.9693|DEBUG|OnDoc| +2026-03-18 17:40:45.9693|DEBUG|OnDoc| +2026-03-18 17:40:45.9834|DEBUG|OnDoc| +2026-03-18 17:40:45.9834|DEBUG|OnDoc| +2026-03-18 17:40:45.9834|DEBUG|OnDoc| +2026-03-18 17:40:45.9834|DEBUG|OnDoc| +2026-03-18 17:57:30.8441|DEBUG|OnDoc| +2026-03-18 17:57:30.9354|DEBUG|OnDoc| +2026-03-18 17:57:30.9354|DEBUG|OnDoc| +2026-03-18 17:57:30.9354|DEBUG|OnDoc| +2026-03-18 17:57:31.2228|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 17:57:31.6175|INFO|APIDocLog|Start CreateDoc +2026-03-18 17:57:31.7320|INFO|APIDocLog|Input JSON +2026-03-18 17:57:31.7581|DEBUG|OnDoc|Start GenDoc +2026-03-18 17:57:31.7621|DEBUG|OnDoc| +2026-03-18 17:57:31.7621|DEBUG|OnDoc| +2026-03-18 17:57:31.7621|DEBUG|OnDoc| +2026-03-18 17:57:31.7621|DEBUG|OnDoc| +2026-03-18 17:57:31.7621|DEBUG|OnDoc| +2026-03-18 17:57:31.7621|DEBUG|OnDoc| +2026-03-18 17:57:31.7621|DEBUG|OnDoc| +2026-03-18 17:57:31.7621|DEBUG|OnDoc| +2026-03-18 17:57:31.7621|DEBUG|OnDoc| +2026-03-18 17:57:31.7621|DEBUG|OnDoc| +2026-03-18 17:57:31.7621|DEBUG|OnDoc| +2026-03-18 17:57:31.7621|DEBUG|OnDoc| +2026-03-18 17:57:31.7621|DEBUG|OnDoc| +2026-03-18 17:57:31.7621|DEBUG|OnDoc| +2026-03-18 17:57:31.7795|DEBUG|OnDoc| +2026-03-18 17:57:31.7795|DEBUG|OnDoc| +2026-03-18 17:57:31.7795|DEBUG|OnDoc| +2026-03-18 17:57:31.7795|DEBUG|OnDoc| +2026-03-18 17:57:31.7795|DEBUG|OnDoc| +2026-03-18 17:57:31.7795|DEBUG|OnDoc| +2026-03-18 17:57:31.7795|DEBUG|OnDoc| +2026-03-18 17:57:31.7795|DEBUG|OnDoc| +2026-03-18 17:57:31.7795|DEBUG|OnDoc| +2026-03-18 17:57:31.7940|DEBUG|OnDoc| +2026-03-18 17:57:31.7940|DEBUG|OnDoc| +2026-03-18 17:57:31.7940|DEBUG|OnDoc| +2026-03-18 17:57:31.7940|DEBUG|OnDoc| +2026-03-18 17:57:31.7940|DEBUG|OnDoc| +2026-03-18 17:57:31.7940|DEBUG|OnDoc| +2026-03-18 17:57:31.7940|DEBUG|OnDoc| +2026-03-18 17:57:31.7940|DEBUG|OnDoc| +2026-03-18 17:57:31.7940|DEBUG|OnDoc| +2026-03-18 17:57:31.7940|DEBUG|OnDoc| +2026-03-18 17:57:31.7940|DEBUG|OnDoc| +2026-03-18 17:57:31.8273|DEBUG|OnDoc| +2026-03-18 17:57:31.8273|DEBUG|OnDoc| +2026-03-18 17:57:31.8868|DEBUG|OnDoc| +2026-03-18 17:57:31.8908|DEBUG|OnDoc| +2026-03-18 17:57:31.9232|DEBUG|OnDoc| +2026-03-18 17:57:31.9232|DEBUG|OnDoc| +2026-03-18 17:57:31.9232|DEBUG|OnDoc| +2026-03-18 17:57:31.9232|DEBUG|OnDoc| +2026-03-18 17:57:31.9546|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 17:57:31.9546|DEBUG|OnDoc| +2026-03-18 17:57:31.9666|DEBUG|OnDoc| +2026-03-18 17:57:31.9666|DEBUG|OnDoc| +2026-03-18 17:57:31.9666|DEBUG|OnDoc| +2026-03-18 17:57:31.9666|DEBUG|OnDoc| +2026-03-18 17:57:31.9666|DEBUG|OnDoc| +2026-03-18 17:57:31.9666|DEBUG|OnDoc| +2026-03-18 17:57:31.9840|DEBUG|OnDoc| +2026-03-18 17:57:31.9840|DEBUG|OnDoc|Generate_Word +2026-03-18 17:57:32.4868|DEBUG|OnDoc|Word2013 +2026-03-18 17:57:32.4868|DEBUG|OnDoc|Word2013 +2026-03-18 17:57:34.6063|DEBUG|OnDoc|Generate_Word +2026-03-18 17:57:34.6622|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017012 +2026-03-18 17:57:34.6622|INFO|DocLog|Dokument über API erstellt +2026-03-18 17:57:34.6622|INFO|APIDocLog|Dokument return to sender +2026-03-18 17:57:34.6697|DEBUG|OnDoc| +2026-03-18 17:57:34.6697|DEBUG|OnDoc| +2026-03-18 17:57:34.6697|DEBUG|OnDoc| +2026-03-18 17:57:34.6697|DEBUG|OnDoc| +2026-03-18 17:57:34.6697|DEBUG|OnDoc| +2026-03-18 17:57:34.6697|DEBUG|OnDoc| +2026-03-18 17:59:15.1882|DEBUG|OnDoc| +2026-03-18 17:59:15.2839|DEBUG|OnDoc| +2026-03-18 17:59:15.2839|DEBUG|OnDoc| +2026-03-18 17:59:15.2839|DEBUG|OnDoc| +2026-03-18 17:59:24.3319|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 17:59:24.5690|INFO|APIDocLog|Start CreateDoc +2026-03-18 17:59:24.6634|INFO|APIDocLog|Input JSON +2026-03-18 17:59:24.6846|DEBUG|OnDoc|Start GenDoc +2026-03-18 17:59:24.6846|DEBUG|OnDoc| +2026-03-18 17:59:24.6846|DEBUG|OnDoc| +2026-03-18 17:59:24.6846|DEBUG|OnDoc| +2026-03-18 17:59:24.6846|DEBUG|OnDoc| +2026-03-18 17:59:24.6846|DEBUG|OnDoc| +2026-03-18 17:59:24.6846|DEBUG|OnDoc| +2026-03-18 17:59:24.6846|DEBUG|OnDoc| +2026-03-18 17:59:24.6846|DEBUG|OnDoc| +2026-03-18 17:59:24.6846|DEBUG|OnDoc| +2026-03-18 17:59:24.6846|DEBUG|OnDoc| +2026-03-18 17:59:24.6846|DEBUG|OnDoc| +2026-03-18 17:59:24.6846|DEBUG|OnDoc| +2026-03-18 17:59:24.6846|DEBUG|OnDoc| +2026-03-18 17:59:24.6846|DEBUG|OnDoc| +2026-03-18 17:59:24.6995|DEBUG|OnDoc| +2026-03-18 17:59:24.6995|DEBUG|OnDoc| +2026-03-18 17:59:24.6995|DEBUG|OnDoc| +2026-03-18 17:59:24.6995|DEBUG|OnDoc| +2026-03-18 17:59:24.6995|DEBUG|OnDoc| +2026-03-18 17:59:24.6995|DEBUG|OnDoc| +2026-03-18 17:59:24.6995|DEBUG|OnDoc| +2026-03-18 17:59:24.6995|DEBUG|OnDoc| +2026-03-18 17:59:24.6995|DEBUG|OnDoc| +2026-03-18 17:59:24.6995|DEBUG|OnDoc| +2026-03-18 17:59:24.6995|DEBUG|OnDoc| +2026-03-18 17:59:24.6995|DEBUG|OnDoc| +2026-03-18 17:59:24.6995|DEBUG|OnDoc| +2026-03-18 17:59:24.7164|DEBUG|OnDoc| +2026-03-18 17:59:24.7164|DEBUG|OnDoc| +2026-03-18 17:59:24.7164|DEBUG|OnDoc| +2026-03-18 17:59:24.7164|DEBUG|OnDoc| +2026-03-18 17:59:24.7164|DEBUG|OnDoc| +2026-03-18 17:59:24.7164|DEBUG|OnDoc| +2026-03-18 17:59:24.7164|DEBUG|OnDoc| +2026-03-18 17:59:24.7381|DEBUG|OnDoc| +2026-03-18 17:59:24.7381|DEBUG|OnDoc| +2026-03-18 17:59:24.7863|DEBUG|OnDoc| +2026-03-18 17:59:24.7863|DEBUG|OnDoc| +2026-03-18 17:59:24.8128|DEBUG|OnDoc| +2026-03-18 17:59:24.8128|DEBUG|OnDoc| +2026-03-18 17:59:24.8128|DEBUG|OnDoc| +2026-03-18 17:59:24.8128|DEBUG|OnDoc| +2026-03-18 17:59:24.8342|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 17:59:24.8342|DEBUG|OnDoc| +2026-03-18 17:59:24.8442|DEBUG|OnDoc| +2026-03-18 17:59:24.8442|DEBUG|OnDoc| +2026-03-18 17:59:24.8442|DEBUG|OnDoc| +2026-03-18 17:59:24.8442|DEBUG|OnDoc| +2026-03-18 17:59:24.8442|DEBUG|OnDoc| +2026-03-18 17:59:24.8442|DEBUG|OnDoc| +2026-03-18 17:59:24.8566|DEBUG|OnDoc| +2026-03-18 17:59:24.8566|DEBUG|OnDoc|Generate_Word +2026-03-18 17:59:25.3197|DEBUG|OnDoc|Word2013 +2026-03-18 17:59:25.3298|DEBUG|OnDoc|Word2013 +2026-03-18 17:59:27.2344|DEBUG|OnDoc|Generate_Word +2026-03-18 17:59:27.2802|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017028 +2026-03-18 17:59:27.2802|INFO|DocLog|Dokument über API erstellt +2026-03-18 17:59:27.2802|INFO|APIDocLog|Dokument return to sender +2026-03-18 17:59:27.2802|DEBUG|OnDoc| +2026-03-18 17:59:27.2802|DEBUG|OnDoc| +2026-03-18 17:59:27.2802|DEBUG|OnDoc| +2026-03-18 17:59:27.2802|DEBUG|OnDoc| +2026-03-18 17:59:27.2802|DEBUG|OnDoc| +2026-03-18 17:59:27.2802|DEBUG|OnDoc| +2026-03-18 18:00:49.3242|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 18:00:49.4036|INFO|APIDocLog|Start CreateDoc +2026-03-18 18:00:49.4348|INFO|APIDocLog|Input JSON +2026-03-18 18:00:49.4348|DEBUG|OnDoc|Start GenDoc +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4348|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4498|DEBUG|OnDoc| +2026-03-18 18:00:49.4752|DEBUG|OnDoc| +2026-03-18 18:00:49.4752|DEBUG|OnDoc| +2026-03-18 18:00:49.5104|DEBUG|OnDoc| +2026-03-18 18:00:49.5104|DEBUG|OnDoc| +2026-03-18 18:00:49.5313|DEBUG|OnDoc| +2026-03-18 18:00:49.5313|DEBUG|OnDoc| +2026-03-18 18:00:49.5313|DEBUG|OnDoc| +2026-03-18 18:00:49.5313|DEBUG|OnDoc| +2026-03-18 18:00:49.5572|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 18:00:49.5592|DEBUG|OnDoc| +2026-03-18 18:00:49.5592|DEBUG|OnDoc| +2026-03-18 18:00:49.5592|DEBUG|OnDoc| +2026-03-18 18:00:49.5592|DEBUG|OnDoc| +2026-03-18 18:00:49.5789|DEBUG|OnDoc| +2026-03-18 18:00:49.5789|DEBUG|OnDoc| +2026-03-18 18:00:49.5789|DEBUG|OnDoc| +2026-03-18 18:00:49.5964|DEBUG|OnDoc| +2026-03-18 18:00:49.5964|DEBUG|OnDoc|Generate_Word +2026-03-18 18:00:49.6125|DEBUG|OnDoc|Word2013 +2026-03-18 18:00:49.6125|DEBUG|OnDoc|Word2013 +2026-03-18 18:00:50.4295|DEBUG|OnDoc|Generate_Word +2026-03-18 18:00:50.4436|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017033 +2026-03-18 18:00:50.4436|INFO|DocLog|Dokument über API erstellt +2026-03-18 18:00:50.4436|INFO|APIDocLog|Dokument return to sender +2026-03-18 18:00:50.4436|DEBUG|OnDoc| +2026-03-18 18:00:50.4558|DEBUG|OnDoc| +2026-03-18 18:00:50.4558|DEBUG|OnDoc| +2026-03-18 18:00:50.4558|DEBUG|OnDoc| +2026-03-18 18:00:50.4558|DEBUG|OnDoc| +2026-03-18 18:00:50.4558|DEBUG|OnDoc| +2026-03-18 18:01:04.9889|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 18:01:05.0971|INFO|APIDocLog|Start CreateDoc +2026-03-18 18:01:05.1458|INFO|APIDocLog|Input JSON +2026-03-18 18:01:05.1458|DEBUG|OnDoc|Start GenDoc +2026-03-18 18:01:05.1458|DEBUG|OnDoc| +2026-03-18 18:01:05.1458|DEBUG|OnDoc| +2026-03-18 18:01:05.1458|DEBUG|OnDoc| +2026-03-18 18:01:05.1458|DEBUG|OnDoc| +2026-03-18 18:01:05.1458|DEBUG|OnDoc| +2026-03-18 18:01:05.1458|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1537|DEBUG|OnDoc| +2026-03-18 18:01:05.1684|DEBUG|OnDoc| +2026-03-18 18:01:05.1684|DEBUG|OnDoc| +2026-03-18 18:01:05.1684|DEBUG|OnDoc| +2026-03-18 18:01:05.1684|DEBUG|OnDoc| +2026-03-18 18:01:05.1684|DEBUG|OnDoc| +2026-03-18 18:01:05.1684|DEBUG|OnDoc| +2026-03-18 18:01:05.1684|DEBUG|OnDoc| +2026-03-18 18:01:05.1684|DEBUG|OnDoc| +2026-03-18 18:01:05.1684|DEBUG|OnDoc| +2026-03-18 18:01:05.1684|DEBUG|OnDoc| +2026-03-18 18:01:05.1879|DEBUG|OnDoc| +2026-03-18 18:01:05.1879|DEBUG|OnDoc| +2026-03-18 18:01:05.2264|DEBUG|OnDoc| +2026-03-18 18:01:05.2264|DEBUG|OnDoc| +2026-03-18 18:01:05.2445|DEBUG|OnDoc| +2026-03-18 18:01:05.2465|DEBUG|OnDoc| +2026-03-18 18:01:05.2465|DEBUG|OnDoc| +2026-03-18 18:01:05.2465|DEBUG|OnDoc| +2026-03-18 18:01:05.2753|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 18:01:05.2753|DEBUG|OnDoc| +2026-03-18 18:01:05.2903|DEBUG|OnDoc| +2026-03-18 18:01:05.2903|DEBUG|OnDoc| +2026-03-18 18:01:05.2939|DEBUG|OnDoc| +2026-03-18 18:01:05.2939|DEBUG|OnDoc| +2026-03-18 18:01:05.2939|DEBUG|OnDoc| +2026-03-18 18:01:05.2939|DEBUG|OnDoc| +2026-03-18 18:01:05.3181|DEBUG|OnDoc| +2026-03-18 18:01:05.3181|DEBUG|OnDoc|Generate_Word +2026-03-18 18:01:05.3361|DEBUG|OnDoc|Word2013 +2026-03-18 18:01:05.3361|DEBUG|OnDoc|Word2013 +2026-03-18 18:01:06.3493|DEBUG|OnDoc|Generate_Word +2026-03-18 18:01:06.3624|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017049 +2026-03-18 18:01:06.3624|INFO|DocLog|Dokument über API erstellt +2026-03-18 18:01:06.3624|INFO|APIDocLog|Dokument return to sender +2026-03-18 18:01:06.3624|DEBUG|OnDoc| +2026-03-18 18:01:06.3756|DEBUG|OnDoc| +2026-03-18 18:01:06.3756|DEBUG|OnDoc| +2026-03-18 18:01:06.3756|DEBUG|OnDoc| +2026-03-18 18:01:06.3756|DEBUG|OnDoc| +2026-03-18 18:01:06.3756|DEBUG|OnDoc| +2026-03-18 18:01:18.5526|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 18:01:18.6364|INFO|APIDocLog|Start CreateDoc +2026-03-18 18:01:18.6852|INFO|APIDocLog|Input JSON +2026-03-18 18:01:18.6852|DEBUG|OnDoc|Start GenDoc +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6852|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.6994|DEBUG|OnDoc| +2026-03-18 18:01:18.7588|DEBUG|OnDoc| +2026-03-18 18:01:18.7588|DEBUG|OnDoc| +2026-03-18 18:01:18.7672|DEBUG|OnDoc| +2026-03-18 18:01:18.7672|DEBUG|OnDoc| +2026-03-18 18:01:18.7672|DEBUG|OnDoc| +2026-03-18 18:01:18.7672|DEBUG|OnDoc| +2026-03-18 18:01:18.8030|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 18:01:18.8030|DEBUG|OnDoc| +2026-03-18 18:01:18.8125|DEBUG|OnDoc| +2026-03-18 18:01:18.8125|DEBUG|OnDoc| +2026-03-18 18:01:18.8125|DEBUG|OnDoc| +2026-03-18 18:01:18.8125|DEBUG|OnDoc| +2026-03-18 18:01:18.8125|DEBUG|OnDoc| +2026-03-18 18:01:18.8125|DEBUG|OnDoc| +2026-03-18 18:01:18.8125|DEBUG|OnDoc| +2026-03-18 18:01:18.8125|DEBUG|OnDoc|Generate_Word +2026-03-18 18:01:18.8358|DEBUG|OnDoc|Word2013 +2026-03-18 18:01:18.8358|DEBUG|OnDoc|Word2013 +2026-03-18 18:01:19.8719|DEBUG|OnDoc|Generate_Word +2026-03-18 18:01:19.8719|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017057 +2026-03-18 18:01:19.8719|INFO|DocLog|Dokument über API erstellt +2026-03-18 18:01:19.8719|INFO|APIDocLog|Dokument return to sender +2026-03-18 18:01:19.8719|DEBUG|OnDoc| +2026-03-18 18:01:19.8870|DEBUG|OnDoc| +2026-03-18 18:01:19.8870|DEBUG|OnDoc| +2026-03-18 18:01:19.8870|DEBUG|OnDoc| +2026-03-18 18:01:19.8870|DEBUG|OnDoc| +2026-03-18 18:01:19.8870|DEBUG|OnDoc| +2026-03-18 18:02:18.8331|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 18:02:18.9563|INFO|APIDocLog|Start CreateDoc +2026-03-18 18:02:19.0110|INFO|APIDocLog|Input JSON +2026-03-18 18:02:19.0145|DEBUG|OnDoc|Start GenDoc +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0145|DEBUG|OnDoc| +2026-03-18 18:02:19.0276|DEBUG|OnDoc| +2026-03-18 18:02:19.0276|DEBUG|OnDoc| +2026-03-18 18:02:19.0276|DEBUG|OnDoc| +2026-03-18 18:02:19.0276|DEBUG|OnDoc| +2026-03-18 18:02:19.0276|DEBUG|OnDoc| +2026-03-18 18:02:19.0501|DEBUG|OnDoc| +2026-03-18 18:02:19.0501|DEBUG|OnDoc| +2026-03-18 18:02:19.1026|DEBUG|OnDoc| +2026-03-18 18:02:19.1026|DEBUG|OnDoc| +2026-03-18 18:02:19.1106|DEBUG|OnDoc| +2026-03-18 18:02:19.1106|DEBUG|OnDoc| +2026-03-18 18:02:19.1106|DEBUG|OnDoc| +2026-03-18 18:02:19.1106|DEBUG|OnDoc| +2026-03-18 18:02:19.1534|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 18:02:19.1534|DEBUG|OnDoc| +2026-03-18 18:02:19.1534|DEBUG|OnDoc| +2026-03-18 18:02:19.1534|DEBUG|OnDoc| +2026-03-18 18:02:19.1534|DEBUG|OnDoc| +2026-03-18 18:02:19.1534|DEBUG|OnDoc| +2026-03-18 18:02:19.1534|DEBUG|OnDoc| +2026-03-18 18:02:19.1534|DEBUG|OnDoc| +2026-03-18 18:02:19.1698|DEBUG|OnDoc| +2026-03-18 18:02:19.1698|DEBUG|OnDoc|Generate_Word +2026-03-18 18:02:19.1843|DEBUG|OnDoc|Word2013 +2026-03-18 18:02:19.1843|DEBUG|OnDoc|Word2013 +2026-03-18 18:02:30.7889|DEBUG|OnDoc|Generate_Word +2026-03-18 18:02:30.8269|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017065 +2026-03-18 18:02:30.8269|INFO|DocLog|Dokument über API erstellt +2026-03-18 18:02:30.8269|INFO|APIDocLog|Dokument return to sender +2026-03-18 18:02:30.8269|DEBUG|OnDoc| +2026-03-18 18:02:30.8269|DEBUG|OnDoc| +2026-03-18 18:02:30.8269|DEBUG|OnDoc| +2026-03-18 18:02:30.8269|DEBUG|OnDoc| +2026-03-18 18:02:30.8269|DEBUG|OnDoc| +2026-03-18 18:02:30.8269|DEBUG|OnDoc| +2026-03-18 18:02:55.7394|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 18:02:55.8912|INFO|APIDocLog|Start CreateDoc +2026-03-18 18:02:55.9785|INFO|APIDocLog|Input JSON +2026-03-18 18:02:55.9898|DEBUG|OnDoc|Start GenDoc +2026-03-18 18:02:55.9898|DEBUG|OnDoc| +2026-03-18 18:02:55.9898|DEBUG|OnDoc| +2026-03-18 18:02:55.9898|DEBUG|OnDoc| +2026-03-18 18:02:55.9898|DEBUG|OnDoc| +2026-03-18 18:02:55.9898|DEBUG|OnDoc| +2026-03-18 18:02:55.9898|DEBUG|OnDoc| +2026-03-18 18:02:55.9898|DEBUG|OnDoc| +2026-03-18 18:02:55.9898|DEBUG|OnDoc| +2026-03-18 18:02:55.9898|DEBUG|OnDoc| +2026-03-18 18:02:55.9971|DEBUG|OnDoc| +2026-03-18 18:02:55.9971|DEBUG|OnDoc| +2026-03-18 18:02:55.9971|DEBUG|OnDoc| +2026-03-18 18:02:55.9971|DEBUG|OnDoc| +2026-03-18 18:02:55.9971|DEBUG|OnDoc| +2026-03-18 18:02:55.9971|DEBUG|OnDoc| +2026-03-18 18:02:55.9971|DEBUG|OnDoc| +2026-03-18 18:02:55.9971|DEBUG|OnDoc| +2026-03-18 18:02:55.9971|DEBUG|OnDoc| +2026-03-18 18:02:55.9971|DEBUG|OnDoc| +2026-03-18 18:02:55.9971|DEBUG|OnDoc| +2026-03-18 18:02:55.9971|DEBUG|OnDoc| +2026-03-18 18:02:56.0127|DEBUG|OnDoc| +2026-03-18 18:02:56.0127|DEBUG|OnDoc| +2026-03-18 18:02:56.0127|DEBUG|OnDoc| +2026-03-18 18:02:56.0127|DEBUG|OnDoc| +2026-03-18 18:02:56.0127|DEBUG|OnDoc| +2026-03-18 18:02:56.0127|DEBUG|OnDoc| +2026-03-18 18:02:56.0127|DEBUG|OnDoc| +2026-03-18 18:02:56.0127|DEBUG|OnDoc| +2026-03-18 18:02:56.0127|DEBUG|OnDoc| +2026-03-18 18:02:56.0127|DEBUG|OnDoc| +2026-03-18 18:02:56.0286|DEBUG|OnDoc| +2026-03-18 18:02:56.0286|DEBUG|OnDoc| +2026-03-18 18:02:56.0286|DEBUG|OnDoc| +2026-03-18 18:02:56.0537|DEBUG|OnDoc| +2026-03-18 18:02:56.0537|DEBUG|OnDoc| +2026-03-18 18:02:56.1191|DEBUG|OnDoc| +2026-03-18 18:02:56.1191|DEBUG|OnDoc| +2026-03-18 18:02:56.1439|DEBUG|OnDoc| +2026-03-18 18:02:56.1439|DEBUG|OnDoc| +2026-03-18 18:02:56.1439|DEBUG|OnDoc| +2026-03-18 18:02:56.1439|DEBUG|OnDoc| +2026-03-18 18:02:56.1986|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 18:02:56.1996|DEBUG|OnDoc| +2026-03-18 18:02:56.2172|DEBUG|OnDoc| +2026-03-18 18:02:56.2172|DEBUG|OnDoc| +2026-03-18 18:02:56.2172|DEBUG|OnDoc| +2026-03-18 18:02:56.2172|DEBUG|OnDoc| +2026-03-18 18:02:56.2312|DEBUG|OnDoc| +2026-03-18 18:02:56.2312|DEBUG|OnDoc| +2026-03-18 18:02:56.2312|DEBUG|OnDoc| +2026-03-18 18:02:56.2312|DEBUG|OnDoc|Generate_Word +2026-03-18 18:02:56.2573|DEBUG|OnDoc|Word2013 +2026-03-18 18:02:56.2573|DEBUG|OnDoc|Word2013 +2026-03-18 18:03:17.4662|DEBUG|OnDoc|Generate_Word +2026-03-18 18:03:17.5065|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017070 +2026-03-18 18:03:17.5065|INFO|DocLog|Dokument über API erstellt +2026-03-18 18:03:17.5065|INFO|APIDocLog|Dokument return to sender +2026-03-18 18:03:17.5121|DEBUG|OnDoc| +2026-03-18 18:03:17.5121|DEBUG|OnDoc| +2026-03-18 18:03:17.5121|DEBUG|OnDoc| +2026-03-18 18:03:17.5121|DEBUG|OnDoc| +2026-03-18 18:03:17.5121|DEBUG|OnDoc| +2026-03-18 18:03:17.5287|DEBUG|OnDoc| +2026-03-18 18:03:26.1595|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 18:03:26.3055|INFO|APIDocLog|Start CreateDoc +2026-03-18 18:03:26.3825|INFO|APIDocLog|Input JSON +2026-03-18 18:03:26.3941|DEBUG|OnDoc|Start GenDoc +2026-03-18 18:03:26.3941|DEBUG|OnDoc| +2026-03-18 18:03:26.3941|DEBUG|OnDoc| +2026-03-18 18:03:26.3941|DEBUG|OnDoc| +2026-03-18 18:03:26.3941|DEBUG|OnDoc| +2026-03-18 18:03:26.3941|DEBUG|OnDoc| +2026-03-18 18:03:26.3941|DEBUG|OnDoc| +2026-03-18 18:03:26.3941|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4032|DEBUG|OnDoc| +2026-03-18 18:03:26.4191|DEBUG|OnDoc| +2026-03-18 18:03:26.4191|DEBUG|OnDoc| +2026-03-18 18:03:26.4191|DEBUG|OnDoc| +2026-03-18 18:03:26.4191|DEBUG|OnDoc| +2026-03-18 18:03:26.4191|DEBUG|OnDoc| +2026-03-18 18:03:26.4191|DEBUG|OnDoc| +2026-03-18 18:03:26.4191|DEBUG|OnDoc| +2026-03-18 18:03:26.4191|DEBUG|OnDoc| +2026-03-18 18:03:26.4191|DEBUG|OnDoc| +2026-03-18 18:03:26.4191|DEBUG|OnDoc| +2026-03-18 18:03:26.4191|DEBUG|OnDoc| +2026-03-18 18:03:26.4191|DEBUG|OnDoc| +2026-03-18 18:03:26.4346|DEBUG|OnDoc| +2026-03-18 18:03:26.4346|DEBUG|OnDoc| +2026-03-18 18:03:26.4925|DEBUG|OnDoc| +2026-03-18 18:03:26.4925|DEBUG|OnDoc| +2026-03-18 18:03:26.5046|DEBUG|OnDoc| +2026-03-18 18:03:26.5046|DEBUG|OnDoc| +2026-03-18 18:03:26.5046|DEBUG|OnDoc| +2026-03-18 18:03:26.5046|DEBUG|OnDoc| +2026-03-18 18:03:26.5557|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 18:03:26.5557|DEBUG|OnDoc| +2026-03-18 18:03:26.5702|DEBUG|OnDoc| +2026-03-18 18:03:26.5702|DEBUG|OnDoc| +2026-03-18 18:03:26.5748|DEBUG|OnDoc| +2026-03-18 18:03:26.5748|DEBUG|OnDoc| +2026-03-18 18:03:26.5748|DEBUG|OnDoc| +2026-03-18 18:03:26.5748|DEBUG|OnDoc| +2026-03-18 18:03:26.5933|DEBUG|OnDoc| +2026-03-18 18:03:26.5933|DEBUG|OnDoc|Generate_Word +2026-03-18 18:03:26.5933|DEBUG|OnDoc|Word2013 +2026-03-18 18:03:26.6067|DEBUG|OnDoc|Word2013 +2026-03-18 18:03:32.5174|DEBUG|OnDoc|Generate_Word +2026-03-18 18:03:32.5538|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017081 +2026-03-18 18:03:32.5538|INFO|DocLog|Dokument über API erstellt +2026-03-18 18:03:32.5538|INFO|APIDocLog|Dokument return to sender +2026-03-18 18:03:32.5538|DEBUG|OnDoc| +2026-03-18 18:03:32.5591|DEBUG|OnDoc| +2026-03-18 18:03:32.5591|DEBUG|OnDoc| +2026-03-18 18:03:32.5591|DEBUG|OnDoc| +2026-03-18 18:03:32.5591|DEBUG|OnDoc| +2026-03-18 18:03:32.5591|DEBUG|OnDoc| +2026-03-18 18:03:48.4400|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 18:03:48.6160|INFO|APIDocLog|Start CreateDoc +2026-03-18 18:03:48.7020|INFO|APIDocLog|Input JSON +2026-03-18 18:03:48.7163|DEBUG|OnDoc|Start GenDoc +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7163|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7329|DEBUG|OnDoc| +2026-03-18 18:03:48.7466|DEBUG|OnDoc| +2026-03-18 18:03:48.7466|DEBUG|OnDoc| +2026-03-18 18:03:48.7466|DEBUG|OnDoc| +2026-03-18 18:03:48.7466|DEBUG|OnDoc| +2026-03-18 18:03:48.7466|DEBUG|OnDoc| +2026-03-18 18:03:48.7660|DEBUG|OnDoc| +2026-03-18 18:03:48.8779|DEBUG|OnDoc| +2026-03-18 18:03:48.8779|DEBUG|OnDoc| +2026-03-18 18:03:48.8982|DEBUG|OnDoc| +2026-03-18 18:03:48.8982|DEBUG|OnDoc| +2026-03-18 18:03:48.8982|DEBUG|OnDoc| +2026-03-18 18:03:48.8982|DEBUG|OnDoc| +2026-03-18 18:03:48.9859|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 18:03:48.9859|DEBUG|OnDoc| +2026-03-18 18:03:49.0078|DEBUG|OnDoc| +2026-03-18 18:03:49.0078|DEBUG|OnDoc| +2026-03-18 18:03:49.0128|DEBUG|OnDoc| +2026-03-18 18:03:49.0128|DEBUG|OnDoc| +2026-03-18 18:03:49.0279|DEBUG|OnDoc| +2026-03-18 18:03:49.0279|DEBUG|OnDoc| +2026-03-18 18:03:49.0279|DEBUG|OnDoc| +2026-03-18 18:03:49.0279|DEBUG|OnDoc|Generate_Word +2026-03-18 18:03:49.0510|DEBUG|OnDoc|Word2013 +2026-03-18 18:03:49.0510|DEBUG|OnDoc|Word2013 +2026-03-18 18:03:54.8913|DEBUG|OnDoc|Generate_Word +2026-03-18 18:03:54.9303|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017096 +2026-03-18 18:03:54.9303|INFO|DocLog|Dokument über API erstellt +2026-03-18 18:03:54.9303|INFO|APIDocLog|Dokument return to sender +2026-03-18 18:03:54.9343|DEBUG|OnDoc| +2026-03-18 18:03:54.9343|DEBUG|OnDoc| +2026-03-18 18:03:54.9343|DEBUG|OnDoc| +2026-03-18 18:03:54.9343|DEBUG|OnDoc| +2026-03-18 18:03:54.9343|DEBUG|OnDoc| +2026-03-18 18:03:54.9343|DEBUG|OnDoc| +2026-03-18 18:04:02.8641|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 18:04:03.0592|INFO|APIDocLog|Start CreateDoc +2026-03-18 18:04:03.1498|INFO|APIDocLog|Input JSON +2026-03-18 18:04:03.1600|DEBUG|OnDoc|Start GenDoc +2026-03-18 18:04:03.1600|DEBUG|OnDoc| +2026-03-18 18:04:03.1600|DEBUG|OnDoc| +2026-03-18 18:04:03.1600|DEBUG|OnDoc| +2026-03-18 18:04:03.1600|DEBUG|OnDoc| +2026-03-18 18:04:03.1600|DEBUG|OnDoc| +2026-03-18 18:04:03.1600|DEBUG|OnDoc| +2026-03-18 18:04:03.1600|DEBUG|OnDoc| +2026-03-18 18:04:03.1600|DEBUG|OnDoc| +2026-03-18 18:04:03.1600|DEBUG|OnDoc| +2026-03-18 18:04:03.1600|DEBUG|OnDoc| +2026-03-18 18:04:03.1600|DEBUG|OnDoc| +2026-03-18 18:04:03.1685|DEBUG|OnDoc| +2026-03-18 18:04:03.1685|DEBUG|OnDoc| +2026-03-18 18:04:03.1685|DEBUG|OnDoc| +2026-03-18 18:04:03.1685|DEBUG|OnDoc| +2026-03-18 18:04:03.1685|DEBUG|OnDoc| +2026-03-18 18:04:03.1685|DEBUG|OnDoc| +2026-03-18 18:04:03.1685|DEBUG|OnDoc| +2026-03-18 18:04:03.1685|DEBUG|OnDoc| +2026-03-18 18:04:03.1685|DEBUG|OnDoc| +2026-03-18 18:04:03.1685|DEBUG|OnDoc| +2026-03-18 18:04:03.1685|DEBUG|OnDoc| +2026-03-18 18:04:03.1685|DEBUG|OnDoc| +2026-03-18 18:04:03.1685|DEBUG|OnDoc| +2026-03-18 18:04:03.1685|DEBUG|OnDoc| +2026-03-18 18:04:03.1853|DEBUG|OnDoc| +2026-03-18 18:04:03.1853|DEBUG|OnDoc| +2026-03-18 18:04:03.1853|DEBUG|OnDoc| +2026-03-18 18:04:03.1853|DEBUG|OnDoc| +2026-03-18 18:04:03.1853|DEBUG|OnDoc| +2026-03-18 18:04:03.1853|DEBUG|OnDoc| +2026-03-18 18:04:03.1853|DEBUG|OnDoc| +2026-03-18 18:04:03.1853|DEBUG|OnDoc| +2026-03-18 18:04:03.1853|DEBUG|OnDoc| +2026-03-18 18:04:03.2209|DEBUG|OnDoc| +2026-03-18 18:04:03.2209|DEBUG|OnDoc| +2026-03-18 18:04:03.3268|DEBUG|OnDoc| +2026-03-18 18:04:03.3268|DEBUG|OnDoc| +2026-03-18 18:04:03.3499|DEBUG|OnDoc| +2026-03-18 18:04:03.3499|DEBUG|OnDoc| +2026-03-18 18:04:03.3499|DEBUG|OnDoc| +2026-03-18 18:04:03.3499|DEBUG|OnDoc| +2026-03-18 18:04:03.4420|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 18:04:03.4420|DEBUG|OnDoc| +2026-03-18 18:04:03.4583|DEBUG|OnDoc| +2026-03-18 18:04:03.4583|DEBUG|OnDoc| +2026-03-18 18:04:03.4583|DEBUG|OnDoc| +2026-03-18 18:04:03.4583|DEBUG|OnDoc| +2026-03-18 18:04:03.4699|DEBUG|OnDoc| +2026-03-18 18:04:03.4699|DEBUG|OnDoc| +2026-03-18 18:04:03.4699|DEBUG|OnDoc| +2026-03-18 18:04:03.4699|DEBUG|OnDoc|Generate_Word +2026-03-18 18:04:03.4950|DEBUG|OnDoc|Word2013 +2026-03-18 18:04:03.4985|DEBUG|OnDoc|Word2013 +2026-03-18 18:04:05.2573|DEBUG|OnDoc|Generate_Word +2026-03-18 18:04:05.2698|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017108 +2026-03-18 18:04:05.2698|INFO|DocLog|Dokument über API erstellt +2026-03-18 18:04:05.2698|INFO|APIDocLog|Dokument return to sender +2026-03-18 18:04:05.2698|DEBUG|OnDoc| +2026-03-18 18:04:05.2809|DEBUG|OnDoc| +2026-03-18 18:04:05.2809|DEBUG|OnDoc| +2026-03-18 18:04:05.2809|DEBUG|OnDoc| +2026-03-18 18:04:05.2809|DEBUG|OnDoc| +2026-03-18 18:04:05.2809|DEBUG|OnDoc| +2026-03-18 18:05:34.3081|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 18:05:34.5341|INFO|APIDocLog|Start CreateDoc +2026-03-18 18:05:34.6457|INFO|APIDocLog|Input JSON +2026-03-18 18:05:34.6572|DEBUG|OnDoc|Start GenDoc +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6572|DEBUG|OnDoc| +2026-03-18 18:05:34.6685|DEBUG|OnDoc| +2026-03-18 18:05:34.6685|DEBUG|OnDoc| +2026-03-18 18:05:34.6685|DEBUG|OnDoc| +2026-03-18 18:05:34.6685|DEBUG|OnDoc| +2026-03-18 18:05:34.6685|DEBUG|OnDoc| +2026-03-18 18:05:34.6685|DEBUG|OnDoc| +2026-03-18 18:05:34.6685|DEBUG|OnDoc| +2026-03-18 18:05:34.6685|DEBUG|OnDoc| +2026-03-18 18:05:34.6685|DEBUG|OnDoc| +2026-03-18 18:05:34.6685|DEBUG|OnDoc| +2026-03-18 18:05:34.6685|DEBUG|OnDoc| +2026-03-18 18:05:34.6685|DEBUG|OnDoc| +2026-03-18 18:05:34.6685|DEBUG|OnDoc| +2026-03-18 18:05:34.6685|DEBUG|OnDoc| +2026-03-18 18:05:34.7017|DEBUG|OnDoc| +2026-03-18 18:05:34.7017|DEBUG|OnDoc| +2026-03-18 18:05:34.8099|DEBUG|OnDoc| +2026-03-18 18:05:34.8099|DEBUG|OnDoc| +2026-03-18 18:05:34.8099|DEBUG|OnDoc| +2026-03-18 18:05:34.8244|DEBUG|OnDoc| +2026-03-18 18:05:34.8244|DEBUG|OnDoc| +2026-03-18 18:05:34.8244|DEBUG|OnDoc| +2026-03-18 18:05:34.9302|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 18:05:34.9302|DEBUG|OnDoc| +2026-03-18 18:05:34.9403|DEBUG|OnDoc| +2026-03-18 18:05:34.9403|DEBUG|OnDoc| +2026-03-18 18:05:34.9403|DEBUG|OnDoc| +2026-03-18 18:05:34.9403|DEBUG|OnDoc| +2026-03-18 18:05:34.9522|DEBUG|OnDoc| +2026-03-18 18:05:34.9522|DEBUG|OnDoc| +2026-03-18 18:05:34.9522|DEBUG|OnDoc| +2026-03-18 18:05:34.9522|DEBUG|OnDoc|Generate_Word +2026-03-18 18:05:34.9723|DEBUG|OnDoc|Word2013 +2026-03-18 18:05:34.9723|DEBUG|OnDoc|Word2013 +2026-03-18 18:05:36.7153|DEBUG|OnDoc|Generate_Word +2026-03-18 18:05:36.7153|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017113 +2026-03-18 18:05:36.7153|INFO|DocLog|Dokument über API erstellt +2026-03-18 18:05:36.7153|INFO|APIDocLog|Dokument return to sender +2026-03-18 18:05:36.7153|DEBUG|OnDoc| +2026-03-18 18:05:36.7332|DEBUG|OnDoc| +2026-03-18 18:05:36.7332|DEBUG|OnDoc| +2026-03-18 18:05:36.7332|DEBUG|OnDoc| +2026-03-18 18:05:36.7332|DEBUG|OnDoc| +2026-03-18 18:05:36.7332|DEBUG|OnDoc| +2026-03-18 18:05:55.0050|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 18:05:55.2567|INFO|APIDocLog|Start CreateDoc +2026-03-18 18:05:55.3775|INFO|APIDocLog|Input JSON +2026-03-18 18:05:55.3893|DEBUG|OnDoc|Start GenDoc +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.3893|DEBUG|OnDoc| +2026-03-18 18:05:55.4039|DEBUG|OnDoc| +2026-03-18 18:05:55.4039|DEBUG|OnDoc| +2026-03-18 18:05:55.4039|DEBUG|OnDoc| +2026-03-18 18:05:55.4039|DEBUG|OnDoc| +2026-03-18 18:05:55.4039|DEBUG|OnDoc| +2026-03-18 18:05:55.4039|DEBUG|OnDoc| +2026-03-18 18:05:55.4039|DEBUG|OnDoc| +2026-03-18 18:05:55.4039|DEBUG|OnDoc| +2026-03-18 18:05:55.4039|DEBUG|OnDoc| +2026-03-18 18:05:55.4039|DEBUG|OnDoc| +2026-03-18 18:05:55.4039|DEBUG|OnDoc| +2026-03-18 18:05:55.4039|DEBUG|OnDoc| +2026-03-18 18:05:55.4039|DEBUG|OnDoc| +2026-03-18 18:05:55.4039|DEBUG|OnDoc| +2026-03-18 18:05:55.4276|DEBUG|OnDoc| +2026-03-18 18:05:55.4276|DEBUG|OnDoc| +2026-03-18 18:05:55.5566|DEBUG|OnDoc| +2026-03-18 18:05:55.5566|DEBUG|OnDoc| +2026-03-18 18:05:55.5712|DEBUG|OnDoc| +2026-03-18 18:05:55.5712|DEBUG|OnDoc| +2026-03-18 18:05:55.5712|DEBUG|OnDoc| +2026-03-18 18:05:55.5712|DEBUG|OnDoc| +2026-03-18 18:05:55.7016|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 18:05:55.7016|DEBUG|OnDoc| +2026-03-18 18:05:55.7016|DEBUG|OnDoc| +2026-03-18 18:05:55.7016|DEBUG|OnDoc| +2026-03-18 18:05:55.7154|DEBUG|OnDoc| +2026-03-18 18:05:55.7154|DEBUG|OnDoc| +2026-03-18 18:05:55.7154|DEBUG|OnDoc| +2026-03-18 18:05:55.7154|DEBUG|OnDoc| +2026-03-18 18:05:55.7387|DEBUG|OnDoc| +2026-03-18 18:05:55.7387|DEBUG|OnDoc|Generate_Word +2026-03-18 18:05:55.7545|DEBUG|OnDoc|Word2013 +2026-03-18 18:05:55.7545|DEBUG|OnDoc|Word2013 +2026-03-18 18:05:57.5107|DEBUG|OnDoc|Generate_Word +2026-03-18 18:05:57.5224|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017129 +2026-03-18 18:05:57.5224|INFO|DocLog|Dokument über API erstellt +2026-03-18 18:05:57.5224|INFO|APIDocLog|Dokument return to sender +2026-03-18 18:05:57.5224|DEBUG|OnDoc| +2026-03-18 18:05:57.5359|DEBUG|OnDoc| +2026-03-18 18:05:57.5359|DEBUG|OnDoc| +2026-03-18 18:05:57.5359|DEBUG|OnDoc| +2026-03-18 18:05:57.5359|DEBUG|OnDoc| +2026-03-18 18:05:57.5359|DEBUG|OnDoc| +2026-03-18 18:06:38.8856|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 18:06:39.1007|INFO|APIDocLog|Start CreateDoc +2026-03-18 18:06:39.2060|INFO|APIDocLog|Input JSON +2026-03-18 18:06:39.2185|DEBUG|OnDoc|Start GenDoc +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2185|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2311|DEBUG|OnDoc| +2026-03-18 18:06:39.2591|DEBUG|OnDoc| +2026-03-18 18:06:39.2626|DEBUG|OnDoc| +2026-03-18 18:06:39.3755|DEBUG|OnDoc| +2026-03-18 18:06:39.3755|DEBUG|OnDoc| +2026-03-18 18:06:39.3875|DEBUG|OnDoc| +2026-03-18 18:06:39.3875|DEBUG|OnDoc| +2026-03-18 18:06:39.3875|DEBUG|OnDoc| +2026-03-18 18:06:39.3875|DEBUG|OnDoc| +2026-03-18 18:06:39.4917|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 18:06:39.4917|DEBUG|OnDoc| +2026-03-18 18:06:39.4998|DEBUG|OnDoc| +2026-03-18 18:06:39.4998|DEBUG|OnDoc| +2026-03-18 18:06:39.4998|DEBUG|OnDoc| +2026-03-18 18:06:39.4998|DEBUG|OnDoc| +2026-03-18 18:06:39.4998|DEBUG|OnDoc| +2026-03-18 18:06:39.4998|DEBUG|OnDoc| +2026-03-18 18:06:39.4998|DEBUG|OnDoc| +2026-03-18 18:06:39.4998|DEBUG|OnDoc|Generate_Word +2026-03-18 18:06:39.5174|DEBUG|OnDoc|Word2013 +2026-03-18 18:06:39.5174|DEBUG|OnDoc|Word2013 +2026-03-18 18:06:41.3031|DEBUG|OnDoc|Generate_Word +2026-03-18 18:06:41.3149|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017137 +2026-03-18 18:06:41.3149|INFO|DocLog|Dokument über API erstellt +2026-03-18 18:06:41.3149|INFO|APIDocLog|Dokument return to sender +2026-03-18 18:06:41.3149|DEBUG|OnDoc| +2026-03-18 18:06:41.3149|DEBUG|OnDoc| +2026-03-18 18:06:41.3149|DEBUG|OnDoc| +2026-03-18 18:06:41.3149|DEBUG|OnDoc| +2026-03-18 18:06:41.3149|DEBUG|OnDoc| +2026-03-18 18:06:41.3149|DEBUG|OnDoc| +2026-03-18 18:08:40.1046|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 18:08:40.3812|INFO|APIDocLog|Start CreateDoc +2026-03-18 18:08:40.4953|INFO|APIDocLog|Input JSON +2026-03-18 18:08:40.5054|DEBUG|OnDoc|Start GenDoc +2026-03-18 18:08:40.5054|DEBUG|OnDoc| +2026-03-18 18:08:40.5054|DEBUG|OnDoc| +2026-03-18 18:08:40.5054|DEBUG|OnDoc| +2026-03-18 18:08:40.5054|DEBUG|OnDoc| +2026-03-18 18:08:40.5054|DEBUG|OnDoc| +2026-03-18 18:08:40.5054|DEBUG|OnDoc| +2026-03-18 18:08:40.5054|DEBUG|OnDoc| +2026-03-18 18:08:40.5054|DEBUG|OnDoc| +2026-03-18 18:08:40.5054|DEBUG|OnDoc| +2026-03-18 18:08:40.5054|DEBUG|OnDoc| +2026-03-18 18:08:40.5054|DEBUG|OnDoc| +2026-03-18 18:08:40.5054|DEBUG|OnDoc| +2026-03-18 18:08:40.5054|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5124|DEBUG|OnDoc| +2026-03-18 18:08:40.5416|DEBUG|OnDoc| +2026-03-18 18:08:40.5441|DEBUG|OnDoc| +2026-03-18 18:08:40.6675|DEBUG|OnDoc| +2026-03-18 18:08:40.6695|DEBUG|OnDoc| +2026-03-18 18:08:40.6695|DEBUG|OnDoc| +2026-03-18 18:08:40.6846|DEBUG|OnDoc| +2026-03-18 18:08:40.6846|DEBUG|OnDoc| +2026-03-18 18:08:40.6846|DEBUG|OnDoc| +2026-03-18 18:08:40.8150|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 18:08:40.8150|DEBUG|OnDoc| +2026-03-18 18:08:40.8150|DEBUG|OnDoc| +2026-03-18 18:08:40.8150|DEBUG|OnDoc| +2026-03-18 18:08:40.8150|DEBUG|OnDoc| +2026-03-18 18:08:40.8150|DEBUG|OnDoc| +2026-03-18 18:08:40.8280|DEBUG|OnDoc| +2026-03-18 18:08:40.8280|DEBUG|OnDoc| +2026-03-18 18:08:40.8280|DEBUG|OnDoc| +2026-03-18 18:08:40.8280|DEBUG|OnDoc|Generate_Word +2026-03-18 18:08:40.8449|DEBUG|OnDoc|Word2013 +2026-03-18 18:08:40.8449|DEBUG|OnDoc|Word2013 +2026-03-18 18:08:42.8176|DEBUG|OnDoc|Generate_Word +2026-03-18 18:08:42.8317|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017145 +2026-03-18 18:08:42.8317|INFO|DocLog|Dokument über API erstellt +2026-03-18 18:08:42.8317|INFO|APIDocLog|Dokument return to sender +2026-03-18 18:08:42.8317|DEBUG|OnDoc| +2026-03-18 18:08:42.8448|DEBUG|OnDoc| +2026-03-18 18:08:42.8448|DEBUG|OnDoc| +2026-03-18 18:08:42.8448|DEBUG|OnDoc| +2026-03-18 18:08:42.8448|DEBUG|OnDoc| +2026-03-18 18:08:42.8448|DEBUG|OnDoc| +2026-03-18 18:08:58.7873|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 18:08:59.0421|INFO|APIDocLog|Start CreateDoc +2026-03-18 18:08:59.1604|INFO|APIDocLog|Input JSON +2026-03-18 18:08:59.1703|DEBUG|OnDoc|Start GenDoc +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1703|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.1841|DEBUG|OnDoc| +2026-03-18 18:08:59.2008|DEBUG|OnDoc| +2026-03-18 18:08:59.2008|DEBUG|OnDoc| +2026-03-18 18:08:59.2008|DEBUG|OnDoc| +2026-03-18 18:08:59.2153|DEBUG|OnDoc| +2026-03-18 18:08:59.3409|DEBUG|OnDoc| +2026-03-18 18:08:59.3409|DEBUG|OnDoc| +2026-03-18 18:08:59.3564|DEBUG|OnDoc| +2026-03-18 18:08:59.3564|DEBUG|OnDoc| +2026-03-18 18:08:59.3564|DEBUG|OnDoc| +2026-03-18 18:08:59.3564|DEBUG|OnDoc| +2026-03-18 18:08:59.4918|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 18:08:59.4918|DEBUG|OnDoc| +2026-03-18 18:08:59.5042|DEBUG|OnDoc| +2026-03-18 18:08:59.5042|DEBUG|OnDoc| +2026-03-18 18:08:59.5042|DEBUG|OnDoc| +2026-03-18 18:08:59.5042|DEBUG|OnDoc| +2026-03-18 18:08:59.5153|DEBUG|OnDoc| +2026-03-18 18:08:59.5153|DEBUG|OnDoc| +2026-03-18 18:08:59.5153|DEBUG|OnDoc| +2026-03-18 18:08:59.5153|DEBUG|OnDoc|Generate_Word +2026-03-18 18:08:59.5394|DEBUG|OnDoc|Word2013 +2026-03-18 18:08:59.5394|DEBUG|OnDoc|Word2013 +2026-03-18 18:09:01.5656|DEBUG|OnDoc|Generate_Word +2026-03-18 18:09:01.5787|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017150 +2026-03-18 18:09:01.5787|INFO|DocLog|Dokument über API erstellt +2026-03-18 18:09:01.5787|INFO|APIDocLog|Dokument return to sender +2026-03-18 18:09:01.5787|DEBUG|OnDoc| +2026-03-18 18:09:01.5922|DEBUG|OnDoc| +2026-03-18 18:09:01.5922|DEBUG|OnDoc| +2026-03-18 18:09:01.5922|DEBUG|OnDoc| +2026-03-18 18:09:01.5922|DEBUG|OnDoc| +2026-03-18 18:09:01.5922|DEBUG|OnDoc| +2026-03-18 20:24:47.4048|DEBUG|OnDoc| +2026-03-18 20:24:47.4941|DEBUG|OnDoc| +2026-03-18 20:24:47.4976|DEBUG|OnDoc| +2026-03-18 20:24:47.4976|DEBUG|OnDoc| +2026-03-18 20:25:00.1994|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:25:00.4262|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:25:00.5165|INFO|APIDocLog|Input JSON +2026-03-18 20:25:00.5362|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:25:00.5362|DEBUG|OnDoc| +2026-03-18 20:25:00.5362|DEBUG|OnDoc| +2026-03-18 20:25:00.5362|DEBUG|OnDoc| +2026-03-18 20:25:00.5362|DEBUG|OnDoc| +2026-03-18 20:25:00.5362|DEBUG|OnDoc| +2026-03-18 20:25:00.5362|DEBUG|OnDoc| +2026-03-18 20:25:00.5441|DEBUG|OnDoc| +2026-03-18 20:25:00.5441|DEBUG|OnDoc| +2026-03-18 20:25:00.5441|DEBUG|OnDoc| +2026-03-18 20:25:00.5441|DEBUG|OnDoc| +2026-03-18 20:25:00.5441|DEBUG|OnDoc| +2026-03-18 20:25:00.5441|DEBUG|OnDoc| +2026-03-18 20:25:00.5441|DEBUG|OnDoc| +2026-03-18 20:25:00.5441|DEBUG|OnDoc| +2026-03-18 20:25:00.5441|DEBUG|OnDoc| +2026-03-18 20:25:00.5441|DEBUG|OnDoc| +2026-03-18 20:25:00.5441|DEBUG|OnDoc| +2026-03-18 20:25:00.5441|DEBUG|OnDoc| +2026-03-18 20:25:00.5441|DEBUG|OnDoc| +2026-03-18 20:25:00.5441|DEBUG|OnDoc| +2026-03-18 20:25:00.5652|DEBUG|OnDoc| +2026-03-18 20:25:00.5652|DEBUG|OnDoc| +2026-03-18 20:25:00.5652|DEBUG|OnDoc| +2026-03-18 20:25:00.5652|DEBUG|OnDoc| +2026-03-18 20:25:00.5652|DEBUG|OnDoc| +2026-03-18 20:25:00.5652|DEBUG|OnDoc| +2026-03-18 20:25:00.5652|DEBUG|OnDoc| +2026-03-18 20:25:00.5652|DEBUG|OnDoc| +2026-03-18 20:25:00.5652|DEBUG|OnDoc| +2026-03-18 20:25:00.5652|DEBUG|OnDoc| +2026-03-18 20:25:00.5652|DEBUG|OnDoc| +2026-03-18 20:25:00.5652|DEBUG|OnDoc| +2026-03-18 20:25:00.5748|DEBUG|OnDoc| +2026-03-18 20:25:00.5748|DEBUG|OnDoc| +2026-03-18 20:25:00.6060|DEBUG|OnDoc| +2026-03-18 20:25:00.6060|DEBUG|OnDoc| +2026-03-18 20:25:00.6536|DEBUG|OnDoc| +2026-03-18 20:25:00.6536|DEBUG|OnDoc| +2026-03-18 20:25:00.6870|DEBUG|OnDoc| +2026-03-18 20:25:00.6870|DEBUG|OnDoc| +2026-03-18 20:25:00.6870|DEBUG|OnDoc| +2026-03-18 20:25:00.6870|DEBUG|OnDoc| +2026-03-18 20:25:00.7117|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:25:00.7153|DEBUG|OnDoc| +2026-03-18 20:25:00.7153|DEBUG|OnDoc| +2026-03-18 20:25:00.7153|DEBUG|OnDoc| +2026-03-18 20:25:00.7153|DEBUG|OnDoc| +2026-03-18 20:25:00.7153|DEBUG|OnDoc| +2026-03-18 20:25:00.7153|DEBUG|OnDoc| +2026-03-18 20:25:00.7313|DEBUG|OnDoc| +2026-03-18 20:25:00.7313|DEBUG|OnDoc| +2026-03-18 20:25:00.7313|DEBUG|OnDoc|Generate_Word +2026-03-18 20:25:01.2583|DEBUG|OnDoc|Word2013 +2026-03-18 20:25:01.2668|DEBUG|OnDoc|Word2013 +2026-03-18 20:25:07.0802|DEBUG|OnDoc|Generate_Word +2026-03-18 20:25:07.1225|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017161 +2026-03-18 20:25:07.1225|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:25:07.1225|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:25:07.1225|DEBUG|OnDoc| +2026-03-18 20:25:07.1225|DEBUG|OnDoc| +2026-03-18 20:25:07.1225|DEBUG|OnDoc| +2026-03-18 20:25:07.1225|DEBUG|OnDoc| +2026-03-18 20:25:07.1225|DEBUG|OnDoc| +2026-03-18 20:25:07.1225|DEBUG|OnDoc| +2026-03-18 20:25:14.9148|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:25:14.9586|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:25:14.9827|INFO|APIDocLog|Input JSON +2026-03-18 20:25:14.9827|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:25:14.9827|DEBUG|OnDoc| +2026-03-18 20:25:14.9827|DEBUG|OnDoc| +2026-03-18 20:25:14.9827|DEBUG|OnDoc| +2026-03-18 20:25:14.9827|DEBUG|OnDoc| +2026-03-18 20:25:14.9827|DEBUG|OnDoc| +2026-03-18 20:25:14.9827|DEBUG|OnDoc| +2026-03-18 20:25:14.9827|DEBUG|OnDoc| +2026-03-18 20:25:14.9827|DEBUG|OnDoc| +2026-03-18 20:25:14.9827|DEBUG|OnDoc| +2026-03-18 20:25:14.9827|DEBUG|OnDoc| +2026-03-18 20:25:14.9827|DEBUG|OnDoc| +2026-03-18 20:25:14.9968|DEBUG|OnDoc| +2026-03-18 20:25:14.9968|DEBUG|OnDoc| +2026-03-18 20:25:14.9968|DEBUG|OnDoc| +2026-03-18 20:25:14.9968|DEBUG|OnDoc| +2026-03-18 20:25:14.9968|DEBUG|OnDoc| +2026-03-18 20:25:14.9968|DEBUG|OnDoc| +2026-03-18 20:25:14.9968|DEBUG|OnDoc| +2026-03-18 20:25:14.9968|DEBUG|OnDoc| +2026-03-18 20:25:14.9968|DEBUG|OnDoc| +2026-03-18 20:25:14.9968|DEBUG|OnDoc| +2026-03-18 20:25:14.9968|DEBUG|OnDoc| +2026-03-18 20:25:14.9968|DEBUG|OnDoc| +2026-03-18 20:25:14.9968|DEBUG|OnDoc| +2026-03-18 20:25:14.9968|DEBUG|OnDoc| +2026-03-18 20:25:15.0128|DEBUG|OnDoc| +2026-03-18 20:25:15.0128|DEBUG|OnDoc| +2026-03-18 20:25:15.0128|DEBUG|OnDoc| +2026-03-18 20:25:15.0128|DEBUG|OnDoc| +2026-03-18 20:25:15.0128|DEBUG|OnDoc| +2026-03-18 20:25:15.0128|DEBUG|OnDoc| +2026-03-18 20:25:15.0128|DEBUG|OnDoc| +2026-03-18 20:25:15.0128|DEBUG|OnDoc| +2026-03-18 20:25:15.0128|DEBUG|OnDoc| +2026-03-18 20:25:15.0338|DEBUG|OnDoc| +2026-03-18 20:25:15.0338|DEBUG|OnDoc| +2026-03-18 20:25:15.0558|DEBUG|OnDoc| +2026-03-18 20:25:15.0558|DEBUG|OnDoc| +2026-03-18 20:25:15.0684|DEBUG|OnDoc| +2026-03-18 20:25:15.0684|DEBUG|OnDoc| +2026-03-18 20:25:15.0684|DEBUG|OnDoc| +2026-03-18 20:25:15.0684|DEBUG|OnDoc| +2026-03-18 20:25:15.0818|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:25:15.0818|DEBUG|OnDoc| +2026-03-18 20:25:15.0909|DEBUG|OnDoc| +2026-03-18 20:25:15.0909|DEBUG|OnDoc| +2026-03-18 20:25:15.0909|DEBUG|OnDoc| +2026-03-18 20:25:15.0909|DEBUG|OnDoc| +2026-03-18 20:25:15.0909|DEBUG|OnDoc| +2026-03-18 20:25:15.0909|DEBUG|OnDoc| +2026-03-18 20:25:15.0909|DEBUG|OnDoc| +2026-03-18 20:25:15.0909|DEBUG|OnDoc|Generate_Word +2026-03-18 20:25:15.1126|DEBUG|OnDoc|Word2013 +2026-03-18 20:25:15.1126|DEBUG|OnDoc|Word2013 +2026-03-18 20:25:45.0068|DEBUG|OnDoc|Generate_Word +2026-03-18 20:25:45.0491|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017176 +2026-03-18 20:25:45.0491|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:25:45.0491|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:25:45.0594|DEBUG|OnDoc| +2026-03-18 20:25:45.0594|DEBUG|OnDoc| +2026-03-18 20:25:45.0594|DEBUG|OnDoc| +2026-03-18 20:25:45.0594|DEBUG|OnDoc| +2026-03-18 20:25:45.0750|DEBUG|OnDoc| +2026-03-18 20:25:45.0750|DEBUG|OnDoc| +2026-03-18 20:25:56.3613|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:25:56.4438|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:25:56.4623|INFO|APIDocLog|Input JSON +2026-03-18 20:25:56.4656|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4656|DEBUG|OnDoc| +2026-03-18 20:25:56.4814|DEBUG|OnDoc| +2026-03-18 20:25:56.4814|DEBUG|OnDoc| +2026-03-18 20:25:56.4814|DEBUG|OnDoc| +2026-03-18 20:25:56.4814|DEBUG|OnDoc| +2026-03-18 20:25:56.4814|DEBUG|OnDoc| +2026-03-18 20:25:56.4814|DEBUG|OnDoc| +2026-03-18 20:25:56.4814|DEBUG|OnDoc| +2026-03-18 20:25:56.4814|DEBUG|OnDoc| +2026-03-18 20:25:56.4814|DEBUG|OnDoc| +2026-03-18 20:25:56.4984|DEBUG|OnDoc| +2026-03-18 20:25:56.4984|DEBUG|OnDoc| +2026-03-18 20:25:56.5214|DEBUG|OnDoc| +2026-03-18 20:25:56.5214|DEBUG|OnDoc| +2026-03-18 20:25:56.5311|DEBUG|OnDoc| +2026-03-18 20:25:56.5311|DEBUG|OnDoc| +2026-03-18 20:25:56.5311|DEBUG|OnDoc| +2026-03-18 20:25:56.5311|DEBUG|OnDoc| +2026-03-18 20:25:56.5490|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:25:56.5490|DEBUG|OnDoc| +2026-03-18 20:25:56.5490|DEBUG|OnDoc| +2026-03-18 20:25:56.5490|DEBUG|OnDoc| +2026-03-18 20:25:56.5490|DEBUG|OnDoc| +2026-03-18 20:25:56.5590|DEBUG|OnDoc| +2026-03-18 20:25:56.5590|DEBUG|OnDoc| +2026-03-18 20:25:56.5590|DEBUG|OnDoc| +2026-03-18 20:25:56.5590|DEBUG|OnDoc| +2026-03-18 20:25:56.5590|DEBUG|OnDoc|Generate_Word +2026-03-18 20:25:56.5770|DEBUG|OnDoc|Word2013 +2026-03-18 20:25:56.5770|DEBUG|OnDoc|Word2013 +2026-03-18 20:28:20.5888|DEBUG|OnDoc|Generate_Word +2026-03-18 20:28:20.6292|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017184 +2026-03-18 20:28:20.6292|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:28:20.6292|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:28:20.6292|DEBUG|OnDoc| +2026-03-18 20:28:20.6480|DEBUG|OnDoc| +2026-03-18 20:28:20.6480|DEBUG|OnDoc| +2026-03-18 20:28:20.6480|DEBUG|OnDoc| +2026-03-18 20:28:20.6480|DEBUG|OnDoc| +2026-03-18 20:28:20.6480|DEBUG|OnDoc| +2026-03-18 20:32:59.3190|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:32:59.3929|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:32:59.4129|INFO|APIDocLog|Input JSON +2026-03-18 20:32:59.4129|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4129|DEBUG|OnDoc| +2026-03-18 20:32:59.4277|DEBUG|OnDoc| +2026-03-18 20:32:59.4277|DEBUG|OnDoc| +2026-03-18 20:32:59.4277|DEBUG|OnDoc| +2026-03-18 20:32:59.4277|DEBUG|OnDoc| +2026-03-18 20:32:59.4277|DEBUG|OnDoc| +2026-03-18 20:32:59.4277|DEBUG|OnDoc| +2026-03-18 20:32:59.4277|DEBUG|OnDoc| +2026-03-18 20:32:59.4277|DEBUG|OnDoc| +2026-03-18 20:32:59.4277|DEBUG|OnDoc| +2026-03-18 20:32:59.4277|DEBUG|OnDoc| +2026-03-18 20:32:59.4277|DEBUG|OnDoc| +2026-03-18 20:32:59.4537|DEBUG|OnDoc| +2026-03-18 20:32:59.4537|DEBUG|OnDoc| +2026-03-18 20:32:59.4742|DEBUG|OnDoc| +2026-03-18 20:32:59.4742|DEBUG|OnDoc| +2026-03-18 20:32:59.4742|DEBUG|OnDoc| +2026-03-18 20:32:59.4742|DEBUG|OnDoc| +2026-03-18 20:32:59.4742|DEBUG|OnDoc| +2026-03-18 20:32:59.4742|DEBUG|OnDoc| +2026-03-18 20:32:59.4987|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:32:59.4987|DEBUG|OnDoc| +2026-03-18 20:32:59.5052|DEBUG|OnDoc| +2026-03-18 20:32:59.5052|DEBUG|OnDoc| +2026-03-18 20:32:59.5052|DEBUG|OnDoc| +2026-03-18 20:32:59.5052|DEBUG|OnDoc| +2026-03-18 20:32:59.5052|DEBUG|OnDoc| +2026-03-18 20:32:59.5052|DEBUG|OnDoc| +2026-03-18 20:32:59.5052|DEBUG|OnDoc| +2026-03-18 20:32:59.5052|DEBUG|OnDoc|Generate_Word +2026-03-18 20:32:59.5262|DEBUG|OnDoc|Word2013 +2026-03-18 20:32:59.5262|DEBUG|OnDoc|Word2013 +2026-03-18 20:33:22.5423|DEBUG|OnDoc|Generate_Word +2026-03-18 20:33:22.5802|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017192 +2026-03-18 20:33:22.5802|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:33:22.5802|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:33:22.5825|DEBUG|OnDoc| +2026-03-18 20:33:22.5825|DEBUG|OnDoc| +2026-03-18 20:33:22.5825|DEBUG|OnDoc| +2026-03-18 20:33:22.5825|DEBUG|OnDoc| +2026-03-18 20:33:22.5825|DEBUG|OnDoc| +2026-03-18 20:33:22.5825|DEBUG|OnDoc| +2026-03-18 20:33:50.4303|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:33:50.5057|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:33:50.5328|INFO|APIDocLog|Input JSON +2026-03-18 20:33:50.5358|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5358|DEBUG|OnDoc| +2026-03-18 20:33:50.5528|DEBUG|OnDoc| +2026-03-18 20:33:50.5528|DEBUG|OnDoc| +2026-03-18 20:33:50.5528|DEBUG|OnDoc| +2026-03-18 20:33:50.5528|DEBUG|OnDoc| +2026-03-18 20:33:50.5528|DEBUG|OnDoc| +2026-03-18 20:33:50.5528|DEBUG|OnDoc| +2026-03-18 20:33:50.5528|DEBUG|OnDoc| +2026-03-18 20:33:50.5528|DEBUG|OnDoc| +2026-03-18 20:33:50.5528|DEBUG|OnDoc| +2026-03-18 20:33:50.5528|DEBUG|OnDoc| +2026-03-18 20:33:50.5528|DEBUG|OnDoc| +2026-03-18 20:33:50.5528|DEBUG|OnDoc| +2026-03-18 20:33:50.5528|DEBUG|OnDoc| +2026-03-18 20:33:50.5528|DEBUG|OnDoc| +2026-03-18 20:33:50.5833|DEBUG|OnDoc| +2026-03-18 20:33:50.5833|DEBUG|OnDoc| +2026-03-18 20:33:50.6089|DEBUG|OnDoc| +2026-03-18 20:33:50.6089|DEBUG|OnDoc| +2026-03-18 20:33:50.6279|DEBUG|OnDoc| +2026-03-18 20:33:50.6279|DEBUG|OnDoc| +2026-03-18 20:33:50.6279|DEBUG|OnDoc| +2026-03-18 20:33:50.6294|DEBUG|OnDoc| +2026-03-18 20:33:50.6294|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:33:50.6294|DEBUG|OnDoc| +2026-03-18 20:33:50.6490|DEBUG|OnDoc| +2026-03-18 20:33:50.6490|DEBUG|OnDoc| +2026-03-18 20:33:50.6490|DEBUG|OnDoc| +2026-03-18 20:33:50.6490|DEBUG|OnDoc| +2026-03-18 20:33:50.6490|DEBUG|OnDoc| +2026-03-18 20:33:50.6490|DEBUG|OnDoc| +2026-03-18 20:33:50.6490|DEBUG|OnDoc| +2026-03-18 20:33:50.6490|DEBUG|OnDoc|Generate_Word +2026-03-18 20:33:50.6670|DEBUG|OnDoc|Word2013 +2026-03-18 20:33:50.6670|DEBUG|OnDoc|Word2013 +2026-03-18 20:33:52.9261|DEBUG|OnDoc|Generate_Word +2026-03-18 20:33:52.9411|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017200 +2026-03-18 20:33:52.9421|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:33:52.9421|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:33:52.9421|DEBUG|OnDoc| +2026-03-18 20:33:52.9421|DEBUG|OnDoc| +2026-03-18 20:33:52.9421|DEBUG|OnDoc| +2026-03-18 20:33:52.9583|DEBUG|OnDoc| +2026-03-18 20:33:52.9583|DEBUG|OnDoc| +2026-03-18 20:33:52.9583|DEBUG|OnDoc| +2026-03-18 20:34:21.8514|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:34:21.9221|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:34:21.9426|INFO|APIDocLog|Input JSON +2026-03-18 20:34:21.9426|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9426|DEBUG|OnDoc| +2026-03-18 20:34:21.9579|DEBUG|OnDoc| +2026-03-18 20:34:21.9579|DEBUG|OnDoc| +2026-03-18 20:34:21.9579|DEBUG|OnDoc| +2026-03-18 20:34:21.9579|DEBUG|OnDoc| +2026-03-18 20:34:21.9579|DEBUG|OnDoc| +2026-03-18 20:34:21.9579|DEBUG|OnDoc| +2026-03-18 20:34:21.9579|DEBUG|OnDoc| +2026-03-18 20:34:21.9579|DEBUG|OnDoc| +2026-03-18 20:34:21.9730|DEBUG|OnDoc| +2026-03-18 20:34:21.9947|DEBUG|OnDoc| +2026-03-18 20:34:21.9947|DEBUG|OnDoc| +2026-03-18 20:34:22.0057|DEBUG|OnDoc| +2026-03-18 20:34:22.0057|DEBUG|OnDoc| +2026-03-18 20:34:22.0057|DEBUG|OnDoc| +2026-03-18 20:34:22.0057|DEBUG|OnDoc| +2026-03-18 20:34:22.0215|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:34:22.0215|DEBUG|OnDoc| +2026-03-18 20:34:22.0215|DEBUG|OnDoc| +2026-03-18 20:34:22.0215|DEBUG|OnDoc| +2026-03-18 20:34:22.0215|DEBUG|OnDoc| +2026-03-18 20:34:22.0215|DEBUG|OnDoc| +2026-03-18 20:34:22.0215|DEBUG|OnDoc| +2026-03-18 20:34:22.0215|DEBUG|OnDoc| +2026-03-18 20:34:22.0402|DEBUG|OnDoc| +2026-03-18 20:34:22.0402|DEBUG|OnDoc|Generate_Word +2026-03-18 20:34:22.0402|DEBUG|OnDoc|Word2013 +2026-03-18 20:34:22.0402|DEBUG|OnDoc|Word2013 +2026-03-18 20:34:24.1808|DEBUG|OnDoc|Generate_Word +2026-03-18 20:34:24.1930|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017211 +2026-03-18 20:34:24.1930|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:34:24.1930|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:34:24.1930|DEBUG|OnDoc| +2026-03-18 20:34:24.1930|DEBUG|OnDoc| +2026-03-18 20:34:24.1930|DEBUG|OnDoc| +2026-03-18 20:34:24.1930|DEBUG|OnDoc| +2026-03-18 20:34:24.1930|DEBUG|OnDoc| +2026-03-18 20:34:24.1930|DEBUG|OnDoc| +2026-03-18 20:34:41.9586|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:34:42.0061|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:34:42.0266|INFO|APIDocLog|Input JSON +2026-03-18 20:34:42.0266|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0266|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0360|DEBUG|OnDoc| +2026-03-18 20:34:42.0562|DEBUG|OnDoc| +2026-03-18 20:34:42.0562|DEBUG|OnDoc| +2026-03-18 20:34:42.0762|DEBUG|OnDoc| +2026-03-18 20:34:42.0762|DEBUG|OnDoc| +2026-03-18 20:34:42.0843|DEBUG|OnDoc| +2026-03-18 20:34:42.0843|DEBUG|OnDoc| +2026-03-18 20:34:42.0843|DEBUG|OnDoc| +2026-03-18 20:34:42.0843|DEBUG|OnDoc| +2026-03-18 20:34:42.0843|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:34:42.0983|DEBUG|OnDoc| +2026-03-18 20:34:42.0983|DEBUG|OnDoc| +2026-03-18 20:34:42.0983|DEBUG|OnDoc| +2026-03-18 20:34:42.0983|DEBUG|OnDoc| +2026-03-18 20:34:42.0983|DEBUG|OnDoc| +2026-03-18 20:34:42.1153|DEBUG|OnDoc| +2026-03-18 20:34:42.1153|DEBUG|OnDoc| +2026-03-18 20:34:42.1153|DEBUG|OnDoc| +2026-03-18 20:34:42.1153|DEBUG|OnDoc|Generate_Word +2026-03-18 20:34:42.1153|DEBUG|OnDoc|Word2013 +2026-03-18 20:34:42.1153|DEBUG|OnDoc|Word2013 +2026-03-18 20:34:44.7286|DEBUG|OnDoc|Generate_Word +2026-03-18 20:34:44.7396|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017226 +2026-03-18 20:34:44.7396|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:34:44.7396|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:34:44.7396|DEBUG|OnDoc| +2026-03-18 20:34:44.7396|DEBUG|OnDoc| +2026-03-18 20:34:44.7396|DEBUG|OnDoc| +2026-03-18 20:34:44.7396|DEBUG|OnDoc| +2026-03-18 20:34:44.7396|DEBUG|OnDoc| +2026-03-18 20:34:44.7396|DEBUG|OnDoc| +2026-03-18 20:35:08.1522|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:35:08.2253|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:35:08.2444|INFO|APIDocLog|Input JSON +2026-03-18 20:35:08.2444|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:35:08.2444|DEBUG|OnDoc| +2026-03-18 20:35:08.2444|DEBUG|OnDoc| +2026-03-18 20:35:08.2444|DEBUG|OnDoc| +2026-03-18 20:35:08.2444|DEBUG|OnDoc| +2026-03-18 20:35:08.2444|DEBUG|OnDoc| +2026-03-18 20:35:08.2444|DEBUG|OnDoc| +2026-03-18 20:35:08.2444|DEBUG|OnDoc| +2026-03-18 20:35:08.2444|DEBUG|OnDoc| +2026-03-18 20:35:08.2444|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2547|DEBUG|OnDoc| +2026-03-18 20:35:08.2794|DEBUG|OnDoc| +2026-03-18 20:35:08.2794|DEBUG|OnDoc| +2026-03-18 20:35:08.3000|DEBUG|OnDoc| +2026-03-18 20:35:08.3025|DEBUG|OnDoc| +2026-03-18 20:35:08.3025|DEBUG|OnDoc| +2026-03-18 20:35:08.3025|DEBUG|OnDoc| +2026-03-18 20:35:08.3025|DEBUG|OnDoc| +2026-03-18 20:35:08.3025|DEBUG|OnDoc| +2026-03-18 20:35:08.3275|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:35:08.3275|DEBUG|OnDoc| +2026-03-18 20:35:08.3335|DEBUG|OnDoc| +2026-03-18 20:35:08.3335|DEBUG|OnDoc| +2026-03-18 20:35:08.3335|DEBUG|OnDoc| +2026-03-18 20:35:08.3335|DEBUG|OnDoc| +2026-03-18 20:35:08.3335|DEBUG|OnDoc| +2026-03-18 20:35:08.3335|DEBUG|OnDoc| +2026-03-18 20:35:08.3482|DEBUG|OnDoc| +2026-03-18 20:35:08.3482|DEBUG|OnDoc|Generate_Word +2026-03-18 20:35:08.3482|DEBUG|OnDoc|Word2013 +2026-03-18 20:35:08.3482|DEBUG|OnDoc|Word2013 +2026-03-18 20:35:10.4395|DEBUG|OnDoc|Generate_Word +2026-03-18 20:35:10.4501|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017234 +2026-03-18 20:35:10.4501|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:35:10.4501|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:35:10.4501|DEBUG|OnDoc| +2026-03-18 20:35:10.4606|DEBUG|OnDoc| +2026-03-18 20:35:10.4606|DEBUG|OnDoc| +2026-03-18 20:35:10.4606|DEBUG|OnDoc| +2026-03-18 20:35:10.4606|DEBUG|OnDoc| +2026-03-18 20:35:10.4606|DEBUG|OnDoc| +2026-03-18 20:35:38.1122|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:35:38.1941|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:35:38.2375|INFO|APIDocLog|Input JSON +2026-03-18 20:35:38.2394|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2394|DEBUG|OnDoc| +2026-03-18 20:35:38.2552|DEBUG|OnDoc| +2026-03-18 20:35:38.2552|DEBUG|OnDoc| +2026-03-18 20:35:38.2552|DEBUG|OnDoc| +2026-03-18 20:35:38.2552|DEBUG|OnDoc| +2026-03-18 20:35:38.2552|DEBUG|OnDoc| +2026-03-18 20:35:38.2552|DEBUG|OnDoc| +2026-03-18 20:35:38.2552|DEBUG|OnDoc| +2026-03-18 20:35:38.2552|DEBUG|OnDoc| +2026-03-18 20:35:38.2552|DEBUG|OnDoc| +2026-03-18 20:35:38.2552|DEBUG|OnDoc| +2026-03-18 20:35:38.2552|DEBUG|OnDoc| +2026-03-18 20:35:38.2552|DEBUG|OnDoc| +2026-03-18 20:35:38.2552|DEBUG|OnDoc| +2026-03-18 20:35:38.2552|DEBUG|OnDoc| +2026-03-18 20:35:38.2834|DEBUG|OnDoc| +2026-03-18 20:35:38.2857|DEBUG|OnDoc| +2026-03-18 20:35:38.3220|DEBUG|OnDoc| +2026-03-18 20:35:38.3220|DEBUG|OnDoc| +2026-03-18 20:35:38.3388|DEBUG|OnDoc| +2026-03-18 20:35:38.3388|DEBUG|OnDoc| +2026-03-18 20:35:38.3388|DEBUG|OnDoc| +2026-03-18 20:35:38.3388|DEBUG|OnDoc| +2026-03-18 20:35:38.3744|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:35:38.3744|DEBUG|OnDoc| +2026-03-18 20:35:38.3819|DEBUG|OnDoc| +2026-03-18 20:35:38.3819|DEBUG|OnDoc| +2026-03-18 20:35:38.3819|DEBUG|OnDoc| +2026-03-18 20:35:38.3819|DEBUG|OnDoc| +2026-03-18 20:35:38.3819|DEBUG|OnDoc| +2026-03-18 20:35:38.3819|DEBUG|OnDoc| +2026-03-18 20:35:38.3819|DEBUG|OnDoc| +2026-03-18 20:35:38.3819|DEBUG|OnDoc|Generate_Word +2026-03-18 20:35:38.4030|DEBUG|OnDoc|Word2013 +2026-03-18 20:35:38.4030|DEBUG|OnDoc|Word2013 +2026-03-18 20:35:41.4692|DEBUG|OnDoc|Generate_Word +2026-03-18 20:35:41.4752|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017242 +2026-03-18 20:35:41.4752|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:35:41.4752|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:35:41.4752|DEBUG|OnDoc| +2026-03-18 20:35:41.4752|DEBUG|OnDoc| +2026-03-18 20:35:41.4752|DEBUG|OnDoc| +2026-03-18 20:35:41.4752|DEBUG|OnDoc| +2026-03-18 20:35:41.4752|DEBUG|OnDoc| +2026-03-18 20:35:41.4752|DEBUG|OnDoc| +2026-03-18 20:35:51.2425|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:35:51.3089|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:35:51.3276|INFO|APIDocLog|Input JSON +2026-03-18 20:35:51.3276|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3328|DEBUG|OnDoc| +2026-03-18 20:35:51.3489|DEBUG|OnDoc| +2026-03-18 20:35:51.3489|DEBUG|OnDoc| +2026-03-18 20:35:51.3489|DEBUG|OnDoc| +2026-03-18 20:35:51.3489|DEBUG|OnDoc| +2026-03-18 20:35:51.3489|DEBUG|OnDoc| +2026-03-18 20:35:51.3489|DEBUG|OnDoc| +2026-03-18 20:35:51.3489|DEBUG|OnDoc| +2026-03-18 20:35:51.3736|DEBUG|OnDoc| +2026-03-18 20:35:51.3736|DEBUG|OnDoc| +2026-03-18 20:35:51.3980|DEBUG|OnDoc| +2026-03-18 20:35:51.3980|DEBUG|OnDoc| +2026-03-18 20:35:51.3980|DEBUG|OnDoc| +2026-03-18 20:35:51.3980|DEBUG|OnDoc| +2026-03-18 20:35:51.3980|DEBUG|OnDoc| +2026-03-18 20:35:51.3980|DEBUG|OnDoc| +2026-03-18 20:35:51.4230|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:35:51.4230|DEBUG|OnDoc| +2026-03-18 20:35:51.4280|DEBUG|OnDoc| +2026-03-18 20:35:51.4280|DEBUG|OnDoc| +2026-03-18 20:35:51.4280|DEBUG|OnDoc| +2026-03-18 20:35:51.4280|DEBUG|OnDoc| +2026-03-18 20:35:51.4280|DEBUG|OnDoc| +2026-03-18 20:35:51.4280|DEBUG|OnDoc| +2026-03-18 20:35:51.4280|DEBUG|OnDoc| +2026-03-18 20:35:51.4280|DEBUG|OnDoc|Generate_Word +2026-03-18 20:35:51.4460|DEBUG|OnDoc|Word2013 +2026-03-18 20:35:51.4460|DEBUG|OnDoc|Word2013 +2026-03-18 20:35:53.5551|DEBUG|OnDoc|Generate_Word +2026-03-18 20:35:53.5668|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017258 +2026-03-18 20:35:53.5668|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:35:53.5668|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:35:53.5668|DEBUG|OnDoc| +2026-03-18 20:35:53.5668|DEBUG|OnDoc| +2026-03-18 20:35:53.5668|DEBUG|OnDoc| +2026-03-18 20:35:53.5668|DEBUG|OnDoc| +2026-03-18 20:35:53.5668|DEBUG|OnDoc| +2026-03-18 20:35:53.5668|DEBUG|OnDoc| +2026-03-18 20:36:06.4472|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:36:06.5205|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:36:06.5424|INFO|APIDocLog|Input JSON +2026-03-18 20:36:06.5424|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:36:06.5424|DEBUG|OnDoc| +2026-03-18 20:36:06.5424|DEBUG|OnDoc| +2026-03-18 20:36:06.5424|DEBUG|OnDoc| +2026-03-18 20:36:06.5424|DEBUG|OnDoc| +2026-03-18 20:36:06.5424|DEBUG|OnDoc| +2026-03-18 20:36:06.5424|DEBUG|OnDoc| +2026-03-18 20:36:06.5424|DEBUG|OnDoc| +2026-03-18 20:36:06.5424|DEBUG|OnDoc| +2026-03-18 20:36:06.5424|DEBUG|OnDoc| +2026-03-18 20:36:06.5424|DEBUG|OnDoc| +2026-03-18 20:36:06.5424|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5512|DEBUG|OnDoc| +2026-03-18 20:36:06.5855|DEBUG|OnDoc| +2026-03-18 20:36:06.5855|DEBUG|OnDoc| +2026-03-18 20:36:06.6069|DEBUG|OnDoc| +2026-03-18 20:36:06.6069|DEBUG|OnDoc| +2026-03-18 20:36:06.6164|DEBUG|OnDoc| +2026-03-18 20:36:06.6164|DEBUG|OnDoc| +2026-03-18 20:36:06.6164|DEBUG|OnDoc| +2026-03-18 20:36:06.6164|DEBUG|OnDoc| +2026-03-18 20:36:06.6298|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:36:06.6298|DEBUG|OnDoc| +2026-03-18 20:36:06.6298|DEBUG|OnDoc| +2026-03-18 20:36:06.6298|DEBUG|OnDoc| +2026-03-18 20:36:06.6298|DEBUG|OnDoc| +2026-03-18 20:36:06.6298|DEBUG|OnDoc| +2026-03-18 20:36:06.6298|DEBUG|OnDoc| +2026-03-18 20:36:06.6298|DEBUG|OnDoc| +2026-03-18 20:36:06.6485|DEBUG|OnDoc| +2026-03-18 20:36:06.6485|DEBUG|OnDoc|Generate_Word +2026-03-18 20:36:06.6485|DEBUG|OnDoc|Word2013 +2026-03-18 20:36:06.6485|DEBUG|OnDoc|Word2013 +2026-03-18 20:36:09.1428|DEBUG|OnDoc|Generate_Word +2026-03-18 20:36:09.1543|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017263 +2026-03-18 20:36:09.1543|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:36:09.1543|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:36:09.1543|DEBUG|OnDoc| +2026-03-18 20:36:09.1626|DEBUG|OnDoc| +2026-03-18 20:36:09.1626|DEBUG|OnDoc| +2026-03-18 20:36:09.1626|DEBUG|OnDoc| +2026-03-18 20:36:09.1626|DEBUG|OnDoc| +2026-03-18 20:36:09.1626|DEBUG|OnDoc| +2026-03-18 20:36:38.6788|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:36:38.7469|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:36:38.7672|INFO|APIDocLog|Input JSON +2026-03-18 20:36:38.7672|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:36:38.7672|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7712|DEBUG|OnDoc| +2026-03-18 20:36:38.7861|DEBUG|OnDoc| +2026-03-18 20:36:38.8079|DEBUG|OnDoc| +2026-03-18 20:36:38.8079|DEBUG|OnDoc| +2026-03-18 20:36:38.8304|DEBUG|OnDoc| +2026-03-18 20:36:38.8304|DEBUG|OnDoc| +2026-03-18 20:36:38.8399|DEBUG|OnDoc| +2026-03-18 20:36:38.8399|DEBUG|OnDoc| +2026-03-18 20:36:38.8399|DEBUG|OnDoc| +2026-03-18 20:36:38.8399|DEBUG|OnDoc| +2026-03-18 20:36:38.8545|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:36:38.8545|DEBUG|OnDoc| +2026-03-18 20:36:38.8545|DEBUG|OnDoc| +2026-03-18 20:36:38.8545|DEBUG|OnDoc| +2026-03-18 20:36:38.8545|DEBUG|OnDoc| +2026-03-18 20:36:38.8545|DEBUG|OnDoc| +2026-03-18 20:36:38.8659|DEBUG|OnDoc| +2026-03-18 20:36:38.8659|DEBUG|OnDoc| +2026-03-18 20:36:38.8659|DEBUG|OnDoc| +2026-03-18 20:36:38.8659|DEBUG|OnDoc|Generate_Word +2026-03-18 20:36:38.8659|DEBUG|OnDoc|Word2013 +2026-03-18 20:36:38.8798|DEBUG|OnDoc|Word2013 +2026-03-18 20:36:41.0929|DEBUG|OnDoc|Generate_Word +2026-03-18 20:36:41.1045|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017279 +2026-03-18 20:36:41.1045|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:36:41.1045|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:36:41.1045|DEBUG|OnDoc| +2026-03-18 20:36:41.1045|DEBUG|OnDoc| +2026-03-18 20:36:41.1148|DEBUG|OnDoc| +2026-03-18 20:36:41.1148|DEBUG|OnDoc| +2026-03-18 20:36:41.1148|DEBUG|OnDoc| +2026-03-18 20:36:41.1148|DEBUG|OnDoc| +2026-03-18 20:37:52.6929|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:37:52.7682|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:37:52.7884|INFO|APIDocLog|Input JSON +2026-03-18 20:37:52.7884|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.7884|DEBUG|OnDoc| +2026-03-18 20:37:52.8014|DEBUG|OnDoc| +2026-03-18 20:37:52.8014|DEBUG|OnDoc| +2026-03-18 20:37:52.8014|DEBUG|OnDoc| +2026-03-18 20:37:52.8014|DEBUG|OnDoc| +2026-03-18 20:37:52.8014|DEBUG|OnDoc| +2026-03-18 20:37:52.8014|DEBUG|OnDoc| +2026-03-18 20:37:52.8014|DEBUG|OnDoc| +2026-03-18 20:37:52.8014|DEBUG|OnDoc| +2026-03-18 20:37:52.8014|DEBUG|OnDoc| +2026-03-18 20:37:52.8014|DEBUG|OnDoc| +2026-03-18 20:37:52.8014|DEBUG|OnDoc| +2026-03-18 20:37:52.8014|DEBUG|OnDoc| +2026-03-18 20:37:52.8014|DEBUG|OnDoc| +2026-03-18 20:37:52.8281|DEBUG|OnDoc| +2026-03-18 20:37:52.8281|DEBUG|OnDoc| +2026-03-18 20:37:52.8490|DEBUG|OnDoc| +2026-03-18 20:37:52.8490|DEBUG|OnDoc| +2026-03-18 20:37:52.8490|DEBUG|OnDoc| +2026-03-18 20:37:52.8490|DEBUG|OnDoc| +2026-03-18 20:37:52.8490|DEBUG|OnDoc| +2026-03-18 20:37:52.8637|DEBUG|OnDoc| +2026-03-18 20:37:52.8822|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:37:52.8822|DEBUG|OnDoc| +2026-03-18 20:37:52.8990|DEBUG|OnDoc| +2026-03-18 20:37:52.8990|DEBUG|OnDoc| +2026-03-18 20:37:52.8990|DEBUG|OnDoc| +2026-03-18 20:37:52.8990|DEBUG|OnDoc| +2026-03-18 20:37:52.9141|DEBUG|OnDoc| +2026-03-18 20:37:52.9141|DEBUG|OnDoc| +2026-03-18 20:37:52.9141|DEBUG|OnDoc| +2026-03-18 20:37:52.9141|DEBUG|OnDoc|Generate_Word +2026-03-18 20:37:52.9434|DEBUG|OnDoc|Word2013 +2026-03-18 20:37:52.9434|DEBUG|OnDoc|Word2013 +2026-03-18 20:37:55.3126|DEBUG|OnDoc|Generate_Word +2026-03-18 20:37:55.3249|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017287 +2026-03-18 20:37:55.3249|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:37:55.3249|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:37:55.3249|DEBUG|OnDoc| +2026-03-18 20:37:55.3338|DEBUG|OnDoc| +2026-03-18 20:37:55.3338|DEBUG|OnDoc| +2026-03-18 20:37:55.3338|DEBUG|OnDoc| +2026-03-18 20:37:55.3338|DEBUG|OnDoc| +2026-03-18 20:37:55.3338|DEBUG|OnDoc| +2026-03-18 20:38:35.5572|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:38:35.6364|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:38:35.6596|INFO|APIDocLog|Input JSON +2026-03-18 20:38:35.6621|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6621|DEBUG|OnDoc| +2026-03-18 20:38:35.6949|DEBUG|OnDoc| +2026-03-18 20:38:35.6949|DEBUG|OnDoc| +2026-03-18 20:38:35.7160|DEBUG|OnDoc| +2026-03-18 20:38:35.7160|DEBUG|OnDoc| +2026-03-18 20:38:35.7247|DEBUG|OnDoc| +2026-03-18 20:38:35.7247|DEBUG|OnDoc| +2026-03-18 20:38:35.7247|DEBUG|OnDoc| +2026-03-18 20:38:35.7247|DEBUG|OnDoc| +2026-03-18 20:38:35.7247|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:38:35.7247|DEBUG|OnDoc| +2026-03-18 20:38:35.7443|DEBUG|OnDoc| +2026-03-18 20:38:35.7443|DEBUG|OnDoc| +2026-03-18 20:38:35.7443|DEBUG|OnDoc| +2026-03-18 20:38:35.7443|DEBUG|OnDoc| +2026-03-18 20:38:35.7443|DEBUG|OnDoc| +2026-03-18 20:38:35.7443|DEBUG|OnDoc| +2026-03-18 20:38:35.7550|DEBUG|OnDoc| +2026-03-18 20:38:35.7550|DEBUG|OnDoc|Generate_Word +2026-03-18 20:38:35.7550|DEBUG|OnDoc|Word2013 +2026-03-18 20:38:35.7550|DEBUG|OnDoc|Word2013 +2026-03-18 20:38:38.0566|DEBUG|OnDoc|Generate_Word +2026-03-18 20:38:38.0688|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017295 +2026-03-18 20:38:38.0688|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:38:38.0688|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:38:38.0688|DEBUG|OnDoc| +2026-03-18 20:38:38.0688|DEBUG|OnDoc| +2026-03-18 20:38:38.0688|DEBUG|OnDoc| +2026-03-18 20:38:38.0688|DEBUG|OnDoc| +2026-03-18 20:38:38.0688|DEBUG|OnDoc| +2026-03-18 20:38:38.0688|DEBUG|OnDoc| +2026-03-18 20:38:52.7522|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:38:52.8387|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:38:52.8601|INFO|APIDocLog|Input JSON +2026-03-18 20:38:52.8601|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:38:52.8601|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8638|DEBUG|OnDoc| +2026-03-18 20:38:52.8973|DEBUG|OnDoc| +2026-03-18 20:38:52.8973|DEBUG|OnDoc| +2026-03-18 20:38:52.9246|DEBUG|OnDoc| +2026-03-18 20:38:52.9246|DEBUG|OnDoc| +2026-03-18 20:38:52.9395|DEBUG|OnDoc| +2026-03-18 20:38:52.9395|DEBUG|OnDoc| +2026-03-18 20:38:52.9395|DEBUG|OnDoc| +2026-03-18 20:38:52.9395|DEBUG|OnDoc| +2026-03-18 20:38:52.9572|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:38:52.9582|DEBUG|OnDoc| +2026-03-18 20:38:52.9582|DEBUG|OnDoc| +2026-03-18 20:38:52.9582|DEBUG|OnDoc| +2026-03-18 20:38:52.9582|DEBUG|OnDoc| +2026-03-18 20:38:52.9582|DEBUG|OnDoc| +2026-03-18 20:38:52.9758|DEBUG|OnDoc| +2026-03-18 20:38:52.9758|DEBUG|OnDoc| +2026-03-18 20:38:52.9758|DEBUG|OnDoc| +2026-03-18 20:38:52.9758|DEBUG|OnDoc|Generate_Word +2026-03-18 20:38:52.9969|DEBUG|OnDoc|Word2013 +2026-03-18 20:38:52.9969|DEBUG|OnDoc|Word2013 +2026-03-18 20:38:55.2191|DEBUG|OnDoc|Generate_Word +2026-03-18 20:38:55.2313|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017305 +2026-03-18 20:38:55.2313|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:38:55.2313|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:38:55.2313|DEBUG|OnDoc| +2026-03-18 20:38:55.2313|DEBUG|OnDoc| +2026-03-18 20:38:55.2313|DEBUG|OnDoc| +2026-03-18 20:38:55.2313|DEBUG|OnDoc| +2026-03-18 20:38:55.2388|DEBUG|OnDoc| +2026-03-18 20:38:55.2388|DEBUG|OnDoc| +2026-03-18 20:39:05.6378|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:39:05.7058|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:39:05.7256|INFO|APIDocLog|Input JSON +2026-03-18 20:39:05.7256|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7256|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7413|DEBUG|OnDoc| +2026-03-18 20:39:05.7610|DEBUG|OnDoc| +2026-03-18 20:39:05.7610|DEBUG|OnDoc| +2026-03-18 20:39:05.7825|DEBUG|OnDoc| +2026-03-18 20:39:05.7825|DEBUG|OnDoc| +2026-03-18 20:39:05.7947|DEBUG|OnDoc| +2026-03-18 20:39:05.7947|DEBUG|OnDoc| +2026-03-18 20:39:05.7947|DEBUG|OnDoc| +2026-03-18 20:39:05.7947|DEBUG|OnDoc| +2026-03-18 20:39:05.8102|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:39:05.8102|DEBUG|OnDoc| +2026-03-18 20:39:05.8236|DEBUG|OnDoc| +2026-03-18 20:39:05.8236|DEBUG|OnDoc| +2026-03-18 20:39:05.8236|DEBUG|OnDoc| +2026-03-18 20:39:05.8236|DEBUG|OnDoc| +2026-03-18 20:39:05.8236|DEBUG|OnDoc| +2026-03-18 20:39:05.8236|DEBUG|OnDoc| +2026-03-18 20:39:05.8366|DEBUG|OnDoc| +2026-03-18 20:39:05.8366|DEBUG|OnDoc|Generate_Word +2026-03-18 20:39:05.8366|DEBUG|OnDoc|Word2013 +2026-03-18 20:39:05.8366|DEBUG|OnDoc|Word2013 +2026-03-18 20:39:08.1228|DEBUG|OnDoc|Generate_Word +2026-03-18 20:39:08.1338|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017310 +2026-03-18 20:39:08.1338|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:39:08.1338|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:39:08.1338|DEBUG|OnDoc| +2026-03-18 20:39:08.1338|DEBUG|OnDoc| +2026-03-18 20:39:08.1338|DEBUG|OnDoc| +2026-03-18 20:39:08.1338|DEBUG|OnDoc| +2026-03-18 20:39:08.1338|DEBUG|OnDoc| +2026-03-18 20:39:08.1338|DEBUG|OnDoc| +2026-03-18 20:44:13.7154|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:44:13.8418|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:44:13.8963|INFO|APIDocLog|Input JSON +2026-03-18 20:44:13.8963|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.8963|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9106|DEBUG|OnDoc| +2026-03-18 20:44:13.9449|DEBUG|OnDoc| +2026-03-18 20:44:13.9449|DEBUG|OnDoc| +2026-03-18 20:44:13.9838|DEBUG|OnDoc| +2026-03-18 20:44:13.9838|DEBUG|OnDoc| +2026-03-18 20:44:13.9968|DEBUG|OnDoc| +2026-03-18 20:44:13.9968|DEBUG|OnDoc| +2026-03-18 20:44:13.9968|DEBUG|OnDoc| +2026-03-18 20:44:13.9968|DEBUG|OnDoc| +2026-03-18 20:44:14.0265|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:44:14.0265|DEBUG|OnDoc| +2026-03-18 20:44:14.0265|DEBUG|OnDoc| +2026-03-18 20:44:14.0265|DEBUG|OnDoc| +2026-03-18 20:44:14.0265|DEBUG|OnDoc| +2026-03-18 20:44:14.0265|DEBUG|OnDoc| +2026-03-18 20:44:14.0500|DEBUG|OnDoc| +2026-03-18 20:44:14.0521|DEBUG|OnDoc| +2026-03-18 20:44:14.0521|DEBUG|OnDoc| +2026-03-18 20:44:14.0521|DEBUG|OnDoc|Generate_Word +2026-03-18 20:44:14.0717|DEBUG|OnDoc|Word2013 +2026-03-18 20:44:14.0717|DEBUG|OnDoc|Word2013 +2026-03-18 20:44:18.2486|DEBUG|OnDoc|Generate_Word +2026-03-18 20:44:18.2895|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017321 +2026-03-18 20:44:18.2895|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:44:18.2895|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:44:18.2895|DEBUG|OnDoc| +2026-03-18 20:44:18.3088|DEBUG|OnDoc| +2026-03-18 20:44:18.3088|DEBUG|OnDoc| +2026-03-18 20:44:18.3088|DEBUG|OnDoc| +2026-03-18 20:44:18.3168|DEBUG|OnDoc| +2026-03-18 20:44:18.3168|DEBUG|OnDoc| +2026-03-18 20:44:29.6286|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:44:29.7143|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:44:29.7447|INFO|APIDocLog|Input JSON +2026-03-18 20:44:29.7447|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:44:29.7447|DEBUG|OnDoc| +2026-03-18 20:44:29.7447|DEBUG|OnDoc| +2026-03-18 20:44:29.7447|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7554|DEBUG|OnDoc| +2026-03-18 20:44:29.7704|DEBUG|OnDoc| +2026-03-18 20:44:29.7704|DEBUG|OnDoc| +2026-03-18 20:44:29.7704|DEBUG|OnDoc| +2026-03-18 20:44:29.7704|DEBUG|OnDoc| +2026-03-18 20:44:29.7704|DEBUG|OnDoc| +2026-03-18 20:44:29.7704|DEBUG|OnDoc| +2026-03-18 20:44:29.7704|DEBUG|OnDoc| +2026-03-18 20:44:29.7704|DEBUG|OnDoc| +2026-03-18 20:44:29.7704|DEBUG|OnDoc| +2026-03-18 20:44:29.7704|DEBUG|OnDoc| +2026-03-18 20:44:29.7868|DEBUG|OnDoc| +2026-03-18 20:44:29.8175|DEBUG|OnDoc| +2026-03-18 20:44:29.8175|DEBUG|OnDoc| +2026-03-18 20:44:29.8175|DEBUG|OnDoc| +2026-03-18 20:44:29.8175|DEBUG|OnDoc| +2026-03-18 20:44:29.8175|DEBUG|OnDoc| +2026-03-18 20:44:29.8175|DEBUG|OnDoc| +2026-03-18 20:44:29.8496|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:44:29.8496|DEBUG|OnDoc| +2026-03-18 20:44:29.8496|DEBUG|OnDoc| +2026-03-18 20:44:29.8496|DEBUG|OnDoc| +2026-03-18 20:44:29.8496|DEBUG|OnDoc| +2026-03-18 20:44:29.8496|DEBUG|OnDoc| +2026-03-18 20:44:29.8496|DEBUG|OnDoc| +2026-03-18 20:44:29.8637|DEBUG|OnDoc| +2026-03-18 20:44:29.8637|DEBUG|OnDoc| +2026-03-18 20:44:29.8637|DEBUG|OnDoc|Generate_Word +2026-03-18 20:44:29.8637|DEBUG|OnDoc|Word2013 +2026-03-18 20:44:29.8637|DEBUG|OnDoc|Word2013 +2026-03-18 20:44:57.3022|DEBUG|OnDoc|Generate_Word +2026-03-18 20:44:57.3397|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017336 +2026-03-18 20:44:57.3397|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:44:57.3397|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:44:57.3397|DEBUG|OnDoc| +2026-03-18 20:44:57.3397|DEBUG|OnDoc| +2026-03-18 20:44:57.3397|DEBUG|OnDoc| +2026-03-18 20:44:57.3397|DEBUG|OnDoc| +2026-03-18 20:44:57.3397|DEBUG|OnDoc| +2026-03-18 20:44:57.3483|DEBUG|OnDoc| +2026-03-18 20:45:42.0115|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:45:42.0941|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:45:42.1236|INFO|APIDocLog|Input JSON +2026-03-18 20:45:42.1365|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1365|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1450|DEBUG|OnDoc| +2026-03-18 20:45:42.1630|DEBUG|OnDoc| +2026-03-18 20:45:42.1630|DEBUG|OnDoc| +2026-03-18 20:45:42.1954|DEBUG|OnDoc| +2026-03-18 20:45:42.1954|DEBUG|OnDoc| +2026-03-18 20:45:42.1954|DEBUG|OnDoc| +2026-03-18 20:45:42.1954|DEBUG|OnDoc| +2026-03-18 20:45:42.1954|DEBUG|OnDoc| +2026-03-18 20:45:42.1954|DEBUG|OnDoc| +2026-03-18 20:45:42.2267|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:45:42.2267|DEBUG|OnDoc| +2026-03-18 20:45:42.2267|DEBUG|OnDoc| +2026-03-18 20:45:42.2267|DEBUG|OnDoc| +2026-03-18 20:45:42.2267|DEBUG|OnDoc| +2026-03-18 20:45:42.2267|DEBUG|OnDoc| +2026-03-18 20:45:42.2406|DEBUG|OnDoc| +2026-03-18 20:45:42.2406|DEBUG|OnDoc| +2026-03-18 20:45:42.2406|DEBUG|OnDoc| +2026-03-18 20:45:42.2406|DEBUG|OnDoc|Generate_Word +2026-03-18 20:45:42.2543|DEBUG|OnDoc|Word2013 +2026-03-18 20:45:42.2543|DEBUG|OnDoc|Word2013 +2026-03-18 20:45:45.5606|DEBUG|OnDoc|Generate_Word +2026-03-18 20:45:45.5723|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017344 +2026-03-18 20:45:45.5723|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:45:45.5723|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:45:45.5723|DEBUG|OnDoc| +2026-03-18 20:45:45.5723|DEBUG|OnDoc| +2026-03-18 20:45:45.5723|DEBUG|OnDoc| +2026-03-18 20:45:45.5723|DEBUG|OnDoc| +2026-03-18 20:45:45.5830|DEBUG|OnDoc| +2026-03-18 20:45:45.5830|DEBUG|OnDoc| +2026-03-18 20:46:18.4220|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:46:18.5097|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:46:18.5407|INFO|APIDocLog|Input JSON +2026-03-18 20:46:18.5407|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:46:18.5407|DEBUG|OnDoc| +2026-03-18 20:46:18.5407|DEBUG|OnDoc| +2026-03-18 20:46:18.5407|DEBUG|OnDoc| +2026-03-18 20:46:18.5407|DEBUG|OnDoc| +2026-03-18 20:46:18.5407|DEBUG|OnDoc| +2026-03-18 20:46:18.5407|DEBUG|OnDoc| +2026-03-18 20:46:18.5407|DEBUG|OnDoc| +2026-03-18 20:46:18.5407|DEBUG|OnDoc| +2026-03-18 20:46:18.5407|DEBUG|OnDoc| +2026-03-18 20:46:18.5407|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5512|DEBUG|OnDoc| +2026-03-18 20:46:18.5739|DEBUG|OnDoc| +2026-03-18 20:46:18.5739|DEBUG|OnDoc| +2026-03-18 20:46:18.5846|INFO|OnDoc|Image-Bezug: 4 +2026-03-18 20:46:18.7910|DEBUG|OnDoc| +2026-03-18 20:46:18.8031|DEBUG|OnDoc| +2026-03-18 20:46:18.8259|DEBUG|OnDoc| +2026-03-18 20:46:18.8259|DEBUG|OnDoc| +2026-03-18 20:46:18.8367|DEBUG|OnDoc| +2026-03-18 20:46:18.8367|DEBUG|OnDoc| +2026-03-18 20:46:18.8367|DEBUG|OnDoc| +2026-03-18 20:46:18.8367|DEBUG|OnDoc| +2026-03-18 20:46:18.8633|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:46:18.8643|DEBUG|OnDoc| +2026-03-18 20:46:18.8643|DEBUG|OnDoc| +2026-03-18 20:46:18.8643|DEBUG|OnDoc| +2026-03-18 20:46:18.8643|DEBUG|OnDoc| +2026-03-18 20:46:18.8643|DEBUG|OnDoc| +2026-03-18 20:46:18.8643|DEBUG|OnDoc| +2026-03-18 20:46:18.8643|DEBUG|OnDoc| +2026-03-18 20:46:18.8802|DEBUG|OnDoc| +2026-03-18 20:46:18.8802|DEBUG|OnDoc|Generate_Word +2026-03-18 20:46:18.8802|DEBUG|OnDoc|Word2013 +2026-03-18 20:46:18.8802|DEBUG|OnDoc|Word2013 +2026-03-18 20:46:24.1561|DEBUG|OnDoc|Generate_Word +2026-03-18 20:46:24.1960|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017352 +2026-03-18 20:46:24.1960|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:46:24.1960|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:46:24.1960|DEBUG|OnDoc| +2026-03-18 20:46:24.1960|DEBUG|OnDoc| +2026-03-18 20:46:24.2092|DEBUG|OnDoc| +2026-03-18 20:46:24.2092|DEBUG|OnDoc| +2026-03-18 20:46:24.2092|DEBUG|OnDoc| +2026-03-18 20:46:24.2092|DEBUG|OnDoc| +2026-03-18 20:51:53.3450|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:51:53.4695|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:51:53.5146|INFO|APIDocLog|Input JSON +2026-03-18 20:51:53.5146|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:51:53.5146|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5206|DEBUG|OnDoc| +2026-03-18 20:51:53.5364|DEBUG|OnDoc| +2026-03-18 20:51:53.5364|DEBUG|OnDoc| +2026-03-18 20:51:53.5364|DEBUG|OnDoc| +2026-03-18 20:51:53.5364|DEBUG|OnDoc| +2026-03-18 20:51:53.5364|DEBUG|OnDoc| +2026-03-18 20:51:53.5364|DEBUG|OnDoc| +2026-03-18 20:51:53.5667|DEBUG|OnDoc| +2026-03-18 20:51:53.5687|DEBUG|OnDoc| +2026-03-18 20:51:53.5687|INFO|OnDoc|Image-Bezug: 4 +2026-03-18 20:51:53.6310|DEBUG|OnDoc| +2026-03-18 20:51:53.6310|DEBUG|OnDoc| +2026-03-18 20:51:53.6594|DEBUG|OnDoc| +2026-03-18 20:51:53.6594|DEBUG|OnDoc| +2026-03-18 20:51:53.6756|DEBUG|OnDoc| +2026-03-18 20:51:53.6769|DEBUG|OnDoc| +2026-03-18 20:51:53.6769|DEBUG|OnDoc| +2026-03-18 20:51:53.6769|DEBUG|OnDoc| +2026-03-18 20:51:53.7038|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:51:53.7038|DEBUG|OnDoc| +2026-03-18 20:51:53.7118|DEBUG|OnDoc| +2026-03-18 20:51:53.7118|DEBUG|OnDoc| +2026-03-18 20:51:53.7118|DEBUG|OnDoc| +2026-03-18 20:51:53.7118|DEBUG|OnDoc| +2026-03-18 20:51:53.7118|DEBUG|OnDoc| +2026-03-18 20:51:53.7118|DEBUG|OnDoc| +2026-03-18 20:51:53.7118|DEBUG|OnDoc| +2026-03-18 20:51:53.7237|DEBUG|OnDoc|Generate_Word +2026-03-18 20:51:53.7237|DEBUG|OnDoc|Word2013 +2026-03-18 20:51:53.7237|DEBUG|OnDoc|Word2013 +2026-03-18 20:52:01.8811|DEBUG|OnDoc|Generate_Word +2026-03-18 20:52:01.9212|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017368 +2026-03-18 20:52:01.9212|INFO|DocLog|Dokument über API erstellt +2026-03-18 20:52:01.9212|INFO|APIDocLog|Dokument return to sender +2026-03-18 20:52:01.9212|DEBUG|OnDoc| +2026-03-18 20:52:01.9338|DEBUG|OnDoc| +2026-03-18 20:52:01.9338|DEBUG|OnDoc| +2026-03-18 20:52:01.9338|DEBUG|OnDoc| +2026-03-18 20:52:01.9338|DEBUG|OnDoc| +2026-03-18 20:52:01.9338|DEBUG|OnDoc| +2026-03-18 20:56:56.3890|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 20:56:56.4837|INFO|APIDocLog|Start CreateDoc +2026-03-18 20:56:56.5148|INFO|APIDocLog|Input JSON +2026-03-18 20:56:56.5148|DEBUG|OnDoc|Start GenDoc +2026-03-18 20:56:56.5148|DEBUG|OnDoc| +2026-03-18 20:56:56.5148|DEBUG|OnDoc| +2026-03-18 20:56:56.5148|DEBUG|OnDoc| +2026-03-18 20:56:56.5148|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5205|DEBUG|OnDoc| +2026-03-18 20:56:56.5559|DEBUG|OnDoc| +2026-03-18 20:56:56.5559|DEBUG|OnDoc| +2026-03-18 20:56:56.5559|INFO|OnDoc|Image-Bezug: 4 +2026-03-18 20:56:56.6160|DEBUG|OnDoc| +2026-03-18 20:56:56.6160|DEBUG|OnDoc| +2026-03-18 20:56:56.6433|DEBUG|OnDoc| +2026-03-18 20:56:56.6433|DEBUG|OnDoc| +2026-03-18 20:56:56.6533|DEBUG|OnDoc| +2026-03-18 20:56:56.6533|DEBUG|OnDoc| +2026-03-18 20:56:56.6533|DEBUG|OnDoc| +2026-03-18 20:56:56.6533|DEBUG|OnDoc| +2026-03-18 20:56:56.6767|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 20:56:56.6767|DEBUG|OnDoc| +2026-03-18 20:56:56.6767|DEBUG|OnDoc| +2026-03-18 20:56:56.6767|DEBUG|OnDoc| +2026-03-18 20:56:56.6767|DEBUG|OnDoc| +2026-03-18 20:56:56.6767|DEBUG|OnDoc| +2026-03-18 20:56:56.6767|DEBUG|OnDoc| +2026-03-18 20:56:56.6921|DEBUG|OnDoc| +2026-03-18 20:56:56.6921|DEBUG|OnDoc| +2026-03-18 20:56:56.6921|DEBUG|OnDoc|Generate_Word +2026-03-18 20:56:56.6921|DEBUG|OnDoc|Word2013 +2026-03-18 20:56:56.6921|DEBUG|OnDoc|Word2013 +2026-03-18 21:05:48.9346|DEBUG|OnDoc|Generate_Word +2026-03-18 21:05:48.9475|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017373 +2026-03-18 21:05:48.9475|INFO|DocLog|Dokument über API erstellt +2026-03-18 21:05:48.9475|INFO|APIDocLog|Dokument return to sender +2026-03-18 21:05:48.9475|DEBUG|OnDoc| +2026-03-18 21:05:48.9590|DEBUG|OnDoc| +2026-03-18 21:05:48.9590|DEBUG|OnDoc| +2026-03-18 21:05:48.9590|DEBUG|OnDoc| +2026-03-18 21:05:48.9590|DEBUG|OnDoc| +2026-03-18 21:05:48.9590|DEBUG|OnDoc| +2026-03-18 21:06:07.3111|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 21:06:07.4140|INFO|APIDocLog|Start CreateDoc +2026-03-18 21:06:07.4586|INFO|APIDocLog|Input JSON +2026-03-18 21:06:07.4586|DEBUG|OnDoc|Start GenDoc +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4586|DEBUG|OnDoc| +2026-03-18 21:06:07.4738|DEBUG|OnDoc| +2026-03-18 21:06:07.4738|DEBUG|OnDoc| +2026-03-18 21:06:07.4738|DEBUG|OnDoc| +2026-03-18 21:06:07.4738|DEBUG|OnDoc| +2026-03-18 21:06:07.4738|DEBUG|OnDoc| +2026-03-18 21:06:07.4738|DEBUG|OnDoc| +2026-03-18 21:06:07.4738|DEBUG|OnDoc| +2026-03-18 21:06:07.4738|DEBUG|OnDoc| +2026-03-18 21:06:07.4738|DEBUG|OnDoc| +2026-03-18 21:06:07.4738|DEBUG|OnDoc| +2026-03-18 21:06:07.4738|DEBUG|OnDoc| +2026-03-18 21:06:07.4738|DEBUG|OnDoc| +2026-03-18 21:06:07.4738|DEBUG|OnDoc| +2026-03-18 21:06:07.4738|DEBUG|OnDoc| +2026-03-18 21:06:07.5012|DEBUG|OnDoc| +2026-03-18 21:06:07.5012|DEBUG|OnDoc| +2026-03-18 21:06:07.5118|INFO|OnDoc|Image-Bezug: 4 +2026-03-18 21:06:07.5567|DEBUG|OnDoc| +2026-03-18 21:06:07.5567|DEBUG|OnDoc| +2026-03-18 21:06:07.5936|DEBUG|OnDoc| +2026-03-18 21:06:07.5936|DEBUG|OnDoc| +2026-03-18 21:06:07.6086|DEBUG|OnDoc| +2026-03-18 21:06:07.6086|DEBUG|OnDoc| +2026-03-18 21:06:07.6086|DEBUG|OnDoc| +2026-03-18 21:06:07.6086|DEBUG|OnDoc| +2026-03-18 21:06:07.6408|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 21:06:07.6408|DEBUG|OnDoc| +2026-03-18 21:06:07.6479|DEBUG|OnDoc| +2026-03-18 21:06:07.6479|DEBUG|OnDoc| +2026-03-18 21:06:07.6479|DEBUG|OnDoc| +2026-03-18 21:06:07.6479|DEBUG|OnDoc| +2026-03-18 21:06:07.6479|DEBUG|OnDoc| +2026-03-18 21:06:07.6479|DEBUG|OnDoc| +2026-03-18 21:06:07.6613|DEBUG|OnDoc| +2026-03-18 21:06:07.6613|DEBUG|OnDoc|Generate_Word +2026-03-18 21:06:07.6613|DEBUG|OnDoc|Word2013 +2026-03-18 21:06:07.6613|DEBUG|OnDoc|Word2013 +2026-03-18 21:06:14.3614|DEBUG|OnDoc|Generate_Word +2026-03-18 21:06:14.3995|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017389 +2026-03-18 21:06:14.3995|INFO|DocLog|Dokument über API erstellt +2026-03-18 21:06:14.3995|INFO|APIDocLog|Dokument return to sender +2026-03-18 21:06:14.3995|DEBUG|OnDoc| +2026-03-18 21:06:14.4507|DEBUG|OnDoc| +2026-03-18 21:06:14.4507|DEBUG|OnDoc| +2026-03-18 21:06:14.4507|DEBUG|OnDoc| +2026-03-18 21:06:14.4507|DEBUG|OnDoc| +2026-03-18 21:06:14.4507|DEBUG|OnDoc| +2026-03-18 21:06:17.5265|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 21:06:17.5999|INFO|APIDocLog|Start CreateDoc +2026-03-18 21:06:17.6409|INFO|APIDocLog|Input JSON +2026-03-18 21:06:17.6409|DEBUG|OnDoc|Start GenDoc +2026-03-18 21:06:17.6409|DEBUG|OnDoc| +2026-03-18 21:06:17.6409|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6449|DEBUG|OnDoc| +2026-03-18 21:06:17.6681|DEBUG|OnDoc| +2026-03-18 21:06:17.6681|DEBUG|OnDoc| +2026-03-18 21:06:17.6775|INFO|OnDoc|Image-Bezug: 4 +2026-03-18 21:06:17.7198|DEBUG|OnDoc| +2026-03-18 21:06:17.7198|DEBUG|OnDoc| +2026-03-18 21:06:17.7543|DEBUG|OnDoc| +2026-03-18 21:06:17.7543|DEBUG|OnDoc| +2026-03-18 21:06:17.7543|DEBUG|OnDoc| +2026-03-18 21:06:17.7543|DEBUG|OnDoc| +2026-03-18 21:06:17.7543|DEBUG|OnDoc| +2026-03-18 21:06:17.7543|DEBUG|OnDoc| +2026-03-18 21:06:17.7973|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 21:06:17.7973|DEBUG|OnDoc| +2026-03-18 21:06:17.8042|DEBUG|OnDoc| +2026-03-18 21:06:17.8042|DEBUG|OnDoc| +2026-03-18 21:06:17.8042|DEBUG|OnDoc| +2026-03-18 21:06:17.8042|DEBUG|OnDoc| +2026-03-18 21:06:17.8042|DEBUG|OnDoc| +2026-03-18 21:06:17.8042|DEBUG|OnDoc| +2026-03-18 21:06:17.8042|DEBUG|OnDoc| +2026-03-18 21:06:17.8042|DEBUG|OnDoc|Generate_Word +2026-03-18 21:06:17.8222|DEBUG|OnDoc|Word2013 +2026-03-18 21:06:17.8222|DEBUG|OnDoc|Word2013 +2026-03-18 21:06:34.8459|DEBUG|OnDoc|Generate_Word +2026-03-18 21:06:34.8846|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017397 +2026-03-18 21:06:34.8846|INFO|DocLog|Dokument über API erstellt +2026-03-18 21:06:34.8846|INFO|APIDocLog|Dokument return to sender +2026-03-18 21:06:34.8846|DEBUG|OnDoc| +2026-03-18 21:06:34.9011|DEBUG|OnDoc| +2026-03-18 21:06:34.9011|DEBUG|OnDoc| +2026-03-18 21:06:34.9011|DEBUG|OnDoc| +2026-03-18 21:06:34.9011|DEBUG|OnDoc| +2026-03-18 21:06:34.9011|DEBUG|OnDoc| +2026-03-18 21:08:01.0278|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 21:08:01.1624|INFO|APIDocLog|Start CreateDoc +2026-03-18 21:08:01.2174|INFO|APIDocLog|Input JSON +2026-03-18 21:08:01.2174|DEBUG|OnDoc|Start GenDoc +2026-03-18 21:08:01.2174|DEBUG|OnDoc| +2026-03-18 21:08:01.2174|DEBUG|OnDoc| +2026-03-18 21:08:01.2174|DEBUG|OnDoc| +2026-03-18 21:08:01.2174|DEBUG|OnDoc| +2026-03-18 21:08:01.2174|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2232|DEBUG|OnDoc| +2026-03-18 21:08:01.2591|DEBUG|OnDoc| +2026-03-18 21:08:01.2591|DEBUG|OnDoc| +2026-03-18 21:08:01.2591|INFO|OnDoc|Image-Bezug: 4 +2026-03-18 21:08:01.3149|DEBUG|OnDoc| +2026-03-18 21:08:01.3176|DEBUG|OnDoc| +2026-03-18 21:08:01.3667|DEBUG|OnDoc| +2026-03-18 21:08:01.3667|DEBUG|OnDoc| +2026-03-18 21:08:01.3667|DEBUG|OnDoc| +2026-03-18 21:08:01.3667|DEBUG|OnDoc| +2026-03-18 21:08:01.3667|DEBUG|OnDoc| +2026-03-18 21:08:01.3667|DEBUG|OnDoc| +2026-03-18 21:08:01.4093|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 21:08:01.4117|DEBUG|OnDoc| +2026-03-18 21:08:01.4117|DEBUG|OnDoc| +2026-03-18 21:08:01.4117|DEBUG|OnDoc| +2026-03-18 21:08:01.4117|DEBUG|OnDoc| +2026-03-18 21:08:01.4117|DEBUG|OnDoc| +2026-03-18 21:08:01.4117|DEBUG|OnDoc| +2026-03-18 21:08:01.4117|DEBUG|OnDoc| +2026-03-18 21:08:01.4270|DEBUG|OnDoc| +2026-03-18 21:08:01.4270|DEBUG|OnDoc|Generate_Word +2026-03-18 21:08:01.4484|DEBUG|OnDoc|Word2013 +2026-03-18 21:08:01.4484|DEBUG|OnDoc|Word2013 +2026-03-18 21:08:04.7122|DEBUG|OnDoc|Generate_Word +2026-03-18 21:08:04.7520|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017402 +2026-03-18 21:08:04.7520|INFO|DocLog|Dokument über API erstellt +2026-03-18 21:08:04.7520|INFO|APIDocLog|Dokument return to sender +2026-03-18 21:08:04.7551|DEBUG|OnDoc| +2026-03-18 21:08:04.7551|DEBUG|OnDoc| +2026-03-18 21:08:04.7551|DEBUG|OnDoc| +2026-03-18 21:08:04.7551|DEBUG|OnDoc| +2026-03-18 21:08:04.7551|DEBUG|OnDoc| +2026-03-18 21:08:04.7551|DEBUG|OnDoc| +2026-03-18 21:08:25.9151|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 21:08:26.0206|INFO|APIDocLog|Start CreateDoc +2026-03-18 21:08:26.0633|INFO|APIDocLog|Input JSON +2026-03-18 21:08:26.0633|DEBUG|OnDoc|Start GenDoc +2026-03-18 21:08:26.0633|DEBUG|OnDoc| +2026-03-18 21:08:26.0633|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.0675|DEBUG|OnDoc| +2026-03-18 21:08:26.1018|DEBUG|OnDoc| +2026-03-18 21:08:26.1018|DEBUG|OnDoc| +2026-03-18 21:08:26.1018|INFO|OnDoc|Image-Bezug: 4 +2026-03-18 21:08:26.1546|DEBUG|OnDoc| +2026-03-18 21:08:26.1546|DEBUG|OnDoc| +2026-03-18 21:08:26.1877|DEBUG|OnDoc| +2026-03-18 21:08:26.1877|DEBUG|OnDoc| +2026-03-18 21:08:26.1997|DEBUG|OnDoc| +2026-03-18 21:08:26.1997|DEBUG|OnDoc| +2026-03-18 21:08:26.1997|DEBUG|OnDoc| +2026-03-18 21:08:26.1997|DEBUG|OnDoc| +2026-03-18 21:08:26.2308|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 21:08:26.2308|DEBUG|OnDoc| +2026-03-18 21:08:26.2390|DEBUG|OnDoc| +2026-03-18 21:08:26.2390|DEBUG|OnDoc| +2026-03-18 21:08:26.2390|DEBUG|OnDoc| +2026-03-18 21:08:26.2390|DEBUG|OnDoc| +2026-03-18 21:08:26.2390|DEBUG|OnDoc| +2026-03-18 21:08:26.2390|DEBUG|OnDoc| +2026-03-18 21:08:26.2390|DEBUG|OnDoc| +2026-03-18 21:08:26.2390|DEBUG|OnDoc|Generate_Word +2026-03-18 21:08:26.2591|DEBUG|OnDoc|Word2013 +2026-03-18 21:08:26.2591|DEBUG|OnDoc|Word2013 +2026-03-18 21:08:28.7691|DEBUG|OnDoc|Generate_Word +2026-03-18 21:08:28.7821|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017418 +2026-03-18 21:08:28.7821|INFO|DocLog|Dokument über API erstellt +2026-03-18 21:08:28.7821|INFO|APIDocLog|Dokument return to sender +2026-03-18 21:08:28.7821|DEBUG|OnDoc| +2026-03-18 21:08:28.8008|DEBUG|OnDoc| +2026-03-18 21:08:28.8018|DEBUG|OnDoc| +2026-03-18 21:08:28.8018|DEBUG|OnDoc| +2026-03-18 21:08:28.8018|DEBUG|OnDoc| +2026-03-18 21:08:28.8018|DEBUG|OnDoc| +2026-03-18 21:08:46.0110|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 21:08:46.1134|INFO|APIDocLog|Start CreateDoc +2026-03-18 21:08:46.1571|INFO|APIDocLog|Input JSON +2026-03-18 21:08:46.1571|DEBUG|OnDoc|Start GenDoc +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1609|DEBUG|OnDoc| +2026-03-18 21:08:46.1857|DEBUG|OnDoc| +2026-03-18 21:08:46.1857|DEBUG|OnDoc| +2026-03-18 21:08:46.1958|INFO|OnDoc|Image-Bezug: 4 +2026-03-18 21:08:46.2376|DEBUG|OnDoc| +2026-03-18 21:08:46.2403|DEBUG|OnDoc| +2026-03-18 21:08:46.2714|DEBUG|OnDoc| +2026-03-18 21:08:46.2714|DEBUG|OnDoc| +2026-03-18 21:08:46.2714|DEBUG|OnDoc| +2026-03-18 21:08:46.2714|DEBUG|OnDoc| +2026-03-18 21:08:46.2714|DEBUG|OnDoc| +2026-03-18 21:08:46.2714|DEBUG|OnDoc| +2026-03-18 21:08:46.3130|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 21:08:46.3130|DEBUG|OnDoc| +2026-03-18 21:08:46.3206|DEBUG|OnDoc| +2026-03-18 21:08:46.3206|DEBUG|OnDoc| +2026-03-18 21:08:46.3206|DEBUG|OnDoc| +2026-03-18 21:08:46.3206|DEBUG|OnDoc| +2026-03-18 21:08:46.3206|DEBUG|OnDoc| +2026-03-18 21:08:46.3206|DEBUG|OnDoc| +2026-03-18 21:08:46.3206|DEBUG|OnDoc| +2026-03-18 21:08:46.3206|DEBUG|OnDoc|Generate_Word +2026-03-18 21:08:46.3368|DEBUG|OnDoc|Word2013 +2026-03-18 21:08:46.3368|DEBUG|OnDoc|Word2013 +2026-03-18 21:08:48.9198|DEBUG|OnDoc|Generate_Word +2026-03-18 21:08:48.9327|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017423 +2026-03-18 21:08:48.9327|INFO|DocLog|Dokument über API erstellt +2026-03-18 21:08:48.9327|INFO|APIDocLog|Dokument return to sender +2026-03-18 21:08:48.9327|DEBUG|OnDoc| +2026-03-18 21:08:48.9498|DEBUG|OnDoc| +2026-03-18 21:08:48.9498|DEBUG|OnDoc| +2026-03-18 21:08:48.9498|DEBUG|OnDoc| +2026-03-18 21:08:48.9498|DEBUG|OnDoc| +2026-03-18 21:08:48.9498|DEBUG|OnDoc| +2026-03-18 21:09:27.7399|INFO|APIDocLog|DokumentGegnerator Start +2026-03-18 21:09:27.8415|INFO|APIDocLog|Start CreateDoc +2026-03-18 21:09:27.8795|INFO|APIDocLog|Input JSON +2026-03-18 21:09:27.8795|DEBUG|OnDoc|Start GenDoc +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8795|DEBUG|OnDoc| +2026-03-18 21:09:27.8949|DEBUG|OnDoc| +2026-03-18 21:09:27.8949|DEBUG|OnDoc| +2026-03-18 21:09:27.9166|DEBUG|OnDoc| +2026-03-18 21:09:27.9166|DEBUG|OnDoc| +2026-03-18 21:09:27.9166|INFO|OnDoc|Image-Bezug: 4 +2026-03-18 21:09:27.9711|DEBUG|OnDoc| +2026-03-18 21:09:27.9744|DEBUG|OnDoc| +2026-03-18 21:09:28.0045|DEBUG|OnDoc| +2026-03-18 21:09:28.0045|DEBUG|OnDoc| +2026-03-18 21:09:28.0045|DEBUG|OnDoc| +2026-03-18 21:09:28.0045|DEBUG|OnDoc| +2026-03-18 21:09:28.0045|DEBUG|OnDoc| +2026-03-18 21:09:28.0045|DEBUG|OnDoc| +2026-03-18 21:09:28.0463|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-18 21:09:28.0463|DEBUG|OnDoc| +2026-03-18 21:09:28.0538|DEBUG|OnDoc| +2026-03-18 21:09:28.0538|DEBUG|OnDoc| +2026-03-18 21:09:28.0538|DEBUG|OnDoc| +2026-03-18 21:09:28.0538|DEBUG|OnDoc| +2026-03-18 21:09:28.0538|DEBUG|OnDoc| +2026-03-18 21:09:28.0538|DEBUG|OnDoc| +2026-03-18 21:09:28.0538|DEBUG|OnDoc| +2026-03-18 21:09:28.0538|DEBUG|OnDoc|Generate_Word +2026-03-18 21:09:28.0726|DEBUG|OnDoc|Word2013 +2026-03-18 21:09:28.0726|DEBUG|OnDoc|Word2013 +2026-03-18 21:09:30.7451|DEBUG|OnDoc|Generate_Word +2026-03-18 21:09:30.7569|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017439 +2026-03-18 21:09:30.7569|INFO|DocLog|Dokument über API erstellt +2026-03-18 21:09:30.7569|INFO|APIDocLog|Dokument return to sender +2026-03-18 21:09:30.7569|DEBUG|OnDoc| +2026-03-18 21:09:30.7725|DEBUG|OnDoc| +2026-03-18 21:09:30.7725|DEBUG|OnDoc| +2026-03-18 21:09:30.7725|DEBUG|OnDoc| +2026-03-18 21:09:30.7725|DEBUG|OnDoc| +2026-03-18 21:09:30.7725|DEBUG|OnDoc| +2026-03-19 08:19:58.3683|DEBUG|OnDoc| +2026-03-19 08:19:58.4686|DEBUG|OnDoc| +2026-03-19 08:19:58.4686|DEBUG|OnDoc| +2026-03-19 08:19:58.4686|DEBUG|OnDoc| +2026-03-19 08:19:58.7395|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 08:19:59.1696|INFO|APIDocLog|Start CreateDoc +2026-03-19 08:19:59.2694|INFO|APIDocLog|Input JSON +2026-03-19 08:19:59.2923|DEBUG|OnDoc|Start GenDoc +2026-03-19 08:19:59.2923|DEBUG|OnDoc| +2026-03-19 08:19:59.3025|DEBUG|OnDoc| +2026-03-19 08:19:59.3025|DEBUG|OnDoc| +2026-03-19 08:19:59.3025|DEBUG|OnDoc| +2026-03-19 08:19:59.3025|DEBUG|OnDoc| +2026-03-19 08:19:59.3025|DEBUG|OnDoc| +2026-03-19 08:19:59.3025|DEBUG|OnDoc| +2026-03-19 08:19:59.3025|DEBUG|OnDoc| +2026-03-19 08:19:59.3025|DEBUG|OnDoc| +2026-03-19 08:19:59.3025|DEBUG|OnDoc| +2026-03-19 08:19:59.3025|DEBUG|OnDoc| +2026-03-19 08:19:59.3025|DEBUG|OnDoc| +2026-03-19 08:19:59.3025|DEBUG|OnDoc| +2026-03-19 08:19:59.3025|DEBUG|OnDoc| +2026-03-19 08:19:59.3025|DEBUG|OnDoc| +2026-03-19 08:19:59.3226|DEBUG|OnDoc| +2026-03-19 08:19:59.3226|DEBUG|OnDoc| +2026-03-19 08:19:59.3226|DEBUG|OnDoc| +2026-03-19 08:19:59.3226|DEBUG|OnDoc| +2026-03-19 08:19:59.3226|DEBUG|OnDoc| +2026-03-19 08:19:59.3416|DEBUG|OnDoc| +2026-03-19 08:19:59.3416|DEBUG|OnDoc| +2026-03-19 08:19:59.3416|DEBUG|OnDoc| +2026-03-19 08:19:59.3416|DEBUG|OnDoc| +2026-03-19 08:19:59.3502|DEBUG|OnDoc| +2026-03-19 08:19:59.3502|DEBUG|OnDoc| +2026-03-19 08:19:59.3502|DEBUG|OnDoc| +2026-03-19 08:19:59.3502|DEBUG|OnDoc| +2026-03-19 08:19:59.3502|DEBUG|OnDoc| +2026-03-19 08:19:59.3502|DEBUG|OnDoc| +2026-03-19 08:19:59.3502|DEBUG|OnDoc| +2026-03-19 08:19:59.3502|DEBUG|OnDoc| +2026-03-19 08:19:59.3502|DEBUG|OnDoc| +2026-03-19 08:19:59.3502|DEBUG|OnDoc| +2026-03-19 08:19:59.3849|DEBUG|OnDoc| +2026-03-19 08:19:59.3849|DEBUG|OnDoc| +2026-03-19 08:19:59.4009|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 08:19:59.6445|DEBUG|OnDoc| +2026-03-19 08:19:59.6540|DEBUG|OnDoc| +2026-03-19 08:19:59.7042|DEBUG|OnDoc| +2026-03-19 08:19:59.7042|DEBUG|OnDoc| +2026-03-19 08:19:59.7321|DEBUG|OnDoc| +2026-03-19 08:19:59.7321|DEBUG|OnDoc| +2026-03-19 08:19:59.7321|DEBUG|OnDoc| +2026-03-19 08:19:59.7321|DEBUG|OnDoc| +2026-03-19 08:19:59.7655|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 08:19:59.7655|DEBUG|OnDoc| +2026-03-19 08:19:59.7770|DEBUG|OnDoc| +2026-03-19 08:19:59.7770|DEBUG|OnDoc| +2026-03-19 08:19:59.7770|DEBUG|OnDoc| +2026-03-19 08:19:59.7770|DEBUG|OnDoc| +2026-03-19 08:19:59.7860|DEBUG|OnDoc| +2026-03-19 08:19:59.7860|DEBUG|OnDoc| +2026-03-19 08:19:59.7860|DEBUG|OnDoc| +2026-03-19 08:19:59.7860|DEBUG|OnDoc|Generate_Word +2026-03-19 08:20:00.3009|DEBUG|OnDoc|Word2013 +2026-03-19 08:20:00.3099|DEBUG|OnDoc|Word2013 +2026-03-19 08:20:06.4310|DEBUG|OnDoc|Generate_Word +2026-03-19 08:20:06.4774|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017447 +2026-03-19 08:20:06.4774|INFO|DocLog|Dokument über API erstellt +2026-03-19 08:20:06.4774|INFO|APIDocLog|Dokument return to sender +2026-03-19 08:20:06.4774|DEBUG|OnDoc| +2026-03-19 08:20:06.4912|DEBUG|OnDoc| +2026-03-19 08:20:06.4912|DEBUG|OnDoc| +2026-03-19 08:20:06.4912|DEBUG|OnDoc| +2026-03-19 08:20:06.4912|DEBUG|OnDoc| +2026-03-19 08:20:06.4912|DEBUG|OnDoc| +2026-03-19 08:20:16.8966|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 08:20:16.9975|INFO|APIDocLog|Start CreateDoc +2026-03-19 08:20:17.0271|INFO|APIDocLog|Input JSON +2026-03-19 08:20:17.0271|DEBUG|OnDoc|Start GenDoc +2026-03-19 08:20:17.0271|DEBUG|OnDoc| +2026-03-19 08:20:17.0271|DEBUG|OnDoc| +2026-03-19 08:20:17.0271|DEBUG|OnDoc| +2026-03-19 08:20:17.0271|DEBUG|OnDoc| +2026-03-19 08:20:17.0271|DEBUG|OnDoc| +2026-03-19 08:20:17.0271|DEBUG|OnDoc| +2026-03-19 08:20:17.0271|DEBUG|OnDoc| +2026-03-19 08:20:17.0271|DEBUG|OnDoc| +2026-03-19 08:20:17.0271|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0359|DEBUG|OnDoc| +2026-03-19 08:20:17.0725|DEBUG|OnDoc| +2026-03-19 08:20:17.0725|DEBUG|OnDoc| +2026-03-19 08:20:17.0725|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 08:20:17.1289|DEBUG|OnDoc| +2026-03-19 08:20:17.1309|DEBUG|OnDoc| +2026-03-19 08:20:17.1526|DEBUG|OnDoc| +2026-03-19 08:20:17.1526|DEBUG|OnDoc| +2026-03-19 08:20:17.1673|DEBUG|OnDoc| +2026-03-19 08:20:17.1673|DEBUG|OnDoc| +2026-03-19 08:20:17.1673|DEBUG|OnDoc| +2026-03-19 08:20:17.1673|DEBUG|OnDoc| +2026-03-19 08:20:17.1869|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 08:20:17.1869|DEBUG|OnDoc| +2026-03-19 08:20:17.1956|DEBUG|OnDoc| +2026-03-19 08:20:17.1956|DEBUG|OnDoc| +2026-03-19 08:20:17.1956|DEBUG|OnDoc| +2026-03-19 08:20:17.1956|DEBUG|OnDoc| +2026-03-19 08:20:17.1956|DEBUG|OnDoc| +2026-03-19 08:20:17.1956|DEBUG|OnDoc| +2026-03-19 08:20:17.2127|DEBUG|OnDoc| +2026-03-19 08:20:17.2127|DEBUG|OnDoc|Generate_Word +2026-03-19 08:20:17.2243|DEBUG|OnDoc|Word2013 +2026-03-19 08:20:17.2243|DEBUG|OnDoc|Word2013 +2026-03-19 08:20:26.3164|DEBUG|OnDoc|Generate_Word +2026-03-19 08:20:26.3580|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017455 +2026-03-19 08:20:26.3580|INFO|DocLog|Dokument über API erstellt +2026-03-19 08:20:26.3580|INFO|APIDocLog|Dokument return to sender +2026-03-19 08:20:26.3580|DEBUG|OnDoc| +2026-03-19 08:20:26.3808|DEBUG|OnDoc| +2026-03-19 08:20:26.3808|DEBUG|OnDoc| +2026-03-19 08:20:26.3808|DEBUG|OnDoc| +2026-03-19 08:20:26.3808|DEBUG|OnDoc| +2026-03-19 08:20:26.3808|DEBUG|OnDoc| +2026-03-19 08:20:29.3249|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 08:20:29.3794|INFO|APIDocLog|Start CreateDoc +2026-03-19 08:20:29.4069|INFO|APIDocLog|Input JSON +2026-03-19 08:20:29.4069|DEBUG|OnDoc|Start GenDoc +2026-03-19 08:20:29.4069|DEBUG|OnDoc| +2026-03-19 08:20:29.4069|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4108|DEBUG|OnDoc| +2026-03-19 08:20:29.4323|DEBUG|OnDoc| +2026-03-19 08:20:29.4323|DEBUG|OnDoc| +2026-03-19 08:20:29.4428|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 08:20:29.5350|DEBUG|OnDoc| +2026-03-19 08:20:29.5470|DEBUG|OnDoc| +2026-03-19 08:20:29.5766|DEBUG|OnDoc| +2026-03-19 08:20:29.5766|DEBUG|OnDoc| +2026-03-19 08:20:29.5884|DEBUG|OnDoc| +2026-03-19 08:20:29.5884|DEBUG|OnDoc| +2026-03-19 08:20:29.5884|DEBUG|OnDoc| +2026-03-19 08:20:29.5884|DEBUG|OnDoc| +2026-03-19 08:20:29.6080|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 08:20:29.6080|DEBUG|OnDoc| +2026-03-19 08:20:29.6142|DEBUG|OnDoc| +2026-03-19 08:20:29.6142|DEBUG|OnDoc| +2026-03-19 08:20:29.6142|DEBUG|OnDoc| +2026-03-19 08:20:29.6142|DEBUG|OnDoc| +2026-03-19 08:20:29.6142|DEBUG|OnDoc| +2026-03-19 08:20:29.6142|DEBUG|OnDoc| +2026-03-19 08:20:29.6142|DEBUG|OnDoc| +2026-03-19 08:20:29.6142|DEBUG|OnDoc|Generate_Word +2026-03-19 08:20:29.6318|DEBUG|OnDoc|Word2013 +2026-03-19 08:20:29.6318|DEBUG|OnDoc|Word2013 +2026-03-19 08:24:21.9364|DEBUG|OnDoc|Generate_Word +2026-03-19 08:24:21.9794|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017460 +2026-03-19 08:24:21.9794|INFO|DocLog|Dokument über API erstellt +2026-03-19 08:24:21.9794|INFO|APIDocLog|Dokument return to sender +2026-03-19 08:24:21.9794|DEBUG|OnDoc| +2026-03-19 08:24:22.0033|DEBUG|OnDoc| +2026-03-19 08:24:22.0050|DEBUG|OnDoc| +2026-03-19 08:24:22.0050|DEBUG|OnDoc| +2026-03-19 08:24:22.0050|DEBUG|OnDoc| +2026-03-19 08:24:22.0050|DEBUG|OnDoc| +2026-03-19 08:24:35.2348|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 08:24:35.4285|INFO|APIDocLog|Start CreateDoc +2026-03-19 08:24:35.5079|INFO|APIDocLog|Input JSON +2026-03-19 08:24:35.5079|DEBUG|OnDoc|Start GenDoc +2026-03-19 08:24:35.5079|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5206|DEBUG|OnDoc| +2026-03-19 08:24:35.5362|DEBUG|OnDoc| +2026-03-19 08:24:35.5362|DEBUG|OnDoc| +2026-03-19 08:24:35.5362|DEBUG|OnDoc| +2026-03-19 08:24:35.5362|DEBUG|OnDoc| +2026-03-19 08:24:35.5362|DEBUG|OnDoc| +2026-03-19 08:24:35.5362|DEBUG|OnDoc| +2026-03-19 08:24:35.5530|DEBUG|OnDoc| +2026-03-19 08:24:35.5530|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 08:24:35.6165|DEBUG|OnDoc| +2026-03-19 08:24:35.6165|DEBUG|OnDoc| +2026-03-19 08:24:35.6962|DEBUG|OnDoc| +2026-03-19 08:24:35.6962|DEBUG|OnDoc| +2026-03-19 08:24:35.7099|DEBUG|OnDoc| +2026-03-19 08:24:35.7099|DEBUG|OnDoc| +2026-03-19 08:24:35.7099|DEBUG|OnDoc| +2026-03-19 08:24:35.7099|DEBUG|OnDoc| +2026-03-19 08:24:35.7772|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 08:24:35.7772|DEBUG|OnDoc| +2026-03-19 08:24:35.7772|DEBUG|OnDoc| +2026-03-19 08:24:35.7772|DEBUG|OnDoc| +2026-03-19 08:24:35.7772|DEBUG|OnDoc| +2026-03-19 08:24:35.7772|DEBUG|OnDoc| +2026-03-19 08:24:35.7919|DEBUG|OnDoc| +2026-03-19 08:24:35.7919|DEBUG|OnDoc| +2026-03-19 08:24:35.7919|DEBUG|OnDoc| +2026-03-19 08:24:35.7919|DEBUG|OnDoc|Generate_Word +2026-03-19 08:24:35.8050|DEBUG|OnDoc|Word2013 +2026-03-19 08:24:35.8050|DEBUG|OnDoc|Word2013 +2026-03-19 08:26:26.2519|DEBUG|OnDoc|Generate_Word +2026-03-19 08:26:26.2933|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017471 +2026-03-19 08:26:26.2933|INFO|DocLog|Dokument über API erstellt +2026-03-19 08:26:26.2933|INFO|APIDocLog|Dokument return to sender +2026-03-19 08:26:26.2933|DEBUG|OnDoc| +2026-03-19 08:26:26.3133|DEBUG|OnDoc| +2026-03-19 08:26:26.3133|DEBUG|OnDoc| +2026-03-19 08:26:26.3133|DEBUG|OnDoc| +2026-03-19 08:26:26.3133|DEBUG|OnDoc| +2026-03-19 08:26:26.3133|DEBUG|OnDoc| +2026-03-19 08:26:35.5013|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 08:26:35.7203|INFO|APIDocLog|Start CreateDoc +2026-03-19 08:26:35.8250|INFO|APIDocLog|Input JSON +2026-03-19 08:26:35.8356|DEBUG|OnDoc|Start GenDoc +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8356|DEBUG|OnDoc| +2026-03-19 08:26:35.8481|DEBUG|OnDoc| +2026-03-19 08:26:35.8481|DEBUG|OnDoc| +2026-03-19 08:26:35.8481|DEBUG|OnDoc| +2026-03-19 08:26:35.8481|DEBUG|OnDoc| +2026-03-19 08:26:35.8481|DEBUG|OnDoc| +2026-03-19 08:26:35.8481|DEBUG|OnDoc| +2026-03-19 08:26:35.8481|DEBUG|OnDoc| +2026-03-19 08:26:35.8481|DEBUG|OnDoc| +2026-03-19 08:26:35.8643|DEBUG|OnDoc| +2026-03-19 08:26:35.8643|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 08:26:35.9204|DEBUG|OnDoc| +2026-03-19 08:26:35.9204|DEBUG|OnDoc| +2026-03-19 08:26:36.0225|DEBUG|OnDoc| +2026-03-19 08:26:36.0225|DEBUG|OnDoc| +2026-03-19 08:26:36.0225|DEBUG|OnDoc| +2026-03-19 08:26:36.0367|DEBUG|OnDoc| +2026-03-19 08:26:36.0367|DEBUG|OnDoc| +2026-03-19 08:26:36.0367|DEBUG|OnDoc| +2026-03-19 08:26:36.1311|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 08:26:36.1311|DEBUG|OnDoc| +2026-03-19 08:26:36.1311|DEBUG|OnDoc| +2026-03-19 08:26:36.1311|DEBUG|OnDoc| +2026-03-19 08:26:36.1311|DEBUG|OnDoc| +2026-03-19 08:26:36.1311|DEBUG|OnDoc| +2026-03-19 08:26:36.1455|DEBUG|OnDoc| +2026-03-19 08:26:36.1455|DEBUG|OnDoc| +2026-03-19 08:26:36.1455|DEBUG|OnDoc| +2026-03-19 08:26:36.1455|DEBUG|OnDoc|Generate_Word +2026-03-19 08:26:36.1455|DEBUG|OnDoc|Word2013 +2026-03-19 08:26:36.1455|DEBUG|OnDoc|Word2013 +2026-03-19 08:27:24.8418|DEBUG|OnDoc|Generate_Word +2026-03-19 08:27:24.8817|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017486 +2026-03-19 08:27:24.8817|INFO|DocLog|Dokument über API erstellt +2026-03-19 08:27:24.8817|INFO|APIDocLog|Dokument return to sender +2026-03-19 08:27:24.8817|DEBUG|OnDoc| +2026-03-19 08:27:24.8951|DEBUG|OnDoc| +2026-03-19 08:27:24.8951|DEBUG|OnDoc| +2026-03-19 08:27:24.8951|DEBUG|OnDoc| +2026-03-19 08:27:24.8951|DEBUG|OnDoc| +2026-03-19 08:27:24.8951|DEBUG|OnDoc| +2026-03-19 08:27:38.7613|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 08:27:38.9410|INFO|APIDocLog|Start CreateDoc +2026-03-19 08:27:39.0140|INFO|APIDocLog|Input JSON +2026-03-19 08:27:39.0200|DEBUG|OnDoc|Start GenDoc +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0200|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0357|DEBUG|OnDoc| +2026-03-19 08:27:39.0513|DEBUG|OnDoc| +2026-03-19 08:27:39.0513|DEBUG|OnDoc| +2026-03-19 08:27:39.0718|DEBUG|OnDoc| +2026-03-19 08:27:39.0718|DEBUG|OnDoc| +2026-03-19 08:27:39.0889|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 08:27:39.1669|DEBUG|OnDoc| +2026-03-19 08:27:39.1765|DEBUG|OnDoc| +2026-03-19 08:27:39.2402|DEBUG|OnDoc| +2026-03-19 08:27:39.2402|DEBUG|OnDoc| +2026-03-19 08:27:39.2402|DEBUG|OnDoc| +2026-03-19 08:27:39.2402|DEBUG|OnDoc| +2026-03-19 08:27:39.2402|DEBUG|OnDoc| +2026-03-19 08:27:39.2402|DEBUG|OnDoc| +2026-03-19 08:27:39.3140|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 08:27:39.3140|DEBUG|OnDoc| +2026-03-19 08:27:39.3221|DEBUG|OnDoc| +2026-03-19 08:27:39.3221|DEBUG|OnDoc| +2026-03-19 08:27:39.3221|DEBUG|OnDoc| +2026-03-19 08:27:39.3221|DEBUG|OnDoc| +2026-03-19 08:27:39.3221|DEBUG|OnDoc| +2026-03-19 08:27:39.3221|DEBUG|OnDoc| +2026-03-19 08:27:39.3221|DEBUG|OnDoc| +2026-03-19 08:27:39.3332|DEBUG|OnDoc|Generate_Word +2026-03-19 08:27:39.3553|DEBUG|OnDoc|Word2013 +2026-03-19 08:27:39.3553|DEBUG|OnDoc|Word2013 +2026-03-19 08:29:22.9678|DEBUG|OnDoc|Generate_Word +2026-03-19 08:29:23.0114|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017494 +2026-03-19 08:29:23.0114|INFO|DocLog|Dokument über API erstellt +2026-03-19 08:29:23.0114|INFO|APIDocLog|Dokument return to sender +2026-03-19 08:29:23.0114|DEBUG|OnDoc| +2026-03-19 08:29:23.0330|DEBUG|OnDoc| +2026-03-19 08:29:23.0330|DEBUG|OnDoc| +2026-03-19 08:29:23.0357|DEBUG|OnDoc| +2026-03-19 08:29:23.0357|DEBUG|OnDoc| +2026-03-19 08:29:23.0357|DEBUG|OnDoc| +2026-03-19 08:29:35.6456|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 08:29:35.7645|INFO|APIDocLog|Start CreateDoc +2026-03-19 08:29:35.8328|INFO|APIDocLog|Input JSON +2026-03-19 08:29:35.8328|DEBUG|OnDoc|Start GenDoc +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8328|DEBUG|OnDoc| +2026-03-19 08:29:35.8482|DEBUG|OnDoc| +2026-03-19 08:29:35.8482|DEBUG|OnDoc| +2026-03-19 08:29:35.8482|DEBUG|OnDoc| +2026-03-19 08:29:35.8482|DEBUG|OnDoc| +2026-03-19 08:29:35.8482|DEBUG|OnDoc| +2026-03-19 08:29:35.8482|DEBUG|OnDoc| +2026-03-19 08:29:35.8482|DEBUG|OnDoc| +2026-03-19 08:29:35.8482|DEBUG|OnDoc| +2026-03-19 08:29:35.8637|DEBUG|OnDoc| +2026-03-19 08:29:35.8637|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 08:29:35.9243|DEBUG|OnDoc| +2026-03-19 08:29:35.9267|DEBUG|OnDoc| +2026-03-19 08:29:35.9852|DEBUG|OnDoc| +2026-03-19 08:29:35.9852|DEBUG|OnDoc| +2026-03-19 08:29:35.9955|DEBUG|OnDoc| +2026-03-19 08:29:35.9955|DEBUG|OnDoc| +2026-03-19 08:29:35.9955|DEBUG|OnDoc| +2026-03-19 08:29:35.9955|DEBUG|OnDoc| +2026-03-19 08:29:36.0497|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 08:29:36.0497|DEBUG|OnDoc| +2026-03-19 08:29:36.0600|DEBUG|OnDoc| +2026-03-19 08:29:36.0600|DEBUG|OnDoc| +2026-03-19 08:29:36.0600|DEBUG|OnDoc| +2026-03-19 08:29:36.0600|DEBUG|OnDoc| +2026-03-19 08:29:36.0670|DEBUG|OnDoc| +2026-03-19 08:29:36.0670|DEBUG|OnDoc| +2026-03-19 08:29:36.0670|DEBUG|OnDoc| +2026-03-19 08:29:36.0670|DEBUG|OnDoc|Generate_Word +2026-03-19 08:29:36.0670|DEBUG|OnDoc|Word2013 +2026-03-19 08:29:36.0670|DEBUG|OnDoc|Word2013 +2026-03-19 08:29:55.6217|DEBUG|OnDoc|Generate_Word +2026-03-19 08:29:55.6364|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017503 +2026-03-19 08:29:55.6364|INFO|DocLog|Dokument über API erstellt +2026-03-19 08:29:55.6364|INFO|APIDocLog|Dokument return to sender +2026-03-19 08:29:55.6364|DEBUG|OnDoc| +2026-03-19 08:29:55.6492|DEBUG|OnDoc| +2026-03-19 08:29:55.6492|DEBUG|OnDoc| +2026-03-19 08:29:55.6492|DEBUG|OnDoc| +2026-03-19 08:29:55.6492|DEBUG|OnDoc| +2026-03-19 08:29:55.6492|DEBUG|OnDoc| +2026-03-19 08:55:02.6943|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 08:55:02.8600|INFO|APIDocLog|Start CreateDoc +2026-03-19 08:55:02.9343|INFO|APIDocLog|Input JSON +2026-03-19 08:55:02.9343|DEBUG|OnDoc|Start GenDoc +2026-03-19 08:55:02.9343|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9431|DEBUG|OnDoc| +2026-03-19 08:55:02.9578|DEBUG|OnDoc| +2026-03-19 08:55:02.9578|DEBUG|OnDoc| +2026-03-19 08:55:02.9578|DEBUG|OnDoc| +2026-03-19 08:55:02.9578|DEBUG|OnDoc| +2026-03-19 08:55:02.9578|DEBUG|OnDoc| +2026-03-19 08:55:02.9578|DEBUG|OnDoc| +2026-03-19 08:55:02.9578|DEBUG|OnDoc| +2026-03-19 08:55:02.9578|DEBUG|OnDoc| +2026-03-19 08:55:02.9578|DEBUG|OnDoc| +2026-03-19 08:55:02.9578|DEBUG|OnDoc| +2026-03-19 08:55:02.9841|DEBUG|OnDoc| +2026-03-19 08:55:02.9841|DEBUG|OnDoc| +2026-03-19 08:55:02.9936|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 08:55:03.0353|DEBUG|OnDoc| +2026-03-19 08:55:03.0383|DEBUG|OnDoc| +2026-03-19 08:55:03.1070|DEBUG|OnDoc| +2026-03-19 08:55:03.1070|DEBUG|OnDoc| +2026-03-19 08:55:03.1225|DEBUG|OnDoc| +2026-03-19 08:55:03.1225|DEBUG|OnDoc| +2026-03-19 08:55:03.1225|DEBUG|OnDoc| +2026-03-19 08:55:03.1225|DEBUG|OnDoc| +2026-03-19 08:55:03.1872|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 08:55:03.1872|DEBUG|OnDoc| +2026-03-19 08:55:03.1960|DEBUG|OnDoc| +2026-03-19 08:55:03.1960|DEBUG|OnDoc| +2026-03-19 08:55:03.1960|DEBUG|OnDoc| +2026-03-19 08:55:03.1960|DEBUG|OnDoc| +2026-03-19 08:55:03.1960|DEBUG|OnDoc| +2026-03-19 08:55:03.1960|DEBUG|OnDoc| +2026-03-19 08:55:03.2086|DEBUG|OnDoc| +2026-03-19 08:55:03.2086|DEBUG|OnDoc|Generate_Word +2026-03-19 08:55:03.2086|DEBUG|OnDoc|Word2013 +2026-03-19 08:55:03.2086|DEBUG|OnDoc|Word2013 +2026-03-19 08:57:10.8913|DEBUG|OnDoc|Generate_Word +2026-03-19 08:57:10.9363|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017519 +2026-03-19 08:57:10.9363|INFO|DocLog|Dokument über API erstellt +2026-03-19 08:57:10.9363|INFO|APIDocLog|Dokument return to sender +2026-03-19 08:57:10.9363|DEBUG|OnDoc| +2026-03-19 08:57:10.9518|DEBUG|OnDoc| +2026-03-19 08:57:10.9518|DEBUG|OnDoc| +2026-03-19 08:57:10.9518|DEBUG|OnDoc| +2026-03-19 08:57:10.9518|DEBUG|OnDoc| +2026-03-19 08:57:10.9518|DEBUG|OnDoc| +2026-03-19 08:57:20.5603|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 08:57:20.7509|INFO|APIDocLog|Start CreateDoc +2026-03-19 08:57:20.8407|INFO|APIDocLog|Input JSON +2026-03-19 08:57:20.8504|DEBUG|OnDoc|Start GenDoc +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8504|DEBUG|OnDoc| +2026-03-19 08:57:20.8865|DEBUG|OnDoc| +2026-03-19 08:57:20.8865|DEBUG|OnDoc| +2026-03-19 08:57:20.8980|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 08:57:20.9437|DEBUG|OnDoc| +2026-03-19 08:57:20.9437|DEBUG|OnDoc| +2026-03-19 08:57:21.0333|DEBUG|OnDoc| +2026-03-19 08:57:21.0635|DEBUG|OnDoc| +2026-03-19 08:57:21.0780|DEBUG|OnDoc| +2026-03-19 08:57:21.0780|DEBUG|OnDoc| +2026-03-19 08:57:21.0780|DEBUG|OnDoc| +2026-03-19 08:57:21.0830|DEBUG|OnDoc| +2026-03-19 08:57:21.1700|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 08:57:21.1700|DEBUG|OnDoc| +2026-03-19 08:57:21.1776|DEBUG|OnDoc| +2026-03-19 08:57:21.1776|DEBUG|OnDoc| +2026-03-19 08:57:21.1776|DEBUG|OnDoc| +2026-03-19 08:57:21.1776|DEBUG|OnDoc| +2026-03-19 08:57:21.1776|DEBUG|OnDoc| +2026-03-19 08:57:21.1776|DEBUG|OnDoc| +2026-03-19 08:57:21.1776|DEBUG|OnDoc| +2026-03-19 08:57:21.1776|DEBUG|OnDoc|Generate_Word +2026-03-19 08:57:21.1962|DEBUG|OnDoc|Word2013 +2026-03-19 08:57:21.1962|DEBUG|OnDoc|Word2013 +2026-03-19 08:57:44.8911|DEBUG|OnDoc|Generate_Word +2026-03-19 08:57:44.9303|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017527 +2026-03-19 08:57:44.9303|INFO|DocLog|Dokument über API erstellt +2026-03-19 08:57:44.9303|INFO|APIDocLog|Dokument return to sender +2026-03-19 08:57:44.9303|DEBUG|OnDoc| +2026-03-19 08:57:44.9468|DEBUG|OnDoc| +2026-03-19 08:57:44.9468|DEBUG|OnDoc| +2026-03-19 08:57:44.9468|DEBUG|OnDoc| +2026-03-19 08:57:44.9468|DEBUG|OnDoc| +2026-03-19 08:57:44.9468|DEBUG|OnDoc| +2026-03-19 08:57:48.5382|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 08:57:48.7258|INFO|APIDocLog|Start CreateDoc +2026-03-19 08:57:48.8116|INFO|APIDocLog|Input JSON +2026-03-19 08:57:48.8221|DEBUG|OnDoc|Start GenDoc +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8221|DEBUG|OnDoc| +2026-03-19 08:57:48.8327|DEBUG|OnDoc| +2026-03-19 08:57:48.8327|DEBUG|OnDoc| +2026-03-19 08:57:48.8327|DEBUG|OnDoc| +2026-03-19 08:57:48.8327|DEBUG|OnDoc| +2026-03-19 08:57:48.8327|DEBUG|OnDoc| +2026-03-19 08:57:48.8327|DEBUG|OnDoc| +2026-03-19 08:57:48.8327|DEBUG|OnDoc| +2026-03-19 08:57:48.8327|DEBUG|OnDoc| +2026-03-19 08:57:48.8327|DEBUG|OnDoc| +2026-03-19 08:57:48.8327|DEBUG|OnDoc| +2026-03-19 08:57:48.8327|DEBUG|OnDoc| +2026-03-19 08:57:48.8327|DEBUG|OnDoc| +2026-03-19 08:57:48.8327|DEBUG|OnDoc| +2026-03-19 08:57:48.8327|DEBUG|OnDoc| +2026-03-19 08:57:48.8498|DEBUG|OnDoc| +2026-03-19 08:57:48.8498|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 08:57:48.9056|DEBUG|OnDoc| +2026-03-19 08:57:48.9056|DEBUG|OnDoc| +2026-03-19 08:57:48.9894|DEBUG|OnDoc| +2026-03-19 08:57:48.9894|DEBUG|OnDoc| +2026-03-19 08:57:48.9894|DEBUG|OnDoc| +2026-03-19 08:57:48.9894|DEBUG|OnDoc| +2026-03-19 08:57:48.9894|DEBUG|OnDoc| +2026-03-19 08:57:48.9894|DEBUG|OnDoc| +2026-03-19 08:57:49.0790|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 08:57:49.0790|DEBUG|OnDoc| +2026-03-19 08:57:49.0913|DEBUG|OnDoc| +2026-03-19 08:57:49.0913|DEBUG|OnDoc| +2026-03-19 08:57:49.0913|DEBUG|OnDoc| +2026-03-19 08:57:49.0913|DEBUG|OnDoc| +2026-03-19 08:57:49.0913|DEBUG|OnDoc| +2026-03-19 08:57:49.0987|DEBUG|OnDoc| +2026-03-19 08:57:49.0987|DEBUG|OnDoc| +2026-03-19 08:57:49.0987|DEBUG|OnDoc|Generate_Word +2026-03-19 08:57:49.0987|DEBUG|OnDoc|Word2013 +2026-03-19 08:57:49.0987|DEBUG|OnDoc|Word2013 +2026-03-19 09:03:39.2831|DEBUG|OnDoc|Generate_Word +2026-03-19 09:03:39.2980|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017535 +2026-03-19 09:03:39.2980|INFO|DocLog|Dokument über API erstellt +2026-03-19 09:03:39.2980|INFO|APIDocLog|Dokument return to sender +2026-03-19 09:03:39.3014|DEBUG|OnDoc| +2026-03-19 09:03:39.3014|DEBUG|OnDoc| +2026-03-19 09:03:39.3014|DEBUG|OnDoc| +2026-03-19 09:03:39.3014|DEBUG|OnDoc| +2026-03-19 09:03:39.3014|DEBUG|OnDoc| +2026-03-19 09:03:39.3014|DEBUG|OnDoc| +2026-03-19 09:04:23.6335|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 09:04:23.9358|INFO|APIDocLog|Start CreateDoc +2026-03-19 09:04:24.0695|INFO|APIDocLog|Input JSON +2026-03-19 09:04:24.0695|DEBUG|OnDoc|Start GenDoc +2026-03-19 09:04:24.0695|DEBUG|OnDoc| +2026-03-19 09:04:24.0695|DEBUG|OnDoc| +2026-03-19 09:04:24.0695|DEBUG|OnDoc| +2026-03-19 09:04:24.0695|DEBUG|OnDoc| +2026-03-19 09:04:24.0695|DEBUG|OnDoc| +2026-03-19 09:04:24.0695|DEBUG|OnDoc| +2026-03-19 09:04:24.0695|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.0827|DEBUG|OnDoc| +2026-03-19 09:04:24.1172|DEBUG|OnDoc| +2026-03-19 09:04:24.1172|DEBUG|OnDoc| +2026-03-19 09:04:24.1172|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 09:04:24.2081|DEBUG|OnDoc| +2026-03-19 09:04:24.2081|DEBUG|OnDoc| +2026-03-19 09:04:24.3687|DEBUG|OnDoc| +2026-03-19 09:04:24.3687|DEBUG|OnDoc| +2026-03-19 09:04:24.3891|DEBUG|OnDoc| +2026-03-19 09:04:24.3891|DEBUG|OnDoc| +2026-03-19 09:04:24.3891|DEBUG|OnDoc| +2026-03-19 09:04:24.3891|DEBUG|OnDoc| +2026-03-19 09:04:24.5311|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 09:04:24.5311|DEBUG|OnDoc| +2026-03-19 09:04:24.5381|DEBUG|OnDoc| +2026-03-19 09:04:24.5381|DEBUG|OnDoc| +2026-03-19 09:04:24.5381|DEBUG|OnDoc| +2026-03-19 09:04:24.5381|DEBUG|OnDoc| +2026-03-19 09:04:24.5381|DEBUG|OnDoc| +2026-03-19 09:04:24.5381|DEBUG|OnDoc| +2026-03-19 09:04:24.5536|DEBUG|OnDoc| +2026-03-19 09:04:24.5536|DEBUG|OnDoc|Generate_Word +2026-03-19 09:04:24.5786|DEBUG|OnDoc|Word2013 +2026-03-19 09:04:24.5786|DEBUG|OnDoc|Word2013 +2026-03-19 09:19:45.8553|DEBUG|OnDoc| +2026-03-19 09:19:45.9495|DEBUG|OnDoc| +2026-03-19 09:19:45.9495|DEBUG|OnDoc| +2026-03-19 09:19:45.9495|DEBUG|OnDoc| +2026-03-19 10:06:22.5378|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:06:22.7611|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:06:22.8509|INFO|APIDocLog|Input JSON +2026-03-19 10:06:22.8710|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:06:22.8710|DEBUG|OnDoc| +2026-03-19 10:06:22.8710|DEBUG|OnDoc| +2026-03-19 10:06:22.8710|DEBUG|OnDoc| +2026-03-19 10:06:22.8710|DEBUG|OnDoc| +2026-03-19 10:06:22.8710|DEBUG|OnDoc| +2026-03-19 10:06:22.8710|DEBUG|OnDoc| +2026-03-19 10:06:22.8710|DEBUG|OnDoc| +2026-03-19 10:06:22.8710|DEBUG|OnDoc| +2026-03-19 10:06:22.8710|DEBUG|OnDoc| +2026-03-19 10:06:22.8710|DEBUG|OnDoc| +2026-03-19 10:06:22.8710|DEBUG|OnDoc| +2026-03-19 10:06:22.8710|DEBUG|OnDoc| +2026-03-19 10:06:22.8710|DEBUG|OnDoc| +2026-03-19 10:06:22.8797|DEBUG|OnDoc| +2026-03-19 10:06:22.8797|DEBUG|OnDoc| +2026-03-19 10:06:22.8797|DEBUG|OnDoc| +2026-03-19 10:06:22.8797|DEBUG|OnDoc| +2026-03-19 10:06:22.8797|DEBUG|OnDoc| +2026-03-19 10:06:22.8797|DEBUG|OnDoc| +2026-03-19 10:06:22.8797|DEBUG|OnDoc| +2026-03-19 10:06:22.8797|DEBUG|OnDoc| +2026-03-19 10:06:22.8968|DEBUG|OnDoc| +2026-03-19 10:06:22.8968|DEBUG|OnDoc| +2026-03-19 10:06:22.8968|DEBUG|OnDoc| +2026-03-19 10:06:22.8968|DEBUG|OnDoc| +2026-03-19 10:06:22.8968|DEBUG|OnDoc| +2026-03-19 10:06:22.8968|DEBUG|OnDoc| +2026-03-19 10:06:22.8968|DEBUG|OnDoc| +2026-03-19 10:06:22.8968|DEBUG|OnDoc| +2026-03-19 10:06:22.8968|DEBUG|OnDoc| +2026-03-19 10:06:22.8968|DEBUG|OnDoc| +2026-03-19 10:06:22.8968|DEBUG|OnDoc| +2026-03-19 10:06:22.8968|DEBUG|OnDoc| +2026-03-19 10:06:22.8968|DEBUG|OnDoc| +2026-03-19 10:06:22.9184|DEBUG|OnDoc| +2026-03-19 10:06:22.9184|DEBUG|OnDoc| +2026-03-19 10:06:22.9298|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:06:23.1025|DEBUG|OnDoc| +2026-03-19 10:06:23.1025|DEBUG|OnDoc| +2026-03-19 10:06:23.1468|DEBUG|OnDoc| +2026-03-19 10:06:23.1468|DEBUG|OnDoc| +2026-03-19 10:06:23.1708|DEBUG|OnDoc| +2026-03-19 10:06:23.1708|DEBUG|OnDoc| +2026-03-19 10:06:23.1708|DEBUG|OnDoc| +2026-03-19 10:06:23.1708|DEBUG|OnDoc| +2026-03-19 10:06:23.1907|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:06:23.1932|DEBUG|OnDoc| +2026-03-19 10:06:23.1932|DEBUG|OnDoc| +2026-03-19 10:06:23.1932|DEBUG|OnDoc| +2026-03-19 10:06:23.1932|DEBUG|OnDoc| +2026-03-19 10:06:23.1932|DEBUG|OnDoc| +2026-03-19 10:06:23.2164|DEBUG|OnDoc| +2026-03-19 10:06:23.2164|DEBUG|OnDoc| +2026-03-19 10:06:23.2164|DEBUG|OnDoc| +2026-03-19 10:06:23.2164|DEBUG|OnDoc|Generate_Word +2026-03-19 10:06:23.7083|DEBUG|OnDoc|Word2013 +2026-03-19 10:06:23.7083|DEBUG|OnDoc|Word2013 +2026-03-19 10:06:27.8394|DEBUG|OnDoc|Generate_Word +2026-03-19 10:06:27.8854|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017551 +2026-03-19 10:06:27.8854|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:06:27.8854|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:06:27.8854|DEBUG|OnDoc| +2026-03-19 10:06:27.9113|DEBUG|OnDoc| +2026-03-19 10:06:27.9113|DEBUG|OnDoc| +2026-03-19 10:06:27.9113|DEBUG|OnDoc| +2026-03-19 10:06:27.9113|DEBUG|OnDoc| +2026-03-19 10:06:27.9113|DEBUG|OnDoc| +2026-03-19 10:06:35.3401|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:06:35.3919|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:06:35.4271|INFO|APIDocLog|Input JSON +2026-03-19 10:06:35.4271|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4271|DEBUG|OnDoc| +2026-03-19 10:06:35.4423|DEBUG|OnDoc| +2026-03-19 10:06:35.4423|DEBUG|OnDoc| +2026-03-19 10:06:35.4423|DEBUG|OnDoc| +2026-03-19 10:06:35.4423|DEBUG|OnDoc| +2026-03-19 10:06:35.4423|DEBUG|OnDoc| +2026-03-19 10:06:35.4423|DEBUG|OnDoc| +2026-03-19 10:06:35.4423|DEBUG|OnDoc| +2026-03-19 10:06:35.4423|DEBUG|OnDoc| +2026-03-19 10:06:35.4579|DEBUG|OnDoc| +2026-03-19 10:06:35.4579|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:06:35.5152|DEBUG|OnDoc| +2026-03-19 10:06:35.5152|DEBUG|OnDoc| +2026-03-19 10:06:35.5320|DEBUG|OnDoc| +2026-03-19 10:06:35.5320|DEBUG|OnDoc| +2026-03-19 10:06:35.5420|DEBUG|OnDoc| +2026-03-19 10:06:35.5420|DEBUG|OnDoc| +2026-03-19 10:06:35.5420|DEBUG|OnDoc| +2026-03-19 10:06:35.5420|DEBUG|OnDoc| +2026-03-19 10:06:35.5553|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:06:35.5553|DEBUG|OnDoc| +2026-03-19 10:06:35.5553|DEBUG|OnDoc| +2026-03-19 10:06:35.5553|DEBUG|OnDoc| +2026-03-19 10:06:35.5553|DEBUG|OnDoc| +2026-03-19 10:06:35.5553|DEBUG|OnDoc| +2026-03-19 10:06:35.5708|DEBUG|OnDoc| +2026-03-19 10:06:35.5708|DEBUG|OnDoc| +2026-03-19 10:06:35.5708|DEBUG|OnDoc| +2026-03-19 10:06:35.5708|DEBUG|OnDoc|Generate_Word +2026-03-19 10:06:35.5880|DEBUG|OnDoc|Word2013 +2026-03-19 10:06:35.5880|DEBUG|OnDoc|Word2013 +2026-03-19 10:06:50.0830|DEBUG|OnDoc|Generate_Word +2026-03-19 10:06:50.0830|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017566 +2026-03-19 10:06:50.0984|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:06:50.0984|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:06:50.0984|DEBUG|OnDoc| +2026-03-19 10:06:50.1137|DEBUG|OnDoc| +2026-03-19 10:06:50.1137|DEBUG|OnDoc| +2026-03-19 10:06:50.1137|DEBUG|OnDoc| +2026-03-19 10:06:50.1137|DEBUG|OnDoc| +2026-03-19 10:06:50.1137|DEBUG|OnDoc| +2026-03-19 10:06:52.3602|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:06:52.4096|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:06:52.4336|INFO|APIDocLog|Input JSON +2026-03-19 10:06:52.4336|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:06:52.4336|DEBUG|OnDoc| +2026-03-19 10:06:52.4336|DEBUG|OnDoc| +2026-03-19 10:06:52.4336|DEBUG|OnDoc| +2026-03-19 10:06:52.4336|DEBUG|OnDoc| +2026-03-19 10:06:52.4336|DEBUG|OnDoc| +2026-03-19 10:06:52.4336|DEBUG|OnDoc| +2026-03-19 10:06:52.4336|DEBUG|OnDoc| +2026-03-19 10:06:52.4336|DEBUG|OnDoc| +2026-03-19 10:06:52.4336|DEBUG|OnDoc| +2026-03-19 10:06:52.4336|DEBUG|OnDoc| +2026-03-19 10:06:52.4336|DEBUG|OnDoc| +2026-03-19 10:06:52.4336|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4421|DEBUG|OnDoc| +2026-03-19 10:06:52.4631|DEBUG|OnDoc| +2026-03-19 10:06:52.4631|DEBUG|OnDoc| +2026-03-19 10:06:52.4631|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:06:52.5154|DEBUG|OnDoc| +2026-03-19 10:06:52.5154|DEBUG|OnDoc| +2026-03-19 10:06:52.5312|DEBUG|OnDoc| +2026-03-19 10:06:52.5312|DEBUG|OnDoc| +2026-03-19 10:06:52.5397|DEBUG|OnDoc| +2026-03-19 10:06:52.5397|DEBUG|OnDoc| +2026-03-19 10:06:52.5397|DEBUG|OnDoc| +2026-03-19 10:06:52.5397|DEBUG|OnDoc| +2026-03-19 10:06:52.5546|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:06:52.5546|DEBUG|OnDoc| +2026-03-19 10:06:52.5676|DEBUG|OnDoc| +2026-03-19 10:06:52.5676|DEBUG|OnDoc| +2026-03-19 10:06:52.5676|DEBUG|OnDoc| +2026-03-19 10:06:52.5676|DEBUG|OnDoc| +2026-03-19 10:06:52.5676|DEBUG|OnDoc| +2026-03-19 10:06:52.5676|DEBUG|OnDoc| +2026-03-19 10:06:52.5676|DEBUG|OnDoc| +2026-03-19 10:06:52.5676|DEBUG|OnDoc|Generate_Word +2026-03-19 10:06:52.5888|DEBUG|OnDoc|Word2013 +2026-03-19 10:06:52.5888|DEBUG|OnDoc|Word2013 +2026-03-19 10:07:09.8374|DEBUG|OnDoc|Generate_Word +2026-03-19 10:07:09.8785|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017574 +2026-03-19 10:07:09.8785|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:07:09.8805|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:07:09.8805|DEBUG|OnDoc| +2026-03-19 10:07:09.8991|DEBUG|OnDoc| +2026-03-19 10:07:09.8991|DEBUG|OnDoc| +2026-03-19 10:07:09.8991|DEBUG|OnDoc| +2026-03-19 10:07:09.8991|DEBUG|OnDoc| +2026-03-19 10:07:09.8991|DEBUG|OnDoc| +2026-03-19 10:07:32.9705|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:07:33.0085|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:07:33.0301|INFO|APIDocLog|Input JSON +2026-03-19 10:07:33.0301|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:07:33.0301|DEBUG|OnDoc| +2026-03-19 10:07:33.0301|DEBUG|OnDoc| +2026-03-19 10:07:33.0301|DEBUG|OnDoc| +2026-03-19 10:07:33.0301|DEBUG|OnDoc| +2026-03-19 10:07:33.0301|DEBUG|OnDoc| +2026-03-19 10:07:33.0301|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0358|DEBUG|OnDoc| +2026-03-19 10:07:33.0681|DEBUG|OnDoc| +2026-03-19 10:07:33.0681|DEBUG|OnDoc| +2026-03-19 10:07:33.0681|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:07:33.1206|DEBUG|OnDoc| +2026-03-19 10:07:33.1206|DEBUG|OnDoc| +2026-03-19 10:07:33.1336|DEBUG|OnDoc| +2026-03-19 10:07:33.1336|DEBUG|OnDoc| +2026-03-19 10:07:33.1336|DEBUG|OnDoc| +2026-03-19 10:07:33.1336|DEBUG|OnDoc| +2026-03-19 10:07:33.1336|DEBUG|OnDoc| +2026-03-19 10:07:33.1457|DEBUG|OnDoc| +2026-03-19 10:07:33.1457|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:07:33.1457|DEBUG|OnDoc| +2026-03-19 10:07:33.1619|DEBUG|OnDoc| +2026-03-19 10:07:33.1619|DEBUG|OnDoc| +2026-03-19 10:07:33.1619|DEBUG|OnDoc| +2026-03-19 10:07:33.1619|DEBUG|OnDoc| +2026-03-19 10:07:33.1619|DEBUG|OnDoc| +2026-03-19 10:07:33.1619|DEBUG|OnDoc| +2026-03-19 10:07:33.1619|DEBUG|OnDoc| +2026-03-19 10:07:33.1619|DEBUG|OnDoc|Generate_Word +2026-03-19 10:07:33.1825|DEBUG|OnDoc|Word2013 +2026-03-19 10:07:33.1825|DEBUG|OnDoc|Word2013 +2026-03-19 10:07:58.4841|DEBUG|OnDoc|Generate_Word +2026-03-19 10:07:58.5230|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017582 +2026-03-19 10:07:58.5230|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:07:58.5230|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:07:58.5230|DEBUG|OnDoc| +2026-03-19 10:07:58.5368|DEBUG|OnDoc| +2026-03-19 10:07:58.5368|DEBUG|OnDoc| +2026-03-19 10:07:58.5368|DEBUG|OnDoc| +2026-03-19 10:07:58.5368|DEBUG|OnDoc| +2026-03-19 10:07:58.5368|DEBUG|OnDoc| +2026-03-19 10:08:23.9387|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:08:24.0131|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:08:24.0328|INFO|APIDocLog|Input JSON +2026-03-19 10:08:24.0328|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0365|DEBUG|OnDoc| +2026-03-19 10:08:24.0520|DEBUG|OnDoc| +2026-03-19 10:08:24.0520|DEBUG|OnDoc| +2026-03-19 10:08:24.0520|DEBUG|OnDoc| +2026-03-19 10:08:24.0520|DEBUG|OnDoc| +2026-03-19 10:08:24.0520|DEBUG|OnDoc| +2026-03-19 10:08:24.0520|DEBUG|OnDoc| +2026-03-19 10:08:24.0520|DEBUG|OnDoc| +2026-03-19 10:08:24.0765|DEBUG|OnDoc| +2026-03-19 10:08:24.0765|DEBUG|OnDoc| +2026-03-19 10:08:24.0847|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:08:24.1286|DEBUG|OnDoc| +2026-03-19 10:08:24.1317|DEBUG|OnDoc| +2026-03-19 10:08:24.1317|DEBUG|OnDoc| +2026-03-19 10:08:24.1451|DEBUG|OnDoc| +2026-03-19 10:08:24.1451|DEBUG|OnDoc| +2026-03-19 10:08:24.1451|DEBUG|OnDoc| +2026-03-19 10:08:24.1451|DEBUG|OnDoc| +2026-03-19 10:08:24.1451|DEBUG|OnDoc| +2026-03-19 10:08:24.1653|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:08:24.1653|DEBUG|OnDoc| +2026-03-19 10:08:24.1653|DEBUG|OnDoc| +2026-03-19 10:08:24.1653|DEBUG|OnDoc| +2026-03-19 10:08:24.1653|DEBUG|OnDoc| +2026-03-19 10:08:24.1653|DEBUG|OnDoc| +2026-03-19 10:08:24.1766|DEBUG|OnDoc| +2026-03-19 10:08:24.1766|DEBUG|OnDoc| +2026-03-19 10:08:24.1766|DEBUG|OnDoc| +2026-03-19 10:08:24.1766|DEBUG|OnDoc|Generate_Word +2026-03-19 10:08:24.1766|DEBUG|OnDoc|Word2013 +2026-03-19 10:08:24.1766|DEBUG|OnDoc|Word2013 +2026-03-19 10:08:49.8529|DEBUG|OnDoc|Generate_Word +2026-03-19 10:08:49.8937|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017598 +2026-03-19 10:08:49.8937|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:08:49.8951|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:08:49.8951|DEBUG|OnDoc| +2026-03-19 10:08:49.8951|DEBUG|OnDoc| +2026-03-19 10:08:49.8951|DEBUG|OnDoc| +2026-03-19 10:08:49.8951|DEBUG|OnDoc| +2026-03-19 10:08:49.8951|DEBUG|OnDoc| +2026-03-19 10:08:49.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.7787|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:08:53.8625|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:08:53.8901|INFO|APIDocLog|Input JSON +2026-03-19 10:08:53.8901|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:08:53.8901|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.8951|DEBUG|OnDoc| +2026-03-19 10:08:53.9196|DEBUG|OnDoc| +2026-03-19 10:08:53.9196|DEBUG|OnDoc| +2026-03-19 10:08:53.9281|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:08:53.9712|DEBUG|OnDoc| +2026-03-19 10:08:53.9736|DEBUG|OnDoc| +2026-03-19 10:08:53.9736|DEBUG|OnDoc| +2026-03-19 10:08:53.9736|DEBUG|OnDoc| +2026-03-19 10:08:53.9952|DEBUG|OnDoc| +2026-03-19 10:08:53.9952|DEBUG|OnDoc| +2026-03-19 10:08:53.9952|DEBUG|OnDoc| +2026-03-19 10:08:53.9952|DEBUG|OnDoc| +2026-03-19 10:08:54.0084|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:08:54.0084|DEBUG|OnDoc| +2026-03-19 10:08:54.0084|DEBUG|OnDoc| +2026-03-19 10:08:54.0084|DEBUG|OnDoc| +2026-03-19 10:08:54.0084|DEBUG|OnDoc| +2026-03-19 10:08:54.0084|DEBUG|OnDoc| +2026-03-19 10:08:54.0215|DEBUG|OnDoc| +2026-03-19 10:08:54.0215|DEBUG|OnDoc| +2026-03-19 10:08:54.0215|DEBUG|OnDoc| +2026-03-19 10:08:54.0215|DEBUG|OnDoc|Generate_Word +2026-03-19 10:08:54.0215|DEBUG|OnDoc|Word2013 +2026-03-19 10:08:54.0215|DEBUG|OnDoc|Word2013 +2026-03-19 10:10:08.8959|DEBUG|OnDoc|Generate_Word +2026-03-19 10:10:08.9372|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017607 +2026-03-19 10:10:08.9372|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:10:08.9372|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:10:08.9372|DEBUG|OnDoc| +2026-03-19 10:10:08.9509|DEBUG|OnDoc| +2026-03-19 10:10:08.9509|DEBUG|OnDoc| +2026-03-19 10:10:08.9509|DEBUG|OnDoc| +2026-03-19 10:10:08.9509|DEBUG|OnDoc| +2026-03-19 10:10:08.9509|DEBUG|OnDoc| +2026-03-19 10:10:18.4982|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:10:18.5977|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:10:18.6262|INFO|APIDocLog|Input JSON +2026-03-19 10:10:18.6300|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6300|DEBUG|OnDoc| +2026-03-19 10:10:18.6450|DEBUG|OnDoc| +2026-03-19 10:10:18.6450|DEBUG|OnDoc| +2026-03-19 10:10:18.6450|DEBUG|OnDoc| +2026-03-19 10:10:18.6450|DEBUG|OnDoc| +2026-03-19 10:10:18.6450|DEBUG|OnDoc| +2026-03-19 10:10:18.6450|DEBUG|OnDoc| +2026-03-19 10:10:18.6450|DEBUG|OnDoc| +2026-03-19 10:10:18.6450|DEBUG|OnDoc| +2026-03-19 10:10:18.6612|DEBUG|OnDoc| +2026-03-19 10:10:18.6612|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:10:18.7123|DEBUG|OnDoc| +2026-03-19 10:10:18.7123|DEBUG|OnDoc| +2026-03-19 10:10:18.7350|DEBUG|OnDoc| +2026-03-19 10:10:18.7350|DEBUG|OnDoc| +2026-03-19 10:10:18.7445|DEBUG|OnDoc| +2026-03-19 10:10:18.7445|DEBUG|OnDoc| +2026-03-19 10:10:18.7445|DEBUG|OnDoc| +2026-03-19 10:10:18.7445|DEBUG|OnDoc| +2026-03-19 10:10:18.7666|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:10:18.7666|DEBUG|OnDoc| +2026-03-19 10:10:18.7761|DEBUG|OnDoc| +2026-03-19 10:10:18.7761|DEBUG|OnDoc| +2026-03-19 10:10:18.7761|DEBUG|OnDoc| +2026-03-19 10:10:18.7761|DEBUG|OnDoc| +2026-03-19 10:10:18.7761|DEBUG|OnDoc| +2026-03-19 10:10:18.7761|DEBUG|OnDoc| +2026-03-19 10:10:18.7887|DEBUG|OnDoc| +2026-03-19 10:10:18.7887|DEBUG|OnDoc|Generate_Word +2026-03-19 10:10:18.7887|DEBUG|OnDoc|Word2013 +2026-03-19 10:10:18.7887|DEBUG|OnDoc|Word2013 +2026-03-19 10:10:31.7149|DEBUG|OnDoc|Generate_Word +2026-03-19 10:10:31.7552|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017615 +2026-03-19 10:10:31.7552|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:10:31.7552|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:10:31.7552|DEBUG|OnDoc| +2026-03-19 10:10:31.7552|DEBUG|OnDoc| +2026-03-19 10:10:31.7552|DEBUG|OnDoc| +2026-03-19 10:10:31.7552|DEBUG|OnDoc| +2026-03-19 10:10:31.7552|DEBUG|OnDoc| +2026-03-19 10:10:31.7552|DEBUG|OnDoc| +2026-03-19 10:10:55.9810|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:10:56.0877|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:10:56.1264|INFO|APIDocLog|Input JSON +2026-03-19 10:10:56.1301|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1301|DEBUG|OnDoc| +2026-03-19 10:10:56.1458|DEBUG|OnDoc| +2026-03-19 10:10:56.1458|DEBUG|OnDoc| +2026-03-19 10:10:56.1458|DEBUG|OnDoc| +2026-03-19 10:10:56.1458|DEBUG|OnDoc| +2026-03-19 10:10:56.1458|DEBUG|OnDoc| +2026-03-19 10:10:56.1458|DEBUG|OnDoc| +2026-03-19 10:10:56.1458|DEBUG|OnDoc| +2026-03-19 10:10:56.1458|DEBUG|OnDoc| +2026-03-19 10:10:56.1458|DEBUG|OnDoc| +2026-03-19 10:10:56.1458|DEBUG|OnDoc| +2026-03-19 10:10:56.1458|DEBUG|OnDoc| +2026-03-19 10:10:56.1458|DEBUG|OnDoc| +2026-03-19 10:10:56.1458|DEBUG|OnDoc| +2026-03-19 10:10:56.1735|DEBUG|OnDoc| +2026-03-19 10:10:56.1735|DEBUG|OnDoc| +2026-03-19 10:10:56.1850|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:10:56.2317|DEBUG|OnDoc| +2026-03-19 10:10:56.2317|DEBUG|OnDoc| +2026-03-19 10:10:56.2558|DEBUG|OnDoc| +2026-03-19 10:10:56.2558|DEBUG|OnDoc| +2026-03-19 10:10:56.2701|DEBUG|OnDoc| +2026-03-19 10:10:56.2701|DEBUG|OnDoc| +2026-03-19 10:10:56.2701|DEBUG|OnDoc| +2026-03-19 10:10:56.2701|DEBUG|OnDoc| +2026-03-19 10:10:56.2899|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:10:56.2899|DEBUG|OnDoc| +2026-03-19 10:10:56.3080|DEBUG|OnDoc| +2026-03-19 10:10:56.3080|DEBUG|OnDoc| +2026-03-19 10:10:56.3080|DEBUG|OnDoc| +2026-03-19 10:10:56.3080|DEBUG|OnDoc| +2026-03-19 10:10:56.3277|DEBUG|OnDoc| +2026-03-19 10:10:56.3277|DEBUG|OnDoc| +2026-03-19 10:10:56.3421|DEBUG|OnDoc| +2026-03-19 10:10:56.3421|DEBUG|OnDoc|Generate_Word +2026-03-19 10:10:56.3557|DEBUG|OnDoc|Word2013 +2026-03-19 10:10:56.3557|DEBUG|OnDoc|Word2013 +2026-03-19 10:11:57.2625|DEBUG|OnDoc|Generate_Word +2026-03-19 10:11:57.3046|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017620 +2026-03-19 10:11:57.3046|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:11:57.3046|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:11:57.3046|DEBUG|OnDoc| +2026-03-19 10:11:57.3276|DEBUG|OnDoc| +2026-03-19 10:11:57.3276|DEBUG|OnDoc| +2026-03-19 10:11:57.3276|DEBUG|OnDoc| +2026-03-19 10:11:57.3276|DEBUG|OnDoc| +2026-03-19 10:11:57.3276|DEBUG|OnDoc| +2026-03-19 10:12:30.9160|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:12:31.0026|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:12:31.0312|INFO|APIDocLog|Input JSON +2026-03-19 10:12:31.0312|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:12:31.0312|DEBUG|OnDoc| +2026-03-19 10:12:31.0312|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0357|DEBUG|OnDoc| +2026-03-19 10:12:31.0701|DEBUG|OnDoc| +2026-03-19 10:12:31.0701|DEBUG|OnDoc| +2026-03-19 10:12:31.0824|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:12:31.1253|DEBUG|OnDoc| +2026-03-19 10:12:31.1253|DEBUG|OnDoc| +2026-03-19 10:12:31.1504|DEBUG|OnDoc| +2026-03-19 10:12:31.1504|DEBUG|OnDoc| +2026-03-19 10:12:31.1619|DEBUG|OnDoc| +2026-03-19 10:12:31.1619|DEBUG|OnDoc| +2026-03-19 10:12:31.1619|DEBUG|OnDoc| +2026-03-19 10:12:31.1619|DEBUG|OnDoc| +2026-03-19 10:12:31.1842|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:12:31.1842|DEBUG|OnDoc| +2026-03-19 10:12:31.1934|DEBUG|OnDoc| +2026-03-19 10:12:31.1934|DEBUG|OnDoc| +2026-03-19 10:12:31.1934|DEBUG|OnDoc| +2026-03-19 10:12:31.1934|DEBUG|OnDoc| +2026-03-19 10:12:31.1934|DEBUG|OnDoc| +2026-03-19 10:12:31.1934|DEBUG|OnDoc| +2026-03-19 10:12:31.1934|DEBUG|OnDoc| +2026-03-19 10:12:31.1934|DEBUG|OnDoc|Generate_Word +2026-03-19 10:12:31.2134|DEBUG|OnDoc|Word2013 +2026-03-19 10:12:31.2134|DEBUG|OnDoc|Word2013 +2026-03-19 10:14:11.0846|DEBUG|OnDoc|Generate_Word +2026-03-19 10:14:11.1236|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017631 +2026-03-19 10:14:11.1236|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:14:11.1236|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:14:11.1236|DEBUG|OnDoc| +2026-03-19 10:14:11.1392|DEBUG|OnDoc| +2026-03-19 10:14:11.1392|DEBUG|OnDoc| +2026-03-19 10:14:11.1392|DEBUG|OnDoc| +2026-03-19 10:14:11.1392|DEBUG|OnDoc| +2026-03-19 10:14:11.1392|DEBUG|OnDoc| +2026-03-19 10:14:56.8814|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:14:56.9393|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:14:56.9679|INFO|APIDocLog|Input JSON +2026-03-19 10:14:56.9679|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:14:56.9679|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9735|DEBUG|OnDoc| +2026-03-19 10:14:56.9890|DEBUG|OnDoc| +2026-03-19 10:14:57.0121|DEBUG|OnDoc| +2026-03-19 10:14:57.0121|DEBUG|OnDoc| +2026-03-19 10:14:57.0237|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:14:57.0667|DEBUG|OnDoc| +2026-03-19 10:14:57.0667|DEBUG|OnDoc| +2026-03-19 10:14:57.0910|DEBUG|OnDoc| +2026-03-19 10:14:57.0910|DEBUG|OnDoc| +2026-03-19 10:14:57.1004|DEBUG|OnDoc| +2026-03-19 10:14:57.1004|DEBUG|OnDoc| +2026-03-19 10:14:57.1004|DEBUG|OnDoc| +2026-03-19 10:14:57.1004|DEBUG|OnDoc| +2026-03-19 10:14:57.1218|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:14:57.1218|DEBUG|OnDoc| +2026-03-19 10:14:57.1218|DEBUG|OnDoc| +2026-03-19 10:14:57.1218|DEBUG|OnDoc| +2026-03-19 10:14:57.1218|DEBUG|OnDoc| +2026-03-19 10:14:57.1295|DEBUG|OnDoc| +2026-03-19 10:14:57.1295|DEBUG|OnDoc| +2026-03-19 10:14:57.1295|DEBUG|OnDoc| +2026-03-19 10:14:57.1295|DEBUG|OnDoc| +2026-03-19 10:14:57.1295|DEBUG|OnDoc|Generate_Word +2026-03-19 10:14:57.1471|DEBUG|OnDoc|Word2013 +2026-03-19 10:14:57.1471|DEBUG|OnDoc|Word2013 +2026-03-19 10:15:03.4336|DEBUG|OnDoc|Generate_Word +2026-03-19 10:15:03.4724|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017646 +2026-03-19 10:15:03.4734|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:15:03.4734|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:15:03.4734|DEBUG|OnDoc| +2026-03-19 10:15:03.4963|DEBUG|OnDoc| +2026-03-19 10:15:03.4963|DEBUG|OnDoc| +2026-03-19 10:15:03.4963|DEBUG|OnDoc| +2026-03-19 10:15:03.4963|DEBUG|OnDoc| +2026-03-19 10:15:03.4963|DEBUG|OnDoc| +2026-03-19 10:15:27.9769|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:15:28.0652|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:15:28.0930|INFO|APIDocLog|Input JSON +2026-03-19 10:15:28.0930|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:15:28.0930|DEBUG|OnDoc| +2026-03-19 10:15:28.0930|DEBUG|OnDoc| +2026-03-19 10:15:28.0930|DEBUG|OnDoc| +2026-03-19 10:15:28.0930|DEBUG|OnDoc| +2026-03-19 10:15:28.0930|DEBUG|OnDoc| +2026-03-19 10:15:28.0930|DEBUG|OnDoc| +2026-03-19 10:15:28.0930|DEBUG|OnDoc| +2026-03-19 10:15:28.0930|DEBUG|OnDoc| +2026-03-19 10:15:28.0930|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.0982|DEBUG|OnDoc| +2026-03-19 10:15:28.1357|DEBUG|OnDoc| +2026-03-19 10:15:28.1357|DEBUG|OnDoc| +2026-03-19 10:15:28.1463|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:15:28.1889|DEBUG|OnDoc| +2026-03-19 10:15:28.1889|DEBUG|OnDoc| +2026-03-19 10:15:28.2130|DEBUG|OnDoc| +2026-03-19 10:15:28.2130|DEBUG|OnDoc| +2026-03-19 10:15:28.2130|DEBUG|OnDoc| +2026-03-19 10:15:28.2231|DEBUG|OnDoc| +2026-03-19 10:15:28.2231|DEBUG|OnDoc| +2026-03-19 10:15:28.2231|DEBUG|OnDoc| +2026-03-19 10:15:28.2445|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:15:28.2445|DEBUG|OnDoc| +2026-03-19 10:15:28.2445|DEBUG|OnDoc| +2026-03-19 10:15:28.2445|DEBUG|OnDoc| +2026-03-19 10:15:28.2445|DEBUG|OnDoc| +2026-03-19 10:15:28.2445|DEBUG|OnDoc| +2026-03-19 10:15:28.2567|DEBUG|OnDoc| +2026-03-19 10:15:28.2567|DEBUG|OnDoc| +2026-03-19 10:15:28.2567|DEBUG|OnDoc| +2026-03-19 10:15:28.2567|DEBUG|OnDoc|Generate_Word +2026-03-19 10:15:28.2567|DEBUG|OnDoc|Word2013 +2026-03-19 10:15:28.2567|DEBUG|OnDoc|Word2013 +2026-03-19 10:16:58.8698|DEBUG|OnDoc|Generate_Word +2026-03-19 10:16:58.9106|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017654 +2026-03-19 10:16:58.9106|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:16:58.9106|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:16:58.9106|DEBUG|OnDoc| +2026-03-19 10:16:58.9106|DEBUG|OnDoc| +2026-03-19 10:16:58.9106|DEBUG|OnDoc| +2026-03-19 10:16:58.9106|DEBUG|OnDoc| +2026-03-19 10:16:58.9273|DEBUG|OnDoc| +2026-03-19 10:16:58.9273|DEBUG|OnDoc| +2026-03-19 10:17:26.1467|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:17:26.2319|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:17:26.2602|INFO|APIDocLog|Input JSON +2026-03-19 10:17:26.2602|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2602|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2701|DEBUG|OnDoc| +2026-03-19 10:17:26.2985|DEBUG|OnDoc| +2026-03-19 10:17:26.2985|DEBUG|OnDoc| +2026-03-19 10:17:26.3090|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:17:26.3541|DEBUG|OnDoc| +2026-03-19 10:17:26.3541|DEBUG|OnDoc| +2026-03-19 10:17:26.3774|DEBUG|OnDoc| +2026-03-19 10:17:26.3774|DEBUG|OnDoc| +2026-03-19 10:17:26.3894|DEBUG|OnDoc| +2026-03-19 10:17:26.3894|DEBUG|OnDoc| +2026-03-19 10:17:26.3894|DEBUG|OnDoc| +2026-03-19 10:17:26.3894|DEBUG|OnDoc| +2026-03-19 10:17:26.4103|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:17:26.4103|DEBUG|OnDoc| +2026-03-19 10:17:26.4178|DEBUG|OnDoc| +2026-03-19 10:17:26.4178|DEBUG|OnDoc| +2026-03-19 10:17:26.4178|DEBUG|OnDoc| +2026-03-19 10:17:26.4178|DEBUG|OnDoc| +2026-03-19 10:17:26.4178|DEBUG|OnDoc| +2026-03-19 10:17:26.4178|DEBUG|OnDoc| +2026-03-19 10:17:26.4293|DEBUG|OnDoc| +2026-03-19 10:17:26.4293|DEBUG|OnDoc|Generate_Word +2026-03-19 10:17:26.4293|DEBUG|OnDoc|Word2013 +2026-03-19 10:17:26.4293|DEBUG|OnDoc|Word2013 +2026-03-19 10:29:07.9595|DEBUG|OnDoc|Generate_Word +2026-03-19 10:29:08.0059|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017662 +2026-03-19 10:29:08.0059|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:29:08.0059|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:29:08.0059|DEBUG|OnDoc| +2026-03-19 10:29:08.0251|DEBUG|OnDoc| +2026-03-19 10:29:08.0251|DEBUG|OnDoc| +2026-03-19 10:29:08.0251|DEBUG|OnDoc| +2026-03-19 10:29:08.0251|DEBUG|OnDoc| +2026-03-19 10:29:08.0251|DEBUG|OnDoc| +2026-03-19 10:29:40.6555|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:29:40.7535|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:29:40.7832|INFO|APIDocLog|Input JSON +2026-03-19 10:29:40.7862|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.7862|DEBUG|OnDoc| +2026-03-19 10:29:40.8275|DEBUG|OnDoc| +2026-03-19 10:29:40.8275|DEBUG|OnDoc| +2026-03-19 10:29:40.8421|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:29:40.8987|DEBUG|OnDoc| +2026-03-19 10:29:40.8987|DEBUG|OnDoc| +2026-03-19 10:29:40.9247|DEBUG|OnDoc| +2026-03-19 10:29:40.9247|DEBUG|OnDoc| +2026-03-19 10:29:40.9360|DEBUG|OnDoc| +2026-03-19 10:29:40.9360|DEBUG|OnDoc| +2026-03-19 10:29:40.9360|DEBUG|OnDoc| +2026-03-19 10:29:40.9360|DEBUG|OnDoc| +2026-03-19 10:29:40.9616|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:29:40.9616|DEBUG|OnDoc| +2026-03-19 10:29:40.9616|DEBUG|OnDoc| +2026-03-19 10:29:40.9616|DEBUG|OnDoc| +2026-03-19 10:29:40.9616|DEBUG|OnDoc| +2026-03-19 10:29:40.9616|DEBUG|OnDoc| +2026-03-19 10:29:40.9757|DEBUG|OnDoc| +2026-03-19 10:29:40.9757|DEBUG|OnDoc| +2026-03-19 10:29:40.9757|DEBUG|OnDoc| +2026-03-19 10:29:40.9757|DEBUG|OnDoc|Generate_Word +2026-03-19 10:29:40.9757|DEBUG|OnDoc|Word2013 +2026-03-19 10:29:40.9757|DEBUG|OnDoc|Word2013 +2026-03-19 10:30:23.8952|DEBUG|OnDoc|Generate_Word +2026-03-19 10:30:23.9365|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017678 +2026-03-19 10:30:23.9365|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:30:23.9365|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:30:23.9365|DEBUG|OnDoc| +2026-03-19 10:30:23.9526|DEBUG|OnDoc| +2026-03-19 10:30:23.9526|DEBUG|OnDoc| +2026-03-19 10:30:23.9526|DEBUG|OnDoc| +2026-03-19 10:30:23.9526|DEBUG|OnDoc| +2026-03-19 10:30:23.9526|DEBUG|OnDoc| +2026-03-19 10:30:44.2776|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:30:44.3738|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:30:44.4029|INFO|APIDocLog|Input JSON +2026-03-19 10:30:44.4029|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4029|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4109|DEBUG|OnDoc| +2026-03-19 10:30:44.4330|DEBUG|OnDoc| +2026-03-19 10:30:44.4330|DEBUG|OnDoc| +2026-03-19 10:30:44.4420|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:30:44.4867|DEBUG|OnDoc| +2026-03-19 10:30:44.4887|DEBUG|OnDoc| +2026-03-19 10:30:44.5102|DEBUG|OnDoc| +2026-03-19 10:30:44.5102|DEBUG|OnDoc| +2026-03-19 10:30:44.5102|DEBUG|OnDoc| +2026-03-19 10:30:44.5202|DEBUG|OnDoc| +2026-03-19 10:30:44.5202|DEBUG|OnDoc| +2026-03-19 10:30:44.5202|DEBUG|OnDoc| +2026-03-19 10:30:44.5421|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:30:44.5421|DEBUG|OnDoc| +2026-03-19 10:30:44.5544|DEBUG|OnDoc| +2026-03-19 10:30:44.5544|DEBUG|OnDoc| +2026-03-19 10:30:44.5544|DEBUG|OnDoc| +2026-03-19 10:30:44.5544|DEBUG|OnDoc| +2026-03-19 10:30:44.5544|DEBUG|OnDoc| +2026-03-19 10:30:44.5544|DEBUG|OnDoc| +2026-03-19 10:30:44.5544|DEBUG|OnDoc| +2026-03-19 10:30:44.5544|DEBUG|OnDoc|Generate_Word +2026-03-19 10:30:44.5733|DEBUG|OnDoc|Word2013 +2026-03-19 10:30:44.5733|DEBUG|OnDoc|Word2013 +2026-03-19 10:31:21.8625|DEBUG|OnDoc|Generate_Word +2026-03-19 10:31:21.9018|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017683 +2026-03-19 10:31:21.9018|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:31:21.9018|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:31:21.9018|DEBUG|OnDoc| +2026-03-19 10:31:21.9154|DEBUG|OnDoc| +2026-03-19 10:31:21.9154|DEBUG|OnDoc| +2026-03-19 10:31:21.9154|DEBUG|OnDoc| +2026-03-19 10:31:21.9154|DEBUG|OnDoc| +2026-03-19 10:31:21.9154|DEBUG|OnDoc| +2026-03-19 10:31:34.9989|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:31:35.0906|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:31:35.1197|INFO|APIDocLog|Input JSON +2026-03-19 10:31:35.1197|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:31:35.1197|DEBUG|OnDoc| +2026-03-19 10:31:35.1197|DEBUG|OnDoc| +2026-03-19 10:31:35.1197|DEBUG|OnDoc| +2026-03-19 10:31:35.1197|DEBUG|OnDoc| +2026-03-19 10:31:35.1197|DEBUG|OnDoc| +2026-03-19 10:31:35.1197|DEBUG|OnDoc| +2026-03-19 10:31:35.1197|DEBUG|OnDoc| +2026-03-19 10:31:35.1197|DEBUG|OnDoc| +2026-03-19 10:31:35.1197|DEBUG|OnDoc| +2026-03-19 10:31:35.1197|DEBUG|OnDoc| +2026-03-19 10:31:35.1197|DEBUG|OnDoc| +2026-03-19 10:31:35.1197|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1292|DEBUG|OnDoc| +2026-03-19 10:31:35.1580|DEBUG|OnDoc| +2026-03-19 10:31:35.1611|DEBUG|OnDoc| +2026-03-19 10:31:35.1611|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:31:35.2147|DEBUG|OnDoc| +2026-03-19 10:31:35.2147|DEBUG|OnDoc| +2026-03-19 10:31:35.2437|DEBUG|OnDoc| +2026-03-19 10:31:35.2437|DEBUG|OnDoc| +2026-03-19 10:31:35.2563|DEBUG|OnDoc| +2026-03-19 10:31:35.2563|DEBUG|OnDoc| +2026-03-19 10:31:35.2563|DEBUG|OnDoc| +2026-03-19 10:31:35.2563|DEBUG|OnDoc| +2026-03-19 10:31:35.2791|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:31:35.2791|DEBUG|OnDoc| +2026-03-19 10:31:35.2892|DEBUG|OnDoc| +2026-03-19 10:31:35.2892|DEBUG|OnDoc| +2026-03-19 10:31:35.2892|DEBUG|OnDoc| +2026-03-19 10:31:35.2892|DEBUG|OnDoc| +2026-03-19 10:31:35.2892|DEBUG|OnDoc| +2026-03-19 10:31:35.2892|DEBUG|OnDoc| +2026-03-19 10:31:35.2892|DEBUG|OnDoc| +2026-03-19 10:31:35.3015|DEBUG|OnDoc|Generate_Word +2026-03-19 10:31:35.3015|DEBUG|OnDoc|Word2013 +2026-03-19 10:31:35.3015|DEBUG|OnDoc|Word2013 +2026-03-19 10:31:46.0998|DEBUG|OnDoc|Generate_Word +2026-03-19 10:31:46.1399|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017699 +2026-03-19 10:31:46.1399|INFO|DocLog|Dokument über API erstellt +2026-03-19 10:31:46.1399|INFO|APIDocLog|Dokument return to sender +2026-03-19 10:31:46.1399|DEBUG|OnDoc| +2026-03-19 10:31:46.1575|DEBUG|OnDoc| +2026-03-19 10:31:46.1575|DEBUG|OnDoc| +2026-03-19 10:31:46.1575|DEBUG|OnDoc| +2026-03-19 10:31:46.1575|DEBUG|OnDoc| +2026-03-19 10:31:46.1575|DEBUG|OnDoc| +2026-03-19 10:31:55.1393|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 10:31:55.2388|INFO|APIDocLog|Start CreateDoc +2026-03-19 10:31:55.2749|INFO|APIDocLog|Input JSON +2026-03-19 10:31:55.2749|DEBUG|OnDoc|Start GenDoc +2026-03-19 10:31:55.2749|DEBUG|OnDoc| +2026-03-19 10:31:55.2749|DEBUG|OnDoc| +2026-03-19 10:31:55.2749|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.2855|DEBUG|OnDoc| +2026-03-19 10:31:55.3012|DEBUG|OnDoc| +2026-03-19 10:31:55.3012|DEBUG|OnDoc| +2026-03-19 10:31:55.3012|DEBUG|OnDoc| +2026-03-19 10:31:55.3012|DEBUG|OnDoc| +2026-03-19 10:31:55.3012|DEBUG|OnDoc| +2026-03-19 10:31:55.3193|DEBUG|OnDoc| +2026-03-19 10:31:55.3193|DEBUG|OnDoc| +2026-03-19 10:31:55.3193|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 10:31:55.3857|DEBUG|OnDoc| +2026-03-19 10:31:55.3857|DEBUG|OnDoc| +2026-03-19 10:31:55.4135|DEBUG|OnDoc| +2026-03-19 10:31:55.4135|DEBUG|OnDoc| +2026-03-19 10:31:55.4135|DEBUG|OnDoc| +2026-03-19 10:31:55.4135|DEBUG|OnDoc| +2026-03-19 10:31:55.4267|DEBUG|OnDoc| +2026-03-19 10:31:55.4267|DEBUG|OnDoc| +2026-03-19 10:31:55.4508|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 10:31:55.4508|DEBUG|OnDoc| +2026-03-19 10:31:55.4589|DEBUG|OnDoc| +2026-03-19 10:31:55.4589|DEBUG|OnDoc| +2026-03-19 10:31:55.4589|DEBUG|OnDoc| +2026-03-19 10:31:55.4589|DEBUG|OnDoc| +2026-03-19 10:31:55.4589|DEBUG|OnDoc| +2026-03-19 10:31:55.4589|DEBUG|OnDoc| +2026-03-19 10:31:55.4737|DEBUG|OnDoc| +2026-03-19 10:31:55.4737|DEBUG|OnDoc|Generate_Word +2026-03-19 10:31:55.4737|DEBUG|OnDoc|Word2013 +2026-03-19 10:31:55.4737|DEBUG|OnDoc|Word2013 +2026-03-19 11:20:16.7946|DEBUG|OnDoc| +2026-03-19 11:20:16.9416|DEBUG|OnDoc| +2026-03-19 11:20:16.9451|DEBUG|OnDoc| +2026-03-19 11:20:16.9451|DEBUG|OnDoc| +2026-03-19 11:20:17.3762|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 11:20:17.7613|INFO|APIDocLog|Start CreateDoc +2026-03-19 11:20:17.8948|INFO|APIDocLog|Input JSON +2026-03-19 11:20:17.9215|DEBUG|OnDoc|Start GenDoc +2026-03-19 11:20:17.9215|DEBUG|OnDoc| +2026-03-19 11:20:17.9281|DEBUG|OnDoc| +2026-03-19 11:20:17.9281|DEBUG|OnDoc| +2026-03-19 11:20:17.9281|DEBUG|OnDoc| +2026-03-19 11:20:17.9281|DEBUG|OnDoc| +2026-03-19 11:20:17.9281|DEBUG|OnDoc| +2026-03-19 11:20:17.9281|DEBUG|OnDoc| +2026-03-19 11:20:17.9281|DEBUG|OnDoc| +2026-03-19 11:20:17.9281|DEBUG|OnDoc| +2026-03-19 11:20:17.9281|DEBUG|OnDoc| +2026-03-19 11:20:17.9281|DEBUG|OnDoc| +2026-03-19 11:20:17.9281|DEBUG|OnDoc| +2026-03-19 11:20:17.9281|DEBUG|OnDoc| +2026-03-19 11:20:17.9281|DEBUG|OnDoc| +2026-03-19 11:20:17.9281|DEBUG|OnDoc| +2026-03-19 11:20:17.9451|DEBUG|OnDoc| +2026-03-19 11:20:17.9451|DEBUG|OnDoc| +2026-03-19 11:20:17.9451|DEBUG|OnDoc| +2026-03-19 11:20:17.9451|DEBUG|OnDoc| +2026-03-19 11:20:17.9451|DEBUG|OnDoc| +2026-03-19 11:20:17.9451|DEBUG|OnDoc| +2026-03-19 11:20:17.9663|DEBUG|OnDoc| +2026-03-19 11:20:17.9663|DEBUG|OnDoc| +2026-03-19 11:20:17.9663|DEBUG|OnDoc| +2026-03-19 11:20:17.9663|DEBUG|OnDoc| +2026-03-19 11:20:17.9734|DEBUG|OnDoc| +2026-03-19 11:20:17.9734|DEBUG|OnDoc| +2026-03-19 11:20:17.9734|DEBUG|OnDoc| +2026-03-19 11:20:17.9734|DEBUG|OnDoc| +2026-03-19 11:20:17.9734|DEBUG|OnDoc| +2026-03-19 11:20:17.9734|DEBUG|OnDoc| +2026-03-19 11:20:17.9734|DEBUG|OnDoc| +2026-03-19 11:20:17.9734|DEBUG|OnDoc| +2026-03-19 11:20:17.9734|DEBUG|OnDoc| +2026-03-19 11:20:18.0199|DEBUG|OnDoc| +2026-03-19 11:20:18.0199|DEBUG|OnDoc| +2026-03-19 11:20:18.0426|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 11:20:18.3004|DEBUG|OnDoc| +2026-03-19 11:20:18.3112|DEBUG|OnDoc| +2026-03-19 11:20:18.4093|DEBUG|OnDoc| +2026-03-19 11:20:18.4123|DEBUG|OnDoc| +2026-03-19 11:20:18.4378|DEBUG|OnDoc| +2026-03-19 11:20:18.4378|DEBUG|OnDoc| +2026-03-19 11:20:18.4378|DEBUG|OnDoc| +2026-03-19 11:20:18.4378|DEBUG|OnDoc| +2026-03-19 11:20:18.4655|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 11:20:18.4655|DEBUG|OnDoc| +2026-03-19 11:20:18.4796|DEBUG|OnDoc| +2026-03-19 11:20:18.4796|DEBUG|OnDoc| +2026-03-19 11:20:18.4796|DEBUG|OnDoc| +2026-03-19 11:20:18.4796|DEBUG|OnDoc| +2026-03-19 11:20:18.4968|DEBUG|OnDoc| +2026-03-19 11:20:18.4968|DEBUG|OnDoc| +2026-03-19 11:20:18.5160|DEBUG|OnDoc| +2026-03-19 11:20:18.5160|DEBUG|OnDoc|Generate_Word +2026-03-19 11:20:18.9806|DEBUG|OnDoc|Word2013 +2026-03-19 11:20:18.9912|DEBUG|OnDoc|Word2013 +2026-03-19 11:20:41.6695|DEBUG|OnDoc|Generate_Word +2026-03-19 11:20:41.7145|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017714 +2026-03-19 11:20:41.7145|INFO|DocLog|Dokument über API erstellt +2026-03-19 11:20:41.7145|INFO|APIDocLog|Dokument return to sender +2026-03-19 11:20:41.7145|DEBUG|OnDoc| +2026-03-19 11:20:41.7303|DEBUG|OnDoc| +2026-03-19 11:20:41.7303|DEBUG|OnDoc| +2026-03-19 11:20:41.7303|DEBUG|OnDoc| +2026-03-19 11:20:41.7303|DEBUG|OnDoc| +2026-03-19 11:20:41.7303|DEBUG|OnDoc| +2026-03-19 11:20:48.4234|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 11:20:48.5080|INFO|APIDocLog|Start CreateDoc +2026-03-19 11:20:48.5343|INFO|APIDocLog|Input JSON +2026-03-19 11:20:48.5373|DEBUG|OnDoc|Start GenDoc +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5373|DEBUG|OnDoc| +2026-03-19 11:20:48.5724|DEBUG|OnDoc| +2026-03-19 11:20:48.5724|DEBUG|OnDoc| +2026-03-19 11:20:48.5724|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 11:20:48.6264|DEBUG|OnDoc| +2026-03-19 11:20:48.6299|DEBUG|OnDoc| +2026-03-19 11:20:48.6488|DEBUG|OnDoc| +2026-03-19 11:20:48.6488|DEBUG|OnDoc| +2026-03-19 11:20:48.6488|DEBUG|OnDoc| +2026-03-19 11:20:48.6488|DEBUG|OnDoc| +2026-03-19 11:20:48.6488|DEBUG|OnDoc| +2026-03-19 11:20:48.6488|DEBUG|OnDoc| +2026-03-19 11:20:48.6796|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 11:20:48.6796|DEBUG|OnDoc| +2026-03-19 11:20:48.6796|DEBUG|OnDoc| +2026-03-19 11:20:48.6796|DEBUG|OnDoc| +2026-03-19 11:20:48.6796|DEBUG|OnDoc| +2026-03-19 11:20:48.6796|DEBUG|OnDoc| +2026-03-19 11:20:48.6925|DEBUG|OnDoc| +2026-03-19 11:20:48.6925|DEBUG|OnDoc| +2026-03-19 11:20:48.6925|DEBUG|OnDoc| +2026-03-19 11:20:48.6925|DEBUG|OnDoc|Generate_Word +2026-03-19 11:20:48.7106|DEBUG|OnDoc|Word2013 +2026-03-19 11:20:48.7106|DEBUG|OnDoc|Word2013 +2026-03-19 11:21:02.8538|DEBUG|OnDoc|Generate_Word +2026-03-19 11:21:02.8690|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017722 +2026-03-19 11:21:02.8690|INFO|DocLog|Dokument über API erstellt +2026-03-19 11:21:02.8690|INFO|APIDocLog|Dokument return to sender +2026-03-19 11:21:02.8690|DEBUG|OnDoc| +2026-03-19 11:21:02.8937|DEBUG|OnDoc| +2026-03-19 11:21:02.8952|DEBUG|OnDoc| +2026-03-19 11:21:02.8952|DEBUG|OnDoc| +2026-03-19 11:21:02.8952|DEBUG|OnDoc| +2026-03-19 11:21:02.8952|DEBUG|OnDoc| +2026-03-19 11:21:19.8707|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 11:21:19.9515|INFO|APIDocLog|Start CreateDoc +2026-03-19 11:21:19.9785|INFO|APIDocLog|Input JSON +2026-03-19 11:21:19.9785|DEBUG|OnDoc|Start GenDoc +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9785|DEBUG|OnDoc| +2026-03-19 11:21:19.9906|DEBUG|OnDoc| +2026-03-19 11:21:19.9906|DEBUG|OnDoc| +2026-03-19 11:21:19.9906|DEBUG|OnDoc| +2026-03-19 11:21:19.9906|DEBUG|OnDoc| +2026-03-19 11:21:19.9906|DEBUG|OnDoc| +2026-03-19 11:21:19.9906|DEBUG|OnDoc| +2026-03-19 11:21:19.9906|DEBUG|OnDoc| +2026-03-19 11:21:19.9906|DEBUG|OnDoc| +2026-03-19 11:21:19.9906|DEBUG|OnDoc| +2026-03-19 11:21:19.9906|DEBUG|OnDoc| +2026-03-19 11:21:19.9906|DEBUG|OnDoc| +2026-03-19 11:21:19.9906|DEBUG|OnDoc| +2026-03-19 11:21:19.9906|DEBUG|OnDoc| +2026-03-19 11:21:19.9906|DEBUG|OnDoc| +2026-03-19 11:21:20.0176|DEBUG|OnDoc| +2026-03-19 11:21:20.0176|DEBUG|OnDoc| +2026-03-19 11:21:20.0293|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 11:21:20.0785|DEBUG|OnDoc| +2026-03-19 11:21:20.0785|DEBUG|OnDoc| +2026-03-19 11:21:20.1018|DEBUG|OnDoc| +2026-03-19 11:21:20.1018|DEBUG|OnDoc| +2026-03-19 11:21:20.1018|DEBUG|OnDoc| +2026-03-19 11:21:20.1018|DEBUG|OnDoc| +2026-03-19 11:21:20.1018|DEBUG|OnDoc| +2026-03-19 11:21:20.1018|DEBUG|OnDoc| +2026-03-19 11:21:20.1317|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 11:21:20.1317|DEBUG|OnDoc| +2026-03-19 11:21:20.1317|DEBUG|OnDoc| +2026-03-19 11:21:20.1317|DEBUG|OnDoc| +2026-03-19 11:21:20.1317|DEBUG|OnDoc| +2026-03-19 11:21:20.1317|DEBUG|OnDoc| +2026-03-19 11:21:20.1474|DEBUG|OnDoc| +2026-03-19 11:21:20.1474|DEBUG|OnDoc| +2026-03-19 11:21:20.1474|DEBUG|OnDoc| +2026-03-19 11:21:20.1474|DEBUG|OnDoc|Generate_Word +2026-03-19 11:21:20.1474|DEBUG|OnDoc|Word2013 +2026-03-19 11:21:20.1609|DEBUG|OnDoc|Word2013 +2026-03-19 11:21:37.4512|DEBUG|OnDoc|Generate_Word +2026-03-19 11:21:37.4919|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017738 +2026-03-19 11:21:37.4919|INFO|DocLog|Dokument über API erstellt +2026-03-19 11:21:37.4919|INFO|APIDocLog|Dokument return to sender +2026-03-19 11:21:37.4919|DEBUG|OnDoc| +2026-03-19 11:21:37.5073|DEBUG|OnDoc| +2026-03-19 11:21:37.5073|DEBUG|OnDoc| +2026-03-19 11:21:37.5073|DEBUG|OnDoc| +2026-03-19 11:21:37.5073|DEBUG|OnDoc| +2026-03-19 11:21:37.5073|DEBUG|OnDoc| +2026-03-19 11:21:44.8983|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 11:21:45.0054|INFO|APIDocLog|Start CreateDoc +2026-03-19 11:21:45.0404|INFO|APIDocLog|Input JSON +2026-03-19 11:21:45.0404|DEBUG|OnDoc|Start GenDoc +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0404|DEBUG|OnDoc| +2026-03-19 11:21:45.0519|DEBUG|OnDoc| +2026-03-19 11:21:45.0519|DEBUG|OnDoc| +2026-03-19 11:21:45.0519|DEBUG|OnDoc| +2026-03-19 11:21:45.0519|DEBUG|OnDoc| +2026-03-19 11:21:45.0519|DEBUG|OnDoc| +2026-03-19 11:21:45.0519|DEBUG|OnDoc| +2026-03-19 11:21:45.0519|DEBUG|OnDoc| +2026-03-19 11:21:45.0519|DEBUG|OnDoc| +2026-03-19 11:21:45.0519|DEBUG|OnDoc| +2026-03-19 11:21:45.0519|DEBUG|OnDoc| +2026-03-19 11:21:45.0519|DEBUG|OnDoc| +2026-03-19 11:21:45.0519|DEBUG|OnDoc| +2026-03-19 11:21:45.0519|DEBUG|OnDoc| +2026-03-19 11:21:45.0519|DEBUG|OnDoc| +2026-03-19 11:21:45.0790|DEBUG|OnDoc| +2026-03-19 11:21:45.0790|DEBUG|OnDoc| +2026-03-19 11:21:45.0900|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 11:21:45.1374|DEBUG|OnDoc| +2026-03-19 11:21:45.1374|DEBUG|OnDoc| +2026-03-19 11:21:45.1601|DEBUG|OnDoc| +2026-03-19 11:21:45.1610|DEBUG|OnDoc| +2026-03-19 11:21:45.1610|DEBUG|OnDoc| +2026-03-19 11:21:45.1610|DEBUG|OnDoc| +2026-03-19 11:21:45.1610|DEBUG|OnDoc| +2026-03-19 11:21:45.1610|DEBUG|OnDoc| +2026-03-19 11:21:45.1920|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 11:21:45.1920|DEBUG|OnDoc| +2026-03-19 11:21:45.1920|DEBUG|OnDoc| +2026-03-19 11:21:45.1920|DEBUG|OnDoc| +2026-03-19 11:21:45.1920|DEBUG|OnDoc| +2026-03-19 11:21:45.1920|DEBUG|OnDoc| +2026-03-19 11:21:45.1920|DEBUG|OnDoc| +2026-03-19 11:21:45.1920|DEBUG|OnDoc| +2026-03-19 11:21:45.2110|DEBUG|OnDoc| +2026-03-19 11:21:45.2110|DEBUG|OnDoc|Generate_Word +2026-03-19 11:21:45.2110|DEBUG|OnDoc|Word2013 +2026-03-19 11:21:45.2110|DEBUG|OnDoc|Word2013 +2026-03-19 11:22:09.4551|DEBUG|OnDoc|Generate_Word +2026-03-19 11:22:09.4970|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017743 +2026-03-19 11:22:09.4970|INFO|DocLog|Dokument über API erstellt +2026-03-19 11:22:09.4970|INFO|APIDocLog|Dokument return to sender +2026-03-19 11:22:09.4970|DEBUG|OnDoc| +2026-03-19 11:22:09.5295|DEBUG|OnDoc| +2026-03-19 11:22:09.5295|DEBUG|OnDoc| +2026-03-19 11:22:09.5295|DEBUG|OnDoc| +2026-03-19 11:22:09.5369|DEBUG|OnDoc| +2026-03-19 11:22:09.5369|DEBUG|OnDoc| +2026-03-19 11:22:10.5679|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 11:22:10.6222|INFO|APIDocLog|Start CreateDoc +2026-03-19 11:22:10.6504|INFO|APIDocLog|Input JSON +2026-03-19 11:22:10.6504|DEBUG|OnDoc|Start GenDoc +2026-03-19 11:22:10.6504|DEBUG|OnDoc| +2026-03-19 11:22:10.6504|DEBUG|OnDoc| +2026-03-19 11:22:10.6504|DEBUG|OnDoc| +2026-03-19 11:22:10.6504|DEBUG|OnDoc| +2026-03-19 11:22:10.6504|DEBUG|OnDoc| +2026-03-19 11:22:10.6504|DEBUG|OnDoc| +2026-03-19 11:22:10.6504|DEBUG|OnDoc| +2026-03-19 11:22:10.6504|DEBUG|OnDoc| +2026-03-19 11:22:10.6504|DEBUG|OnDoc| +2026-03-19 11:22:10.6504|DEBUG|OnDoc| +2026-03-19 11:22:10.6504|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6609|DEBUG|OnDoc| +2026-03-19 11:22:10.6765|DEBUG|OnDoc| +2026-03-19 11:22:10.6765|DEBUG|OnDoc| +2026-03-19 11:22:10.6765|DEBUG|OnDoc| +2026-03-19 11:22:10.7001|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 11:22:10.7511|DEBUG|OnDoc| +2026-03-19 11:22:10.7551|DEBUG|OnDoc| +2026-03-19 11:22:10.7767|DEBUG|OnDoc| +2026-03-19 11:22:10.7767|DEBUG|OnDoc| +2026-03-19 11:22:10.7882|DEBUG|OnDoc| +2026-03-19 11:22:10.7882|DEBUG|OnDoc| +2026-03-19 11:22:10.7882|DEBUG|OnDoc| +2026-03-19 11:22:10.7882|DEBUG|OnDoc| +2026-03-19 11:22:10.8108|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 11:22:10.8108|DEBUG|OnDoc| +2026-03-19 11:22:10.8189|DEBUG|OnDoc| +2026-03-19 11:22:10.8189|DEBUG|OnDoc| +2026-03-19 11:22:10.8189|DEBUG|OnDoc| +2026-03-19 11:22:10.8189|DEBUG|OnDoc| +2026-03-19 11:22:10.8331|DEBUG|OnDoc| +2026-03-19 11:22:10.8331|DEBUG|OnDoc| +2026-03-19 11:22:10.8331|DEBUG|OnDoc| +2026-03-19 11:22:10.8331|DEBUG|OnDoc|Generate_Word +2026-03-19 11:22:10.8490|DEBUG|OnDoc|Word2013 +2026-03-19 11:22:10.8490|DEBUG|OnDoc|Word2013 +2026-03-19 11:24:59.9906|DEBUG|OnDoc|Generate_Word +2026-03-19 11:25:00.0349|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017759 +2026-03-19 11:25:00.0364|INFO|DocLog|Dokument über API erstellt +2026-03-19 11:25:00.0364|INFO|APIDocLog|Dokument return to sender +2026-03-19 11:25:00.0364|DEBUG|OnDoc| +2026-03-19 11:25:00.0534|DEBUG|OnDoc| +2026-03-19 11:25:00.0534|DEBUG|OnDoc| +2026-03-19 11:25:00.0534|DEBUG|OnDoc| +2026-03-19 11:25:00.0534|DEBUG|OnDoc| +2026-03-19 11:25:00.0534|DEBUG|OnDoc| +2026-03-19 11:25:09.0522|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 11:25:09.1287|INFO|APIDocLog|Start CreateDoc +2026-03-19 11:25:09.1517|INFO|APIDocLog|Input JSON +2026-03-19 11:25:09.1517|DEBUG|OnDoc|Start GenDoc +2026-03-19 11:25:09.1517|DEBUG|OnDoc| +2026-03-19 11:25:09.1517|DEBUG|OnDoc| +2026-03-19 11:25:09.1517|DEBUG|OnDoc| +2026-03-19 11:25:09.1517|DEBUG|OnDoc| +2026-03-19 11:25:09.1517|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1609|DEBUG|OnDoc| +2026-03-19 11:25:09.1763|DEBUG|OnDoc| +2026-03-19 11:25:09.1763|DEBUG|OnDoc| +2026-03-19 11:25:09.1763|DEBUG|OnDoc| +2026-03-19 11:25:09.1763|DEBUG|OnDoc| +2026-03-19 11:25:09.1763|DEBUG|OnDoc| +2026-03-19 11:25:09.1763|DEBUG|OnDoc| +2026-03-19 11:25:09.1763|DEBUG|OnDoc| +2026-03-19 11:25:09.1763|DEBUG|OnDoc| +2026-03-19 11:25:09.1763|DEBUG|OnDoc| +2026-03-19 11:25:09.1763|DEBUG|OnDoc| +2026-03-19 11:25:09.1763|DEBUG|OnDoc| +2026-03-19 11:25:09.1763|DEBUG|OnDoc| +2026-03-19 11:25:09.1763|DEBUG|OnDoc| +2026-03-19 11:25:09.2059|DEBUG|OnDoc| +2026-03-19 11:25:09.2099|DEBUG|OnDoc| +2026-03-19 11:25:09.2099|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 11:25:09.2656|DEBUG|OnDoc| +2026-03-19 11:25:09.2656|DEBUG|OnDoc| +2026-03-19 11:25:09.2819|DEBUG|OnDoc| +2026-03-19 11:25:09.2819|DEBUG|OnDoc| +2026-03-19 11:25:09.2959|DEBUG|OnDoc| +2026-03-19 11:25:09.2959|DEBUG|OnDoc| +2026-03-19 11:25:09.2959|DEBUG|OnDoc| +2026-03-19 11:25:09.2959|DEBUG|OnDoc| +2026-03-19 11:25:09.3120|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 11:25:09.3120|DEBUG|OnDoc| +2026-03-19 11:25:09.3246|DEBUG|OnDoc| +2026-03-19 11:25:09.3246|DEBUG|OnDoc| +2026-03-19 11:25:09.3246|DEBUG|OnDoc| +2026-03-19 11:25:09.3246|DEBUG|OnDoc| +2026-03-19 11:25:09.3342|DEBUG|OnDoc| +2026-03-19 11:25:09.3342|DEBUG|OnDoc| +2026-03-19 11:25:09.3342|DEBUG|OnDoc| +2026-03-19 11:25:09.3342|DEBUG|OnDoc|Generate_Word +2026-03-19 11:25:09.3502|DEBUG|OnDoc|Word2013 +2026-03-19 11:25:09.3502|DEBUG|OnDoc|Word2013 +2026-03-19 11:26:25.3489|DEBUG|OnDoc|Generate_Word +2026-03-19 11:26:25.3901|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017767 +2026-03-19 11:26:25.3901|INFO|DocLog|Dokument über API erstellt +2026-03-19 11:26:25.3901|INFO|APIDocLog|Dokument return to sender +2026-03-19 11:26:25.3901|DEBUG|OnDoc| +2026-03-19 11:26:25.4051|DEBUG|OnDoc| +2026-03-19 11:26:25.4051|DEBUG|OnDoc| +2026-03-19 11:26:25.4051|DEBUG|OnDoc| +2026-03-19 11:26:25.4051|DEBUG|OnDoc| +2026-03-19 11:26:25.4051|DEBUG|OnDoc| +2026-03-19 11:26:28.7611|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 11:26:28.8294|INFO|APIDocLog|Start CreateDoc +2026-03-19 11:26:28.8491|INFO|APIDocLog|Input JSON +2026-03-19 11:26:28.8491|DEBUG|OnDoc|Start GenDoc +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8491|DEBUG|OnDoc| +2026-03-19 11:26:28.8637|DEBUG|OnDoc| +2026-03-19 11:26:28.8637|DEBUG|OnDoc| +2026-03-19 11:26:28.8637|DEBUG|OnDoc| +2026-03-19 11:26:28.8637|DEBUG|OnDoc| +2026-03-19 11:26:28.8637|DEBUG|OnDoc| +2026-03-19 11:26:28.8637|DEBUG|OnDoc| +2026-03-19 11:26:28.8637|DEBUG|OnDoc| +2026-03-19 11:26:28.8811|DEBUG|OnDoc| +2026-03-19 11:26:28.8811|DEBUG|OnDoc| +2026-03-19 11:26:28.8811|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 11:26:28.9354|DEBUG|OnDoc| +2026-03-19 11:26:28.9354|DEBUG|OnDoc| +2026-03-19 11:26:28.9486|DEBUG|OnDoc| +2026-03-19 11:26:28.9486|DEBUG|OnDoc| +2026-03-19 11:26:28.9486|DEBUG|OnDoc| +2026-03-19 11:26:28.9588|DEBUG|OnDoc| +2026-03-19 11:26:28.9588|DEBUG|OnDoc| +2026-03-19 11:26:28.9588|DEBUG|OnDoc| +2026-03-19 11:26:28.9588|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 11:26:28.9588|DEBUG|OnDoc| +2026-03-19 11:26:28.9753|DEBUG|OnDoc| +2026-03-19 11:26:28.9753|DEBUG|OnDoc| +2026-03-19 11:26:28.9753|DEBUG|OnDoc| +2026-03-19 11:26:28.9753|DEBUG|OnDoc| +2026-03-19 11:26:28.9753|DEBUG|OnDoc| +2026-03-19 11:26:28.9753|DEBUG|OnDoc| +2026-03-19 11:26:28.9753|DEBUG|OnDoc| +2026-03-19 11:26:28.9753|DEBUG|OnDoc|Generate_Word +2026-03-19 11:26:28.9918|DEBUG|OnDoc|Word2013 +2026-03-19 11:26:28.9918|DEBUG|OnDoc|Word2013 +2026-03-19 11:28:04.7723|DEBUG|OnDoc|Generate_Word +2026-03-19 11:28:04.8175|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017775 +2026-03-19 11:28:04.8175|INFO|DocLog|Dokument über API erstellt +2026-03-19 11:28:04.8175|INFO|APIDocLog|Dokument return to sender +2026-03-19 11:28:04.8175|DEBUG|OnDoc| +2026-03-19 11:28:04.8414|DEBUG|OnDoc| +2026-03-19 11:28:04.8414|DEBUG|OnDoc| +2026-03-19 11:28:04.8414|DEBUG|OnDoc| +2026-03-19 11:28:04.8414|DEBUG|OnDoc| +2026-03-19 11:28:04.8414|DEBUG|OnDoc| +2026-03-19 11:28:08.1506|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 11:28:08.2003|INFO|APIDocLog|Start CreateDoc +2026-03-19 11:28:08.2234|INFO|APIDocLog|Input JSON +2026-03-19 11:28:08.2234|DEBUG|OnDoc|Start GenDoc +2026-03-19 11:28:08.2234|DEBUG|OnDoc| +2026-03-19 11:28:08.2234|DEBUG|OnDoc| +2026-03-19 11:28:08.2234|DEBUG|OnDoc| +2026-03-19 11:28:08.2234|DEBUG|OnDoc| +2026-03-19 11:28:08.2234|DEBUG|OnDoc| +2026-03-19 11:28:08.2234|DEBUG|OnDoc| +2026-03-19 11:28:08.2234|DEBUG|OnDoc| +2026-03-19 11:28:08.2234|DEBUG|OnDoc| +2026-03-19 11:28:08.2234|DEBUG|OnDoc| +2026-03-19 11:28:08.2234|DEBUG|OnDoc| +2026-03-19 11:28:08.2234|DEBUG|OnDoc| +2026-03-19 11:28:08.2397|DEBUG|OnDoc| +2026-03-19 11:28:08.2397|DEBUG|OnDoc| +2026-03-19 11:28:08.2397|DEBUG|OnDoc| +2026-03-19 11:28:08.2397|DEBUG|OnDoc| +2026-03-19 11:28:08.2397|DEBUG|OnDoc| +2026-03-19 11:28:08.2397|DEBUG|OnDoc| +2026-03-19 11:28:08.2397|DEBUG|OnDoc| +2026-03-19 11:28:08.2397|DEBUG|OnDoc| +2026-03-19 11:28:08.2397|DEBUG|OnDoc| +2026-03-19 11:28:08.2397|DEBUG|OnDoc| +2026-03-19 11:28:08.2397|DEBUG|OnDoc| +2026-03-19 11:28:08.2397|DEBUG|OnDoc| +2026-03-19 11:28:08.2397|DEBUG|OnDoc| +2026-03-19 11:28:08.2397|DEBUG|OnDoc| +2026-03-19 11:28:08.2550|DEBUG|OnDoc| +2026-03-19 11:28:08.2550|DEBUG|OnDoc| +2026-03-19 11:28:08.2550|DEBUG|OnDoc| +2026-03-19 11:28:08.2550|DEBUG|OnDoc| +2026-03-19 11:28:08.2550|DEBUG|OnDoc| +2026-03-19 11:28:08.2550|DEBUG|OnDoc| +2026-03-19 11:28:08.2550|DEBUG|OnDoc| +2026-03-19 11:28:08.2550|DEBUG|OnDoc| +2026-03-19 11:28:08.2550|DEBUG|OnDoc| +2026-03-19 11:28:08.2770|DEBUG|OnDoc| +2026-03-19 11:28:08.2770|DEBUG|OnDoc| +2026-03-19 11:28:08.2890|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 11:28:08.3358|DEBUG|OnDoc| +2026-03-19 11:28:08.3358|DEBUG|OnDoc| +2026-03-19 11:28:08.3547|DEBUG|OnDoc| +2026-03-19 11:28:08.3547|DEBUG|OnDoc| +2026-03-19 11:28:08.3663|DEBUG|OnDoc| +2026-03-19 11:28:08.3663|DEBUG|OnDoc| +2026-03-19 11:28:08.3663|DEBUG|OnDoc| +2026-03-19 11:28:08.3663|DEBUG|OnDoc| +2026-03-19 11:28:08.3821|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 11:28:08.3821|DEBUG|OnDoc| +2026-03-19 11:28:08.3821|DEBUG|OnDoc| +2026-03-19 11:28:08.3821|DEBUG|OnDoc| +2026-03-19 11:28:08.3821|DEBUG|OnDoc| +2026-03-19 11:28:08.3949|DEBUG|OnDoc| +2026-03-19 11:28:08.3949|DEBUG|OnDoc| +2026-03-19 11:28:08.3949|DEBUG|OnDoc| +2026-03-19 11:28:08.4110|DEBUG|OnDoc| +2026-03-19 11:28:08.4110|DEBUG|OnDoc|Generate_Word +2026-03-19 11:28:08.4110|DEBUG|OnDoc|Word2013 +2026-03-19 11:28:08.4110|DEBUG|OnDoc|Word2013 +2026-03-19 11:28:37.1411|DEBUG|OnDoc|Generate_Word +2026-03-19 11:28:37.1822|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017780 +2026-03-19 11:28:37.1822|INFO|DocLog|Dokument über API erstellt +2026-03-19 11:28:37.1822|INFO|APIDocLog|Dokument return to sender +2026-03-19 11:28:37.1822|DEBUG|OnDoc| +2026-03-19 11:28:37.1976|DEBUG|OnDoc| +2026-03-19 11:28:37.1976|DEBUG|OnDoc| +2026-03-19 11:28:37.1976|DEBUG|OnDoc| +2026-03-19 11:28:37.1976|DEBUG|OnDoc| +2026-03-19 11:28:37.1976|DEBUG|OnDoc| +2026-03-19 11:28:39.8800|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 11:28:39.9316|INFO|APIDocLog|Start CreateDoc +2026-03-19 11:28:39.9525|INFO|APIDocLog|Input JSON +2026-03-19 11:28:39.9525|DEBUG|OnDoc|Start GenDoc +2026-03-19 11:28:39.9525|DEBUG|OnDoc| +2026-03-19 11:28:39.9525|DEBUG|OnDoc| +2026-03-19 11:28:39.9525|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9575|DEBUG|OnDoc| +2026-03-19 11:28:39.9840|DEBUG|OnDoc| +2026-03-19 11:28:39.9840|DEBUG|OnDoc| +2026-03-19 11:28:39.9950|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 11:28:40.0855|DEBUG|OnDoc| +2026-03-19 11:28:40.0855|DEBUG|OnDoc| +2026-03-19 11:28:40.1187|DEBUG|OnDoc| +2026-03-19 11:28:40.1187|DEBUG|OnDoc| +2026-03-19 11:28:40.1335|DEBUG|OnDoc| +2026-03-19 11:28:40.1335|DEBUG|OnDoc| +2026-03-19 11:28:40.1335|DEBUG|OnDoc| +2026-03-19 11:28:40.1335|DEBUG|OnDoc| +2026-03-19 11:28:40.1609|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 11:28:40.1609|DEBUG|OnDoc| +2026-03-19 11:28:40.1609|DEBUG|OnDoc| +2026-03-19 11:28:40.1609|DEBUG|OnDoc| +2026-03-19 11:28:40.1609|DEBUG|OnDoc| +2026-03-19 11:28:40.1609|DEBUG|OnDoc| +2026-03-19 11:28:40.1762|DEBUG|OnDoc| +2026-03-19 11:28:40.1762|DEBUG|OnDoc| +2026-03-19 11:28:40.1762|DEBUG|OnDoc| +2026-03-19 11:28:40.1762|DEBUG|OnDoc|Generate_Word +2026-03-19 11:28:40.1762|DEBUG|OnDoc|Word2013 +2026-03-19 11:28:40.1762|DEBUG|OnDoc|Word2013 +2026-03-19 11:28:53.8647|DEBUG|OnDoc|Generate_Word +2026-03-19 11:28:53.9059|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017791 +2026-03-19 11:28:53.9059|INFO|DocLog|Dokument über API erstellt +2026-03-19 11:28:53.9059|INFO|APIDocLog|Dokument return to sender +2026-03-19 11:28:53.9106|DEBUG|OnDoc| +2026-03-19 11:28:53.9106|DEBUG|OnDoc| +2026-03-19 11:28:53.9106|DEBUG|OnDoc| +2026-03-19 11:28:53.9106|DEBUG|OnDoc| +2026-03-19 11:28:53.9106|DEBUG|OnDoc| +2026-03-19 11:28:53.9275|DEBUG|OnDoc| +2026-03-19 11:28:56.0301|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 11:28:56.0819|INFO|APIDocLog|Start CreateDoc +2026-03-19 11:28:56.1056|INFO|APIDocLog|Input JSON +2026-03-19 11:28:56.1056|DEBUG|OnDoc|Start GenDoc +2026-03-19 11:28:56.1056|DEBUG|OnDoc| +2026-03-19 11:28:56.1056|DEBUG|OnDoc| +2026-03-19 11:28:56.1056|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1136|DEBUG|OnDoc| +2026-03-19 11:28:56.1293|DEBUG|OnDoc| +2026-03-19 11:28:56.1293|DEBUG|OnDoc| +2026-03-19 11:28:56.1293|DEBUG|OnDoc| +2026-03-19 11:28:56.1293|DEBUG|OnDoc| +2026-03-19 11:28:56.1293|DEBUG|OnDoc| +2026-03-19 11:28:56.1293|DEBUG|OnDoc| +2026-03-19 11:28:56.1293|DEBUG|OnDoc| +2026-03-19 11:28:56.1293|DEBUG|OnDoc| +2026-03-19 11:28:56.1293|DEBUG|OnDoc| +2026-03-19 11:28:56.1459|DEBUG|OnDoc| +2026-03-19 11:28:56.1459|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 11:28:56.2018|DEBUG|OnDoc| +2026-03-19 11:28:56.2018|DEBUG|OnDoc| +2026-03-19 11:28:56.2195|DEBUG|OnDoc| +2026-03-19 11:28:56.2195|DEBUG|OnDoc| +2026-03-19 11:28:56.2319|DEBUG|OnDoc| +2026-03-19 11:28:56.2319|DEBUG|OnDoc| +2026-03-19 11:28:56.2319|DEBUG|OnDoc| +2026-03-19 11:28:56.2319|DEBUG|OnDoc| +2026-03-19 11:28:56.2499|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 11:28:56.2499|DEBUG|OnDoc| +2026-03-19 11:28:56.2580|DEBUG|OnDoc| +2026-03-19 11:28:56.2580|DEBUG|OnDoc| +2026-03-19 11:28:56.2580|DEBUG|OnDoc| +2026-03-19 11:28:56.2580|DEBUG|OnDoc| +2026-03-19 11:28:56.2580|DEBUG|OnDoc| +2026-03-19 11:28:56.2580|DEBUG|OnDoc| +2026-03-19 11:28:56.2711|DEBUG|OnDoc| +2026-03-19 11:28:56.2711|DEBUG|OnDoc|Generate_Word +2026-03-19 11:28:56.2711|DEBUG|OnDoc|Word2013 +2026-03-19 11:28:56.2711|DEBUG|OnDoc|Word2013 +2026-03-19 11:28:57.1350|DEBUG|OnDoc|Generate_Word +2026-03-19 11:28:57.1506|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017809 +2026-03-19 11:28:57.1506|INFO|DocLog|Dokument über API erstellt +2026-03-19 11:28:57.1506|INFO|APIDocLog|Dokument return to sender +2026-03-19 11:28:57.1506|DEBUG|OnDoc| +2026-03-19 11:28:57.1761|DEBUG|OnDoc| +2026-03-19 11:28:57.1791|DEBUG|OnDoc| +2026-03-19 11:28:57.1791|DEBUG|OnDoc| +2026-03-19 11:28:57.1791|DEBUG|OnDoc| +2026-03-19 11:28:57.1791|DEBUG|OnDoc| +2026-03-19 11:29:09.7938|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 11:29:09.8755|INFO|APIDocLog|Start CreateDoc +2026-03-19 11:29:09.8960|INFO|APIDocLog|Input JSON +2026-03-19 11:29:09.8960|DEBUG|OnDoc|Start GenDoc +2026-03-19 11:29:09.8960|DEBUG|OnDoc| +2026-03-19 11:29:09.8960|DEBUG|OnDoc| +2026-03-19 11:29:09.8960|DEBUG|OnDoc| +2026-03-19 11:29:09.8960|DEBUG|OnDoc| +2026-03-19 11:29:09.8960|DEBUG|OnDoc| +2026-03-19 11:29:09.8960|DEBUG|OnDoc| +2026-03-19 11:29:09.8960|DEBUG|OnDoc| +2026-03-19 11:29:09.8960|DEBUG|OnDoc| +2026-03-19 11:29:09.8960|DEBUG|OnDoc| +2026-03-19 11:29:09.8960|DEBUG|OnDoc| +2026-03-19 11:29:09.8960|DEBUG|OnDoc| +2026-03-19 11:29:09.8960|DEBUG|OnDoc| +2026-03-19 11:29:09.8960|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9106|DEBUG|OnDoc| +2026-03-19 11:29:09.9362|DEBUG|OnDoc| +2026-03-19 11:29:09.9362|DEBUG|OnDoc| +2026-03-19 11:29:09.9478|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 11:29:09.9970|DEBUG|OnDoc| +2026-03-19 11:29:09.9970|DEBUG|OnDoc| +2026-03-19 11:29:10.0156|DEBUG|OnDoc| +2026-03-19 11:29:10.0156|DEBUG|OnDoc| +2026-03-19 11:29:10.0283|DEBUG|OnDoc| +2026-03-19 11:29:10.0283|DEBUG|OnDoc| +2026-03-19 11:29:10.0283|DEBUG|OnDoc| +2026-03-19 11:29:10.0283|DEBUG|OnDoc| +2026-03-19 11:29:10.0443|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 11:29:10.0443|DEBUG|OnDoc| +2026-03-19 11:29:10.0524|DEBUG|OnDoc| +2026-03-19 11:29:10.0524|DEBUG|OnDoc| +2026-03-19 11:29:10.0524|DEBUG|OnDoc| +2026-03-19 11:29:10.0524|DEBUG|OnDoc| +2026-03-19 11:29:10.0524|DEBUG|OnDoc| +2026-03-19 11:29:10.0524|DEBUG|OnDoc| +2026-03-19 11:29:10.0524|DEBUG|OnDoc| +2026-03-19 11:29:10.0695|DEBUG|OnDoc|Generate_Word +2026-03-19 11:29:10.0695|DEBUG|OnDoc|Word2013 +2026-03-19 11:29:10.0695|DEBUG|OnDoc|Word2013 +2026-03-19 11:30:40.4670|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 11:30:51.0911|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 11:30:51.1735|INFO|APIDocLog|Start CreateDoc +2026-03-19 11:30:51.2035|INFO|APIDocLog|Input JSON +2026-03-19 11:30:51.2096|DEBUG|OnDoc|Start GenDoc +2026-03-19 11:30:51.2096|DEBUG|OnDoc| +2026-03-19 11:30:51.2096|DEBUG|OnDoc| +2026-03-19 11:30:51.2096|DEBUG|OnDoc| +2026-03-19 11:30:51.2096|DEBUG|OnDoc| +2026-03-19 11:30:51.2096|DEBUG|OnDoc| +2026-03-19 11:30:51.2096|DEBUG|OnDoc| +2026-03-19 11:30:51.2096|DEBUG|OnDoc| +2026-03-19 11:30:51.2096|DEBUG|OnDoc| +2026-03-19 11:30:51.2096|DEBUG|OnDoc| +2026-03-19 11:30:51.2096|DEBUG|OnDoc| +2026-03-19 11:30:51.2096|DEBUG|OnDoc| +2026-03-19 11:30:51.2096|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2237|DEBUG|OnDoc| +2026-03-19 11:30:51.2390|DEBUG|OnDoc| +2026-03-19 11:30:51.2390|DEBUG|OnDoc| +2026-03-19 11:30:51.2390|DEBUG|OnDoc| +2026-03-19 11:30:51.2390|DEBUG|OnDoc| +2026-03-19 11:30:51.2390|DEBUG|OnDoc| +2026-03-19 11:30:51.2390|DEBUG|OnDoc| +2026-03-19 11:30:51.2565|DEBUG|OnDoc| +2026-03-19 11:30:51.2565|DEBUG|OnDoc| +2026-03-19 11:30:51.2804|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 11:30:51.3654|DEBUG|OnDoc| +2026-03-19 11:30:51.3654|DEBUG|OnDoc| +2026-03-19 11:30:51.4036|DEBUG|OnDoc| +2026-03-19 11:30:51.4036|DEBUG|OnDoc| +2026-03-19 11:30:51.4202|DEBUG|OnDoc| +2026-03-19 11:30:51.4202|DEBUG|OnDoc| +2026-03-19 11:30:51.4202|DEBUG|OnDoc| +2026-03-19 11:30:51.4202|DEBUG|OnDoc| +2026-03-19 11:30:51.4418|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 11:30:51.4418|DEBUG|OnDoc| +2026-03-19 11:30:51.4418|DEBUG|OnDoc| +2026-03-19 11:30:51.4418|DEBUG|OnDoc| +2026-03-19 11:30:51.4418|DEBUG|OnDoc| +2026-03-19 11:30:51.4418|DEBUG|OnDoc| +2026-03-19 11:30:51.4606|DEBUG|OnDoc| +2026-03-19 11:30:51.4606|DEBUG|OnDoc| +2026-03-19 11:30:51.4606|DEBUG|OnDoc| +2026-03-19 11:30:51.4606|DEBUG|OnDoc|Generate_Word +2026-03-19 11:30:51.4759|DEBUG|OnDoc|Word2013 +2026-03-19 11:30:51.4759|DEBUG|OnDoc|Word2013 +2026-03-19 11:31:08.6372|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 11:31:14.3986|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 11:31:14.5328|INFO|APIDocLog|Start CreateDoc +2026-03-19 11:31:14.5987|INFO|APIDocLog|Input JSON +2026-03-19 11:31:14.5987|DEBUG|OnDoc|Start GenDoc +2026-03-19 11:31:14.5987|DEBUG|OnDoc| +2026-03-19 11:31:14.5987|DEBUG|OnDoc| +2026-03-19 11:31:14.5987|DEBUG|OnDoc| +2026-03-19 11:31:14.5987|DEBUG|OnDoc| +2026-03-19 11:31:14.5987|DEBUG|OnDoc| +2026-03-19 11:31:14.5987|DEBUG|OnDoc| +2026-03-19 11:31:14.6150|DEBUG|OnDoc| +2026-03-19 11:31:14.6150|DEBUG|OnDoc| +2026-03-19 11:31:14.6150|DEBUG|OnDoc| +2026-03-19 11:31:14.6150|DEBUG|OnDoc| +2026-03-19 11:31:14.6150|DEBUG|OnDoc| +2026-03-19 11:31:14.6150|DEBUG|OnDoc| +2026-03-19 11:31:14.6150|DEBUG|OnDoc| +2026-03-19 11:31:14.6150|DEBUG|OnDoc| +2026-03-19 11:31:14.6150|DEBUG|OnDoc| +2026-03-19 11:31:14.6150|DEBUG|OnDoc| +2026-03-19 11:31:14.6150|DEBUG|OnDoc| +2026-03-19 11:31:14.6150|DEBUG|OnDoc| +2026-03-19 11:31:14.6300|DEBUG|OnDoc| +2026-03-19 11:31:14.6300|DEBUG|OnDoc| +2026-03-19 11:31:14.6300|DEBUG|OnDoc| +2026-03-19 11:31:14.6300|DEBUG|OnDoc| +2026-03-19 11:31:14.6300|DEBUG|OnDoc| +2026-03-19 11:31:14.6300|DEBUG|OnDoc| +2026-03-19 11:31:14.6300|DEBUG|OnDoc| +2026-03-19 11:31:14.6300|DEBUG|OnDoc| +2026-03-19 11:31:14.6300|DEBUG|OnDoc| +2026-03-19 11:31:14.6454|DEBUG|OnDoc| +2026-03-19 11:31:14.6454|DEBUG|OnDoc| +2026-03-19 11:31:14.6454|DEBUG|OnDoc| +2026-03-19 11:31:14.6454|DEBUG|OnDoc| +2026-03-19 11:31:14.6454|DEBUG|OnDoc| +2026-03-19 11:31:14.6454|DEBUG|OnDoc| +2026-03-19 11:31:14.6454|DEBUG|OnDoc| +2026-03-19 11:31:14.6810|DEBUG|OnDoc| +2026-03-19 11:31:14.6810|DEBUG|OnDoc| +2026-03-19 11:31:14.6956|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 11:31:14.7589|DEBUG|OnDoc| +2026-03-19 11:31:14.7589|DEBUG|OnDoc| +2026-03-19 11:31:14.7841|DEBUG|OnDoc| +2026-03-19 11:31:14.7871|DEBUG|OnDoc| +2026-03-19 11:31:14.7871|DEBUG|OnDoc| +2026-03-19 11:31:14.7871|DEBUG|OnDoc| +2026-03-19 11:31:14.7871|DEBUG|OnDoc| +2026-03-19 11:31:14.8018|DEBUG|OnDoc| +2026-03-19 11:31:14.8196|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 11:31:14.8196|DEBUG|OnDoc| +2026-03-19 11:31:14.8196|DEBUG|OnDoc| +2026-03-19 11:31:14.8196|DEBUG|OnDoc| +2026-03-19 11:31:14.8196|DEBUG|OnDoc| +2026-03-19 11:31:14.8196|DEBUG|OnDoc| +2026-03-19 11:31:14.8361|DEBUG|OnDoc| +2026-03-19 11:31:14.8361|DEBUG|OnDoc| +2026-03-19 11:31:14.8361|DEBUG|OnDoc| +2026-03-19 11:31:14.8361|DEBUG|OnDoc|Generate_Word +2026-03-19 11:31:14.8530|DEBUG|OnDoc|Word2013 +2026-03-19 11:31:14.8530|DEBUG|OnDoc|Word2013 +2026-03-19 12:06:33.8877|DEBUG|OnDoc|Generate_Word +2026-03-19 12:06:33.9013|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017830 +2026-03-19 12:06:33.9013|INFO|DocLog|Dokument über API erstellt +2026-03-19 12:06:33.9013|INFO|APIDocLog|Dokument return to sender +2026-03-19 12:06:33.9013|DEBUG|OnDoc| +2026-03-19 12:06:33.9128|DEBUG|OnDoc| +2026-03-19 12:06:33.9128|DEBUG|OnDoc| +2026-03-19 12:06:33.9128|DEBUG|OnDoc| +2026-03-19 12:06:33.9128|DEBUG|OnDoc| +2026-03-19 12:06:33.9128|DEBUG|OnDoc| +2026-03-19 12:06:39.0311|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 12:06:39.1131|INFO|APIDocLog|Start CreateDoc +2026-03-19 12:06:39.1361|INFO|APIDocLog|Input JSON +2026-03-19 12:06:39.1361|DEBUG|OnDoc|Start GenDoc +2026-03-19 12:06:39.1361|DEBUG|OnDoc| +2026-03-19 12:06:39.1361|DEBUG|OnDoc| +2026-03-19 12:06:39.1361|DEBUG|OnDoc| +2026-03-19 12:06:39.1361|DEBUG|OnDoc| +2026-03-19 12:06:39.1361|DEBUG|OnDoc| +2026-03-19 12:06:39.1361|DEBUG|OnDoc| +2026-03-19 12:06:39.1361|DEBUG|OnDoc| +2026-03-19 12:06:39.1361|DEBUG|OnDoc| +2026-03-19 12:06:39.1361|DEBUG|OnDoc| +2026-03-19 12:06:39.1361|DEBUG|OnDoc| +2026-03-19 12:06:39.1361|DEBUG|OnDoc| +2026-03-19 12:06:39.1361|DEBUG|OnDoc| +2026-03-19 12:06:39.1361|DEBUG|OnDoc| +2026-03-19 12:06:39.1361|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1450|DEBUG|OnDoc| +2026-03-19 12:06:39.1666|DEBUG|OnDoc| +2026-03-19 12:06:39.1666|DEBUG|OnDoc| +2026-03-19 12:06:39.1800|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 12:06:39.2332|DEBUG|OnDoc| +2026-03-19 12:06:39.2332|DEBUG|OnDoc| +2026-03-19 12:06:39.2520|DEBUG|OnDoc| +2026-03-19 12:06:39.2520|DEBUG|OnDoc| +2026-03-19 12:06:39.2622|DEBUG|OnDoc| +2026-03-19 12:06:39.2622|DEBUG|OnDoc| +2026-03-19 12:06:39.2622|DEBUG|OnDoc| +2026-03-19 12:06:39.2622|DEBUG|OnDoc| +2026-03-19 12:06:39.2786|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 12:06:39.2786|DEBUG|OnDoc| +2026-03-19 12:06:39.2861|DEBUG|OnDoc| +2026-03-19 12:06:39.2861|DEBUG|OnDoc| +2026-03-19 12:06:39.2861|DEBUG|OnDoc| +2026-03-19 12:06:39.2861|DEBUG|OnDoc| +2026-03-19 12:06:39.2861|DEBUG|OnDoc| +2026-03-19 12:06:39.2861|DEBUG|OnDoc| +2026-03-19 12:06:39.2861|DEBUG|OnDoc| +2026-03-19 12:06:39.2861|DEBUG|OnDoc|Generate_Word +2026-03-19 12:06:39.3052|DEBUG|OnDoc|Word2013 +2026-03-19 12:06:39.3052|DEBUG|OnDoc|Word2013 +2026-03-19 12:08:17.8425|DEBUG|OnDoc|Generate_Word +2026-03-19 12:08:17.8839|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017841 +2026-03-19 12:08:17.8839|INFO|DocLog|Dokument über API erstellt +2026-03-19 12:08:17.8839|INFO|APIDocLog|Dokument return to sender +2026-03-19 12:08:17.8839|DEBUG|OnDoc| +2026-03-19 12:08:17.9031|DEBUG|OnDoc| +2026-03-19 12:08:17.9031|DEBUG|OnDoc| +2026-03-19 12:08:17.9031|DEBUG|OnDoc| +2026-03-19 12:08:17.9031|DEBUG|OnDoc| +2026-03-19 12:08:17.9031|DEBUG|OnDoc| +2026-03-19 12:08:20.2145|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 12:08:20.2985|INFO|APIDocLog|Start CreateDoc +2026-03-19 12:08:20.3466|INFO|APIDocLog|Input JSON +2026-03-19 12:08:20.3526|DEBUG|OnDoc|Start GenDoc +2026-03-19 12:08:20.3526|DEBUG|OnDoc| +2026-03-19 12:08:20.3526|DEBUG|OnDoc| +2026-03-19 12:08:20.3526|DEBUG|OnDoc| +2026-03-19 12:08:20.3526|DEBUG|OnDoc| +2026-03-19 12:08:20.3526|DEBUG|OnDoc| +2026-03-19 12:08:20.3526|DEBUG|OnDoc| +2026-03-19 12:08:20.3526|DEBUG|OnDoc| +2026-03-19 12:08:20.3526|DEBUG|OnDoc| +2026-03-19 12:08:20.3647|DEBUG|OnDoc| +2026-03-19 12:08:20.3647|DEBUG|OnDoc| +2026-03-19 12:08:20.3647|DEBUG|OnDoc| +2026-03-19 12:08:20.3647|DEBUG|OnDoc| +2026-03-19 12:08:20.3647|DEBUG|OnDoc| +2026-03-19 12:08:20.3647|DEBUG|OnDoc| +2026-03-19 12:08:20.3647|DEBUG|OnDoc| +2026-03-19 12:08:20.3647|DEBUG|OnDoc| +2026-03-19 12:08:20.3647|DEBUG|OnDoc| +2026-03-19 12:08:20.3647|DEBUG|OnDoc| +2026-03-19 12:08:20.3647|DEBUG|OnDoc| +2026-03-19 12:08:20.3647|DEBUG|OnDoc| +2026-03-19 12:08:20.3794|DEBUG|OnDoc| +2026-03-19 12:08:20.3794|DEBUG|OnDoc| +2026-03-19 12:08:20.3794|DEBUG|OnDoc| +2026-03-19 12:08:20.3794|DEBUG|OnDoc| +2026-03-19 12:08:20.3794|DEBUG|OnDoc| +2026-03-19 12:08:20.3794|DEBUG|OnDoc| +2026-03-19 12:08:20.3794|DEBUG|OnDoc| +2026-03-19 12:08:20.3794|DEBUG|OnDoc| +2026-03-19 12:08:20.3794|DEBUG|OnDoc| +2026-03-19 12:08:20.3794|DEBUG|OnDoc| +2026-03-19 12:08:20.3794|DEBUG|OnDoc| +2026-03-19 12:08:20.3950|DEBUG|OnDoc| +2026-03-19 12:08:20.3950|DEBUG|OnDoc| +2026-03-19 12:08:20.3950|DEBUG|OnDoc| +2026-03-19 12:08:20.4135|DEBUG|OnDoc| +2026-03-19 12:08:20.4135|DEBUG|OnDoc| +2026-03-19 12:08:20.4307|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 12:08:20.4979|DEBUG|OnDoc| +2026-03-19 12:08:20.4979|DEBUG|OnDoc| +2026-03-19 12:08:20.5444|DEBUG|OnDoc| +2026-03-19 12:08:20.5444|DEBUG|OnDoc| +2026-03-19 12:08:20.5556|DEBUG|OnDoc| +2026-03-19 12:08:20.5556|DEBUG|OnDoc| +2026-03-19 12:08:20.5556|DEBUG|OnDoc| +2026-03-19 12:08:20.5556|DEBUG|OnDoc| +2026-03-19 12:08:20.5776|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 12:08:20.5776|DEBUG|OnDoc| +2026-03-19 12:08:20.5877|DEBUG|OnDoc| +2026-03-19 12:08:20.5877|DEBUG|OnDoc| +2026-03-19 12:08:20.5877|DEBUG|OnDoc| +2026-03-19 12:08:20.5877|DEBUG|OnDoc| +2026-03-19 12:08:20.5982|DEBUG|OnDoc| +2026-03-19 12:08:20.5982|DEBUG|OnDoc| +2026-03-19 12:08:20.5982|DEBUG|OnDoc| +2026-03-19 12:08:20.5982|DEBUG|OnDoc|Generate_Word +2026-03-19 12:08:20.6169|DEBUG|OnDoc|Word2013 +2026-03-19 12:08:20.6169|DEBUG|OnDoc|Word2013 +2026-03-19 12:10:56.9107|DEBUG|OnDoc|Generate_Word +2026-03-19 12:10:56.9518|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017856 +2026-03-19 12:10:56.9518|INFO|DocLog|Dokument über API erstellt +2026-03-19 12:10:56.9518|INFO|APIDocLog|Dokument return to sender +2026-03-19 12:10:56.9577|DEBUG|OnDoc| +2026-03-19 12:10:56.9737|DEBUG|OnDoc| +2026-03-19 12:10:56.9737|DEBUG|OnDoc| +2026-03-19 12:10:56.9737|DEBUG|OnDoc| +2026-03-19 12:10:56.9737|DEBUG|OnDoc| +2026-03-19 12:10:56.9737|DEBUG|OnDoc| +2026-03-19 12:11:05.8619|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 12:11:05.9605|INFO|APIDocLog|Start CreateDoc +2026-03-19 12:11:05.9944|INFO|APIDocLog|Input JSON +2026-03-19 12:11:05.9944|DEBUG|OnDoc|Start GenDoc +2026-03-19 12:11:05.9944|DEBUG|OnDoc| +2026-03-19 12:11:05.9944|DEBUG|OnDoc| +2026-03-19 12:11:05.9944|DEBUG|OnDoc| +2026-03-19 12:11:05.9944|DEBUG|OnDoc| +2026-03-19 12:11:05.9944|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0044|DEBUG|OnDoc| +2026-03-19 12:11:06.0205|DEBUG|OnDoc| +2026-03-19 12:11:06.0205|DEBUG|OnDoc| +2026-03-19 12:11:06.0205|DEBUG|OnDoc| +2026-03-19 12:11:06.0205|DEBUG|OnDoc| +2026-03-19 12:11:06.0205|DEBUG|OnDoc| +2026-03-19 12:11:06.0205|DEBUG|OnDoc| +2026-03-19 12:11:06.0205|DEBUG|OnDoc| +2026-03-19 12:11:06.0205|DEBUG|OnDoc| +2026-03-19 12:11:06.0362|DEBUG|OnDoc| +2026-03-19 12:11:06.0362|DEBUG|OnDoc| +2026-03-19 12:11:06.0362|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 12:11:06.0927|DEBUG|OnDoc| +2026-03-19 12:11:06.0927|DEBUG|OnDoc| +2026-03-19 12:11:06.1220|DEBUG|OnDoc| +2026-03-19 12:11:06.1220|DEBUG|OnDoc| +2026-03-19 12:11:06.1345|DEBUG|OnDoc| +2026-03-19 12:11:06.1345|DEBUG|OnDoc| +2026-03-19 12:11:06.1345|DEBUG|OnDoc| +2026-03-19 12:11:06.1345|DEBUG|OnDoc| +2026-03-19 12:11:06.1585|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 12:11:06.1607|DEBUG|OnDoc| +2026-03-19 12:11:06.1607|DEBUG|OnDoc| +2026-03-19 12:11:06.1607|DEBUG|OnDoc| +2026-03-19 12:11:06.1607|DEBUG|OnDoc| +2026-03-19 12:11:06.1607|DEBUG|OnDoc| +2026-03-19 12:11:06.1765|DEBUG|OnDoc| +2026-03-19 12:11:06.1765|DEBUG|OnDoc| +2026-03-19 12:11:06.1765|DEBUG|OnDoc| +2026-03-19 12:11:06.1765|DEBUG|OnDoc|Generate_Word +2026-03-19 12:11:06.1765|DEBUG|OnDoc|Word2013 +2026-03-19 12:11:06.1927|DEBUG|OnDoc|Word2013 +2026-03-19 12:12:27.4376|DEBUG|OnDoc|Generate_Word +2026-03-19 12:12:27.4768|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017864 +2026-03-19 12:12:27.4768|INFO|DocLog|Dokument über API erstellt +2026-03-19 12:12:27.4768|INFO|APIDocLog|Dokument return to sender +2026-03-19 12:12:27.4768|DEBUG|OnDoc| +2026-03-19 12:12:27.4903|DEBUG|OnDoc| +2026-03-19 12:12:27.4903|DEBUG|OnDoc| +2026-03-19 12:12:27.4903|DEBUG|OnDoc| +2026-03-19 12:12:27.4903|DEBUG|OnDoc| +2026-03-19 12:12:27.4903|DEBUG|OnDoc| +2026-03-19 12:12:29.1113|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 12:12:29.1680|INFO|APIDocLog|Start CreateDoc +2026-03-19 12:12:29.1957|INFO|APIDocLog|Input JSON +2026-03-19 12:12:29.1957|DEBUG|OnDoc|Start GenDoc +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.1957|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2077|DEBUG|OnDoc| +2026-03-19 12:12:29.2275|DEBUG|OnDoc| +2026-03-19 12:12:29.2275|DEBUG|OnDoc| +2026-03-19 12:12:29.2275|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 12:12:29.2821|DEBUG|OnDoc| +2026-03-19 12:12:29.2821|DEBUG|OnDoc| +2026-03-19 12:12:29.3072|DEBUG|OnDoc| +2026-03-19 12:12:29.3072|DEBUG|OnDoc| +2026-03-19 12:12:29.3192|DEBUG|OnDoc| +2026-03-19 12:12:29.3192|DEBUG|OnDoc| +2026-03-19 12:12:29.3192|DEBUG|OnDoc| +2026-03-19 12:12:29.3192|DEBUG|OnDoc| +2026-03-19 12:12:29.3432|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 12:12:29.3432|DEBUG|OnDoc| +2026-03-19 12:12:29.3518|DEBUG|OnDoc| +2026-03-19 12:12:29.3518|DEBUG|OnDoc| +2026-03-19 12:12:29.3518|DEBUG|OnDoc| +2026-03-19 12:12:29.3518|DEBUG|OnDoc| +2026-03-19 12:12:29.3638|DEBUG|OnDoc| +2026-03-19 12:12:29.3638|DEBUG|OnDoc| +2026-03-19 12:12:29.3638|DEBUG|OnDoc| +2026-03-19 12:12:29.3638|DEBUG|OnDoc|Generate_Word +2026-03-19 12:12:29.3638|DEBUG|OnDoc|Word2013 +2026-03-19 12:12:29.3638|DEBUG|OnDoc|Word2013 +2026-03-19 12:14:40.3279|DEBUG|OnDoc|Generate_Word +2026-03-19 12:14:40.3675|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017872 +2026-03-19 12:14:40.3675|INFO|DocLog|Dokument über API erstellt +2026-03-19 12:14:40.3675|INFO|APIDocLog|Dokument return to sender +2026-03-19 12:14:40.3675|DEBUG|OnDoc| +2026-03-19 12:14:40.3842|DEBUG|OnDoc| +2026-03-19 12:14:40.3842|DEBUG|OnDoc| +2026-03-19 12:14:40.3842|DEBUG|OnDoc| +2026-03-19 12:14:40.3842|DEBUG|OnDoc| +2026-03-19 12:14:40.3842|DEBUG|OnDoc| +2026-03-19 12:17:38.3033|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 12:17:38.3905|INFO|APIDocLog|Start CreateDoc +2026-03-19 12:17:38.4185|INFO|APIDocLog|Input JSON +2026-03-19 12:17:38.4185|DEBUG|OnDoc|Start GenDoc +2026-03-19 12:17:38.4185|DEBUG|OnDoc| +2026-03-19 12:17:38.4185|DEBUG|OnDoc| +2026-03-19 12:17:38.4185|DEBUG|OnDoc| +2026-03-19 12:17:38.4185|DEBUG|OnDoc| +2026-03-19 12:17:38.4185|DEBUG|OnDoc| +2026-03-19 12:17:38.4185|DEBUG|OnDoc| +2026-03-19 12:17:38.4185|DEBUG|OnDoc| +2026-03-19 12:17:38.4185|DEBUG|OnDoc| +2026-03-19 12:17:38.4185|DEBUG|OnDoc| +2026-03-19 12:17:38.4185|DEBUG|OnDoc| +2026-03-19 12:17:38.4185|DEBUG|OnDoc| +2026-03-19 12:17:38.4185|DEBUG|OnDoc| +2026-03-19 12:17:38.4185|DEBUG|OnDoc| +2026-03-19 12:17:38.4185|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4266|DEBUG|OnDoc| +2026-03-19 12:17:38.4566|DEBUG|OnDoc| +2026-03-19 12:17:38.4587|DEBUG|OnDoc| +2026-03-19 12:17:38.4587|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 12:17:38.5098|DEBUG|OnDoc| +2026-03-19 12:17:38.5098|DEBUG|OnDoc| +2026-03-19 12:17:38.5347|DEBUG|OnDoc| +2026-03-19 12:17:38.5347|DEBUG|OnDoc| +2026-03-19 12:17:38.5456|DEBUG|OnDoc| +2026-03-19 12:17:38.5456|DEBUG|OnDoc| +2026-03-19 12:17:38.5456|DEBUG|OnDoc| +2026-03-19 12:17:38.5456|DEBUG|OnDoc| +2026-03-19 12:17:38.5669|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 12:17:38.5669|DEBUG|OnDoc| +2026-03-19 12:17:38.5669|DEBUG|OnDoc| +2026-03-19 12:17:38.5669|DEBUG|OnDoc| +2026-03-19 12:17:38.5669|DEBUG|OnDoc| +2026-03-19 12:17:38.5669|DEBUG|OnDoc| +2026-03-19 12:17:38.5669|DEBUG|OnDoc| +2026-03-19 12:17:38.5669|DEBUG|OnDoc| +2026-03-19 12:17:38.5873|DEBUG|OnDoc| +2026-03-19 12:17:38.5873|DEBUG|OnDoc|Generate_Word +2026-03-19 12:17:38.5873|DEBUG|OnDoc|Word2013 +2026-03-19 12:17:38.5873|DEBUG|OnDoc|Word2013 +2026-03-19 12:21:07.0045|DEBUG|OnDoc|Generate_Word +2026-03-19 12:21:07.0475|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017888 +2026-03-19 12:21:07.0475|INFO|DocLog|Dokument über API erstellt +2026-03-19 12:21:07.0530|INFO|APIDocLog|Dokument return to sender +2026-03-19 12:21:07.0530|DEBUG|OnDoc| +2026-03-19 12:21:07.0530|DEBUG|OnDoc| +2026-03-19 12:21:07.0679|DEBUG|OnDoc| +2026-03-19 12:21:07.0679|DEBUG|OnDoc| +2026-03-19 12:21:07.0679|DEBUG|OnDoc| +2026-03-19 12:21:07.0679|DEBUG|OnDoc| +2026-03-19 12:21:17.8258|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 12:21:17.9184|INFO|APIDocLog|Start CreateDoc +2026-03-19 12:21:17.9521|INFO|APIDocLog|Input JSON +2026-03-19 12:21:17.9521|DEBUG|OnDoc|Start GenDoc +2026-03-19 12:21:17.9521|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9586|DEBUG|OnDoc| +2026-03-19 12:21:17.9739|DEBUG|OnDoc| +2026-03-19 12:21:17.9739|DEBUG|OnDoc| +2026-03-19 12:21:17.9739|DEBUG|OnDoc| +2026-03-19 12:21:17.9739|DEBUG|OnDoc| +2026-03-19 12:21:17.9739|DEBUG|OnDoc| +2026-03-19 12:21:17.9739|DEBUG|OnDoc| +2026-03-19 12:21:17.9739|DEBUG|OnDoc| +2026-03-19 12:21:17.9739|DEBUG|OnDoc| +2026-03-19 12:21:17.9739|DEBUG|OnDoc| +2026-03-19 12:21:17.9739|DEBUG|OnDoc| +2026-03-19 12:21:17.9739|DEBUG|OnDoc| +2026-03-19 12:21:17.9739|DEBUG|OnDoc| +2026-03-19 12:21:17.9739|DEBUG|OnDoc| +2026-03-19 12:21:17.9739|DEBUG|OnDoc| +2026-03-19 12:21:17.9938|DEBUG|OnDoc| +2026-03-19 12:21:17.9938|DEBUG|OnDoc| +2026-03-19 12:21:18.0053|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 12:21:18.0486|DEBUG|OnDoc| +2026-03-19 12:21:18.0525|DEBUG|OnDoc| +2026-03-19 12:21:18.0801|DEBUG|OnDoc| +2026-03-19 12:21:18.0801|DEBUG|OnDoc| +2026-03-19 12:21:18.0927|DEBUG|OnDoc| +2026-03-19 12:21:18.0927|DEBUG|OnDoc| +2026-03-19 12:21:18.0927|DEBUG|OnDoc| +2026-03-19 12:21:18.0927|DEBUG|OnDoc| +2026-03-19 12:21:18.1230|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 12:21:18.1230|DEBUG|OnDoc| +2026-03-19 12:21:18.1307|DEBUG|OnDoc| +2026-03-19 12:21:18.1307|DEBUG|OnDoc| +2026-03-19 12:21:18.1307|DEBUG|OnDoc| +2026-03-19 12:21:18.1307|DEBUG|OnDoc| +2026-03-19 12:21:18.1307|DEBUG|OnDoc| +2026-03-19 12:21:18.1307|DEBUG|OnDoc| +2026-03-19 12:21:18.1466|DEBUG|OnDoc| +2026-03-19 12:21:18.1466|DEBUG|OnDoc|Generate_Word +2026-03-19 12:21:18.1466|DEBUG|OnDoc|Word2013 +2026-03-19 12:21:18.1466|DEBUG|OnDoc|Word2013 +2026-03-19 12:21:38.9478|DEBUG|OnDoc|Generate_Word +2026-03-19 12:21:38.9869|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017893 +2026-03-19 12:21:38.9869|INFO|DocLog|Dokument über API erstellt +2026-03-19 12:21:38.9869|INFO|APIDocLog|Dokument return to sender +2026-03-19 12:21:38.9869|DEBUG|OnDoc| +2026-03-19 12:21:38.9996|DEBUG|OnDoc| +2026-03-19 12:21:38.9996|DEBUG|OnDoc| +2026-03-19 12:21:38.9996|DEBUG|OnDoc| +2026-03-19 12:21:38.9996|DEBUG|OnDoc| +2026-03-19 12:21:38.9996|DEBUG|OnDoc| +2026-03-19 12:21:51.6249|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 12:21:51.7308|INFO|APIDocLog|Start CreateDoc +2026-03-19 12:21:51.7716|INFO|APIDocLog|Input JSON +2026-03-19 12:21:51.7716|DEBUG|OnDoc|Start GenDoc +2026-03-19 12:21:51.7716|DEBUG|OnDoc| +2026-03-19 12:21:51.7716|DEBUG|OnDoc| +2026-03-19 12:21:51.7716|DEBUG|OnDoc| +2026-03-19 12:21:51.7716|DEBUG|OnDoc| +2026-03-19 12:21:51.7716|DEBUG|OnDoc| +2026-03-19 12:21:51.7716|DEBUG|OnDoc| +2026-03-19 12:21:51.7716|DEBUG|OnDoc| +2026-03-19 12:21:51.7716|DEBUG|OnDoc| +2026-03-19 12:21:51.7716|DEBUG|OnDoc| +2026-03-19 12:21:51.7716|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.7862|DEBUG|OnDoc| +2026-03-19 12:21:51.8017|DEBUG|OnDoc| +2026-03-19 12:21:51.8017|DEBUG|OnDoc| +2026-03-19 12:21:51.8017|DEBUG|OnDoc| +2026-03-19 12:21:51.8017|DEBUG|OnDoc| +2026-03-19 12:21:51.8017|DEBUG|OnDoc| +2026-03-19 12:21:51.8183|DEBUG|OnDoc| +2026-03-19 12:21:51.8183|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 12:21:51.8698|DEBUG|OnDoc| +2026-03-19 12:21:51.8698|DEBUG|OnDoc| +2026-03-19 12:21:51.9024|DEBUG|OnDoc| +2026-03-19 12:21:51.9024|DEBUG|OnDoc| +2026-03-19 12:21:51.9169|DEBUG|OnDoc| +2026-03-19 12:21:51.9169|DEBUG|OnDoc| +2026-03-19 12:21:51.9169|DEBUG|OnDoc| +2026-03-19 12:21:51.9169|DEBUG|OnDoc| +2026-03-19 12:21:51.9460|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 12:21:51.9460|DEBUG|OnDoc| +2026-03-19 12:21:51.9460|DEBUG|OnDoc| +2026-03-19 12:21:51.9460|DEBUG|OnDoc| +2026-03-19 12:21:51.9460|DEBUG|OnDoc| +2026-03-19 12:21:51.9460|DEBUG|OnDoc| +2026-03-19 12:21:51.9611|DEBUG|OnDoc| +2026-03-19 12:21:51.9611|DEBUG|OnDoc| +2026-03-19 12:21:51.9611|DEBUG|OnDoc| +2026-03-19 12:21:51.9611|DEBUG|OnDoc|Generate_Word +2026-03-19 12:21:51.9759|DEBUG|OnDoc|Word2013 +2026-03-19 12:21:51.9759|DEBUG|OnDoc|Word2013 +2026-03-19 13:27:32.6145|DEBUG|OnDoc| +2026-03-19 13:27:32.6831|DEBUG|OnDoc| +2026-03-19 13:27:32.6831|DEBUG|OnDoc| +2026-03-19 13:27:32.6831|DEBUG|OnDoc| +2026-03-19 13:27:33.0358|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:27:33.2858|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:27:33.3809|INFO|APIDocLog|Input JSON +2026-03-19 13:27:33.4025|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:27:33.4025|DEBUG|OnDoc| +2026-03-19 13:27:33.4025|DEBUG|OnDoc| +2026-03-19 13:27:33.4025|DEBUG|OnDoc| +2026-03-19 13:27:33.4025|DEBUG|OnDoc| +2026-03-19 13:27:33.4025|DEBUG|OnDoc| +2026-03-19 13:27:33.4025|DEBUG|OnDoc| +2026-03-19 13:27:33.4116|DEBUG|OnDoc| +2026-03-19 13:27:33.4116|DEBUG|OnDoc| +2026-03-19 13:27:33.4116|DEBUG|OnDoc| +2026-03-19 13:27:33.4116|DEBUG|OnDoc| +2026-03-19 13:27:33.4116|DEBUG|OnDoc| +2026-03-19 13:27:33.4116|DEBUG|OnDoc| +2026-03-19 13:27:33.4116|DEBUG|OnDoc| +2026-03-19 13:27:33.4116|DEBUG|OnDoc| +2026-03-19 13:27:33.4116|DEBUG|OnDoc| +2026-03-19 13:27:33.4116|DEBUG|OnDoc| +2026-03-19 13:27:33.4116|DEBUG|OnDoc| +2026-03-19 13:27:33.4287|DEBUG|OnDoc| +2026-03-19 13:27:33.4287|DEBUG|OnDoc| +2026-03-19 13:27:33.4287|DEBUG|OnDoc| +2026-03-19 13:27:33.4874|DEBUG|OnDoc| +2026-03-19 13:27:33.4924|DEBUG|OnDoc| +2026-03-19 13:27:33.4924|DEBUG|OnDoc| +2026-03-19 13:27:33.4924|DEBUG|OnDoc| +2026-03-19 13:27:33.4924|DEBUG|OnDoc| +2026-03-19 13:27:33.4924|DEBUG|OnDoc| +2026-03-19 13:27:33.4924|DEBUG|OnDoc| +2026-03-19 13:27:33.4924|DEBUG|OnDoc| +2026-03-19 13:27:33.4924|DEBUG|OnDoc| +2026-03-19 13:27:33.4924|DEBUG|OnDoc| +2026-03-19 13:27:33.4924|DEBUG|OnDoc| +2026-03-19 13:27:33.4924|DEBUG|OnDoc| +2026-03-19 13:27:33.4924|DEBUG|OnDoc| +2026-03-19 13:27:33.4924|DEBUG|OnDoc| +2026-03-19 13:27:33.5292|DEBUG|OnDoc| +2026-03-19 13:27:33.5292|DEBUG|OnDoc| +2026-03-19 13:27:33.5472|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:27:33.8147|DEBUG|OnDoc| +2026-03-19 13:27:33.8285|DEBUG|OnDoc| +2026-03-19 13:27:33.8877|DEBUG|OnDoc| +2026-03-19 13:27:33.8877|DEBUG|OnDoc| +2026-03-19 13:27:34.2584|DEBUG|OnDoc| +2026-03-19 13:27:34.2722|DEBUG|OnDoc| +2026-03-19 13:27:34.2722|DEBUG|OnDoc| +2026-03-19 13:27:34.2722|DEBUG|OnDoc| +2026-03-19 13:27:34.3145|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:27:34.3180|DEBUG|OnDoc| +2026-03-19 13:27:34.3717|DEBUG|OnDoc| +2026-03-19 13:27:34.3717|DEBUG|OnDoc| +2026-03-19 13:27:34.3717|DEBUG|OnDoc| +2026-03-19 13:27:34.3811|DEBUG|OnDoc| +2026-03-19 13:27:34.4502|DEBUG|OnDoc| +2026-03-19 13:27:34.4502|DEBUG|OnDoc| +2026-03-19 13:27:34.4641|DEBUG|OnDoc| +2026-03-19 13:27:34.4641|DEBUG|OnDoc|Generate_Word +2026-03-19 13:27:35.0360|DEBUG|OnDoc|Word2013 +2026-03-19 13:27:35.0450|DEBUG|OnDoc|Word2013 +2026-03-19 13:32:42.3876|DEBUG|OnDoc| +2026-03-19 13:32:42.4745|DEBUG|OnDoc| +2026-03-19 13:32:42.4745|DEBUG|OnDoc| +2026-03-19 13:32:42.4745|DEBUG|OnDoc| +2026-03-19 13:32:42.7037|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:32:43.1149|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:32:43.2164|INFO|APIDocLog|Input JSON +2026-03-19 13:32:43.2375|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:32:43.2375|DEBUG|OnDoc| +2026-03-19 13:32:43.2395|DEBUG|OnDoc| +2026-03-19 13:32:43.2395|DEBUG|OnDoc| +2026-03-19 13:32:43.2395|DEBUG|OnDoc| +2026-03-19 13:32:43.2395|DEBUG|OnDoc| +2026-03-19 13:32:43.2395|DEBUG|OnDoc| +2026-03-19 13:32:43.2395|DEBUG|OnDoc| +2026-03-19 13:32:43.2395|DEBUG|OnDoc| +2026-03-19 13:32:43.2395|DEBUG|OnDoc| +2026-03-19 13:32:43.2395|DEBUG|OnDoc| +2026-03-19 13:32:43.2395|DEBUG|OnDoc| +2026-03-19 13:32:43.2395|DEBUG|OnDoc| +2026-03-19 13:32:43.2395|DEBUG|OnDoc| +2026-03-19 13:32:43.2395|DEBUG|OnDoc| +2026-03-19 13:32:43.2395|DEBUG|OnDoc| +2026-03-19 13:32:43.2560|DEBUG|OnDoc| +2026-03-19 13:32:43.2560|DEBUG|OnDoc| +2026-03-19 13:32:43.2560|DEBUG|OnDoc| +2026-03-19 13:32:43.2560|DEBUG|OnDoc| +2026-03-19 13:32:43.2560|DEBUG|OnDoc| +2026-03-19 13:32:43.2560|DEBUG|OnDoc| +2026-03-19 13:32:43.2712|DEBUG|OnDoc| +2026-03-19 13:32:43.2712|DEBUG|OnDoc| +2026-03-19 13:32:43.2712|DEBUG|OnDoc| +2026-03-19 13:32:43.2712|DEBUG|OnDoc| +2026-03-19 13:32:43.2712|DEBUG|OnDoc| +2026-03-19 13:32:43.2712|DEBUG|OnDoc| +2026-03-19 13:32:43.2712|DEBUG|OnDoc| +2026-03-19 13:32:43.2712|DEBUG|OnDoc| +2026-03-19 13:32:43.2712|DEBUG|OnDoc| +2026-03-19 13:32:43.2712|DEBUG|OnDoc| +2026-03-19 13:32:43.2712|DEBUG|OnDoc| +2026-03-19 13:32:43.2712|DEBUG|OnDoc| +2026-03-19 13:32:43.2712|DEBUG|OnDoc| +2026-03-19 13:32:43.3019|DEBUG|OnDoc| +2026-03-19 13:32:43.3039|DEBUG|OnDoc| +2026-03-19 13:32:43.3039|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:32:43.5149|DEBUG|OnDoc| +2026-03-19 13:32:43.5257|DEBUG|OnDoc| +2026-03-19 13:32:43.5699|DEBUG|OnDoc| +2026-03-19 13:32:43.5699|DEBUG|OnDoc| +2026-03-19 13:32:43.6039|DEBUG|OnDoc| +2026-03-19 13:32:43.6039|DEBUG|OnDoc| +2026-03-19 13:32:43.6039|DEBUG|OnDoc| +2026-03-19 13:32:43.6039|DEBUG|OnDoc| +2026-03-19 13:32:43.6419|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:32:43.6419|DEBUG|OnDoc| +2026-03-19 13:32:43.6524|DEBUG|OnDoc| +2026-03-19 13:32:43.6524|DEBUG|OnDoc| +2026-03-19 13:32:43.6524|DEBUG|OnDoc| +2026-03-19 13:32:43.6524|DEBUG|OnDoc| +2026-03-19 13:32:43.6643|DEBUG|OnDoc| +2026-03-19 13:32:43.6643|DEBUG|OnDoc| +2026-03-19 13:32:43.6643|DEBUG|OnDoc| +2026-03-19 13:32:43.6643|DEBUG|OnDoc|Generate_Word +2026-03-19 13:32:44.2167|DEBUG|OnDoc|Word2013 +2026-03-19 13:32:44.2259|DEBUG|OnDoc|Word2013 +2026-03-19 13:33:42.7809|DEBUG|OnDoc|Generate_Word +2026-03-19 13:33:42.8589|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017924 +2026-03-19 13:33:42.8589|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:33:42.8589|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:33:42.8654|DEBUG|OnDoc| +2026-03-19 13:33:42.8654|DEBUG|OnDoc| +2026-03-19 13:33:42.8654|DEBUG|OnDoc| +2026-03-19 13:33:42.8654|DEBUG|OnDoc| +2026-03-19 13:33:42.8654|DEBUG|OnDoc| +2026-03-19 13:33:42.8819|DEBUG|OnDoc| +2026-03-19 13:33:51.4962|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:33:51.5773|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:33:51.6027|INFO|APIDocLog|Input JSON +2026-03-19 13:33:51.6027|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6027|DEBUG|OnDoc| +2026-03-19 13:33:51.6148|DEBUG|OnDoc| +2026-03-19 13:33:51.6148|DEBUG|OnDoc| +2026-03-19 13:33:51.6148|DEBUG|OnDoc| +2026-03-19 13:33:51.6148|DEBUG|OnDoc| +2026-03-19 13:33:51.6148|DEBUG|OnDoc| +2026-03-19 13:33:51.6148|DEBUG|OnDoc| +2026-03-19 13:33:51.6148|DEBUG|OnDoc| +2026-03-19 13:33:51.6148|DEBUG|OnDoc| +2026-03-19 13:33:51.6148|DEBUG|OnDoc| +2026-03-19 13:33:51.6148|DEBUG|OnDoc| +2026-03-19 13:33:51.6148|DEBUG|OnDoc| +2026-03-19 13:33:51.6148|DEBUG|OnDoc| +2026-03-19 13:33:51.6148|DEBUG|OnDoc| +2026-03-19 13:33:51.6404|DEBUG|OnDoc| +2026-03-19 13:33:51.6404|DEBUG|OnDoc| +2026-03-19 13:33:51.6501|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:33:51.6975|DEBUG|OnDoc| +2026-03-19 13:33:51.6975|DEBUG|OnDoc| +2026-03-19 13:33:51.7201|DEBUG|OnDoc| +2026-03-19 13:33:51.7201|DEBUG|OnDoc| +2026-03-19 13:33:51.7300|DEBUG|OnDoc| +2026-03-19 13:33:51.7300|DEBUG|OnDoc| +2026-03-19 13:33:51.7300|DEBUG|OnDoc| +2026-03-19 13:33:51.7300|DEBUG|OnDoc| +2026-03-19 13:33:51.7510|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:33:51.7510|DEBUG|OnDoc| +2026-03-19 13:33:51.7587|DEBUG|OnDoc| +2026-03-19 13:33:51.7587|DEBUG|OnDoc| +2026-03-19 13:33:51.7587|DEBUG|OnDoc| +2026-03-19 13:33:51.7587|DEBUG|OnDoc| +2026-03-19 13:33:51.7587|DEBUG|OnDoc| +2026-03-19 13:33:51.7587|DEBUG|OnDoc| +2026-03-19 13:33:51.7587|DEBUG|OnDoc| +2026-03-19 13:33:51.7587|DEBUG|OnDoc|Generate_Word +2026-03-19 13:33:51.7755|DEBUG|OnDoc|Word2013 +2026-03-19 13:33:51.7755|DEBUG|OnDoc|Word2013 +2026-03-19 13:34:50.9425|DEBUG|OnDoc|Generate_Word +2026-03-19 13:34:50.9813|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017932 +2026-03-19 13:34:50.9813|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:34:50.9813|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:34:50.9813|DEBUG|OnDoc| +2026-03-19 13:34:50.9952|DEBUG|OnDoc| +2026-03-19 13:34:50.9952|DEBUG|OnDoc| +2026-03-19 13:34:50.9952|DEBUG|OnDoc| +2026-03-19 13:34:50.9952|DEBUG|OnDoc| +2026-03-19 13:34:50.9952|DEBUG|OnDoc| +2026-03-19 13:35:26.5323|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:35:26.6417|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:35:26.6860|INFO|APIDocLog|Input JSON +2026-03-19 13:35:26.6860|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:35:26.6860|DEBUG|OnDoc| +2026-03-19 13:35:26.6860|DEBUG|OnDoc| +2026-03-19 13:35:26.6860|DEBUG|OnDoc| +2026-03-19 13:35:26.6860|DEBUG|OnDoc| +2026-03-19 13:35:26.6860|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.6926|DEBUG|OnDoc| +2026-03-19 13:35:26.7083|DEBUG|OnDoc| +2026-03-19 13:35:26.7083|DEBUG|OnDoc| +2026-03-19 13:35:26.7083|DEBUG|OnDoc| +2026-03-19 13:35:26.7083|DEBUG|OnDoc| +2026-03-19 13:35:26.7083|DEBUG|OnDoc| +2026-03-19 13:35:26.7083|DEBUG|OnDoc| +2026-03-19 13:35:26.7083|DEBUG|OnDoc| +2026-03-19 13:35:26.7083|DEBUG|OnDoc| +2026-03-19 13:35:26.7083|DEBUG|OnDoc| +2026-03-19 13:35:26.7083|DEBUG|OnDoc| +2026-03-19 13:35:26.7083|DEBUG|OnDoc| +2026-03-19 13:35:26.7311|DEBUG|OnDoc| +2026-03-19 13:35:26.7311|DEBUG|OnDoc| +2026-03-19 13:35:26.7449|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:35:26.8042|DEBUG|OnDoc| +2026-03-19 13:35:26.8042|DEBUG|OnDoc| +2026-03-19 13:35:26.8356|DEBUG|OnDoc| +2026-03-19 13:35:26.8356|DEBUG|OnDoc| +2026-03-19 13:35:26.8525|DEBUG|OnDoc| +2026-03-19 13:35:26.8525|DEBUG|OnDoc| +2026-03-19 13:35:26.8525|DEBUG|OnDoc| +2026-03-19 13:35:26.8525|DEBUG|OnDoc| +2026-03-19 13:35:26.8853|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:35:26.8853|DEBUG|OnDoc| +2026-03-19 13:35:26.8998|DEBUG|OnDoc| +2026-03-19 13:35:26.8998|DEBUG|OnDoc| +2026-03-19 13:35:26.8998|DEBUG|OnDoc| +2026-03-19 13:35:26.8998|DEBUG|OnDoc| +2026-03-19 13:35:26.9118|DEBUG|OnDoc| +2026-03-19 13:35:26.9118|DEBUG|OnDoc| +2026-03-19 13:35:26.9118|DEBUG|OnDoc| +2026-03-19 13:35:26.9118|DEBUG|OnDoc|Generate_Word +2026-03-19 13:35:26.9271|DEBUG|OnDoc|Word2013 +2026-03-19 13:35:26.9271|DEBUG|OnDoc|Word2013 +2026-03-19 13:36:37.1987|DEBUG|OnDoc|Generate_Word +2026-03-19 13:36:37.2400|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017948 +2026-03-19 13:36:37.2400|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:36:37.2400|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:36:37.2400|DEBUG|OnDoc| +2026-03-19 13:36:37.2745|DEBUG|OnDoc| +2026-03-19 13:36:37.2745|DEBUG|OnDoc| +2026-03-19 13:36:37.2745|DEBUG|OnDoc| +2026-03-19 13:36:37.2745|DEBUG|OnDoc| +2026-03-19 13:36:37.2745|DEBUG|OnDoc| +2026-03-19 13:37:43.9429|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:37:44.0349|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:37:44.0711|INFO|APIDocLog|Input JSON +2026-03-19 13:37:44.0711|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0711|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.0833|DEBUG|OnDoc| +2026-03-19 13:37:44.1134|DEBUG|OnDoc| +2026-03-19 13:37:44.1157|DEBUG|OnDoc| +2026-03-19 13:37:44.1157|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:37:44.1798|DEBUG|OnDoc| +2026-03-19 13:37:44.1798|DEBUG|OnDoc| +2026-03-19 13:37:44.2110|DEBUG|OnDoc| +2026-03-19 13:37:44.2110|DEBUG|OnDoc| +2026-03-19 13:37:44.2110|DEBUG|OnDoc| +2026-03-19 13:37:44.2110|DEBUG|OnDoc| +2026-03-19 13:37:44.2110|DEBUG|OnDoc| +2026-03-19 13:37:44.2244|DEBUG|OnDoc| +2026-03-19 13:37:44.2510|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:37:44.2510|DEBUG|OnDoc| +2026-03-19 13:37:44.2607|DEBUG|OnDoc| +2026-03-19 13:37:44.2607|DEBUG|OnDoc| +2026-03-19 13:37:44.2607|DEBUG|OnDoc| +2026-03-19 13:37:44.2607|DEBUG|OnDoc| +2026-03-19 13:37:44.2607|DEBUG|OnDoc| +2026-03-19 13:37:44.2607|DEBUG|OnDoc| +2026-03-19 13:37:44.2745|DEBUG|OnDoc| +2026-03-19 13:37:44.2745|DEBUG|OnDoc|Generate_Word +2026-03-19 13:37:44.3208|DEBUG|OnDoc|Word2013 +2026-03-19 13:37:44.3208|DEBUG|OnDoc|Word2013 +2026-03-19 13:37:50.3367|DEBUG|OnDoc|Generate_Word +2026-03-19 13:37:50.3770|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017953 +2026-03-19 13:37:50.3770|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:37:50.3805|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:37:50.3805|DEBUG|OnDoc| +2026-03-19 13:37:50.3805|DEBUG|OnDoc| +2026-03-19 13:37:50.3805|DEBUG|OnDoc| +2026-03-19 13:37:50.3805|DEBUG|OnDoc| +2026-03-19 13:37:50.3962|DEBUG|OnDoc| +2026-03-19 13:37:50.3962|DEBUG|OnDoc| +2026-03-19 13:37:58.2080|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:37:58.2984|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:37:58.3333|INFO|APIDocLog|Input JSON +2026-03-19 13:37:58.3333|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3333|DEBUG|OnDoc| +2026-03-19 13:37:58.3598|DEBUG|OnDoc| +2026-03-19 13:37:58.3598|DEBUG|OnDoc| +2026-03-19 13:37:58.3679|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:37:58.4097|DEBUG|OnDoc| +2026-03-19 13:37:58.4127|DEBUG|OnDoc| +2026-03-19 13:37:58.4407|DEBUG|OnDoc| +2026-03-19 13:37:58.4407|DEBUG|OnDoc| +2026-03-19 13:37:58.4507|DEBUG|OnDoc| +2026-03-19 13:37:58.4507|DEBUG|OnDoc| +2026-03-19 13:37:58.4507|DEBUG|OnDoc| +2026-03-19 13:37:58.4507|DEBUG|OnDoc| +2026-03-19 13:37:58.4777|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:37:58.4777|DEBUG|OnDoc| +2026-03-19 13:37:58.4777|DEBUG|OnDoc| +2026-03-19 13:37:58.4777|DEBUG|OnDoc| +2026-03-19 13:37:58.4777|DEBUG|OnDoc| +2026-03-19 13:37:58.4777|DEBUG|OnDoc| +2026-03-19 13:37:58.4777|DEBUG|OnDoc| +2026-03-19 13:37:58.4777|DEBUG|OnDoc| +2026-03-19 13:37:58.4938|DEBUG|OnDoc| +2026-03-19 13:37:58.4938|DEBUG|OnDoc|Generate_Word +2026-03-19 13:37:58.4938|DEBUG|OnDoc|Word2013 +2026-03-19 13:37:58.4938|DEBUG|OnDoc|Word2013 +2026-03-19 13:38:36.0975|DEBUG|OnDoc|Generate_Word +2026-03-19 13:38:36.1382|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017969 +2026-03-19 13:38:36.1382|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:38:36.1382|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:38:36.1382|DEBUG|OnDoc| +2026-03-19 13:38:36.1643|DEBUG|OnDoc| +2026-03-19 13:38:36.1643|DEBUG|OnDoc| +2026-03-19 13:38:36.1643|DEBUG|OnDoc| +2026-03-19 13:38:36.1643|DEBUG|OnDoc| +2026-03-19 13:38:36.1643|DEBUG|OnDoc| +2026-03-19 13:38:52.6397|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:38:52.7321|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:38:52.7645|INFO|APIDocLog|Input JSON +2026-03-19 13:38:52.7645|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:38:52.7645|DEBUG|OnDoc| +2026-03-19 13:38:52.7645|DEBUG|OnDoc| +2026-03-19 13:38:52.7645|DEBUG|OnDoc| +2026-03-19 13:38:52.7645|DEBUG|OnDoc| +2026-03-19 13:38:52.7645|DEBUG|OnDoc| +2026-03-19 13:38:52.7645|DEBUG|OnDoc| +2026-03-19 13:38:52.7645|DEBUG|OnDoc| +2026-03-19 13:38:52.7645|DEBUG|OnDoc| +2026-03-19 13:38:52.7645|DEBUG|OnDoc| +2026-03-19 13:38:52.7645|DEBUG|OnDoc| +2026-03-19 13:38:52.7645|DEBUG|OnDoc| +2026-03-19 13:38:52.7645|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.7715|DEBUG|OnDoc| +2026-03-19 13:38:52.8021|DEBUG|OnDoc| +2026-03-19 13:38:52.8021|DEBUG|OnDoc| +2026-03-19 13:38:52.8021|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:38:52.8546|DEBUG|OnDoc| +2026-03-19 13:38:52.8546|DEBUG|OnDoc| +2026-03-19 13:38:52.8858|DEBUG|OnDoc| +2026-03-19 13:38:52.8858|DEBUG|OnDoc| +2026-03-19 13:38:52.8962|DEBUG|OnDoc| +2026-03-19 13:38:52.8962|DEBUG|OnDoc| +2026-03-19 13:38:52.8962|DEBUG|OnDoc| +2026-03-19 13:38:52.8962|DEBUG|OnDoc| +2026-03-19 13:38:52.9231|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:38:52.9231|DEBUG|OnDoc| +2026-03-19 13:38:52.9292|DEBUG|OnDoc| +2026-03-19 13:38:52.9292|DEBUG|OnDoc| +2026-03-19 13:38:52.9292|DEBUG|OnDoc| +2026-03-19 13:38:52.9292|DEBUG|OnDoc| +2026-03-19 13:38:52.9292|DEBUG|OnDoc| +2026-03-19 13:38:52.9292|DEBUG|OnDoc| +2026-03-19 13:38:52.9292|DEBUG|OnDoc| +2026-03-19 13:38:52.9292|DEBUG|OnDoc|Generate_Word +2026-03-19 13:38:52.9448|DEBUG|OnDoc|Word2013 +2026-03-19 13:38:52.9448|DEBUG|OnDoc|Word2013 +2026-03-19 13:38:56.3031|DEBUG|OnDoc|Generate_Word +2026-03-19 13:38:56.3422|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017977 +2026-03-19 13:38:56.3422|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:38:56.3422|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:38:56.3422|DEBUG|OnDoc| +2026-03-19 13:38:56.3569|DEBUG|OnDoc| +2026-03-19 13:38:56.3569|DEBUG|OnDoc| +2026-03-19 13:38:56.3569|DEBUG|OnDoc| +2026-03-19 13:38:56.3569|DEBUG|OnDoc| +2026-03-19 13:38:56.3569|DEBUG|OnDoc| +2026-03-19 13:40:29.3366|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:40:29.4299|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:40:29.4653|INFO|APIDocLog|Input JSON +2026-03-19 13:40:29.4653|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:40:29.4653|DEBUG|OnDoc| +2026-03-19 13:40:29.4653|DEBUG|OnDoc| +2026-03-19 13:40:29.4653|DEBUG|OnDoc| +2026-03-19 13:40:29.4653|DEBUG|OnDoc| +2026-03-19 13:40:29.4653|DEBUG|OnDoc| +2026-03-19 13:40:29.4653|DEBUG|OnDoc| +2026-03-19 13:40:29.4653|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4744|DEBUG|OnDoc| +2026-03-19 13:40:29.4904|DEBUG|OnDoc| +2026-03-19 13:40:29.4904|DEBUG|OnDoc| +2026-03-19 13:40:29.4904|DEBUG|OnDoc| +2026-03-19 13:40:29.4904|DEBUG|OnDoc| +2026-03-19 13:40:29.4904|DEBUG|OnDoc| +2026-03-19 13:40:29.4904|DEBUG|OnDoc| +2026-03-19 13:40:29.4904|DEBUG|OnDoc| +2026-03-19 13:40:29.5067|DEBUG|OnDoc| +2026-03-19 13:40:29.5067|DEBUG|OnDoc| +2026-03-19 13:40:29.5222|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:40:29.5720|DEBUG|OnDoc| +2026-03-19 13:40:29.5720|DEBUG|OnDoc| +2026-03-19 13:40:29.6064|DEBUG|OnDoc| +2026-03-19 13:40:29.6064|DEBUG|OnDoc| +2026-03-19 13:40:29.6240|DEBUG|OnDoc| +2026-03-19 13:40:29.6240|DEBUG|OnDoc| +2026-03-19 13:40:29.6240|DEBUG|OnDoc| +2026-03-19 13:40:29.6240|DEBUG|OnDoc| +2026-03-19 13:40:29.6562|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:40:29.6562|DEBUG|OnDoc| +2026-03-19 13:40:29.6701|DEBUG|OnDoc| +2026-03-19 13:40:29.6701|DEBUG|OnDoc| +2026-03-19 13:40:29.6701|DEBUG|OnDoc| +2026-03-19 13:40:29.6701|DEBUG|OnDoc| +2026-03-19 13:40:29.6823|DEBUG|OnDoc| +2026-03-19 13:40:29.6823|DEBUG|OnDoc| +2026-03-19 13:40:29.6823|DEBUG|OnDoc| +2026-03-19 13:40:29.6823|DEBUG|OnDoc|Generate_Word +2026-03-19 13:40:29.6953|DEBUG|OnDoc|Word2013 +2026-03-19 13:40:29.6953|DEBUG|OnDoc|Word2013 +2026-03-19 13:40:33.9068|DEBUG|OnDoc|Generate_Word +2026-03-19 13:40:33.9478|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017985 +2026-03-19 13:40:33.9478|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:40:33.9478|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:40:33.9478|DEBUG|OnDoc| +2026-03-19 13:40:33.9716|DEBUG|OnDoc| +2026-03-19 13:40:33.9716|DEBUG|OnDoc| +2026-03-19 13:40:33.9716|DEBUG|OnDoc| +2026-03-19 13:40:33.9716|DEBUG|OnDoc| +2026-03-19 13:40:33.9746|DEBUG|OnDoc| +2026-03-19 13:41:16.4899|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:41:16.6422|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:41:16.7099|INFO|APIDocLog|Input JSON +2026-03-19 13:41:16.7099|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7099|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7238|DEBUG|OnDoc| +2026-03-19 13:41:16.7577|DEBUG|OnDoc| +2026-03-19 13:41:16.7577|DEBUG|OnDoc| +2026-03-19 13:41:16.7577|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:41:16.8116|DEBUG|OnDoc| +2026-03-19 13:41:16.8116|DEBUG|OnDoc| +2026-03-19 13:41:16.8692|DEBUG|OnDoc| +2026-03-19 13:41:16.8692|DEBUG|OnDoc| +2026-03-19 13:41:16.8870|DEBUG|OnDoc| +2026-03-19 13:41:16.8870|DEBUG|OnDoc| +2026-03-19 13:41:16.8870|DEBUG|OnDoc| +2026-03-19 13:41:16.8870|DEBUG|OnDoc| +2026-03-19 13:41:16.9419|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:41:16.9429|DEBUG|OnDoc| +2026-03-19 13:41:16.9429|DEBUG|OnDoc| +2026-03-19 13:41:16.9586|DEBUG|OnDoc| +2026-03-19 13:41:16.9586|DEBUG|OnDoc| +2026-03-19 13:41:16.9586|DEBUG|OnDoc| +2026-03-19 13:41:16.9586|DEBUG|OnDoc| +2026-03-19 13:41:16.9586|DEBUG|OnDoc| +2026-03-19 13:41:16.9770|DEBUG|OnDoc| +2026-03-19 13:41:16.9770|DEBUG|OnDoc|Generate_Word +2026-03-19 13:41:16.9770|DEBUG|OnDoc|Word2013 +2026-03-19 13:41:16.9770|DEBUG|OnDoc|Word2013 +2026-03-19 13:41:22.0376|DEBUG|OnDoc|Generate_Word +2026-03-19 13:41:22.0792|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000017990 +2026-03-19 13:41:22.0792|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:41:22.0792|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:41:22.0792|DEBUG|OnDoc| +2026-03-19 13:41:22.1056|DEBUG|OnDoc| +2026-03-19 13:41:22.1056|DEBUG|OnDoc| +2026-03-19 13:41:22.1056|DEBUG|OnDoc| +2026-03-19 13:41:22.1056|DEBUG|OnDoc| +2026-03-19 13:41:22.1056|DEBUG|OnDoc| +2026-03-19 13:45:44.6639|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:45:44.7578|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:45:44.7929|INFO|APIDocLog|Input JSON +2026-03-19 13:45:44.7929|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.7929|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8034|DEBUG|OnDoc| +2026-03-19 13:45:44.8324|DEBUG|OnDoc| +2026-03-19 13:45:44.8339|DEBUG|OnDoc| +2026-03-19 13:45:44.8339|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:45:44.8863|DEBUG|OnDoc| +2026-03-19 13:45:44.8863|DEBUG|OnDoc| +2026-03-19 13:45:44.9170|DEBUG|OnDoc| +2026-03-19 13:45:44.9170|DEBUG|OnDoc| +2026-03-19 13:45:44.9275|DEBUG|OnDoc| +2026-03-19 13:45:44.9275|DEBUG|OnDoc| +2026-03-19 13:45:44.9275|DEBUG|OnDoc| +2026-03-19 13:45:44.9275|DEBUG|OnDoc| +2026-03-19 13:45:44.9549|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:45:44.9549|DEBUG|OnDoc| +2026-03-19 13:45:44.9615|DEBUG|OnDoc| +2026-03-19 13:45:44.9615|DEBUG|OnDoc| +2026-03-19 13:45:44.9615|DEBUG|OnDoc| +2026-03-19 13:45:44.9615|DEBUG|OnDoc| +2026-03-19 13:45:44.9615|DEBUG|OnDoc| +2026-03-19 13:45:44.9615|DEBUG|OnDoc| +2026-03-19 13:45:44.9615|DEBUG|OnDoc| +2026-03-19 13:45:44.9615|DEBUG|OnDoc|Generate_Word +2026-03-19 13:45:44.9810|DEBUG|OnDoc|Word2013 +2026-03-19 13:45:44.9810|DEBUG|OnDoc|Word2013 +2026-03-19 13:45:49.2681|DEBUG|OnDoc|Generate_Word +2026-03-19 13:45:49.3066|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018002 +2026-03-19 13:45:49.3066|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:45:49.3066|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:45:49.3066|DEBUG|OnDoc| +2026-03-19 13:45:49.3194|DEBUG|OnDoc| +2026-03-19 13:45:49.3194|DEBUG|OnDoc| +2026-03-19 13:45:49.3194|DEBUG|OnDoc| +2026-03-19 13:45:49.3194|DEBUG|OnDoc| +2026-03-19 13:45:49.3194|DEBUG|OnDoc| +2026-03-19 13:52:29.2663|DEBUG|OnDoc| +2026-03-19 13:52:29.3616|DEBUG|OnDoc| +2026-03-19 13:52:29.3666|DEBUG|OnDoc| +2026-03-19 13:52:29.3666|DEBUG|OnDoc| +2026-03-19 13:52:29.7060|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:52:29.9888|INFO|APIDocLog|Start CreateCLM +2026-03-19 13:52:30.0193|INFO|APIDocLog|Input JSON +2026-03-19 13:52:30.0397|DEBUG|APIDocLog|Create CLMDocItem +2026-03-19 13:52:30.1074|DEBUG|OnDoc| +2026-03-19 13:52:30.1367|DEBUG|OnDoc| +2026-03-19 13:52:30.1367|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:52:38.6212|DEBUG|OnDoc| +2026-03-19 13:52:38.6582|DEBUG|OnDoc| +2026-03-19 13:52:38.6966|DEBUG|APIDocLog|Start GenDocCLM +2026-03-19 13:52:38.7182|DEBUG|OnDoc| +2026-03-19 13:52:38.7247|DEBUG|OnDoc| +2026-03-19 13:52:38.7247|DEBUG|OnDoc| +2026-03-19 13:52:38.7247|DEBUG|OnDoc| +2026-03-19 13:52:38.7247|DEBUG|OnDoc| +2026-03-19 13:52:38.7247|DEBUG|OnDoc| +2026-03-19 13:52:38.7850|DEBUG|OnDoc| +2026-03-19 13:52:38.7893|DEBUG|OnDoc| +2026-03-19 13:52:38.8470|DEBUG|OnDoc| +2026-03-19 13:52:38.8470|DEBUG|OnDoc| +2026-03-19 13:52:38.8629|DEBUG|APIDocLog|DocGenerator +2026-03-19 13:52:38.8704|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:52:38.8704|DEBUG|OnDoc| +2026-03-19 13:52:38.8903|DEBUG|OnDoc| +2026-03-19 13:52:38.8903|DEBUG|OnDoc| +2026-03-19 13:52:38.8963|DEBUG|OnDoc| +2026-03-19 13:52:38.8963|DEBUG|OnDoc| +2026-03-19 13:52:38.9201|DEBUG|OnDoc| +2026-03-19 13:52:38.9201|DEBUG|OnDoc| +2026-03-19 13:52:38.9297|DEBUG|OnDoc| +2026-03-19 13:52:38.9297|DEBUG|OnDoc|Generate_Word +2026-03-19 13:52:39.3580|DEBUG|OnDoc|Word2013 +2026-03-19 13:52:39.3674|DEBUG|OnDoc|Word2013 +2026-03-19 13:52:40.2453|DEBUG|OnDoc|Generate_Word +2026-03-19 13:52:41.2784|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018018 +2026-03-19 13:52:41.2784|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:52:41.2784|INFO|APIDocLog|Dokument abgeschlossen +2026-03-19 13:52:48.0329|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:52:48.1291|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:52:48.1812|INFO|APIDocLog|Input JSON +2026-03-19 13:52:48.1927|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.1927|DEBUG|OnDoc| +2026-03-19 13:52:48.2085|DEBUG|OnDoc| +2026-03-19 13:52:48.2085|DEBUG|OnDoc| +2026-03-19 13:52:48.2085|DEBUG|OnDoc| +2026-03-19 13:52:48.2085|DEBUG|OnDoc| +2026-03-19 13:52:48.2085|DEBUG|OnDoc| +2026-03-19 13:52:48.2085|DEBUG|OnDoc| +2026-03-19 13:52:48.2085|DEBUG|OnDoc| +2026-03-19 13:52:48.2085|DEBUG|OnDoc| +2026-03-19 13:52:48.2085|DEBUG|OnDoc| +2026-03-19 13:52:48.2085|DEBUG|OnDoc| +2026-03-19 13:52:48.2085|DEBUG|OnDoc| +2026-03-19 13:52:48.2085|DEBUG|OnDoc| +2026-03-19 13:52:48.2085|DEBUG|OnDoc| +2026-03-19 13:52:48.2246|DEBUG|OnDoc| +2026-03-19 13:52:48.2246|DEBUG|OnDoc| +2026-03-19 13:52:48.2246|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:52:48.2782|DEBUG|OnDoc| +2026-03-19 13:52:48.2782|DEBUG|OnDoc| +2026-03-19 13:52:48.3033|DEBUG|OnDoc| +2026-03-19 13:52:48.3033|DEBUG|OnDoc| +2026-03-19 13:52:48.3033|DEBUG|OnDoc| +2026-03-19 13:52:48.3033|DEBUG|OnDoc| +2026-03-19 13:52:48.3033|DEBUG|OnDoc| +2026-03-19 13:52:48.3033|DEBUG|OnDoc| +2026-03-19 13:52:48.3320|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:52:48.3320|DEBUG|OnDoc| +2026-03-19 13:52:48.3401|DEBUG|OnDoc| +2026-03-19 13:52:48.3401|DEBUG|OnDoc| +2026-03-19 13:52:48.3401|DEBUG|OnDoc| +2026-03-19 13:52:48.3401|DEBUG|OnDoc| +2026-03-19 13:52:48.3401|DEBUG|OnDoc| +2026-03-19 13:52:48.3401|DEBUG|OnDoc| +2026-03-19 13:52:48.3496|DEBUG|OnDoc| +2026-03-19 13:52:48.3496|DEBUG|OnDoc|Generate_Word +2026-03-19 13:52:48.4291|DEBUG|OnDoc|Word2013 +2026-03-19 13:52:48.4291|DEBUG|OnDoc|Word2013 +2026-03-19 13:52:52.8877|DEBUG|OnDoc|Generate_Word +2026-03-19 13:52:52.9288|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018023 +2026-03-19 13:52:52.9288|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:52:52.9288|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:52:52.9288|DEBUG|OnDoc| +2026-03-19 13:52:52.9430|DEBUG|OnDoc| +2026-03-19 13:52:52.9430|DEBUG|OnDoc| +2026-03-19 13:52:52.9430|DEBUG|OnDoc| +2026-03-19 13:52:52.9430|DEBUG|OnDoc| +2026-03-19 13:52:52.9430|DEBUG|OnDoc| +2026-03-19 13:54:34.7603|DEBUG|OnDoc| +2026-03-19 13:54:34.8489|DEBUG|OnDoc| +2026-03-19 13:54:34.8489|DEBUG|OnDoc| +2026-03-19 13:54:34.8489|DEBUG|OnDoc| +2026-03-19 13:54:35.1496|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:54:35.4095|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:54:35.5114|INFO|APIDocLog|Input JSON +2026-03-19 13:54:35.5341|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:54:35.5371|DEBUG|OnDoc| +2026-03-19 13:54:35.5371|DEBUG|OnDoc| +2026-03-19 13:54:35.5371|DEBUG|OnDoc| +2026-03-19 13:54:35.5371|DEBUG|OnDoc| +2026-03-19 13:54:35.5371|DEBUG|OnDoc| +2026-03-19 13:54:35.5371|DEBUG|OnDoc| +2026-03-19 13:54:35.5371|DEBUG|OnDoc| +2026-03-19 13:54:35.5371|DEBUG|OnDoc| +2026-03-19 13:54:35.5371|DEBUG|OnDoc| +2026-03-19 13:54:35.5371|DEBUG|OnDoc| +2026-03-19 13:54:35.5371|DEBUG|OnDoc| +2026-03-19 13:54:35.5371|DEBUG|OnDoc| +2026-03-19 13:54:35.5371|DEBUG|OnDoc| +2026-03-19 13:54:35.5371|DEBUG|OnDoc| +2026-03-19 13:54:35.5529|DEBUG|OnDoc| +2026-03-19 13:54:35.5529|DEBUG|OnDoc| +2026-03-19 13:54:35.5529|DEBUG|OnDoc| +2026-03-19 13:54:35.5529|DEBUG|OnDoc| +2026-03-19 13:54:35.5529|DEBUG|OnDoc| +2026-03-19 13:54:35.5529|DEBUG|OnDoc| +2026-03-19 13:54:35.5529|DEBUG|OnDoc| +2026-03-19 13:54:35.5529|DEBUG|OnDoc| +2026-03-19 13:54:35.5529|DEBUG|OnDoc| +2026-03-19 13:54:35.5684|DEBUG|OnDoc| +2026-03-19 13:54:35.5684|DEBUG|OnDoc| +2026-03-19 13:54:35.5684|DEBUG|OnDoc| +2026-03-19 13:54:35.5684|DEBUG|OnDoc| +2026-03-19 13:54:35.5684|DEBUG|OnDoc| +2026-03-19 13:54:35.5684|DEBUG|OnDoc| +2026-03-19 13:54:35.5684|DEBUG|OnDoc| +2026-03-19 13:54:35.5684|DEBUG|OnDoc| +2026-03-19 13:54:35.5684|DEBUG|OnDoc| +2026-03-19 13:54:35.5684|DEBUG|OnDoc| +2026-03-19 13:54:35.5684|DEBUG|OnDoc| +2026-03-19 13:54:35.5997|DEBUG|OnDoc| +2026-03-19 13:54:35.5997|DEBUG|OnDoc| +2026-03-19 13:54:35.5997|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:54:35.7998|DEBUG|OnDoc| +2026-03-19 13:54:35.8105|DEBUG|OnDoc| +2026-03-19 13:54:35.8541|DEBUG|OnDoc| +2026-03-19 13:54:35.8541|DEBUG|OnDoc| +2026-03-19 13:54:35.8828|DEBUG|OnDoc| +2026-03-19 13:54:35.8828|DEBUG|OnDoc| +2026-03-19 13:54:35.8828|DEBUG|OnDoc| +2026-03-19 13:54:35.8828|DEBUG|OnDoc| +2026-03-19 13:54:35.9142|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:54:35.9142|DEBUG|OnDoc| +2026-03-19 13:54:35.9315|DEBUG|OnDoc| +2026-03-19 13:54:35.9315|DEBUG|OnDoc| +2026-03-19 13:54:35.9315|DEBUG|OnDoc| +2026-03-19 13:54:35.9315|DEBUG|OnDoc| +2026-03-19 13:54:35.9315|DEBUG|OnDoc| +2026-03-19 13:54:35.9315|DEBUG|OnDoc| +2026-03-19 13:54:35.9456|DEBUG|OnDoc| +2026-03-19 13:54:35.9456|DEBUG|OnDoc|Generate_Word +2026-03-19 13:54:36.3938|DEBUG|OnDoc|Word2013 +2026-03-19 13:54:36.4032|DEBUG|OnDoc|Word2013 +2026-03-19 13:54:46.4813|DEBUG|OnDoc|Generate_Word +2026-03-19 13:54:46.5536|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018039 +2026-03-19 13:54:46.5536|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:54:46.5536|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:54:46.5536|DEBUG|OnDoc| +2026-03-19 13:54:46.6260|DEBUG|OnDoc| +2026-03-19 13:54:46.6357|DEBUG|OnDoc| +2026-03-19 13:54:46.6357|DEBUG|OnDoc| +2026-03-19 13:54:46.6357|DEBUG|OnDoc| +2026-03-19 13:54:46.6357|DEBUG|OnDoc| +2026-03-19 13:55:15.8585|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:55:15.9101|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:55:15.9364|INFO|APIDocLog|Input JSON +2026-03-19 13:55:15.9364|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:55:15.9364|DEBUG|OnDoc| +2026-03-19 13:55:15.9364|DEBUG|OnDoc| +2026-03-19 13:55:15.9364|DEBUG|OnDoc| +2026-03-19 13:55:15.9364|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9427|DEBUG|OnDoc| +2026-03-19 13:55:15.9584|DEBUG|OnDoc| +2026-03-19 13:55:15.9584|DEBUG|OnDoc| +2026-03-19 13:55:15.9584|DEBUG|OnDoc| +2026-03-19 13:55:15.9763|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:55:16.0243|DEBUG|OnDoc| +2026-03-19 13:55:16.0243|DEBUG|OnDoc| +2026-03-19 13:55:16.0457|DEBUG|OnDoc| +2026-03-19 13:55:16.0457|DEBUG|OnDoc| +2026-03-19 13:55:16.0577|DEBUG|OnDoc| +2026-03-19 13:55:16.0577|DEBUG|OnDoc| +2026-03-19 13:55:16.0577|DEBUG|OnDoc| +2026-03-19 13:55:16.0577|DEBUG|OnDoc| +2026-03-19 13:55:16.0777|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:55:16.0777|DEBUG|OnDoc| +2026-03-19 13:55:16.0867|DEBUG|OnDoc| +2026-03-19 13:55:16.0867|DEBUG|OnDoc| +2026-03-19 13:55:16.0867|DEBUG|OnDoc| +2026-03-19 13:55:16.0867|DEBUG|OnDoc| +2026-03-19 13:55:16.0867|DEBUG|OnDoc| +2026-03-19 13:55:16.0867|DEBUG|OnDoc| +2026-03-19 13:55:16.0867|DEBUG|OnDoc| +2026-03-19 13:55:16.0867|DEBUG|OnDoc|Generate_Word +2026-03-19 13:55:16.1048|DEBUG|OnDoc|Word2013 +2026-03-19 13:55:16.1048|DEBUG|OnDoc|Word2013 +2026-03-19 13:56:04.0634|DEBUG|OnDoc|Generate_Word +2026-03-19 13:56:04.1046|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018047 +2026-03-19 13:56:04.1046|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:56:04.1046|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:56:04.1046|DEBUG|OnDoc| +2026-03-19 13:56:04.1206|DEBUG|OnDoc| +2026-03-19 13:56:04.1206|DEBUG|OnDoc| +2026-03-19 13:56:04.1206|DEBUG|OnDoc| +2026-03-19 13:56:04.1206|DEBUG|OnDoc| +2026-03-19 13:56:04.1206|DEBUG|OnDoc| +2026-03-19 13:56:13.5932|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:56:13.6719|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:56:13.7006|INFO|APIDocLog|Input JSON +2026-03-19 13:56:13.7006|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:56:13.7006|DEBUG|OnDoc| +2026-03-19 13:56:13.7006|DEBUG|OnDoc| +2026-03-19 13:56:13.7006|DEBUG|OnDoc| +2026-03-19 13:56:13.7006|DEBUG|OnDoc| +2026-03-19 13:56:13.7006|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7092|DEBUG|OnDoc| +2026-03-19 13:56:13.7242|DEBUG|OnDoc| +2026-03-19 13:56:13.7242|DEBUG|OnDoc| +2026-03-19 13:56:13.7242|DEBUG|OnDoc| +2026-03-19 13:56:13.7242|DEBUG|OnDoc| +2026-03-19 13:56:13.7242|DEBUG|OnDoc| +2026-03-19 13:56:13.7242|DEBUG|OnDoc| +2026-03-19 13:56:13.7242|DEBUG|OnDoc| +2026-03-19 13:56:13.7242|DEBUG|OnDoc| +2026-03-19 13:56:13.7242|DEBUG|OnDoc| +2026-03-19 13:56:13.7242|DEBUG|OnDoc| +2026-03-19 13:56:13.7242|DEBUG|OnDoc| +2026-03-19 13:56:13.7416|DEBUG|OnDoc| +2026-03-19 13:56:13.7416|DEBUG|OnDoc| +2026-03-19 13:56:13.7416|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:56:13.7979|DEBUG|OnDoc| +2026-03-19 13:56:13.7979|DEBUG|OnDoc| +2026-03-19 13:56:13.8231|DEBUG|OnDoc| +2026-03-19 13:56:13.8231|DEBUG|OnDoc| +2026-03-19 13:56:13.8355|DEBUG|OnDoc| +2026-03-19 13:56:13.8355|DEBUG|OnDoc| +2026-03-19 13:56:13.8355|DEBUG|OnDoc| +2026-03-19 13:56:13.8355|DEBUG|OnDoc| +2026-03-19 13:56:13.8566|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:56:13.8566|DEBUG|OnDoc| +2026-03-19 13:56:13.8661|DEBUG|OnDoc| +2026-03-19 13:56:13.8661|DEBUG|OnDoc| +2026-03-19 13:56:13.8661|DEBUG|OnDoc| +2026-03-19 13:56:13.8661|DEBUG|OnDoc| +2026-03-19 13:56:13.8661|DEBUG|OnDoc| +2026-03-19 13:56:13.8661|DEBUG|OnDoc| +2026-03-19 13:56:13.8832|DEBUG|OnDoc| +2026-03-19 13:56:13.8832|DEBUG|OnDoc|Generate_Word +2026-03-19 13:56:13.8832|DEBUG|OnDoc|Word2013 +2026-03-19 13:56:13.8832|DEBUG|OnDoc|Word2013 +2026-03-19 13:56:26.8927|DEBUG|OnDoc|Generate_Word +2026-03-19 13:56:26.9312|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018055 +2026-03-19 13:56:26.9312|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:56:26.9312|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:56:26.9312|DEBUG|OnDoc| +2026-03-19 13:56:26.9472|DEBUG|OnDoc| +2026-03-19 13:56:26.9472|DEBUG|OnDoc| +2026-03-19 13:56:26.9472|DEBUG|OnDoc| +2026-03-19 13:56:26.9472|DEBUG|OnDoc| +2026-03-19 13:56:26.9472|DEBUG|OnDoc| +2026-03-19 13:56:37.0054|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:56:37.0919|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:56:37.1175|INFO|APIDocLog|Input JSON +2026-03-19 13:56:37.1175|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1175|DEBUG|OnDoc| +2026-03-19 13:56:37.1301|DEBUG|OnDoc| +2026-03-19 13:56:37.1301|DEBUG|OnDoc| +2026-03-19 13:56:37.1301|DEBUG|OnDoc| +2026-03-19 13:56:37.1301|DEBUG|OnDoc| +2026-03-19 13:56:37.1301|DEBUG|OnDoc| +2026-03-19 13:56:37.1301|DEBUG|OnDoc| +2026-03-19 13:56:37.1301|DEBUG|OnDoc| +2026-03-19 13:56:37.1301|DEBUG|OnDoc| +2026-03-19 13:56:37.1301|DEBUG|OnDoc| +2026-03-19 13:56:37.1301|DEBUG|OnDoc| +2026-03-19 13:56:37.1301|DEBUG|OnDoc| +2026-03-19 13:56:37.1301|DEBUG|OnDoc| +2026-03-19 13:56:37.1301|DEBUG|OnDoc| +2026-03-19 13:56:37.1301|DEBUG|OnDoc| +2026-03-19 13:56:37.1593|DEBUG|OnDoc| +2026-03-19 13:56:37.1613|DEBUG|OnDoc| +2026-03-19 13:56:37.1613|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:56:37.2117|DEBUG|OnDoc| +2026-03-19 13:56:37.2117|DEBUG|OnDoc| +2026-03-19 13:56:37.2338|DEBUG|OnDoc| +2026-03-19 13:56:37.2338|DEBUG|OnDoc| +2026-03-19 13:56:37.2428|DEBUG|OnDoc| +2026-03-19 13:56:37.2428|DEBUG|OnDoc| +2026-03-19 13:56:37.2428|DEBUG|OnDoc| +2026-03-19 13:56:37.2428|DEBUG|OnDoc| +2026-03-19 13:56:37.2616|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:56:37.2616|DEBUG|OnDoc| +2026-03-19 13:56:37.2616|DEBUG|OnDoc| +2026-03-19 13:56:37.2616|DEBUG|OnDoc| +2026-03-19 13:56:37.2616|DEBUG|OnDoc| +2026-03-19 13:56:37.2616|DEBUG|OnDoc| +2026-03-19 13:56:37.2756|DEBUG|OnDoc| +2026-03-19 13:56:37.2756|DEBUG|OnDoc| +2026-03-19 13:56:37.2756|DEBUG|OnDoc| +2026-03-19 13:56:37.2756|DEBUG|OnDoc|Generate_Word +2026-03-19 13:56:37.2867|DEBUG|OnDoc|Word2013 +2026-03-19 13:56:37.2867|DEBUG|OnDoc|Word2013 +2026-03-19 13:56:43.2868|DEBUG|OnDoc|Generate_Word +2026-03-19 13:56:43.3253|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018060 +2026-03-19 13:56:43.3253|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:56:43.3253|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:56:43.3253|DEBUG|OnDoc| +2026-03-19 13:56:43.3383|DEBUG|OnDoc| +2026-03-19 13:56:43.3383|DEBUG|OnDoc| +2026-03-19 13:56:43.3383|DEBUG|OnDoc| +2026-03-19 13:56:43.3383|DEBUG|OnDoc| +2026-03-19 13:56:43.3383|DEBUG|OnDoc| +2026-03-19 13:58:27.2111|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:58:27.2770|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:58:27.2982|INFO|APIDocLog|Input JSON +2026-03-19 13:58:27.2982|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:58:27.2982|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3022|DEBUG|OnDoc| +2026-03-19 13:58:27.3405|DEBUG|OnDoc| +2026-03-19 13:58:27.3405|DEBUG|OnDoc| +2026-03-19 13:58:27.3501|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:58:27.3925|DEBUG|OnDoc| +2026-03-19 13:58:27.3961|DEBUG|OnDoc| +2026-03-19 13:58:27.3961|DEBUG|OnDoc| +2026-03-19 13:58:27.3961|DEBUG|OnDoc| +2026-03-19 13:58:27.4152|DEBUG|OnDoc| +2026-03-19 13:58:27.4152|DEBUG|OnDoc| +2026-03-19 13:58:27.4152|DEBUG|OnDoc| +2026-03-19 13:58:27.4152|DEBUG|OnDoc| +2026-03-19 13:58:27.4273|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:58:27.4273|DEBUG|OnDoc| +2026-03-19 13:58:27.4273|DEBUG|OnDoc| +2026-03-19 13:58:27.4273|DEBUG|OnDoc| +2026-03-19 13:58:27.4273|DEBUG|OnDoc| +2026-03-19 13:58:27.4273|DEBUG|OnDoc| +2026-03-19 13:58:27.4273|DEBUG|OnDoc| +2026-03-19 13:58:27.4273|DEBUG|OnDoc| +2026-03-19 13:58:27.4438|DEBUG|OnDoc| +2026-03-19 13:58:27.4438|DEBUG|OnDoc|Generate_Word +2026-03-19 13:58:27.4438|DEBUG|OnDoc|Word2013 +2026-03-19 13:58:27.4438|DEBUG|OnDoc|Word2013 +2026-03-19 13:58:37.5041|DEBUG|OnDoc|Generate_Word +2026-03-19 13:58:37.5172|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018071 +2026-03-19 13:58:37.5172|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:58:37.5172|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:58:37.5172|DEBUG|OnDoc| +2026-03-19 13:58:37.5385|DEBUG|OnDoc| +2026-03-19 13:58:37.5385|DEBUG|OnDoc| +2026-03-19 13:58:37.5385|DEBUG|OnDoc| +2026-03-19 13:58:37.5385|DEBUG|OnDoc| +2026-03-19 13:58:37.5385|DEBUG|OnDoc| +2026-03-19 13:58:53.1422|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:58:53.2121|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:58:53.2335|INFO|APIDocLog|Input JSON +2026-03-19 13:58:53.2335|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:58:53.2335|DEBUG|OnDoc| +2026-03-19 13:58:53.2335|DEBUG|OnDoc| +2026-03-19 13:58:53.2335|DEBUG|OnDoc| +2026-03-19 13:58:53.2335|DEBUG|OnDoc| +2026-03-19 13:58:53.2335|DEBUG|OnDoc| +2026-03-19 13:58:53.2335|DEBUG|OnDoc| +2026-03-19 13:58:53.2335|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2404|DEBUG|OnDoc| +2026-03-19 13:58:53.2642|DEBUG|OnDoc| +2026-03-19 13:58:53.2642|DEBUG|OnDoc| +2026-03-19 13:58:53.2727|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:58:53.3528|DEBUG|OnDoc| +2026-03-19 13:58:53.3528|DEBUG|OnDoc| +2026-03-19 13:58:53.3750|DEBUG|OnDoc| +2026-03-19 13:58:53.3750|DEBUG|OnDoc| +2026-03-19 13:58:53.3865|DEBUG|OnDoc| +2026-03-19 13:58:53.3865|DEBUG|OnDoc| +2026-03-19 13:58:53.3865|DEBUG|OnDoc| +2026-03-19 13:58:53.3865|DEBUG|OnDoc| +2026-03-19 13:58:53.4007|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:58:53.4007|DEBUG|OnDoc| +2026-03-19 13:58:53.4138|DEBUG|OnDoc| +2026-03-19 13:58:53.4138|DEBUG|OnDoc| +2026-03-19 13:58:53.4138|DEBUG|OnDoc| +2026-03-19 13:58:53.4138|DEBUG|OnDoc| +2026-03-19 13:58:53.4138|DEBUG|OnDoc| +2026-03-19 13:58:53.4138|DEBUG|OnDoc| +2026-03-19 13:58:53.4323|DEBUG|OnDoc| +2026-03-19 13:58:53.4323|DEBUG|OnDoc|Generate_Word +2026-03-19 13:58:53.4453|DEBUG|OnDoc|Word2013 +2026-03-19 13:58:53.4453|DEBUG|OnDoc|Word2013 +2026-03-19 13:58:59.6837|DEBUG|OnDoc|Generate_Word +2026-03-19 13:58:59.7249|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018086 +2026-03-19 13:58:59.7249|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:58:59.7249|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:58:59.7249|DEBUG|OnDoc| +2026-03-19 13:58:59.7249|DEBUG|OnDoc| +2026-03-19 13:58:59.7399|DEBUG|OnDoc| +2026-03-19 13:58:59.7399|DEBUG|OnDoc| +2026-03-19 13:58:59.7399|DEBUG|OnDoc| +2026-03-19 13:58:59.7399|DEBUG|OnDoc| +2026-03-19 13:59:15.1284|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 13:59:15.2201|INFO|APIDocLog|Start CreateDoc +2026-03-19 13:59:15.2421|INFO|APIDocLog|Input JSON +2026-03-19 13:59:15.2421|DEBUG|OnDoc|Start GenDoc +2026-03-19 13:59:15.2421|DEBUG|OnDoc| +2026-03-19 13:59:15.2421|DEBUG|OnDoc| +2026-03-19 13:59:15.2421|DEBUG|OnDoc| +2026-03-19 13:59:15.2421|DEBUG|OnDoc| +2026-03-19 13:59:15.2421|DEBUG|OnDoc| +2026-03-19 13:59:15.2421|DEBUG|OnDoc| +2026-03-19 13:59:15.2421|DEBUG|OnDoc| +2026-03-19 13:59:15.2421|DEBUG|OnDoc| +2026-03-19 13:59:15.2421|DEBUG|OnDoc| +2026-03-19 13:59:15.2421|DEBUG|OnDoc| +2026-03-19 13:59:15.2421|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2552|DEBUG|OnDoc| +2026-03-19 13:59:15.2757|DEBUG|OnDoc| +2026-03-19 13:59:15.2757|DEBUG|OnDoc| +2026-03-19 13:59:15.2757|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 13:59:15.3349|DEBUG|OnDoc| +2026-03-19 13:59:15.3349|DEBUG|OnDoc| +2026-03-19 13:59:15.3490|DEBUG|OnDoc| +2026-03-19 13:59:15.3490|DEBUG|OnDoc| +2026-03-19 13:59:15.3490|DEBUG|OnDoc| +2026-03-19 13:59:15.3490|DEBUG|OnDoc| +2026-03-19 13:59:15.3490|DEBUG|OnDoc| +2026-03-19 13:59:15.3490|DEBUG|OnDoc| +2026-03-19 13:59:15.3740|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 13:59:15.3740|DEBUG|OnDoc| +2026-03-19 13:59:15.3852|DEBUG|OnDoc| +2026-03-19 13:59:15.3852|DEBUG|OnDoc| +2026-03-19 13:59:15.3852|DEBUG|OnDoc| +2026-03-19 13:59:15.3988|DEBUG|OnDoc| +2026-03-19 13:59:15.4137|DEBUG|OnDoc| +2026-03-19 13:59:15.4137|DEBUG|OnDoc| +2026-03-19 13:59:15.4285|DEBUG|OnDoc| +2026-03-19 13:59:15.4285|DEBUG|OnDoc|Generate_Word +2026-03-19 13:59:15.4451|DEBUG|OnDoc|Word2013 +2026-03-19 13:59:15.4451|DEBUG|OnDoc|Word2013 +2026-03-19 13:59:32.5347|DEBUG|OnDoc|Generate_Word +2026-03-19 13:59:32.5751|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018094 +2026-03-19 13:59:32.5751|INFO|DocLog|Dokument über API erstellt +2026-03-19 13:59:32.5751|INFO|APIDocLog|Dokument return to sender +2026-03-19 13:59:32.5751|DEBUG|OnDoc| +2026-03-19 13:59:32.5915|DEBUG|OnDoc| +2026-03-19 13:59:32.5915|DEBUG|OnDoc| +2026-03-19 13:59:32.5915|DEBUG|OnDoc| +2026-03-19 13:59:32.5915|DEBUG|OnDoc| +2026-03-19 13:59:32.5915|DEBUG|OnDoc| +2026-03-19 14:00:40.4735|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:00:40.5380|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:00:40.5601|INFO|APIDocLog|Input JSON +2026-03-19 14:00:40.5601|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:00:40.5601|DEBUG|OnDoc| +2026-03-19 14:00:40.5601|DEBUG|OnDoc| +2026-03-19 14:00:40.5601|DEBUG|OnDoc| +2026-03-19 14:00:40.5601|DEBUG|OnDoc| +2026-03-19 14:00:40.5601|DEBUG|OnDoc| +2026-03-19 14:00:40.5601|DEBUG|OnDoc| +2026-03-19 14:00:40.5601|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5681|DEBUG|OnDoc| +2026-03-19 14:00:40.5836|DEBUG|OnDoc| +2026-03-19 14:00:40.5836|DEBUG|OnDoc| +2026-03-19 14:00:40.6055|DEBUG|OnDoc| +2026-03-19 14:00:40.6055|DEBUG|OnDoc| +2026-03-19 14:00:40.6162|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:00:40.6585|DEBUG|OnDoc| +2026-03-19 14:00:40.6620|DEBUG|OnDoc| +2026-03-19 14:00:40.6620|DEBUG|OnDoc| +2026-03-19 14:00:40.6620|DEBUG|OnDoc| +2026-03-19 14:00:40.6844|DEBUG|OnDoc| +2026-03-19 14:00:40.6844|DEBUG|OnDoc| +2026-03-19 14:00:40.6844|DEBUG|OnDoc| +2026-03-19 14:00:40.6844|DEBUG|OnDoc| +2026-03-19 14:00:40.6985|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:00:40.6985|DEBUG|OnDoc| +2026-03-19 14:00:40.6985|DEBUG|OnDoc| +2026-03-19 14:00:40.6985|DEBUG|OnDoc| +2026-03-19 14:00:40.6985|DEBUG|OnDoc| +2026-03-19 14:00:40.6985|DEBUG|OnDoc| +2026-03-19 14:00:40.7137|DEBUG|OnDoc| +2026-03-19 14:00:40.7137|DEBUG|OnDoc| +2026-03-19 14:00:40.7137|DEBUG|OnDoc| +2026-03-19 14:00:40.7137|DEBUG|OnDoc|Generate_Word +2026-03-19 14:00:40.7254|DEBUG|OnDoc|Word2013 +2026-03-19 14:00:40.7254|DEBUG|OnDoc|Word2013 +2026-03-19 14:00:47.2407|DEBUG|OnDoc|Generate_Word +2026-03-19 14:00:47.2798|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018103 +2026-03-19 14:00:47.2798|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:00:47.2798|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:00:47.2798|DEBUG|OnDoc| +2026-03-19 14:00:47.2920|DEBUG|OnDoc| +2026-03-19 14:00:47.2920|DEBUG|OnDoc| +2026-03-19 14:00:47.2920|DEBUG|OnDoc| +2026-03-19 14:00:47.2920|DEBUG|OnDoc| +2026-03-19 14:00:47.2920|DEBUG|OnDoc| +2026-03-19 14:01:12.4893|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:01:12.5618|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:01:12.5823|INFO|APIDocLog|Input JSON +2026-03-19 14:01:12.5859|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5859|DEBUG|OnDoc| +2026-03-19 14:01:12.5989|DEBUG|OnDoc| +2026-03-19 14:01:12.5989|DEBUG|OnDoc| +2026-03-19 14:01:12.5989|DEBUG|OnDoc| +2026-03-19 14:01:12.5989|DEBUG|OnDoc| +2026-03-19 14:01:12.5989|DEBUG|OnDoc| +2026-03-19 14:01:12.5989|DEBUG|OnDoc| +2026-03-19 14:01:12.5989|DEBUG|OnDoc| +2026-03-19 14:01:12.5989|DEBUG|OnDoc| +2026-03-19 14:01:12.5989|DEBUG|OnDoc| +2026-03-19 14:01:12.5989|DEBUG|OnDoc| +2026-03-19 14:01:12.5989|DEBUG|OnDoc| +2026-03-19 14:01:12.5989|DEBUG|OnDoc| +2026-03-19 14:01:12.6159|DEBUG|OnDoc| +2026-03-19 14:01:12.6159|DEBUG|OnDoc| +2026-03-19 14:01:12.6159|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:01:12.6742|DEBUG|OnDoc| +2026-03-19 14:01:12.6772|DEBUG|OnDoc| +2026-03-19 14:01:12.6928|DEBUG|OnDoc| +2026-03-19 14:01:12.6928|DEBUG|OnDoc| +2026-03-19 14:01:12.6928|DEBUG|OnDoc| +2026-03-19 14:01:12.6928|DEBUG|OnDoc| +2026-03-19 14:01:12.6928|DEBUG|OnDoc| +2026-03-19 14:01:12.6928|DEBUG|OnDoc| +2026-03-19 14:01:12.7188|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:01:12.7188|DEBUG|OnDoc| +2026-03-19 14:01:12.7269|DEBUG|OnDoc| +2026-03-19 14:01:12.7269|DEBUG|OnDoc| +2026-03-19 14:01:12.7269|DEBUG|OnDoc| +2026-03-19 14:01:12.7269|DEBUG|OnDoc| +2026-03-19 14:01:12.7269|DEBUG|OnDoc| +2026-03-19 14:01:12.7269|DEBUG|OnDoc| +2026-03-19 14:01:12.7269|DEBUG|OnDoc| +2026-03-19 14:01:12.7269|DEBUG|OnDoc|Generate_Word +2026-03-19 14:01:12.7464|DEBUG|OnDoc|Word2013 +2026-03-19 14:01:12.7464|DEBUG|OnDoc|Word2013 +2026-03-19 14:01:19.0768|DEBUG|OnDoc|Generate_Word +2026-03-19 14:01:19.1170|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018119 +2026-03-19 14:01:19.1170|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:01:19.1170|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:01:19.1170|DEBUG|OnDoc| +2026-03-19 14:01:19.1170|DEBUG|OnDoc| +2026-03-19 14:01:19.1170|DEBUG|OnDoc| +2026-03-19 14:01:19.1170|DEBUG|OnDoc| +2026-03-19 14:01:19.1315|DEBUG|OnDoc| +2026-03-19 14:01:19.1315|DEBUG|OnDoc| +2026-03-19 14:01:35.2735|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:01:35.3446|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:01:35.3671|INFO|APIDocLog|Input JSON +2026-03-19 14:01:35.3671|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3671|DEBUG|OnDoc| +2026-03-19 14:01:35.3808|DEBUG|OnDoc| +2026-03-19 14:01:35.3808|DEBUG|OnDoc| +2026-03-19 14:01:35.3808|DEBUG|OnDoc| +2026-03-19 14:01:35.3808|DEBUG|OnDoc| +2026-03-19 14:01:35.3808|DEBUG|OnDoc| +2026-03-19 14:01:35.3808|DEBUG|OnDoc| +2026-03-19 14:01:35.3808|DEBUG|OnDoc| +2026-03-19 14:01:35.3808|DEBUG|OnDoc| +2026-03-19 14:01:35.3808|DEBUG|OnDoc| +2026-03-19 14:01:35.3808|DEBUG|OnDoc| +2026-03-19 14:01:35.3808|DEBUG|OnDoc| +2026-03-19 14:01:35.3808|DEBUG|OnDoc| +2026-03-19 14:01:35.3808|DEBUG|OnDoc| +2026-03-19 14:01:35.3983|DEBUG|OnDoc| +2026-03-19 14:01:35.3983|DEBUG|OnDoc| +2026-03-19 14:01:35.3983|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:01:35.4524|DEBUG|OnDoc| +2026-03-19 14:01:35.4524|DEBUG|OnDoc| +2026-03-19 14:01:35.4685|DEBUG|OnDoc| +2026-03-19 14:01:35.4685|DEBUG|OnDoc| +2026-03-19 14:01:35.4790|DEBUG|OnDoc| +2026-03-19 14:01:35.4790|DEBUG|OnDoc| +2026-03-19 14:01:35.4790|DEBUG|OnDoc| +2026-03-19 14:01:35.4790|DEBUG|OnDoc| +2026-03-19 14:01:35.4934|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:01:35.4934|DEBUG|OnDoc| +2026-03-19 14:01:35.4934|DEBUG|OnDoc| +2026-03-19 14:01:35.4934|DEBUG|OnDoc| +2026-03-19 14:01:35.4934|DEBUG|OnDoc| +2026-03-19 14:01:35.4934|DEBUG|OnDoc| +2026-03-19 14:01:35.5071|DEBUG|OnDoc| +2026-03-19 14:01:35.5071|DEBUG|OnDoc| +2026-03-19 14:01:35.5071|DEBUG|OnDoc| +2026-03-19 14:01:35.5071|DEBUG|OnDoc|Generate_Word +2026-03-19 14:01:35.5071|DEBUG|OnDoc|Word2013 +2026-03-19 14:01:35.5071|DEBUG|OnDoc|Word2013 +2026-03-19 14:01:48.0793|DEBUG|OnDoc|Generate_Word +2026-03-19 14:01:48.1199|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018127 +2026-03-19 14:01:48.1199|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:01:48.1199|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:01:48.1199|DEBUG|OnDoc| +2026-03-19 14:01:48.1397|DEBUG|OnDoc| +2026-03-19 14:01:48.1397|DEBUG|OnDoc| +2026-03-19 14:01:48.1397|DEBUG|OnDoc| +2026-03-19 14:01:48.1397|DEBUG|OnDoc| +2026-03-19 14:01:48.1397|DEBUG|OnDoc| +2026-03-19 14:01:58.4207|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:01:58.4935|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:01:58.5148|INFO|APIDocLog|Input JSON +2026-03-19 14:01:58.5148|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:01:58.5148|DEBUG|OnDoc| +2026-03-19 14:01:58.5148|DEBUG|OnDoc| +2026-03-19 14:01:58.5148|DEBUG|OnDoc| +2026-03-19 14:01:58.5148|DEBUG|OnDoc| +2026-03-19 14:01:58.5148|DEBUG|OnDoc| +2026-03-19 14:01:58.5148|DEBUG|OnDoc| +2026-03-19 14:01:58.5148|DEBUG|OnDoc| +2026-03-19 14:01:58.5148|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5209|DEBUG|OnDoc| +2026-03-19 14:01:58.5429|DEBUG|OnDoc| +2026-03-19 14:01:58.5429|DEBUG|OnDoc| +2026-03-19 14:01:58.5532|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:01:58.5982|DEBUG|OnDoc| +2026-03-19 14:01:58.6002|DEBUG|OnDoc| +2026-03-19 14:01:58.6145|DEBUG|OnDoc| +2026-03-19 14:01:58.6145|DEBUG|OnDoc| +2026-03-19 14:01:58.6145|DEBUG|OnDoc| +2026-03-19 14:01:58.6145|DEBUG|OnDoc| +2026-03-19 14:01:58.6145|DEBUG|OnDoc| +2026-03-19 14:01:58.6145|DEBUG|OnDoc| +2026-03-19 14:01:58.6376|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:01:58.6376|DEBUG|OnDoc| +2026-03-19 14:01:58.6376|DEBUG|OnDoc| +2026-03-19 14:01:58.6376|DEBUG|OnDoc| +2026-03-19 14:01:58.6376|DEBUG|OnDoc| +2026-03-19 14:01:58.6376|DEBUG|OnDoc| +2026-03-19 14:01:58.6484|DEBUG|OnDoc| +2026-03-19 14:01:58.6484|DEBUG|OnDoc| +2026-03-19 14:01:58.6484|DEBUG|OnDoc| +2026-03-19 14:01:58.6484|DEBUG|OnDoc|Generate_Word +2026-03-19 14:01:58.6484|DEBUG|OnDoc|Word2013 +2026-03-19 14:01:58.6618|DEBUG|OnDoc|Word2013 +2026-03-19 14:02:05.5817|DEBUG|OnDoc|Generate_Word +2026-03-19 14:02:05.6201|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018135 +2026-03-19 14:02:05.6201|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:02:05.6201|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:02:05.6201|DEBUG|OnDoc| +2026-03-19 14:02:05.6331|DEBUG|OnDoc| +2026-03-19 14:02:05.6331|DEBUG|OnDoc| +2026-03-19 14:02:05.6331|DEBUG|OnDoc| +2026-03-19 14:02:05.6331|DEBUG|OnDoc| +2026-03-19 14:02:05.6331|DEBUG|OnDoc| +2026-03-19 14:04:43.3218|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:04:43.3951|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:04:43.4216|INFO|APIDocLog|Input JSON +2026-03-19 14:04:43.4216|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:04:43.4216|DEBUG|OnDoc| +2026-03-19 14:04:43.4216|DEBUG|OnDoc| +2026-03-19 14:04:43.4216|DEBUG|OnDoc| +2026-03-19 14:04:43.4216|DEBUG|OnDoc| +2026-03-19 14:04:43.4216|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4276|DEBUG|OnDoc| +2026-03-19 14:04:43.4585|DEBUG|OnDoc| +2026-03-19 14:04:43.4585|DEBUG|OnDoc| +2026-03-19 14:04:43.4585|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:04:43.5098|DEBUG|OnDoc| +2026-03-19 14:04:43.5098|DEBUG|OnDoc| +2026-03-19 14:04:43.5249|DEBUG|OnDoc| +2026-03-19 14:04:43.5249|DEBUG|OnDoc| +2026-03-19 14:04:43.5249|DEBUG|OnDoc| +2026-03-19 14:04:43.5249|DEBUG|OnDoc| +2026-03-19 14:04:43.5249|DEBUG|OnDoc| +2026-03-19 14:04:43.5249|DEBUG|OnDoc| +2026-03-19 14:04:43.5463|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:04:43.5463|DEBUG|OnDoc| +2026-03-19 14:04:43.5523|DEBUG|OnDoc| +2026-03-19 14:04:43.5523|DEBUG|OnDoc| +2026-03-19 14:04:43.5523|DEBUG|OnDoc| +2026-03-19 14:04:43.5523|DEBUG|OnDoc| +2026-03-19 14:04:43.5523|DEBUG|OnDoc| +2026-03-19 14:04:43.5523|DEBUG|OnDoc| +2026-03-19 14:04:43.5523|DEBUG|OnDoc| +2026-03-19 14:04:43.5523|DEBUG|OnDoc|Generate_Word +2026-03-19 14:04:43.5725|DEBUG|OnDoc|Word2013 +2026-03-19 14:04:43.5725|DEBUG|OnDoc|Word2013 +2026-03-19 14:04:44.4771|DEBUG|OnDoc|Generate_Word +2026-03-19 14:04:44.4771|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018140 +2026-03-19 14:04:44.4771|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:04:44.4902|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:04:44.4902|DEBUG|OnDoc| +2026-03-19 14:04:44.5051|DEBUG|OnDoc| +2026-03-19 14:04:44.5051|DEBUG|OnDoc| +2026-03-19 14:04:44.5051|DEBUG|OnDoc| +2026-03-19 14:04:44.5051|DEBUG|OnDoc| +2026-03-19 14:04:44.5051|DEBUG|OnDoc| +2026-03-19 14:05:09.7220|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:05:09.7933|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:05:09.8129|INFO|APIDocLog|Input JSON +2026-03-19 14:05:09.8129|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:05:09.8129|DEBUG|OnDoc| +2026-03-19 14:05:09.8129|DEBUG|OnDoc| +2026-03-19 14:05:09.8129|DEBUG|OnDoc| +2026-03-19 14:05:09.8129|DEBUG|OnDoc| +2026-03-19 14:05:09.8129|DEBUG|OnDoc| +2026-03-19 14:05:09.8129|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8185|DEBUG|OnDoc| +2026-03-19 14:05:09.8509|DEBUG|OnDoc| +2026-03-19 14:05:09.8509|DEBUG|OnDoc| +2026-03-19 14:05:09.8509|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:05:09.9027|DEBUG|OnDoc| +2026-03-19 14:05:09.9027|DEBUG|OnDoc| +2026-03-19 14:05:09.9200|DEBUG|OnDoc| +2026-03-19 14:05:09.9200|DEBUG|OnDoc| +2026-03-19 14:05:09.9280|DEBUG|OnDoc| +2026-03-19 14:05:09.9280|DEBUG|OnDoc| +2026-03-19 14:05:09.9280|DEBUG|OnDoc| +2026-03-19 14:05:09.9280|DEBUG|OnDoc| +2026-03-19 14:05:09.9280|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:05:09.9280|DEBUG|OnDoc| +2026-03-19 14:05:09.9476|DEBUG|OnDoc| +2026-03-19 14:05:09.9476|DEBUG|OnDoc| +2026-03-19 14:05:09.9476|DEBUG|OnDoc| +2026-03-19 14:05:09.9476|DEBUG|OnDoc| +2026-03-19 14:05:09.9476|DEBUG|OnDoc| +2026-03-19 14:05:09.9476|DEBUG|OnDoc| +2026-03-19 14:05:09.9476|DEBUG|OnDoc| +2026-03-19 14:05:09.9476|DEBUG|OnDoc|Generate_Word +2026-03-19 14:05:09.9650|DEBUG|OnDoc|Word2013 +2026-03-19 14:05:09.9650|DEBUG|OnDoc|Word2013 +2026-03-19 14:05:10.8110|DEBUG|OnDoc|Generate_Word +2026-03-19 14:05:10.8246|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018151 +2026-03-19 14:05:10.8246|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:05:10.8246|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:05:10.8246|DEBUG|OnDoc| +2026-03-19 14:05:10.8437|DEBUG|OnDoc| +2026-03-19 14:05:10.8437|DEBUG|OnDoc| +2026-03-19 14:05:10.8437|DEBUG|OnDoc| +2026-03-19 14:05:10.8437|DEBUG|OnDoc| +2026-03-19 14:05:10.8437|DEBUG|OnDoc| +2026-03-19 14:16:22.4088|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:16:22.4880|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:16:22.5114|INFO|APIDocLog|Input JSON +2026-03-19 14:16:22.5114|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:16:22.5114|DEBUG|OnDoc| +2026-03-19 14:16:22.5114|DEBUG|OnDoc| +2026-03-19 14:16:22.5114|DEBUG|OnDoc| +2026-03-19 14:16:22.5114|DEBUG|OnDoc| +2026-03-19 14:16:22.5114|DEBUG|OnDoc| +2026-03-19 14:16:22.5114|DEBUG|OnDoc| +2026-03-19 14:16:22.5114|DEBUG|OnDoc| +2026-03-19 14:16:22.5114|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5210|DEBUG|OnDoc| +2026-03-19 14:16:22.5559|DEBUG|OnDoc| +2026-03-19 14:16:22.5559|DEBUG|OnDoc| +2026-03-19 14:16:22.5559|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:16:22.6183|DEBUG|OnDoc| +2026-03-19 14:16:22.6183|DEBUG|OnDoc| +2026-03-19 14:16:22.6341|DEBUG|OnDoc| +2026-03-19 14:16:22.6341|DEBUG|OnDoc| +2026-03-19 14:16:22.6476|DEBUG|OnDoc| +2026-03-19 14:16:22.6476|DEBUG|OnDoc| +2026-03-19 14:16:22.6476|DEBUG|OnDoc| +2026-03-19 14:16:22.6476|DEBUG|OnDoc| +2026-03-19 14:16:22.6634|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:16:22.6634|DEBUG|OnDoc| +2026-03-19 14:16:22.6634|DEBUG|OnDoc| +2026-03-19 14:16:22.6634|DEBUG|OnDoc| +2026-03-19 14:16:22.6634|DEBUG|OnDoc| +2026-03-19 14:16:22.6634|DEBUG|OnDoc| +2026-03-19 14:16:22.6777|DEBUG|OnDoc| +2026-03-19 14:16:22.6777|DEBUG|OnDoc| +2026-03-19 14:16:22.6777|DEBUG|OnDoc| +2026-03-19 14:16:22.6777|DEBUG|OnDoc|Generate_Word +2026-03-19 14:16:22.6777|DEBUG|OnDoc|Word2013 +2026-03-19 14:16:22.6777|DEBUG|OnDoc|Word2013 +2026-03-19 14:16:37.8301|DEBUG|OnDoc| +2026-03-19 14:16:37.8652|DEBUG|OnDoc| +2026-03-19 14:16:37.9197|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 14:16:37.9197|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 14:16:38.6153|DEBUG|OnDoc| +2026-03-19 14:16:38.6153|DEBUG|OnDoc| +2026-03-19 14:16:38.6762|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 14:16:38.6782|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 14:16:41.3695|DEBUG|OnDoc|Generate_Word +2026-03-19 14:16:41.3810|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018166 +2026-03-19 14:16:41.3810|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:16:41.3810|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:16:41.3810|DEBUG|OnDoc| +2026-03-19 14:16:41.3966|DEBUG|OnDoc| +2026-03-19 14:16:41.3966|DEBUG|OnDoc| +2026-03-19 14:16:41.3966|DEBUG|OnDoc| +2026-03-19 14:16:41.3966|DEBUG|OnDoc| +2026-03-19 14:16:41.3966|DEBUG|OnDoc| +2026-03-19 14:16:41.4553|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:16:41.5049|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:16:41.5341|INFO|APIDocLog|Input JSON +2026-03-19 14:16:41.5368|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5368|DEBUG|OnDoc| +2026-03-19 14:16:41.5529|DEBUG|OnDoc| +2026-03-19 14:16:41.5529|DEBUG|OnDoc| +2026-03-19 14:16:41.5529|DEBUG|OnDoc| +2026-03-19 14:16:41.5719|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:16:41.6208|DEBUG|OnDoc| +2026-03-19 14:16:41.6208|DEBUG|OnDoc| +2026-03-19 14:16:41.6470|DEBUG|OnDoc| +2026-03-19 14:16:41.6470|DEBUG|OnDoc| +2026-03-19 14:16:41.6470|DEBUG|OnDoc| +2026-03-19 14:16:41.6470|DEBUG|OnDoc| +2026-03-19 14:16:41.6470|DEBUG|OnDoc| +2026-03-19 14:16:41.6470|DEBUG|OnDoc| +2026-03-19 14:16:41.6784|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:16:41.6784|DEBUG|OnDoc| +2026-03-19 14:16:41.6930|DEBUG|OnDoc| +2026-03-19 14:16:41.6930|DEBUG|OnDoc| +2026-03-19 14:16:41.6930|DEBUG|OnDoc| +2026-03-19 14:16:41.6930|DEBUG|OnDoc| +2026-03-19 14:16:41.6930|DEBUG|OnDoc| +2026-03-19 14:16:41.6930|DEBUG|OnDoc| +2026-03-19 14:16:41.6930|DEBUG|OnDoc| +2026-03-19 14:16:41.6930|DEBUG|OnDoc|Generate_Word +2026-03-19 14:16:41.7167|DEBUG|OnDoc|Word2013 +2026-03-19 14:16:41.7167|DEBUG|OnDoc|Word2013 +2026-03-19 14:16:46.9446|DEBUG|OnDoc| +2026-03-19 14:16:46.9807|DEBUG|OnDoc| +2026-03-19 14:16:47.0385|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 14:16:47.0601|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 14:16:47.1277|DEBUG|OnDoc| +2026-03-19 14:16:47.1366|DEBUG|OnDoc| +2026-03-19 14:16:47.1873|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 14:16:47.1873|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 14:16:47.8457|DEBUG|OnDoc|Generate_Word +2026-03-19 14:16:47.8577|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018174 +2026-03-19 14:16:47.8577|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:16:47.8577|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:16:47.8577|DEBUG|OnDoc| +2026-03-19 14:16:47.8752|DEBUG|OnDoc| +2026-03-19 14:16:47.8752|DEBUG|OnDoc| +2026-03-19 14:16:47.8752|DEBUG|OnDoc| +2026-03-19 14:16:47.8752|DEBUG|OnDoc| +2026-03-19 14:16:47.8752|DEBUG|OnDoc| +2026-03-19 14:17:22.4296|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:17:22.5298|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:17:22.5688|INFO|APIDocLog|Input JSON +2026-03-19 14:17:22.5688|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5688|DEBUG|OnDoc| +2026-03-19 14:17:22.5837|DEBUG|OnDoc| +2026-03-19 14:17:22.5837|DEBUG|OnDoc| +2026-03-19 14:17:22.5837|DEBUG|OnDoc| +2026-03-19 14:17:22.5837|DEBUG|OnDoc| +2026-03-19 14:17:22.5837|DEBUG|OnDoc| +2026-03-19 14:17:22.5837|DEBUG|OnDoc| +2026-03-19 14:17:22.5837|DEBUG|OnDoc| +2026-03-19 14:17:22.5837|DEBUG|OnDoc| +2026-03-19 14:17:22.5837|DEBUG|OnDoc| +2026-03-19 14:17:22.5837|DEBUG|OnDoc| +2026-03-19 14:17:22.6095|DEBUG|OnDoc| +2026-03-19 14:17:22.6095|DEBUG|OnDoc| +2026-03-19 14:17:22.6202|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:17:22.6633|DEBUG|OnDoc| +2026-03-19 14:17:22.6633|DEBUG|OnDoc| +2026-03-19 14:17:22.6976|DEBUG|OnDoc| +2026-03-19 14:17:22.6976|DEBUG|OnDoc| +2026-03-19 14:17:22.7086|DEBUG|OnDoc| +2026-03-19 14:17:22.7086|DEBUG|OnDoc| +2026-03-19 14:17:22.7086|DEBUG|OnDoc| +2026-03-19 14:17:22.7086|DEBUG|OnDoc| +2026-03-19 14:17:22.7399|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:17:22.7399|DEBUG|OnDoc| +2026-03-19 14:17:22.7399|DEBUG|OnDoc| +2026-03-19 14:17:22.7399|DEBUG|OnDoc| +2026-03-19 14:17:22.7399|DEBUG|OnDoc| +2026-03-19 14:17:22.7399|DEBUG|OnDoc| +2026-03-19 14:17:22.7399|DEBUG|OnDoc| +2026-03-19 14:17:22.7399|DEBUG|OnDoc| +2026-03-19 14:17:22.7580|DEBUG|OnDoc| +2026-03-19 14:17:22.7580|DEBUG|OnDoc|Generate_Word +2026-03-19 14:17:22.7711|DEBUG|OnDoc|Word2013 +2026-03-19 14:17:22.7711|DEBUG|OnDoc|Word2013 +2026-03-19 14:17:39.0063|DEBUG|OnDoc| +2026-03-19 14:17:39.0428|DEBUG|OnDoc| +2026-03-19 14:17:39.1151|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 14:17:39.1151|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 14:17:39.2263|DEBUG|OnDoc| +2026-03-19 14:17:39.2263|DEBUG|OnDoc| +2026-03-19 14:17:39.3101|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 14:17:39.3199|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 14:17:39.9802|DEBUG|OnDoc|Generate_Word +2026-03-19 14:17:39.9952|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018182 +2026-03-19 14:17:39.9952|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:17:39.9952|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:17:39.9952|DEBUG|OnDoc| +2026-03-19 14:17:40.0224|DEBUG|OnDoc| +2026-03-19 14:17:40.0224|DEBUG|OnDoc| +2026-03-19 14:17:40.0224|DEBUG|OnDoc| +2026-03-19 14:17:40.0224|DEBUG|OnDoc| +2026-03-19 14:17:40.0224|DEBUG|OnDoc| +2026-03-19 14:17:44.9278|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:17:45.0381|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:17:45.0824|INFO|APIDocLog|Input JSON +2026-03-19 14:17:45.0844|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0844|DEBUG|OnDoc| +2026-03-19 14:17:45.0988|DEBUG|OnDoc| +2026-03-19 14:17:45.0988|DEBUG|OnDoc| +2026-03-19 14:17:45.0988|DEBUG|OnDoc| +2026-03-19 14:17:45.1189|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:17:45.1644|DEBUG|OnDoc| +2026-03-19 14:17:45.1644|DEBUG|OnDoc| +2026-03-19 14:17:45.1975|DEBUG|OnDoc| +2026-03-19 14:17:45.1975|DEBUG|OnDoc| +2026-03-19 14:17:45.2086|DEBUG|OnDoc| +2026-03-19 14:17:45.2086|DEBUG|OnDoc| +2026-03-19 14:17:45.2086|DEBUG|OnDoc| +2026-03-19 14:17:45.2086|DEBUG|OnDoc| +2026-03-19 14:17:45.2393|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:17:45.2407|DEBUG|OnDoc| +2026-03-19 14:17:45.2407|DEBUG|OnDoc| +2026-03-19 14:17:45.2407|DEBUG|OnDoc| +2026-03-19 14:17:45.2407|DEBUG|OnDoc| +2026-03-19 14:17:45.2407|DEBUG|OnDoc| +2026-03-19 14:17:45.2407|DEBUG|OnDoc| +2026-03-19 14:17:45.2407|DEBUG|OnDoc| +2026-03-19 14:17:45.2557|DEBUG|OnDoc| +2026-03-19 14:17:45.2557|DEBUG|OnDoc|Generate_Word +2026-03-19 14:17:45.2557|DEBUG|OnDoc|Word2013 +2026-03-19 14:17:45.2557|DEBUG|OnDoc|Word2013 +2026-03-19 14:17:48.8611|DEBUG|OnDoc| +2026-03-19 14:17:48.8962|DEBUG|OnDoc| +2026-03-19 14:17:48.9719|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 14:17:48.9815|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 14:17:49.4787|DEBUG|OnDoc| +2026-03-19 14:17:49.4787|DEBUG|OnDoc| +2026-03-19 14:17:49.5627|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 14:17:49.5716|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 14:18:12.5929|DEBUG|OnDoc|Generate_Word +2026-03-19 14:18:12.6350|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018198 +2026-03-19 14:18:12.6350|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:18:12.6350|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:18:12.6350|DEBUG|OnDoc| +2026-03-19 14:18:12.6517|DEBUG|OnDoc| +2026-03-19 14:18:12.6517|DEBUG|OnDoc| +2026-03-19 14:18:12.6517|DEBUG|OnDoc| +2026-03-19 14:18:12.6517|DEBUG|OnDoc| +2026-03-19 14:18:12.6517|DEBUG|OnDoc| +2026-03-19 14:18:37.8894|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:18:37.9952|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:18:38.0417|INFO|APIDocLog|Input JSON +2026-03-19 14:18:38.0417|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0417|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0526|DEBUG|OnDoc| +2026-03-19 14:18:38.0835|DEBUG|OnDoc| +2026-03-19 14:18:38.0835|DEBUG|OnDoc| +2026-03-19 14:18:38.0835|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:18:38.1424|DEBUG|OnDoc| +2026-03-19 14:18:38.1424|DEBUG|OnDoc| +2026-03-19 14:18:38.1767|DEBUG|OnDoc| +2026-03-19 14:18:38.1777|DEBUG|OnDoc| +2026-03-19 14:18:38.1777|DEBUG|OnDoc| +2026-03-19 14:18:38.1777|DEBUG|OnDoc| +2026-03-19 14:18:38.1777|DEBUG|OnDoc| +2026-03-19 14:18:38.1777|DEBUG|OnDoc| +2026-03-19 14:18:38.2201|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:18:38.2201|DEBUG|OnDoc| +2026-03-19 14:18:38.2264|DEBUG|OnDoc| +2026-03-19 14:18:38.2264|DEBUG|OnDoc| +2026-03-19 14:18:38.2264|DEBUG|OnDoc| +2026-03-19 14:18:38.2264|DEBUG|OnDoc| +2026-03-19 14:18:38.2264|DEBUG|OnDoc| +2026-03-19 14:18:38.2264|DEBUG|OnDoc| +2026-03-19 14:18:38.2264|DEBUG|OnDoc| +2026-03-19 14:18:38.2264|DEBUG|OnDoc|Generate_Word +2026-03-19 14:18:38.2439|DEBUG|OnDoc|Word2013 +2026-03-19 14:18:38.2439|DEBUG|OnDoc|Word2013 +2026-03-19 14:18:55.0865|DEBUG|OnDoc| +2026-03-19 14:18:55.1209|DEBUG|OnDoc| +2026-03-19 14:18:55.1931|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 14:18:55.1931|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 14:18:55.3016|DEBUG|OnDoc| +2026-03-19 14:18:55.3120|DEBUG|OnDoc| +2026-03-19 14:18:55.3810|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 14:18:55.3810|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 14:18:56.8850|DEBUG|OnDoc|Generate_Word +2026-03-19 14:18:56.8972|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018207 +2026-03-19 14:18:56.8972|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:18:56.8972|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:18:56.8972|DEBUG|OnDoc| +2026-03-19 14:18:56.9131|DEBUG|OnDoc| +2026-03-19 14:18:56.9131|DEBUG|OnDoc| +2026-03-19 14:18:56.9131|DEBUG|OnDoc| +2026-03-19 14:18:56.9131|DEBUG|OnDoc| +2026-03-19 14:18:56.9131|DEBUG|OnDoc| +2026-03-19 14:19:06.6328|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:19:06.7431|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:19:06.7884|INFO|APIDocLog|Input JSON +2026-03-19 14:19:06.7884|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.7884|DEBUG|OnDoc| +2026-03-19 14:19:06.8022|DEBUG|OnDoc| +2026-03-19 14:19:06.8022|DEBUG|OnDoc| +2026-03-19 14:19:06.8022|DEBUG|OnDoc| +2026-03-19 14:19:06.8022|DEBUG|OnDoc| +2026-03-19 14:19:06.8022|DEBUG|OnDoc| +2026-03-19 14:19:06.8022|DEBUG|OnDoc| +2026-03-19 14:19:06.8229|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:19:06.8709|DEBUG|OnDoc| +2026-03-19 14:19:06.8709|DEBUG|OnDoc| +2026-03-19 14:19:06.9050|DEBUG|OnDoc| +2026-03-19 14:19:06.9050|DEBUG|OnDoc| +2026-03-19 14:19:06.9156|DEBUG|OnDoc| +2026-03-19 14:19:06.9156|DEBUG|OnDoc| +2026-03-19 14:19:06.9156|DEBUG|OnDoc| +2026-03-19 14:19:06.9156|DEBUG|OnDoc| +2026-03-19 14:19:06.9455|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:19:06.9455|DEBUG|OnDoc| +2026-03-19 14:19:06.9455|DEBUG|OnDoc| +2026-03-19 14:19:06.9455|DEBUG|OnDoc| +2026-03-19 14:19:06.9455|DEBUG|OnDoc| +2026-03-19 14:19:06.9455|DEBUG|OnDoc| +2026-03-19 14:19:06.9612|DEBUG|OnDoc| +2026-03-19 14:19:06.9612|DEBUG|OnDoc| +2026-03-19 14:19:06.9612|DEBUG|OnDoc| +2026-03-19 14:19:06.9612|DEBUG|OnDoc|Generate_Word +2026-03-19 14:19:06.9612|DEBUG|OnDoc|Word2013 +2026-03-19 14:19:06.9612|DEBUG|OnDoc|Word2013 +2026-03-19 14:19:10.6013|DEBUG|OnDoc| +2026-03-19 14:19:10.6367|DEBUG|OnDoc| +2026-03-19 14:19:10.7085|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 14:19:10.7085|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 14:19:10.8151|DEBUG|OnDoc| +2026-03-19 14:19:10.8242|DEBUG|OnDoc| +2026-03-19 14:19:10.8996|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 14:19:10.8996|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 14:19:12.4146|DEBUG|OnDoc|Generate_Word +2026-03-19 14:19:12.4302|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018215 +2026-03-19 14:19:12.4302|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:19:12.4302|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:19:12.4302|DEBUG|OnDoc| +2026-03-19 14:19:12.4602|DEBUG|OnDoc| +2026-03-19 14:19:12.4602|DEBUG|OnDoc| +2026-03-19 14:19:12.4602|DEBUG|OnDoc| +2026-03-19 14:19:12.4602|DEBUG|OnDoc| +2026-03-19 14:19:12.4602|DEBUG|OnDoc| +2026-03-19 14:19:36.7539|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:19:36.8655|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:19:36.9107|INFO|APIDocLog|Input JSON +2026-03-19 14:19:36.9138|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9138|DEBUG|OnDoc| +2026-03-19 14:19:36.9274|DEBUG|OnDoc| +2026-03-19 14:19:36.9274|DEBUG|OnDoc| +2026-03-19 14:19:36.9274|DEBUG|OnDoc| +2026-03-19 14:19:36.9274|DEBUG|OnDoc| +2026-03-19 14:19:36.9274|DEBUG|OnDoc| +2026-03-19 14:19:36.9496|DEBUG|OnDoc| +2026-03-19 14:19:36.9496|DEBUG|OnDoc| +2026-03-19 14:19:36.9591|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:19:37.0037|DEBUG|OnDoc| +2026-03-19 14:19:37.0062|DEBUG|OnDoc| +2026-03-19 14:19:37.0380|DEBUG|OnDoc| +2026-03-19 14:19:37.0380|DEBUG|OnDoc| +2026-03-19 14:19:37.0380|DEBUG|OnDoc| +2026-03-19 14:19:37.0380|DEBUG|OnDoc| +2026-03-19 14:19:37.0380|DEBUG|OnDoc| +2026-03-19 14:19:37.0380|DEBUG|OnDoc| +2026-03-19 14:19:37.0809|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:19:37.0809|DEBUG|OnDoc| +2026-03-19 14:19:37.0879|DEBUG|OnDoc| +2026-03-19 14:19:37.0879|DEBUG|OnDoc| +2026-03-19 14:19:37.0879|DEBUG|OnDoc| +2026-03-19 14:19:37.0879|DEBUG|OnDoc| +2026-03-19 14:19:37.0879|DEBUG|OnDoc| +2026-03-19 14:19:37.0879|DEBUG|OnDoc| +2026-03-19 14:19:37.0879|DEBUG|OnDoc| +2026-03-19 14:19:37.0879|DEBUG|OnDoc|Generate_Word +2026-03-19 14:19:37.1071|DEBUG|OnDoc|Word2013 +2026-03-19 14:19:37.1071|DEBUG|OnDoc|Word2013 +2026-03-19 14:20:29.7070|DEBUG|OnDoc| +2026-03-19 14:20:29.7425|DEBUG|OnDoc| +2026-03-19 14:20:29.8183|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 14:20:29.8183|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 14:20:30.3943|DEBUG|OnDoc| +2026-03-19 14:20:30.4039|DEBUG|OnDoc| +2026-03-19 14:20:30.4740|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 14:20:30.4740|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 14:21:05.4992|DEBUG|OnDoc|Generate_Word +2026-03-19 14:21:05.5376|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018220 +2026-03-19 14:21:05.5376|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:21:05.5376|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:21:05.5376|DEBUG|OnDoc| +2026-03-19 14:21:05.5376|DEBUG|OnDoc| +2026-03-19 14:21:05.5526|DEBUG|OnDoc| +2026-03-19 14:21:05.5526|DEBUG|OnDoc| +2026-03-19 14:21:05.5526|DEBUG|OnDoc| +2026-03-19 14:21:05.5526|DEBUG|OnDoc| +2026-03-19 14:21:11.0513|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:21:11.1559|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:21:11.2030|INFO|APIDocLog|Input JSON +2026-03-19 14:21:11.2030|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:21:11.2030|DEBUG|OnDoc| +2026-03-19 14:21:11.2030|DEBUG|OnDoc| +2026-03-19 14:21:11.2030|DEBUG|OnDoc| +2026-03-19 14:21:11.2030|DEBUG|OnDoc| +2026-03-19 14:21:11.2030|DEBUG|OnDoc| +2026-03-19 14:21:11.2030|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2085|DEBUG|OnDoc| +2026-03-19 14:21:11.2337|DEBUG|OnDoc| +2026-03-19 14:21:11.2337|DEBUG|OnDoc| +2026-03-19 14:21:11.2429|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:21:11.2895|DEBUG|OnDoc| +2026-03-19 14:21:11.2895|DEBUG|OnDoc| +2026-03-19 14:21:11.3251|DEBUG|OnDoc| +2026-03-19 14:21:11.3251|DEBUG|OnDoc| +2026-03-19 14:21:11.3333|DEBUG|OnDoc| +2026-03-19 14:21:11.3333|DEBUG|OnDoc| +2026-03-19 14:21:11.3333|DEBUG|OnDoc| +2026-03-19 14:21:11.3333|DEBUG|OnDoc| +2026-03-19 14:21:11.3661|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:21:11.3661|DEBUG|OnDoc| +2026-03-19 14:21:11.3661|DEBUG|OnDoc| +2026-03-19 14:21:11.3661|DEBUG|OnDoc| +2026-03-19 14:21:11.3661|DEBUG|OnDoc| +2026-03-19 14:21:11.3661|DEBUG|OnDoc| +2026-03-19 14:21:11.3661|DEBUG|OnDoc| +2026-03-19 14:21:11.3661|DEBUG|OnDoc| +2026-03-19 14:21:11.3834|DEBUG|OnDoc| +2026-03-19 14:21:11.3834|DEBUG|OnDoc|Generate_Word +2026-03-19 14:21:11.3834|DEBUG|OnDoc|Word2013 +2026-03-19 14:21:11.3834|DEBUG|OnDoc|Word2013 +2026-03-19 14:21:13.8687|DEBUG|OnDoc| +2026-03-19 14:21:13.8687|DEBUG|OnDoc| +2026-03-19 14:21:13.9526|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 14:21:13.9627|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 14:21:14.0516|DEBUG|OnDoc| +2026-03-19 14:21:14.0631|DEBUG|OnDoc| +2026-03-19 14:21:14.1399|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 14:21:14.1496|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 14:21:14.8183|DEBUG|OnDoc|Generate_Word +2026-03-19 14:21:14.8183|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018231 +2026-03-19 14:21:14.8335|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:21:14.8335|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:21:14.8335|DEBUG|OnDoc| +2026-03-19 14:21:14.8335|DEBUG|OnDoc| +2026-03-19 14:21:14.8335|DEBUG|OnDoc| +2026-03-19 14:21:14.8494|DEBUG|OnDoc| +2026-03-19 14:21:14.8494|DEBUG|OnDoc| +2026-03-19 14:21:14.8494|DEBUG|OnDoc| +2026-03-19 14:22:43.2221|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:22:43.3373|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:22:43.3825|INFO|APIDocLog|Input JSON +2026-03-19 14:22:43.3825|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3825|DEBUG|OnDoc| +2026-03-19 14:22:43.3958|DEBUG|OnDoc| +2026-03-19 14:22:43.3958|DEBUG|OnDoc| +2026-03-19 14:22:43.3958|DEBUG|OnDoc| +2026-03-19 14:22:43.3958|DEBUG|OnDoc| +2026-03-19 14:22:43.3958|DEBUG|OnDoc| +2026-03-19 14:22:43.3958|DEBUG|OnDoc| +2026-03-19 14:22:43.4198|DEBUG|OnDoc| +2026-03-19 14:22:43.4198|DEBUG|OnDoc| +2026-03-19 14:22:43.4283|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:22:43.4754|DEBUG|OnDoc| +2026-03-19 14:22:43.4754|DEBUG|OnDoc| +2026-03-19 14:22:43.5090|DEBUG|OnDoc| +2026-03-19 14:22:43.5090|DEBUG|OnDoc| +2026-03-19 14:22:43.5090|DEBUG|OnDoc| +2026-03-19 14:22:43.5090|DEBUG|OnDoc| +2026-03-19 14:22:43.5090|DEBUG|OnDoc| +2026-03-19 14:22:43.5090|DEBUG|OnDoc| +2026-03-19 14:22:43.5488|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:22:43.5488|DEBUG|OnDoc| +2026-03-19 14:22:43.5558|DEBUG|OnDoc| +2026-03-19 14:22:43.5558|DEBUG|OnDoc| +2026-03-19 14:22:43.5558|DEBUG|OnDoc| +2026-03-19 14:22:43.5558|DEBUG|OnDoc| +2026-03-19 14:22:43.5558|DEBUG|OnDoc| +2026-03-19 14:22:43.5558|DEBUG|OnDoc| +2026-03-19 14:22:43.5558|DEBUG|OnDoc| +2026-03-19 14:22:43.5558|DEBUG|OnDoc|Generate_Word +2026-03-19 14:22:43.5736|DEBUG|OnDoc|Word2013 +2026-03-19 14:22:43.5736|DEBUG|OnDoc|Word2013 +2026-03-19 14:22:44.5096|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 14:22:51.4435|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:22:51.5548|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:22:51.5989|INFO|APIDocLog|Input JSON +2026-03-19 14:22:51.5989|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.5989|DEBUG|OnDoc| +2026-03-19 14:22:51.6147|DEBUG|OnDoc| +2026-03-19 14:22:51.6147|DEBUG|OnDoc| +2026-03-19 14:22:51.6360|DEBUG|OnDoc| +2026-03-19 14:22:51.6360|DEBUG|OnDoc| +2026-03-19 14:22:51.6463|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:22:51.6916|DEBUG|OnDoc| +2026-03-19 14:22:51.6947|DEBUG|OnDoc| +2026-03-19 14:22:51.7271|DEBUG|OnDoc| +2026-03-19 14:22:51.7271|DEBUG|OnDoc| +2026-03-19 14:22:51.7271|DEBUG|OnDoc| +2026-03-19 14:22:51.7271|DEBUG|OnDoc| +2026-03-19 14:22:51.7271|DEBUG|OnDoc| +2026-03-19 14:22:51.7398|DEBUG|OnDoc| +2026-03-19 14:22:51.7701|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:22:51.7701|DEBUG|OnDoc| +2026-03-19 14:22:51.7766|DEBUG|OnDoc| +2026-03-19 14:22:51.7766|DEBUG|OnDoc| +2026-03-19 14:22:51.7766|DEBUG|OnDoc| +2026-03-19 14:22:51.7766|DEBUG|OnDoc| +2026-03-19 14:22:51.7766|DEBUG|OnDoc| +2026-03-19 14:22:51.7766|DEBUG|OnDoc| +2026-03-19 14:22:51.7766|DEBUG|OnDoc| +2026-03-19 14:22:51.7766|DEBUG|OnDoc|Generate_Word +2026-03-19 14:22:51.8282|DEBUG|OnDoc|Word2013 +2026-03-19 14:22:51.8282|DEBUG|OnDoc|Word2013 +2026-03-19 14:22:52.6850|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 14:22:59.1611|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:22:59.2660|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:22:59.3130|INFO|APIDocLog|Input JSON +2026-03-19 14:22:59.3130|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:22:59.3130|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3183|DEBUG|OnDoc| +2026-03-19 14:22:59.3426|DEBUG|OnDoc| +2026-03-19 14:22:59.3426|DEBUG|OnDoc| +2026-03-19 14:22:59.3551|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:22:59.4038|DEBUG|OnDoc| +2026-03-19 14:22:59.4038|DEBUG|OnDoc| +2026-03-19 14:22:59.4395|DEBUG|OnDoc| +2026-03-19 14:22:59.4395|DEBUG|OnDoc| +2026-03-19 14:22:59.4499|DEBUG|OnDoc| +2026-03-19 14:22:59.4499|DEBUG|OnDoc| +2026-03-19 14:22:59.4499|DEBUG|OnDoc| +2026-03-19 14:22:59.4499|DEBUG|OnDoc| +2026-03-19 14:22:59.4832|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:22:59.4832|DEBUG|OnDoc| +2026-03-19 14:22:59.4904|DEBUG|OnDoc| +2026-03-19 14:22:59.4904|DEBUG|OnDoc| +2026-03-19 14:22:59.4904|DEBUG|OnDoc| +2026-03-19 14:22:59.4904|DEBUG|OnDoc| +2026-03-19 14:22:59.4904|DEBUG|OnDoc| +2026-03-19 14:22:59.4904|DEBUG|OnDoc| +2026-03-19 14:22:59.4904|DEBUG|OnDoc| +2026-03-19 14:22:59.4904|DEBUG|OnDoc|Generate_Word +2026-03-19 14:22:59.5104|DEBUG|OnDoc|Word2013 +2026-03-19 14:22:59.5104|DEBUG|OnDoc|Word2013 +2026-03-19 14:23:00.5944|DEBUG|OnDoc|Generate_Word +2026-03-19 14:23:00.6071|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018262 +2026-03-19 14:23:00.6071|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:23:00.6071|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:23:00.6071|DEBUG|OnDoc| +2026-03-19 14:23:00.6226|DEBUG|OnDoc| +2026-03-19 14:23:00.6226|DEBUG|OnDoc| +2026-03-19 14:23:00.6226|DEBUG|OnDoc| +2026-03-19 14:23:00.6226|DEBUG|OnDoc| +2026-03-19 14:23:00.6226|DEBUG|OnDoc| +2026-03-19 14:23:14.4245|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:23:14.5328|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:23:14.5812|INFO|APIDocLog|Input JSON +2026-03-19 14:23:14.5847|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5847|DEBUG|OnDoc| +2026-03-19 14:23:14.5988|DEBUG|OnDoc| +2026-03-19 14:23:14.5988|DEBUG|OnDoc| +2026-03-19 14:23:14.5988|DEBUG|OnDoc| +2026-03-19 14:23:14.5988|DEBUG|OnDoc| +2026-03-19 14:23:14.5988|DEBUG|OnDoc| +2026-03-19 14:23:14.5988|DEBUG|OnDoc| +2026-03-19 14:23:14.5988|DEBUG|OnDoc| +2026-03-19 14:23:14.6148|DEBUG|OnDoc| +2026-03-19 14:23:14.6148|DEBUG|OnDoc| +2026-03-19 14:23:14.6148|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:23:14.6810|DEBUG|OnDoc| +2026-03-19 14:23:14.6810|DEBUG|OnDoc| +2026-03-19 14:23:14.7177|DEBUG|OnDoc| +2026-03-19 14:23:14.7177|DEBUG|OnDoc| +2026-03-19 14:23:14.7285|DEBUG|OnDoc| +2026-03-19 14:23:14.7285|DEBUG|OnDoc| +2026-03-19 14:23:14.7285|DEBUG|OnDoc| +2026-03-19 14:23:14.7285|DEBUG|OnDoc| +2026-03-19 14:23:14.7612|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:23:14.7612|DEBUG|OnDoc| +2026-03-19 14:23:14.7612|DEBUG|OnDoc| +2026-03-19 14:23:14.7708|DEBUG|OnDoc| +2026-03-19 14:23:14.7708|DEBUG|OnDoc| +2026-03-19 14:23:14.7708|DEBUG|OnDoc| +2026-03-19 14:23:14.7708|DEBUG|OnDoc| +2026-03-19 14:23:14.7708|DEBUG|OnDoc| +2026-03-19 14:23:14.7708|DEBUG|OnDoc| +2026-03-19 14:23:14.7708|DEBUG|OnDoc|Generate_Word +2026-03-19 14:23:14.7914|DEBUG|OnDoc|Word2013 +2026-03-19 14:23:14.7914|DEBUG|OnDoc|Word2013 +2026-03-19 14:23:15.9364|DEBUG|OnDoc|Generate_Word +2026-03-19 14:23:15.9499|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018278 +2026-03-19 14:23:15.9499|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:23:15.9499|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:23:15.9499|DEBUG|OnDoc| +2026-03-19 14:23:15.9615|DEBUG|OnDoc| +2026-03-19 14:23:15.9615|DEBUG|OnDoc| +2026-03-19 14:23:15.9615|DEBUG|OnDoc| +2026-03-19 14:23:15.9615|DEBUG|OnDoc| +2026-03-19 14:23:15.9615|DEBUG|OnDoc| +2026-03-19 14:24:11.3151|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:24:11.3922|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:24:11.4317|INFO|APIDocLog|Input JSON +2026-03-19 14:24:11.4317|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4317|DEBUG|OnDoc| +2026-03-19 14:24:11.4427|DEBUG|OnDoc| +2026-03-19 14:24:11.4427|DEBUG|OnDoc| +2026-03-19 14:24:11.4427|DEBUG|OnDoc| +2026-03-19 14:24:11.4427|DEBUG|OnDoc| +2026-03-19 14:24:11.4427|DEBUG|OnDoc| +2026-03-19 14:24:11.4427|DEBUG|OnDoc| +2026-03-19 14:24:11.4427|DEBUG|OnDoc| +2026-03-19 14:24:11.4427|DEBUG|OnDoc| +2026-03-19 14:24:11.4427|DEBUG|OnDoc| +2026-03-19 14:24:11.4427|DEBUG|OnDoc| +2026-03-19 14:24:11.4427|DEBUG|OnDoc| +2026-03-19 14:24:11.4427|DEBUG|OnDoc| +2026-03-19 14:24:11.4427|DEBUG|OnDoc| +2026-03-19 14:24:11.4427|DEBUG|OnDoc| +2026-03-19 14:24:11.4684|DEBUG|OnDoc| +2026-03-19 14:24:11.4684|DEBUG|OnDoc| +2026-03-19 14:24:11.4780|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:24:11.5206|DEBUG|OnDoc| +2026-03-19 14:24:11.5236|DEBUG|OnDoc| +2026-03-19 14:24:11.5567|DEBUG|OnDoc| +2026-03-19 14:24:11.5567|DEBUG|OnDoc| +2026-03-19 14:24:11.5567|DEBUG|OnDoc| +2026-03-19 14:24:11.5567|DEBUG|OnDoc| +2026-03-19 14:24:11.5567|DEBUG|OnDoc| +2026-03-19 14:24:11.5567|DEBUG|OnDoc| +2026-03-19 14:24:11.5956|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:24:11.5956|DEBUG|OnDoc| +2026-03-19 14:24:11.6042|DEBUG|OnDoc| +2026-03-19 14:24:11.6042|DEBUG|OnDoc| +2026-03-19 14:24:11.6042|DEBUG|OnDoc| +2026-03-19 14:24:11.6042|DEBUG|OnDoc| +2026-03-19 14:24:11.6042|DEBUG|OnDoc| +2026-03-19 14:24:11.6042|DEBUG|OnDoc| +2026-03-19 14:24:11.6042|DEBUG|OnDoc| +2026-03-19 14:24:11.6042|DEBUG|OnDoc|Generate_Word +2026-03-19 14:24:11.6219|DEBUG|OnDoc|Word2013 +2026-03-19 14:24:11.6219|DEBUG|OnDoc|Word2013 +2026-03-19 14:30:28.3089|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 14:30:35.1237|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:30:35.2361|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:30:35.2838|INFO|APIDocLog|Input JSON +2026-03-19 14:30:35.2838|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:30:35.2838|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.2873|DEBUG|OnDoc| +2026-03-19 14:30:35.3231|DEBUG|OnDoc| +2026-03-19 14:30:35.3231|DEBUG|OnDoc| +2026-03-19 14:30:35.3344|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:30:35.3874|DEBUG|OnDoc| +2026-03-19 14:30:35.3874|DEBUG|OnDoc| +2026-03-19 14:30:35.4259|DEBUG|OnDoc| +2026-03-19 14:30:35.4269|DEBUG|OnDoc| +2026-03-19 14:30:35.4444|DEBUG|OnDoc| +2026-03-19 14:30:35.4444|DEBUG|OnDoc| +2026-03-19 14:30:35.4444|DEBUG|OnDoc| +2026-03-19 14:30:35.4444|DEBUG|OnDoc| +2026-03-19 14:30:35.4785|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:30:35.4785|DEBUG|OnDoc| +2026-03-19 14:30:35.4785|DEBUG|OnDoc| +2026-03-19 14:30:35.4785|DEBUG|OnDoc| +2026-03-19 14:30:35.4785|DEBUG|OnDoc| +2026-03-19 14:30:35.4785|DEBUG|OnDoc| +2026-03-19 14:30:35.4930|DEBUG|OnDoc| +2026-03-19 14:30:35.4930|DEBUG|OnDoc| +2026-03-19 14:30:35.4930|DEBUG|OnDoc| +2026-03-19 14:30:35.4930|DEBUG|OnDoc|Generate_Word +2026-03-19 14:30:35.5079|DEBUG|OnDoc|Word2013 +2026-03-19 14:30:35.5079|DEBUG|OnDoc|Word2013 +2026-03-19 14:30:39.0417|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 14:30:59.7080|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:30:59.8255|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:30:59.8723|INFO|APIDocLog|Input JSON +2026-03-19 14:30:59.8723|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:30:59.8723|DEBUG|OnDoc| +2026-03-19 14:30:59.8723|DEBUG|OnDoc| +2026-03-19 14:30:59.8723|DEBUG|OnDoc| +2026-03-19 14:30:59.8723|DEBUG|OnDoc| +2026-03-19 14:30:59.8723|DEBUG|OnDoc| +2026-03-19 14:30:59.8723|DEBUG|OnDoc| +2026-03-19 14:30:59.8723|DEBUG|OnDoc| +2026-03-19 14:30:59.8723|DEBUG|OnDoc| +2026-03-19 14:30:59.8723|DEBUG|OnDoc| +2026-03-19 14:30:59.8723|DEBUG|OnDoc| +2026-03-19 14:30:59.8723|DEBUG|OnDoc| +2026-03-19 14:30:59.8723|DEBUG|OnDoc| +2026-03-19 14:30:59.8723|DEBUG|OnDoc| +2026-03-19 14:30:59.8723|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.8804|DEBUG|OnDoc| +2026-03-19 14:30:59.9102|DEBUG|OnDoc| +2026-03-19 14:30:59.9117|DEBUG|OnDoc| +2026-03-19 14:30:59.9117|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:30:59.9629|DEBUG|OnDoc| +2026-03-19 14:30:59.9629|DEBUG|OnDoc| +2026-03-19 14:30:59.9976|DEBUG|OnDoc| +2026-03-19 14:30:59.9976|DEBUG|OnDoc| +2026-03-19 14:31:00.0055|DEBUG|OnDoc| +2026-03-19 14:31:00.0055|DEBUG|OnDoc| +2026-03-19 14:31:00.0055|DEBUG|OnDoc| +2026-03-19 14:31:00.0055|DEBUG|OnDoc| +2026-03-19 14:31:00.0374|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:31:00.0374|DEBUG|OnDoc| +2026-03-19 14:31:00.0567|DEBUG|OnDoc| +2026-03-19 14:31:00.0567|DEBUG|OnDoc| +2026-03-19 14:31:00.0567|DEBUG|OnDoc| +2026-03-19 14:31:00.0567|DEBUG|OnDoc| +2026-03-19 14:31:00.0567|DEBUG|OnDoc| +2026-03-19 14:31:00.0567|DEBUG|OnDoc| +2026-03-19 14:31:00.0705|DEBUG|OnDoc| +2026-03-19 14:31:00.0705|DEBUG|OnDoc|Generate_Word +2026-03-19 14:31:00.0705|DEBUG|OnDoc|Word2013 +2026-03-19 14:31:00.0705|DEBUG|OnDoc|Word2013 +2026-03-19 14:31:37.9719|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 14:31:51.0141|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:31:51.1238|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:31:51.1694|INFO|APIDocLog|Input JSON +2026-03-19 14:31:51.1694|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1694|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.1779|DEBUG|OnDoc| +2026-03-19 14:31:51.2080|DEBUG|OnDoc| +2026-03-19 14:31:51.2101|DEBUG|OnDoc| +2026-03-19 14:31:51.2101|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:31:51.2656|DEBUG|OnDoc| +2026-03-19 14:31:51.2656|DEBUG|OnDoc| +2026-03-19 14:31:51.2989|DEBUG|OnDoc| +2026-03-19 14:31:51.2989|DEBUG|OnDoc| +2026-03-19 14:31:51.3080|DEBUG|OnDoc| +2026-03-19 14:31:51.3080|DEBUG|OnDoc| +2026-03-19 14:31:51.3080|DEBUG|OnDoc| +2026-03-19 14:31:51.3080|DEBUG|OnDoc| +2026-03-19 14:31:51.3385|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:31:51.3385|DEBUG|OnDoc| +2026-03-19 14:31:51.3385|DEBUG|OnDoc| +2026-03-19 14:31:51.3385|DEBUG|OnDoc| +2026-03-19 14:31:51.3385|DEBUG|OnDoc| +2026-03-19 14:31:51.3385|DEBUG|OnDoc| +2026-03-19 14:31:51.3512|DEBUG|OnDoc| +2026-03-19 14:31:51.3512|DEBUG|OnDoc| +2026-03-19 14:31:51.3512|DEBUG|OnDoc| +2026-03-19 14:31:51.3512|DEBUG|OnDoc|Generate_Word +2026-03-19 14:31:51.3645|DEBUG|OnDoc|Word2013 +2026-03-19 14:31:51.3645|DEBUG|OnDoc|Word2013 +2026-03-19 14:32:43.4021|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 14:38:13.0735|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:38:13.1826|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:38:13.2272|INFO|APIDocLog|Input JSON +2026-03-19 14:38:13.2272|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:38:13.2272|DEBUG|OnDoc| +2026-03-19 14:38:13.2272|DEBUG|OnDoc| +2026-03-19 14:38:13.2272|DEBUG|OnDoc| +2026-03-19 14:38:13.2272|DEBUG|OnDoc| +2026-03-19 14:38:13.2272|DEBUG|OnDoc| +2026-03-19 14:38:13.2272|DEBUG|OnDoc| +2026-03-19 14:38:13.2272|DEBUG|OnDoc| +2026-03-19 14:38:13.2272|DEBUG|OnDoc| +2026-03-19 14:38:13.2272|DEBUG|OnDoc| +2026-03-19 14:38:13.2272|DEBUG|OnDoc| +2026-03-19 14:38:13.2272|DEBUG|OnDoc| +2026-03-19 14:38:13.2272|DEBUG|OnDoc| +2026-03-19 14:38:13.2272|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2404|DEBUG|OnDoc| +2026-03-19 14:38:13.2716|DEBUG|OnDoc| +2026-03-19 14:38:13.2716|DEBUG|OnDoc| +2026-03-19 14:38:13.2716|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:38:13.3272|DEBUG|OnDoc| +2026-03-19 14:38:13.3272|DEBUG|OnDoc| +2026-03-19 14:38:13.3623|DEBUG|OnDoc| +2026-03-19 14:38:13.3623|DEBUG|OnDoc| +2026-03-19 14:38:13.3759|DEBUG|OnDoc| +2026-03-19 14:38:13.3759|DEBUG|OnDoc| +2026-03-19 14:38:13.3759|DEBUG|OnDoc| +2026-03-19 14:38:13.3759|DEBUG|OnDoc| +2026-03-19 14:38:13.4097|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:38:13.4097|DEBUG|OnDoc| +2026-03-19 14:38:13.4162|DEBUG|OnDoc| +2026-03-19 14:38:13.4162|DEBUG|OnDoc| +2026-03-19 14:38:13.4162|DEBUG|OnDoc| +2026-03-19 14:38:13.4162|DEBUG|OnDoc| +2026-03-19 14:38:13.4162|DEBUG|OnDoc| +2026-03-19 14:38:13.4162|DEBUG|OnDoc| +2026-03-19 14:38:13.4296|DEBUG|OnDoc| +2026-03-19 14:38:13.4296|DEBUG|OnDoc|Generate_Word +2026-03-19 14:38:13.4296|DEBUG|OnDoc|Word2013 +2026-03-19 14:38:13.4296|DEBUG|OnDoc|Word2013 +2026-03-19 14:38:16.7448|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 14:38:23.0757|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:38:23.1838|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:38:23.2327|INFO|APIDocLog|Input JSON +2026-03-19 14:38:23.2327|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:38:23.2327|DEBUG|OnDoc| +2026-03-19 14:38:23.2327|DEBUG|OnDoc| +2026-03-19 14:38:23.2327|DEBUG|OnDoc| +2026-03-19 14:38:23.2327|DEBUG|OnDoc| +2026-03-19 14:38:23.2327|DEBUG|OnDoc| +2026-03-19 14:38:23.2327|DEBUG|OnDoc| +2026-03-19 14:38:23.2327|DEBUG|OnDoc| +2026-03-19 14:38:23.2327|DEBUG|OnDoc| +2026-03-19 14:38:23.2327|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2397|DEBUG|OnDoc| +2026-03-19 14:38:23.2713|DEBUG|OnDoc| +2026-03-19 14:38:23.2713|DEBUG|OnDoc| +2026-03-19 14:38:23.2713|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:38:23.3279|DEBUG|OnDoc| +2026-03-19 14:38:23.3279|DEBUG|OnDoc| +2026-03-19 14:38:23.3611|DEBUG|OnDoc| +2026-03-19 14:38:23.3647|DEBUG|OnDoc| +2026-03-19 14:38:23.3647|DEBUG|OnDoc| +2026-03-19 14:38:23.3647|DEBUG|OnDoc| +2026-03-19 14:38:23.3647|DEBUG|OnDoc| +2026-03-19 14:38:23.3647|DEBUG|OnDoc| +2026-03-19 14:38:23.4035|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:38:23.4035|DEBUG|OnDoc| +2026-03-19 14:38:23.4035|DEBUG|OnDoc| +2026-03-19 14:38:23.4035|DEBUG|OnDoc| +2026-03-19 14:38:23.4035|DEBUG|OnDoc| +2026-03-19 14:38:23.4125|DEBUG|OnDoc| +2026-03-19 14:38:23.4125|DEBUG|OnDoc| +2026-03-19 14:38:23.4125|DEBUG|OnDoc| +2026-03-19 14:38:23.4125|DEBUG|OnDoc| +2026-03-19 14:38:23.4125|DEBUG|OnDoc|Generate_Word +2026-03-19 14:38:23.4304|DEBUG|OnDoc|Word2013 +2026-03-19 14:38:23.4304|DEBUG|OnDoc|Word2013 +2026-03-19 14:38:40.3850|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 14:38:50.7944|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:38:50.8987|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:38:50.9450|INFO|APIDocLog|Input JSON +2026-03-19 14:38:50.9450|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9450|DEBUG|OnDoc| +2026-03-19 14:38:50.9587|DEBUG|OnDoc| +2026-03-19 14:38:50.9587|DEBUG|OnDoc| +2026-03-19 14:38:50.9587|DEBUG|OnDoc| +2026-03-19 14:38:50.9587|DEBUG|OnDoc| +2026-03-19 14:38:50.9587|DEBUG|OnDoc| +2026-03-19 14:38:50.9587|DEBUG|OnDoc| +2026-03-19 14:38:50.9587|DEBUG|OnDoc| +2026-03-19 14:38:50.9587|DEBUG|OnDoc| +2026-03-19 14:38:50.9587|DEBUG|OnDoc| +2026-03-19 14:38:50.9587|DEBUG|OnDoc| +2026-03-19 14:38:50.9746|DEBUG|OnDoc| +2026-03-19 14:38:50.9746|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:38:51.0249|DEBUG|OnDoc| +2026-03-19 14:38:51.0249|DEBUG|OnDoc| +2026-03-19 14:38:51.0599|DEBUG|OnDoc| +2026-03-19 14:38:51.0599|DEBUG|OnDoc| +2026-03-19 14:38:51.0692|DEBUG|OnDoc| +2026-03-19 14:38:51.0692|DEBUG|OnDoc| +2026-03-19 14:38:51.0692|DEBUG|OnDoc| +2026-03-19 14:38:51.0692|DEBUG|OnDoc| +2026-03-19 14:38:51.1003|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:38:51.1003|DEBUG|OnDoc| +2026-03-19 14:38:51.1003|DEBUG|OnDoc| +2026-03-19 14:38:51.1145|DEBUG|OnDoc| +2026-03-19 14:38:51.1145|DEBUG|OnDoc| +2026-03-19 14:38:51.1145|DEBUG|OnDoc| +2026-03-19 14:38:51.1145|DEBUG|OnDoc| +2026-03-19 14:38:51.1145|DEBUG|OnDoc| +2026-03-19 14:38:51.1145|DEBUG|OnDoc| +2026-03-19 14:38:51.1145|DEBUG|OnDoc|Generate_Word +2026-03-19 14:38:51.1330|DEBUG|OnDoc|Word2013 +2026-03-19 14:38:51.1330|DEBUG|OnDoc|Word2013 +2026-03-19 14:38:54.2579|DEBUG|OnDoc|Generate_Word +2026-03-19 14:38:54.2991|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018343 +2026-03-19 14:38:54.2991|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:38:54.2991|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:38:54.2991|DEBUG|OnDoc| +2026-03-19 14:38:54.3139|DEBUG|OnDoc| +2026-03-19 14:38:54.3139|DEBUG|OnDoc| +2026-03-19 14:38:54.3139|DEBUG|OnDoc| +2026-03-19 14:38:54.3139|DEBUG|OnDoc| +2026-03-19 14:38:54.3139|DEBUG|OnDoc| +2026-03-19 14:39:08.4913|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:39:08.6051|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:39:08.6531|INFO|APIDocLog|Input JSON +2026-03-19 14:39:08.6531|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6531|DEBUG|OnDoc| +2026-03-19 14:39:08.6622|DEBUG|OnDoc| +2026-03-19 14:39:08.6622|DEBUG|OnDoc| +2026-03-19 14:39:08.6622|DEBUG|OnDoc| +2026-03-19 14:39:08.6622|DEBUG|OnDoc| +2026-03-19 14:39:08.6622|DEBUG|OnDoc| +2026-03-19 14:39:08.6622|DEBUG|OnDoc| +2026-03-19 14:39:08.6622|DEBUG|OnDoc| +2026-03-19 14:39:08.6622|DEBUG|OnDoc| +2026-03-19 14:39:08.6622|DEBUG|OnDoc| +2026-03-19 14:39:08.6622|DEBUG|OnDoc| +2026-03-19 14:39:08.6622|DEBUG|OnDoc| +2026-03-19 14:39:08.6622|DEBUG|OnDoc| +2026-03-19 14:39:08.6622|DEBUG|OnDoc| +2026-03-19 14:39:08.6622|DEBUG|OnDoc| +2026-03-19 14:39:08.6799|DEBUG|OnDoc| +2026-03-19 14:39:08.6799|DEBUG|OnDoc| +2026-03-19 14:39:08.6799|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:39:08.7367|DEBUG|OnDoc| +2026-03-19 14:39:08.7397|DEBUG|OnDoc| +2026-03-19 14:39:08.7735|DEBUG|OnDoc| +2026-03-19 14:39:08.7735|DEBUG|OnDoc| +2026-03-19 14:39:08.7735|DEBUG|OnDoc| +2026-03-19 14:39:08.7735|DEBUG|OnDoc| +2026-03-19 14:39:08.7735|DEBUG|OnDoc| +2026-03-19 14:39:08.7735|DEBUG|OnDoc| +2026-03-19 14:39:08.8167|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:39:08.8167|DEBUG|OnDoc| +2026-03-19 14:39:08.8242|DEBUG|OnDoc| +2026-03-19 14:39:08.8242|DEBUG|OnDoc| +2026-03-19 14:39:08.8242|DEBUG|OnDoc| +2026-03-19 14:39:08.8242|DEBUG|OnDoc| +2026-03-19 14:39:08.8242|DEBUG|OnDoc| +2026-03-19 14:39:08.8242|DEBUG|OnDoc| +2026-03-19 14:39:08.8358|DEBUG|OnDoc| +2026-03-19 14:39:08.8358|DEBUG|OnDoc|Generate_Word +2026-03-19 14:39:08.8358|DEBUG|OnDoc|Word2013 +2026-03-19 14:39:08.8358|DEBUG|OnDoc|Word2013 +2026-03-19 14:39:13.2059|DEBUG|OnDoc|Generate_Word +2026-03-19 14:39:13.2472|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018359 +2026-03-19 14:39:13.2472|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:39:13.2472|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:39:13.2472|DEBUG|OnDoc| +2026-03-19 14:39:13.2717|DEBUG|OnDoc| +2026-03-19 14:39:13.2717|DEBUG|OnDoc| +2026-03-19 14:39:13.2717|DEBUG|OnDoc| +2026-03-19 14:39:13.2717|DEBUG|OnDoc| +2026-03-19 14:39:13.2717|DEBUG|OnDoc| +2026-03-19 14:39:52.6863|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:39:52.8577|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:39:52.9305|INFO|APIDocLog|Input JSON +2026-03-19 14:39:52.9305|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:39:52.9305|DEBUG|OnDoc| +2026-03-19 14:39:52.9305|DEBUG|OnDoc| +2026-03-19 14:39:52.9305|DEBUG|OnDoc| +2026-03-19 14:39:52.9305|DEBUG|OnDoc| +2026-03-19 14:39:52.9305|DEBUG|OnDoc| +2026-03-19 14:39:52.9305|DEBUG|OnDoc| +2026-03-19 14:39:52.9305|DEBUG|OnDoc| +2026-03-19 14:39:52.9305|DEBUG|OnDoc| +2026-03-19 14:39:52.9305|DEBUG|OnDoc| +2026-03-19 14:39:52.9305|DEBUG|OnDoc| +2026-03-19 14:39:52.9305|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9434|DEBUG|OnDoc| +2026-03-19 14:39:52.9773|DEBUG|OnDoc| +2026-03-19 14:39:52.9773|DEBUG|OnDoc| +2026-03-19 14:39:52.9902|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:39:53.0858|DEBUG|OnDoc| +2026-03-19 14:39:53.0858|DEBUG|OnDoc| +2026-03-19 14:39:53.2036|DEBUG|OnDoc| +2026-03-19 14:39:53.2036|DEBUG|OnDoc| +2026-03-19 14:39:53.2211|DEBUG|OnDoc| +2026-03-19 14:39:53.2211|DEBUG|OnDoc| +2026-03-19 14:39:53.2211|DEBUG|OnDoc| +2026-03-19 14:39:53.2246|DEBUG|OnDoc| +2026-03-19 14:39:53.2718|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:39:53.2718|DEBUG|OnDoc| +2026-03-19 14:39:53.2718|DEBUG|OnDoc| +2026-03-19 14:39:53.2718|DEBUG|OnDoc| +2026-03-19 14:39:53.2718|DEBUG|OnDoc| +2026-03-19 14:39:53.2718|DEBUG|OnDoc| +2026-03-19 14:39:53.2878|DEBUG|OnDoc| +2026-03-19 14:39:53.2878|DEBUG|OnDoc| +2026-03-19 14:39:53.2878|DEBUG|OnDoc| +2026-03-19 14:39:53.2878|DEBUG|OnDoc|Generate_Word +2026-03-19 14:39:53.3032|DEBUG|OnDoc|Word2013 +2026-03-19 14:39:53.3032|DEBUG|OnDoc|Word2013 +2026-03-19 14:39:59.3014|DEBUG|OnDoc|Generate_Word +2026-03-19 14:39:59.3418|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018367 +2026-03-19 14:39:59.3418|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:39:59.3418|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:39:59.3418|DEBUG|OnDoc| +2026-03-19 14:39:59.3590|DEBUG|OnDoc| +2026-03-19 14:39:59.3590|DEBUG|OnDoc| +2026-03-19 14:39:59.3590|DEBUG|OnDoc| +2026-03-19 14:39:59.3590|DEBUG|OnDoc| +2026-03-19 14:39:59.3590|DEBUG|OnDoc| +2026-03-19 14:40:20.5001|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:40:20.6121|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:40:20.6576|INFO|APIDocLog|Input JSON +2026-03-19 14:40:20.6576|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:40:20.6576|DEBUG|OnDoc| +2026-03-19 14:40:20.6576|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6619|DEBUG|OnDoc| +2026-03-19 14:40:20.6772|DEBUG|OnDoc| +2026-03-19 14:40:20.6772|DEBUG|OnDoc| +2026-03-19 14:40:20.6772|DEBUG|OnDoc| +2026-03-19 14:40:20.6960|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:40:20.7428|DEBUG|OnDoc| +2026-03-19 14:40:20.7428|DEBUG|OnDoc| +2026-03-19 14:40:20.7790|DEBUG|OnDoc| +2026-03-19 14:40:20.7790|DEBUG|OnDoc| +2026-03-19 14:40:20.7881|DEBUG|OnDoc| +2026-03-19 14:40:20.7881|DEBUG|OnDoc| +2026-03-19 14:40:20.7881|DEBUG|OnDoc| +2026-03-19 14:40:20.7881|DEBUG|OnDoc| +2026-03-19 14:40:20.8206|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:40:20.8206|DEBUG|OnDoc| +2026-03-19 14:40:20.8336|DEBUG|OnDoc| +2026-03-19 14:40:20.8336|DEBUG|OnDoc| +2026-03-19 14:40:20.8336|DEBUG|OnDoc| +2026-03-19 14:40:20.8336|DEBUG|OnDoc| +2026-03-19 14:40:20.8336|DEBUG|OnDoc| +2026-03-19 14:40:20.8336|DEBUG|OnDoc| +2026-03-19 14:40:20.8336|DEBUG|OnDoc| +2026-03-19 14:40:20.8336|DEBUG|OnDoc|Generate_Word +2026-03-19 14:40:20.8514|DEBUG|OnDoc|Word2013 +2026-03-19 14:40:20.8514|DEBUG|OnDoc|Word2013 +2026-03-19 14:40:28.4515|DEBUG|OnDoc|Generate_Word +2026-03-19 14:40:28.4904|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018375 +2026-03-19 14:40:28.4904|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:40:28.4904|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:40:28.4904|DEBUG|OnDoc| +2026-03-19 14:40:28.5056|DEBUG|OnDoc| +2026-03-19 14:40:28.5056|DEBUG|OnDoc| +2026-03-19 14:40:28.5056|DEBUG|OnDoc| +2026-03-19 14:40:28.5056|DEBUG|OnDoc| +2026-03-19 14:40:28.5056|DEBUG|OnDoc| +2026-03-19 14:51:20.5347|DEBUG|OnDoc| +2026-03-19 14:51:20.6373|DEBUG|OnDoc| +2026-03-19 14:51:20.6373|DEBUG|OnDoc| +2026-03-19 14:51:20.6373|DEBUG|OnDoc| +2026-03-19 14:51:21.0057|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:51:21.2799|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:51:21.3846|INFO|APIDocLog|Input JSON +2026-03-19 14:51:21.4089|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:51:21.4089|DEBUG|OnDoc| +2026-03-19 14:51:21.4176|DEBUG|OnDoc| +2026-03-19 14:51:21.4176|DEBUG|OnDoc| +2026-03-19 14:51:21.4176|DEBUG|OnDoc| +2026-03-19 14:51:21.4176|DEBUG|OnDoc| +2026-03-19 14:51:21.4176|DEBUG|OnDoc| +2026-03-19 14:51:21.4176|DEBUG|OnDoc| +2026-03-19 14:51:21.4176|DEBUG|OnDoc| +2026-03-19 14:51:21.4303|DEBUG|OnDoc| +2026-03-19 14:51:21.4303|DEBUG|OnDoc| +2026-03-19 14:51:21.4303|DEBUG|OnDoc| +2026-03-19 14:51:21.4303|DEBUG|OnDoc| +2026-03-19 14:51:21.4303|DEBUG|OnDoc| +2026-03-19 14:51:21.4303|DEBUG|OnDoc| +2026-03-19 14:51:21.4475|DEBUG|OnDoc| +2026-03-19 14:51:21.4475|DEBUG|OnDoc| +2026-03-19 14:51:21.4475|DEBUG|OnDoc| +2026-03-19 14:51:21.4638|DEBUG|OnDoc| +2026-03-19 14:51:21.4638|DEBUG|OnDoc| +2026-03-19 14:51:21.4638|DEBUG|OnDoc| +2026-03-19 14:51:21.5351|DEBUG|OnDoc| +2026-03-19 14:51:21.5351|DEBUG|OnDoc| +2026-03-19 14:51:21.5351|DEBUG|OnDoc| +2026-03-19 14:51:21.5410|DEBUG|OnDoc| +2026-03-19 14:51:21.5410|DEBUG|OnDoc| +2026-03-19 14:51:21.5410|DEBUG|OnDoc| +2026-03-19 14:51:21.5410|DEBUG|OnDoc| +2026-03-19 14:51:21.5410|DEBUG|OnDoc| +2026-03-19 14:51:21.5410|DEBUG|OnDoc| +2026-03-19 14:51:21.5410|DEBUG|OnDoc| +2026-03-19 14:51:21.5410|DEBUG|OnDoc| +2026-03-19 14:51:21.5410|DEBUG|OnDoc| +2026-03-19 14:51:21.5577|DEBUG|OnDoc| +2026-03-19 14:51:21.5577|DEBUG|OnDoc| +2026-03-19 14:51:21.5911|DEBUG|OnDoc| +2026-03-19 14:51:21.5911|DEBUG|OnDoc| +2026-03-19 14:51:21.6107|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:51:21.8712|DEBUG|OnDoc| +2026-03-19 14:51:21.8863|DEBUG|OnDoc| +2026-03-19 14:51:21.9657|DEBUG|OnDoc| +2026-03-19 14:51:21.9657|DEBUG|OnDoc| +2026-03-19 14:51:22.3370|DEBUG|OnDoc| +2026-03-19 14:51:22.3602|DEBUG|OnDoc| +2026-03-19 14:51:22.3602|DEBUG|OnDoc| +2026-03-19 14:51:22.3682|DEBUG|OnDoc| +2026-03-19 14:51:22.4116|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:51:22.4149|DEBUG|OnDoc| +2026-03-19 14:51:22.4441|DEBUG|OnDoc| +2026-03-19 14:51:22.4441|DEBUG|OnDoc| +2026-03-19 14:51:22.4502|DEBUG|OnDoc| +2026-03-19 14:51:22.4502|DEBUG|OnDoc| +2026-03-19 14:51:22.5118|DEBUG|OnDoc| +2026-03-19 14:51:22.5118|DEBUG|OnDoc| +2026-03-19 14:51:22.5260|DEBUG|OnDoc| +2026-03-19 14:51:22.5260|DEBUG|OnDoc|Generate_Word +2026-03-19 14:51:23.0406|DEBUG|OnDoc|Word2013 +2026-03-19 14:51:23.0406|DEBUG|OnDoc|Word2013 +2026-03-19 14:51:25.6770|DEBUG|OnDoc|Generate_Word +2026-03-19 14:51:25.7477|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018380 +2026-03-19 14:51:25.7477|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:51:25.7477|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:51:25.7477|DEBUG|OnDoc| +2026-03-19 14:51:25.7767|DEBUG|OnDoc| +2026-03-19 14:51:25.7767|DEBUG|OnDoc| +2026-03-19 14:51:25.7767|DEBUG|OnDoc| +2026-03-19 14:51:25.7767|DEBUG|OnDoc| +2026-03-19 14:51:25.7767|DEBUG|OnDoc| +2026-03-19 14:53:54.4154|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:53:54.4501|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:53:54.4681|INFO|APIDocLog|Input JSON +2026-03-19 14:53:54.4681|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4681|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.4779|DEBUG|OnDoc| +2026-03-19 14:53:54.5079|DEBUG|OnDoc| +2026-03-19 14:53:54.5099|DEBUG|OnDoc| +2026-03-19 14:53:54.5240|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:53:54.5690|DEBUG|OnDoc| +2026-03-19 14:53:54.5711|DEBUG|OnDoc| +2026-03-19 14:53:54.5711|DEBUG|OnDoc| +2026-03-19 14:53:54.5711|DEBUG|OnDoc| +2026-03-19 14:53:54.5920|DEBUG|OnDoc| +2026-03-19 14:53:54.5920|DEBUG|OnDoc| +2026-03-19 14:53:54.5920|DEBUG|OnDoc| +2026-03-19 14:53:54.5920|DEBUG|OnDoc| +2026-03-19 14:53:54.6068|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:53:54.6068|DEBUG|OnDoc| +2026-03-19 14:53:54.6068|DEBUG|OnDoc| +2026-03-19 14:53:54.6068|DEBUG|OnDoc| +2026-03-19 14:53:54.6068|DEBUG|OnDoc| +2026-03-19 14:53:54.6068|DEBUG|OnDoc| +2026-03-19 14:53:54.6202|DEBUG|OnDoc| +2026-03-19 14:53:54.6202|DEBUG|OnDoc| +2026-03-19 14:53:54.6202|DEBUG|OnDoc| +2026-03-19 14:53:54.6202|DEBUG|OnDoc|Generate_Word +2026-03-19 14:53:54.6338|DEBUG|OnDoc|Word2013 +2026-03-19 14:53:54.6338|DEBUG|OnDoc|Word2013 +2026-03-19 14:53:55.4616|DEBUG|OnDoc|Generate_Word +2026-03-19 14:53:55.4616|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018391 +2026-03-19 14:53:55.4616|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:53:55.4616|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:53:55.4616|DEBUG|OnDoc| +2026-03-19 14:53:55.4831|DEBUG|OnDoc| +2026-03-19 14:53:55.4831|DEBUG|OnDoc| +2026-03-19 14:53:55.4831|DEBUG|OnDoc| +2026-03-19 14:53:55.4831|DEBUG|OnDoc| +2026-03-19 14:53:55.4831|DEBUG|OnDoc| +2026-03-19 14:54:02.4426|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:54:02.4859|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:54:02.5058|INFO|APIDocLog|Input JSON +2026-03-19 14:54:02.5098|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5098|DEBUG|OnDoc| +2026-03-19 14:54:02.5460|DEBUG|OnDoc| +2026-03-19 14:54:02.5460|DEBUG|OnDoc| +2026-03-19 14:54:02.5557|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:54:02.6004|DEBUG|OnDoc| +2026-03-19 14:54:02.6034|DEBUG|OnDoc| +2026-03-19 14:54:02.6034|DEBUG|OnDoc| +2026-03-19 14:54:02.6034|DEBUG|OnDoc| +2026-03-19 14:54:02.6254|DEBUG|OnDoc| +2026-03-19 14:54:02.6254|DEBUG|OnDoc| +2026-03-19 14:54:02.6254|DEBUG|OnDoc| +2026-03-19 14:54:02.6254|DEBUG|OnDoc| +2026-03-19 14:54:02.6398|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:54:02.6398|DEBUG|OnDoc| +2026-03-19 14:54:02.6513|DEBUG|OnDoc| +2026-03-19 14:54:02.6513|DEBUG|OnDoc| +2026-03-19 14:54:02.6513|DEBUG|OnDoc| +2026-03-19 14:54:02.6513|DEBUG|OnDoc| +2026-03-19 14:54:02.6513|DEBUG|OnDoc| +2026-03-19 14:54:02.6513|DEBUG|OnDoc| +2026-03-19 14:54:02.6513|DEBUG|OnDoc| +2026-03-19 14:54:02.6649|DEBUG|OnDoc|Generate_Word +2026-03-19 14:54:02.6649|DEBUG|OnDoc|Word2013 +2026-03-19 14:54:02.6649|DEBUG|OnDoc|Word2013 +2026-03-19 14:54:03.6401|DEBUG|OnDoc|Generate_Word +2026-03-19 14:54:03.6401|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018409 +2026-03-19 14:54:03.6401|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:54:03.6401|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:54:03.6401|DEBUG|OnDoc| +2026-03-19 14:54:03.7133|DEBUG|OnDoc| +2026-03-19 14:54:03.7133|DEBUG|OnDoc| +2026-03-19 14:54:03.7133|DEBUG|OnDoc| +2026-03-19 14:54:03.7133|DEBUG|OnDoc| +2026-03-19 14:54:03.7133|DEBUG|OnDoc| +2026-03-19 14:54:19.1734|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:54:19.2204|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:54:19.2435|INFO|APIDocLog|Input JSON +2026-03-19 14:54:19.2435|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2435|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2585|DEBUG|OnDoc| +2026-03-19 14:54:19.2873|DEBUG|OnDoc| +2026-03-19 14:54:19.2873|DEBUG|OnDoc| +2026-03-19 14:54:19.2970|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:54:19.3433|DEBUG|OnDoc| +2026-03-19 14:54:19.3433|DEBUG|OnDoc| +2026-03-19 14:54:19.3603|DEBUG|OnDoc| +2026-03-19 14:54:19.3603|DEBUG|OnDoc| +2026-03-19 14:54:19.3730|DEBUG|OnDoc| +2026-03-19 14:54:19.3730|DEBUG|OnDoc| +2026-03-19 14:54:19.3730|DEBUG|OnDoc| +2026-03-19 14:54:19.3730|DEBUG|OnDoc| +2026-03-19 14:54:19.3900|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:54:19.3900|DEBUG|OnDoc| +2026-03-19 14:54:19.3900|DEBUG|OnDoc| +2026-03-19 14:54:19.4002|DEBUG|OnDoc| +2026-03-19 14:54:19.4002|DEBUG|OnDoc| +2026-03-19 14:54:19.4002|DEBUG|OnDoc| +2026-03-19 14:54:19.4002|DEBUG|OnDoc| +2026-03-19 14:54:19.4002|DEBUG|OnDoc| +2026-03-19 14:54:19.4002|DEBUG|OnDoc| +2026-03-19 14:54:19.4002|DEBUG|OnDoc|Generate_Word +2026-03-19 14:54:19.4183|DEBUG|OnDoc|Word2013 +2026-03-19 14:54:19.4183|DEBUG|OnDoc|Word2013 +2026-03-19 14:54:20.1803|DEBUG|OnDoc|Generate_Word +2026-03-19 14:54:20.1803|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018417 +2026-03-19 14:54:20.1803|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:54:20.1968|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:54:20.1968|DEBUG|OnDoc| +2026-03-19 14:54:20.2134|DEBUG|OnDoc| +2026-03-19 14:54:20.2134|DEBUG|OnDoc| +2026-03-19 14:54:20.2134|DEBUG|OnDoc| +2026-03-19 14:54:20.2134|DEBUG|OnDoc| +2026-03-19 14:54:20.2134|DEBUG|OnDoc| +2026-03-19 14:54:41.9925|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:54:42.0555|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:54:42.0772|INFO|APIDocLog|Input JSON +2026-03-19 14:54:42.0772|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:54:42.0772|DEBUG|OnDoc| +2026-03-19 14:54:42.0772|DEBUG|OnDoc| +2026-03-19 14:54:42.0772|DEBUG|OnDoc| +2026-03-19 14:54:42.0772|DEBUG|OnDoc| +2026-03-19 14:54:42.0772|DEBUG|OnDoc| +2026-03-19 14:54:42.0772|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.0870|DEBUG|OnDoc| +2026-03-19 14:54:42.1026|DEBUG|OnDoc| +2026-03-19 14:54:42.1026|DEBUG|OnDoc| +2026-03-19 14:54:42.1026|DEBUG|OnDoc| +2026-03-19 14:54:42.1026|DEBUG|OnDoc| +2026-03-19 14:54:42.1026|DEBUG|OnDoc| +2026-03-19 14:54:42.1026|DEBUG|OnDoc| +2026-03-19 14:54:42.1026|DEBUG|OnDoc| +2026-03-19 14:54:42.1026|DEBUG|OnDoc| +2026-03-19 14:54:42.1202|DEBUG|OnDoc| +2026-03-19 14:54:42.1202|DEBUG|OnDoc| +2026-03-19 14:54:42.1202|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:54:42.1788|DEBUG|OnDoc| +2026-03-19 14:54:42.1823|DEBUG|OnDoc| +2026-03-19 14:54:42.1823|DEBUG|OnDoc| +2026-03-19 14:54:42.1823|DEBUG|OnDoc| +2026-03-19 14:54:42.2041|DEBUG|OnDoc| +2026-03-19 14:54:42.2041|DEBUG|OnDoc| +2026-03-19 14:54:42.2041|DEBUG|OnDoc| +2026-03-19 14:54:42.2041|DEBUG|OnDoc| +2026-03-19 14:54:42.2184|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:54:42.2184|DEBUG|OnDoc| +2026-03-19 14:54:42.2272|DEBUG|OnDoc| +2026-03-19 14:54:42.2272|DEBUG|OnDoc| +2026-03-19 14:54:42.2272|DEBUG|OnDoc| +2026-03-19 14:54:42.2272|DEBUG|OnDoc| +2026-03-19 14:54:42.2272|DEBUG|OnDoc| +2026-03-19 14:54:42.2272|DEBUG|OnDoc| +2026-03-19 14:54:42.2272|DEBUG|OnDoc| +2026-03-19 14:54:42.2432|DEBUG|OnDoc|Generate_Word +2026-03-19 14:54:42.2432|DEBUG|OnDoc|Word2013 +2026-03-19 14:54:42.2432|DEBUG|OnDoc|Word2013 +2026-03-19 14:54:43.1389|DEBUG|OnDoc|Generate_Word +2026-03-19 14:54:43.1511|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018425 +2026-03-19 14:54:43.1511|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:54:43.1511|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:54:43.1511|DEBUG|OnDoc| +2026-03-19 14:54:43.1722|DEBUG|OnDoc| +2026-03-19 14:54:43.1722|DEBUG|OnDoc| +2026-03-19 14:54:43.1722|DEBUG|OnDoc| +2026-03-19 14:54:43.1722|DEBUG|OnDoc| +2026-03-19 14:54:43.1722|DEBUG|OnDoc| +2026-03-19 14:54:54.1425|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:54:54.2041|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:54:54.2224|INFO|APIDocLog|Input JSON +2026-03-19 14:54:54.2224|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:54:54.2224|DEBUG|OnDoc| +2026-03-19 14:54:54.2224|DEBUG|OnDoc| +2026-03-19 14:54:54.2224|DEBUG|OnDoc| +2026-03-19 14:54:54.2224|DEBUG|OnDoc| +2026-03-19 14:54:54.2224|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2280|DEBUG|OnDoc| +2026-03-19 14:54:54.2620|DEBUG|OnDoc| +2026-03-19 14:54:54.2620|DEBUG|OnDoc| +2026-03-19 14:54:54.2620|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:54:54.3171|DEBUG|OnDoc| +2026-03-19 14:54:54.3171|DEBUG|OnDoc| +2026-03-19 14:54:54.3286|DEBUG|OnDoc| +2026-03-19 14:54:54.3286|DEBUG|OnDoc| +2026-03-19 14:54:54.3418|DEBUG|OnDoc| +2026-03-19 14:54:54.3418|DEBUG|OnDoc| +2026-03-19 14:54:54.3418|DEBUG|OnDoc| +2026-03-19 14:54:54.3418|DEBUG|OnDoc| +2026-03-19 14:54:54.3585|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:54:54.3585|DEBUG|OnDoc| +2026-03-19 14:54:54.3714|DEBUG|OnDoc| +2026-03-19 14:54:54.3714|DEBUG|OnDoc| +2026-03-19 14:54:54.3714|DEBUG|OnDoc| +2026-03-19 14:54:54.3714|DEBUG|OnDoc| +2026-03-19 14:54:54.3840|DEBUG|OnDoc| +2026-03-19 14:54:54.3840|DEBUG|OnDoc| +2026-03-19 14:54:54.3840|DEBUG|OnDoc| +2026-03-19 14:54:54.3840|DEBUG|OnDoc|Generate_Word +2026-03-19 14:54:54.3990|DEBUG|OnDoc|Word2013 +2026-03-19 14:54:54.3990|DEBUG|OnDoc|Word2013 +2026-03-19 14:54:55.1692|DEBUG|OnDoc|Generate_Word +2026-03-19 14:54:55.1821|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018430 +2026-03-19 14:54:55.1821|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:54:55.1821|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:54:55.1821|DEBUG|OnDoc| +2026-03-19 14:54:55.2029|DEBUG|OnDoc| +2026-03-19 14:54:55.2029|DEBUG|OnDoc| +2026-03-19 14:54:55.2029|DEBUG|OnDoc| +2026-03-19 14:54:55.2029|DEBUG|OnDoc| +2026-03-19 14:54:55.2029|DEBUG|OnDoc| +2026-03-19 14:55:36.1629|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:55:36.2318|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:55:36.2630|INFO|APIDocLog|Input JSON +2026-03-19 14:55:36.2630|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:55:36.2630|DEBUG|OnDoc| +2026-03-19 14:55:36.2630|DEBUG|OnDoc| +2026-03-19 14:55:36.2630|DEBUG|OnDoc| +2026-03-19 14:55:36.2630|DEBUG|OnDoc| +2026-03-19 14:55:36.2630|DEBUG|OnDoc| +2026-03-19 14:55:36.2630|DEBUG|OnDoc| +2026-03-19 14:55:36.2630|DEBUG|OnDoc| +2026-03-19 14:55:36.2630|DEBUG|OnDoc| +2026-03-19 14:55:36.2630|DEBUG|OnDoc| +2026-03-19 14:55:36.2630|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2746|DEBUG|OnDoc| +2026-03-19 14:55:36.2900|DEBUG|OnDoc| +2026-03-19 14:55:36.2900|DEBUG|OnDoc| +2026-03-19 14:55:36.2900|DEBUG|OnDoc| +2026-03-19 14:55:36.3133|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:55:36.3584|DEBUG|OnDoc| +2026-03-19 14:55:36.3584|DEBUG|OnDoc| +2026-03-19 14:55:36.3750|DEBUG|OnDoc| +2026-03-19 14:55:36.3750|DEBUG|OnDoc| +2026-03-19 14:55:36.3858|DEBUG|OnDoc| +2026-03-19 14:55:36.3858|DEBUG|OnDoc| +2026-03-19 14:55:36.3858|DEBUG|OnDoc| +2026-03-19 14:55:36.3858|DEBUG|OnDoc| +2026-03-19 14:55:36.4002|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:55:36.4002|DEBUG|OnDoc| +2026-03-19 14:55:36.4002|DEBUG|OnDoc| +2026-03-19 14:55:36.4002|DEBUG|OnDoc| +2026-03-19 14:55:36.4002|DEBUG|OnDoc| +2026-03-19 14:55:36.4002|DEBUG|OnDoc| +2026-03-19 14:55:36.4151|DEBUG|OnDoc| +2026-03-19 14:55:36.4151|DEBUG|OnDoc| +2026-03-19 14:55:36.4151|DEBUG|OnDoc| +2026-03-19 14:55:36.4151|DEBUG|OnDoc|Generate_Word +2026-03-19 14:55:36.4151|DEBUG|OnDoc|Word2013 +2026-03-19 14:55:36.4331|DEBUG|OnDoc|Word2013 +2026-03-19 14:55:37.2854|DEBUG|OnDoc|Generate_Word +2026-03-19 14:55:37.2987|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018441 +2026-03-19 14:55:37.2987|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:55:37.2987|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:55:37.2987|DEBUG|OnDoc| +2026-03-19 14:55:37.3185|DEBUG|OnDoc| +2026-03-19 14:55:37.3220|DEBUG|OnDoc| +2026-03-19 14:55:37.3220|DEBUG|OnDoc| +2026-03-19 14:55:37.3220|DEBUG|OnDoc| +2026-03-19 14:55:37.3220|DEBUG|OnDoc| +2026-03-19 14:56:11.3926|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:56:11.4593|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:56:11.4814|INFO|APIDocLog|Input JSON +2026-03-19 14:56:11.4814|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4814|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.4930|DEBUG|OnDoc| +2026-03-19 14:56:11.5222|DEBUG|OnDoc| +2026-03-19 14:56:11.5242|DEBUG|OnDoc| +2026-03-19 14:56:11.5242|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:56:11.5865|DEBUG|OnDoc| +2026-03-19 14:56:11.5865|DEBUG|OnDoc| +2026-03-19 14:56:11.6021|DEBUG|OnDoc| +2026-03-19 14:56:11.6021|DEBUG|OnDoc| +2026-03-19 14:56:11.6021|DEBUG|OnDoc| +2026-03-19 14:56:11.6021|DEBUG|OnDoc| +2026-03-19 14:56:11.6021|DEBUG|OnDoc| +2026-03-19 14:56:11.6021|DEBUG|OnDoc| +2026-03-19 14:56:11.6255|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:56:11.6255|DEBUG|OnDoc| +2026-03-19 14:56:11.6342|DEBUG|OnDoc| +2026-03-19 14:56:11.6342|DEBUG|OnDoc| +2026-03-19 14:56:11.6342|DEBUG|OnDoc| +2026-03-19 14:56:11.6342|DEBUG|OnDoc| +2026-03-19 14:56:11.6342|DEBUG|OnDoc| +2026-03-19 14:56:11.6342|DEBUG|OnDoc| +2026-03-19 14:56:11.6342|DEBUG|OnDoc| +2026-03-19 14:56:11.6342|DEBUG|OnDoc|Generate_Word +2026-03-19 14:56:11.6562|DEBUG|OnDoc|Word2013 +2026-03-19 14:56:11.6562|DEBUG|OnDoc|Word2013 +2026-03-19 14:56:12.5348|DEBUG|OnDoc|Generate_Word +2026-03-19 14:56:12.5508|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018456 +2026-03-19 14:56:12.5508|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:56:12.5558|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:56:12.5558|DEBUG|OnDoc| +2026-03-19 14:56:12.5869|DEBUG|OnDoc| +2026-03-19 14:56:12.5869|DEBUG|OnDoc| +2026-03-19 14:56:12.5869|DEBUG|OnDoc| +2026-03-19 14:56:12.5869|DEBUG|OnDoc| +2026-03-19 14:56:12.5869|DEBUG|OnDoc| +2026-03-19 14:56:36.7449|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:56:36.8103|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:56:36.8300|INFO|APIDocLog|Input JSON +2026-03-19 14:56:36.8300|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:56:36.8300|DEBUG|OnDoc| +2026-03-19 14:56:36.8300|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8371|DEBUG|OnDoc| +2026-03-19 14:56:36.8536|DEBUG|OnDoc| +2026-03-19 14:56:36.8536|DEBUG|OnDoc| +2026-03-19 14:56:36.8536|DEBUG|OnDoc| +2026-03-19 14:56:36.8536|DEBUG|OnDoc| +2026-03-19 14:56:36.8536|DEBUG|OnDoc| +2026-03-19 14:56:36.8536|DEBUG|OnDoc| +2026-03-19 14:56:36.8536|DEBUG|OnDoc| +2026-03-19 14:56:36.8536|DEBUG|OnDoc| +2026-03-19 14:56:36.8536|DEBUG|OnDoc| +2026-03-19 14:56:36.8536|DEBUG|OnDoc| +2026-03-19 14:56:36.8536|DEBUG|OnDoc| +2026-03-19 14:56:36.8536|DEBUG|OnDoc| +2026-03-19 14:56:36.8536|DEBUG|OnDoc| +2026-03-19 14:56:36.8536|DEBUG|OnDoc| +2026-03-19 14:56:36.8851|DEBUG|OnDoc| +2026-03-19 14:56:36.8851|DEBUG|OnDoc| +2026-03-19 14:56:36.8851|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:56:36.9542|DEBUG|OnDoc| +2026-03-19 14:56:36.9542|DEBUG|OnDoc| +2026-03-19 14:56:36.9700|DEBUG|OnDoc| +2026-03-19 14:56:36.9700|DEBUG|OnDoc| +2026-03-19 14:56:36.9824|DEBUG|OnDoc| +2026-03-19 14:56:36.9824|DEBUG|OnDoc| +2026-03-19 14:56:36.9824|DEBUG|OnDoc| +2026-03-19 14:56:36.9824|DEBUG|OnDoc| +2026-03-19 14:56:37.0022|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:56:37.0022|DEBUG|OnDoc| +2026-03-19 14:56:37.0100|DEBUG|OnDoc| +2026-03-19 14:56:37.0100|DEBUG|OnDoc| +2026-03-19 14:56:37.0100|DEBUG|OnDoc| +2026-03-19 14:56:37.0100|DEBUG|OnDoc| +2026-03-19 14:56:37.0100|DEBUG|OnDoc| +2026-03-19 14:56:37.0100|DEBUG|OnDoc| +2026-03-19 14:56:37.0254|DEBUG|OnDoc| +2026-03-19 14:56:37.0254|DEBUG|OnDoc|Generate_Word +2026-03-19 14:56:37.0254|DEBUG|OnDoc|Word2013 +2026-03-19 14:56:37.0254|DEBUG|OnDoc|Word2013 +2026-03-19 14:56:37.9099|DEBUG|OnDoc|Generate_Word +2026-03-19 14:56:37.9304|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018464 +2026-03-19 14:56:37.9304|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:56:37.9304|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:56:37.9517|DEBUG|OnDoc| +2026-03-19 14:56:37.9748|DEBUG|OnDoc| +2026-03-19 14:56:37.9790|DEBUG|OnDoc| +2026-03-19 14:56:37.9790|DEBUG|OnDoc| +2026-03-19 14:56:37.9790|DEBUG|OnDoc| +2026-03-19 14:56:37.9938|DEBUG|OnDoc| +2026-03-19 14:56:56.7271|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:56:56.7942|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:56:56.8148|INFO|APIDocLog|Input JSON +2026-03-19 14:56:56.8148|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:56:56.8148|DEBUG|OnDoc| +2026-03-19 14:56:56.8148|DEBUG|OnDoc| +2026-03-19 14:56:56.8148|DEBUG|OnDoc| +2026-03-19 14:56:56.8148|DEBUG|OnDoc| +2026-03-19 14:56:56.8148|DEBUG|OnDoc| +2026-03-19 14:56:56.8148|DEBUG|OnDoc| +2026-03-19 14:56:56.8148|DEBUG|OnDoc| +2026-03-19 14:56:56.8148|DEBUG|OnDoc| +2026-03-19 14:56:56.8148|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8216|DEBUG|OnDoc| +2026-03-19 14:56:56.8428|DEBUG|OnDoc| +2026-03-19 14:56:56.8428|DEBUG|OnDoc| +2026-03-19 14:56:56.8535|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:56:56.8982|DEBUG|OnDoc| +2026-03-19 14:56:56.9001|DEBUG|OnDoc| +2026-03-19 14:56:56.9001|DEBUG|OnDoc| +2026-03-19 14:56:56.9001|DEBUG|OnDoc| +2026-03-19 14:56:56.9200|DEBUG|OnDoc| +2026-03-19 14:56:56.9200|DEBUG|OnDoc| +2026-03-19 14:56:56.9200|DEBUG|OnDoc| +2026-03-19 14:56:56.9200|DEBUG|OnDoc| +2026-03-19 14:56:56.9336|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:56:56.9336|DEBUG|OnDoc| +2026-03-19 14:56:56.9336|DEBUG|OnDoc| +2026-03-19 14:56:56.9336|DEBUG|OnDoc| +2026-03-19 14:56:56.9336|DEBUG|OnDoc| +2026-03-19 14:56:56.9336|DEBUG|OnDoc| +2026-03-19 14:56:56.9336|DEBUG|OnDoc| +2026-03-19 14:56:56.9336|DEBUG|OnDoc| +2026-03-19 14:56:56.9501|DEBUG|OnDoc| +2026-03-19 14:56:56.9501|DEBUG|OnDoc|Generate_Word +2026-03-19 14:56:56.9501|DEBUG|OnDoc|Word2013 +2026-03-19 14:56:56.9501|DEBUG|OnDoc|Word2013 +2026-03-19 14:56:57.7856|DEBUG|OnDoc|Generate_Word +2026-03-19 14:56:57.7981|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018472 +2026-03-19 14:56:57.7981|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:56:57.7981|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:56:57.7981|DEBUG|OnDoc| +2026-03-19 14:56:57.8131|DEBUG|OnDoc| +2026-03-19 14:56:57.8131|DEBUG|OnDoc| +2026-03-19 14:56:57.8131|DEBUG|OnDoc| +2026-03-19 14:56:57.8131|DEBUG|OnDoc| +2026-03-19 14:56:57.8131|DEBUG|OnDoc| +2026-03-19 14:57:28.6592|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:57:28.7250|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:57:28.7455|INFO|APIDocLog|Input JSON +2026-03-19 14:57:28.7455|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7455|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7590|DEBUG|OnDoc| +2026-03-19 14:57:28.7937|DEBUG|OnDoc| +2026-03-19 14:57:28.7937|DEBUG|OnDoc| +2026-03-19 14:57:28.8057|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:57:28.8552|DEBUG|OnDoc| +2026-03-19 14:57:28.8552|DEBUG|OnDoc| +2026-03-19 14:57:28.8707|DEBUG|OnDoc| +2026-03-19 14:57:28.8707|DEBUG|OnDoc| +2026-03-19 14:57:28.8707|DEBUG|OnDoc| +2026-03-19 14:57:28.8707|DEBUG|OnDoc| +2026-03-19 14:57:28.8707|DEBUG|OnDoc| +2026-03-19 14:57:28.8842|DEBUG|OnDoc| +2026-03-19 14:57:28.8842|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:57:28.8842|DEBUG|OnDoc| +2026-03-19 14:57:28.9047|DEBUG|OnDoc| +2026-03-19 14:57:28.9047|DEBUG|OnDoc| +2026-03-19 14:57:28.9047|DEBUG|OnDoc| +2026-03-19 14:57:28.9047|DEBUG|OnDoc| +2026-03-19 14:57:28.9047|DEBUG|OnDoc| +2026-03-19 14:57:28.9145|DEBUG|OnDoc| +2026-03-19 14:57:28.9145|DEBUG|OnDoc| +2026-03-19 14:57:28.9145|DEBUG|OnDoc|Generate_Word +2026-03-19 14:57:28.9302|DEBUG|OnDoc|Word2013 +2026-03-19 14:57:28.9302|DEBUG|OnDoc|Word2013 +2026-03-19 14:57:29.6937|DEBUG|OnDoc|Generate_Word +2026-03-19 14:57:29.7082|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018488 +2026-03-19 14:57:29.7082|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:57:29.7082|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:57:29.7117|DEBUG|OnDoc| +2026-03-19 14:57:29.7117|DEBUG|OnDoc| +2026-03-19 14:57:29.7279|DEBUG|OnDoc| +2026-03-19 14:57:29.7279|DEBUG|OnDoc| +2026-03-19 14:57:29.7279|DEBUG|OnDoc| +2026-03-19 14:57:29.7279|DEBUG|OnDoc| +2026-03-19 14:58:57.4012|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:58:57.4750|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:58:57.4970|INFO|APIDocLog|Input JSON +2026-03-19 14:58:57.4970|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.4970|DEBUG|OnDoc| +2026-03-19 14:58:57.5103|DEBUG|OnDoc| +2026-03-19 14:58:57.5103|DEBUG|OnDoc| +2026-03-19 14:58:57.5103|DEBUG|OnDoc| +2026-03-19 14:58:57.5103|DEBUG|OnDoc| +2026-03-19 14:58:57.5103|DEBUG|OnDoc| +2026-03-19 14:58:57.5103|DEBUG|OnDoc| +2026-03-19 14:58:57.5103|DEBUG|OnDoc| +2026-03-19 14:58:57.5103|DEBUG|OnDoc| +2026-03-19 14:58:57.5103|DEBUG|OnDoc| +2026-03-19 14:58:57.5103|DEBUG|OnDoc| +2026-03-19 14:58:57.5103|DEBUG|OnDoc| +2026-03-19 14:58:57.5103|DEBUG|OnDoc| +2026-03-19 14:58:57.5103|DEBUG|OnDoc| +2026-03-19 14:58:57.5103|DEBUG|OnDoc| +2026-03-19 14:58:57.5372|DEBUG|OnDoc| +2026-03-19 14:58:57.5372|DEBUG|OnDoc| +2026-03-19 14:58:57.5469|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:58:57.5943|DEBUG|OnDoc| +2026-03-19 14:58:57.5943|DEBUG|OnDoc| +2026-03-19 14:58:57.6070|DEBUG|OnDoc| +2026-03-19 14:58:57.6070|DEBUG|OnDoc| +2026-03-19 14:58:57.6220|DEBUG|OnDoc| +2026-03-19 14:58:57.6220|DEBUG|OnDoc| +2026-03-19 14:58:57.6220|DEBUG|OnDoc| +2026-03-19 14:58:57.6220|DEBUG|OnDoc| +2026-03-19 14:58:57.6372|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:58:57.6372|DEBUG|OnDoc| +2026-03-19 14:58:57.6372|DEBUG|OnDoc| +2026-03-19 14:58:57.6505|DEBUG|OnDoc| +2026-03-19 14:58:57.6505|DEBUG|OnDoc| +2026-03-19 14:58:57.6505|DEBUG|OnDoc| +2026-03-19 14:58:57.6505|DEBUG|OnDoc| +2026-03-19 14:58:57.6505|DEBUG|OnDoc| +2026-03-19 14:58:57.6505|DEBUG|OnDoc| +2026-03-19 14:58:57.6505|DEBUG|OnDoc|Generate_Word +2026-03-19 14:58:57.6703|DEBUG|OnDoc|Word2013 +2026-03-19 14:58:57.6703|DEBUG|OnDoc|Word2013 +2026-03-19 14:58:58.5288|DEBUG|OnDoc|Generate_Word +2026-03-19 14:58:58.5414|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018493 +2026-03-19 14:58:58.5414|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:58:58.5414|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:58:58.5414|DEBUG|OnDoc| +2026-03-19 14:58:58.5554|DEBUG|OnDoc| +2026-03-19 14:58:58.5554|DEBUG|OnDoc| +2026-03-19 14:58:58.5554|DEBUG|OnDoc| +2026-03-19 14:58:58.5554|DEBUG|OnDoc| +2026-03-19 14:58:58.5554|DEBUG|OnDoc| +2026-03-19 14:59:37.0285|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 14:59:37.1027|INFO|APIDocLog|Start CreateDoc +2026-03-19 14:59:37.1258|INFO|APIDocLog|Input JSON +2026-03-19 14:59:37.1258|DEBUG|OnDoc|Start GenDoc +2026-03-19 14:59:37.1258|DEBUG|OnDoc| +2026-03-19 14:59:37.1258|DEBUG|OnDoc| +2026-03-19 14:59:37.1258|DEBUG|OnDoc| +2026-03-19 14:59:37.1258|DEBUG|OnDoc| +2026-03-19 14:59:37.1258|DEBUG|OnDoc| +2026-03-19 14:59:37.1258|DEBUG|OnDoc| +2026-03-19 14:59:37.1258|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1341|DEBUG|OnDoc| +2026-03-19 14:59:37.1739|DEBUG|OnDoc| +2026-03-19 14:59:37.1739|DEBUG|OnDoc| +2026-03-19 14:59:37.1905|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 14:59:37.2453|DEBUG|OnDoc| +2026-03-19 14:59:37.2453|DEBUG|OnDoc| +2026-03-19 14:59:37.2599|DEBUG|OnDoc| +2026-03-19 14:59:37.2599|DEBUG|OnDoc| +2026-03-19 14:59:37.2599|DEBUG|OnDoc| +2026-03-19 14:59:37.2599|DEBUG|OnDoc| +2026-03-19 14:59:37.2740|DEBUG|OnDoc| +2026-03-19 14:59:37.2740|DEBUG|OnDoc| +2026-03-19 14:59:37.2740|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 14:59:37.2740|DEBUG|OnDoc| +2026-03-19 14:59:37.2922|DEBUG|OnDoc| +2026-03-19 14:59:37.2922|DEBUG|OnDoc| +2026-03-19 14:59:37.2922|DEBUG|OnDoc| +2026-03-19 14:59:37.2922|DEBUG|OnDoc| +2026-03-19 14:59:37.2922|DEBUG|OnDoc| +2026-03-19 14:59:37.2922|DEBUG|OnDoc| +2026-03-19 14:59:37.3101|DEBUG|OnDoc| +2026-03-19 14:59:37.3101|DEBUG|OnDoc|Generate_Word +2026-03-19 14:59:37.3101|DEBUG|OnDoc|Word2013 +2026-03-19 14:59:37.3215|DEBUG|OnDoc|Word2013 +2026-03-19 14:59:38.0771|DEBUG|OnDoc|Generate_Word +2026-03-19 14:59:38.0901|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018501 +2026-03-19 14:59:38.0901|INFO|DocLog|Dokument über API erstellt +2026-03-19 14:59:38.0901|INFO|APIDocLog|Dokument return to sender +2026-03-19 14:59:38.0901|DEBUG|OnDoc| +2026-03-19 14:59:38.1061|DEBUG|OnDoc| +2026-03-19 14:59:38.1061|DEBUG|OnDoc| +2026-03-19 14:59:38.1061|DEBUG|OnDoc| +2026-03-19 14:59:38.1061|DEBUG|OnDoc| +2026-03-19 14:59:38.1061|DEBUG|OnDoc| +2026-03-19 15:01:12.3430|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:01:12.4116|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:01:12.4327|INFO|APIDocLog|Input JSON +2026-03-19 15:01:12.4327|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4327|DEBUG|OnDoc| +2026-03-19 15:01:12.4459|DEBUG|OnDoc| +2026-03-19 15:01:12.4459|DEBUG|OnDoc| +2026-03-19 15:01:12.4459|DEBUG|OnDoc| +2026-03-19 15:01:12.4459|DEBUG|OnDoc| +2026-03-19 15:01:12.4459|DEBUG|OnDoc| +2026-03-19 15:01:12.4459|DEBUG|OnDoc| +2026-03-19 15:01:12.4459|DEBUG|OnDoc| +2026-03-19 15:01:12.4459|DEBUG|OnDoc| +2026-03-19 15:01:12.4459|DEBUG|OnDoc| +2026-03-19 15:01:12.4459|DEBUG|OnDoc| +2026-03-19 15:01:12.4459|DEBUG|OnDoc| +2026-03-19 15:01:12.4459|DEBUG|OnDoc| +2026-03-19 15:01:12.4459|DEBUG|OnDoc| +2026-03-19 15:01:12.4723|DEBUG|OnDoc| +2026-03-19 15:01:12.4723|DEBUG|OnDoc| +2026-03-19 15:01:12.4834|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:01:12.5282|DEBUG|OnDoc| +2026-03-19 15:01:12.5282|DEBUG|OnDoc| +2026-03-19 15:01:12.5427|DEBUG|OnDoc| +2026-03-19 15:01:12.5427|DEBUG|OnDoc| +2026-03-19 15:01:12.5427|DEBUG|OnDoc| +2026-03-19 15:01:12.5427|DEBUG|OnDoc| +2026-03-19 15:01:12.5427|DEBUG|OnDoc| +2026-03-19 15:01:12.5427|DEBUG|OnDoc| +2026-03-19 15:01:12.5646|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:01:12.5646|DEBUG|OnDoc| +2026-03-19 15:01:12.5646|DEBUG|OnDoc| +2026-03-19 15:01:12.5646|DEBUG|OnDoc| +2026-03-19 15:01:12.5716|DEBUG|OnDoc| +2026-03-19 15:01:12.5716|DEBUG|OnDoc| +2026-03-19 15:01:12.5716|DEBUG|OnDoc| +2026-03-19 15:01:12.5716|DEBUG|OnDoc| +2026-03-19 15:01:12.5716|DEBUG|OnDoc| +2026-03-19 15:01:12.5716|DEBUG|OnDoc|Generate_Word +2026-03-19 15:01:12.5882|DEBUG|OnDoc|Word2013 +2026-03-19 15:01:12.5882|DEBUG|OnDoc|Word2013 +2026-03-19 15:01:13.4093|DEBUG|OnDoc|Generate_Word +2026-03-19 15:01:13.4214|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018516 +2026-03-19 15:01:13.4214|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:01:13.4214|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:01:13.4214|DEBUG|OnDoc| +2026-03-19 15:01:13.4369|DEBUG|OnDoc| +2026-03-19 15:01:13.4369|DEBUG|OnDoc| +2026-03-19 15:01:13.4369|DEBUG|OnDoc| +2026-03-19 15:01:13.4369|DEBUG|OnDoc| +2026-03-19 15:01:13.4369|DEBUG|OnDoc| +2026-03-19 15:01:27.1633|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:01:27.2310|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:01:27.2522|INFO|APIDocLog|Input JSON +2026-03-19 15:01:27.2522|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:01:27.2522|DEBUG|OnDoc| +2026-03-19 15:01:27.2522|DEBUG|OnDoc| +2026-03-19 15:01:27.2522|DEBUG|OnDoc| +2026-03-19 15:01:27.2522|DEBUG|OnDoc| +2026-03-19 15:01:27.2522|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2589|DEBUG|OnDoc| +2026-03-19 15:01:27.2742|DEBUG|OnDoc| +2026-03-19 15:01:27.2742|DEBUG|OnDoc| +2026-03-19 15:01:27.2742|DEBUG|OnDoc| +2026-03-19 15:01:27.2742|DEBUG|OnDoc| +2026-03-19 15:01:27.2968|DEBUG|OnDoc| +2026-03-19 15:01:27.2968|DEBUG|OnDoc| +2026-03-19 15:01:27.3073|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:01:27.3546|DEBUG|OnDoc| +2026-03-19 15:01:27.3546|DEBUG|OnDoc| +2026-03-19 15:01:27.3546|DEBUG|OnDoc| +2026-03-19 15:01:27.3685|DEBUG|OnDoc| +2026-03-19 15:01:27.3685|DEBUG|OnDoc| +2026-03-19 15:01:27.3685|DEBUG|OnDoc| +2026-03-19 15:01:27.3685|DEBUG|OnDoc| +2026-03-19 15:01:27.3685|DEBUG|OnDoc| +2026-03-19 15:01:27.3890|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:01:27.3890|DEBUG|OnDoc| +2026-03-19 15:01:27.3890|DEBUG|OnDoc| +2026-03-19 15:01:27.3890|DEBUG|OnDoc| +2026-03-19 15:01:27.3995|DEBUG|OnDoc| +2026-03-19 15:01:27.3995|DEBUG|OnDoc| +2026-03-19 15:01:27.3995|DEBUG|OnDoc| +2026-03-19 15:01:27.3995|DEBUG|OnDoc| +2026-03-19 15:01:27.3995|DEBUG|OnDoc| +2026-03-19 15:01:27.3995|DEBUG|OnDoc|Generate_Word +2026-03-19 15:01:27.4200|DEBUG|OnDoc|Word2013 +2026-03-19 15:01:27.4200|DEBUG|OnDoc|Word2013 +2026-03-19 15:01:28.2273|DEBUG|OnDoc|Generate_Word +2026-03-19 15:01:28.2273|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018524 +2026-03-19 15:01:28.2273|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:01:28.2273|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:01:28.2435|DEBUG|OnDoc| +2026-03-19 15:01:28.2435|DEBUG|OnDoc| +2026-03-19 15:01:28.2435|DEBUG|OnDoc| +2026-03-19 15:01:28.2435|DEBUG|OnDoc| +2026-03-19 15:01:28.2435|DEBUG|OnDoc| +2026-03-19 15:01:28.2435|DEBUG|OnDoc| +2026-03-19 15:07:59.3133|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:07:59.3845|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:07:59.4117|INFO|APIDocLog|Input JSON +2026-03-19 15:07:59.4150|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4150|DEBUG|OnDoc| +2026-03-19 15:07:59.4306|DEBUG|OnDoc| +2026-03-19 15:07:59.4306|DEBUG|OnDoc| +2026-03-19 15:07:59.4306|DEBUG|OnDoc| +2026-03-19 15:07:59.4306|DEBUG|OnDoc| +2026-03-19 15:07:59.4306|DEBUG|OnDoc| +2026-03-19 15:07:59.4306|DEBUG|OnDoc| +2026-03-19 15:07:59.4306|DEBUG|OnDoc| +2026-03-19 15:07:59.4306|DEBUG|OnDoc| +2026-03-19 15:07:59.4306|DEBUG|OnDoc| +2026-03-19 15:07:59.4306|DEBUG|OnDoc| +2026-03-19 15:07:59.4306|DEBUG|OnDoc| +2026-03-19 15:07:59.4306|DEBUG|OnDoc| +2026-03-19 15:07:59.4306|DEBUG|OnDoc| +2026-03-19 15:07:59.4306|DEBUG|OnDoc| +2026-03-19 15:07:59.4588|DEBUG|OnDoc| +2026-03-19 15:07:59.4588|DEBUG|OnDoc| +2026-03-19 15:07:59.4674|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:07:59.5146|DEBUG|OnDoc| +2026-03-19 15:07:59.5146|DEBUG|OnDoc| +2026-03-19 15:07:59.5360|DEBUG|OnDoc| +2026-03-19 15:07:59.5360|DEBUG|OnDoc| +2026-03-19 15:07:59.5487|DEBUG|OnDoc| +2026-03-19 15:07:59.5487|DEBUG|OnDoc| +2026-03-19 15:07:59.5487|DEBUG|OnDoc| +2026-03-19 15:07:59.5487|DEBUG|OnDoc| +2026-03-19 15:07:59.5694|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:07:59.5694|DEBUG|OnDoc| +2026-03-19 15:07:59.5774|DEBUG|OnDoc| +2026-03-19 15:07:59.5774|DEBUG|OnDoc| +2026-03-19 15:07:59.5774|DEBUG|OnDoc| +2026-03-19 15:07:59.5774|DEBUG|OnDoc| +2026-03-19 15:07:59.5774|DEBUG|OnDoc| +2026-03-19 15:07:59.5865|DEBUG|OnDoc| +2026-03-19 15:07:59.5865|DEBUG|OnDoc| +2026-03-19 15:07:59.5865|DEBUG|OnDoc|Generate_Word +2026-03-19 15:07:59.6061|DEBUG|OnDoc|Word2013 +2026-03-19 15:07:59.6061|DEBUG|OnDoc|Word2013 +2026-03-19 15:08:00.4921|DEBUG|OnDoc|Generate_Word +2026-03-19 15:08:00.5034|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018532 +2026-03-19 15:08:00.5034|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:08:00.5034|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:08:00.5034|DEBUG|OnDoc| +2026-03-19 15:08:00.5192|DEBUG|OnDoc| +2026-03-19 15:08:00.5192|DEBUG|OnDoc| +2026-03-19 15:08:00.5192|DEBUG|OnDoc| +2026-03-19 15:08:00.5192|DEBUG|OnDoc| +2026-03-19 15:08:00.5192|DEBUG|OnDoc| +2026-03-19 15:08:22.3605|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:08:22.4582|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:08:22.4947|INFO|APIDocLog|Input JSON +2026-03-19 15:08:22.4947|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.4947|DEBUG|OnDoc| +2026-03-19 15:08:22.5089|DEBUG|OnDoc| +2026-03-19 15:08:22.5089|DEBUG|OnDoc| +2026-03-19 15:08:22.5089|DEBUG|OnDoc| +2026-03-19 15:08:22.5089|DEBUG|OnDoc| +2026-03-19 15:08:22.5089|DEBUG|OnDoc| +2026-03-19 15:08:22.5089|DEBUG|OnDoc| +2026-03-19 15:08:22.5089|DEBUG|OnDoc| +2026-03-19 15:08:22.5089|DEBUG|OnDoc| +2026-03-19 15:08:22.5089|DEBUG|OnDoc| +2026-03-19 15:08:22.5089|DEBUG|OnDoc| +2026-03-19 15:08:22.5089|DEBUG|OnDoc| +2026-03-19 15:08:22.5089|DEBUG|OnDoc| +2026-03-19 15:08:22.5089|DEBUG|OnDoc| +2026-03-19 15:08:22.5089|DEBUG|OnDoc| +2026-03-19 15:08:22.5272|DEBUG|OnDoc| +2026-03-19 15:08:22.5272|DEBUG|OnDoc| +2026-03-19 15:08:22.5272|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:08:22.5845|DEBUG|OnDoc| +2026-03-19 15:08:22.5866|DEBUG|OnDoc| +2026-03-19 15:08:22.6172|DEBUG|OnDoc| +2026-03-19 15:08:22.6179|DEBUG|OnDoc| +2026-03-19 15:08:22.6179|DEBUG|OnDoc| +2026-03-19 15:08:22.6179|DEBUG|OnDoc| +2026-03-19 15:08:22.6179|DEBUG|OnDoc| +2026-03-19 15:08:22.6179|DEBUG|OnDoc| +2026-03-19 15:08:22.6546|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:08:22.6546|DEBUG|OnDoc| +2026-03-19 15:08:22.6546|DEBUG|OnDoc| +2026-03-19 15:08:22.6546|DEBUG|OnDoc| +2026-03-19 15:08:22.6546|DEBUG|OnDoc| +2026-03-19 15:08:22.6546|DEBUG|OnDoc| +2026-03-19 15:08:22.6661|DEBUG|OnDoc| +2026-03-19 15:08:22.6661|DEBUG|OnDoc| +2026-03-19 15:08:22.6661|DEBUG|OnDoc| +2026-03-19 15:08:22.6661|DEBUG|OnDoc|Generate_Word +2026-03-19 15:08:22.6842|DEBUG|OnDoc|Word2013 +2026-03-19 15:08:22.6842|DEBUG|OnDoc|Word2013 +2026-03-19 15:08:23.7439|DEBUG|OnDoc|Generate_Word +2026-03-19 15:08:23.7439|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018548 +2026-03-19 15:08:23.7439|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:08:23.7439|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:08:23.7591|DEBUG|OnDoc| +2026-03-19 15:08:23.7591|DEBUG|OnDoc| +2026-03-19 15:08:23.7591|DEBUG|OnDoc| +2026-03-19 15:08:23.7591|DEBUG|OnDoc| +2026-03-19 15:08:23.7591|DEBUG|OnDoc| +2026-03-19 15:08:23.7591|DEBUG|OnDoc| +2026-03-19 15:08:43.9389|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:08:44.0535|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:08:44.0964|INFO|APIDocLog|Input JSON +2026-03-19 15:08:44.0964|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:08:44.0964|DEBUG|OnDoc| +2026-03-19 15:08:44.0964|DEBUG|OnDoc| +2026-03-19 15:08:44.0964|DEBUG|OnDoc| +2026-03-19 15:08:44.0964|DEBUG|OnDoc| +2026-03-19 15:08:44.0964|DEBUG|OnDoc| +2026-03-19 15:08:44.0964|DEBUG|OnDoc| +2026-03-19 15:08:44.0964|DEBUG|OnDoc| +2026-03-19 15:08:44.0964|DEBUG|OnDoc| +2026-03-19 15:08:44.0964|DEBUG|OnDoc| +2026-03-19 15:08:44.0964|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1025|DEBUG|OnDoc| +2026-03-19 15:08:44.1346|DEBUG|OnDoc| +2026-03-19 15:08:44.1346|DEBUG|OnDoc| +2026-03-19 15:08:44.1346|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:08:44.1879|DEBUG|OnDoc| +2026-03-19 15:08:44.1879|DEBUG|OnDoc| +2026-03-19 15:08:44.2211|DEBUG|OnDoc| +2026-03-19 15:08:44.2211|DEBUG|OnDoc| +2026-03-19 15:08:44.2295|DEBUG|OnDoc| +2026-03-19 15:08:44.2295|DEBUG|OnDoc| +2026-03-19 15:08:44.2295|DEBUG|OnDoc| +2026-03-19 15:08:44.2295|DEBUG|OnDoc| +2026-03-19 15:08:44.2596|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:08:44.2596|DEBUG|OnDoc| +2026-03-19 15:08:44.2596|DEBUG|OnDoc| +2026-03-19 15:08:44.2596|DEBUG|OnDoc| +2026-03-19 15:08:44.2596|DEBUG|OnDoc| +2026-03-19 15:08:44.2596|DEBUG|OnDoc| +2026-03-19 15:08:44.2779|DEBUG|OnDoc| +2026-03-19 15:08:44.2779|DEBUG|OnDoc| +2026-03-19 15:08:44.2779|DEBUG|OnDoc| +2026-03-19 15:08:44.2779|DEBUG|OnDoc|Generate_Word +2026-03-19 15:08:44.2945|DEBUG|OnDoc|Word2013 +2026-03-19 15:08:44.2945|DEBUG|OnDoc|Word2013 +2026-03-19 15:09:55.3885|DEBUG|OnDoc|Generate_Word +2026-03-19 15:09:55.4315|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018553 +2026-03-19 15:09:55.4315|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:09:55.4315|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:09:55.4315|DEBUG|OnDoc| +2026-03-19 15:09:55.4627|DEBUG|OnDoc| +2026-03-19 15:09:55.4627|DEBUG|OnDoc| +2026-03-19 15:09:55.4627|DEBUG|OnDoc| +2026-03-19 15:09:55.4627|DEBUG|OnDoc| +2026-03-19 15:09:55.4627|DEBUG|OnDoc| +2026-03-19 15:12:36.7559|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:12:36.8681|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:12:36.9047|INFO|APIDocLog|Input JSON +2026-03-19 15:12:36.9047|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:12:36.9047|DEBUG|OnDoc| +2026-03-19 15:12:36.9047|DEBUG|OnDoc| +2026-03-19 15:12:36.9047|DEBUG|OnDoc| +2026-03-19 15:12:36.9047|DEBUG|OnDoc| +2026-03-19 15:12:36.9047|DEBUG|OnDoc| +2026-03-19 15:12:36.9047|DEBUG|OnDoc| +2026-03-19 15:12:36.9047|DEBUG|OnDoc| +2026-03-19 15:12:36.9047|DEBUG|OnDoc| +2026-03-19 15:12:36.9047|DEBUG|OnDoc| +2026-03-19 15:12:36.9047|DEBUG|OnDoc| +2026-03-19 15:12:36.9047|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9169|DEBUG|OnDoc| +2026-03-19 15:12:36.9523|DEBUG|OnDoc| +2026-03-19 15:12:36.9523|DEBUG|OnDoc| +2026-03-19 15:12:36.9654|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:12:37.0085|DEBUG|OnDoc| +2026-03-19 15:12:37.0085|DEBUG|OnDoc| +2026-03-19 15:12:37.0403|DEBUG|OnDoc| +2026-03-19 15:12:37.0403|DEBUG|OnDoc| +2026-03-19 15:12:37.0403|DEBUG|OnDoc| +2026-03-19 15:12:37.0561|DEBUG|OnDoc| +2026-03-19 15:12:37.0561|DEBUG|OnDoc| +2026-03-19 15:12:37.0561|DEBUG|OnDoc| +2026-03-19 15:12:37.0856|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:12:37.0856|DEBUG|OnDoc| +2026-03-19 15:12:37.0927|DEBUG|OnDoc| +2026-03-19 15:12:37.0927|DEBUG|OnDoc| +2026-03-19 15:12:37.0927|DEBUG|OnDoc| +2026-03-19 15:12:37.0927|DEBUG|OnDoc| +2026-03-19 15:12:37.1027|DEBUG|OnDoc| +2026-03-19 15:12:37.1027|DEBUG|OnDoc| +2026-03-19 15:12:37.1027|DEBUG|OnDoc| +2026-03-19 15:12:37.1027|DEBUG|OnDoc|Generate_Word +2026-03-19 15:12:37.1027|DEBUG|OnDoc|Word2013 +2026-03-19 15:12:37.1027|DEBUG|OnDoc|Word2013 +2026-03-19 15:12:43.0803|DEBUG|OnDoc|Generate_Word +2026-03-19 15:12:43.1192|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018569 +2026-03-19 15:12:43.1192|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:12:43.1192|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:12:43.1192|DEBUG|OnDoc| +2026-03-19 15:12:43.1192|DEBUG|OnDoc| +2026-03-19 15:12:43.1339|DEBUG|OnDoc| +2026-03-19 15:12:43.1339|DEBUG|OnDoc| +2026-03-19 15:12:43.1339|DEBUG|OnDoc| +2026-03-19 15:12:43.1339|DEBUG|OnDoc| +2026-03-19 15:13:08.8266|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:13:08.9611|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:13:09.0194|INFO|APIDocLog|Input JSON +2026-03-19 15:13:09.0194|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:13:09.0194|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0240|DEBUG|OnDoc| +2026-03-19 15:13:09.0395|DEBUG|OnDoc| +2026-03-19 15:13:09.0395|DEBUG|OnDoc| +2026-03-19 15:13:09.0395|DEBUG|OnDoc| +2026-03-19 15:13:09.0395|DEBUG|OnDoc| +2026-03-19 15:13:09.0395|DEBUG|OnDoc| +2026-03-19 15:13:09.0395|DEBUG|OnDoc| +2026-03-19 15:13:09.0395|DEBUG|OnDoc| +2026-03-19 15:13:09.0617|DEBUG|OnDoc| +2026-03-19 15:13:09.0617|DEBUG|OnDoc| +2026-03-19 15:13:09.0617|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:13:09.1162|DEBUG|OnDoc| +2026-03-19 15:13:09.1177|DEBUG|OnDoc| +2026-03-19 15:13:09.1623|DEBUG|OnDoc| +2026-03-19 15:13:09.1623|DEBUG|OnDoc| +2026-03-19 15:13:09.1727|DEBUG|OnDoc| +2026-03-19 15:13:09.1727|DEBUG|OnDoc| +2026-03-19 15:13:09.1727|DEBUG|OnDoc| +2026-03-19 15:13:09.1727|DEBUG|OnDoc| +2026-03-19 15:13:09.2181|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:13:09.2181|DEBUG|OnDoc| +2026-03-19 15:13:09.2181|DEBUG|OnDoc| +2026-03-19 15:13:09.2181|DEBUG|OnDoc| +2026-03-19 15:13:09.2181|DEBUG|OnDoc| +2026-03-19 15:13:09.2181|DEBUG|OnDoc| +2026-03-19 15:13:09.2309|DEBUG|OnDoc| +2026-03-19 15:13:09.2309|DEBUG|OnDoc| +2026-03-19 15:13:09.2309|DEBUG|OnDoc| +2026-03-19 15:13:09.2309|DEBUG|OnDoc|Generate_Word +2026-03-19 15:13:09.2487|DEBUG|OnDoc|Word2013 +2026-03-19 15:13:09.2487|DEBUG|OnDoc|Word2013 +2026-03-19 15:13:13.3803|DEBUG|OnDoc|Generate_Word +2026-03-19 15:13:13.4221|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018577 +2026-03-19 15:13:13.4221|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:13:13.4221|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:13:13.4221|DEBUG|OnDoc| +2026-03-19 15:13:13.4490|DEBUG|OnDoc| +2026-03-19 15:13:13.4490|DEBUG|OnDoc| +2026-03-19 15:13:13.4490|DEBUG|OnDoc| +2026-03-19 15:13:13.4490|DEBUG|OnDoc| +2026-03-19 15:13:13.4490|DEBUG|OnDoc| +2026-03-19 15:13:30.5753|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:13:30.7130|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:13:30.7709|INFO|APIDocLog|Input JSON +2026-03-19 15:13:30.7739|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7739|DEBUG|OnDoc| +2026-03-19 15:13:30.7910|DEBUG|OnDoc| +2026-03-19 15:13:30.7910|DEBUG|OnDoc| +2026-03-19 15:13:30.7910|DEBUG|OnDoc| +2026-03-19 15:13:30.8098|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:13:30.8520|DEBUG|OnDoc| +2026-03-19 15:13:30.8520|DEBUG|OnDoc| +2026-03-19 15:13:30.8996|DEBUG|OnDoc| +2026-03-19 15:13:30.8996|DEBUG|OnDoc| +2026-03-19 15:13:30.8996|DEBUG|OnDoc| +2026-03-19 15:13:30.8996|DEBUG|OnDoc| +2026-03-19 15:13:30.8996|DEBUG|OnDoc| +2026-03-19 15:13:30.8996|DEBUG|OnDoc| +2026-03-19 15:13:30.9548|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:13:30.9548|DEBUG|OnDoc| +2026-03-19 15:13:30.9634|DEBUG|OnDoc| +2026-03-19 15:13:30.9634|DEBUG|OnDoc| +2026-03-19 15:13:30.9634|DEBUG|OnDoc| +2026-03-19 15:13:30.9634|DEBUG|OnDoc| +2026-03-19 15:13:30.9634|DEBUG|OnDoc| +2026-03-19 15:13:30.9634|DEBUG|OnDoc| +2026-03-19 15:13:30.9634|DEBUG|OnDoc| +2026-03-19 15:13:30.9634|DEBUG|OnDoc|Generate_Word +2026-03-19 15:13:30.9819|DEBUG|OnDoc|Word2013 +2026-03-19 15:13:30.9819|DEBUG|OnDoc|Word2013 +2026-03-19 15:13:36.5180|DEBUG|OnDoc|Generate_Word +2026-03-19 15:13:36.5577|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018585 +2026-03-19 15:13:36.5577|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:13:36.5577|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:13:36.5577|DEBUG|OnDoc| +2026-03-19 15:13:36.5766|DEBUG|OnDoc| +2026-03-19 15:13:36.5766|DEBUG|OnDoc| +2026-03-19 15:13:36.5766|DEBUG|OnDoc| +2026-03-19 15:13:36.5766|DEBUG|OnDoc| +2026-03-19 15:13:36.5766|DEBUG|OnDoc| +2026-03-19 15:16:29.1126|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:16:29.2743|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:16:29.3455|INFO|APIDocLog|Input JSON +2026-03-19 15:16:29.3455|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:16:29.3455|DEBUG|OnDoc| +2026-03-19 15:16:29.3455|DEBUG|OnDoc| +2026-03-19 15:16:29.3455|DEBUG|OnDoc| +2026-03-19 15:16:29.3455|DEBUG|OnDoc| +2026-03-19 15:16:29.3455|DEBUG|OnDoc| +2026-03-19 15:16:29.3455|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3520|DEBUG|OnDoc| +2026-03-19 15:16:29.3684|DEBUG|OnDoc| +2026-03-19 15:16:29.3684|DEBUG|OnDoc| +2026-03-19 15:16:29.3684|DEBUG|OnDoc| +2026-03-19 15:16:29.3917|DEBUG|OnDoc| +2026-03-19 15:16:29.3917|DEBUG|OnDoc| +2026-03-19 15:16:29.4008|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:16:29.4541|DEBUG|OnDoc| +2026-03-19 15:16:29.4541|DEBUG|OnDoc| +2026-03-19 15:16:29.5160|DEBUG|OnDoc| +2026-03-19 15:16:29.5160|DEBUG|OnDoc| +2026-03-19 15:16:29.5265|DEBUG|OnDoc| +2026-03-19 15:16:29.5265|DEBUG|OnDoc| +2026-03-19 15:16:29.5265|DEBUG|OnDoc| +2026-03-19 15:16:29.5265|DEBUG|OnDoc| +2026-03-19 15:16:29.5912|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:16:29.5912|DEBUG|OnDoc| +2026-03-19 15:16:29.5912|DEBUG|OnDoc| +2026-03-19 15:16:29.5912|DEBUG|OnDoc| +2026-03-19 15:16:29.5912|DEBUG|OnDoc| +2026-03-19 15:16:29.5912|DEBUG|OnDoc| +2026-03-19 15:16:29.6039|DEBUG|OnDoc| +2026-03-19 15:16:29.6039|DEBUG|OnDoc| +2026-03-19 15:16:29.6039|DEBUG|OnDoc| +2026-03-19 15:16:29.6039|DEBUG|OnDoc|Generate_Word +2026-03-19 15:16:29.6231|DEBUG|OnDoc|Word2013 +2026-03-19 15:16:29.6231|DEBUG|OnDoc|Word2013 +2026-03-19 15:16:33.9311|DEBUG|OnDoc|Generate_Word +2026-03-19 15:16:33.9717|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018590 +2026-03-19 15:16:33.9717|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:16:33.9717|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:16:33.9717|DEBUG|OnDoc| +2026-03-19 15:16:33.9911|DEBUG|OnDoc| +2026-03-19 15:16:33.9911|DEBUG|OnDoc| +2026-03-19 15:16:33.9926|DEBUG|OnDoc| +2026-03-19 15:16:33.9926|DEBUG|OnDoc| +2026-03-19 15:16:33.9926|DEBUG|OnDoc| +2026-03-19 15:16:44.8729|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:16:45.0256|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:16:45.0899|INFO|APIDocLog|Input JSON +2026-03-19 15:16:45.0899|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.0899|DEBUG|OnDoc| +2026-03-19 15:16:45.1029|DEBUG|OnDoc| +2026-03-19 15:16:45.1029|DEBUG|OnDoc| +2026-03-19 15:16:45.1029|DEBUG|OnDoc| +2026-03-19 15:16:45.1029|DEBUG|OnDoc| +2026-03-19 15:16:45.1029|DEBUG|OnDoc| +2026-03-19 15:16:45.1029|DEBUG|OnDoc| +2026-03-19 15:16:45.1029|DEBUG|OnDoc| +2026-03-19 15:16:45.1256|DEBUG|OnDoc| +2026-03-19 15:16:45.1256|DEBUG|OnDoc| +2026-03-19 15:16:45.1338|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:16:45.1802|DEBUG|OnDoc| +2026-03-19 15:16:45.1802|DEBUG|OnDoc| +2026-03-19 15:16:45.2374|DEBUG|OnDoc| +2026-03-19 15:16:45.2374|DEBUG|OnDoc| +2026-03-19 15:16:45.2474|DEBUG|OnDoc| +2026-03-19 15:16:45.2474|DEBUG|OnDoc| +2026-03-19 15:16:45.2474|DEBUG|OnDoc| +2026-03-19 15:16:45.2474|DEBUG|OnDoc| +2026-03-19 15:16:45.2981|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:16:45.2981|DEBUG|OnDoc| +2026-03-19 15:16:45.3089|DEBUG|OnDoc| +2026-03-19 15:16:45.3089|DEBUG|OnDoc| +2026-03-19 15:16:45.3089|DEBUG|OnDoc| +2026-03-19 15:16:45.3089|DEBUG|OnDoc| +2026-03-19 15:16:45.3089|DEBUG|OnDoc| +2026-03-19 15:16:45.3089|DEBUG|OnDoc| +2026-03-19 15:16:45.3089|DEBUG|OnDoc| +2026-03-19 15:16:45.3089|DEBUG|OnDoc|Generate_Word +2026-03-19 15:16:45.3254|DEBUG|OnDoc|Word2013 +2026-03-19 15:16:45.3254|DEBUG|OnDoc|Word2013 +2026-03-19 15:16:51.6800|DEBUG|OnDoc|Generate_Word +2026-03-19 15:16:51.7187|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018604 +2026-03-19 15:16:51.7187|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:16:51.7187|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:16:51.7187|DEBUG|OnDoc| +2026-03-19 15:16:51.7438|DEBUG|OnDoc| +2026-03-19 15:16:51.7438|DEBUG|OnDoc| +2026-03-19 15:16:51.7438|DEBUG|OnDoc| +2026-03-19 15:16:51.7438|DEBUG|OnDoc| +2026-03-19 15:16:51.7438|DEBUG|OnDoc| +2026-03-19 15:17:01.7142|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:17:01.8654|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:17:01.9273|INFO|APIDocLog|Input JSON +2026-03-19 15:17:01.9307|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9307|DEBUG|OnDoc| +2026-03-19 15:17:01.9548|DEBUG|OnDoc| +2026-03-19 15:17:01.9548|DEBUG|OnDoc| +2026-03-19 15:17:01.9635|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:17:02.0087|DEBUG|OnDoc| +2026-03-19 15:17:02.0087|DEBUG|OnDoc| +2026-03-19 15:17:02.0661|DEBUG|OnDoc| +2026-03-19 15:17:02.0661|DEBUG|OnDoc| +2026-03-19 15:17:02.0731|DEBUG|OnDoc| +2026-03-19 15:17:02.0731|DEBUG|OnDoc| +2026-03-19 15:17:02.0731|DEBUG|OnDoc| +2026-03-19 15:17:02.0731|DEBUG|OnDoc| +2026-03-19 15:17:02.1262|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:17:02.1262|DEBUG|OnDoc| +2026-03-19 15:17:02.1262|DEBUG|OnDoc| +2026-03-19 15:17:02.1262|DEBUG|OnDoc| +2026-03-19 15:17:02.1334|DEBUG|OnDoc| +2026-03-19 15:17:02.1334|DEBUG|OnDoc| +2026-03-19 15:17:02.1334|DEBUG|OnDoc| +2026-03-19 15:17:02.1334|DEBUG|OnDoc| +2026-03-19 15:17:02.1334|DEBUG|OnDoc| +2026-03-19 15:17:02.1334|DEBUG|OnDoc|Generate_Word +2026-03-19 15:17:02.1493|DEBUG|OnDoc|Word2013 +2026-03-19 15:17:02.1493|DEBUG|OnDoc|Word2013 +2026-03-19 15:17:08.5829|DEBUG|OnDoc|Generate_Word +2026-03-19 15:17:08.6240|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018612 +2026-03-19 15:17:08.6240|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:17:08.6240|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:17:08.6240|DEBUG|OnDoc| +2026-03-19 15:17:08.6407|DEBUG|OnDoc| +2026-03-19 15:17:08.6407|DEBUG|OnDoc| +2026-03-19 15:17:08.6407|DEBUG|OnDoc| +2026-03-19 15:17:08.6407|DEBUG|OnDoc| +2026-03-19 15:17:08.6407|DEBUG|OnDoc| +2026-03-19 15:19:22.1061|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:19:22.2523|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:19:22.3173|INFO|APIDocLog|Input JSON +2026-03-19 15:19:22.3208|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3208|DEBUG|OnDoc| +2026-03-19 15:19:22.3365|DEBUG|OnDoc| +2026-03-19 15:19:22.3365|DEBUG|OnDoc| +2026-03-19 15:19:22.3365|DEBUG|OnDoc| +2026-03-19 15:19:22.3365|DEBUG|OnDoc| +2026-03-19 15:19:22.3365|DEBUG|OnDoc| +2026-03-19 15:19:22.3610|DEBUG|OnDoc| +2026-03-19 15:19:22.3610|DEBUG|OnDoc| +2026-03-19 15:19:22.3706|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:19:22.4141|DEBUG|OnDoc| +2026-03-19 15:19:22.4161|DEBUG|OnDoc| +2026-03-19 15:19:22.4719|DEBUG|OnDoc| +2026-03-19 15:19:22.4719|DEBUG|OnDoc| +2026-03-19 15:19:22.4833|DEBUG|OnDoc| +2026-03-19 15:19:22.4833|DEBUG|OnDoc| +2026-03-19 15:19:22.4833|DEBUG|OnDoc| +2026-03-19 15:19:22.4833|DEBUG|OnDoc| +2026-03-19 15:19:22.5337|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:19:22.5337|DEBUG|OnDoc| +2026-03-19 15:19:22.5453|DEBUG|OnDoc| +2026-03-19 15:19:22.5453|DEBUG|OnDoc| +2026-03-19 15:19:22.5453|DEBUG|OnDoc| +2026-03-19 15:19:22.5453|DEBUG|OnDoc| +2026-03-19 15:19:22.5453|DEBUG|OnDoc| +2026-03-19 15:19:22.5453|DEBUG|OnDoc| +2026-03-19 15:19:22.5453|DEBUG|OnDoc| +2026-03-19 15:19:22.5453|DEBUG|OnDoc|Generate_Word +2026-03-19 15:19:22.5625|DEBUG|OnDoc|Word2013 +2026-03-19 15:19:22.5625|DEBUG|OnDoc|Word2013 +2026-03-19 15:19:23.9857|DEBUG|OnDoc|Generate_Word +2026-03-19 15:19:24.0002|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018628 +2026-03-19 15:19:24.0002|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:19:24.0002|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:19:24.0002|DEBUG|OnDoc| +2026-03-19 15:19:24.0144|DEBUG|OnDoc| +2026-03-19 15:19:24.0144|DEBUG|OnDoc| +2026-03-19 15:19:24.0144|DEBUG|OnDoc| +2026-03-19 15:19:24.0144|DEBUG|OnDoc| +2026-03-19 15:19:24.0144|DEBUG|OnDoc| +2026-03-19 15:20:08.2673|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:20:08.4167|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:20:08.4826|INFO|APIDocLog|Input JSON +2026-03-19 15:20:08.4826|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4826|DEBUG|OnDoc| +2026-03-19 15:20:08.4942|DEBUG|OnDoc| +2026-03-19 15:20:08.4942|DEBUG|OnDoc| +2026-03-19 15:20:08.4942|DEBUG|OnDoc| +2026-03-19 15:20:08.4942|DEBUG|OnDoc| +2026-03-19 15:20:08.4942|DEBUG|OnDoc| +2026-03-19 15:20:08.4942|DEBUG|OnDoc| +2026-03-19 15:20:08.4942|DEBUG|OnDoc| +2026-03-19 15:20:08.4942|DEBUG|OnDoc| +2026-03-19 15:20:08.4942|DEBUG|OnDoc| +2026-03-19 15:20:08.4942|DEBUG|OnDoc| +2026-03-19 15:20:08.4942|DEBUG|OnDoc| +2026-03-19 15:20:08.4942|DEBUG|OnDoc| +2026-03-19 15:20:08.4942|DEBUG|OnDoc| +2026-03-19 15:20:08.4942|DEBUG|OnDoc| +2026-03-19 15:20:08.5196|DEBUG|OnDoc| +2026-03-19 15:20:08.5196|DEBUG|OnDoc| +2026-03-19 15:20:08.5297|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:20:08.5719|DEBUG|OnDoc| +2026-03-19 15:20:08.5719|DEBUG|OnDoc| +2026-03-19 15:20:08.6274|DEBUG|OnDoc| +2026-03-19 15:20:08.6274|DEBUG|OnDoc| +2026-03-19 15:20:08.6356|DEBUG|OnDoc| +2026-03-19 15:20:08.6356|DEBUG|OnDoc| +2026-03-19 15:20:08.6356|DEBUG|OnDoc| +2026-03-19 15:20:08.6356|DEBUG|OnDoc| +2026-03-19 15:20:08.6844|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:20:08.6844|DEBUG|OnDoc| +2026-03-19 15:20:08.6844|DEBUG|OnDoc| +2026-03-19 15:20:08.6844|DEBUG|OnDoc| +2026-03-19 15:20:08.6844|DEBUG|OnDoc| +2026-03-19 15:20:08.6844|DEBUG|OnDoc| +2026-03-19 15:20:08.6982|DEBUG|OnDoc| +2026-03-19 15:20:08.6982|DEBUG|OnDoc| +2026-03-19 15:20:08.6982|DEBUG|OnDoc| +2026-03-19 15:20:08.6982|DEBUG|OnDoc|Generate_Word +2026-03-19 15:20:08.6982|DEBUG|OnDoc|Word2013 +2026-03-19 15:20:08.6982|DEBUG|OnDoc|Word2013 +2026-03-19 15:20:48.4316|DEBUG|OnDoc|Generate_Word +2026-03-19 15:20:48.4751|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018633 +2026-03-19 15:20:48.4751|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:20:48.4775|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:20:48.4775|DEBUG|OnDoc| +2026-03-19 15:20:48.4775|DEBUG|OnDoc| +2026-03-19 15:20:48.4775|DEBUG|OnDoc| +2026-03-19 15:20:48.4775|DEBUG|OnDoc| +2026-03-19 15:20:48.4775|DEBUG|OnDoc| +2026-03-19 15:20:48.4775|DEBUG|OnDoc| +2026-03-19 15:21:01.0360|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:21:01.1715|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:21:01.2345|INFO|APIDocLog|Input JSON +2026-03-19 15:21:01.2345|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2345|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2427|DEBUG|OnDoc| +2026-03-19 15:21:01.2713|DEBUG|OnDoc| +2026-03-19 15:21:01.2713|DEBUG|OnDoc| +2026-03-19 15:21:01.2789|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:21:01.3255|DEBUG|OnDoc| +2026-03-19 15:21:01.3255|DEBUG|OnDoc| +2026-03-19 15:21:01.3810|DEBUG|OnDoc| +2026-03-19 15:21:01.3810|DEBUG|OnDoc| +2026-03-19 15:21:01.3904|DEBUG|OnDoc| +2026-03-19 15:21:01.3904|DEBUG|OnDoc| +2026-03-19 15:21:01.3904|DEBUG|OnDoc| +2026-03-19 15:21:01.3904|DEBUG|OnDoc| +2026-03-19 15:21:01.4407|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:21:01.4407|DEBUG|OnDoc| +2026-03-19 15:21:01.4500|DEBUG|OnDoc| +2026-03-19 15:21:01.4500|DEBUG|OnDoc| +2026-03-19 15:21:01.4500|DEBUG|OnDoc| +2026-03-19 15:21:01.4500|DEBUG|OnDoc| +2026-03-19 15:21:01.4500|DEBUG|OnDoc| +2026-03-19 15:21:01.4500|DEBUG|OnDoc| +2026-03-19 15:21:01.4500|DEBUG|OnDoc| +2026-03-19 15:21:01.4500|DEBUG|OnDoc|Generate_Word +2026-03-19 15:21:01.4674|DEBUG|OnDoc|Word2013 +2026-03-19 15:21:01.4674|DEBUG|OnDoc|Word2013 +2026-03-19 15:21:06.3659|DEBUG|OnDoc|Generate_Word +2026-03-19 15:21:06.4055|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018649 +2026-03-19 15:21:06.4055|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:21:06.4055|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:21:06.4055|DEBUG|OnDoc| +2026-03-19 15:21:06.4184|DEBUG|OnDoc| +2026-03-19 15:21:06.4184|DEBUG|OnDoc| +2026-03-19 15:21:06.4184|DEBUG|OnDoc| +2026-03-19 15:21:06.4184|DEBUG|OnDoc| +2026-03-19 15:21:06.4184|DEBUG|OnDoc| +2026-03-19 15:21:32.5687|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:21:32.7160|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:21:32.7795|INFO|APIDocLog|Input JSON +2026-03-19 15:21:32.7795|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7795|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.7902|DEBUG|OnDoc| +2026-03-19 15:21:32.8200|DEBUG|OnDoc| +2026-03-19 15:21:32.8230|DEBUG|OnDoc| +2026-03-19 15:21:32.8230|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:21:32.8768|DEBUG|OnDoc| +2026-03-19 15:21:32.8768|DEBUG|OnDoc| +2026-03-19 15:21:32.9331|DEBUG|OnDoc| +2026-03-19 15:21:32.9331|DEBUG|OnDoc| +2026-03-19 15:21:32.9331|DEBUG|OnDoc| +2026-03-19 15:21:32.9331|DEBUG|OnDoc| +2026-03-19 15:21:32.9331|DEBUG|OnDoc| +2026-03-19 15:21:32.9331|DEBUG|OnDoc| +2026-03-19 15:21:32.9953|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:21:32.9953|DEBUG|OnDoc| +2026-03-19 15:21:32.9953|DEBUG|OnDoc| +2026-03-19 15:21:32.9953|DEBUG|OnDoc| +2026-03-19 15:21:33.0091|DEBUG|OnDoc| +2026-03-19 15:21:33.0091|DEBUG|OnDoc| +2026-03-19 15:21:33.0091|DEBUG|OnDoc| +2026-03-19 15:21:33.0091|DEBUG|OnDoc| +2026-03-19 15:21:33.0091|DEBUG|OnDoc| +2026-03-19 15:21:33.0091|DEBUG|OnDoc|Generate_Word +2026-03-19 15:21:33.0263|DEBUG|OnDoc|Word2013 +2026-03-19 15:21:33.0263|DEBUG|OnDoc|Word2013 +2026-03-19 15:23:39.7165|DEBUG|OnDoc|Generate_Word +2026-03-19 15:23:39.7570|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018657 +2026-03-19 15:23:39.7570|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:23:39.7589|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:23:39.7589|DEBUG|OnDoc| +2026-03-19 15:23:39.7589|DEBUG|OnDoc| +2026-03-19 15:23:39.7589|DEBUG|OnDoc| +2026-03-19 15:23:39.7589|DEBUG|OnDoc| +2026-03-19 15:23:39.7589|DEBUG|OnDoc| +2026-03-19 15:23:39.7589|DEBUG|OnDoc| +2026-03-19 15:23:58.9418|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:23:59.1538|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:23:59.2476|INFO|APIDocLog|Input JSON +2026-03-19 15:23:59.2587|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2587|DEBUG|OnDoc| +2026-03-19 15:23:59.2837|DEBUG|OnDoc| +2026-03-19 15:23:59.2837|DEBUG|OnDoc| +2026-03-19 15:23:59.2924|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:23:59.3354|DEBUG|OnDoc| +2026-03-19 15:23:59.3379|DEBUG|OnDoc| +2026-03-19 15:23:59.3927|DEBUG|OnDoc| +2026-03-19 15:23:59.3927|DEBUG|OnDoc| +2026-03-19 15:23:59.4034|DEBUG|OnDoc| +2026-03-19 15:23:59.4034|DEBUG|OnDoc| +2026-03-19 15:23:59.4034|DEBUG|OnDoc| +2026-03-19 15:23:59.4034|DEBUG|OnDoc| +2026-03-19 15:23:59.4570|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:23:59.4570|DEBUG|OnDoc| +2026-03-19 15:23:59.4670|DEBUG|OnDoc| +2026-03-19 15:23:59.4670|DEBUG|OnDoc| +2026-03-19 15:23:59.4670|DEBUG|OnDoc| +2026-03-19 15:23:59.4670|DEBUG|OnDoc| +2026-03-19 15:23:59.4670|DEBUG|OnDoc| +2026-03-19 15:23:59.4670|DEBUG|OnDoc| +2026-03-19 15:23:59.4795|DEBUG|OnDoc| +2026-03-19 15:23:59.4795|DEBUG|OnDoc|Generate_Word +2026-03-19 15:23:59.4795|DEBUG|OnDoc|Word2013 +2026-03-19 15:23:59.4795|DEBUG|OnDoc|Word2013 +2026-03-19 15:24:00.5182|DEBUG|OnDoc| +2026-03-19 15:24:00.5268|DEBUG|OnDoc| +2026-03-19 15:24:00.6557|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 15:24:00.6651|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 15:24:00.8332|DEBUG|OnDoc| +2026-03-19 15:24:00.8427|DEBUG|OnDoc| +2026-03-19 15:24:00.9645|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 15:24:00.9645|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 15:24:03.7329|DEBUG|OnDoc|Generate_Word +2026-03-19 15:24:03.7473|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018665 +2026-03-19 15:24:03.7473|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:24:03.7473|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:24:03.7473|DEBUG|OnDoc| +2026-03-19 15:24:03.7666|DEBUG|OnDoc| +2026-03-19 15:24:03.7666|DEBUG|OnDoc| +2026-03-19 15:24:03.7666|DEBUG|OnDoc| +2026-03-19 15:24:03.7666|DEBUG|OnDoc| +2026-03-19 15:24:03.7666|DEBUG|OnDoc| +2026-03-19 15:24:33.8294|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:24:33.9770|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:24:34.0444|INFO|APIDocLog|Input JSON +2026-03-19 15:24:34.0444|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:24:34.0444|DEBUG|OnDoc| +2026-03-19 15:24:34.0444|DEBUG|OnDoc| +2026-03-19 15:24:34.0444|DEBUG|OnDoc| +2026-03-19 15:24:34.0444|DEBUG|OnDoc| +2026-03-19 15:24:34.0444|DEBUG|OnDoc| +2026-03-19 15:24:34.0444|DEBUG|OnDoc| +2026-03-19 15:24:34.0444|DEBUG|OnDoc| +2026-03-19 15:24:34.0444|DEBUG|OnDoc| +2026-03-19 15:24:34.0444|DEBUG|OnDoc| +2026-03-19 15:24:34.0444|DEBUG|OnDoc| +2026-03-19 15:24:34.0444|DEBUG|OnDoc| +2026-03-19 15:24:34.0444|DEBUG|OnDoc| +2026-03-19 15:24:34.0444|DEBUG|OnDoc| +2026-03-19 15:24:34.0444|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0551|DEBUG|OnDoc| +2026-03-19 15:24:34.0846|DEBUG|OnDoc| +2026-03-19 15:24:34.0846|DEBUG|OnDoc| +2026-03-19 15:24:34.0922|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:24:34.1350|DEBUG|OnDoc| +2026-03-19 15:24:34.1350|DEBUG|OnDoc| +2026-03-19 15:24:34.1922|DEBUG|OnDoc| +2026-03-19 15:24:34.1922|DEBUG|OnDoc| +2026-03-19 15:24:34.2071|DEBUG|OnDoc| +2026-03-19 15:24:34.2071|DEBUG|OnDoc| +2026-03-19 15:24:34.2071|DEBUG|OnDoc| +2026-03-19 15:24:34.2071|DEBUG|OnDoc| +2026-03-19 15:24:34.2602|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:24:34.2602|DEBUG|OnDoc| +2026-03-19 15:24:34.2602|DEBUG|OnDoc| +2026-03-19 15:24:34.2602|DEBUG|OnDoc| +2026-03-19 15:24:34.2602|DEBUG|OnDoc| +2026-03-19 15:24:34.2602|DEBUG|OnDoc| +2026-03-19 15:24:34.2784|DEBUG|OnDoc| +2026-03-19 15:24:34.2784|DEBUG|OnDoc| +2026-03-19 15:24:34.2784|DEBUG|OnDoc| +2026-03-19 15:24:34.2784|DEBUG|OnDoc|Generate_Word +2026-03-19 15:24:34.2933|DEBUG|OnDoc|Word2013 +2026-03-19 15:24:34.2933|DEBUG|OnDoc|Word2013 +2026-03-19 15:24:35.1225|DEBUG|OnDoc| +2026-03-19 15:24:35.1225|DEBUG|OnDoc| +2026-03-19 15:24:35.2555|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 15:24:35.2644|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 15:24:35.4056|DEBUG|OnDoc| +2026-03-19 15:24:35.4154|DEBUG|OnDoc| +2026-03-19 15:24:35.5382|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 15:24:35.5467|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 15:24:37.8999|DEBUG|OnDoc|Generate_Word +2026-03-19 15:24:37.9146|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018670 +2026-03-19 15:24:37.9146|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:24:37.9146|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:24:37.9146|DEBUG|OnDoc| +2026-03-19 15:24:37.9420|DEBUG|OnDoc| +2026-03-19 15:24:37.9420|DEBUG|OnDoc| +2026-03-19 15:24:37.9420|DEBUG|OnDoc| +2026-03-19 15:24:37.9420|DEBUG|OnDoc| +2026-03-19 15:24:37.9420|DEBUG|OnDoc| +2026-03-19 15:24:59.2443|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:24:59.3952|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:24:59.4595|INFO|APIDocLog|Input JSON +2026-03-19 15:24:59.4621|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4621|DEBUG|OnDoc| +2026-03-19 15:24:59.4849|DEBUG|OnDoc| +2026-03-19 15:24:59.4849|DEBUG|OnDoc| +2026-03-19 15:24:59.4930|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:24:59.5393|DEBUG|OnDoc| +2026-03-19 15:24:59.5423|DEBUG|OnDoc| +2026-03-19 15:24:59.5970|DEBUG|OnDoc| +2026-03-19 15:24:59.5970|DEBUG|OnDoc| +2026-03-19 15:24:59.6108|DEBUG|OnDoc| +2026-03-19 15:24:59.6108|DEBUG|OnDoc| +2026-03-19 15:24:59.6108|DEBUG|OnDoc| +2026-03-19 15:24:59.6108|DEBUG|OnDoc| +2026-03-19 15:24:59.6620|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:24:59.6620|DEBUG|OnDoc| +2026-03-19 15:24:59.6696|DEBUG|OnDoc| +2026-03-19 15:24:59.6696|DEBUG|OnDoc| +2026-03-19 15:24:59.6696|DEBUG|OnDoc| +2026-03-19 15:24:59.6696|DEBUG|OnDoc| +2026-03-19 15:24:59.6696|DEBUG|OnDoc| +2026-03-19 15:24:59.6696|DEBUG|OnDoc| +2026-03-19 15:24:59.6696|DEBUG|OnDoc| +2026-03-19 15:24:59.6696|DEBUG|OnDoc|Generate_Word +2026-03-19 15:24:59.6863|DEBUG|OnDoc|Word2013 +2026-03-19 15:24:59.6863|DEBUG|OnDoc|Word2013 +2026-03-19 15:25:02.1434|DEBUG|OnDoc| +2026-03-19 15:25:02.1529|DEBUG|OnDoc| +2026-03-19 15:25:02.2744|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 15:25:02.2744|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 15:25:02.4201|DEBUG|OnDoc| +2026-03-19 15:25:02.4201|DEBUG|OnDoc| +2026-03-19 15:25:02.5532|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 15:25:02.5626|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 15:25:05.2748|DEBUG|OnDoc|Generate_Word +2026-03-19 15:25:05.2748|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018681 +2026-03-19 15:25:05.2748|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:25:05.2748|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:25:05.2748|DEBUG|OnDoc| +2026-03-19 15:25:05.3036|DEBUG|OnDoc| +2026-03-19 15:25:05.3036|DEBUG|OnDoc| +2026-03-19 15:25:05.3036|DEBUG|OnDoc| +2026-03-19 15:25:05.3036|DEBUG|OnDoc| +2026-03-19 15:25:05.3036|DEBUG|OnDoc| +2026-03-19 15:25:12.8149|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:25:12.9707|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:25:13.0355|INFO|APIDocLog|Input JSON +2026-03-19 15:25:13.0355|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:25:13.0355|DEBUG|OnDoc| +2026-03-19 15:25:13.0355|DEBUG|OnDoc| +2026-03-19 15:25:13.0355|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0397|DEBUG|OnDoc| +2026-03-19 15:25:13.0752|DEBUG|OnDoc| +2026-03-19 15:25:13.0752|DEBUG|OnDoc| +2026-03-19 15:25:13.0752|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:25:13.1287|DEBUG|OnDoc| +2026-03-19 15:25:13.1287|DEBUG|OnDoc| +2026-03-19 15:25:13.1872|DEBUG|OnDoc| +2026-03-19 15:25:13.1872|DEBUG|OnDoc| +2026-03-19 15:25:13.1967|DEBUG|OnDoc| +2026-03-19 15:25:13.1967|DEBUG|OnDoc| +2026-03-19 15:25:13.1967|DEBUG|OnDoc| +2026-03-19 15:25:13.1967|DEBUG|OnDoc| +2026-03-19 15:25:13.2490|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:25:13.2490|DEBUG|OnDoc| +2026-03-19 15:25:13.2583|DEBUG|OnDoc| +2026-03-19 15:25:13.2583|DEBUG|OnDoc| +2026-03-19 15:25:13.2583|DEBUG|OnDoc| +2026-03-19 15:25:13.2583|DEBUG|OnDoc| +2026-03-19 15:25:13.2583|DEBUG|OnDoc| +2026-03-19 15:25:13.2583|DEBUG|OnDoc| +2026-03-19 15:25:13.2583|DEBUG|OnDoc| +2026-03-19 15:25:13.2583|DEBUG|OnDoc|Generate_Word +2026-03-19 15:25:13.3219|DEBUG|OnDoc|Word2013 +2026-03-19 15:25:13.3219|DEBUG|OnDoc|Word2013 +2026-03-19 15:25:18.0335|DEBUG|OnDoc| +2026-03-19 15:25:18.0690|DEBUG|OnDoc| +2026-03-19 15:25:18.1946|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 15:25:18.2046|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 15:25:18.3402|DEBUG|OnDoc| +2026-03-19 15:25:18.3402|DEBUG|OnDoc| +2026-03-19 15:25:18.4720|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 15:25:18.4811|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 15:25:20.0978|DEBUG|OnDoc|Generate_Word +2026-03-19 15:25:20.1113|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018696 +2026-03-19 15:25:20.1113|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:25:20.1113|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:25:20.1113|DEBUG|OnDoc| +2026-03-19 15:25:20.1424|DEBUG|OnDoc| +2026-03-19 15:25:20.1424|DEBUG|OnDoc| +2026-03-19 15:25:20.1424|DEBUG|OnDoc| +2026-03-19 15:25:20.1424|DEBUG|OnDoc| +2026-03-19 15:25:20.1424|DEBUG|OnDoc| +2026-03-19 15:25:39.3684|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:25:39.5133|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:25:39.5758|INFO|APIDocLog|Input JSON +2026-03-19 15:25:39.5758|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5758|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.5869|DEBUG|OnDoc| +2026-03-19 15:25:39.6167|DEBUG|OnDoc| +2026-03-19 15:25:39.6187|DEBUG|OnDoc| +2026-03-19 15:25:39.6187|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:25:39.7805|DEBUG|OnDoc| +2026-03-19 15:25:39.7904|DEBUG|OnDoc| +2026-03-19 15:25:39.8539|DEBUG|OnDoc| +2026-03-19 15:25:39.8539|DEBUG|OnDoc| +2026-03-19 15:25:39.8539|DEBUG|OnDoc| +2026-03-19 15:25:39.8539|DEBUG|OnDoc| +2026-03-19 15:25:39.8539|DEBUG|OnDoc| +2026-03-19 15:25:39.8539|DEBUG|OnDoc| +2026-03-19 15:25:39.9173|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:25:39.9173|DEBUG|OnDoc| +2026-03-19 15:25:39.9173|DEBUG|OnDoc| +2026-03-19 15:25:39.9173|DEBUG|OnDoc| +2026-03-19 15:25:39.9173|DEBUG|OnDoc| +2026-03-19 15:25:39.9173|DEBUG|OnDoc| +2026-03-19 15:25:39.9306|DEBUG|OnDoc| +2026-03-19 15:25:39.9306|DEBUG|OnDoc| +2026-03-19 15:25:39.9306|DEBUG|OnDoc| +2026-03-19 15:25:39.9306|DEBUG|OnDoc|Generate_Word +2026-03-19 15:25:39.9306|DEBUG|OnDoc|Word2013 +2026-03-19 15:25:39.9306|DEBUG|OnDoc|Word2013 +2026-03-19 15:25:43.4366|DEBUG|OnDoc|Generate_Word +2026-03-19 15:25:43.4767|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018708 +2026-03-19 15:25:43.4782|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:25:43.4782|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:25:43.4782|DEBUG|OnDoc| +2026-03-19 15:25:43.5049|DEBUG|OnDoc| +2026-03-19 15:25:43.5049|DEBUG|OnDoc| +2026-03-19 15:25:43.5049|DEBUG|OnDoc| +2026-03-19 15:25:43.5049|DEBUG|OnDoc| +2026-03-19 15:25:43.5049|DEBUG|OnDoc| +2026-03-19 15:39:53.0358|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:39:53.1848|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:39:53.2504|INFO|APIDocLog|Input JSON +2026-03-19 15:39:53.2504|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:39:53.2504|DEBUG|OnDoc| +2026-03-19 15:39:53.2504|DEBUG|OnDoc| +2026-03-19 15:39:53.2504|DEBUG|OnDoc| +2026-03-19 15:39:53.2504|DEBUG|OnDoc| +2026-03-19 15:39:53.2504|DEBUG|OnDoc| +2026-03-19 15:39:53.2504|DEBUG|OnDoc| +2026-03-19 15:39:53.2504|DEBUG|OnDoc| +2026-03-19 15:39:53.2504|DEBUG|OnDoc| +2026-03-19 15:39:53.2504|DEBUG|OnDoc| +2026-03-19 15:39:53.2504|DEBUG|OnDoc| +2026-03-19 15:39:53.2504|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2591|DEBUG|OnDoc| +2026-03-19 15:39:53.2796|DEBUG|OnDoc| +2026-03-19 15:39:53.2796|DEBUG|OnDoc| +2026-03-19 15:39:53.2796|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:39:53.3358|DEBUG|OnDoc| +2026-03-19 15:39:53.3378|DEBUG|OnDoc| +2026-03-19 15:39:53.3908|DEBUG|OnDoc| +2026-03-19 15:39:53.3908|DEBUG|OnDoc| +2026-03-19 15:39:53.4037|DEBUG|OnDoc| +2026-03-19 15:39:53.4037|DEBUG|OnDoc| +2026-03-19 15:39:53.4037|DEBUG|OnDoc| +2026-03-19 15:39:53.4037|DEBUG|OnDoc| +2026-03-19 15:39:53.4560|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:39:53.4560|DEBUG|OnDoc| +2026-03-19 15:39:53.4635|DEBUG|OnDoc| +2026-03-19 15:39:53.4635|DEBUG|OnDoc| +2026-03-19 15:39:53.4635|DEBUG|OnDoc| +2026-03-19 15:39:53.4635|DEBUG|OnDoc| +2026-03-19 15:39:53.4635|DEBUG|OnDoc| +2026-03-19 15:39:53.4635|DEBUG|OnDoc| +2026-03-19 15:39:53.4635|DEBUG|OnDoc| +2026-03-19 15:39:53.4635|DEBUG|OnDoc|Generate_Word +2026-03-19 15:39:53.4844|DEBUG|OnDoc|Word2013 +2026-03-19 15:39:53.4844|DEBUG|OnDoc|Word2013 +2026-03-19 15:41:59.1306|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 15:44:33.3116|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:44:33.4664|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:44:33.5364|INFO|APIDocLog|Input JSON +2026-03-19 15:44:33.5399|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5399|DEBUG|OnDoc| +2026-03-19 15:44:33.5558|DEBUG|OnDoc| +2026-03-19 15:44:33.5558|DEBUG|OnDoc| +2026-03-19 15:44:33.5558|DEBUG|OnDoc| +2026-03-19 15:44:33.5558|DEBUG|OnDoc| +2026-03-19 15:44:33.5558|DEBUG|OnDoc| +2026-03-19 15:44:33.5791|DEBUG|OnDoc| +2026-03-19 15:44:33.5791|DEBUG|OnDoc| +2026-03-19 15:44:33.5899|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:44:33.6374|DEBUG|OnDoc| +2026-03-19 15:44:33.6374|DEBUG|OnDoc| +2026-03-19 15:44:33.6999|DEBUG|OnDoc| +2026-03-19 15:44:33.6999|DEBUG|OnDoc| +2026-03-19 15:44:33.7163|DEBUG|OnDoc| +2026-03-19 15:44:33.7163|DEBUG|OnDoc| +2026-03-19 15:44:33.7163|DEBUG|OnDoc| +2026-03-19 15:44:33.7163|DEBUG|OnDoc| +2026-03-19 15:44:33.7724|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:44:33.7724|DEBUG|OnDoc| +2026-03-19 15:44:33.7799|DEBUG|OnDoc| +2026-03-19 15:44:33.7799|DEBUG|OnDoc| +2026-03-19 15:44:33.7799|DEBUG|OnDoc| +2026-03-19 15:44:33.7799|DEBUG|OnDoc| +2026-03-19 15:44:33.7799|DEBUG|OnDoc| +2026-03-19 15:44:33.7799|DEBUG|OnDoc| +2026-03-19 15:44:33.7916|DEBUG|OnDoc| +2026-03-19 15:44:33.7916|DEBUG|OnDoc|Generate_Word +2026-03-19 15:44:33.7916|DEBUG|OnDoc|Word2013 +2026-03-19 15:44:33.7916|DEBUG|OnDoc|Word2013 +2026-03-19 15:46:35.1567|DEBUG|OnDoc|Generate_Word +2026-03-19 15:46:35.1968|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018729 +2026-03-19 15:46:35.1968|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:46:35.1968|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:46:35.1968|DEBUG|OnDoc| +2026-03-19 15:46:35.2119|DEBUG|OnDoc| +2026-03-19 15:46:35.2119|DEBUG|OnDoc| +2026-03-19 15:46:35.2119|DEBUG|OnDoc| +2026-03-19 15:46:35.2119|DEBUG|OnDoc| +2026-03-19 15:46:35.2119|DEBUG|OnDoc| +2026-03-19 15:46:48.4275|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:46:48.5805|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:46:48.6496|INFO|APIDocLog|Input JSON +2026-03-19 15:46:48.6496|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6496|DEBUG|OnDoc| +2026-03-19 15:46:48.6645|DEBUG|OnDoc| +2026-03-19 15:46:48.6645|DEBUG|OnDoc| +2026-03-19 15:46:48.6645|DEBUG|OnDoc| +2026-03-19 15:46:48.6645|DEBUG|OnDoc| +2026-03-19 15:46:48.6645|DEBUG|OnDoc| +2026-03-19 15:46:48.6645|DEBUG|OnDoc| +2026-03-19 15:46:48.6645|DEBUG|OnDoc| +2026-03-19 15:46:48.6645|DEBUG|OnDoc| +2026-03-19 15:46:48.6808|DEBUG|OnDoc| +2026-03-19 15:46:48.6808|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:46:48.7378|DEBUG|OnDoc| +2026-03-19 15:46:48.7378|DEBUG|OnDoc| +2026-03-19 15:46:48.7963|DEBUG|OnDoc| +2026-03-19 15:46:48.7963|DEBUG|OnDoc| +2026-03-19 15:46:48.8083|DEBUG|OnDoc| +2026-03-19 15:46:48.8083|DEBUG|OnDoc| +2026-03-19 15:46:48.8083|DEBUG|OnDoc| +2026-03-19 15:46:48.8083|DEBUG|OnDoc| +2026-03-19 15:46:48.8636|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:46:48.8636|DEBUG|OnDoc| +2026-03-19 15:46:48.8702|DEBUG|OnDoc| +2026-03-19 15:46:48.8702|DEBUG|OnDoc| +2026-03-19 15:46:48.8702|DEBUG|OnDoc| +2026-03-19 15:46:48.8702|DEBUG|OnDoc| +2026-03-19 15:46:48.8702|DEBUG|OnDoc| +2026-03-19 15:46:48.8702|DEBUG|OnDoc| +2026-03-19 15:46:48.8702|DEBUG|OnDoc| +2026-03-19 15:46:48.8702|DEBUG|OnDoc|Generate_Word +2026-03-19 15:46:48.8898|DEBUG|OnDoc|Word2013 +2026-03-19 15:46:48.8898|DEBUG|OnDoc|Word2013 +2026-03-19 15:48:27.8914|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 15:48:35.1633|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:48:35.2834|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:48:35.3551|INFO|APIDocLog|Input JSON +2026-03-19 15:48:35.3551|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3551|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3687|DEBUG|OnDoc| +2026-03-19 15:48:35.3879|DEBUG|OnDoc| +2026-03-19 15:48:35.3879|DEBUG|OnDoc| +2026-03-19 15:48:35.3879|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:48:35.4427|DEBUG|OnDoc| +2026-03-19 15:48:35.4427|DEBUG|OnDoc| +2026-03-19 15:48:35.5021|DEBUG|OnDoc| +2026-03-19 15:48:35.5021|DEBUG|OnDoc| +2026-03-19 15:48:35.5117|DEBUG|OnDoc| +2026-03-19 15:48:35.5117|DEBUG|OnDoc| +2026-03-19 15:48:35.5117|DEBUG|OnDoc| +2026-03-19 15:48:35.5117|DEBUG|OnDoc| +2026-03-19 15:48:35.5666|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:48:35.5666|DEBUG|OnDoc| +2026-03-19 15:48:35.5731|DEBUG|OnDoc| +2026-03-19 15:48:35.5731|DEBUG|OnDoc| +2026-03-19 15:48:35.5731|DEBUG|OnDoc| +2026-03-19 15:48:35.5731|DEBUG|OnDoc| +2026-03-19 15:48:35.5731|DEBUG|OnDoc| +2026-03-19 15:48:35.5731|DEBUG|OnDoc| +2026-03-19 15:48:35.5731|DEBUG|OnDoc| +2026-03-19 15:48:35.5877|DEBUG|OnDoc|Generate_Word +2026-03-19 15:48:35.5877|DEBUG|OnDoc|Word2013 +2026-03-19 15:48:35.5877|DEBUG|OnDoc|Word2013 +2026-03-19 15:49:58.9796|DEBUG|OnDoc|Generate_Word +2026-03-19 15:49:58.9796|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018745 +2026-03-19 15:49:58.9796|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:49:58.9796|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:49:58.9929|DEBUG|OnDoc| +2026-03-19 15:49:58.9929|DEBUG|OnDoc| +2026-03-19 15:49:58.9929|DEBUG|OnDoc| +2026-03-19 15:49:58.9929|DEBUG|OnDoc| +2026-03-19 15:49:58.9929|DEBUG|OnDoc| +2026-03-19 15:49:58.9929|DEBUG|OnDoc| +2026-03-19 15:50:44.0588|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 15:50:44.2228|INFO|APIDocLog|Start CreateDoc +2026-03-19 15:50:44.3006|INFO|APIDocLog|Input JSON +2026-03-19 15:50:44.3088|DEBUG|OnDoc|Start GenDoc +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3088|DEBUG|OnDoc| +2026-03-19 15:50:44.3210|DEBUG|OnDoc| +2026-03-19 15:50:44.3210|DEBUG|OnDoc| +2026-03-19 15:50:44.3210|DEBUG|OnDoc| +2026-03-19 15:50:44.3210|DEBUG|OnDoc| +2026-03-19 15:50:44.3210|DEBUG|OnDoc| +2026-03-19 15:50:44.3210|DEBUG|OnDoc| +2026-03-19 15:50:44.3210|DEBUG|OnDoc| +2026-03-19 15:50:44.3210|DEBUG|OnDoc| +2026-03-19 15:50:44.3443|DEBUG|OnDoc| +2026-03-19 15:50:44.3443|DEBUG|OnDoc| +2026-03-19 15:50:44.3556|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 15:50:44.4030|DEBUG|OnDoc| +2026-03-19 15:50:44.4030|DEBUG|OnDoc| +2026-03-19 15:50:44.4745|DEBUG|OnDoc| +2026-03-19 15:50:44.4745|DEBUG|OnDoc| +2026-03-19 15:50:44.4873|DEBUG|OnDoc| +2026-03-19 15:50:44.4873|DEBUG|OnDoc| +2026-03-19 15:50:44.4873|DEBUG|OnDoc| +2026-03-19 15:50:44.4873|DEBUG|OnDoc| +2026-03-19 15:50:44.5517|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 15:50:44.5517|DEBUG|OnDoc| +2026-03-19 15:50:44.5584|DEBUG|OnDoc| +2026-03-19 15:50:44.5584|DEBUG|OnDoc| +2026-03-19 15:50:44.5584|DEBUG|OnDoc| +2026-03-19 15:50:44.5584|DEBUG|OnDoc| +2026-03-19 15:50:44.5584|DEBUG|OnDoc| +2026-03-19 15:50:44.5584|DEBUG|OnDoc| +2026-03-19 15:50:44.5710|DEBUG|OnDoc| +2026-03-19 15:50:44.5710|DEBUG|OnDoc|Generate_Word +2026-03-19 15:50:44.5710|DEBUG|OnDoc|Word2013 +2026-03-19 15:50:44.5710|DEBUG|OnDoc|Word2013 +2026-03-19 15:50:48.1972|DEBUG|OnDoc| +2026-03-19 15:50:48.2334|DEBUG|OnDoc| +2026-03-19 15:50:48.3863|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 15:50:48.3863|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 15:50:48.5607|DEBUG|OnDoc| +2026-03-19 15:50:48.5607|DEBUG|OnDoc| +2026-03-19 15:50:48.7223|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 15:50:48.7313|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 15:50:51.6590|DEBUG|OnDoc|Generate_Word +2026-03-19 15:50:51.6716|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018750 +2026-03-19 15:50:51.6716|INFO|DocLog|Dokument über API erstellt +2026-03-19 15:50:51.6716|INFO|APIDocLog|Dokument return to sender +2026-03-19 15:50:51.6716|DEBUG|OnDoc| +2026-03-19 15:50:51.6864|DEBUG|OnDoc| +2026-03-19 15:50:51.6864|DEBUG|OnDoc| +2026-03-19 15:50:51.6864|DEBUG|OnDoc| +2026-03-19 15:50:51.6864|DEBUG|OnDoc| +2026-03-19 15:50:51.6864|DEBUG|OnDoc| +2026-03-19 16:05:11.5275|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:05:11.6740|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:05:11.7497|INFO|APIDocLog|Input JSON +2026-03-19 16:05:11.7592|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7592|DEBUG|OnDoc| +2026-03-19 16:05:11.7747|DEBUG|OnDoc| +2026-03-19 16:05:11.7747|DEBUG|OnDoc| +2026-03-19 16:05:11.7747|DEBUG|OnDoc| +2026-03-19 16:05:11.7747|DEBUG|OnDoc| +2026-03-19 16:05:11.7976|DEBUG|OnDoc| +2026-03-19 16:05:11.7976|DEBUG|OnDoc| +2026-03-19 16:05:11.8065|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:05:11.8506|DEBUG|OnDoc| +2026-03-19 16:05:11.8531|DEBUG|OnDoc| +2026-03-19 16:05:11.9225|DEBUG|OnDoc| +2026-03-19 16:05:11.9225|DEBUG|OnDoc| +2026-03-19 16:05:11.9344|DEBUG|OnDoc| +2026-03-19 16:05:11.9344|DEBUG|OnDoc| +2026-03-19 16:05:11.9344|DEBUG|OnDoc| +2026-03-19 16:05:11.9344|DEBUG|OnDoc| +2026-03-19 16:05:11.9977|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:05:11.9977|DEBUG|OnDoc| +2026-03-19 16:05:11.9977|DEBUG|OnDoc| +2026-03-19 16:05:11.9977|DEBUG|OnDoc| +2026-03-19 16:05:11.9977|DEBUG|OnDoc| +2026-03-19 16:05:11.9977|DEBUG|OnDoc| +2026-03-19 16:05:12.0125|DEBUG|OnDoc| +2026-03-19 16:05:12.0125|DEBUG|OnDoc| +2026-03-19 16:05:12.0125|DEBUG|OnDoc| +2026-03-19 16:05:12.0125|DEBUG|OnDoc|Generate_Word +2026-03-19 16:05:12.0268|DEBUG|OnDoc|Word2013 +2026-03-19 16:05:12.0268|DEBUG|OnDoc|Word2013 +2026-03-19 16:14:19.3463|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 16:14:32.6472|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:14:32.8212|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:14:32.9026|INFO|APIDocLog|Input JSON +2026-03-19 16:14:32.9026|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9151|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9312|DEBUG|OnDoc| +2026-03-19 16:14:32.9584|DEBUG|OnDoc| +2026-03-19 16:14:32.9619|DEBUG|OnDoc| +2026-03-19 16:14:32.9619|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:14:33.0160|DEBUG|OnDoc| +2026-03-19 16:14:33.0160|DEBUG|OnDoc| +2026-03-19 16:14:33.0889|DEBUG|OnDoc| +2026-03-19 16:14:33.0889|DEBUG|OnDoc| +2026-03-19 16:14:33.1095|DEBUG|OnDoc| +2026-03-19 16:14:33.1095|DEBUG|OnDoc| +2026-03-19 16:14:33.1095|DEBUG|OnDoc| +2026-03-19 16:14:33.1095|DEBUG|OnDoc| +2026-03-19 16:14:33.1813|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:14:33.1813|DEBUG|OnDoc| +2026-03-19 16:14:33.1813|DEBUG|OnDoc| +2026-03-19 16:14:33.1813|DEBUG|OnDoc| +2026-03-19 16:14:33.1813|DEBUG|OnDoc| +2026-03-19 16:14:33.1813|DEBUG|OnDoc| +2026-03-19 16:14:33.2049|DEBUG|OnDoc| +2026-03-19 16:14:33.2049|DEBUG|OnDoc| +2026-03-19 16:14:33.2143|DEBUG|OnDoc| +2026-03-19 16:14:33.2143|DEBUG|OnDoc|Generate_Word +2026-03-19 16:14:33.2143|DEBUG|OnDoc|Word2013 +2026-03-19 16:14:33.2284|DEBUG|OnDoc|Word2013 +2026-03-19 16:15:55.8035|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 16:15:59.5449|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:15:59.7157|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:15:59.7969|INFO|APIDocLog|Input JSON +2026-03-19 16:15:59.8068|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8068|DEBUG|OnDoc| +2026-03-19 16:15:59.8296|DEBUG|OnDoc| +2026-03-19 16:15:59.8296|DEBUG|OnDoc| +2026-03-19 16:15:59.8389|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:15:59.8839|DEBUG|OnDoc| +2026-03-19 16:15:59.8839|DEBUG|OnDoc| +2026-03-19 16:15:59.9652|DEBUG|OnDoc| +2026-03-19 16:15:59.9652|DEBUG|OnDoc| +2026-03-19 16:15:59.9652|DEBUG|OnDoc| +2026-03-19 16:15:59.9776|DEBUG|OnDoc| +2026-03-19 16:15:59.9776|DEBUG|OnDoc| +2026-03-19 16:15:59.9776|DEBUG|OnDoc| +2026-03-19 16:16:00.0487|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:16:00.0487|DEBUG|OnDoc| +2026-03-19 16:16:00.0588|DEBUG|OnDoc| +2026-03-19 16:16:00.0588|DEBUG|OnDoc| +2026-03-19 16:16:00.0588|DEBUG|OnDoc| +2026-03-19 16:16:00.0588|DEBUG|OnDoc| +2026-03-19 16:16:00.0588|DEBUG|OnDoc| +2026-03-19 16:16:00.0588|DEBUG|OnDoc| +2026-03-19 16:16:00.0588|DEBUG|OnDoc| +2026-03-19 16:16:00.0588|DEBUG|OnDoc|Generate_Word +2026-03-19 16:16:00.0764|DEBUG|OnDoc|Word2013 +2026-03-19 16:16:00.0764|DEBUG|OnDoc|Word2013 +2026-03-19 16:16:14.4528|DEBUG|OnDoc|Generate_Word +2026-03-19 16:16:14.4947|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018784 +2026-03-19 16:16:14.4947|INFO|DocLog|Dokument über API erstellt +2026-03-19 16:16:14.4947|INFO|APIDocLog|Dokument return to sender +2026-03-19 16:16:14.4947|DEBUG|OnDoc| +2026-03-19 16:16:14.5182|DEBUG|OnDoc| +2026-03-19 16:16:14.5182|DEBUG|OnDoc| +2026-03-19 16:16:14.5182|DEBUG|OnDoc| +2026-03-19 16:16:14.5182|DEBUG|OnDoc| +2026-03-19 16:16:14.5182|DEBUG|OnDoc| +2026-03-19 16:16:23.2652|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:16:23.4362|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:16:23.5204|INFO|APIDocLog|Input JSON +2026-03-19 16:16:23.5311|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:16:23.5311|DEBUG|OnDoc| +2026-03-19 16:16:23.5311|DEBUG|OnDoc| +2026-03-19 16:16:23.5311|DEBUG|OnDoc| +2026-03-19 16:16:23.5311|DEBUG|OnDoc| +2026-03-19 16:16:23.5311|DEBUG|OnDoc| +2026-03-19 16:16:23.5311|DEBUG|OnDoc| +2026-03-19 16:16:23.5311|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5400|DEBUG|OnDoc| +2026-03-19 16:16:23.5556|DEBUG|OnDoc| +2026-03-19 16:16:23.5556|DEBUG|OnDoc| +2026-03-19 16:16:23.5556|DEBUG|OnDoc| +2026-03-19 16:16:23.5556|DEBUG|OnDoc| +2026-03-19 16:16:23.5556|DEBUG|OnDoc| +2026-03-19 16:16:23.5556|DEBUG|OnDoc| +2026-03-19 16:16:23.5556|DEBUG|OnDoc| +2026-03-19 16:16:23.5556|DEBUG|OnDoc| +2026-03-19 16:16:23.5556|DEBUG|OnDoc| +2026-03-19 16:16:23.5556|DEBUG|OnDoc| +2026-03-19 16:16:23.5749|DEBUG|OnDoc| +2026-03-19 16:16:23.5749|DEBUG|OnDoc| +2026-03-19 16:16:23.5886|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:16:23.6450|DEBUG|OnDoc| +2026-03-19 16:16:23.6450|DEBUG|OnDoc| +2026-03-19 16:16:23.7257|DEBUG|OnDoc| +2026-03-19 16:16:23.7257|DEBUG|OnDoc| +2026-03-19 16:16:23.7371|DEBUG|OnDoc| +2026-03-19 16:16:23.7371|DEBUG|OnDoc| +2026-03-19 16:16:23.7371|DEBUG|OnDoc| +2026-03-19 16:16:23.7371|DEBUG|OnDoc| +2026-03-19 16:16:23.8267|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:16:23.8267|DEBUG|OnDoc| +2026-03-19 16:16:23.8427|DEBUG|OnDoc| +2026-03-19 16:16:23.8427|DEBUG|OnDoc| +2026-03-19 16:16:23.8427|DEBUG|OnDoc| +2026-03-19 16:16:23.8427|DEBUG|OnDoc| +2026-03-19 16:16:23.8540|DEBUG|OnDoc| +2026-03-19 16:16:23.8540|DEBUG|OnDoc| +2026-03-19 16:16:23.8540|DEBUG|OnDoc| +2026-03-19 16:16:23.8540|DEBUG|OnDoc|Generate_Word +2026-03-19 16:16:23.8692|DEBUG|OnDoc|Word2013 +2026-03-19 16:16:23.8692|DEBUG|OnDoc|Word2013 +2026-03-19 16:17:49.2287|DEBUG|OnDoc|Generate_Word +2026-03-19 16:17:49.2671|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018792 +2026-03-19 16:17:49.2671|INFO|DocLog|Dokument über API erstellt +2026-03-19 16:17:49.2671|INFO|APIDocLog|Dokument return to sender +2026-03-19 16:17:49.2671|DEBUG|OnDoc| +2026-03-19 16:17:49.2822|DEBUG|OnDoc| +2026-03-19 16:17:49.2822|DEBUG|OnDoc| +2026-03-19 16:17:49.2822|DEBUG|OnDoc| +2026-03-19 16:17:49.2822|DEBUG|OnDoc| +2026-03-19 16:17:49.2822|DEBUG|OnDoc| +2026-03-19 16:17:58.2341|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:17:58.4109|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:17:58.4931|INFO|APIDocLog|Input JSON +2026-03-19 16:17:58.4931|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:17:58.4931|DEBUG|OnDoc| +2026-03-19 16:17:58.4931|DEBUG|OnDoc| +2026-03-19 16:17:58.4931|DEBUG|OnDoc| +2026-03-19 16:17:58.4931|DEBUG|OnDoc| +2026-03-19 16:17:58.4931|DEBUG|OnDoc| +2026-03-19 16:17:58.4931|DEBUG|OnDoc| +2026-03-19 16:17:58.4931|DEBUG|OnDoc| +2026-03-19 16:17:58.4931|DEBUG|OnDoc| +2026-03-19 16:17:58.4931|DEBUG|OnDoc| +2026-03-19 16:17:58.4931|DEBUG|OnDoc| +2026-03-19 16:17:58.4931|DEBUG|OnDoc| +2026-03-19 16:17:58.4931|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5088|DEBUG|OnDoc| +2026-03-19 16:17:58.5252|DEBUG|OnDoc| +2026-03-19 16:17:58.5252|DEBUG|OnDoc| +2026-03-19 16:17:58.5252|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:17:58.5775|DEBUG|OnDoc| +2026-03-19 16:17:58.5775|DEBUG|OnDoc| +2026-03-19 16:17:58.6577|DEBUG|OnDoc| +2026-03-19 16:17:58.6577|DEBUG|OnDoc| +2026-03-19 16:17:58.6669|DEBUG|OnDoc| +2026-03-19 16:17:58.6669|DEBUG|OnDoc| +2026-03-19 16:17:58.6669|DEBUG|OnDoc| +2026-03-19 16:17:58.6669|DEBUG|OnDoc| +2026-03-19 16:17:58.7422|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:17:58.7432|DEBUG|OnDoc| +2026-03-19 16:17:58.7432|DEBUG|OnDoc| +2026-03-19 16:17:58.7432|DEBUG|OnDoc| +2026-03-19 16:17:58.7432|DEBUG|OnDoc| +2026-03-19 16:17:58.7432|DEBUG|OnDoc| +2026-03-19 16:17:58.7432|DEBUG|OnDoc| +2026-03-19 16:17:58.7432|DEBUG|OnDoc| +2026-03-19 16:17:58.7600|DEBUG|OnDoc| +2026-03-19 16:17:58.7600|DEBUG|OnDoc|Generate_Word +2026-03-19 16:17:58.7600|DEBUG|OnDoc|Word2013 +2026-03-19 16:17:58.7600|DEBUG|OnDoc|Word2013 +2026-03-19 16:18:07.5238|DEBUG|OnDoc|Generate_Word +2026-03-19 16:18:07.5636|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018800 +2026-03-19 16:18:07.5636|INFO|DocLog|Dokument über API erstellt +2026-03-19 16:18:07.5636|INFO|APIDocLog|Dokument return to sender +2026-03-19 16:18:07.5636|DEBUG|OnDoc| +2026-03-19 16:18:07.5819|DEBUG|OnDoc| +2026-03-19 16:18:07.5819|DEBUG|OnDoc| +2026-03-19 16:18:07.5819|DEBUG|OnDoc| +2026-03-19 16:18:07.5819|DEBUG|OnDoc| +2026-03-19 16:18:07.5819|DEBUG|OnDoc| +2026-03-19 16:18:10.9417|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:18:11.1145|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:18:11.1963|INFO|APIDocLog|Input JSON +2026-03-19 16:18:11.1963|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.1963|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2118|DEBUG|OnDoc| +2026-03-19 16:18:11.2317|DEBUG|OnDoc| +2026-03-19 16:18:11.2317|DEBUG|OnDoc| +2026-03-19 16:18:11.2317|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:18:11.2870|DEBUG|OnDoc| +2026-03-19 16:18:11.2896|DEBUG|OnDoc| +2026-03-19 16:18:11.3687|DEBUG|OnDoc| +2026-03-19 16:18:11.3687|DEBUG|OnDoc| +2026-03-19 16:18:11.3687|DEBUG|OnDoc| +2026-03-19 16:18:11.3687|DEBUG|OnDoc| +2026-03-19 16:18:11.3687|DEBUG|OnDoc| +2026-03-19 16:18:11.3687|DEBUG|OnDoc| +2026-03-19 16:18:11.4537|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:18:11.4537|DEBUG|OnDoc| +2026-03-19 16:18:11.4537|DEBUG|OnDoc| +2026-03-19 16:18:11.4537|DEBUG|OnDoc| +2026-03-19 16:18:11.4537|DEBUG|OnDoc| +2026-03-19 16:18:11.4537|DEBUG|OnDoc| +2026-03-19 16:18:11.4647|DEBUG|OnDoc| +2026-03-19 16:18:11.4647|DEBUG|OnDoc| +2026-03-19 16:18:11.4647|DEBUG|OnDoc| +2026-03-19 16:18:11.4647|DEBUG|OnDoc|Generate_Word +2026-03-19 16:18:11.4776|DEBUG|OnDoc|Word2013 +2026-03-19 16:18:11.4776|DEBUG|OnDoc|Word2013 +2026-03-19 16:18:33.9830|DEBUG|OnDoc|Generate_Word +2026-03-19 16:18:33.9971|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018811 +2026-03-19 16:18:33.9971|INFO|DocLog|Dokument über API erstellt +2026-03-19 16:18:33.9971|INFO|APIDocLog|Dokument return to sender +2026-03-19 16:18:33.9971|DEBUG|OnDoc| +2026-03-19 16:18:34.0137|DEBUG|OnDoc| +2026-03-19 16:18:34.0137|DEBUG|OnDoc| +2026-03-19 16:18:34.0137|DEBUG|OnDoc| +2026-03-19 16:18:34.0137|DEBUG|OnDoc| +2026-03-19 16:18:34.0137|DEBUG|OnDoc| +2026-03-19 16:18:34.1116|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:18:34.2492|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:18:34.3273|INFO|APIDocLog|Input JSON +2026-03-19 16:18:34.3389|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3389|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3528|DEBUG|OnDoc| +2026-03-19 16:18:34.3739|DEBUG|OnDoc| +2026-03-19 16:18:34.3739|DEBUG|OnDoc| +2026-03-19 16:18:34.3849|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:18:34.4301|DEBUG|OnDoc| +2026-03-19 16:18:34.4301|DEBUG|OnDoc| +2026-03-19 16:18:34.5094|DEBUG|OnDoc| +2026-03-19 16:18:34.5094|DEBUG|OnDoc| +2026-03-19 16:18:34.5094|DEBUG|OnDoc| +2026-03-19 16:18:34.5094|DEBUG|OnDoc| +2026-03-19 16:18:34.5256|DEBUG|OnDoc| +2026-03-19 16:18:34.5256|DEBUG|OnDoc| +2026-03-19 16:18:34.6006|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:18:34.6031|DEBUG|OnDoc| +2026-03-19 16:18:34.6031|DEBUG|OnDoc| +2026-03-19 16:18:34.6031|DEBUG|OnDoc| +2026-03-19 16:18:34.6031|DEBUG|OnDoc| +2026-03-19 16:18:34.6031|DEBUG|OnDoc| +2026-03-19 16:18:34.6189|DEBUG|OnDoc| +2026-03-19 16:18:34.6189|DEBUG|OnDoc| +2026-03-19 16:18:34.6189|DEBUG|OnDoc| +2026-03-19 16:18:34.6189|DEBUG|OnDoc|Generate_Word +2026-03-19 16:18:34.6348|DEBUG|OnDoc|Word2013 +2026-03-19 16:18:34.6348|DEBUG|OnDoc|Word2013 +2026-03-19 16:18:42.8294|DEBUG|OnDoc|Generate_Word +2026-03-19 16:18:42.8449|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018826 +2026-03-19 16:18:42.8449|INFO|DocLog|Dokument über API erstellt +2026-03-19 16:18:42.8449|INFO|APIDocLog|Dokument return to sender +2026-03-19 16:18:42.8449|DEBUG|OnDoc| +2026-03-19 16:18:42.8632|DEBUG|OnDoc| +2026-03-19 16:18:42.8632|DEBUG|OnDoc| +2026-03-19 16:18:42.8632|DEBUG|OnDoc| +2026-03-19 16:18:42.8632|DEBUG|OnDoc| +2026-03-19 16:18:42.8632|DEBUG|OnDoc| +2026-03-19 16:18:45.9734|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:18:46.1452|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:18:46.2230|INFO|APIDocLog|Input JSON +2026-03-19 16:18:46.2330|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2330|DEBUG|OnDoc| +2026-03-19 16:18:46.2426|DEBUG|OnDoc| +2026-03-19 16:18:46.2426|DEBUG|OnDoc| +2026-03-19 16:18:46.2426|DEBUG|OnDoc| +2026-03-19 16:18:46.2426|DEBUG|OnDoc| +2026-03-19 16:18:46.2426|DEBUG|OnDoc| +2026-03-19 16:18:46.2426|DEBUG|OnDoc| +2026-03-19 16:18:46.2426|DEBUG|OnDoc| +2026-03-19 16:18:46.2426|DEBUG|OnDoc| +2026-03-19 16:18:46.2426|DEBUG|OnDoc| +2026-03-19 16:18:46.2426|DEBUG|OnDoc| +2026-03-19 16:18:46.2426|DEBUG|OnDoc| +2026-03-19 16:18:46.2609|DEBUG|OnDoc| +2026-03-19 16:18:46.2609|DEBUG|OnDoc| +2026-03-19 16:18:46.2609|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:18:46.3197|DEBUG|OnDoc| +2026-03-19 16:18:46.3227|DEBUG|OnDoc| +2026-03-19 16:18:46.4020|DEBUG|OnDoc| +2026-03-19 16:18:46.4020|DEBUG|OnDoc| +2026-03-19 16:18:46.4020|DEBUG|OnDoc| +2026-03-19 16:18:46.4020|DEBUG|OnDoc| +2026-03-19 16:18:46.4020|DEBUG|OnDoc| +2026-03-19 16:18:46.4151|DEBUG|OnDoc| +2026-03-19 16:18:46.4888|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:18:46.4888|DEBUG|OnDoc| +2026-03-19 16:18:46.4943|DEBUG|OnDoc| +2026-03-19 16:18:46.4943|DEBUG|OnDoc| +2026-03-19 16:18:46.4943|DEBUG|OnDoc| +2026-03-19 16:18:46.4943|DEBUG|OnDoc| +2026-03-19 16:18:46.4943|DEBUG|OnDoc| +2026-03-19 16:18:46.4943|DEBUG|OnDoc| +2026-03-19 16:18:46.4943|DEBUG|OnDoc| +2026-03-19 16:18:46.4943|DEBUG|OnDoc|Generate_Word +2026-03-19 16:18:46.5137|DEBUG|OnDoc|Word2013 +2026-03-19 16:18:46.5137|DEBUG|OnDoc|Word2013 +2026-03-19 16:20:09.0902|ERROR|APIDocLog|ONDOC-ERR-CreateDoc +2026-03-19 16:20:18.8768|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:20:19.0487|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:20:19.1338|INFO|APIDocLog|Input JSON +2026-03-19 16:20:19.1338|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:20:19.1338|DEBUG|OnDoc| +2026-03-19 16:20:19.1338|DEBUG|OnDoc| +2026-03-19 16:20:19.1338|DEBUG|OnDoc| +2026-03-19 16:20:19.1338|DEBUG|OnDoc| +2026-03-19 16:20:19.1338|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1496|DEBUG|OnDoc| +2026-03-19 16:20:19.1660|DEBUG|OnDoc| +2026-03-19 16:20:19.1660|DEBUG|OnDoc| +2026-03-19 16:20:19.1660|DEBUG|OnDoc| +2026-03-19 16:20:19.1660|DEBUG|OnDoc| +2026-03-19 16:20:19.1660|DEBUG|OnDoc| +2026-03-19 16:20:19.1660|DEBUG|OnDoc| +2026-03-19 16:20:19.1660|DEBUG|OnDoc| +2026-03-19 16:20:19.1660|DEBUG|OnDoc| +2026-03-19 16:20:19.1660|DEBUG|OnDoc| +2026-03-19 16:20:19.1845|DEBUG|OnDoc| +2026-03-19 16:20:19.1845|DEBUG|OnDoc| +2026-03-19 16:20:19.1960|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:20:19.2426|DEBUG|OnDoc| +2026-03-19 16:20:19.2426|DEBUG|OnDoc| +2026-03-19 16:20:19.3267|DEBUG|OnDoc| +2026-03-19 16:20:19.3267|DEBUG|OnDoc| +2026-03-19 16:20:19.3467|DEBUG|OnDoc| +2026-03-19 16:20:19.3467|DEBUG|OnDoc| +2026-03-19 16:20:19.3467|DEBUG|OnDoc| +2026-03-19 16:20:19.3467|DEBUG|OnDoc| +2026-03-19 16:20:19.4212|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:20:19.4212|DEBUG|OnDoc| +2026-03-19 16:20:19.4326|DEBUG|OnDoc| +2026-03-19 16:20:19.4326|DEBUG|OnDoc| +2026-03-19 16:20:19.4326|DEBUG|OnDoc| +2026-03-19 16:20:19.4326|DEBUG|OnDoc| +2026-03-19 16:20:19.4326|DEBUG|OnDoc| +2026-03-19 16:20:19.4326|DEBUG|OnDoc| +2026-03-19 16:20:19.4513|DEBUG|OnDoc| +2026-03-19 16:20:19.4513|DEBUG|OnDoc|Generate_Word +2026-03-19 16:20:19.4623|DEBUG|OnDoc|Word2013 +2026-03-19 16:20:19.4623|DEBUG|OnDoc|Word2013 +2026-03-19 16:21:40.1058|DEBUG|OnDoc|Generate_Word +2026-03-19 16:21:40.1470|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018842 +2026-03-19 16:21:40.1470|INFO|DocLog|Dokument über API erstellt +2026-03-19 16:21:40.1500|INFO|APIDocLog|Dokument return to sender +2026-03-19 16:21:40.1500|DEBUG|OnDoc| +2026-03-19 16:21:40.1660|DEBUG|OnDoc| +2026-03-19 16:21:40.1660|DEBUG|OnDoc| +2026-03-19 16:21:40.1660|DEBUG|OnDoc| +2026-03-19 16:21:40.1660|DEBUG|OnDoc| +2026-03-19 16:21:40.1660|DEBUG|OnDoc| +2026-03-19 16:22:04.0744|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:22:04.2481|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:22:04.3314|INFO|APIDocLog|Input JSON +2026-03-19 16:22:04.3423|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3423|DEBUG|OnDoc| +2026-03-19 16:22:04.3529|DEBUG|OnDoc| +2026-03-19 16:22:04.3529|DEBUG|OnDoc| +2026-03-19 16:22:04.3529|DEBUG|OnDoc| +2026-03-19 16:22:04.3529|DEBUG|OnDoc| +2026-03-19 16:22:04.3529|DEBUG|OnDoc| +2026-03-19 16:22:04.3529|DEBUG|OnDoc| +2026-03-19 16:22:04.3529|DEBUG|OnDoc| +2026-03-19 16:22:04.3529|DEBUG|OnDoc| +2026-03-19 16:22:04.3529|DEBUG|OnDoc| +2026-03-19 16:22:04.3529|DEBUG|OnDoc| +2026-03-19 16:22:04.3529|DEBUG|OnDoc| +2026-03-19 16:22:04.3529|DEBUG|OnDoc| +2026-03-19 16:22:04.3529|DEBUG|OnDoc| +2026-03-19 16:22:04.3690|DEBUG|OnDoc| +2026-03-19 16:22:04.3690|DEBUG|OnDoc| +2026-03-19 16:22:04.3690|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:22:04.4234|DEBUG|OnDoc| +2026-03-19 16:22:04.4234|DEBUG|OnDoc| +2026-03-19 16:22:04.5070|DEBUG|OnDoc| +2026-03-19 16:22:04.5070|DEBUG|OnDoc| +2026-03-19 16:22:04.5165|DEBUG|OnDoc| +2026-03-19 16:22:04.5165|DEBUG|OnDoc| +2026-03-19 16:22:04.5165|DEBUG|OnDoc| +2026-03-19 16:22:04.5165|DEBUG|OnDoc| +2026-03-19 16:22:04.5924|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:22:04.5924|DEBUG|OnDoc| +2026-03-19 16:22:04.5924|DEBUG|OnDoc| +2026-03-19 16:22:04.5924|DEBUG|OnDoc| +2026-03-19 16:22:04.5924|DEBUG|OnDoc| +2026-03-19 16:22:04.5924|DEBUG|OnDoc| +2026-03-19 16:22:04.6053|DEBUG|OnDoc| +2026-03-19 16:22:04.6053|DEBUG|OnDoc| +2026-03-19 16:22:04.6053|DEBUG|OnDoc| +2026-03-19 16:22:04.6053|DEBUG|OnDoc|Generate_Word +2026-03-19 16:22:04.6177|DEBUG|OnDoc|Word2013 +2026-03-19 16:22:04.6177|DEBUG|OnDoc|Word2013 +2026-03-19 16:24:22.0838|DEBUG|OnDoc|Generate_Word +2026-03-19 16:24:22.1254|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018858 +2026-03-19 16:24:22.1254|INFO|DocLog|Dokument über API erstellt +2026-03-19 16:24:22.1254|INFO|APIDocLog|Dokument return to sender +2026-03-19 16:24:22.1254|DEBUG|OnDoc| +2026-03-19 16:24:22.1474|DEBUG|OnDoc| +2026-03-19 16:24:22.1474|DEBUG|OnDoc| +2026-03-19 16:24:22.1494|DEBUG|OnDoc| +2026-03-19 16:24:22.1494|DEBUG|OnDoc| +2026-03-19 16:24:22.1494|DEBUG|OnDoc| +2026-03-19 16:24:30.0719|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:24:30.2564|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:24:30.3377|INFO|APIDocLog|Input JSON +2026-03-19 16:24:30.3377|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:24:30.3377|DEBUG|OnDoc| +2026-03-19 16:24:30.3377|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3521|DEBUG|OnDoc| +2026-03-19 16:24:30.3678|DEBUG|OnDoc| +2026-03-19 16:24:30.3678|DEBUG|OnDoc| +2026-03-19 16:24:30.3678|DEBUG|OnDoc| +2026-03-19 16:24:30.3678|DEBUG|OnDoc| +2026-03-19 16:24:30.3678|DEBUG|OnDoc| +2026-03-19 16:24:30.3678|DEBUG|OnDoc| +2026-03-19 16:24:30.3678|DEBUG|OnDoc| +2026-03-19 16:24:30.3678|DEBUG|OnDoc| +2026-03-19 16:24:30.3678|DEBUG|OnDoc| +2026-03-19 16:24:30.3678|DEBUG|OnDoc| +2026-03-19 16:24:30.3678|DEBUG|OnDoc| +2026-03-19 16:24:30.3678|DEBUG|OnDoc| +2026-03-19 16:24:30.3876|DEBUG|OnDoc| +2026-03-19 16:24:30.3876|DEBUG|OnDoc| +2026-03-19 16:24:30.4007|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:24:30.4473|DEBUG|OnDoc| +2026-03-19 16:24:30.4473|DEBUG|OnDoc| +2026-03-19 16:24:30.5327|DEBUG|OnDoc| +2026-03-19 16:24:30.5327|DEBUG|OnDoc| +2026-03-19 16:24:30.5453|DEBUG|OnDoc| +2026-03-19 16:24:30.5453|DEBUG|OnDoc| +2026-03-19 16:24:30.5453|DEBUG|OnDoc| +2026-03-19 16:24:30.5453|DEBUG|OnDoc| +2026-03-19 16:24:30.6231|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:24:30.6231|DEBUG|OnDoc| +2026-03-19 16:24:30.6231|DEBUG|OnDoc| +2026-03-19 16:24:30.6338|DEBUG|OnDoc| +2026-03-19 16:24:30.6338|DEBUG|OnDoc| +2026-03-19 16:24:30.6338|DEBUG|OnDoc| +2026-03-19 16:24:30.6338|DEBUG|OnDoc| +2026-03-19 16:24:30.6509|DEBUG|OnDoc| +2026-03-19 16:24:30.6509|DEBUG|OnDoc| +2026-03-19 16:24:30.6509|DEBUG|OnDoc|Generate_Word +2026-03-19 16:24:30.6657|DEBUG|OnDoc|Word2013 +2026-03-19 16:24:30.6657|DEBUG|OnDoc|Word2013 +2026-03-19 16:24:39.1707|DEBUG|OnDoc|Generate_Word +2026-03-19 16:24:39.2117|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018863 +2026-03-19 16:24:39.2117|INFO|DocLog|Dokument über API erstellt +2026-03-19 16:24:39.2117|INFO|APIDocLog|Dokument return to sender +2026-03-19 16:24:39.2117|DEBUG|OnDoc| +2026-03-19 16:24:39.2117|DEBUG|OnDoc| +2026-03-19 16:24:39.2283|DEBUG|OnDoc| +2026-03-19 16:24:39.2283|DEBUG|OnDoc| +2026-03-19 16:24:39.2283|DEBUG|OnDoc| +2026-03-19 16:24:39.2283|DEBUG|OnDoc| +2026-03-19 16:25:03.9632|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:25:04.1457|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:25:04.2330|INFO|APIDocLog|Input JSON +2026-03-19 16:25:04.2427|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2427|DEBUG|OnDoc| +2026-03-19 16:25:04.2655|DEBUG|OnDoc| +2026-03-19 16:25:04.2655|DEBUG|OnDoc| +2026-03-19 16:25:04.2746|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:25:04.3186|DEBUG|OnDoc| +2026-03-19 16:25:04.3217|DEBUG|OnDoc| +2026-03-19 16:25:04.4033|DEBUG|OnDoc| +2026-03-19 16:25:04.4033|DEBUG|OnDoc| +2026-03-19 16:25:04.4164|DEBUG|OnDoc| +2026-03-19 16:25:04.4164|DEBUG|OnDoc| +2026-03-19 16:25:04.4164|DEBUG|OnDoc| +2026-03-19 16:25:04.4164|DEBUG|OnDoc| +2026-03-19 16:25:04.4941|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:25:04.4941|DEBUG|OnDoc| +2026-03-19 16:25:04.4941|DEBUG|OnDoc| +2026-03-19 16:25:04.4941|DEBUG|OnDoc| +2026-03-19 16:25:04.4941|DEBUG|OnDoc| +2026-03-19 16:25:04.4941|DEBUG|OnDoc| +2026-03-19 16:25:04.5147|DEBUG|OnDoc| +2026-03-19 16:25:04.5147|DEBUG|OnDoc| +2026-03-19 16:25:04.5147|DEBUG|OnDoc| +2026-03-19 16:25:04.5147|DEBUG|OnDoc|Generate_Word +2026-03-19 16:25:04.5269|DEBUG|OnDoc|Word2013 +2026-03-19 16:25:04.5269|DEBUG|OnDoc|Word2013 +2026-03-19 16:25:10.1532|DEBUG|OnDoc|Generate_Word +2026-03-19 16:25:10.1914|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018879 +2026-03-19 16:25:10.1914|INFO|DocLog|Dokument über API erstellt +2026-03-19 16:25:10.1914|INFO|APIDocLog|Dokument return to sender +2026-03-19 16:25:10.1914|DEBUG|OnDoc| +2026-03-19 16:25:10.2103|DEBUG|OnDoc| +2026-03-19 16:25:10.2118|DEBUG|OnDoc| +2026-03-19 16:25:10.2118|DEBUG|OnDoc| +2026-03-19 16:25:10.2118|DEBUG|OnDoc| +2026-03-19 16:25:10.2118|DEBUG|OnDoc| +2026-03-19 16:25:41.1118|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:25:41.3035|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:25:41.3899|INFO|APIDocLog|Input JSON +2026-03-19 16:25:41.4014|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4014|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4147|DEBUG|OnDoc| +2026-03-19 16:25:41.4380|DEBUG|OnDoc| +2026-03-19 16:25:41.4380|DEBUG|OnDoc| +2026-03-19 16:25:41.4478|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:25:41.4932|DEBUG|OnDoc| +2026-03-19 16:25:41.4932|DEBUG|OnDoc| +2026-03-19 16:25:41.5834|DEBUG|OnDoc| +2026-03-19 16:25:41.5834|DEBUG|OnDoc| +2026-03-19 16:25:41.6027|DEBUG|OnDoc| +2026-03-19 16:25:41.6027|DEBUG|OnDoc| +2026-03-19 16:25:41.6027|DEBUG|OnDoc| +2026-03-19 16:25:41.6027|DEBUG|OnDoc| +2026-03-19 16:25:41.6878|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:25:41.6878|DEBUG|OnDoc| +2026-03-19 16:25:41.6968|DEBUG|OnDoc| +2026-03-19 16:25:41.6968|DEBUG|OnDoc| +2026-03-19 16:25:41.6968|DEBUG|OnDoc| +2026-03-19 16:25:41.6968|DEBUG|OnDoc| +2026-03-19 16:25:41.6968|DEBUG|OnDoc| +2026-03-19 16:25:41.6968|DEBUG|OnDoc| +2026-03-19 16:25:41.7134|DEBUG|OnDoc| +2026-03-19 16:25:41.7134|DEBUG|OnDoc|Generate_Word +2026-03-19 16:25:41.7134|DEBUG|OnDoc|Word2013 +2026-03-19 16:25:41.7134|DEBUG|OnDoc|Word2013 +2026-03-19 16:25:47.6210|DEBUG|OnDoc|Generate_Word +2026-03-19 16:25:47.6612|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018887 +2026-03-19 16:25:47.6612|INFO|DocLog|Dokument über API erstellt +2026-03-19 16:25:47.6612|INFO|APIDocLog|Dokument return to sender +2026-03-19 16:25:47.6612|DEBUG|OnDoc| +2026-03-19 16:25:47.6727|DEBUG|OnDoc| +2026-03-19 16:25:47.6727|DEBUG|OnDoc| +2026-03-19 16:25:47.6727|DEBUG|OnDoc| +2026-03-19 16:25:47.6727|DEBUG|OnDoc| +2026-03-19 16:25:47.6727|DEBUG|OnDoc| +2026-03-19 16:26:03.8596|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:26:04.0461|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:26:04.1340|INFO|APIDocLog|Input JSON +2026-03-19 16:26:04.1340|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:26:04.1340|DEBUG|OnDoc| +2026-03-19 16:26:04.1340|DEBUG|OnDoc| +2026-03-19 16:26:04.1340|DEBUG|OnDoc| +2026-03-19 16:26:04.1340|DEBUG|OnDoc| +2026-03-19 16:26:04.1340|DEBUG|OnDoc| +2026-03-19 16:26:04.1340|DEBUG|OnDoc| +2026-03-19 16:26:04.1340|DEBUG|OnDoc| +2026-03-19 16:26:04.1340|DEBUG|OnDoc| +2026-03-19 16:26:04.1340|DEBUG|OnDoc| +2026-03-19 16:26:04.1340|DEBUG|OnDoc| +2026-03-19 16:26:04.1340|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1489|DEBUG|OnDoc| +2026-03-19 16:26:04.1681|DEBUG|OnDoc| +2026-03-19 16:26:04.1681|DEBUG|OnDoc| +2026-03-19 16:26:04.1681|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:26:04.2225|DEBUG|OnDoc| +2026-03-19 16:26:04.2225|DEBUG|OnDoc| +2026-03-19 16:26:04.3089|DEBUG|OnDoc| +2026-03-19 16:26:04.3089|DEBUG|OnDoc| +2026-03-19 16:26:04.3089|DEBUG|OnDoc| +2026-03-19 16:26:04.3089|DEBUG|OnDoc| +2026-03-19 16:26:04.3089|DEBUG|OnDoc| +2026-03-19 16:26:04.3089|DEBUG|OnDoc| +2026-03-19 16:26:04.3940|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:26:04.3940|DEBUG|OnDoc| +2026-03-19 16:26:04.4013|DEBUG|OnDoc| +2026-03-19 16:26:04.4013|DEBUG|OnDoc| +2026-03-19 16:26:04.4013|DEBUG|OnDoc| +2026-03-19 16:26:04.4013|DEBUG|OnDoc| +2026-03-19 16:26:04.4013|DEBUG|OnDoc| +2026-03-19 16:26:04.4013|DEBUG|OnDoc| +2026-03-19 16:26:04.4013|DEBUG|OnDoc| +2026-03-19 16:26:04.4013|DEBUG|OnDoc|Generate_Word +2026-03-19 16:26:04.4191|DEBUG|OnDoc|Word2013 +2026-03-19 16:26:04.4191|DEBUG|OnDoc|Word2013 +2026-03-19 16:26:25.1073|DEBUG|OnDoc|Generate_Word +2026-03-19 16:26:25.1488|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018895 +2026-03-19 16:26:25.1498|INFO|DocLog|Dokument über API erstellt +2026-03-19 16:26:25.1498|INFO|APIDocLog|Dokument return to sender +2026-03-19 16:26:25.1498|DEBUG|OnDoc| +2026-03-19 16:26:25.1662|DEBUG|OnDoc| +2026-03-19 16:26:25.1662|DEBUG|OnDoc| +2026-03-19 16:26:25.1662|DEBUG|OnDoc| +2026-03-19 16:26:25.1662|DEBUG|OnDoc| +2026-03-19 16:26:25.1662|DEBUG|OnDoc| +2026-03-19 16:26:48.9879|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 16:26:49.1683|INFO|APIDocLog|Start CreateDoc +2026-03-19 16:26:49.2536|INFO|APIDocLog|Input JSON +2026-03-19 16:26:49.2631|DEBUG|OnDoc|Start GenDoc +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2631|DEBUG|OnDoc| +2026-03-19 16:26:49.2748|DEBUG|OnDoc| +2026-03-19 16:26:49.2748|DEBUG|OnDoc| +2026-03-19 16:26:49.2748|DEBUG|OnDoc| +2026-03-19 16:26:49.2748|DEBUG|OnDoc| +2026-03-19 16:26:49.2748|DEBUG|OnDoc| +2026-03-19 16:26:49.2748|DEBUG|OnDoc| +2026-03-19 16:26:49.2748|DEBUG|OnDoc| +2026-03-19 16:26:49.2748|DEBUG|OnDoc| +2026-03-19 16:26:49.2748|DEBUG|OnDoc| +2026-03-19 16:26:49.2748|DEBUG|OnDoc| +2026-03-19 16:26:49.2748|DEBUG|OnDoc| +2026-03-19 16:26:49.2748|DEBUG|OnDoc| +2026-03-19 16:26:49.2897|DEBUG|OnDoc| +2026-03-19 16:26:49.2897|DEBUG|OnDoc| +2026-03-19 16:26:49.2897|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 16:26:49.3422|DEBUG|OnDoc| +2026-03-19 16:26:49.3422|DEBUG|OnDoc| +2026-03-19 16:26:49.4268|DEBUG|OnDoc| +2026-03-19 16:26:49.4268|DEBUG|OnDoc| +2026-03-19 16:26:49.4363|DEBUG|OnDoc| +2026-03-19 16:26:49.4363|DEBUG|OnDoc| +2026-03-19 16:26:49.4363|DEBUG|OnDoc| +2026-03-19 16:26:49.4363|DEBUG|OnDoc| +2026-03-19 16:26:49.5143|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 16:26:49.5143|DEBUG|OnDoc| +2026-03-19 16:26:49.5143|DEBUG|OnDoc| +2026-03-19 16:26:49.5143|DEBUG|OnDoc| +2026-03-19 16:26:49.5143|DEBUG|OnDoc| +2026-03-19 16:26:49.5143|DEBUG|OnDoc| +2026-03-19 16:26:49.5285|DEBUG|OnDoc| +2026-03-19 16:26:49.5285|DEBUG|OnDoc| +2026-03-19 16:26:49.5285|DEBUG|OnDoc| +2026-03-19 16:26:49.5285|DEBUG|OnDoc|Generate_Word +2026-03-19 16:26:49.5425|DEBUG|OnDoc|Word2013 +2026-03-19 16:26:49.5425|DEBUG|OnDoc|Word2013 +2026-03-19 16:26:53.4017|DEBUG|OnDoc|Generate_Word +2026-03-19 16:26:53.4432|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018905 +2026-03-19 16:26:53.4432|INFO|DocLog|Dokument über API erstellt +2026-03-19 16:26:53.4432|INFO|APIDocLog|Dokument return to sender +2026-03-19 16:26:53.4432|DEBUG|OnDoc| +2026-03-19 16:26:53.4588|DEBUG|OnDoc| +2026-03-19 16:26:53.4588|DEBUG|OnDoc| +2026-03-19 16:26:53.4588|DEBUG|OnDoc| +2026-03-19 16:26:53.4588|DEBUG|OnDoc| +2026-03-19 16:26:53.4588|DEBUG|OnDoc| +2026-03-19 18:36:47.5780|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 18:36:47.7624|INFO|APIDocLog|Start CreateDoc +2026-03-19 18:36:47.8471|INFO|APIDocLog|Input JSON +2026-03-19 18:36:47.8571|DEBUG|OnDoc|Start GenDoc +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8571|DEBUG|OnDoc| +2026-03-19 18:36:47.8683|DEBUG|OnDoc| +2026-03-19 18:36:47.8683|DEBUG|OnDoc| +2026-03-19 18:36:47.8683|DEBUG|OnDoc| +2026-03-19 18:36:47.8683|DEBUG|OnDoc| +2026-03-19 18:36:47.8683|DEBUG|OnDoc| +2026-03-19 18:36:47.8683|DEBUG|OnDoc| +2026-03-19 18:36:47.8683|DEBUG|OnDoc| +2026-03-19 18:36:47.8683|DEBUG|OnDoc| +2026-03-19 18:36:47.8683|DEBUG|OnDoc| +2026-03-19 18:36:47.8683|DEBUG|OnDoc| +2026-03-19 18:36:47.8683|DEBUG|OnDoc| +2026-03-19 18:36:47.8683|DEBUG|OnDoc| +2026-03-19 18:36:47.8921|DEBUG|OnDoc| +2026-03-19 18:36:47.8921|DEBUG|OnDoc| +2026-03-19 18:36:47.9022|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 18:36:47.9449|DEBUG|OnDoc| +2026-03-19 18:36:47.9479|DEBUG|OnDoc| +2026-03-19 18:36:48.0271|DEBUG|OnDoc| +2026-03-19 18:36:48.0271|DEBUG|OnDoc| +2026-03-19 18:36:48.0271|DEBUG|OnDoc| +2026-03-19 18:36:48.0410|DEBUG|OnDoc| +2026-03-19 18:36:48.0410|DEBUG|OnDoc| +2026-03-19 18:36:48.0410|DEBUG|OnDoc| +2026-03-19 18:36:48.1112|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 18:36:48.1112|DEBUG|OnDoc| +2026-03-19 18:36:48.1199|DEBUG|OnDoc| +2026-03-19 18:36:48.1199|DEBUG|OnDoc| +2026-03-19 18:36:48.1199|DEBUG|OnDoc| +2026-03-19 18:36:48.1199|DEBUG|OnDoc| +2026-03-19 18:36:48.1199|DEBUG|OnDoc| +2026-03-19 18:36:48.1199|DEBUG|OnDoc| +2026-03-19 18:36:48.1199|DEBUG|OnDoc| +2026-03-19 18:36:48.1199|DEBUG|OnDoc|Generate_Word +2026-03-19 18:36:48.1387|DEBUG|OnDoc|Word2013 +2026-03-19 18:36:48.1387|DEBUG|OnDoc|Word2013 +2026-03-19 18:38:03.9395|DEBUG|OnDoc|Generate_Word +2026-03-19 18:38:03.9791|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018910 +2026-03-19 18:38:03.9791|INFO|DocLog|Dokument über API erstellt +2026-03-19 18:38:03.9791|INFO|APIDocLog|Dokument return to sender +2026-03-19 18:38:03.9791|DEBUG|OnDoc| +2026-03-19 18:38:04.0079|DEBUG|OnDoc| +2026-03-19 18:38:04.0089|DEBUG|OnDoc| +2026-03-19 18:38:04.0089|DEBUG|OnDoc| +2026-03-19 18:38:04.0089|DEBUG|OnDoc| +2026-03-19 18:38:04.0089|DEBUG|OnDoc| +2026-03-19 18:38:08.8701|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 18:38:09.0569|INFO|APIDocLog|Start CreateDoc +2026-03-19 18:38:09.1413|INFO|APIDocLog|Input JSON +2026-03-19 18:38:09.1502|DEBUG|OnDoc|Start GenDoc +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1502|DEBUG|OnDoc| +2026-03-19 18:38:09.1645|DEBUG|OnDoc| +2026-03-19 18:38:09.1645|DEBUG|OnDoc| +2026-03-19 18:38:09.1645|DEBUG|OnDoc| +2026-03-19 18:38:09.1645|DEBUG|OnDoc| +2026-03-19 18:38:09.1645|DEBUG|OnDoc| +2026-03-19 18:38:09.1826|DEBUG|OnDoc| +2026-03-19 18:38:09.1826|DEBUG|OnDoc| +2026-03-19 18:38:09.1826|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 18:38:09.2365|DEBUG|OnDoc| +2026-03-19 18:38:09.2365|DEBUG|OnDoc| +2026-03-19 18:38:09.3181|DEBUG|OnDoc| +2026-03-19 18:38:09.3181|DEBUG|OnDoc| +2026-03-19 18:38:09.3287|DEBUG|OnDoc| +2026-03-19 18:38:09.3287|DEBUG|OnDoc| +2026-03-19 18:38:09.3287|DEBUG|OnDoc| +2026-03-19 18:38:09.3287|DEBUG|OnDoc| +2026-03-19 18:38:09.4071|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 18:38:09.4071|DEBUG|OnDoc| +2026-03-19 18:38:09.4071|DEBUG|OnDoc| +2026-03-19 18:38:09.4148|DEBUG|OnDoc| +2026-03-19 18:38:09.4148|DEBUG|OnDoc| +2026-03-19 18:38:09.4148|DEBUG|OnDoc| +2026-03-19 18:38:09.4148|DEBUG|OnDoc| +2026-03-19 18:38:09.4148|DEBUG|OnDoc| +2026-03-19 18:38:09.4148|DEBUG|OnDoc| +2026-03-19 18:38:09.4148|DEBUG|OnDoc|Generate_Word +2026-03-19 18:38:09.4323|DEBUG|OnDoc|Word2013 +2026-03-19 18:38:09.4323|DEBUG|OnDoc|Word2013 +2026-03-19 18:38:16.2263|DEBUG|OnDoc|Generate_Word +2026-03-19 18:38:16.2646|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018921 +2026-03-19 18:38:16.2646|INFO|DocLog|Dokument über API erstellt +2026-03-19 18:38:16.2646|INFO|APIDocLog|Dokument return to sender +2026-03-19 18:38:16.2646|DEBUG|OnDoc| +2026-03-19 18:38:16.2780|DEBUG|OnDoc| +2026-03-19 18:38:16.2780|DEBUG|OnDoc| +2026-03-19 18:38:16.2780|DEBUG|OnDoc| +2026-03-19 18:38:16.2780|DEBUG|OnDoc| +2026-03-19 18:38:16.2780|DEBUG|OnDoc| +2026-03-19 18:38:19.9179|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 18:38:20.1106|INFO|APIDocLog|Start CreateDoc +2026-03-19 18:38:20.1943|INFO|APIDocLog|Input JSON +2026-03-19 18:38:20.2036|DEBUG|OnDoc|Start GenDoc +2026-03-19 18:38:20.2036|DEBUG|OnDoc| +2026-03-19 18:38:20.2036|DEBUG|OnDoc| +2026-03-19 18:38:20.2036|DEBUG|OnDoc| +2026-03-19 18:38:20.2036|DEBUG|OnDoc| +2026-03-19 18:38:20.2036|DEBUG|OnDoc| +2026-03-19 18:38:20.2036|DEBUG|OnDoc| +2026-03-19 18:38:20.2036|DEBUG|OnDoc| +2026-03-19 18:38:20.2036|DEBUG|OnDoc| +2026-03-19 18:38:20.2036|DEBUG|OnDoc| +2026-03-19 18:38:20.2036|DEBUG|OnDoc| +2026-03-19 18:38:20.2036|DEBUG|OnDoc| +2026-03-19 18:38:20.2036|DEBUG|OnDoc| +2026-03-19 18:38:20.2036|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2114|DEBUG|OnDoc| +2026-03-19 18:38:20.2448|DEBUG|OnDoc| +2026-03-19 18:38:20.2448|DEBUG|OnDoc| +2026-03-19 18:38:20.2448|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 18:38:20.3023|DEBUG|OnDoc| +2026-03-19 18:38:20.3023|DEBUG|OnDoc| +2026-03-19 18:38:20.3858|DEBUG|OnDoc| +2026-03-19 18:38:20.3858|DEBUG|OnDoc| +2026-03-19 18:38:20.3858|DEBUG|OnDoc| +2026-03-19 18:38:20.3858|DEBUG|OnDoc| +2026-03-19 18:38:20.3858|DEBUG|OnDoc| +2026-03-19 18:38:20.3858|DEBUG|OnDoc| +2026-03-19 18:38:20.4708|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 18:38:20.4708|DEBUG|OnDoc| +2026-03-19 18:38:20.4783|DEBUG|OnDoc| +2026-03-19 18:38:20.4783|DEBUG|OnDoc| +2026-03-19 18:38:20.4783|DEBUG|OnDoc| +2026-03-19 18:38:20.4783|DEBUG|OnDoc| +2026-03-19 18:38:20.4783|DEBUG|OnDoc| +2026-03-19 18:38:20.4783|DEBUG|OnDoc| +2026-03-19 18:38:20.4783|DEBUG|OnDoc| +2026-03-19 18:38:20.4783|DEBUG|OnDoc|Generate_Word +2026-03-19 18:38:20.4965|DEBUG|OnDoc|Word2013 +2026-03-19 18:38:20.4965|DEBUG|OnDoc|Word2013 +2026-03-19 18:46:19.3390|DEBUG|OnDoc|Generate_Word +2026-03-19 18:46:19.3825|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018936 +2026-03-19 18:46:19.3840|INFO|DocLog|Dokument über API erstellt +2026-03-19 18:46:19.3840|INFO|APIDocLog|Dokument return to sender +2026-03-19 18:46:19.3840|DEBUG|OnDoc| +2026-03-19 18:46:19.4001|DEBUG|OnDoc| +2026-03-19 18:46:19.4001|DEBUG|OnDoc| +2026-03-19 18:46:19.4001|DEBUG|OnDoc| +2026-03-19 18:46:19.4001|DEBUG|OnDoc| +2026-03-19 18:46:19.4001|DEBUG|OnDoc| +2026-03-19 18:46:26.0043|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 18:46:26.1937|INFO|APIDocLog|Start CreateDoc +2026-03-19 18:46:26.2798|INFO|APIDocLog|Input JSON +2026-03-19 18:46:26.2902|DEBUG|OnDoc|Start GenDoc +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.2902|DEBUG|OnDoc| +2026-03-19 18:46:26.3056|DEBUG|OnDoc| +2026-03-19 18:46:26.3056|DEBUG|OnDoc| +2026-03-19 18:46:26.3056|DEBUG|OnDoc| +2026-03-19 18:46:26.3056|DEBUG|OnDoc| +2026-03-19 18:46:26.3056|DEBUG|OnDoc| +2026-03-19 18:46:26.3056|DEBUG|OnDoc| +2026-03-19 18:46:26.3056|DEBUG|OnDoc| +2026-03-19 18:46:26.3056|DEBUG|OnDoc| +2026-03-19 18:46:26.3056|DEBUG|OnDoc| +2026-03-19 18:46:26.3056|DEBUG|OnDoc| +2026-03-19 18:46:26.3056|DEBUG|OnDoc| +2026-03-19 18:46:26.3056|DEBUG|OnDoc| +2026-03-19 18:46:26.3056|DEBUG|OnDoc| +2026-03-19 18:46:26.3360|DEBUG|OnDoc| +2026-03-19 18:46:26.3385|DEBUG|OnDoc| +2026-03-19 18:46:26.3385|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 18:46:26.4002|DEBUG|OnDoc| +2026-03-19 18:46:26.4002|DEBUG|OnDoc| +2026-03-19 18:46:26.4881|DEBUG|OnDoc| +2026-03-19 18:46:26.4881|DEBUG|OnDoc| +2026-03-19 18:46:26.5007|DEBUG|OnDoc| +2026-03-19 18:46:26.5007|DEBUG|OnDoc| +2026-03-19 18:46:26.5007|DEBUG|OnDoc| +2026-03-19 18:46:26.5007|DEBUG|OnDoc| +2026-03-19 18:46:26.5766|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 18:46:26.5766|DEBUG|OnDoc| +2026-03-19 18:46:26.5766|DEBUG|OnDoc| +2026-03-19 18:46:26.5766|DEBUG|OnDoc| +2026-03-19 18:46:26.5766|DEBUG|OnDoc| +2026-03-19 18:46:26.5766|DEBUG|OnDoc| +2026-03-19 18:46:26.5919|DEBUG|OnDoc| +2026-03-19 18:46:26.5919|DEBUG|OnDoc| +2026-03-19 18:46:26.5919|DEBUG|OnDoc| +2026-03-19 18:46:26.5919|DEBUG|OnDoc|Generate_Word +2026-03-19 18:46:26.6044|DEBUG|OnDoc|Word2013 +2026-03-19 18:46:26.6044|DEBUG|OnDoc|Word2013 +2026-03-19 18:46:30.8195|DEBUG|OnDoc|Generate_Word +2026-03-19 18:46:30.8584|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018944 +2026-03-19 18:46:30.8584|INFO|DocLog|Dokument über API erstellt +2026-03-19 18:46:30.8584|INFO|APIDocLog|Dokument return to sender +2026-03-19 18:46:30.8584|DEBUG|OnDoc| +2026-03-19 18:46:30.8729|DEBUG|OnDoc| +2026-03-19 18:46:30.8729|DEBUG|OnDoc| +2026-03-19 18:46:30.8729|DEBUG|OnDoc| +2026-03-19 18:46:30.8729|DEBUG|OnDoc| +2026-03-19 18:46:30.8729|DEBUG|OnDoc| +2026-03-19 18:46:34.6952|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 18:46:34.8829|INFO|APIDocLog|Start CreateDoc +2026-03-19 18:46:34.9699|INFO|APIDocLog|Input JSON +2026-03-19 18:46:34.9794|DEBUG|OnDoc|Start GenDoc +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9794|DEBUG|OnDoc| +2026-03-19 18:46:34.9935|DEBUG|OnDoc| +2026-03-19 18:46:34.9935|DEBUG|OnDoc| +2026-03-19 18:46:34.9935|DEBUG|OnDoc| +2026-03-19 18:46:34.9935|DEBUG|OnDoc| +2026-03-19 18:46:34.9935|DEBUG|OnDoc| +2026-03-19 18:46:34.9935|DEBUG|OnDoc| +2026-03-19 18:46:34.9935|DEBUG|OnDoc| +2026-03-19 18:46:34.9935|DEBUG|OnDoc| +2026-03-19 18:46:34.9935|DEBUG|OnDoc| +2026-03-19 18:46:34.9935|DEBUG|OnDoc| +2026-03-19 18:46:34.9935|DEBUG|OnDoc| +2026-03-19 18:46:34.9935|DEBUG|OnDoc| +2026-03-19 18:46:34.9935|DEBUG|OnDoc| +2026-03-19 18:46:34.9935|DEBUG|OnDoc| +2026-03-19 18:46:35.0181|DEBUG|OnDoc| +2026-03-19 18:46:35.0181|DEBUG|OnDoc| +2026-03-19 18:46:35.0260|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 18:46:35.0735|DEBUG|OnDoc| +2026-03-19 18:46:35.0735|DEBUG|OnDoc| +2026-03-19 18:46:35.1656|DEBUG|OnDoc| +2026-03-19 18:46:35.1656|DEBUG|OnDoc| +2026-03-19 18:46:35.1656|DEBUG|OnDoc| +2026-03-19 18:46:35.1656|DEBUG|OnDoc| +2026-03-19 18:46:35.1806|DEBUG|OnDoc| +2026-03-19 18:46:35.1806|DEBUG|OnDoc| +2026-03-19 18:46:35.2549|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 18:46:35.2549|DEBUG|OnDoc| +2026-03-19 18:46:35.2621|DEBUG|OnDoc| +2026-03-19 18:46:35.2621|DEBUG|OnDoc| +2026-03-19 18:46:35.2621|DEBUG|OnDoc| +2026-03-19 18:46:35.2621|DEBUG|OnDoc| +2026-03-19 18:46:35.2621|DEBUG|OnDoc| +2026-03-19 18:46:35.2621|DEBUG|OnDoc| +2026-03-19 18:46:35.2752|DEBUG|OnDoc| +2026-03-19 18:46:35.2752|DEBUG|OnDoc|Generate_Word +2026-03-19 18:46:35.2752|DEBUG|OnDoc|Word2013 +2026-03-19 18:46:35.2752|DEBUG|OnDoc|Word2013 +2026-03-19 18:46:52.7357|DEBUG|OnDoc|Generate_Word +2026-03-19 18:46:52.7760|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018952 +2026-03-19 18:46:52.7760|INFO|DocLog|Dokument über API erstellt +2026-03-19 18:46:52.7760|INFO|APIDocLog|Dokument return to sender +2026-03-19 18:46:52.7760|DEBUG|OnDoc| +2026-03-19 18:46:52.7916|DEBUG|OnDoc| +2026-03-19 18:46:52.7916|DEBUG|OnDoc| +2026-03-19 18:46:52.7916|DEBUG|OnDoc| +2026-03-19 18:46:52.7916|DEBUG|OnDoc| +2026-03-19 18:46:52.7916|DEBUG|OnDoc| +2026-03-19 18:46:55.4244|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 18:46:55.5815|INFO|APIDocLog|Start CreateDoc +2026-03-19 18:46:55.6660|INFO|APIDocLog|Input JSON +2026-03-19 18:46:55.6660|DEBUG|OnDoc|Start GenDoc +2026-03-19 18:46:55.6660|DEBUG|OnDoc| +2026-03-19 18:46:55.6660|DEBUG|OnDoc| +2026-03-19 18:46:55.6660|DEBUG|OnDoc| +2026-03-19 18:46:55.6660|DEBUG|OnDoc| +2026-03-19 18:46:55.6660|DEBUG|OnDoc| +2026-03-19 18:46:55.6660|DEBUG|OnDoc| +2026-03-19 18:46:55.6660|DEBUG|OnDoc| +2026-03-19 18:46:55.6660|DEBUG|OnDoc| +2026-03-19 18:46:55.6660|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.6809|DEBUG|OnDoc| +2026-03-19 18:46:55.7035|DEBUG|OnDoc| +2026-03-19 18:46:55.7035|DEBUG|OnDoc| +2026-03-19 18:46:55.7182|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 18:46:55.7594|DEBUG|OnDoc| +2026-03-19 18:46:55.7594|DEBUG|OnDoc| +2026-03-19 18:46:55.8471|DEBUG|OnDoc| +2026-03-19 18:46:55.8471|DEBUG|OnDoc| +2026-03-19 18:46:55.8578|DEBUG|OnDoc| +2026-03-19 18:46:55.8578|DEBUG|OnDoc| +2026-03-19 18:46:55.8578|DEBUG|OnDoc| +2026-03-19 18:46:55.8578|DEBUG|OnDoc| +2026-03-19 18:46:55.9392|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 18:46:55.9392|DEBUG|OnDoc| +2026-03-19 18:46:55.9392|DEBUG|OnDoc| +2026-03-19 18:46:55.9462|DEBUG|OnDoc| +2026-03-19 18:46:55.9462|DEBUG|OnDoc| +2026-03-19 18:46:55.9462|DEBUG|OnDoc| +2026-03-19 18:46:55.9462|DEBUG|OnDoc| +2026-03-19 18:46:55.9462|DEBUG|OnDoc| +2026-03-19 18:46:55.9462|DEBUG|OnDoc| +2026-03-19 18:46:55.9462|DEBUG|OnDoc|Generate_Word +2026-03-19 18:46:55.9628|DEBUG|OnDoc|Word2013 +2026-03-19 18:46:55.9628|DEBUG|OnDoc|Word2013 +2026-03-19 18:55:34.8045|DEBUG|OnDoc|Generate_Word +2026-03-19 18:55:34.8246|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018968 +2026-03-19 18:55:34.8246|INFO|DocLog|Dokument über API erstellt +2026-03-19 18:55:34.8246|INFO|APIDocLog|Dokument return to sender +2026-03-19 18:55:34.8246|DEBUG|OnDoc| +2026-03-19 18:55:34.8412|DEBUG|OnDoc| +2026-03-19 18:55:34.8412|DEBUG|OnDoc| +2026-03-19 18:55:34.8412|DEBUG|OnDoc| +2026-03-19 18:55:34.8412|DEBUG|OnDoc| +2026-03-19 18:55:34.8412|DEBUG|OnDoc| +2026-03-19 18:55:40.0604|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 18:55:40.2528|INFO|APIDocLog|Start CreateDoc +2026-03-19 18:55:40.3452|INFO|APIDocLog|Input JSON +2026-03-19 18:55:40.3561|DEBUG|OnDoc|Start GenDoc +2026-03-19 18:55:40.3561|DEBUG|OnDoc| +2026-03-19 18:55:40.3561|DEBUG|OnDoc| +2026-03-19 18:55:40.3561|DEBUG|OnDoc| +2026-03-19 18:55:40.3561|DEBUG|OnDoc| +2026-03-19 18:55:40.3561|DEBUG|OnDoc| +2026-03-19 18:55:40.3561|DEBUG|OnDoc| +2026-03-19 18:55:40.3561|DEBUG|OnDoc| +2026-03-19 18:55:40.3561|DEBUG|OnDoc| +2026-03-19 18:55:40.3561|DEBUG|OnDoc| +2026-03-19 18:55:40.3561|DEBUG|OnDoc| +2026-03-19 18:55:40.3561|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3685|DEBUG|OnDoc| +2026-03-19 18:55:40.3841|DEBUG|OnDoc| +2026-03-19 18:55:40.3841|DEBUG|OnDoc| +2026-03-19 18:55:40.3841|DEBUG|OnDoc| +2026-03-19 18:55:40.3841|DEBUG|OnDoc| +2026-03-19 18:55:40.3841|DEBUG|OnDoc| +2026-03-19 18:55:40.3841|DEBUG|OnDoc| +2026-03-19 18:55:40.3841|DEBUG|OnDoc| +2026-03-19 18:55:40.4011|DEBUG|OnDoc| +2026-03-19 18:55:40.4011|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 18:55:40.4516|DEBUG|OnDoc| +2026-03-19 18:55:40.4516|DEBUG|OnDoc| +2026-03-19 18:55:40.5422|DEBUG|OnDoc| +2026-03-19 18:55:40.5422|DEBUG|OnDoc| +2026-03-19 18:55:40.5566|DEBUG|OnDoc| +2026-03-19 18:55:40.5566|DEBUG|OnDoc| +2026-03-19 18:55:40.5566|DEBUG|OnDoc| +2026-03-19 18:55:40.5566|DEBUG|OnDoc| +2026-03-19 18:55:40.6440|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 18:55:40.6440|DEBUG|OnDoc| +2026-03-19 18:55:40.6539|DEBUG|OnDoc| +2026-03-19 18:55:40.6539|DEBUG|OnDoc| +2026-03-19 18:55:40.6539|DEBUG|OnDoc| +2026-03-19 18:55:40.6539|DEBUG|OnDoc| +2026-03-19 18:55:40.6693|DEBUG|OnDoc| +2026-03-19 18:55:40.6693|DEBUG|OnDoc| +2026-03-19 18:55:40.6693|DEBUG|OnDoc| +2026-03-19 18:55:40.6808|DEBUG|OnDoc|Generate_Word +2026-03-19 18:55:40.6808|DEBUG|OnDoc|Word2013 +2026-03-19 18:55:40.6808|DEBUG|OnDoc|Word2013 +2026-03-19 18:59:25.8409|DEBUG|OnDoc|Generate_Word +2026-03-19 18:59:25.8822|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018973 +2026-03-19 18:59:25.8822|INFO|DocLog|Dokument über API erstellt +2026-03-19 18:59:25.8842|INFO|APIDocLog|Dokument return to sender +2026-03-19 18:59:25.8842|DEBUG|OnDoc| +2026-03-19 18:59:25.8991|DEBUG|OnDoc| +2026-03-19 18:59:25.8991|DEBUG|OnDoc| +2026-03-19 18:59:25.8991|DEBUG|OnDoc| +2026-03-19 18:59:25.8991|DEBUG|OnDoc| +2026-03-19 18:59:25.8991|DEBUG|OnDoc| +2026-03-19 18:59:34.9675|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 18:59:35.1672|INFO|APIDocLog|Start CreateDoc +2026-03-19 18:59:35.2632|INFO|APIDocLog|Input JSON +2026-03-19 18:59:35.2750|DEBUG|OnDoc|Start GenDoc +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2750|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.2897|DEBUG|OnDoc| +2026-03-19 18:59:35.3053|DEBUG|OnDoc| +2026-03-19 18:59:35.3053|DEBUG|OnDoc| +2026-03-19 18:59:35.3215|DEBUG|OnDoc| +2026-03-19 18:59:35.3375|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 18:59:35.3860|DEBUG|OnDoc| +2026-03-19 18:59:35.3860|DEBUG|OnDoc| +2026-03-19 18:59:35.4803|DEBUG|OnDoc| +2026-03-19 18:59:35.4803|DEBUG|OnDoc| +2026-03-19 18:59:35.4803|DEBUG|OnDoc| +2026-03-19 18:59:35.4944|DEBUG|OnDoc| +2026-03-19 18:59:35.4944|DEBUG|OnDoc| +2026-03-19 18:59:35.4944|DEBUG|OnDoc| +2026-03-19 18:59:35.5798|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 18:59:35.5798|DEBUG|OnDoc| +2026-03-19 18:59:35.5921|DEBUG|OnDoc| +2026-03-19 18:59:35.5921|DEBUG|OnDoc| +2026-03-19 18:59:35.5921|DEBUG|OnDoc| +2026-03-19 18:59:35.5921|DEBUG|OnDoc| +2026-03-19 18:59:35.6025|DEBUG|OnDoc| +2026-03-19 18:59:35.6025|DEBUG|OnDoc| +2026-03-19 18:59:35.6025|DEBUG|OnDoc| +2026-03-19 18:59:35.6025|DEBUG|OnDoc|Generate_Word +2026-03-19 18:59:35.6179|DEBUG|OnDoc|Word2013 +2026-03-19 18:59:35.6179|DEBUG|OnDoc|Word2013 +2026-03-19 19:00:33.8839|DEBUG|OnDoc|Generate_Word +2026-03-19 19:00:33.9255|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018989 +2026-03-19 19:00:33.9255|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:00:33.9255|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:00:33.9309|DEBUG|OnDoc| +2026-03-19 19:00:33.9309|DEBUG|OnDoc| +2026-03-19 19:00:33.9309|DEBUG|OnDoc| +2026-03-19 19:00:33.9460|DEBUG|OnDoc| +2026-03-19 19:00:33.9460|DEBUG|OnDoc| +2026-03-19 19:00:33.9460|DEBUG|OnDoc| +2026-03-19 19:01:11.1682|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:01:11.3589|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:01:11.4505|INFO|APIDocLog|Input JSON +2026-03-19 19:01:11.4505|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4614|DEBUG|OnDoc| +2026-03-19 19:01:11.4863|DEBUG|OnDoc| +2026-03-19 19:01:11.4863|DEBUG|OnDoc| +2026-03-19 19:01:11.4959|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:01:11.5418|DEBUG|OnDoc| +2026-03-19 19:01:11.5418|DEBUG|OnDoc| +2026-03-19 19:01:11.6347|DEBUG|OnDoc| +2026-03-19 19:01:11.6347|DEBUG|OnDoc| +2026-03-19 19:01:11.6347|DEBUG|OnDoc| +2026-03-19 19:01:11.6347|DEBUG|OnDoc| +2026-03-19 19:01:11.6347|DEBUG|OnDoc| +2026-03-19 19:01:11.6347|DEBUG|OnDoc| +2026-03-19 19:01:11.7315|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:01:11.7315|DEBUG|OnDoc| +2026-03-19 19:01:11.7315|DEBUG|OnDoc| +2026-03-19 19:01:11.7315|DEBUG|OnDoc| +2026-03-19 19:01:11.7315|DEBUG|OnDoc| +2026-03-19 19:01:11.7315|DEBUG|OnDoc| +2026-03-19 19:01:11.7437|DEBUG|OnDoc| +2026-03-19 19:01:11.7437|DEBUG|OnDoc| +2026-03-19 19:01:11.7437|DEBUG|OnDoc| +2026-03-19 19:01:11.7437|DEBUG|OnDoc|Generate_Word +2026-03-19 19:01:11.7437|DEBUG|OnDoc|Word2013 +2026-03-19 19:01:11.7437|DEBUG|OnDoc|Word2013 +2026-03-19 19:01:16.4635|DEBUG|OnDoc|Generate_Word +2026-03-19 19:01:16.5049|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000018997 +2026-03-19 19:01:16.5049|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:01:16.5049|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:01:16.5100|DEBUG|OnDoc| +2026-03-19 19:01:16.5290|DEBUG|OnDoc| +2026-03-19 19:01:16.5290|DEBUG|OnDoc| +2026-03-19 19:01:16.5290|DEBUG|OnDoc| +2026-03-19 19:01:16.5290|DEBUG|OnDoc| +2026-03-19 19:01:16.5290|DEBUG|OnDoc| +2026-03-19 19:01:24.1184|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:01:24.3165|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:01:24.4093|INFO|APIDocLog|Input JSON +2026-03-19 19:01:24.4208|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:01:24.4208|DEBUG|OnDoc| +2026-03-19 19:01:24.4208|DEBUG|OnDoc| +2026-03-19 19:01:24.4208|DEBUG|OnDoc| +2026-03-19 19:01:24.4208|DEBUG|OnDoc| +2026-03-19 19:01:24.4208|DEBUG|OnDoc| +2026-03-19 19:01:24.4208|DEBUG|OnDoc| +2026-03-19 19:01:24.4208|DEBUG|OnDoc| +2026-03-19 19:01:24.4208|DEBUG|OnDoc| +2026-03-19 19:01:24.4208|DEBUG|OnDoc| +2026-03-19 19:01:24.4208|DEBUG|OnDoc| +2026-03-19 19:01:24.4208|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4307|DEBUG|OnDoc| +2026-03-19 19:01:24.4552|DEBUG|OnDoc| +2026-03-19 19:01:24.4552|DEBUG|OnDoc| +2026-03-19 19:01:24.4653|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:01:24.5095|DEBUG|OnDoc| +2026-03-19 19:01:24.5095|DEBUG|OnDoc| +2026-03-19 19:01:24.6034|DEBUG|OnDoc| +2026-03-19 19:01:24.6034|DEBUG|OnDoc| +2026-03-19 19:01:24.6034|DEBUG|OnDoc| +2026-03-19 19:01:24.6034|DEBUG|OnDoc| +2026-03-19 19:01:24.6034|DEBUG|OnDoc| +2026-03-19 19:01:24.6034|DEBUG|OnDoc| +2026-03-19 19:01:24.7043|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:01:24.7043|DEBUG|OnDoc| +2026-03-19 19:01:24.7155|DEBUG|OnDoc| +2026-03-19 19:01:24.7155|DEBUG|OnDoc| +2026-03-19 19:01:24.7155|DEBUG|OnDoc| +2026-03-19 19:01:24.7155|DEBUG|OnDoc| +2026-03-19 19:01:24.7272|DEBUG|OnDoc| +2026-03-19 19:01:24.7272|DEBUG|OnDoc| +2026-03-19 19:01:24.7272|DEBUG|OnDoc| +2026-03-19 19:01:24.7272|DEBUG|OnDoc|Generate_Word +2026-03-19 19:01:24.7272|DEBUG|OnDoc|Word2013 +2026-03-19 19:01:24.7442|DEBUG|OnDoc|Word2013 +2026-03-19 19:02:55.8048|DEBUG|OnDoc|Generate_Word +2026-03-19 19:02:55.8437|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019001 +2026-03-19 19:02:55.8437|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:02:55.8437|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:02:55.8437|DEBUG|OnDoc| +2026-03-19 19:02:55.8664|DEBUG|OnDoc| +2026-03-19 19:02:55.8664|DEBUG|OnDoc| +2026-03-19 19:02:55.8681|DEBUG|OnDoc| +2026-03-19 19:02:55.8681|DEBUG|OnDoc| +2026-03-19 19:02:55.8681|DEBUG|OnDoc| +2026-03-19 19:03:31.1073|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:03:31.3060|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:03:31.3986|INFO|APIDocLog|Input JSON +2026-03-19 19:03:31.4102|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:03:31.4102|DEBUG|OnDoc| +2026-03-19 19:03:31.4102|DEBUG|OnDoc| +2026-03-19 19:03:31.4102|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4147|DEBUG|OnDoc| +2026-03-19 19:03:31.4308|DEBUG|OnDoc| +2026-03-19 19:03:31.4308|DEBUG|OnDoc| +2026-03-19 19:03:31.4308|DEBUG|OnDoc| +2026-03-19 19:03:31.4308|DEBUG|OnDoc| +2026-03-19 19:03:31.4308|DEBUG|OnDoc| +2026-03-19 19:03:31.4308|DEBUG|OnDoc| +2026-03-19 19:03:31.4308|DEBUG|OnDoc| +2026-03-19 19:03:31.4308|DEBUG|OnDoc| +2026-03-19 19:03:31.4308|DEBUG|OnDoc| +2026-03-19 19:03:31.4308|DEBUG|OnDoc| +2026-03-19 19:03:31.4308|DEBUG|OnDoc| +2026-03-19 19:03:31.4308|DEBUG|OnDoc| +2026-03-19 19:03:31.4594|DEBUG|OnDoc| +2026-03-19 19:03:31.4625|DEBUG|OnDoc| +2026-03-19 19:03:31.4625|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:03:31.5137|DEBUG|OnDoc| +2026-03-19 19:03:31.5137|DEBUG|OnDoc| +2026-03-19 19:03:31.6086|DEBUG|OnDoc| +2026-03-19 19:03:31.6086|DEBUG|OnDoc| +2026-03-19 19:03:31.6195|DEBUG|OnDoc| +2026-03-19 19:03:31.6195|DEBUG|OnDoc| +2026-03-19 19:03:31.6195|DEBUG|OnDoc| +2026-03-19 19:03:31.6195|DEBUG|OnDoc| +2026-03-19 19:03:31.7118|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:03:31.7118|DEBUG|OnDoc| +2026-03-19 19:03:31.7118|DEBUG|OnDoc| +2026-03-19 19:03:31.7118|DEBUG|OnDoc| +2026-03-19 19:03:31.7272|DEBUG|OnDoc| +2026-03-19 19:03:31.7272|DEBUG|OnDoc| +2026-03-19 19:03:31.7272|DEBUG|OnDoc| +2026-03-19 19:03:31.7272|DEBUG|OnDoc| +2026-03-19 19:03:31.7272|DEBUG|OnDoc| +2026-03-19 19:03:31.7272|DEBUG|OnDoc|Generate_Word +2026-03-19 19:03:31.7492|DEBUG|OnDoc|Word2013 +2026-03-19 19:03:31.7492|DEBUG|OnDoc|Word2013 +2026-03-19 19:03:40.0163|DEBUG|OnDoc|Generate_Word +2026-03-19 19:03:40.0577|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019016 +2026-03-19 19:03:40.0577|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:03:40.0577|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:03:40.0577|DEBUG|OnDoc| +2026-03-19 19:03:40.0835|DEBUG|OnDoc| +2026-03-19 19:03:40.0835|DEBUG|OnDoc| +2026-03-19 19:03:40.0835|DEBUG|OnDoc| +2026-03-19 19:03:40.0870|DEBUG|OnDoc| +2026-03-19 19:03:40.0870|DEBUG|OnDoc| +2026-03-19 19:04:34.4601|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:04:34.6665|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:04:34.7607|INFO|APIDocLog|Input JSON +2026-03-19 19:04:34.7607|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:04:34.7607|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7748|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.7910|DEBUG|OnDoc| +2026-03-19 19:04:34.8275|DEBUG|OnDoc| +2026-03-19 19:04:34.8275|DEBUG|OnDoc| +2026-03-19 19:04:34.8379|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:04:34.8910|DEBUG|OnDoc| +2026-03-19 19:04:34.8910|DEBUG|OnDoc| +2026-03-19 19:04:34.9897|DEBUG|OnDoc| +2026-03-19 19:04:34.9897|DEBUG|OnDoc| +2026-03-19 19:04:34.9997|DEBUG|OnDoc| +2026-03-19 19:04:34.9997|DEBUG|OnDoc| +2026-03-19 19:04:34.9997|DEBUG|OnDoc| +2026-03-19 19:04:34.9997|DEBUG|OnDoc| +2026-03-19 19:04:35.0936|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:04:35.0936|DEBUG|OnDoc| +2026-03-19 19:04:35.0936|DEBUG|OnDoc| +2026-03-19 19:04:35.0936|DEBUG|OnDoc| +2026-03-19 19:04:35.1025|DEBUG|OnDoc| +2026-03-19 19:04:35.1025|DEBUG|OnDoc| +2026-03-19 19:04:35.1025|DEBUG|OnDoc| +2026-03-19 19:04:35.1025|DEBUG|OnDoc| +2026-03-19 19:04:35.1025|DEBUG|OnDoc| +2026-03-19 19:04:35.1025|DEBUG|OnDoc|Generate_Word +2026-03-19 19:04:35.1251|DEBUG|OnDoc|Word2013 +2026-03-19 19:04:35.1251|DEBUG|OnDoc|Word2013 +2026-03-19 19:04:58.6751|DEBUG|OnDoc|Generate_Word +2026-03-19 19:04:58.7148|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019024 +2026-03-19 19:04:58.7148|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:04:58.7148|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:04:58.7148|DEBUG|OnDoc| +2026-03-19 19:04:58.7148|DEBUG|OnDoc| +2026-03-19 19:04:58.7148|DEBUG|OnDoc| +2026-03-19 19:04:58.7148|DEBUG|OnDoc| +2026-03-19 19:04:58.7278|DEBUG|OnDoc| +2026-03-19 19:04:58.7278|DEBUG|OnDoc| +2026-03-19 19:05:44.8986|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:05:45.1132|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:05:45.2127|INFO|APIDocLog|Input JSON +2026-03-19 19:05:45.2127|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:05:45.2127|DEBUG|OnDoc| +2026-03-19 19:05:45.2127|DEBUG|OnDoc| +2026-03-19 19:05:45.2127|DEBUG|OnDoc| +2026-03-19 19:05:45.2127|DEBUG|OnDoc| +2026-03-19 19:05:45.2127|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2277|DEBUG|OnDoc| +2026-03-19 19:05:45.2601|DEBUG|OnDoc| +2026-03-19 19:05:45.2601|DEBUG|OnDoc| +2026-03-19 19:05:45.2601|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:05:45.3124|DEBUG|OnDoc| +2026-03-19 19:05:45.3124|DEBUG|OnDoc| +2026-03-19 19:05:45.4166|DEBUG|OnDoc| +2026-03-19 19:05:45.4166|DEBUG|OnDoc| +2026-03-19 19:05:45.4166|DEBUG|OnDoc| +2026-03-19 19:05:45.4166|DEBUG|OnDoc| +2026-03-19 19:05:45.4303|DEBUG|OnDoc| +2026-03-19 19:05:45.4303|DEBUG|OnDoc| +2026-03-19 19:05:45.5272|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:05:45.5272|DEBUG|OnDoc| +2026-03-19 19:05:45.5272|DEBUG|OnDoc| +2026-03-19 19:05:45.5272|DEBUG|OnDoc| +2026-03-19 19:05:45.5272|DEBUG|OnDoc| +2026-03-19 19:05:45.5272|DEBUG|OnDoc| +2026-03-19 19:05:45.5412|DEBUG|OnDoc| +2026-03-19 19:05:45.5412|DEBUG|OnDoc| +2026-03-19 19:05:45.5412|DEBUG|OnDoc| +2026-03-19 19:05:45.5412|DEBUG|OnDoc|Generate_Word +2026-03-19 19:05:45.5592|DEBUG|OnDoc|Word2013 +2026-03-19 19:05:45.5592|DEBUG|OnDoc|Word2013 +2026-03-19 19:05:51.3512|DEBUG|OnDoc|Generate_Word +2026-03-19 19:05:51.3918|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019032 +2026-03-19 19:05:51.3918|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:05:51.3918|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:05:51.3918|DEBUG|OnDoc| +2026-03-19 19:05:51.4184|DEBUG|OnDoc| +2026-03-19 19:05:51.4184|DEBUG|OnDoc| +2026-03-19 19:05:51.4184|DEBUG|OnDoc| +2026-03-19 19:05:51.4184|DEBUG|OnDoc| +2026-03-19 19:05:51.4184|DEBUG|OnDoc| +2026-03-19 19:06:44.0647|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:06:44.3070|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:06:44.4176|INFO|APIDocLog|Input JSON +2026-03-19 19:06:44.4176|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:06:44.4176|DEBUG|OnDoc| +2026-03-19 19:06:44.4176|DEBUG|OnDoc| +2026-03-19 19:06:44.4176|DEBUG|OnDoc| +2026-03-19 19:06:44.4176|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4302|DEBUG|OnDoc| +2026-03-19 19:06:44.4629|DEBUG|OnDoc| +2026-03-19 19:06:44.4629|DEBUG|OnDoc| +2026-03-19 19:06:44.4629|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:06:44.5172|DEBUG|OnDoc| +2026-03-19 19:06:44.5172|DEBUG|OnDoc| +2026-03-19 19:06:44.6279|DEBUG|OnDoc| +2026-03-19 19:06:44.6279|DEBUG|OnDoc| +2026-03-19 19:06:44.6370|DEBUG|OnDoc| +2026-03-19 19:06:44.6370|DEBUG|OnDoc| +2026-03-19 19:06:44.6370|DEBUG|OnDoc| +2026-03-19 19:06:44.6370|DEBUG|OnDoc| +2026-03-19 19:06:44.7534|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:06:44.7534|DEBUG|OnDoc| +2026-03-19 19:06:44.7614|DEBUG|OnDoc| +2026-03-19 19:06:44.7614|DEBUG|OnDoc| +2026-03-19 19:06:44.7614|DEBUG|OnDoc| +2026-03-19 19:06:44.7614|DEBUG|OnDoc| +2026-03-19 19:06:44.7614|DEBUG|OnDoc| +2026-03-19 19:06:44.7614|DEBUG|OnDoc| +2026-03-19 19:06:44.7614|DEBUG|OnDoc| +2026-03-19 19:06:44.7614|DEBUG|OnDoc|Generate_Word +2026-03-19 19:06:44.7868|DEBUG|OnDoc|Word2013 +2026-03-19 19:06:44.7868|DEBUG|OnDoc|Word2013 +2026-03-19 19:06:47.5364|DEBUG|OnDoc|Generate_Word +2026-03-19 19:06:47.5486|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019048 +2026-03-19 19:06:47.5486|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:06:47.5486|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:06:47.5486|DEBUG|OnDoc| +2026-03-19 19:06:47.5613|DEBUG|OnDoc| +2026-03-19 19:06:47.5613|DEBUG|OnDoc| +2026-03-19 19:06:47.5613|DEBUG|OnDoc| +2026-03-19 19:06:47.5613|DEBUG|OnDoc| +2026-03-19 19:06:47.5613|DEBUG|OnDoc| +2026-03-19 19:07:02.2062|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:07:02.4467|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:07:02.5555|INFO|APIDocLog|Input JSON +2026-03-19 19:07:02.5555|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:07:02.5555|DEBUG|OnDoc| +2026-03-19 19:07:02.5555|DEBUG|OnDoc| +2026-03-19 19:07:02.5555|DEBUG|OnDoc| +2026-03-19 19:07:02.5555|DEBUG|OnDoc| +2026-03-19 19:07:02.5555|DEBUG|OnDoc| +2026-03-19 19:07:02.5555|DEBUG|OnDoc| +2026-03-19 19:07:02.5555|DEBUG|OnDoc| +2026-03-19 19:07:02.5555|DEBUG|OnDoc| +2026-03-19 19:07:02.5555|DEBUG|OnDoc| +2026-03-19 19:07:02.5555|DEBUG|OnDoc| +2026-03-19 19:07:02.5555|DEBUG|OnDoc| +2026-03-19 19:07:02.5555|DEBUG|OnDoc| +2026-03-19 19:07:02.5555|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5715|DEBUG|OnDoc| +2026-03-19 19:07:02.5920|DEBUG|OnDoc| +2026-03-19 19:07:02.5920|DEBUG|OnDoc| +2026-03-19 19:07:02.5920|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:07:02.6436|DEBUG|OnDoc| +2026-03-19 19:07:02.6436|DEBUG|OnDoc| +2026-03-19 19:07:02.7568|DEBUG|OnDoc| +2026-03-19 19:07:02.7568|DEBUG|OnDoc| +2026-03-19 19:07:02.7663|DEBUG|OnDoc| +2026-03-19 19:07:02.7663|DEBUG|OnDoc| +2026-03-19 19:07:02.7663|DEBUG|OnDoc| +2026-03-19 19:07:02.7663|DEBUG|OnDoc| +2026-03-19 19:07:02.8710|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:07:02.8710|DEBUG|OnDoc| +2026-03-19 19:07:02.8710|DEBUG|OnDoc| +2026-03-19 19:07:02.8838|DEBUG|OnDoc| +2026-03-19 19:07:02.8838|DEBUG|OnDoc| +2026-03-19 19:07:02.8838|DEBUG|OnDoc| +2026-03-19 19:07:02.8838|DEBUG|OnDoc| +2026-03-19 19:07:02.8838|DEBUG|OnDoc| +2026-03-19 19:07:02.8838|DEBUG|OnDoc| +2026-03-19 19:07:02.8838|DEBUG|OnDoc|Generate_Word +2026-03-19 19:07:02.9011|DEBUG|OnDoc|Word2013 +2026-03-19 19:07:02.9011|DEBUG|OnDoc|Word2013 +2026-03-19 19:07:09.6493|DEBUG|OnDoc|Generate_Word +2026-03-19 19:07:09.6873|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019053 +2026-03-19 19:07:09.6873|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:07:09.6873|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:07:09.6873|DEBUG|OnDoc| +2026-03-19 19:07:09.6984|DEBUG|OnDoc| +2026-03-19 19:07:09.6984|DEBUG|OnDoc| +2026-03-19 19:07:09.6984|DEBUG|OnDoc| +2026-03-19 19:07:09.6984|DEBUG|OnDoc| +2026-03-19 19:07:09.6984|DEBUG|OnDoc| +2026-03-19 19:07:55.4421|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:07:55.7086|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:07:55.8246|INFO|APIDocLog|Input JSON +2026-03-19 19:07:55.8246|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:07:55.8246|DEBUG|OnDoc| +2026-03-19 19:07:55.8246|DEBUG|OnDoc| +2026-03-19 19:07:55.8246|DEBUG|OnDoc| +2026-03-19 19:07:55.8246|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8365|DEBUG|OnDoc| +2026-03-19 19:07:55.8704|DEBUG|OnDoc| +2026-03-19 19:07:55.8704|DEBUG|OnDoc| +2026-03-19 19:07:55.8704|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:07:55.9287|DEBUG|OnDoc| +2026-03-19 19:07:55.9308|DEBUG|OnDoc| +2026-03-19 19:07:56.0482|DEBUG|OnDoc| +2026-03-19 19:07:56.0482|DEBUG|OnDoc| +2026-03-19 19:07:56.0582|DEBUG|OnDoc| +2026-03-19 19:07:56.0582|DEBUG|OnDoc| +2026-03-19 19:07:56.0582|DEBUG|OnDoc| +2026-03-19 19:07:56.0582|DEBUG|OnDoc| +2026-03-19 19:07:56.1714|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:07:56.1714|DEBUG|OnDoc| +2026-03-19 19:07:56.1714|DEBUG|OnDoc| +2026-03-19 19:07:56.1714|DEBUG|OnDoc| +2026-03-19 19:07:56.1714|DEBUG|OnDoc| +2026-03-19 19:07:56.1714|DEBUG|OnDoc| +2026-03-19 19:07:56.1897|DEBUG|OnDoc| +2026-03-19 19:07:56.1897|DEBUG|OnDoc| +2026-03-19 19:07:56.1897|DEBUG|OnDoc| +2026-03-19 19:07:56.1897|DEBUG|OnDoc|Generate_Word +2026-03-19 19:07:56.2080|DEBUG|OnDoc|Word2013 +2026-03-19 19:07:56.2080|DEBUG|OnDoc|Word2013 +2026-03-19 19:07:59.2273|DEBUG|OnDoc|Generate_Word +2026-03-19 19:07:59.2273|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019069 +2026-03-19 19:07:59.2273|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:07:59.2273|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:07:59.2273|DEBUG|OnDoc| +2026-03-19 19:07:59.2502|DEBUG|OnDoc| +2026-03-19 19:07:59.2502|DEBUG|OnDoc| +2026-03-19 19:07:59.2502|DEBUG|OnDoc| +2026-03-19 19:07:59.2502|DEBUG|OnDoc| +2026-03-19 19:07:59.2502|DEBUG|OnDoc| +2026-03-19 19:08:58.6350|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:08:58.8836|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:08:59.0015|INFO|APIDocLog|Input JSON +2026-03-19 19:08:59.0120|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0120|DEBUG|OnDoc| +2026-03-19 19:08:59.0241|DEBUG|OnDoc| +2026-03-19 19:08:59.0241|DEBUG|OnDoc| +2026-03-19 19:08:59.0241|DEBUG|OnDoc| +2026-03-19 19:08:59.0241|DEBUG|OnDoc| +2026-03-19 19:08:59.0241|DEBUG|OnDoc| +2026-03-19 19:08:59.0241|DEBUG|OnDoc| +2026-03-19 19:08:59.0457|DEBUG|OnDoc| +2026-03-19 19:08:59.0457|DEBUG|OnDoc| +2026-03-19 19:08:59.0457|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:08:59.0956|DEBUG|OnDoc| +2026-03-19 19:08:59.0956|DEBUG|OnDoc| +2026-03-19 19:08:59.2185|DEBUG|OnDoc| +2026-03-19 19:08:59.2185|DEBUG|OnDoc| +2026-03-19 19:08:59.2279|DEBUG|OnDoc| +2026-03-19 19:08:59.2279|DEBUG|OnDoc| +2026-03-19 19:08:59.2279|DEBUG|OnDoc| +2026-03-19 19:08:59.2279|DEBUG|OnDoc| +2026-03-19 19:08:59.3426|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:08:59.3426|DEBUG|OnDoc| +2026-03-19 19:08:59.3426|DEBUG|OnDoc| +2026-03-19 19:08:59.3426|DEBUG|OnDoc| +2026-03-19 19:08:59.3426|DEBUG|OnDoc| +2026-03-19 19:08:59.3426|DEBUG|OnDoc| +2026-03-19 19:08:59.3546|DEBUG|OnDoc| +2026-03-19 19:08:59.3546|DEBUG|OnDoc| +2026-03-19 19:08:59.3546|DEBUG|OnDoc| +2026-03-19 19:08:59.3546|DEBUG|OnDoc|Generate_Word +2026-03-19 19:08:59.3546|DEBUG|OnDoc|Word2013 +2026-03-19 19:08:59.3689|DEBUG|OnDoc|Word2013 +2026-03-19 19:09:02.3672|DEBUG|OnDoc|Generate_Word +2026-03-19 19:09:02.3788|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019077 +2026-03-19 19:09:02.3788|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:09:02.3788|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:09:02.3788|DEBUG|OnDoc| +2026-03-19 19:09:02.3888|DEBUG|OnDoc| +2026-03-19 19:09:02.3888|DEBUG|OnDoc| +2026-03-19 19:09:02.3888|DEBUG|OnDoc| +2026-03-19 19:09:02.3888|DEBUG|OnDoc| +2026-03-19 19:09:02.3888|DEBUG|OnDoc| +2026-03-19 19:09:19.1389|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:09:19.3826|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:09:19.5023|INFO|APIDocLog|Input JSON +2026-03-19 19:09:19.5134|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:09:19.5134|DEBUG|OnDoc| +2026-03-19 19:09:19.5134|DEBUG|OnDoc| +2026-03-19 19:09:19.5134|DEBUG|OnDoc| +2026-03-19 19:09:19.5134|DEBUG|OnDoc| +2026-03-19 19:09:19.5134|DEBUG|OnDoc| +2026-03-19 19:09:19.5134|DEBUG|OnDoc| +2026-03-19 19:09:19.5134|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5245|DEBUG|OnDoc| +2026-03-19 19:09:19.5398|DEBUG|OnDoc| +2026-03-19 19:09:19.5398|DEBUG|OnDoc| +2026-03-19 19:09:19.5398|DEBUG|OnDoc| +2026-03-19 19:09:19.5398|DEBUG|OnDoc| +2026-03-19 19:09:19.5398|DEBUG|OnDoc| +2026-03-19 19:09:19.5398|DEBUG|OnDoc| +2026-03-19 19:09:19.5398|DEBUG|OnDoc| +2026-03-19 19:09:19.5398|DEBUG|OnDoc| +2026-03-19 19:09:19.5398|DEBUG|OnDoc| +2026-03-19 19:09:19.5398|DEBUG|OnDoc| +2026-03-19 19:09:19.5398|DEBUG|OnDoc| +2026-03-19 19:09:19.5615|DEBUG|OnDoc| +2026-03-19 19:09:19.5615|DEBUG|OnDoc| +2026-03-19 19:09:19.5719|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:09:19.6193|DEBUG|OnDoc| +2026-03-19 19:09:19.6193|DEBUG|OnDoc| +2026-03-19 19:09:19.7411|DEBUG|OnDoc| +2026-03-19 19:09:19.7411|DEBUG|OnDoc| +2026-03-19 19:09:19.7528|DEBUG|OnDoc| +2026-03-19 19:09:19.7528|DEBUG|OnDoc| +2026-03-19 19:09:19.7528|DEBUG|OnDoc| +2026-03-19 19:09:19.7528|DEBUG|OnDoc| +2026-03-19 19:09:19.8646|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:09:19.8646|DEBUG|OnDoc| +2026-03-19 19:09:19.8729|DEBUG|OnDoc| +2026-03-19 19:09:19.8729|DEBUG|OnDoc| +2026-03-19 19:09:19.8729|DEBUG|OnDoc| +2026-03-19 19:09:19.8729|DEBUG|OnDoc| +2026-03-19 19:09:19.8855|DEBUG|OnDoc| +2026-03-19 19:09:19.8855|DEBUG|OnDoc| +2026-03-19 19:09:19.8855|DEBUG|OnDoc| +2026-03-19 19:09:19.8855|DEBUG|OnDoc|Generate_Word +2026-03-19 19:09:19.8990|DEBUG|OnDoc|Word2013 +2026-03-19 19:09:19.8990|DEBUG|OnDoc|Word2013 +2026-03-19 19:09:22.7972|DEBUG|OnDoc|Generate_Word +2026-03-19 19:09:22.8105|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019085 +2026-03-19 19:09:22.8105|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:09:22.8105|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:09:22.8105|DEBUG|OnDoc| +2026-03-19 19:09:22.8242|DEBUG|OnDoc| +2026-03-19 19:09:22.8242|DEBUG|OnDoc| +2026-03-19 19:09:22.8242|DEBUG|OnDoc| +2026-03-19 19:09:22.8242|DEBUG|OnDoc| +2026-03-19 19:09:22.8242|DEBUG|OnDoc| +2026-03-19 19:10:13.2650|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:10:13.5367|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:10:13.6594|INFO|APIDocLog|Input JSON +2026-03-19 19:10:13.6712|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:10:13.6712|DEBUG|OnDoc| +2026-03-19 19:10:13.6712|DEBUG|OnDoc| +2026-03-19 19:10:13.6712|DEBUG|OnDoc| +2026-03-19 19:10:13.6712|DEBUG|OnDoc| +2026-03-19 19:10:13.6712|DEBUG|OnDoc| +2026-03-19 19:10:13.6712|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6811|DEBUG|OnDoc| +2026-03-19 19:10:13.6967|DEBUG|OnDoc| +2026-03-19 19:10:13.6967|DEBUG|OnDoc| +2026-03-19 19:10:13.6967|DEBUG|OnDoc| +2026-03-19 19:10:13.6967|DEBUG|OnDoc| +2026-03-19 19:10:13.6967|DEBUG|OnDoc| +2026-03-19 19:10:13.7196|DEBUG|OnDoc| +2026-03-19 19:10:13.7196|DEBUG|OnDoc| +2026-03-19 19:10:13.7318|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:10:13.7766|DEBUG|OnDoc| +2026-03-19 19:10:13.7766|DEBUG|OnDoc| +2026-03-19 19:10:13.9080|DEBUG|OnDoc| +2026-03-19 19:10:13.9080|DEBUG|OnDoc| +2026-03-19 19:10:13.9204|DEBUG|OnDoc| +2026-03-19 19:10:13.9204|DEBUG|OnDoc| +2026-03-19 19:10:13.9204|DEBUG|OnDoc| +2026-03-19 19:10:13.9204|DEBUG|OnDoc| +2026-03-19 19:10:14.0393|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:10:14.0412|DEBUG|OnDoc| +2026-03-19 19:10:14.0839|DEBUG|OnDoc| +2026-03-19 19:10:14.0874|DEBUG|OnDoc| +2026-03-19 19:10:14.0874|DEBUG|OnDoc| +2026-03-19 19:10:14.0874|DEBUG|OnDoc| +2026-03-19 19:10:14.0874|DEBUG|OnDoc| +2026-03-19 19:10:14.1021|DEBUG|OnDoc| +2026-03-19 19:10:14.1021|DEBUG|OnDoc| +2026-03-19 19:10:14.1021|DEBUG|OnDoc|Generate_Word +2026-03-19 19:10:14.1207|DEBUG|OnDoc|Word2013 +2026-03-19 19:10:14.1207|DEBUG|OnDoc|Word2013 +2026-03-19 19:10:20.1109|DEBUG|OnDoc|Generate_Word +2026-03-19 19:10:20.1555|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019090 +2026-03-19 19:10:20.1555|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:10:20.1555|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:10:20.1555|DEBUG|OnDoc| +2026-03-19 19:10:20.1754|DEBUG|OnDoc| +2026-03-19 19:10:20.1754|DEBUG|OnDoc| +2026-03-19 19:10:20.1754|DEBUG|OnDoc| +2026-03-19 19:10:20.1754|DEBUG|OnDoc| +2026-03-19 19:10:20.1804|DEBUG|OnDoc| +2026-03-19 19:11:34.8907|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:11:35.1702|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:11:35.3034|INFO|APIDocLog|Input JSON +2026-03-19 19:11:35.3154|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:11:35.3154|DEBUG|OnDoc| +2026-03-19 19:11:35.3154|DEBUG|OnDoc| +2026-03-19 19:11:35.3154|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3215|DEBUG|OnDoc| +2026-03-19 19:11:35.3374|DEBUG|OnDoc| +2026-03-19 19:11:35.3374|DEBUG|OnDoc| +2026-03-19 19:11:35.3374|DEBUG|OnDoc| +2026-03-19 19:11:35.3374|DEBUG|OnDoc| +2026-03-19 19:11:35.3374|DEBUG|OnDoc| +2026-03-19 19:11:35.3374|DEBUG|OnDoc| +2026-03-19 19:11:35.3374|DEBUG|OnDoc| +2026-03-19 19:11:35.3374|DEBUG|OnDoc| +2026-03-19 19:11:35.3374|DEBUG|OnDoc| +2026-03-19 19:11:35.3374|DEBUG|OnDoc| +2026-03-19 19:11:35.3374|DEBUG|OnDoc| +2026-03-19 19:11:35.3374|DEBUG|OnDoc| +2026-03-19 19:11:35.3374|DEBUG|OnDoc| +2026-03-19 19:11:35.3374|DEBUG|OnDoc| +2026-03-19 19:11:35.3742|DEBUG|OnDoc| +2026-03-19 19:11:35.3742|DEBUG|OnDoc| +2026-03-19 19:11:35.3848|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:11:35.4306|DEBUG|OnDoc| +2026-03-19 19:11:35.4306|DEBUG|OnDoc| +2026-03-19 19:11:35.5668|DEBUG|OnDoc| +2026-03-19 19:11:35.5668|DEBUG|OnDoc| +2026-03-19 19:11:35.5799|DEBUG|OnDoc| +2026-03-19 19:11:35.5799|DEBUG|OnDoc| +2026-03-19 19:11:35.5799|DEBUG|OnDoc| +2026-03-19 19:11:35.5799|DEBUG|OnDoc| +2026-03-19 19:11:35.7114|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:11:35.7114|DEBUG|OnDoc| +2026-03-19 19:11:35.7114|DEBUG|OnDoc| +2026-03-19 19:11:35.7114|DEBUG|OnDoc| +2026-03-19 19:11:35.7114|DEBUG|OnDoc| +2026-03-19 19:11:35.7114|DEBUG|OnDoc| +2026-03-19 19:11:35.7274|DEBUG|OnDoc| +2026-03-19 19:11:35.7274|DEBUG|OnDoc| +2026-03-19 19:11:35.7274|DEBUG|OnDoc| +2026-03-19 19:11:35.7274|DEBUG|OnDoc|Generate_Word +2026-03-19 19:11:35.7446|DEBUG|OnDoc|Word2013 +2026-03-19 19:11:35.7446|DEBUG|OnDoc|Word2013 +2026-03-19 19:11:41.0003|DEBUG|OnDoc|Generate_Word +2026-03-19 19:11:41.0410|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019104 +2026-03-19 19:11:41.0410|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:11:41.0410|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:11:41.0410|DEBUG|OnDoc| +2026-03-19 19:11:41.0616|DEBUG|OnDoc| +2026-03-19 19:11:41.0616|DEBUG|OnDoc| +2026-03-19 19:11:41.0616|DEBUG|OnDoc| +2026-03-19 19:11:41.0616|DEBUG|OnDoc| +2026-03-19 19:11:41.0616|DEBUG|OnDoc| +2026-03-19 19:13:06.4953|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:13:06.7712|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:13:06.9013|INFO|APIDocLog|Input JSON +2026-03-19 19:13:06.9013|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:13:06.9013|DEBUG|OnDoc| +2026-03-19 19:13:06.9013|DEBUG|OnDoc| +2026-03-19 19:13:06.9013|DEBUG|OnDoc| +2026-03-19 19:13:06.9013|DEBUG|OnDoc| +2026-03-19 19:13:06.9013|DEBUG|OnDoc| +2026-03-19 19:13:06.9013|DEBUG|OnDoc| +2026-03-19 19:13:06.9013|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9152|DEBUG|OnDoc| +2026-03-19 19:13:06.9381|DEBUG|OnDoc| +2026-03-19 19:13:06.9381|DEBUG|OnDoc| +2026-03-19 19:13:06.9496|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:13:07.0150|DEBUG|OnDoc| +2026-03-19 19:13:07.0150|DEBUG|OnDoc| +2026-03-19 19:13:07.1524|DEBUG|OnDoc| +2026-03-19 19:13:07.1524|DEBUG|OnDoc| +2026-03-19 19:13:07.1524|DEBUG|OnDoc| +2026-03-19 19:13:07.1524|DEBUG|OnDoc| +2026-03-19 19:13:07.1524|DEBUG|OnDoc| +2026-03-19 19:13:07.1524|DEBUG|OnDoc| +2026-03-19 19:13:07.2863|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:13:07.2863|DEBUG|OnDoc| +2026-03-19 19:13:07.2948|DEBUG|OnDoc| +2026-03-19 19:13:07.2948|DEBUG|OnDoc| +2026-03-19 19:13:07.2948|DEBUG|OnDoc| +2026-03-19 19:13:07.2948|DEBUG|OnDoc| +2026-03-19 19:13:07.2948|DEBUG|OnDoc| +2026-03-19 19:13:07.2948|DEBUG|OnDoc| +2026-03-19 19:13:07.2948|DEBUG|OnDoc| +2026-03-19 19:13:07.3062|DEBUG|OnDoc|Generate_Word +2026-03-19 19:13:07.3062|DEBUG|OnDoc|Word2013 +2026-03-19 19:13:07.3062|DEBUG|OnDoc|Word2013 +2026-03-19 19:13:37.8008|DEBUG|OnDoc|Generate_Word +2026-03-19 19:13:37.8445|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019112 +2026-03-19 19:13:37.8445|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:13:37.8445|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:13:37.8445|DEBUG|OnDoc| +2026-03-19 19:13:37.8602|DEBUG|OnDoc| +2026-03-19 19:13:37.8602|DEBUG|OnDoc| +2026-03-19 19:13:37.8602|DEBUG|OnDoc| +2026-03-19 19:13:37.8602|DEBUG|OnDoc| +2026-03-19 19:13:37.8602|DEBUG|OnDoc| +2026-03-19 19:14:29.3774|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:14:29.6981|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:14:29.8385|INFO|APIDocLog|Input JSON +2026-03-19 19:14:29.8385|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8521|DEBUG|OnDoc| +2026-03-19 19:14:29.8681|DEBUG|OnDoc| +2026-03-19 19:14:29.8681|DEBUG|OnDoc| +2026-03-19 19:14:29.8681|DEBUG|OnDoc| +2026-03-19 19:14:29.8681|DEBUG|OnDoc| +2026-03-19 19:14:29.8681|DEBUG|OnDoc| +2026-03-19 19:14:29.8681|DEBUG|OnDoc| +2026-03-19 19:14:29.8681|DEBUG|OnDoc| +2026-03-19 19:14:29.8681|DEBUG|OnDoc| +2026-03-19 19:14:29.8681|DEBUG|OnDoc| +2026-03-19 19:14:29.8681|DEBUG|OnDoc| +2026-03-19 19:14:29.8681|DEBUG|OnDoc| +2026-03-19 19:14:29.8681|DEBUG|OnDoc| +2026-03-19 19:14:29.8681|DEBUG|OnDoc| +2026-03-19 19:14:29.8842|DEBUG|OnDoc| +2026-03-19 19:14:29.8842|DEBUG|OnDoc| +2026-03-19 19:14:29.8842|DEBUG|OnDoc| +2026-03-19 19:14:29.8842|DEBUG|OnDoc| +2026-03-19 19:14:29.8842|DEBUG|OnDoc| +2026-03-19 19:14:29.8842|DEBUG|OnDoc| +2026-03-19 19:14:29.9019|DEBUG|OnDoc| +2026-03-19 19:14:29.9019|DEBUG|OnDoc| +2026-03-19 19:14:29.9019|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:14:29.9558|DEBUG|OnDoc| +2026-03-19 19:14:29.9558|DEBUG|OnDoc| +2026-03-19 19:14:30.1095|DEBUG|OnDoc| +2026-03-19 19:14:30.1095|DEBUG|OnDoc| +2026-03-19 19:14:30.1220|DEBUG|OnDoc| +2026-03-19 19:14:30.1220|DEBUG|OnDoc| +2026-03-19 19:14:30.1220|DEBUG|OnDoc| +2026-03-19 19:14:30.1220|DEBUG|OnDoc| +2026-03-19 19:14:30.2641|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:14:30.2641|DEBUG|OnDoc| +2026-03-19 19:14:30.2641|DEBUG|OnDoc| +2026-03-19 19:14:30.2641|DEBUG|OnDoc| +2026-03-19 19:14:30.2751|DEBUG|OnDoc| +2026-03-19 19:14:30.2751|DEBUG|OnDoc| +2026-03-19 19:14:30.2751|DEBUG|OnDoc| +2026-03-19 19:14:30.2751|DEBUG|OnDoc| +2026-03-19 19:14:30.2751|DEBUG|OnDoc| +2026-03-19 19:14:30.2905|DEBUG|OnDoc|Generate_Word +2026-03-19 19:14:30.2905|DEBUG|OnDoc|Word2013 +2026-03-19 19:14:30.3061|DEBUG|OnDoc|Word2013 +2026-03-19 19:14:41.5836|DEBUG|OnDoc|Generate_Word +2026-03-19 19:14:41.6229|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019128 +2026-03-19 19:14:41.6229|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:14:41.6229|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:14:41.6229|DEBUG|OnDoc| +2026-03-19 19:14:41.6371|DEBUG|OnDoc| +2026-03-19 19:14:41.6371|DEBUG|OnDoc| +2026-03-19 19:14:41.6371|DEBUG|OnDoc| +2026-03-19 19:14:41.6371|DEBUG|OnDoc| +2026-03-19 19:14:41.6371|DEBUG|OnDoc| +2026-03-19 19:14:52.7163|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:14:53.0159|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:14:53.1548|INFO|APIDocLog|Input JSON +2026-03-19 19:14:53.1646|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1646|DEBUG|OnDoc| +2026-03-19 19:14:53.1937|DEBUG|OnDoc| +2026-03-19 19:14:53.1937|DEBUG|OnDoc| +2026-03-19 19:14:53.2038|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:14:53.2474|DEBUG|OnDoc| +2026-03-19 19:14:53.2474|DEBUG|OnDoc| +2026-03-19 19:14:53.3937|DEBUG|OnDoc| +2026-03-19 19:14:53.3937|DEBUG|OnDoc| +2026-03-19 19:14:53.4049|DEBUG|OnDoc| +2026-03-19 19:14:53.4049|DEBUG|OnDoc| +2026-03-19 19:14:53.4049|DEBUG|OnDoc| +2026-03-19 19:14:53.4049|DEBUG|OnDoc| +2026-03-19 19:14:53.5401|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:14:53.5401|DEBUG|OnDoc| +2026-03-19 19:14:53.5401|DEBUG|OnDoc| +2026-03-19 19:14:53.5401|DEBUG|OnDoc| +2026-03-19 19:14:53.5401|DEBUG|OnDoc| +2026-03-19 19:14:53.5401|DEBUG|OnDoc| +2026-03-19 19:14:53.5401|DEBUG|OnDoc| +2026-03-19 19:14:53.5401|DEBUG|OnDoc| +2026-03-19 19:14:53.5597|DEBUG|OnDoc| +2026-03-19 19:14:53.5597|DEBUG|OnDoc|Generate_Word +2026-03-19 19:14:53.5597|DEBUG|OnDoc|Word2013 +2026-03-19 19:14:53.5597|DEBUG|OnDoc|Word2013 +2026-03-19 19:15:00.4940|DEBUG|OnDoc|Generate_Word +2026-03-19 19:15:00.5332|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019133 +2026-03-19 19:15:00.5332|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:15:00.5332|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:15:00.5332|DEBUG|OnDoc| +2026-03-19 19:15:00.5484|DEBUG|OnDoc| +2026-03-19 19:15:00.5484|DEBUG|OnDoc| +2026-03-19 19:15:00.5484|DEBUG|OnDoc| +2026-03-19 19:15:00.5484|DEBUG|OnDoc| +2026-03-19 19:15:00.5484|DEBUG|OnDoc| +2026-03-19 19:15:02.1743|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:15:02.4361|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:15:02.5756|INFO|APIDocLog|Input JSON +2026-03-19 19:15:02.5756|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:15:02.5756|DEBUG|OnDoc| +2026-03-19 19:15:02.5756|DEBUG|OnDoc| +2026-03-19 19:15:02.5756|DEBUG|OnDoc| +2026-03-19 19:15:02.5756|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.5869|DEBUG|OnDoc| +2026-03-19 19:15:02.6096|DEBUG|OnDoc| +2026-03-19 19:15:02.6096|DEBUG|OnDoc| +2026-03-19 19:15:02.6186|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:15:02.6644|DEBUG|OnDoc| +2026-03-19 19:15:02.6661|DEBUG|OnDoc| +2026-03-19 19:15:02.8076|DEBUG|OnDoc| +2026-03-19 19:15:02.8076|DEBUG|OnDoc| +2026-03-19 19:15:02.8076|DEBUG|OnDoc| +2026-03-19 19:15:02.8076|DEBUG|OnDoc| +2026-03-19 19:15:02.8076|DEBUG|OnDoc| +2026-03-19 19:15:02.8076|DEBUG|OnDoc| +2026-03-19 19:15:02.9504|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:15:02.9504|DEBUG|OnDoc| +2026-03-19 19:15:02.9504|DEBUG|OnDoc| +2026-03-19 19:15:02.9504|DEBUG|OnDoc| +2026-03-19 19:15:02.9504|DEBUG|OnDoc| +2026-03-19 19:15:02.9504|DEBUG|OnDoc| +2026-03-19 19:15:02.9633|DEBUG|OnDoc| +2026-03-19 19:15:02.9633|DEBUG|OnDoc| +2026-03-19 19:15:02.9633|DEBUG|OnDoc| +2026-03-19 19:15:02.9633|DEBUG|OnDoc|Generate_Word +2026-03-19 19:15:02.9633|DEBUG|OnDoc|Word2013 +2026-03-19 19:15:02.9633|DEBUG|OnDoc|Word2013 +2026-03-19 19:15:15.6143|DEBUG|OnDoc|Generate_Word +2026-03-19 19:15:15.6549|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019149 +2026-03-19 19:15:15.6549|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:15:15.6549|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:15:15.6549|DEBUG|OnDoc| +2026-03-19 19:15:15.6700|DEBUG|OnDoc| +2026-03-19 19:15:15.6700|DEBUG|OnDoc| +2026-03-19 19:15:15.6700|DEBUG|OnDoc| +2026-03-19 19:15:15.6700|DEBUG|OnDoc| +2026-03-19 19:15:15.6700|DEBUG|OnDoc| +2026-03-19 19:15:22.4674|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:15:22.7630|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:15:22.9004|INFO|APIDocLog|Input JSON +2026-03-19 19:15:22.9004|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:15:22.9004|DEBUG|OnDoc| +2026-03-19 19:15:22.9004|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9154|DEBUG|OnDoc| +2026-03-19 19:15:22.9312|DEBUG|OnDoc| +2026-03-19 19:15:22.9312|DEBUG|OnDoc| +2026-03-19 19:15:22.9312|DEBUG|OnDoc| +2026-03-19 19:15:22.9312|DEBUG|OnDoc| +2026-03-19 19:15:22.9312|DEBUG|OnDoc| +2026-03-19 19:15:22.9312|DEBUG|OnDoc| +2026-03-19 19:15:22.9312|DEBUG|OnDoc| +2026-03-19 19:15:22.9312|DEBUG|OnDoc| +2026-03-19 19:15:22.9312|DEBUG|OnDoc| +2026-03-19 19:15:22.9312|DEBUG|OnDoc| +2026-03-19 19:15:22.9312|DEBUG|OnDoc| +2026-03-19 19:15:22.9312|DEBUG|OnDoc| +2026-03-19 19:15:22.9312|DEBUG|OnDoc| +2026-03-19 19:15:22.9312|DEBUG|OnDoc| +2026-03-19 19:15:22.9527|DEBUG|OnDoc| +2026-03-19 19:15:22.9527|DEBUG|OnDoc| +2026-03-19 19:15:22.9655|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:15:23.0083|DEBUG|OnDoc| +2026-03-19 19:15:23.0083|DEBUG|OnDoc| +2026-03-19 19:15:23.1573|DEBUG|OnDoc| +2026-03-19 19:15:23.1573|DEBUG|OnDoc| +2026-03-19 19:15:23.1691|DEBUG|OnDoc| +2026-03-19 19:15:23.1691|DEBUG|OnDoc| +2026-03-19 19:15:23.1691|DEBUG|OnDoc| +2026-03-19 19:15:23.1691|DEBUG|OnDoc| +2026-03-19 19:15:23.3053|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:15:23.3053|DEBUG|OnDoc| +2026-03-19 19:15:23.3053|DEBUG|OnDoc| +2026-03-19 19:15:23.3053|DEBUG|OnDoc| +2026-03-19 19:15:23.3053|DEBUG|OnDoc| +2026-03-19 19:15:23.3053|DEBUG|OnDoc| +2026-03-19 19:15:23.3228|DEBUG|OnDoc| +2026-03-19 19:15:23.3228|DEBUG|OnDoc| +2026-03-19 19:15:23.3228|DEBUG|OnDoc| +2026-03-19 19:15:23.3228|DEBUG|OnDoc|Generate_Word +2026-03-19 19:15:23.3369|DEBUG|OnDoc|Word2013 +2026-03-19 19:15:23.3369|DEBUG|OnDoc|Word2013 +2026-03-19 19:16:06.9387|DEBUG|OnDoc| +2026-03-19 19:16:07.0433|DEBUG|OnDoc| +2026-03-19 19:16:07.0433|DEBUG|OnDoc| +2026-03-19 19:16:07.0433|DEBUG|OnDoc| +2026-03-19 19:18:08.8781|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:18:09.0979|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:18:09.1847|INFO|APIDocLog|Input JSON +2026-03-19 19:18:09.2031|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:18:09.2031|DEBUG|OnDoc| +2026-03-19 19:18:09.2031|DEBUG|OnDoc| +2026-03-19 19:18:09.2031|DEBUG|OnDoc| +2026-03-19 19:18:09.2031|DEBUG|OnDoc| +2026-03-19 19:18:09.2031|DEBUG|OnDoc| +2026-03-19 19:18:09.2031|DEBUG|OnDoc| +2026-03-19 19:18:09.2031|DEBUG|OnDoc| +2026-03-19 19:18:09.2031|DEBUG|OnDoc| +2026-03-19 19:18:09.2031|DEBUG|OnDoc| +2026-03-19 19:18:09.2031|DEBUG|OnDoc| +2026-03-19 19:18:09.2031|DEBUG|OnDoc| +2026-03-19 19:18:09.2031|DEBUG|OnDoc| +2026-03-19 19:18:09.2123|DEBUG|OnDoc| +2026-03-19 19:18:09.2123|DEBUG|OnDoc| +2026-03-19 19:18:09.2123|DEBUG|OnDoc| +2026-03-19 19:18:09.2123|DEBUG|OnDoc| +2026-03-19 19:18:09.2123|DEBUG|OnDoc| +2026-03-19 19:18:09.2123|DEBUG|OnDoc| +2026-03-19 19:18:09.2123|DEBUG|OnDoc| +2026-03-19 19:18:09.2123|DEBUG|OnDoc| +2026-03-19 19:18:09.2291|DEBUG|OnDoc| +2026-03-19 19:18:09.2291|DEBUG|OnDoc| +2026-03-19 19:18:09.2291|DEBUG|OnDoc| +2026-03-19 19:18:09.2291|DEBUG|OnDoc| +2026-03-19 19:18:09.2291|DEBUG|OnDoc| +2026-03-19 19:18:09.2291|DEBUG|OnDoc| +2026-03-19 19:18:09.2291|DEBUG|OnDoc| +2026-03-19 19:18:09.2291|DEBUG|OnDoc| +2026-03-19 19:18:09.2291|DEBUG|OnDoc| +2026-03-19 19:18:09.2291|DEBUG|OnDoc| +2026-03-19 19:18:09.2291|DEBUG|OnDoc| +2026-03-19 19:18:09.2291|DEBUG|OnDoc| +2026-03-19 19:18:09.2291|DEBUG|OnDoc| +2026-03-19 19:18:09.2291|DEBUG|OnDoc| +2026-03-19 19:18:09.2560|DEBUG|OnDoc| +2026-03-19 19:18:09.2583|DEBUG|OnDoc| +2026-03-19 19:18:09.2583|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:18:09.4384|DEBUG|OnDoc| +2026-03-19 19:18:09.4485|DEBUG|OnDoc| +2026-03-19 19:18:09.4851|DEBUG|OnDoc| +2026-03-19 19:18:09.4851|DEBUG|OnDoc| +2026-03-19 19:18:09.5113|DEBUG|OnDoc| +2026-03-19 19:18:09.5113|DEBUG|OnDoc| +2026-03-19 19:18:09.5113|DEBUG|OnDoc| +2026-03-19 19:18:09.5113|DEBUG|OnDoc| +2026-03-19 19:18:09.5318|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:18:09.5318|DEBUG|OnDoc| +2026-03-19 19:18:09.5399|DEBUG|OnDoc| +2026-03-19 19:18:09.5399|DEBUG|OnDoc| +2026-03-19 19:18:09.5399|DEBUG|OnDoc| +2026-03-19 19:18:09.5399|DEBUG|OnDoc| +2026-03-19 19:18:09.5399|DEBUG|OnDoc| +2026-03-19 19:18:09.5399|DEBUG|OnDoc| +2026-03-19 19:18:09.5399|DEBUG|OnDoc| +2026-03-19 19:18:09.5399|DEBUG|OnDoc|Generate_Word +2026-03-19 19:18:09.9770|DEBUG|OnDoc|Word2013 +2026-03-19 19:18:09.9770|DEBUG|OnDoc|Word2013 +2026-03-19 19:18:22.6480|DEBUG|OnDoc|Generate_Word +2026-03-19 19:18:22.7576|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019165 +2026-03-19 19:18:22.7601|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:18:22.7601|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:18:22.7601|DEBUG|OnDoc| +2026-03-19 19:18:22.7745|DEBUG|OnDoc| +2026-03-19 19:18:22.7745|DEBUG|OnDoc| +2026-03-19 19:18:22.7745|DEBUG|OnDoc| +2026-03-19 19:18:22.7745|DEBUG|OnDoc| +2026-03-19 19:18:22.7745|DEBUG|OnDoc| +2026-03-19 19:18:35.5527|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:18:35.5948|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:18:35.6146|INFO|APIDocLog|Input JSON +2026-03-19 19:18:35.6177|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6177|DEBUG|OnDoc| +2026-03-19 19:18:35.6342|DEBUG|OnDoc| +2026-03-19 19:18:35.6342|DEBUG|OnDoc| +2026-03-19 19:18:35.6342|DEBUG|OnDoc| +2026-03-19 19:18:35.6342|DEBUG|OnDoc| +2026-03-19 19:18:35.6342|DEBUG|OnDoc| +2026-03-19 19:18:35.6497|DEBUG|OnDoc| +2026-03-19 19:18:35.6497|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:18:35.7015|DEBUG|OnDoc| +2026-03-19 19:18:35.7015|DEBUG|OnDoc| +2026-03-19 19:18:35.7159|DEBUG|OnDoc| +2026-03-19 19:18:35.7159|DEBUG|OnDoc| +2026-03-19 19:18:35.7159|DEBUG|OnDoc| +2026-03-19 19:18:35.7159|DEBUG|OnDoc| +2026-03-19 19:18:35.7159|DEBUG|OnDoc| +2026-03-19 19:18:35.7276|DEBUG|OnDoc| +2026-03-19 19:18:35.7276|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:18:35.7276|DEBUG|OnDoc| +2026-03-19 19:18:35.7452|DEBUG|OnDoc| +2026-03-19 19:18:35.7452|DEBUG|OnDoc| +2026-03-19 19:18:35.7452|DEBUG|OnDoc| +2026-03-19 19:18:35.7452|DEBUG|OnDoc| +2026-03-19 19:18:35.7452|DEBUG|OnDoc| +2026-03-19 19:18:35.7452|DEBUG|OnDoc| +2026-03-19 19:18:35.7452|DEBUG|OnDoc| +2026-03-19 19:18:35.7452|DEBUG|OnDoc|Generate_Word +2026-03-19 19:18:35.7636|DEBUG|OnDoc|Word2013 +2026-03-19 19:18:35.7636|DEBUG|OnDoc|Word2013 +2026-03-19 19:18:47.2116|DEBUG|OnDoc|Generate_Word +2026-03-19 19:18:47.2116|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019170 +2026-03-19 19:18:47.2116|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:18:47.2116|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:18:47.2116|DEBUG|OnDoc| +2026-03-19 19:18:47.2368|DEBUG|OnDoc| +2026-03-19 19:18:47.2368|DEBUG|OnDoc| +2026-03-19 19:18:47.2368|DEBUG|OnDoc| +2026-03-19 19:18:47.2368|DEBUG|OnDoc| +2026-03-19 19:18:47.2368|DEBUG|OnDoc| +2026-03-19 19:18:56.5095|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:18:56.5528|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:18:56.5753|INFO|APIDocLog|Input JSON +2026-03-19 19:18:56.5753|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:18:56.5753|DEBUG|OnDoc| +2026-03-19 19:18:56.5753|DEBUG|OnDoc| +2026-03-19 19:18:56.5753|DEBUG|OnDoc| +2026-03-19 19:18:56.5753|DEBUG|OnDoc| +2026-03-19 19:18:56.5753|DEBUG|OnDoc| +2026-03-19 19:18:56.5753|DEBUG|OnDoc| +2026-03-19 19:18:56.5753|DEBUG|OnDoc| +2026-03-19 19:18:56.5753|DEBUG|OnDoc| +2026-03-19 19:18:56.5753|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.5873|DEBUG|OnDoc| +2026-03-19 19:18:56.6025|DEBUG|OnDoc| +2026-03-19 19:18:56.6025|DEBUG|OnDoc| +2026-03-19 19:18:56.6197|DEBUG|OnDoc| +2026-03-19 19:18:56.6197|DEBUG|OnDoc| +2026-03-19 19:18:56.6197|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:18:56.6716|DEBUG|OnDoc| +2026-03-19 19:18:56.6716|DEBUG|OnDoc| +2026-03-19 19:18:56.6879|DEBUG|OnDoc| +2026-03-19 19:18:56.6879|DEBUG|OnDoc| +2026-03-19 19:18:56.6977|DEBUG|OnDoc| +2026-03-19 19:18:56.6977|DEBUG|OnDoc| +2026-03-19 19:18:56.6977|DEBUG|OnDoc| +2026-03-19 19:18:56.6977|DEBUG|OnDoc| +2026-03-19 19:18:56.6977|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:18:56.6977|DEBUG|OnDoc| +2026-03-19 19:18:56.7156|DEBUG|OnDoc| +2026-03-19 19:18:56.7156|DEBUG|OnDoc| +2026-03-19 19:18:56.7156|DEBUG|OnDoc| +2026-03-19 19:18:56.7156|DEBUG|OnDoc| +2026-03-19 19:18:56.7156|DEBUG|OnDoc| +2026-03-19 19:18:56.7156|DEBUG|OnDoc| +2026-03-19 19:18:56.7295|DEBUG|OnDoc| +2026-03-19 19:18:56.7295|DEBUG|OnDoc|Generate_Word +2026-03-19 19:18:56.7295|DEBUG|OnDoc|Word2013 +2026-03-19 19:18:56.7295|DEBUG|OnDoc|Word2013 +2026-03-19 19:19:30.4054|DEBUG|OnDoc|Generate_Word +2026-03-19 19:19:30.4456|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019181 +2026-03-19 19:19:30.4466|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:19:30.4466|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:19:30.4466|DEBUG|OnDoc| +2026-03-19 19:19:30.4661|DEBUG|OnDoc| +2026-03-19 19:19:30.4661|DEBUG|OnDoc| +2026-03-19 19:19:30.4661|DEBUG|OnDoc| +2026-03-19 19:19:30.4661|DEBUG|OnDoc| +2026-03-19 19:19:30.4661|DEBUG|OnDoc| +2026-03-19 19:19:35.9482|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:19:36.0215|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:19:36.0428|INFO|APIDocLog|Input JSON +2026-03-19 19:19:36.0428|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0428|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0552|DEBUG|OnDoc| +2026-03-19 19:19:36.0745|DEBUG|OnDoc| +2026-03-19 19:19:36.0745|DEBUG|OnDoc| +2026-03-19 19:19:36.0745|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:19:36.1320|DEBUG|OnDoc| +2026-03-19 19:19:36.1350|DEBUG|OnDoc| +2026-03-19 19:19:36.1350|DEBUG|OnDoc| +2026-03-19 19:19:36.1350|DEBUG|OnDoc| +2026-03-19 19:19:36.1647|DEBUG|OnDoc| +2026-03-19 19:19:36.1647|DEBUG|OnDoc| +2026-03-19 19:19:36.1647|DEBUG|OnDoc| +2026-03-19 19:19:36.1647|DEBUG|OnDoc| +2026-03-19 19:19:36.1647|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:19:36.1804|DEBUG|OnDoc| +2026-03-19 19:19:36.1804|DEBUG|OnDoc| +2026-03-19 19:19:36.1804|DEBUG|OnDoc| +2026-03-19 19:19:36.1804|DEBUG|OnDoc| +2026-03-19 19:19:36.1804|DEBUG|OnDoc| +2026-03-19 19:19:36.1804|DEBUG|OnDoc| +2026-03-19 19:19:36.1804|DEBUG|OnDoc| +2026-03-19 19:19:36.1968|DEBUG|OnDoc| +2026-03-19 19:19:36.1968|DEBUG|OnDoc|Generate_Word +2026-03-19 19:19:36.1968|DEBUG|OnDoc|Word2013 +2026-03-19 19:19:36.1968|DEBUG|OnDoc|Word2013 +2026-03-19 19:20:28.6798|DEBUG|OnDoc|Generate_Word +2026-03-19 19:20:28.6930|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019196 +2026-03-19 19:20:28.6930|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:20:28.6930|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:20:28.6965|DEBUG|OnDoc| +2026-03-19 19:20:28.6965|DEBUG|OnDoc| +2026-03-19 19:20:28.6965|DEBUG|OnDoc| +2026-03-19 19:20:28.6965|DEBUG|OnDoc| +2026-03-19 19:20:28.6965|DEBUG|OnDoc| +2026-03-19 19:20:28.6965|DEBUG|OnDoc| +2026-03-19 19:20:33.7676|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:20:33.8449|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:20:33.8645|INFO|APIDocLog|Input JSON +2026-03-19 19:20:33.8645|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8685|DEBUG|OnDoc| +2026-03-19 19:20:33.8844|DEBUG|OnDoc| +2026-03-19 19:20:33.8844|DEBUG|OnDoc| +2026-03-19 19:20:33.8844|DEBUG|OnDoc| +2026-03-19 19:20:33.8844|DEBUG|OnDoc| +2026-03-19 19:20:33.8844|DEBUG|OnDoc| +2026-03-19 19:20:33.8844|DEBUG|OnDoc| +2026-03-19 19:20:33.8844|DEBUG|OnDoc| +2026-03-19 19:20:33.8844|DEBUG|OnDoc| +2026-03-19 19:20:33.8844|DEBUG|OnDoc| +2026-03-19 19:20:33.8844|DEBUG|OnDoc| +2026-03-19 19:20:33.8844|DEBUG|OnDoc| +2026-03-19 19:20:33.8844|DEBUG|OnDoc| +2026-03-19 19:20:33.8844|DEBUG|OnDoc| +2026-03-19 19:20:33.8844|DEBUG|OnDoc| +2026-03-19 19:20:33.9040|DEBUG|OnDoc| +2026-03-19 19:20:33.9040|DEBUG|OnDoc| +2026-03-19 19:20:33.9040|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:20:33.9583|DEBUG|OnDoc| +2026-03-19 19:20:33.9613|DEBUG|OnDoc| +2026-03-19 19:20:33.9613|DEBUG|OnDoc| +2026-03-19 19:20:33.9778|DEBUG|OnDoc| +2026-03-19 19:20:33.9778|DEBUG|OnDoc| +2026-03-19 19:20:33.9927|DEBUG|OnDoc| +2026-03-19 19:20:33.9927|DEBUG|OnDoc| +2026-03-19 19:20:33.9927|DEBUG|OnDoc| +2026-03-19 19:20:33.9927|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:20:33.9927|DEBUG|OnDoc| +2026-03-19 19:20:34.0113|DEBUG|OnDoc| +2026-03-19 19:20:34.0113|DEBUG|OnDoc| +2026-03-19 19:20:34.0113|DEBUG|OnDoc| +2026-03-19 19:20:34.0113|DEBUG|OnDoc| +2026-03-19 19:20:34.0113|DEBUG|OnDoc| +2026-03-19 19:20:34.0113|DEBUG|OnDoc| +2026-03-19 19:20:34.0113|DEBUG|OnDoc| +2026-03-19 19:20:34.0113|DEBUG|OnDoc|Generate_Word +2026-03-19 19:20:34.0317|DEBUG|OnDoc|Word2013 +2026-03-19 19:20:34.0317|DEBUG|OnDoc|Word2013 +2026-03-19 19:21:04.6450|DEBUG|OnDoc|Generate_Word +2026-03-19 19:21:04.6838|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019208 +2026-03-19 19:21:04.6838|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:21:04.6838|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:21:04.6838|DEBUG|OnDoc| +2026-03-19 19:21:04.6961|DEBUG|OnDoc| +2026-03-19 19:21:04.6961|DEBUG|OnDoc| +2026-03-19 19:21:04.6961|DEBUG|OnDoc| +2026-03-19 19:21:04.6961|DEBUG|OnDoc| +2026-03-19 19:21:04.6961|DEBUG|OnDoc| +2026-03-19 19:21:09.0851|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:21:09.1559|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:21:09.1756|INFO|APIDocLog|Input JSON +2026-03-19 19:21:09.1756|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:21:09.1756|DEBUG|OnDoc| +2026-03-19 19:21:09.1756|DEBUG|OnDoc| +2026-03-19 19:21:09.1756|DEBUG|OnDoc| +2026-03-19 19:21:09.1756|DEBUG|OnDoc| +2026-03-19 19:21:09.1756|DEBUG|OnDoc| +2026-03-19 19:21:09.1756|DEBUG|OnDoc| +2026-03-19 19:21:09.1756|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.1812|DEBUG|OnDoc| +2026-03-19 19:21:09.2043|DEBUG|OnDoc| +2026-03-19 19:21:09.2043|DEBUG|OnDoc| +2026-03-19 19:21:09.2118|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:21:09.2545|DEBUG|OnDoc| +2026-03-19 19:21:09.2545|DEBUG|OnDoc| +2026-03-19 19:21:09.2714|DEBUG|OnDoc| +2026-03-19 19:21:09.2714|DEBUG|OnDoc| +2026-03-19 19:21:09.2798|DEBUG|OnDoc| +2026-03-19 19:21:09.2798|DEBUG|OnDoc| +2026-03-19 19:21:09.2798|DEBUG|OnDoc| +2026-03-19 19:21:09.2798|DEBUG|OnDoc| +2026-03-19 19:21:09.2912|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:21:09.2912|DEBUG|OnDoc| +2026-03-19 19:21:09.2912|DEBUG|OnDoc| +2026-03-19 19:21:09.2912|DEBUG|OnDoc| +2026-03-19 19:21:09.2912|DEBUG|OnDoc| +2026-03-19 19:21:09.2912|DEBUG|OnDoc| +2026-03-19 19:21:09.2912|DEBUG|OnDoc| +2026-03-19 19:21:09.2912|DEBUG|OnDoc| +2026-03-19 19:21:09.3077|DEBUG|OnDoc| +2026-03-19 19:21:09.3077|DEBUG|OnDoc|Generate_Word +2026-03-19 19:21:09.3077|DEBUG|OnDoc|Word2013 +2026-03-19 19:21:09.3077|DEBUG|OnDoc|Word2013 +2026-03-19 19:21:14.5269|DEBUG|OnDoc|Generate_Word +2026-03-19 19:21:14.5676|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019213 +2026-03-19 19:21:14.5676|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:21:14.5676|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:21:14.5676|DEBUG|OnDoc| +2026-03-19 19:21:14.5938|DEBUG|OnDoc| +2026-03-19 19:21:14.5938|DEBUG|OnDoc| +2026-03-19 19:21:14.5938|DEBUG|OnDoc| +2026-03-19 19:21:14.5938|DEBUG|OnDoc| +2026-03-19 19:21:14.5938|DEBUG|OnDoc| +2026-03-19 19:22:05.7530|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:22:05.8571|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:22:05.8843|INFO|APIDocLog|Input JSON +2026-03-19 19:22:05.8843|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8843|DEBUG|OnDoc| +2026-03-19 19:22:05.8997|DEBUG|OnDoc| +2026-03-19 19:22:05.8997|DEBUG|OnDoc| +2026-03-19 19:22:05.8997|DEBUG|OnDoc| +2026-03-19 19:22:05.8997|DEBUG|OnDoc| +2026-03-19 19:22:05.8997|DEBUG|OnDoc| +2026-03-19 19:22:05.8997|DEBUG|OnDoc| +2026-03-19 19:22:05.8997|DEBUG|OnDoc| +2026-03-19 19:22:05.9231|DEBUG|OnDoc| +2026-03-19 19:22:05.9231|DEBUG|OnDoc| +2026-03-19 19:22:05.9326|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:22:05.9743|DEBUG|OnDoc| +2026-03-19 19:22:05.9743|DEBUG|OnDoc| +2026-03-19 19:22:05.9884|DEBUG|OnDoc| +2026-03-19 19:22:05.9884|DEBUG|OnDoc| +2026-03-19 19:22:05.9984|DEBUG|OnDoc| +2026-03-19 19:22:05.9984|DEBUG|OnDoc| +2026-03-19 19:22:05.9984|DEBUG|OnDoc| +2026-03-19 19:22:05.9984|DEBUG|OnDoc| +2026-03-19 19:22:06.0090|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:22:06.0090|DEBUG|OnDoc| +2026-03-19 19:22:06.0090|DEBUG|OnDoc| +2026-03-19 19:22:06.0090|DEBUG|OnDoc| +2026-03-19 19:22:06.0090|DEBUG|OnDoc| +2026-03-19 19:22:06.0090|DEBUG|OnDoc| +2026-03-19 19:22:06.0090|DEBUG|OnDoc| +2026-03-19 19:22:06.0090|DEBUG|OnDoc| +2026-03-19 19:22:06.0252|DEBUG|OnDoc| +2026-03-19 19:22:06.0252|DEBUG|OnDoc|Generate_Word +2026-03-19 19:22:06.0252|DEBUG|OnDoc|Word2013 +2026-03-19 19:22:06.0252|DEBUG|OnDoc|Word2013 +2026-03-19 19:22:33.9770|DEBUG|OnDoc|Generate_Word +2026-03-19 19:22:34.0222|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019229 +2026-03-19 19:22:34.0222|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:22:34.0276|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:22:34.0276|DEBUG|OnDoc| +2026-03-19 19:22:34.0618|DEBUG|OnDoc| +2026-03-19 19:22:34.0618|DEBUG|OnDoc| +2026-03-19 19:22:34.0618|DEBUG|OnDoc| +2026-03-19 19:22:34.0618|DEBUG|OnDoc| +2026-03-19 19:22:34.0618|DEBUG|OnDoc| +2026-03-19 19:24:33.3040|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:24:33.3972|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:24:33.4258|INFO|APIDocLog|Input JSON +2026-03-19 19:24:33.4258|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:24:33.4258|DEBUG|OnDoc| +2026-03-19 19:24:33.4258|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4308|DEBUG|OnDoc| +2026-03-19 19:24:33.4467|DEBUG|OnDoc| +2026-03-19 19:24:33.4467|DEBUG|OnDoc| +2026-03-19 19:24:33.4467|DEBUG|OnDoc| +2026-03-19 19:24:33.4467|DEBUG|OnDoc| +2026-03-19 19:24:33.4467|DEBUG|OnDoc| +2026-03-19 19:24:33.4467|DEBUG|OnDoc| +2026-03-19 19:24:33.4467|DEBUG|OnDoc| +2026-03-19 19:24:33.4467|DEBUG|OnDoc| +2026-03-19 19:24:33.4467|DEBUG|OnDoc| +2026-03-19 19:24:33.4467|DEBUG|OnDoc| +2026-03-19 19:24:33.4747|DEBUG|OnDoc| +2026-03-19 19:24:33.4774|DEBUG|OnDoc| +2026-03-19 19:24:33.4774|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:24:33.5295|DEBUG|OnDoc| +2026-03-19 19:24:33.5295|DEBUG|OnDoc| +2026-03-19 19:24:33.5551|DEBUG|OnDoc| +2026-03-19 19:24:33.5561|DEBUG|OnDoc| +2026-03-19 19:24:33.5561|DEBUG|OnDoc| +2026-03-19 19:24:33.5561|DEBUG|OnDoc| +2026-03-19 19:24:33.5561|DEBUG|OnDoc| +2026-03-19 19:24:33.5561|DEBUG|OnDoc| +2026-03-19 19:24:33.5910|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:24:33.5910|DEBUG|OnDoc| +2026-03-19 19:24:33.5910|DEBUG|OnDoc| +2026-03-19 19:24:33.5910|DEBUG|OnDoc| +2026-03-19 19:24:33.5910|DEBUG|OnDoc| +2026-03-19 19:24:33.6025|DEBUG|OnDoc| +2026-03-19 19:24:33.6025|DEBUG|OnDoc| +2026-03-19 19:24:33.6025|DEBUG|OnDoc| +2026-03-19 19:24:33.6025|DEBUG|OnDoc| +2026-03-19 19:24:33.6025|DEBUG|OnDoc|Generate_Word +2026-03-19 19:24:33.6273|DEBUG|OnDoc|Word2013 +2026-03-19 19:24:33.6273|DEBUG|OnDoc|Word2013 +2026-03-19 19:24:40.7737|DEBUG|OnDoc|Generate_Word +2026-03-19 19:24:40.8144|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019237 +2026-03-19 19:24:40.8144|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:24:40.8144|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:24:40.8144|DEBUG|OnDoc| +2026-03-19 19:24:40.8337|DEBUG|OnDoc| +2026-03-19 19:24:40.8337|DEBUG|OnDoc| +2026-03-19 19:24:40.8337|DEBUG|OnDoc| +2026-03-19 19:24:40.8337|DEBUG|OnDoc| +2026-03-19 19:24:40.8337|DEBUG|OnDoc| +2026-03-19 19:25:06.6829|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:25:06.7666|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:25:06.7933|INFO|APIDocLog|Input JSON +2026-03-19 19:25:06.7933|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.7933|DEBUG|OnDoc| +2026-03-19 19:25:06.8067|DEBUG|OnDoc| +2026-03-19 19:25:06.8067|DEBUG|OnDoc| +2026-03-19 19:25:06.8067|DEBUG|OnDoc| +2026-03-19 19:25:06.8067|DEBUG|OnDoc| +2026-03-19 19:25:06.8067|DEBUG|OnDoc| +2026-03-19 19:25:06.8292|DEBUG|OnDoc| +2026-03-19 19:25:06.8292|DEBUG|OnDoc| +2026-03-19 19:25:06.8403|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:25:06.8864|DEBUG|OnDoc| +2026-03-19 19:25:06.8864|DEBUG|OnDoc| +2026-03-19 19:25:06.9091|DEBUG|OnDoc| +2026-03-19 19:25:06.9091|DEBUG|OnDoc| +2026-03-19 19:25:06.9187|DEBUG|OnDoc| +2026-03-19 19:25:06.9187|DEBUG|OnDoc| +2026-03-19 19:25:06.9187|DEBUG|OnDoc| +2026-03-19 19:25:06.9187|DEBUG|OnDoc| +2026-03-19 19:25:06.9403|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:25:06.9403|DEBUG|OnDoc| +2026-03-19 19:25:06.9504|DEBUG|OnDoc| +2026-03-19 19:25:06.9504|DEBUG|OnDoc| +2026-03-19 19:25:06.9504|DEBUG|OnDoc| +2026-03-19 19:25:06.9504|DEBUG|OnDoc| +2026-03-19 19:25:06.9504|DEBUG|OnDoc| +2026-03-19 19:25:06.9504|DEBUG|OnDoc| +2026-03-19 19:25:06.9504|DEBUG|OnDoc| +2026-03-19 19:25:06.9504|DEBUG|OnDoc|Generate_Word +2026-03-19 19:25:06.9674|DEBUG|OnDoc|Word2013 +2026-03-19 19:25:06.9674|DEBUG|OnDoc|Word2013 +2026-03-19 19:25:16.1536|DEBUG|OnDoc|Generate_Word +2026-03-19 19:25:16.1968|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019245 +2026-03-19 19:25:16.1968|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:25:16.1968|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:25:16.1968|DEBUG|OnDoc| +2026-03-19 19:25:16.2149|DEBUG|OnDoc| +2026-03-19 19:25:16.2149|DEBUG|OnDoc| +2026-03-19 19:25:16.2149|DEBUG|OnDoc| +2026-03-19 19:25:16.2149|DEBUG|OnDoc| +2026-03-19 19:25:16.2149|DEBUG|OnDoc| +2026-03-19 19:25:21.9641|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:25:22.0544|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:25:22.0844|INFO|APIDocLog|Input JSON +2026-03-19 19:25:22.0889|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.0889|DEBUG|OnDoc| +2026-03-19 19:25:22.1030|DEBUG|OnDoc| +2026-03-19 19:25:22.1030|DEBUG|OnDoc| +2026-03-19 19:25:22.1030|DEBUG|OnDoc| +2026-03-19 19:25:22.1030|DEBUG|OnDoc| +2026-03-19 19:25:22.1030|DEBUG|OnDoc| +2026-03-19 19:25:22.1030|DEBUG|OnDoc| +2026-03-19 19:25:22.1030|DEBUG|OnDoc| +2026-03-19 19:25:22.1030|DEBUG|OnDoc| +2026-03-19 19:25:22.1030|DEBUG|OnDoc| +2026-03-19 19:25:22.1030|DEBUG|OnDoc| +2026-03-19 19:25:22.1030|DEBUG|OnDoc| +2026-03-19 19:25:22.1185|DEBUG|OnDoc| +2026-03-19 19:25:22.1185|DEBUG|OnDoc| +2026-03-19 19:25:22.1185|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:25:22.1789|DEBUG|OnDoc| +2026-03-19 19:25:22.1814|DEBUG|OnDoc| +2026-03-19 19:25:22.2021|DEBUG|OnDoc| +2026-03-19 19:25:22.2021|DEBUG|OnDoc| +2026-03-19 19:25:22.2116|DEBUG|OnDoc| +2026-03-19 19:25:22.2116|DEBUG|OnDoc| +2026-03-19 19:25:22.2116|DEBUG|OnDoc| +2026-03-19 19:25:22.2116|DEBUG|OnDoc| +2026-03-19 19:25:22.2331|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:25:22.2331|DEBUG|OnDoc| +2026-03-19 19:25:22.2331|DEBUG|OnDoc| +2026-03-19 19:25:22.2331|DEBUG|OnDoc| +2026-03-19 19:25:22.2331|DEBUG|OnDoc| +2026-03-19 19:25:22.2331|DEBUG|OnDoc| +2026-03-19 19:25:22.2456|DEBUG|OnDoc| +2026-03-19 19:25:22.2456|DEBUG|OnDoc| +2026-03-19 19:25:22.2456|DEBUG|OnDoc| +2026-03-19 19:25:22.2456|DEBUG|OnDoc|Generate_Word +2026-03-19 19:25:22.2456|DEBUG|OnDoc|Word2013 +2026-03-19 19:25:22.2588|DEBUG|OnDoc|Word2013 +2026-03-19 19:25:47.6187|DEBUG|OnDoc|Generate_Word +2026-03-19 19:25:47.6579|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019250 +2026-03-19 19:25:47.6579|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:25:47.6579|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:25:47.6579|DEBUG|OnDoc| +2026-03-19 19:25:47.6839|DEBUG|OnDoc| +2026-03-19 19:25:47.6839|DEBUG|OnDoc| +2026-03-19 19:25:47.6839|DEBUG|OnDoc| +2026-03-19 19:25:47.6839|DEBUG|OnDoc| +2026-03-19 19:25:47.6839|DEBUG|OnDoc| +2026-03-19 19:27:38.5371|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:27:38.6310|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:27:38.6596|INFO|APIDocLog|Input JSON +2026-03-19 19:27:38.6596|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:27:38.6596|DEBUG|OnDoc| +2026-03-19 19:27:38.6596|DEBUG|OnDoc| +2026-03-19 19:27:38.6596|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6645|DEBUG|OnDoc| +2026-03-19 19:27:38.6806|DEBUG|OnDoc| +2026-03-19 19:27:38.6806|DEBUG|OnDoc| +2026-03-19 19:27:38.6806|DEBUG|OnDoc| +2026-03-19 19:27:38.6806|DEBUG|OnDoc| +2026-03-19 19:27:38.6806|DEBUG|OnDoc| +2026-03-19 19:27:38.6806|DEBUG|OnDoc| +2026-03-19 19:27:38.6806|DEBUG|OnDoc| +2026-03-19 19:27:38.6806|DEBUG|OnDoc| +2026-03-19 19:27:38.7106|DEBUG|OnDoc| +2026-03-19 19:27:38.7131|DEBUG|OnDoc| +2026-03-19 19:27:38.7131|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:27:38.7653|DEBUG|OnDoc| +2026-03-19 19:27:38.7653|DEBUG|OnDoc| +2026-03-19 19:27:38.7896|DEBUG|OnDoc| +2026-03-19 19:27:38.7896|DEBUG|OnDoc| +2026-03-19 19:27:38.7896|DEBUG|OnDoc| +2026-03-19 19:27:38.8053|DEBUG|OnDoc| +2026-03-19 19:27:38.8053|DEBUG|OnDoc| +2026-03-19 19:27:38.8053|DEBUG|OnDoc| +2026-03-19 19:27:38.8276|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:27:38.8276|DEBUG|OnDoc| +2026-03-19 19:27:38.8276|DEBUG|OnDoc| +2026-03-19 19:27:38.8276|DEBUG|OnDoc| +2026-03-19 19:27:38.8276|DEBUG|OnDoc| +2026-03-19 19:27:38.8276|DEBUG|OnDoc| +2026-03-19 19:27:38.8426|DEBUG|OnDoc| +2026-03-19 19:27:38.8426|DEBUG|OnDoc| +2026-03-19 19:27:38.8426|DEBUG|OnDoc| +2026-03-19 19:27:38.8426|DEBUG|OnDoc|Generate_Word +2026-03-19 19:27:38.8553|DEBUG|OnDoc|Word2013 +2026-03-19 19:27:38.8553|DEBUG|OnDoc|Word2013 +2026-03-19 19:29:53.0423|DEBUG|OnDoc| +2026-03-19 19:29:53.0778|DEBUG|OnDoc| +2026-03-19 19:29:53.1890|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:29:53.1978|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:29:54.0114|DEBUG|OnDoc|Generate_Word +2026-03-19 19:29:54.0251|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019261 +2026-03-19 19:29:54.0251|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:29:54.0251|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:29:54.0251|DEBUG|OnDoc| +2026-03-19 19:29:54.0251|DEBUG|OnDoc| +2026-03-19 19:29:54.0251|DEBUG|OnDoc| +2026-03-19 19:29:54.0251|DEBUG|OnDoc| +2026-03-19 19:29:54.0251|DEBUG|OnDoc| +2026-03-19 19:29:54.0409|DEBUG|OnDoc| +2026-03-19 19:30:03.4260|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:30:03.5604|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:30:03.6197|INFO|APIDocLog|Input JSON +2026-03-19 19:30:03.6197|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6197|DEBUG|OnDoc| +2026-03-19 19:30:03.6340|DEBUG|OnDoc| +2026-03-19 19:30:03.6340|DEBUG|OnDoc| +2026-03-19 19:30:03.6340|DEBUG|OnDoc| +2026-03-19 19:30:03.6340|DEBUG|OnDoc| +2026-03-19 19:30:03.6340|DEBUG|OnDoc| +2026-03-19 19:30:03.6340|DEBUG|OnDoc| +2026-03-19 19:30:03.6340|DEBUG|OnDoc| +2026-03-19 19:30:03.6340|DEBUG|OnDoc| +2026-03-19 19:30:03.6340|DEBUG|OnDoc| +2026-03-19 19:30:03.6340|DEBUG|OnDoc| +2026-03-19 19:30:03.6340|DEBUG|OnDoc| +2026-03-19 19:30:03.6340|DEBUG|OnDoc| +2026-03-19 19:30:03.6340|DEBUG|OnDoc| +2026-03-19 19:30:03.6499|DEBUG|OnDoc| +2026-03-19 19:30:03.6499|DEBUG|OnDoc| +2026-03-19 19:30:03.6499|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:30:03.7021|DEBUG|OnDoc| +2026-03-19 19:30:03.7021|DEBUG|OnDoc| +2026-03-19 19:30:03.7523|DEBUG|OnDoc| +2026-03-19 19:30:03.7523|DEBUG|OnDoc| +2026-03-19 19:30:03.7619|DEBUG|OnDoc| +2026-03-19 19:30:03.7619|DEBUG|OnDoc| +2026-03-19 19:30:03.7619|DEBUG|OnDoc| +2026-03-19 19:30:03.7619|DEBUG|OnDoc| +2026-03-19 19:30:03.8068|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:30:03.8068|DEBUG|OnDoc| +2026-03-19 19:30:03.8068|DEBUG|OnDoc| +2026-03-19 19:30:03.8068|DEBUG|OnDoc| +2026-03-19 19:30:03.8068|DEBUG|OnDoc| +2026-03-19 19:30:03.8068|DEBUG|OnDoc| +2026-03-19 19:30:03.8068|DEBUG|OnDoc| +2026-03-19 19:30:03.8068|DEBUG|OnDoc| +2026-03-19 19:30:03.8227|DEBUG|OnDoc| +2026-03-19 19:30:03.8227|DEBUG|OnDoc|Generate_Word +2026-03-19 19:30:03.8697|DEBUG|OnDoc|Word2013 +2026-03-19 19:30:03.8697|DEBUG|OnDoc|Word2013 +2026-03-19 19:30:12.8234|DEBUG|OnDoc| +2026-03-19 19:30:12.8623|DEBUG|OnDoc| +2026-03-19 19:30:12.9719|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:30:12.9816|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:30:16.5154|DEBUG|OnDoc| +2026-03-19 19:30:16.5557|DEBUG|OnDoc| +2026-03-19 19:30:16.6662|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:30:16.6662|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:30:19.0896|DEBUG|OnDoc|Generate_Word +2026-03-19 19:30:19.1028|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019276 +2026-03-19 19:30:19.1028|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:30:19.1028|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:30:19.1028|DEBUG|OnDoc| +2026-03-19 19:30:19.1258|DEBUG|OnDoc| +2026-03-19 19:30:19.1258|DEBUG|OnDoc| +2026-03-19 19:30:19.1258|DEBUG|OnDoc| +2026-03-19 19:30:19.1258|DEBUG|OnDoc| +2026-03-19 19:30:19.1258|DEBUG|OnDoc| +2026-03-19 19:30:49.3773|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:30:49.5285|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:30:49.5938|INFO|APIDocLog|Input JSON +2026-03-19 19:30:49.5938|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:30:49.5938|DEBUG|OnDoc| +2026-03-19 19:30:49.5938|DEBUG|OnDoc| +2026-03-19 19:30:49.5938|DEBUG|OnDoc| +2026-03-19 19:30:49.5938|DEBUG|OnDoc| +2026-03-19 19:30:49.5938|DEBUG|OnDoc| +2026-03-19 19:30:49.5938|DEBUG|OnDoc| +2026-03-19 19:30:49.5938|DEBUG|OnDoc| +2026-03-19 19:30:49.5938|DEBUG|OnDoc| +2026-03-19 19:30:49.5938|DEBUG|OnDoc| +2026-03-19 19:30:49.5938|DEBUG|OnDoc| +2026-03-19 19:30:49.5938|DEBUG|OnDoc| +2026-03-19 19:30:49.5938|DEBUG|OnDoc| +2026-03-19 19:30:49.5938|DEBUG|OnDoc| +2026-03-19 19:30:49.5938|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6020|DEBUG|OnDoc| +2026-03-19 19:30:49.6232|DEBUG|OnDoc| +2026-03-19 19:30:49.6232|DEBUG|OnDoc| +2026-03-19 19:30:49.6232|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:30:49.6791|DEBUG|OnDoc| +2026-03-19 19:30:49.6827|DEBUG|OnDoc| +2026-03-19 19:30:49.7363|DEBUG|OnDoc| +2026-03-19 19:30:49.7363|DEBUG|OnDoc| +2026-03-19 19:30:49.7470|DEBUG|OnDoc| +2026-03-19 19:30:49.7470|DEBUG|OnDoc| +2026-03-19 19:30:49.7470|DEBUG|OnDoc| +2026-03-19 19:30:49.7470|DEBUG|OnDoc| +2026-03-19 19:30:49.8024|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:30:49.8024|DEBUG|OnDoc| +2026-03-19 19:30:49.8075|DEBUG|OnDoc| +2026-03-19 19:30:49.8075|DEBUG|OnDoc| +2026-03-19 19:30:49.8075|DEBUG|OnDoc| +2026-03-19 19:30:49.8075|DEBUG|OnDoc| +2026-03-19 19:30:49.8075|DEBUG|OnDoc| +2026-03-19 19:30:49.8075|DEBUG|OnDoc| +2026-03-19 19:30:49.8075|DEBUG|OnDoc| +2026-03-19 19:30:49.8075|DEBUG|OnDoc|Generate_Word +2026-03-19 19:30:49.8319|DEBUG|OnDoc|Word2013 +2026-03-19 19:30:49.8319|DEBUG|OnDoc|Word2013 +2026-03-19 19:30:58.4563|DEBUG|OnDoc| +2026-03-19 19:30:58.4966|DEBUG|OnDoc| +2026-03-19 19:30:58.6228|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:30:58.6228|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:30:58.7718|DEBUG|OnDoc| +2026-03-19 19:30:58.7811|DEBUG|OnDoc| +2026-03-19 19:30:58.9072|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:30:58.9173|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:30:59.5289|DEBUG|OnDoc|Generate_Word +2026-03-19 19:30:59.5415|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019284 +2026-03-19 19:30:59.5415|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:30:59.5415|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:30:59.5415|DEBUG|OnDoc| +2026-03-19 19:30:59.5566|DEBUG|OnDoc| +2026-03-19 19:30:59.5566|DEBUG|OnDoc| +2026-03-19 19:30:59.5566|DEBUG|OnDoc| +2026-03-19 19:30:59.5566|DEBUG|OnDoc| +2026-03-19 19:30:59.5566|DEBUG|OnDoc| +2026-03-19 19:31:37.6216|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:31:37.7699|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:31:37.8369|INFO|APIDocLog|Input JSON +2026-03-19 19:31:37.8369|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8369|DEBUG|OnDoc| +2026-03-19 19:31:37.8522|DEBUG|OnDoc| +2026-03-19 19:31:37.8522|DEBUG|OnDoc| +2026-03-19 19:31:37.8522|DEBUG|OnDoc| +2026-03-19 19:31:37.8522|DEBUG|OnDoc| +2026-03-19 19:31:37.8522|DEBUG|OnDoc| +2026-03-19 19:31:37.8522|DEBUG|OnDoc| +2026-03-19 19:31:37.8522|DEBUG|OnDoc| +2026-03-19 19:31:37.8522|DEBUG|OnDoc| +2026-03-19 19:31:37.8522|DEBUG|OnDoc| +2026-03-19 19:31:37.8522|DEBUG|OnDoc| +2026-03-19 19:31:37.8522|DEBUG|OnDoc| +2026-03-19 19:31:37.8522|DEBUG|OnDoc| +2026-03-19 19:31:37.8522|DEBUG|OnDoc| +2026-03-19 19:31:37.8522|DEBUG|OnDoc| +2026-03-19 19:31:37.8829|DEBUG|OnDoc| +2026-03-19 19:31:37.8853|DEBUG|OnDoc| +2026-03-19 19:31:37.8853|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:31:37.9347|DEBUG|OnDoc| +2026-03-19 19:31:37.9347|DEBUG|OnDoc| +2026-03-19 19:31:37.9940|DEBUG|OnDoc| +2026-03-19 19:31:37.9940|DEBUG|OnDoc| +2026-03-19 19:31:37.9940|DEBUG|OnDoc| +2026-03-19 19:31:37.9940|DEBUG|OnDoc| +2026-03-19 19:31:38.0086|DEBUG|OnDoc| +2026-03-19 19:31:38.0086|DEBUG|OnDoc| +2026-03-19 19:31:38.1407|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:31:38.1407|DEBUG|OnDoc| +2026-03-19 19:31:38.1517|DEBUG|OnDoc| +2026-03-19 19:31:38.1517|DEBUG|OnDoc| +2026-03-19 19:31:38.1517|DEBUG|OnDoc| +2026-03-19 19:31:38.1517|DEBUG|OnDoc| +2026-03-19 19:31:38.1517|DEBUG|OnDoc| +2026-03-19 19:31:38.1517|DEBUG|OnDoc| +2026-03-19 19:31:38.1517|DEBUG|OnDoc| +2026-03-19 19:31:38.1648|DEBUG|OnDoc|Generate_Word +2026-03-19 19:31:38.1648|DEBUG|OnDoc|Word2013 +2026-03-19 19:31:38.1648|DEBUG|OnDoc|Word2013 +2026-03-19 19:31:39.1256|DEBUG|OnDoc| +2026-03-19 19:31:39.1347|DEBUG|OnDoc| +2026-03-19 19:31:39.2620|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:31:39.2620|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:31:39.4128|DEBUG|OnDoc| +2026-03-19 19:31:39.4221|DEBUG|OnDoc| +2026-03-19 19:31:39.5533|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:31:39.5626|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:31:40.2302|DEBUG|OnDoc|Generate_Word +2026-03-19 19:31:40.2453|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019292 +2026-03-19 19:31:40.2453|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:31:40.2453|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:31:40.2453|DEBUG|OnDoc| +2026-03-19 19:31:40.2628|DEBUG|OnDoc| +2026-03-19 19:31:40.2628|DEBUG|OnDoc| +2026-03-19 19:31:40.2628|DEBUG|OnDoc| +2026-03-19 19:31:40.2628|DEBUG|OnDoc| +2026-03-19 19:31:40.2628|DEBUG|OnDoc| +2026-03-19 19:32:08.3751|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:32:08.5220|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:32:08.5888|INFO|APIDocLog|Input JSON +2026-03-19 19:32:08.5888|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.5888|DEBUG|OnDoc| +2026-03-19 19:32:08.6027|DEBUG|OnDoc| +2026-03-19 19:32:08.6027|DEBUG|OnDoc| +2026-03-19 19:32:08.6027|DEBUG|OnDoc| +2026-03-19 19:32:08.6027|DEBUG|OnDoc| +2026-03-19 19:32:08.6027|DEBUG|OnDoc| +2026-03-19 19:32:08.6027|DEBUG|OnDoc| +2026-03-19 19:32:08.6027|DEBUG|OnDoc| +2026-03-19 19:32:08.6027|DEBUG|OnDoc| +2026-03-19 19:32:08.6027|DEBUG|OnDoc| +2026-03-19 19:32:08.6027|DEBUG|OnDoc| +2026-03-19 19:32:08.6027|DEBUG|OnDoc| +2026-03-19 19:32:08.6027|DEBUG|OnDoc| +2026-03-19 19:32:08.6027|DEBUG|OnDoc| +2026-03-19 19:32:08.6294|DEBUG|OnDoc| +2026-03-19 19:32:08.6294|DEBUG|OnDoc| +2026-03-19 19:32:08.6387|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:32:08.6815|DEBUG|OnDoc| +2026-03-19 19:32:08.6815|DEBUG|OnDoc| +2026-03-19 19:32:08.7395|DEBUG|OnDoc| +2026-03-19 19:32:08.7395|DEBUG|OnDoc| +2026-03-19 19:32:08.7479|DEBUG|OnDoc| +2026-03-19 19:32:08.7479|DEBUG|OnDoc| +2026-03-19 19:32:08.7479|DEBUG|OnDoc| +2026-03-19 19:32:08.7479|DEBUG|OnDoc| +2026-03-19 19:32:08.8028|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:32:08.8028|DEBUG|OnDoc| +2026-03-19 19:32:08.8098|DEBUG|OnDoc| +2026-03-19 19:32:08.8098|DEBUG|OnDoc| +2026-03-19 19:32:08.8098|DEBUG|OnDoc| +2026-03-19 19:32:08.8098|DEBUG|OnDoc| +2026-03-19 19:32:08.8098|DEBUG|OnDoc| +2026-03-19 19:32:08.8098|DEBUG|OnDoc| +2026-03-19 19:32:08.8098|DEBUG|OnDoc| +2026-03-19 19:32:08.8098|DEBUG|OnDoc|Generate_Word +2026-03-19 19:32:08.8273|DEBUG|OnDoc|Word2013 +2026-03-19 19:32:08.8273|DEBUG|OnDoc|Word2013 +2026-03-19 19:35:14.8003|DEBUG|OnDoc| +2026-03-19 19:35:14.8359|DEBUG|OnDoc| +2026-03-19 19:35:14.9689|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:35:14.9784|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:35:15.1344|DEBUG|OnDoc| +2026-03-19 19:35:15.1344|DEBUG|OnDoc| +2026-03-19 19:35:15.2762|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:35:15.2762|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:35:15.9261|DEBUG|OnDoc|Generate_Word +2026-03-19 19:35:15.9396|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019300 +2026-03-19 19:35:15.9396|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:35:15.9396|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:35:15.9396|DEBUG|OnDoc| +2026-03-19 19:35:15.9557|DEBUG|OnDoc| +2026-03-19 19:35:15.9557|DEBUG|OnDoc| +2026-03-19 19:35:15.9557|DEBUG|OnDoc| +2026-03-19 19:35:15.9557|DEBUG|OnDoc| +2026-03-19 19:35:15.9557|DEBUG|OnDoc| +2026-03-19 19:43:45.8802|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:43:46.0527|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:43:46.1334|INFO|APIDocLog|Input JSON +2026-03-19 19:43:46.1334|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:43:46.1334|DEBUG|OnDoc| +2026-03-19 19:43:46.1334|DEBUG|OnDoc| +2026-03-19 19:43:46.1334|DEBUG|OnDoc| +2026-03-19 19:43:46.1334|DEBUG|OnDoc| +2026-03-19 19:43:46.1334|DEBUG|OnDoc| +2026-03-19 19:43:46.1334|DEBUG|OnDoc| +2026-03-19 19:43:46.1334|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1495|DEBUG|OnDoc| +2026-03-19 19:43:46.1729|DEBUG|OnDoc| +2026-03-19 19:43:46.1729|DEBUG|OnDoc| +2026-03-19 19:43:46.1839|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:43:46.2368|DEBUG|OnDoc| +2026-03-19 19:43:46.2368|DEBUG|OnDoc| +2026-03-19 19:43:46.3169|DEBUG|OnDoc| +2026-03-19 19:43:46.3169|DEBUG|OnDoc| +2026-03-19 19:43:46.3276|DEBUG|OnDoc| +2026-03-19 19:43:46.3276|DEBUG|OnDoc| +2026-03-19 19:43:46.3276|DEBUG|OnDoc| +2026-03-19 19:43:46.3276|DEBUG|OnDoc| +2026-03-19 19:43:46.3947|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:43:46.3947|DEBUG|OnDoc| +2026-03-19 19:43:46.4027|DEBUG|OnDoc| +2026-03-19 19:43:46.4027|DEBUG|OnDoc| +2026-03-19 19:43:46.4027|DEBUG|OnDoc| +2026-03-19 19:43:46.4027|DEBUG|OnDoc| +2026-03-19 19:43:46.4027|DEBUG|OnDoc| +2026-03-19 19:43:46.4027|DEBUG|OnDoc| +2026-03-19 19:43:46.4183|DEBUG|OnDoc| +2026-03-19 19:43:46.4183|DEBUG|OnDoc|Generate_Word +2026-03-19 19:43:46.4760|DEBUG|OnDoc|Word2013 +2026-03-19 19:43:46.4790|DEBUG|OnDoc|Word2013 +2026-03-19 19:43:47.6889|DEBUG|OnDoc| +2026-03-19 19:43:47.6985|DEBUG|OnDoc| +2026-03-19 19:43:47.8545|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:43:47.8545|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:43:48.0370|DEBUG|OnDoc| +2026-03-19 19:43:48.0468|DEBUG|OnDoc| +2026-03-19 19:43:48.2063|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:43:48.2159|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:43:48.8538|DEBUG|OnDoc|Generate_Word +2026-03-19 19:43:48.8538|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019326 +2026-03-19 19:43:48.8538|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:43:48.8680|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:43:48.8680|DEBUG|OnDoc| +2026-03-19 19:43:48.8680|DEBUG|OnDoc| +2026-03-19 19:43:48.8838|DEBUG|OnDoc| +2026-03-19 19:43:48.8838|DEBUG|OnDoc| +2026-03-19 19:43:48.8838|DEBUG|OnDoc| +2026-03-19 19:43:48.8838|DEBUG|OnDoc| +2026-03-19 19:44:05.9072|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:44:06.0796|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:44:06.1588|INFO|APIDocLog|Input JSON +2026-03-19 19:44:06.1691|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1691|DEBUG|OnDoc| +2026-03-19 19:44:06.1806|DEBUG|OnDoc| +2026-03-19 19:44:06.1806|DEBUG|OnDoc| +2026-03-19 19:44:06.1806|DEBUG|OnDoc| +2026-03-19 19:44:06.1806|DEBUG|OnDoc| +2026-03-19 19:44:06.1806|DEBUG|OnDoc| +2026-03-19 19:44:06.1806|DEBUG|OnDoc| +2026-03-19 19:44:06.1806|DEBUG|OnDoc| +2026-03-19 19:44:06.1806|DEBUG|OnDoc| +2026-03-19 19:44:06.1806|DEBUG|OnDoc| +2026-03-19 19:44:06.1806|DEBUG|OnDoc| +2026-03-19 19:44:06.1806|DEBUG|OnDoc| +2026-03-19 19:44:06.1806|DEBUG|OnDoc| +2026-03-19 19:44:06.1806|DEBUG|OnDoc| +2026-03-19 19:44:06.1806|DEBUG|OnDoc| +2026-03-19 19:44:06.1968|DEBUG|OnDoc| +2026-03-19 19:44:06.1968|DEBUG|OnDoc| +2026-03-19 19:44:06.1968|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:44:06.2583|DEBUG|OnDoc| +2026-03-19 19:44:06.2583|DEBUG|OnDoc| +2026-03-19 19:44:06.3292|DEBUG|OnDoc| +2026-03-19 19:44:06.3292|DEBUG|OnDoc| +2026-03-19 19:44:06.3398|DEBUG|OnDoc| +2026-03-19 19:44:06.3398|DEBUG|OnDoc| +2026-03-19 19:44:06.3398|DEBUG|OnDoc| +2026-03-19 19:44:06.3398|DEBUG|OnDoc| +2026-03-19 19:44:06.4157|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:44:06.4157|DEBUG|OnDoc| +2026-03-19 19:44:06.4157|DEBUG|OnDoc| +2026-03-19 19:44:06.4157|DEBUG|OnDoc| +2026-03-19 19:44:06.4157|DEBUG|OnDoc| +2026-03-19 19:44:06.4157|DEBUG|OnDoc| +2026-03-19 19:44:06.4157|DEBUG|OnDoc| +2026-03-19 19:44:06.4157|DEBUG|OnDoc| +2026-03-19 19:44:06.4358|DEBUG|OnDoc| +2026-03-19 19:44:06.4358|DEBUG|OnDoc|Generate_Word +2026-03-19 19:44:06.4459|DEBUG|OnDoc|Word2013 +2026-03-19 19:44:06.4459|DEBUG|OnDoc|Word2013 +2026-03-19 19:44:07.6130|DEBUG|OnDoc| +2026-03-19 19:44:07.6223|DEBUG|OnDoc| +2026-03-19 19:44:07.7815|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:44:07.7908|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:44:59.1379|DEBUG|OnDoc| +2026-03-19 19:44:59.1379|DEBUG|OnDoc| +2026-03-19 19:44:59.3338|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:44:59.3434|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:45:00.0891|DEBUG|OnDoc|Generate_Word +2026-03-19 19:45:00.0891|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019334 +2026-03-19 19:45:00.0891|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:45:00.1021|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:45:00.1021|DEBUG|OnDoc| +2026-03-19 19:45:00.1021|DEBUG|OnDoc| +2026-03-19 19:45:00.1021|DEBUG|OnDoc| +2026-03-19 19:45:00.1021|DEBUG|OnDoc| +2026-03-19 19:45:00.1021|DEBUG|OnDoc| +2026-03-19 19:45:00.1183|DEBUG|OnDoc| +2026-03-19 19:45:30.2473|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:45:30.4329|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:45:30.5214|INFO|APIDocLog|Input JSON +2026-03-19 19:45:30.5329|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:45:30.5329|DEBUG|OnDoc| +2026-03-19 19:45:30.5329|DEBUG|OnDoc| +2026-03-19 19:45:30.5329|DEBUG|OnDoc| +2026-03-19 19:45:30.5329|DEBUG|OnDoc| +2026-03-19 19:45:30.5329|DEBUG|OnDoc| +2026-03-19 19:45:30.5329|DEBUG|OnDoc| +2026-03-19 19:45:30.5329|DEBUG|OnDoc| +2026-03-19 19:45:30.5329|DEBUG|OnDoc| +2026-03-19 19:45:30.5329|DEBUG|OnDoc| +2026-03-19 19:45:30.5329|DEBUG|OnDoc| +2026-03-19 19:45:30.5329|DEBUG|OnDoc| +2026-03-19 19:45:30.5329|DEBUG|OnDoc| +2026-03-19 19:45:30.5329|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5398|DEBUG|OnDoc| +2026-03-19 19:45:30.5725|DEBUG|OnDoc| +2026-03-19 19:45:30.5725|DEBUG|OnDoc| +2026-03-19 19:45:30.5725|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:45:30.6415|DEBUG|OnDoc| +2026-03-19 19:45:30.6415|DEBUG|OnDoc| +2026-03-19 19:45:30.7329|DEBUG|OnDoc| +2026-03-19 19:45:30.7329|DEBUG|OnDoc| +2026-03-19 19:45:30.7459|DEBUG|OnDoc| +2026-03-19 19:45:30.7459|DEBUG|OnDoc| +2026-03-19 19:45:30.7459|DEBUG|OnDoc| +2026-03-19 19:45:30.7459|DEBUG|OnDoc| +2026-03-19 19:45:30.8228|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:45:30.8228|DEBUG|OnDoc| +2026-03-19 19:45:30.8228|DEBUG|OnDoc| +2026-03-19 19:45:30.8228|DEBUG|OnDoc| +2026-03-19 19:45:30.8228|DEBUG|OnDoc| +2026-03-19 19:45:30.8228|DEBUG|OnDoc| +2026-03-19 19:45:30.8366|DEBUG|OnDoc| +2026-03-19 19:45:30.8366|DEBUG|OnDoc| +2026-03-19 19:45:30.8366|DEBUG|OnDoc| +2026-03-19 19:45:30.8366|DEBUG|OnDoc|Generate_Word +2026-03-19 19:45:30.8366|DEBUG|OnDoc|Word2013 +2026-03-19 19:45:30.8366|DEBUG|OnDoc|Word2013 +2026-03-19 19:45:32.1452|DEBUG|OnDoc| +2026-03-19 19:45:32.1547|DEBUG|OnDoc| +2026-03-19 19:45:32.3290|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:45:32.3377|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:45:32.5270|DEBUG|OnDoc| +2026-03-19 19:45:32.5270|DEBUG|OnDoc| +2026-03-19 19:45:32.7089|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:45:32.7187|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:45:33.3831|DEBUG|OnDoc|Generate_Word +2026-03-19 19:45:33.3972|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019342 +2026-03-19 19:45:33.3972|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:45:33.3992|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:45:33.3992|DEBUG|OnDoc| +2026-03-19 19:45:33.3992|DEBUG|OnDoc| +2026-03-19 19:45:33.3992|DEBUG|OnDoc| +2026-03-19 19:45:33.4151|DEBUG|OnDoc| +2026-03-19 19:45:33.4151|DEBUG|OnDoc| +2026-03-19 19:45:33.4151|DEBUG|OnDoc| +2026-03-19 19:45:42.6947|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:45:42.8723|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:45:42.9597|INFO|APIDocLog|Input JSON +2026-03-19 19:45:42.9700|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9700|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9774|DEBUG|OnDoc| +2026-03-19 19:45:42.9950|DEBUG|OnDoc| +2026-03-19 19:45:42.9950|DEBUG|OnDoc| +2026-03-19 19:45:42.9950|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:45:43.0588|DEBUG|OnDoc| +2026-03-19 19:45:43.0588|DEBUG|OnDoc| +2026-03-19 19:45:43.1462|DEBUG|OnDoc| +2026-03-19 19:45:43.1462|DEBUG|OnDoc| +2026-03-19 19:45:43.1561|DEBUG|OnDoc| +2026-03-19 19:45:43.1561|DEBUG|OnDoc| +2026-03-19 19:45:43.1561|DEBUG|OnDoc| +2026-03-19 19:45:43.1561|DEBUG|OnDoc| +2026-03-19 19:45:43.2338|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:45:43.2338|DEBUG|OnDoc| +2026-03-19 19:45:43.2436|DEBUG|OnDoc| +2026-03-19 19:45:43.2436|DEBUG|OnDoc| +2026-03-19 19:45:43.2436|DEBUG|OnDoc| +2026-03-19 19:45:43.2436|DEBUG|OnDoc| +2026-03-19 19:45:43.2436|DEBUG|OnDoc| +2026-03-19 19:45:43.2436|DEBUG|OnDoc| +2026-03-19 19:45:43.2436|DEBUG|OnDoc| +2026-03-19 19:45:43.2436|DEBUG|OnDoc|Generate_Word +2026-03-19 19:45:43.2622|DEBUG|OnDoc|Word2013 +2026-03-19 19:45:43.2622|DEBUG|OnDoc|Word2013 +2026-03-19 19:45:44.5655|DEBUG|OnDoc| +2026-03-19 19:45:44.5755|DEBUG|OnDoc| +2026-03-19 19:45:44.7506|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:45:44.7586|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:45:44.9541|DEBUG|OnDoc| +2026-03-19 19:45:44.9637|DEBUG|OnDoc| +2026-03-19 19:45:45.1370|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:45:45.1370|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:45:45.8540|DEBUG|OnDoc|Generate_Word +2026-03-19 19:45:45.8540|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019358 +2026-03-19 19:45:45.8540|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:45:45.8540|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:45:45.8540|DEBUG|OnDoc| +2026-03-19 19:45:45.8799|DEBUG|OnDoc| +2026-03-19 19:45:45.8799|DEBUG|OnDoc| +2026-03-19 19:45:45.8799|DEBUG|OnDoc| +2026-03-19 19:45:45.8799|DEBUG|OnDoc| +2026-03-19 19:45:45.8799|DEBUG|OnDoc| +2026-03-19 19:46:27.9631|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:46:28.1633|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:46:28.2625|INFO|APIDocLog|Input JSON +2026-03-19 19:46:28.2625|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.2742|DEBUG|OnDoc| +2026-03-19 19:46:28.3115|DEBUG|OnDoc| +2026-03-19 19:46:28.3115|DEBUG|OnDoc| +2026-03-19 19:46:28.3221|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:46:28.3673|DEBUG|OnDoc| +2026-03-19 19:46:28.3698|DEBUG|OnDoc| +2026-03-19 19:46:28.4648|DEBUG|OnDoc| +2026-03-19 19:46:28.4648|DEBUG|OnDoc| +2026-03-19 19:46:28.4648|DEBUG|OnDoc| +2026-03-19 19:46:28.4648|DEBUG|OnDoc| +2026-03-19 19:46:28.4777|DEBUG|OnDoc| +2026-03-19 19:46:28.4777|DEBUG|OnDoc| +2026-03-19 19:46:28.5681|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:46:28.5681|DEBUG|OnDoc| +2026-03-19 19:46:28.5756|DEBUG|OnDoc| +2026-03-19 19:46:28.5756|DEBUG|OnDoc| +2026-03-19 19:46:28.5756|DEBUG|OnDoc| +2026-03-19 19:46:28.5756|DEBUG|OnDoc| +2026-03-19 19:46:28.5756|DEBUG|OnDoc| +2026-03-19 19:46:28.5756|DEBUG|OnDoc| +2026-03-19 19:46:28.5884|DEBUG|OnDoc| +2026-03-19 19:46:28.5884|DEBUG|OnDoc|Generate_Word +2026-03-19 19:46:28.6030|DEBUG|OnDoc|Word2013 +2026-03-19 19:46:28.6030|DEBUG|OnDoc|Word2013 +2026-03-19 19:46:30.1149|DEBUG|OnDoc| +2026-03-19 19:46:30.1239|DEBUG|OnDoc| +2026-03-19 19:46:30.3277|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:46:30.3366|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:46:30.5554|DEBUG|OnDoc| +2026-03-19 19:46:30.5554|DEBUG|OnDoc| +2026-03-19 19:46:30.7699|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:46:30.7794|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:46:31.5035|DEBUG|OnDoc|Generate_Word +2026-03-19 19:46:31.5217|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019363 +2026-03-19 19:46:31.5217|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:46:31.5217|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:46:31.5250|DEBUG|OnDoc| +2026-03-19 19:46:31.5414|DEBUG|OnDoc| +2026-03-19 19:46:31.5414|DEBUG|OnDoc| +2026-03-19 19:46:31.5414|DEBUG|OnDoc| +2026-03-19 19:46:31.5414|DEBUG|OnDoc| +2026-03-19 19:46:31.5414|DEBUG|OnDoc| +2026-03-19 19:46:53.4128|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:46:53.6243|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:46:53.7202|INFO|APIDocLog|Input JSON +2026-03-19 19:46:53.7318|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7318|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7432|DEBUG|OnDoc| +2026-03-19 19:46:53.7652|DEBUG|OnDoc| +2026-03-19 19:46:53.7652|DEBUG|OnDoc| +2026-03-19 19:46:53.7747|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:46:53.8206|DEBUG|OnDoc| +2026-03-19 19:46:53.8230|DEBUG|OnDoc| +2026-03-19 19:46:53.9210|DEBUG|OnDoc| +2026-03-19 19:46:53.9210|DEBUG|OnDoc| +2026-03-19 19:46:53.9316|DEBUG|OnDoc| +2026-03-19 19:46:53.9316|DEBUG|OnDoc| +2026-03-19 19:46:53.9316|DEBUG|OnDoc| +2026-03-19 19:46:53.9316|DEBUG|OnDoc| +2026-03-19 19:46:54.0197|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:46:54.0197|DEBUG|OnDoc| +2026-03-19 19:46:54.0270|DEBUG|OnDoc| +2026-03-19 19:46:54.0270|DEBUG|OnDoc| +2026-03-19 19:46:54.0270|DEBUG|OnDoc| +2026-03-19 19:46:54.0270|DEBUG|OnDoc| +2026-03-19 19:46:54.0270|DEBUG|OnDoc| +2026-03-19 19:46:54.0270|DEBUG|OnDoc| +2026-03-19 19:46:54.0270|DEBUG|OnDoc| +2026-03-19 19:46:54.0270|DEBUG|OnDoc|Generate_Word +2026-03-19 19:46:54.0455|DEBUG|OnDoc|Word2013 +2026-03-19 19:46:54.0455|DEBUG|OnDoc|Word2013 +2026-03-19 19:46:55.5436|DEBUG|OnDoc| +2026-03-19 19:46:55.5436|DEBUG|OnDoc| +2026-03-19 19:46:55.7579|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:46:55.7658|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:46:55.9862|DEBUG|OnDoc| +2026-03-19 19:46:55.9953|DEBUG|OnDoc| +2026-03-19 19:46:56.2041|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:46:56.2124|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:46:56.8888|DEBUG|OnDoc|Generate_Word +2026-03-19 19:46:56.9003|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019379 +2026-03-19 19:46:56.9003|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:46:56.9003|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:46:56.9003|DEBUG|OnDoc| +2026-03-19 19:46:56.9159|DEBUG|OnDoc| +2026-03-19 19:46:56.9159|DEBUG|OnDoc| +2026-03-19 19:46:56.9159|DEBUG|OnDoc| +2026-03-19 19:46:56.9159|DEBUG|OnDoc| +2026-03-19 19:46:56.9159|DEBUG|OnDoc| +2026-03-19 19:47:26.3218|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:47:26.5410|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:47:26.6466|INFO|APIDocLog|Input JSON +2026-03-19 19:47:26.6570|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6570|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6650|DEBUG|OnDoc| +2026-03-19 19:47:26.6960|DEBUG|OnDoc| +2026-03-19 19:47:26.6960|DEBUG|OnDoc| +2026-03-19 19:47:26.6960|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:47:26.7509|DEBUG|OnDoc| +2026-03-19 19:47:26.7509|DEBUG|OnDoc| +2026-03-19 19:47:26.8578|DEBUG|OnDoc| +2026-03-19 19:47:26.8578|DEBUG|OnDoc| +2026-03-19 19:47:26.8679|DEBUG|OnDoc| +2026-03-19 19:47:26.8679|DEBUG|OnDoc| +2026-03-19 19:47:26.8679|DEBUG|OnDoc| +2026-03-19 19:47:26.8679|DEBUG|OnDoc| +2026-03-19 19:47:26.9667|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:47:26.9667|DEBUG|OnDoc| +2026-03-19 19:47:26.9667|DEBUG|OnDoc| +2026-03-19 19:47:26.9667|DEBUG|OnDoc| +2026-03-19 19:47:26.9779|DEBUG|OnDoc| +2026-03-19 19:47:26.9779|DEBUG|OnDoc| +2026-03-19 19:47:26.9779|DEBUG|OnDoc| +2026-03-19 19:47:26.9779|DEBUG|OnDoc| +2026-03-19 19:47:26.9982|DEBUG|OnDoc| +2026-03-19 19:47:26.9982|DEBUG|OnDoc|Generate_Word +2026-03-19 19:47:27.0128|DEBUG|OnDoc|Word2013 +2026-03-19 19:47:27.0128|DEBUG|OnDoc|Word2013 +2026-03-19 19:47:28.7309|DEBUG|OnDoc| +2026-03-19 19:47:28.7309|DEBUG|OnDoc| +2026-03-19 19:47:28.9669|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:47:28.9669|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:47:29.2155|DEBUG|OnDoc| +2026-03-19 19:47:29.2155|DEBUG|OnDoc| +2026-03-19 19:47:29.4539|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:47:29.4622|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:47:30.1631|DEBUG|OnDoc|Generate_Word +2026-03-19 19:47:30.1757|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019387 +2026-03-19 19:47:30.1757|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:47:30.1757|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:47:30.1757|DEBUG|OnDoc| +2026-03-19 19:47:30.1917|DEBUG|OnDoc| +2026-03-19 19:47:30.1917|DEBUG|OnDoc| +2026-03-19 19:47:30.1917|DEBUG|OnDoc| +2026-03-19 19:47:30.1917|DEBUG|OnDoc| +2026-03-19 19:47:30.1958|DEBUG|OnDoc| +2026-03-19 19:47:58.6627|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:47:58.9007|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:47:59.0666|INFO|APIDocLog|Input JSON +2026-03-19 19:47:59.0767|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0767|DEBUG|OnDoc| +2026-03-19 19:47:59.0881|DEBUG|OnDoc| +2026-03-19 19:47:59.0881|DEBUG|OnDoc| +2026-03-19 19:47:59.0881|DEBUG|OnDoc| +2026-03-19 19:47:59.0881|DEBUG|OnDoc| +2026-03-19 19:47:59.0881|DEBUG|OnDoc| +2026-03-19 19:47:59.0881|DEBUG|OnDoc| +2026-03-19 19:47:59.0881|DEBUG|OnDoc| +2026-03-19 19:47:59.0881|DEBUG|OnDoc| +2026-03-19 19:47:59.0881|DEBUG|OnDoc| +2026-03-19 19:47:59.0881|DEBUG|OnDoc| +2026-03-19 19:47:59.1026|DEBUG|OnDoc| +2026-03-19 19:47:59.1026|DEBUG|OnDoc| +2026-03-19 19:47:59.1026|DEBUG|OnDoc| +2026-03-19 19:47:59.1026|DEBUG|OnDoc| +2026-03-19 19:47:59.1026|DEBUG|OnDoc| +2026-03-19 19:47:59.1026|DEBUG|OnDoc| +2026-03-19 19:47:59.1026|DEBUG|OnDoc| +2026-03-19 19:47:59.1026|DEBUG|OnDoc| +2026-03-19 19:47:59.1026|DEBUG|OnDoc| +2026-03-19 19:47:59.1333|DEBUG|OnDoc| +2026-03-19 19:47:59.1333|DEBUG|OnDoc| +2026-03-19 19:47:59.1333|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:47:59.1896|DEBUG|OnDoc| +2026-03-19 19:47:59.1896|DEBUG|OnDoc| +2026-03-19 19:47:59.2996|DEBUG|OnDoc| +2026-03-19 19:47:59.2996|DEBUG|OnDoc| +2026-03-19 19:47:59.3094|DEBUG|OnDoc| +2026-03-19 19:47:59.3094|DEBUG|OnDoc| +2026-03-19 19:47:59.3094|DEBUG|OnDoc| +2026-03-19 19:47:59.3094|DEBUG|OnDoc| +2026-03-19 19:47:59.4206|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:47:59.4206|DEBUG|OnDoc| +2026-03-19 19:47:59.4308|DEBUG|OnDoc| +2026-03-19 19:47:59.4308|DEBUG|OnDoc| +2026-03-19 19:47:59.4308|DEBUG|OnDoc| +2026-03-19 19:47:59.4308|DEBUG|OnDoc| +2026-03-19 19:47:59.4308|DEBUG|OnDoc| +2026-03-19 19:47:59.4308|DEBUG|OnDoc| +2026-03-19 19:47:59.4308|DEBUG|OnDoc| +2026-03-19 19:47:59.4308|DEBUG|OnDoc|Generate_Word +2026-03-19 19:47:59.4570|DEBUG|OnDoc|Word2013 +2026-03-19 19:47:59.4570|DEBUG|OnDoc|Word2013 +2026-03-19 19:48:01.3822|DEBUG|OnDoc| +2026-03-19 19:48:01.3909|DEBUG|OnDoc| +2026-03-19 19:48:01.6502|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:48:01.6502|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:48:01.9331|DEBUG|OnDoc| +2026-03-19 19:48:01.9331|DEBUG|OnDoc| +2026-03-19 19:48:02.2031|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:48:02.2128|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:48:02.9459|DEBUG|OnDoc|Generate_Word +2026-03-19 19:48:02.9629|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019395 +2026-03-19 19:48:02.9629|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:48:02.9629|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:48:02.9629|DEBUG|OnDoc| +2026-03-19 19:48:02.9879|DEBUG|OnDoc| +2026-03-19 19:48:02.9879|DEBUG|OnDoc| +2026-03-19 19:48:02.9879|DEBUG|OnDoc| +2026-03-19 19:48:02.9879|DEBUG|OnDoc| +2026-03-19 19:48:02.9879|DEBUG|OnDoc| +2026-03-19 19:50:24.3091|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:50:24.5502|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:50:24.6796|INFO|APIDocLog|Input JSON +2026-03-19 19:50:24.6908|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:50:24.6908|DEBUG|OnDoc| +2026-03-19 19:50:24.6908|DEBUG|OnDoc| +2026-03-19 19:50:24.6908|DEBUG|OnDoc| +2026-03-19 19:50:24.6908|DEBUG|OnDoc| +2026-03-19 19:50:24.6908|DEBUG|OnDoc| +2026-03-19 19:50:24.6908|DEBUG|OnDoc| +2026-03-19 19:50:24.6908|DEBUG|OnDoc| +2026-03-19 19:50:24.6908|DEBUG|OnDoc| +2026-03-19 19:50:24.6908|DEBUG|OnDoc| +2026-03-19 19:50:24.6908|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.6964|DEBUG|OnDoc| +2026-03-19 19:50:24.7324|DEBUG|OnDoc| +2026-03-19 19:50:24.7324|DEBUG|OnDoc| +2026-03-19 19:50:24.7434|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:50:24.7946|DEBUG|OnDoc| +2026-03-19 19:50:24.7946|DEBUG|OnDoc| +2026-03-19 19:50:24.9250|DEBUG|OnDoc| +2026-03-19 19:50:24.9250|DEBUG|OnDoc| +2026-03-19 19:50:24.9383|DEBUG|OnDoc| +2026-03-19 19:50:24.9383|DEBUG|OnDoc| +2026-03-19 19:50:24.9383|DEBUG|OnDoc| +2026-03-19 19:50:24.9383|DEBUG|OnDoc| +2026-03-19 19:50:25.0658|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:50:25.0658|DEBUG|OnDoc| +2026-03-19 19:50:25.0749|DEBUG|OnDoc| +2026-03-19 19:50:25.0749|DEBUG|OnDoc| +2026-03-19 19:50:25.0749|DEBUG|OnDoc| +2026-03-19 19:50:25.0749|DEBUG|OnDoc| +2026-03-19 19:50:25.0749|DEBUG|OnDoc| +2026-03-19 19:50:25.0749|DEBUG|OnDoc| +2026-03-19 19:50:25.0749|DEBUG|OnDoc| +2026-03-19 19:50:25.0869|DEBUG|OnDoc|Generate_Word +2026-03-19 19:50:25.0869|DEBUG|OnDoc|Word2013 +2026-03-19 19:50:25.1022|DEBUG|OnDoc|Word2013 +2026-03-19 19:50:27.3687|DEBUG|OnDoc| +2026-03-19 19:50:27.3687|DEBUG|OnDoc| +2026-03-19 19:50:27.6654|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:50:27.6654|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:50:28.1005|DEBUG|OnDoc| +2026-03-19 19:50:28.1100|DEBUG|OnDoc| +2026-03-19 19:50:28.4061|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:50:28.4156|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:50:29.1378|DEBUG|OnDoc|Generate_Word +2026-03-19 19:50:29.1499|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019405 +2026-03-19 19:50:29.1499|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:50:29.1499|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:50:29.1499|DEBUG|OnDoc| +2026-03-19 19:50:29.1675|DEBUG|OnDoc| +2026-03-19 19:50:29.1675|DEBUG|OnDoc| +2026-03-19 19:50:29.1675|DEBUG|OnDoc| +2026-03-19 19:50:29.1675|DEBUG|OnDoc| +2026-03-19 19:50:29.1675|DEBUG|OnDoc| +2026-03-19 19:52:06.7935|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:52:07.0807|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:52:07.2197|INFO|APIDocLog|Input JSON +2026-03-19 19:52:07.2298|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2298|DEBUG|OnDoc| +2026-03-19 19:52:07.2437|DEBUG|OnDoc| +2026-03-19 19:52:07.2437|DEBUG|OnDoc| +2026-03-19 19:52:07.2437|DEBUG|OnDoc| +2026-03-19 19:52:07.2437|DEBUG|OnDoc| +2026-03-19 19:52:07.2437|DEBUG|OnDoc| +2026-03-19 19:52:07.2437|DEBUG|OnDoc| +2026-03-19 19:52:07.2665|DEBUG|OnDoc| +2026-03-19 19:52:07.2665|DEBUG|OnDoc| +2026-03-19 19:52:07.2862|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:52:07.3421|DEBUG|OnDoc| +2026-03-19 19:52:07.3421|DEBUG|OnDoc| +2026-03-19 19:52:07.4822|DEBUG|OnDoc| +2026-03-19 19:52:07.4822|DEBUG|OnDoc| +2026-03-19 19:52:07.4822|DEBUG|OnDoc| +2026-03-19 19:52:07.4927|DEBUG|OnDoc| +2026-03-19 19:52:07.4927|DEBUG|OnDoc| +2026-03-19 19:52:07.4927|DEBUG|OnDoc| +2026-03-19 19:52:07.6251|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:52:07.6251|DEBUG|OnDoc| +2026-03-19 19:52:07.6251|DEBUG|OnDoc| +2026-03-19 19:52:07.6341|DEBUG|OnDoc| +2026-03-19 19:52:07.6341|DEBUG|OnDoc| +2026-03-19 19:52:07.6341|DEBUG|OnDoc| +2026-03-19 19:52:07.6341|DEBUG|OnDoc| +2026-03-19 19:52:07.6341|DEBUG|OnDoc| +2026-03-19 19:52:07.6341|DEBUG|OnDoc| +2026-03-19 19:52:07.6341|DEBUG|OnDoc|Generate_Word +2026-03-19 19:52:07.6621|DEBUG|OnDoc|Word2013 +2026-03-19 19:52:07.6621|DEBUG|OnDoc|Word2013 +2026-03-19 19:52:09.9910|DEBUG|OnDoc| +2026-03-19 19:52:10.0010|DEBUG|OnDoc| +2026-03-19 19:52:10.3313|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:52:10.3412|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:52:10.7051|DEBUG|OnDoc| +2026-03-19 19:52:10.7149|DEBUG|OnDoc| +2026-03-19 19:52:11.0514|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:52:11.0609|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:52:11.8268|DEBUG|OnDoc|Generate_Word +2026-03-19 19:52:11.8389|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019410 +2026-03-19 19:52:11.8389|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:52:11.8389|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:52:11.8389|DEBUG|OnDoc| +2026-03-19 19:52:11.8572|DEBUG|OnDoc| +2026-03-19 19:52:11.8572|DEBUG|OnDoc| +2026-03-19 19:52:11.8572|DEBUG|OnDoc| +2026-03-19 19:52:11.8572|DEBUG|OnDoc| +2026-03-19 19:52:11.8572|DEBUG|OnDoc| +2026-03-19 19:52:35.7903|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:52:36.0899|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:52:36.2360|INFO|APIDocLog|Input JSON +2026-03-19 19:52:36.2478|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2478|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2584|DEBUG|OnDoc| +2026-03-19 19:52:36.2780|DEBUG|OnDoc| +2026-03-19 19:52:36.2780|DEBUG|OnDoc| +2026-03-19 19:52:36.2780|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:52:36.3403|DEBUG|OnDoc| +2026-03-19 19:52:36.3403|DEBUG|OnDoc| +2026-03-19 19:52:36.5026|DEBUG|OnDoc| +2026-03-19 19:52:36.5026|DEBUG|OnDoc| +2026-03-19 19:52:36.5115|DEBUG|OnDoc| +2026-03-19 19:52:36.5115|DEBUG|OnDoc| +2026-03-19 19:52:36.5115|DEBUG|OnDoc| +2026-03-19 19:52:36.5115|DEBUG|OnDoc| +2026-03-19 19:52:36.6633|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:52:36.6633|DEBUG|OnDoc| +2026-03-19 19:52:36.6720|DEBUG|OnDoc| +2026-03-19 19:52:36.6720|DEBUG|OnDoc| +2026-03-19 19:52:36.6720|DEBUG|OnDoc| +2026-03-19 19:52:36.6720|DEBUG|OnDoc| +2026-03-19 19:52:36.6720|DEBUG|OnDoc| +2026-03-19 19:52:36.6720|DEBUG|OnDoc| +2026-03-19 19:52:36.6825|DEBUG|OnDoc| +2026-03-19 19:52:36.6825|DEBUG|OnDoc|Generate_Word +2026-03-19 19:52:36.6982|DEBUG|OnDoc|Word2013 +2026-03-19 19:52:36.6982|DEBUG|OnDoc|Word2013 +2026-03-19 19:52:39.2889|DEBUG|OnDoc| +2026-03-19 19:52:39.2984|DEBUG|OnDoc| +2026-03-19 19:52:39.6552|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:52:39.6651|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:52:40.0440|DEBUG|OnDoc| +2026-03-19 19:52:40.0440|DEBUG|OnDoc| +2026-03-19 19:52:40.4157|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:52:40.4157|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:52:41.1729|DEBUG|OnDoc|Generate_Word +2026-03-19 19:52:41.1851|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019421 +2026-03-19 19:52:41.1851|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:52:41.1851|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:52:41.1851|DEBUG|OnDoc| +2026-03-19 19:52:41.2027|DEBUG|OnDoc| +2026-03-19 19:52:41.2027|DEBUG|OnDoc| +2026-03-19 19:52:41.2027|DEBUG|OnDoc| +2026-03-19 19:52:41.2027|DEBUG|OnDoc| +2026-03-19 19:52:41.2027|DEBUG|OnDoc| +2026-03-19 19:52:56.8108|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:52:57.1558|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:52:57.3180|INFO|APIDocLog|Input JSON +2026-03-19 19:52:57.3289|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3289|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3377|DEBUG|OnDoc| +2026-03-19 19:52:57.3557|DEBUG|OnDoc| +2026-03-19 19:52:57.3557|DEBUG|OnDoc| +2026-03-19 19:52:57.3557|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:52:57.4238|DEBUG|OnDoc| +2026-03-19 19:52:57.4238|DEBUG|OnDoc| +2026-03-19 19:52:57.6019|DEBUG|OnDoc| +2026-03-19 19:52:57.6019|DEBUG|OnDoc| +2026-03-19 19:52:57.6103|DEBUG|OnDoc| +2026-03-19 19:52:57.6103|DEBUG|OnDoc| +2026-03-19 19:52:57.6103|DEBUG|OnDoc| +2026-03-19 19:52:57.6103|DEBUG|OnDoc| +2026-03-19 19:52:57.7759|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:52:57.7759|DEBUG|OnDoc| +2026-03-19 19:52:57.7759|DEBUG|OnDoc| +2026-03-19 19:52:57.7759|DEBUG|OnDoc| +2026-03-19 19:52:57.7759|DEBUG|OnDoc| +2026-03-19 19:52:57.7759|DEBUG|OnDoc| +2026-03-19 19:52:57.7909|DEBUG|OnDoc| +2026-03-19 19:52:57.7909|DEBUG|OnDoc| +2026-03-19 19:52:57.7909|DEBUG|OnDoc| +2026-03-19 19:52:57.7909|DEBUG|OnDoc|Generate_Word +2026-03-19 19:52:57.8089|DEBUG|OnDoc|Word2013 +2026-03-19 19:52:57.8089|DEBUG|OnDoc|Word2013 +2026-03-19 19:53:00.7084|DEBUG|OnDoc| +2026-03-19 19:53:00.7182|DEBUG|OnDoc| +2026-03-19 19:53:01.1487|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:53:01.1580|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:53:01.5649|DEBUG|OnDoc| +2026-03-19 19:53:01.5749|DEBUG|OnDoc| +2026-03-19 19:53:01.9733|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:53:01.9827|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:53:02.7267|DEBUG|OnDoc|Generate_Word +2026-03-19 19:53:02.7397|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019436 +2026-03-19 19:53:02.7397|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:53:02.7397|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:53:02.7397|DEBUG|OnDoc| +2026-03-19 19:53:02.7531|DEBUG|OnDoc| +2026-03-19 19:53:02.7531|DEBUG|OnDoc| +2026-03-19 19:53:02.7531|DEBUG|OnDoc| +2026-03-19 19:53:02.7531|DEBUG|OnDoc| +2026-03-19 19:53:02.7531|DEBUG|OnDoc| +2026-03-19 19:54:18.5189|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:54:18.8904|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:54:19.0697|INFO|APIDocLog|Input JSON +2026-03-19 19:54:19.0817|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:54:19.0817|DEBUG|OnDoc| +2026-03-19 19:54:19.0817|DEBUG|OnDoc| +2026-03-19 19:54:19.0817|DEBUG|OnDoc| +2026-03-19 19:54:19.0817|DEBUG|OnDoc| +2026-03-19 19:54:19.0817|DEBUG|OnDoc| +2026-03-19 19:54:19.0817|DEBUG|OnDoc| +2026-03-19 19:54:19.0817|DEBUG|OnDoc| +2026-03-19 19:54:19.0817|DEBUG|OnDoc| +2026-03-19 19:54:19.0817|DEBUG|OnDoc| +2026-03-19 19:54:19.0817|DEBUG|OnDoc| +2026-03-19 19:54:19.0817|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.0875|DEBUG|OnDoc| +2026-03-19 19:54:19.1085|DEBUG|OnDoc| +2026-03-19 19:54:19.1085|DEBUG|OnDoc| +2026-03-19 19:54:19.1177|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:54:19.1673|DEBUG|OnDoc| +2026-03-19 19:54:19.1673|DEBUG|OnDoc| +2026-03-19 19:54:19.3521|DEBUG|OnDoc| +2026-03-19 19:54:19.3521|DEBUG|OnDoc| +2026-03-19 19:54:19.3521|DEBUG|OnDoc| +2026-03-19 19:54:19.3521|DEBUG|OnDoc| +2026-03-19 19:54:19.3521|DEBUG|OnDoc| +2026-03-19 19:54:19.3521|DEBUG|OnDoc| +2026-03-19 19:54:19.5421|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:54:19.5421|DEBUG|OnDoc| +2026-03-19 19:54:19.5421|DEBUG|OnDoc| +2026-03-19 19:54:19.5421|DEBUG|OnDoc| +2026-03-19 19:54:19.5421|DEBUG|OnDoc| +2026-03-19 19:54:19.5421|DEBUG|OnDoc| +2026-03-19 19:54:19.5564|DEBUG|OnDoc| +2026-03-19 19:54:19.5564|DEBUG|OnDoc| +2026-03-19 19:54:19.5564|DEBUG|OnDoc| +2026-03-19 19:54:19.5564|DEBUG|OnDoc|Generate_Word +2026-03-19 19:54:19.5752|DEBUG|OnDoc|Word2013 +2026-03-19 19:54:19.5752|DEBUG|OnDoc|Word2013 +2026-03-19 19:54:22.6797|DEBUG|OnDoc| +2026-03-19 19:54:22.6897|DEBUG|OnDoc| +2026-03-19 19:54:23.1349|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:54:23.1349|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:54:23.5938|DEBUG|OnDoc| +2026-03-19 19:54:23.6029|DEBUG|OnDoc| +2026-03-19 19:54:24.0634|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:54:24.0733|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:54:24.8896|DEBUG|OnDoc|Generate_Word +2026-03-19 19:54:24.9021|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019444 +2026-03-19 19:54:24.9021|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:54:24.9021|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:54:24.9021|DEBUG|OnDoc| +2026-03-19 19:54:24.9195|DEBUG|OnDoc| +2026-03-19 19:54:24.9195|DEBUG|OnDoc| +2026-03-19 19:54:24.9195|DEBUG|OnDoc| +2026-03-19 19:54:24.9195|DEBUG|OnDoc| +2026-03-19 19:54:24.9195|DEBUG|OnDoc| +2026-03-19 19:58:54.5622|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:58:54.9571|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:58:55.1613|INFO|APIDocLog|Input JSON +2026-03-19 19:58:55.1710|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1710|DEBUG|OnDoc| +2026-03-19 19:58:55.1803|DEBUG|OnDoc| +2026-03-19 19:58:55.1803|DEBUG|OnDoc| +2026-03-19 19:58:55.1803|DEBUG|OnDoc| +2026-03-19 19:58:55.1803|DEBUG|OnDoc| +2026-03-19 19:58:55.1803|DEBUG|OnDoc| +2026-03-19 19:58:55.1803|DEBUG|OnDoc| +2026-03-19 19:58:55.1803|DEBUG|OnDoc| +2026-03-19 19:58:55.1803|DEBUG|OnDoc| +2026-03-19 19:58:55.1803|DEBUG|OnDoc| +2026-03-19 19:58:55.1803|DEBUG|OnDoc| +2026-03-19 19:58:55.1803|DEBUG|OnDoc| +2026-03-19 19:58:55.1803|DEBUG|OnDoc| +2026-03-19 19:58:55.1803|DEBUG|OnDoc| +2026-03-19 19:58:55.1803|DEBUG|OnDoc| +2026-03-19 19:58:55.2077|DEBUG|OnDoc| +2026-03-19 19:58:55.2077|DEBUG|OnDoc| +2026-03-19 19:58:55.2171|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:58:55.2669|DEBUG|OnDoc| +2026-03-19 19:58:55.2669|DEBUG|OnDoc| +2026-03-19 19:58:55.4832|DEBUG|OnDoc| +2026-03-19 19:58:55.4832|DEBUG|OnDoc| +2026-03-19 19:58:55.4942|DEBUG|OnDoc| +2026-03-19 19:58:55.4942|DEBUG|OnDoc| +2026-03-19 19:58:55.4942|DEBUG|OnDoc| +2026-03-19 19:58:55.4942|DEBUG|OnDoc| +2026-03-19 19:58:55.6887|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:58:55.6887|DEBUG|OnDoc| +2026-03-19 19:58:55.6967|DEBUG|OnDoc| +2026-03-19 19:58:55.6967|DEBUG|OnDoc| +2026-03-19 19:58:55.6967|DEBUG|OnDoc| +2026-03-19 19:58:55.6967|DEBUG|OnDoc| +2026-03-19 19:58:55.6967|DEBUG|OnDoc| +2026-03-19 19:58:55.6967|DEBUG|OnDoc| +2026-03-19 19:58:55.7116|DEBUG|OnDoc| +2026-03-19 19:58:55.7116|DEBUG|OnDoc|Generate_Word +2026-03-19 19:58:55.7282|DEBUG|OnDoc|Word2013 +2026-03-19 19:58:55.7282|DEBUG|OnDoc|Word2013 +2026-03-19 19:58:59.1709|DEBUG|OnDoc| +2026-03-19 19:58:59.2068|DEBUG|OnDoc| +2026-03-19 19:58:59.7301|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:58:59.7301|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:59:00.2358|DEBUG|OnDoc| +2026-03-19 19:59:00.2442|DEBUG|OnDoc| +2026-03-19 19:59:00.7312|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:59:00.7312|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:59:01.5527|DEBUG|OnDoc|Generate_Word +2026-03-19 19:59:01.5668|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019452 +2026-03-19 19:59:01.5668|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:59:01.5668|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:59:01.5668|DEBUG|OnDoc| +2026-03-19 19:59:01.5793|DEBUG|OnDoc| +2026-03-19 19:59:01.5793|DEBUG|OnDoc| +2026-03-19 19:59:01.5793|DEBUG|OnDoc| +2026-03-19 19:59:01.5793|DEBUG|OnDoc| +2026-03-19 19:59:01.5793|DEBUG|OnDoc| +2026-03-19 19:59:25.3857|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:59:25.7871|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:59:25.9919|INFO|APIDocLog|Input JSON +2026-03-19 19:59:26.0025|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:59:26.0025|DEBUG|OnDoc| +2026-03-19 19:59:26.0025|DEBUG|OnDoc| +2026-03-19 19:59:26.0025|DEBUG|OnDoc| +2026-03-19 19:59:26.0025|DEBUG|OnDoc| +2026-03-19 19:59:26.0025|DEBUG|OnDoc| +2026-03-19 19:59:26.0025|DEBUG|OnDoc| +2026-03-19 19:59:26.0025|DEBUG|OnDoc| +2026-03-19 19:59:26.0025|DEBUG|OnDoc| +2026-03-19 19:59:26.0025|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0085|DEBUG|OnDoc| +2026-03-19 19:59:26.0323|DEBUG|OnDoc| +2026-03-19 19:59:26.0323|DEBUG|OnDoc| +2026-03-19 19:59:26.0398|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:59:26.0818|DEBUG|OnDoc| +2026-03-19 19:59:26.0818|DEBUG|OnDoc| +2026-03-19 19:59:26.2949|DEBUG|OnDoc| +2026-03-19 19:59:26.2949|DEBUG|OnDoc| +2026-03-19 19:59:26.3053|DEBUG|OnDoc| +2026-03-19 19:59:26.3053|DEBUG|OnDoc| +2026-03-19 19:59:26.3053|DEBUG|OnDoc| +2026-03-19 19:59:26.3053|DEBUG|OnDoc| +2026-03-19 19:59:26.5007|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:59:26.5007|DEBUG|OnDoc| +2026-03-19 19:59:26.5007|DEBUG|OnDoc| +2026-03-19 19:59:26.5092|DEBUG|OnDoc| +2026-03-19 19:59:26.5092|DEBUG|OnDoc| +2026-03-19 19:59:26.5092|DEBUG|OnDoc| +2026-03-19 19:59:26.5092|DEBUG|OnDoc| +2026-03-19 19:59:26.5092|DEBUG|OnDoc| +2026-03-19 19:59:26.5092|DEBUG|OnDoc| +2026-03-19 19:59:26.5092|DEBUG|OnDoc|Generate_Word +2026-03-19 19:59:26.5286|DEBUG|OnDoc|Word2013 +2026-03-19 19:59:26.5286|DEBUG|OnDoc|Word2013 +2026-03-19 19:59:29.9449|DEBUG|OnDoc| +2026-03-19 19:59:29.9812|DEBUG|OnDoc| +2026-03-19 19:59:30.4985|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 19:59:30.5083|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 19:59:31.0130|DEBUG|OnDoc| +2026-03-19 19:59:31.0130|DEBUG|OnDoc| +2026-03-19 19:59:31.5360|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 19:59:31.5458|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 19:59:32.3082|DEBUG|OnDoc|Generate_Word +2026-03-19 19:59:32.3228|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019468 +2026-03-19 19:59:32.3228|INFO|DocLog|Dokument über API erstellt +2026-03-19 19:59:32.3228|INFO|APIDocLog|Dokument return to sender +2026-03-19 19:59:32.3228|DEBUG|OnDoc| +2026-03-19 19:59:32.3380|DEBUG|OnDoc| +2026-03-19 19:59:32.3380|DEBUG|OnDoc| +2026-03-19 19:59:32.3380|DEBUG|OnDoc| +2026-03-19 19:59:32.3380|DEBUG|OnDoc| +2026-03-19 19:59:32.3380|DEBUG|OnDoc| +2026-03-19 19:59:57.2079|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 19:59:57.6252|INFO|APIDocLog|Start CreateDoc +2026-03-19 19:59:57.8355|INFO|APIDocLog|Input JSON +2026-03-19 19:59:57.8455|DEBUG|OnDoc|Start GenDoc +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8455|DEBUG|OnDoc| +2026-03-19 19:59:57.8530|DEBUG|OnDoc| +2026-03-19 19:59:57.8530|DEBUG|OnDoc| +2026-03-19 19:59:57.8530|DEBUG|OnDoc| +2026-03-19 19:59:57.8530|DEBUG|OnDoc| +2026-03-19 19:59:57.8530|DEBUG|OnDoc| +2026-03-19 19:59:57.8530|DEBUG|OnDoc| +2026-03-19 19:59:57.8530|DEBUG|OnDoc| +2026-03-19 19:59:57.8530|DEBUG|OnDoc| +2026-03-19 19:59:57.8530|DEBUG|OnDoc| +2026-03-19 19:59:57.8530|DEBUG|OnDoc| +2026-03-19 19:59:57.8530|DEBUG|OnDoc| +2026-03-19 19:59:57.8530|DEBUG|OnDoc| +2026-03-19 19:59:57.8530|DEBUG|OnDoc| +2026-03-19 19:59:57.8780|DEBUG|OnDoc| +2026-03-19 19:59:57.8780|DEBUG|OnDoc| +2026-03-19 19:59:57.8861|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 19:59:57.9309|DEBUG|OnDoc| +2026-03-19 19:59:57.9309|DEBUG|OnDoc| +2026-03-19 19:59:58.1619|DEBUG|OnDoc| +2026-03-19 19:59:58.1619|DEBUG|OnDoc| +2026-03-19 19:59:58.1720|DEBUG|OnDoc| +2026-03-19 19:59:58.1720|DEBUG|OnDoc| +2026-03-19 19:59:58.1720|DEBUG|OnDoc| +2026-03-19 19:59:58.1720|DEBUG|OnDoc| +2026-03-19 19:59:58.3811|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 19:59:58.3811|DEBUG|OnDoc| +2026-03-19 19:59:58.3874|DEBUG|OnDoc| +2026-03-19 19:59:58.3874|DEBUG|OnDoc| +2026-03-19 19:59:58.3874|DEBUG|OnDoc| +2026-03-19 19:59:58.3874|DEBUG|OnDoc| +2026-03-19 19:59:58.3874|DEBUG|OnDoc| +2026-03-19 19:59:58.3874|DEBUG|OnDoc| +2026-03-19 19:59:58.3992|DEBUG|OnDoc| +2026-03-19 19:59:58.3992|DEBUG|OnDoc|Generate_Word +2026-03-19 19:59:58.3992|DEBUG|OnDoc|Word2013 +2026-03-19 19:59:58.4156|DEBUG|OnDoc|Word2013 +2026-03-19 20:00:02.1365|DEBUG|OnDoc| +2026-03-19 20:00:02.1365|DEBUG|OnDoc| +2026-03-19 20:00:02.6651|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:00:02.6651|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:00:35.8916|DEBUG|OnDoc| +2026-03-19 20:00:35.9269|DEBUG|OnDoc| +2026-03-19 20:00:36.4408|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:00:36.4498|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:00:37.2919|DEBUG|OnDoc|Generate_Word +2026-03-19 20:00:37.2919|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019473 +2026-03-19 20:00:37.3053|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:00:37.3053|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:00:37.3053|DEBUG|OnDoc| +2026-03-19 20:00:37.3286|DEBUG|OnDoc| +2026-03-19 20:00:37.3286|DEBUG|OnDoc| +2026-03-19 20:00:37.3286|DEBUG|OnDoc| +2026-03-19 20:00:37.3286|DEBUG|OnDoc| +2026-03-19 20:00:37.3286|DEBUG|OnDoc| +2026-03-19 20:01:46.3424|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:01:46.7537|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:01:46.9650|INFO|APIDocLog|Input JSON +2026-03-19 20:01:46.9650|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:01:46.9650|DEBUG|OnDoc| +2026-03-19 20:01:46.9650|DEBUG|OnDoc| +2026-03-19 20:01:46.9650|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9775|DEBUG|OnDoc| +2026-03-19 20:01:46.9993|DEBUG|OnDoc| +2026-03-19 20:01:46.9993|DEBUG|OnDoc| +2026-03-19 20:01:46.9993|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:01:47.0539|DEBUG|OnDoc| +2026-03-19 20:01:47.0561|DEBUG|OnDoc| +2026-03-19 20:01:47.2823|DEBUG|OnDoc| +2026-03-19 20:01:47.2823|DEBUG|OnDoc| +2026-03-19 20:01:47.2950|DEBUG|OnDoc| +2026-03-19 20:01:47.2950|DEBUG|OnDoc| +2026-03-19 20:01:47.2950|DEBUG|OnDoc| +2026-03-19 20:01:47.2950|DEBUG|OnDoc| +2026-03-19 20:01:47.5066|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:01:47.5066|DEBUG|OnDoc| +2026-03-19 20:01:47.5132|DEBUG|OnDoc| +2026-03-19 20:01:47.5132|DEBUG|OnDoc| +2026-03-19 20:01:47.5132|DEBUG|OnDoc| +2026-03-19 20:01:47.5132|DEBUG|OnDoc| +2026-03-19 20:01:47.5132|DEBUG|OnDoc| +2026-03-19 20:01:47.5132|DEBUG|OnDoc| +2026-03-19 20:01:47.5266|DEBUG|OnDoc| +2026-03-19 20:01:47.5266|DEBUG|OnDoc|Generate_Word +2026-03-19 20:01:47.5266|DEBUG|OnDoc|Word2013 +2026-03-19 20:01:47.5266|DEBUG|OnDoc|Word2013 +2026-03-19 20:01:51.2072|DEBUG|OnDoc| +2026-03-19 20:01:51.2461|DEBUG|OnDoc| +2026-03-19 20:01:51.7740|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:01:51.7740|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:01:58.7174|DEBUG|OnDoc| +2026-03-19 20:01:58.7533|DEBUG|OnDoc| +2026-03-19 20:01:59.2774|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:01:59.2774|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:02:00.0847|DEBUG|OnDoc|Generate_Word +2026-03-19 20:02:00.0968|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019489 +2026-03-19 20:02:00.0968|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:02:00.0968|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:02:00.0968|DEBUG|OnDoc| +2026-03-19 20:02:00.1445|DEBUG|OnDoc| +2026-03-19 20:02:00.1445|DEBUG|OnDoc| +2026-03-19 20:02:00.1495|DEBUG|OnDoc| +2026-03-19 20:02:00.1495|DEBUG|OnDoc| +2026-03-19 20:02:00.1495|DEBUG|OnDoc| +2026-03-19 20:02:26.7795|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:02:27.2112|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:02:27.4289|INFO|APIDocLog|Input JSON +2026-03-19 20:02:27.4385|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:02:27.4385|DEBUG|OnDoc| +2026-03-19 20:02:27.4385|DEBUG|OnDoc| +2026-03-19 20:02:27.4385|DEBUG|OnDoc| +2026-03-19 20:02:27.4385|DEBUG|OnDoc| +2026-03-19 20:02:27.4385|DEBUG|OnDoc| +2026-03-19 20:02:27.4385|DEBUG|OnDoc| +2026-03-19 20:02:27.4385|DEBUG|OnDoc| +2026-03-19 20:02:27.4385|DEBUG|OnDoc| +2026-03-19 20:02:27.4385|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4460|DEBUG|OnDoc| +2026-03-19 20:02:27.4709|DEBUG|OnDoc| +2026-03-19 20:02:27.4709|DEBUG|OnDoc| +2026-03-19 20:02:27.4802|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:02:27.5240|DEBUG|OnDoc| +2026-03-19 20:02:27.5240|DEBUG|OnDoc| +2026-03-19 20:02:27.7500|DEBUG|OnDoc| +2026-03-19 20:02:27.7500|DEBUG|OnDoc| +2026-03-19 20:02:27.7646|DEBUG|OnDoc| +2026-03-19 20:02:27.7646|DEBUG|OnDoc| +2026-03-19 20:02:27.7646|DEBUG|OnDoc| +2026-03-19 20:02:27.7646|DEBUG|OnDoc| +2026-03-19 20:02:27.9738|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:02:27.9738|DEBUG|OnDoc| +2026-03-19 20:02:27.9889|DEBUG|OnDoc| +2026-03-19 20:02:27.9889|DEBUG|OnDoc| +2026-03-19 20:02:27.9934|DEBUG|OnDoc| +2026-03-19 20:02:27.9934|DEBUG|OnDoc| +2026-03-19 20:02:27.9934|DEBUG|OnDoc| +2026-03-19 20:02:27.9934|DEBUG|OnDoc| +2026-03-19 20:02:27.9934|DEBUG|OnDoc| +2026-03-19 20:02:28.0085|DEBUG|OnDoc|Generate_Word +2026-03-19 20:02:28.0085|DEBUG|OnDoc|Word2013 +2026-03-19 20:02:28.0085|DEBUG|OnDoc|Word2013 +2026-03-19 20:02:31.6301|DEBUG|OnDoc| +2026-03-19 20:02:31.6393|DEBUG|OnDoc| +2026-03-19 20:02:32.1720|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:02:32.1804|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:02:32.7208|DEBUG|OnDoc| +2026-03-19 20:02:32.7306|DEBUG|OnDoc| +2026-03-19 20:02:33.2659|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:02:33.2751|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:02:34.0455|DEBUG|OnDoc|Generate_Word +2026-03-19 20:02:34.0576|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019497 +2026-03-19 20:02:34.0576|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:02:34.0576|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:02:34.0576|DEBUG|OnDoc| +2026-03-19 20:02:34.0729|DEBUG|OnDoc| +2026-03-19 20:02:34.0729|DEBUG|OnDoc| +2026-03-19 20:02:34.0729|DEBUG|OnDoc| +2026-03-19 20:02:34.0729|DEBUG|OnDoc| +2026-03-19 20:02:34.0729|DEBUG|OnDoc| +2026-03-19 20:02:48.9264|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:02:49.3429|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:02:49.5452|INFO|APIDocLog|Input JSON +2026-03-19 20:02:49.5552|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5552|DEBUG|OnDoc| +2026-03-19 20:02:49.5798|DEBUG|OnDoc| +2026-03-19 20:02:49.5798|DEBUG|OnDoc| +2026-03-19 20:02:49.5886|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:02:49.6310|DEBUG|OnDoc| +2026-03-19 20:02:49.6310|DEBUG|OnDoc| +2026-03-19 20:02:49.8432|DEBUG|OnDoc| +2026-03-19 20:02:49.8432|DEBUG|OnDoc| +2026-03-19 20:02:49.8529|DEBUG|OnDoc| +2026-03-19 20:02:49.8529|DEBUG|OnDoc| +2026-03-19 20:02:49.8529|DEBUG|OnDoc| +2026-03-19 20:02:49.8529|DEBUG|OnDoc| +2026-03-19 20:02:50.0511|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:02:50.0511|DEBUG|OnDoc| +2026-03-19 20:02:50.0581|DEBUG|OnDoc| +2026-03-19 20:02:50.0581|DEBUG|OnDoc| +2026-03-19 20:02:50.0581|DEBUG|OnDoc| +2026-03-19 20:02:50.0581|DEBUG|OnDoc| +2026-03-19 20:02:50.0581|DEBUG|OnDoc| +2026-03-19 20:02:50.0581|DEBUG|OnDoc| +2026-03-19 20:02:50.0581|DEBUG|OnDoc| +2026-03-19 20:02:50.0581|DEBUG|OnDoc|Generate_Word +2026-03-19 20:02:50.0755|DEBUG|OnDoc|Word2013 +2026-03-19 20:02:50.0755|DEBUG|OnDoc|Word2013 +2026-03-19 20:02:53.8025|DEBUG|OnDoc| +2026-03-19 20:02:53.8119|DEBUG|OnDoc| +2026-03-19 20:02:54.3115|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:02:54.3210|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:02:54.8232|DEBUG|OnDoc| +2026-03-19 20:02:54.8232|DEBUG|OnDoc| +2026-03-19 20:02:55.3571|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:02:55.3571|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:02:56.3050|DEBUG|OnDoc|Generate_Word +2026-03-19 20:02:56.3169|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019502 +2026-03-19 20:02:56.3169|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:02:56.3169|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:02:56.3169|DEBUG|OnDoc| +2026-03-19 20:02:56.3328|DEBUG|OnDoc| +2026-03-19 20:02:56.3328|DEBUG|OnDoc| +2026-03-19 20:02:56.3328|DEBUG|OnDoc| +2026-03-19 20:02:56.3328|DEBUG|OnDoc| +2026-03-19 20:02:56.3328|DEBUG|OnDoc| +2026-03-19 20:03:13.6974|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:03:14.0799|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:03:14.2808|INFO|APIDocLog|Input JSON +2026-03-19 20:03:14.2909|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.2909|DEBUG|OnDoc| +2026-03-19 20:03:14.3064|DEBUG|OnDoc| +2026-03-19 20:03:14.3064|DEBUG|OnDoc| +2026-03-19 20:03:14.3064|DEBUG|OnDoc| +2026-03-19 20:03:14.3064|DEBUG|OnDoc| +2026-03-19 20:03:14.3064|DEBUG|OnDoc| +2026-03-19 20:03:14.3253|DEBUG|OnDoc| +2026-03-19 20:03:14.3253|DEBUG|OnDoc| +2026-03-19 20:03:14.3253|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:03:14.3748|DEBUG|OnDoc| +2026-03-19 20:03:14.3748|DEBUG|OnDoc| +2026-03-19 20:03:14.5913|DEBUG|OnDoc| +2026-03-19 20:03:14.5913|DEBUG|OnDoc| +2026-03-19 20:03:14.6028|DEBUG|OnDoc| +2026-03-19 20:03:14.6028|DEBUG|OnDoc| +2026-03-19 20:03:14.6028|DEBUG|OnDoc| +2026-03-19 20:03:14.6028|DEBUG|OnDoc| +2026-03-19 20:03:14.7992|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:03:14.7992|DEBUG|OnDoc| +2026-03-19 20:03:14.8060|DEBUG|OnDoc| +2026-03-19 20:03:14.8060|DEBUG|OnDoc| +2026-03-19 20:03:14.8060|DEBUG|OnDoc| +2026-03-19 20:03:14.8060|DEBUG|OnDoc| +2026-03-19 20:03:14.8060|DEBUG|OnDoc| +2026-03-19 20:03:14.8060|DEBUG|OnDoc| +2026-03-19 20:03:14.8060|DEBUG|OnDoc| +2026-03-19 20:03:14.8060|DEBUG|OnDoc|Generate_Word +2026-03-19 20:03:14.8269|DEBUG|OnDoc|Word2013 +2026-03-19 20:03:14.8269|DEBUG|OnDoc|Word2013 +2026-03-19 20:03:19.0056|DEBUG|OnDoc|Generate_Word +2026-03-19 20:03:19.0188|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019518 +2026-03-19 20:03:19.0188|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:03:19.0188|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:03:19.0188|DEBUG|OnDoc| +2026-03-19 20:03:19.0309|DEBUG|OnDoc| +2026-03-19 20:03:19.0309|DEBUG|OnDoc| +2026-03-19 20:03:19.0309|DEBUG|OnDoc| +2026-03-19 20:03:19.0309|DEBUG|OnDoc| +2026-03-19 20:03:19.0309|DEBUG|OnDoc| +2026-03-19 20:03:42.5086|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:03:42.9271|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:03:43.1329|INFO|APIDocLog|Input JSON +2026-03-19 20:03:43.1423|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1423|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1490|DEBUG|OnDoc| +2026-03-19 20:03:43.1670|DEBUG|OnDoc| +2026-03-19 20:03:43.1670|DEBUG|OnDoc| +2026-03-19 20:03:43.1670|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:03:43.2191|DEBUG|OnDoc| +2026-03-19 20:03:43.2191|DEBUG|OnDoc| +2026-03-19 20:03:43.4634|DEBUG|OnDoc| +2026-03-19 20:03:43.4634|DEBUG|OnDoc| +2026-03-19 20:03:43.4634|DEBUG|OnDoc| +2026-03-19 20:03:43.4634|DEBUG|OnDoc| +2026-03-19 20:03:43.4634|DEBUG|OnDoc| +2026-03-19 20:03:43.4634|DEBUG|OnDoc| +2026-03-19 20:03:43.6776|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:03:43.6776|DEBUG|OnDoc| +2026-03-19 20:03:43.6853|DEBUG|OnDoc| +2026-03-19 20:03:43.6853|DEBUG|OnDoc| +2026-03-19 20:03:43.6853|DEBUG|OnDoc| +2026-03-19 20:03:43.6853|DEBUG|OnDoc| +2026-03-19 20:03:43.6853|DEBUG|OnDoc| +2026-03-19 20:03:43.6853|DEBUG|OnDoc| +2026-03-19 20:03:43.6853|DEBUG|OnDoc| +2026-03-19 20:03:43.6853|DEBUG|OnDoc|Generate_Word +2026-03-19 20:03:43.7022|DEBUG|OnDoc|Word2013 +2026-03-19 20:03:43.7022|DEBUG|OnDoc|Word2013 +2026-03-19 20:03:47.2214|DEBUG|OnDoc| +2026-03-19 20:03:47.2571|DEBUG|OnDoc| +2026-03-19 20:03:47.7879|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:03:47.7968|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:03:48.3205|DEBUG|OnDoc| +2026-03-19 20:03:48.3300|DEBUG|OnDoc| +2026-03-19 20:03:48.8451|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:03:48.8537|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:03:49.6296|DEBUG|OnDoc|Generate_Word +2026-03-19 20:03:49.6414|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019523 +2026-03-19 20:03:49.6414|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:03:49.6414|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:03:49.6414|DEBUG|OnDoc| +2026-03-19 20:03:49.6525|DEBUG|OnDoc| +2026-03-19 20:03:49.6525|DEBUG|OnDoc| +2026-03-19 20:03:49.6525|DEBUG|OnDoc| +2026-03-19 20:03:49.6525|DEBUG|OnDoc| +2026-03-19 20:03:49.6525|DEBUG|OnDoc| +2026-03-19 20:04:14.6630|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:04:15.0951|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:04:15.3034|INFO|APIDocLog|Input JSON +2026-03-19 20:04:15.3138|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:04:15.3138|DEBUG|OnDoc| +2026-03-19 20:04:15.3138|DEBUG|OnDoc| +2026-03-19 20:04:15.3138|DEBUG|OnDoc| +2026-03-19 20:04:15.3138|DEBUG|OnDoc| +2026-03-19 20:04:15.3138|DEBUG|OnDoc| +2026-03-19 20:04:15.3138|DEBUG|OnDoc| +2026-03-19 20:04:15.3138|DEBUG|OnDoc| +2026-03-19 20:04:15.3138|DEBUG|OnDoc| +2026-03-19 20:04:15.3138|DEBUG|OnDoc| +2026-03-19 20:04:15.3138|DEBUG|OnDoc| +2026-03-19 20:04:15.3138|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3214|DEBUG|OnDoc| +2026-03-19 20:04:15.3458|DEBUG|OnDoc| +2026-03-19 20:04:15.3458|DEBUG|OnDoc| +2026-03-19 20:04:15.3566|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:04:15.4008|DEBUG|OnDoc| +2026-03-19 20:04:15.4008|DEBUG|OnDoc| +2026-03-19 20:04:15.6266|DEBUG|OnDoc| +2026-03-19 20:04:15.6266|DEBUG|OnDoc| +2026-03-19 20:04:15.6383|DEBUG|OnDoc| +2026-03-19 20:04:15.6383|DEBUG|OnDoc| +2026-03-19 20:04:15.6383|DEBUG|OnDoc| +2026-03-19 20:04:15.6383|DEBUG|OnDoc| +2026-03-19 20:04:15.8428|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:04:15.8428|DEBUG|OnDoc| +2026-03-19 20:04:15.8428|DEBUG|OnDoc| +2026-03-19 20:04:15.8428|DEBUG|OnDoc| +2026-03-19 20:04:15.8428|DEBUG|OnDoc| +2026-03-19 20:04:15.8428|DEBUG|OnDoc| +2026-03-19 20:04:15.8570|DEBUG|OnDoc| +2026-03-19 20:04:15.8570|DEBUG|OnDoc| +2026-03-19 20:04:15.8570|DEBUG|OnDoc| +2026-03-19 20:04:15.8570|DEBUG|OnDoc|Generate_Word +2026-03-19 20:04:15.8697|DEBUG|OnDoc|Word2013 +2026-03-19 20:04:15.8697|DEBUG|OnDoc|Word2013 +2026-03-19 20:04:19.5538|DEBUG|OnDoc| +2026-03-19 20:04:19.5885|DEBUG|OnDoc| +2026-03-19 20:04:20.1266|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:04:20.1369|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:04:20.6724|DEBUG|OnDoc| +2026-03-19 20:04:20.6828|DEBUG|OnDoc| +2026-03-19 20:04:21.2402|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:04:21.2514|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:04:22.0023|DEBUG|OnDoc|Generate_Word +2026-03-19 20:04:22.0172|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019539 +2026-03-19 20:04:22.0172|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:04:22.0172|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:04:22.0172|DEBUG|OnDoc| +2026-03-19 20:04:22.0304|DEBUG|OnDoc| +2026-03-19 20:04:22.0304|DEBUG|OnDoc| +2026-03-19 20:04:22.0304|DEBUG|OnDoc| +2026-03-19 20:04:22.0304|DEBUG|OnDoc| +2026-03-19 20:04:22.0304|DEBUG|OnDoc| +2026-03-19 20:05:07.6438|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:05:08.0692|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:05:08.2839|INFO|APIDocLog|Input JSON +2026-03-19 20:05:08.2934|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.2934|DEBUG|OnDoc| +2026-03-19 20:05:08.3052|DEBUG|OnDoc| +2026-03-19 20:05:08.3052|DEBUG|OnDoc| +2026-03-19 20:05:08.3052|DEBUG|OnDoc| +2026-03-19 20:05:08.3052|DEBUG|OnDoc| +2026-03-19 20:05:08.3052|DEBUG|OnDoc| +2026-03-19 20:05:08.3052|DEBUG|OnDoc| +2026-03-19 20:05:08.3052|DEBUG|OnDoc| +2026-03-19 20:05:08.3052|DEBUG|OnDoc| +2026-03-19 20:05:08.3052|DEBUG|OnDoc| +2026-03-19 20:05:08.3052|DEBUG|OnDoc| +2026-03-19 20:05:08.3052|DEBUG|OnDoc| +2026-03-19 20:05:08.3052|DEBUG|OnDoc| +2026-03-19 20:05:08.3274|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:05:08.3740|DEBUG|OnDoc| +2026-03-19 20:05:08.3740|DEBUG|OnDoc| +2026-03-19 20:05:08.6010|DEBUG|OnDoc| +2026-03-19 20:05:08.6020|DEBUG|OnDoc| +2026-03-19 20:05:08.6020|DEBUG|OnDoc| +2026-03-19 20:05:08.6020|DEBUG|OnDoc| +2026-03-19 20:05:08.6020|DEBUG|OnDoc| +2026-03-19 20:05:08.6020|DEBUG|OnDoc| +2026-03-19 20:05:08.8195|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:05:08.8195|DEBUG|OnDoc| +2026-03-19 20:05:08.8265|DEBUG|OnDoc| +2026-03-19 20:05:08.8265|DEBUG|OnDoc| +2026-03-19 20:05:08.8265|DEBUG|OnDoc| +2026-03-19 20:05:08.8265|DEBUG|OnDoc| +2026-03-19 20:05:08.8265|DEBUG|OnDoc| +2026-03-19 20:05:08.8265|DEBUG|OnDoc| +2026-03-19 20:05:08.8376|DEBUG|OnDoc| +2026-03-19 20:05:08.8376|DEBUG|OnDoc|Generate_Word +2026-03-19 20:05:08.8376|DEBUG|OnDoc|Word2013 +2026-03-19 20:05:08.8376|DEBUG|OnDoc|Word2013 +2026-03-19 20:05:12.7212|DEBUG|OnDoc| +2026-03-19 20:05:12.7310|DEBUG|OnDoc| +2026-03-19 20:05:13.2742|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:05:13.2742|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:05:13.8182|DEBUG|OnDoc| +2026-03-19 20:05:13.8279|DEBUG|OnDoc| +2026-03-19 20:05:14.3519|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:05:14.3612|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:05:15.1177|DEBUG|OnDoc|Generate_Word +2026-03-19 20:05:15.1177|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019547 +2026-03-19 20:05:15.1177|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:05:15.1335|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:05:15.1335|DEBUG|OnDoc| +2026-03-19 20:05:15.1335|DEBUG|OnDoc| +2026-03-19 20:05:15.1335|DEBUG|OnDoc| +2026-03-19 20:05:15.1335|DEBUG|OnDoc| +2026-03-19 20:05:15.1335|DEBUG|OnDoc| +2026-03-19 20:05:15.1335|DEBUG|OnDoc| +2026-03-19 20:05:26.7512|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:05:27.1852|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:05:27.3951|INFO|APIDocLog|Input JSON +2026-03-19 20:05:27.4053|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4053|DEBUG|OnDoc| +2026-03-19 20:05:27.4155|DEBUG|OnDoc| +2026-03-19 20:05:27.4155|DEBUG|OnDoc| +2026-03-19 20:05:27.4155|DEBUG|OnDoc| +2026-03-19 20:05:27.4155|DEBUG|OnDoc| +2026-03-19 20:05:27.4155|DEBUG|OnDoc| +2026-03-19 20:05:27.4155|DEBUG|OnDoc| +2026-03-19 20:05:27.4155|DEBUG|OnDoc| +2026-03-19 20:05:27.4155|DEBUG|OnDoc| +2026-03-19 20:05:27.4155|DEBUG|OnDoc| +2026-03-19 20:05:27.4155|DEBUG|OnDoc| +2026-03-19 20:05:27.4155|DEBUG|OnDoc| +2026-03-19 20:05:27.4155|DEBUG|OnDoc| +2026-03-19 20:05:27.4155|DEBUG|OnDoc| +2026-03-19 20:05:27.4155|DEBUG|OnDoc| +2026-03-19 20:05:27.4302|DEBUG|OnDoc| +2026-03-19 20:05:27.4302|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:05:27.4913|DEBUG|OnDoc| +2026-03-19 20:05:27.4943|DEBUG|OnDoc| +2026-03-19 20:05:27.7149|DEBUG|OnDoc| +2026-03-19 20:05:27.7149|DEBUG|OnDoc| +2026-03-19 20:05:27.7278|DEBUG|OnDoc| +2026-03-19 20:05:27.7278|DEBUG|OnDoc| +2026-03-19 20:05:27.7278|DEBUG|OnDoc| +2026-03-19 20:05:27.7278|DEBUG|OnDoc| +2026-03-19 20:05:27.9343|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:05:27.9343|DEBUG|OnDoc| +2026-03-19 20:05:27.9343|DEBUG|OnDoc| +2026-03-19 20:05:27.9343|DEBUG|OnDoc| +2026-03-19 20:05:27.9343|DEBUG|OnDoc| +2026-03-19 20:05:27.9343|DEBUG|OnDoc| +2026-03-19 20:05:27.9501|DEBUG|OnDoc| +2026-03-19 20:05:27.9501|DEBUG|OnDoc| +2026-03-19 20:05:27.9501|DEBUG|OnDoc| +2026-03-19 20:05:27.9501|DEBUG|OnDoc|Generate_Word +2026-03-19 20:05:27.9638|DEBUG|OnDoc|Word2013 +2026-03-19 20:05:27.9638|DEBUG|OnDoc|Word2013 +2026-03-19 20:05:31.6599|DEBUG|OnDoc| +2026-03-19 20:05:31.6949|DEBUG|OnDoc| +2026-03-19 20:05:32.2111|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:05:32.2209|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:05:32.7372|DEBUG|OnDoc| +2026-03-19 20:05:32.7468|DEBUG|OnDoc| +2026-03-19 20:05:33.2861|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:05:33.2957|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:05:34.0903|DEBUG|OnDoc|Generate_Word +2026-03-19 20:05:34.1060|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019555 +2026-03-19 20:05:34.1060|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:05:34.1060|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:05:34.1060|DEBUG|OnDoc| +2026-03-19 20:05:34.1204|DEBUG|OnDoc| +2026-03-19 20:05:34.1204|DEBUG|OnDoc| +2026-03-19 20:05:34.1204|DEBUG|OnDoc| +2026-03-19 20:05:34.1204|DEBUG|OnDoc| +2026-03-19 20:05:34.1204|DEBUG|OnDoc| +2026-03-19 20:06:09.5773|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:06:10.0026|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:06:10.2135|INFO|APIDocLog|Input JSON +2026-03-19 20:06:10.2135|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:06:10.2135|DEBUG|OnDoc| +2026-03-19 20:06:10.2135|DEBUG|OnDoc| +2026-03-19 20:06:10.2135|DEBUG|OnDoc| +2026-03-19 20:06:10.2135|DEBUG|OnDoc| +2026-03-19 20:06:10.2135|DEBUG|OnDoc| +2026-03-19 20:06:10.2135|DEBUG|OnDoc| +2026-03-19 20:06:10.2135|DEBUG|OnDoc| +2026-03-19 20:06:10.2135|DEBUG|OnDoc| +2026-03-19 20:06:10.2135|DEBUG|OnDoc| +2026-03-19 20:06:10.2135|DEBUG|OnDoc| +2026-03-19 20:06:10.2135|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2271|DEBUG|OnDoc| +2026-03-19 20:06:10.2427|DEBUG|OnDoc| +2026-03-19 20:06:10.2427|DEBUG|OnDoc| +2026-03-19 20:06:10.2427|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:06:10.2927|DEBUG|OnDoc| +2026-03-19 20:06:10.2927|DEBUG|OnDoc| +2026-03-19 20:06:10.5113|DEBUG|OnDoc| +2026-03-19 20:06:10.5113|DEBUG|OnDoc| +2026-03-19 20:06:10.5113|DEBUG|OnDoc| +2026-03-19 20:06:10.5113|DEBUG|OnDoc| +2026-03-19 20:06:10.5113|DEBUG|OnDoc| +2026-03-19 20:06:10.5113|DEBUG|OnDoc| +2026-03-19 20:06:10.7298|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:06:10.7298|DEBUG|OnDoc| +2026-03-19 20:06:10.7298|DEBUG|OnDoc| +2026-03-19 20:06:10.7298|DEBUG|OnDoc| +2026-03-19 20:06:10.7298|DEBUG|OnDoc| +2026-03-19 20:06:10.7298|DEBUG|OnDoc| +2026-03-19 20:06:10.7298|DEBUG|OnDoc| +2026-03-19 20:06:10.7298|DEBUG|OnDoc| +2026-03-19 20:06:10.7457|DEBUG|OnDoc| +2026-03-19 20:06:10.7457|DEBUG|OnDoc|Generate_Word +2026-03-19 20:06:10.7457|DEBUG|OnDoc|Word2013 +2026-03-19 20:06:10.7457|DEBUG|OnDoc|Word2013 +2026-03-19 20:06:14.5955|DEBUG|OnDoc| +2026-03-19 20:06:14.6061|DEBUG|OnDoc| +2026-03-19 20:06:15.1339|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:06:15.1339|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:06:15.6633|DEBUG|OnDoc| +2026-03-19 20:06:15.6731|DEBUG|OnDoc| +2026-03-19 20:06:16.2122|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:06:16.2122|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:06:16.9435|DEBUG|OnDoc|Generate_Word +2026-03-19 20:06:16.9569|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019560 +2026-03-19 20:06:16.9569|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:06:16.9569|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:06:16.9569|DEBUG|OnDoc| +2026-03-19 20:06:16.9689|DEBUG|OnDoc| +2026-03-19 20:06:16.9689|DEBUG|OnDoc| +2026-03-19 20:06:16.9689|DEBUG|OnDoc| +2026-03-19 20:06:16.9689|DEBUG|OnDoc| +2026-03-19 20:06:16.9689|DEBUG|OnDoc| +2026-03-19 20:06:45.5417|DEBUG|OnDoc| +2026-03-19 20:06:45.6303|DEBUG|OnDoc| +2026-03-19 20:06:45.6338|DEBUG|OnDoc| +2026-03-19 20:06:45.6338|DEBUG|OnDoc| +2026-03-19 20:06:52.2772|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:06:52.4964|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:06:52.5851|INFO|APIDocLog|Input JSON +2026-03-19 20:06:52.6064|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:06:52.6064|DEBUG|OnDoc| +2026-03-19 20:06:52.6064|DEBUG|OnDoc| +2026-03-19 20:06:52.6064|DEBUG|OnDoc| +2026-03-19 20:06:52.6064|DEBUG|OnDoc| +2026-03-19 20:06:52.6064|DEBUG|OnDoc| +2026-03-19 20:06:52.6064|DEBUG|OnDoc| +2026-03-19 20:06:52.6064|DEBUG|OnDoc| +2026-03-19 20:06:52.6064|DEBUG|OnDoc| +2026-03-19 20:06:52.6064|DEBUG|OnDoc| +2026-03-19 20:06:52.6064|DEBUG|OnDoc| +2026-03-19 20:06:52.6064|DEBUG|OnDoc| +2026-03-19 20:06:52.6064|DEBUG|OnDoc| +2026-03-19 20:06:52.6064|DEBUG|OnDoc| +2026-03-19 20:06:52.6064|DEBUG|OnDoc| +2026-03-19 20:06:52.6192|DEBUG|OnDoc| +2026-03-19 20:06:52.6192|DEBUG|OnDoc| +2026-03-19 20:06:52.6192|DEBUG|OnDoc| +2026-03-19 20:06:52.6192|DEBUG|OnDoc| +2026-03-19 20:06:52.6192|DEBUG|OnDoc| +2026-03-19 20:06:52.6192|DEBUG|OnDoc| +2026-03-19 20:06:52.6192|DEBUG|OnDoc| +2026-03-19 20:06:52.6192|DEBUG|OnDoc| +2026-03-19 20:06:52.6192|DEBUG|OnDoc| +2026-03-19 20:06:52.6192|DEBUG|OnDoc| +2026-03-19 20:06:52.6192|DEBUG|OnDoc| +2026-03-19 20:06:52.6192|DEBUG|OnDoc| +2026-03-19 20:06:52.6192|DEBUG|OnDoc| +2026-03-19 20:06:52.6341|DEBUG|OnDoc| +2026-03-19 20:06:52.6341|DEBUG|OnDoc| +2026-03-19 20:06:52.6341|DEBUG|OnDoc| +2026-03-19 20:06:52.6341|DEBUG|OnDoc| +2026-03-19 20:06:52.6341|DEBUG|OnDoc| +2026-03-19 20:06:52.6341|DEBUG|OnDoc| +2026-03-19 20:06:52.6341|DEBUG|OnDoc| +2026-03-19 20:06:52.6529|DEBUG|OnDoc| +2026-03-19 20:06:52.6529|DEBUG|OnDoc| +2026-03-19 20:06:52.6529|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:06:52.8356|DEBUG|OnDoc| +2026-03-19 20:06:52.8449|DEBUG|OnDoc| +2026-03-19 20:06:52.8816|DEBUG|OnDoc| +2026-03-19 20:06:52.8842|DEBUG|OnDoc| +2026-03-19 20:06:52.9089|DEBUG|OnDoc| +2026-03-19 20:06:52.9089|DEBUG|OnDoc| +2026-03-19 20:06:52.9089|DEBUG|OnDoc| +2026-03-19 20:06:52.9089|DEBUG|OnDoc| +2026-03-19 20:06:52.9282|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:06:52.9282|DEBUG|OnDoc| +2026-03-19 20:06:52.9401|DEBUG|OnDoc| +2026-03-19 20:06:52.9401|DEBUG|OnDoc| +2026-03-19 20:06:52.9401|DEBUG|OnDoc| +2026-03-19 20:06:52.9401|DEBUG|OnDoc| +2026-03-19 20:06:52.9487|DEBUG|OnDoc| +2026-03-19 20:06:52.9487|DEBUG|OnDoc| +2026-03-19 20:06:52.9487|DEBUG|OnDoc| +2026-03-19 20:06:52.9487|DEBUG|OnDoc|Generate_Word +2026-03-19 20:06:53.3759|DEBUG|OnDoc|Word2013 +2026-03-19 20:06:53.3849|DEBUG|OnDoc|Word2013 +2026-03-19 20:06:53.8964|DEBUG|OnDoc| +2026-03-19 20:06:53.9053|DEBUG|OnDoc| +2026-03-19 20:06:53.9323|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:06:53.9323|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:06:54.0871|DEBUG|OnDoc| +2026-03-19 20:06:54.0871|DEBUG|OnDoc| +2026-03-19 20:06:54.1210|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:06:54.1210|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:06:56.0108|DEBUG|OnDoc|Generate_Word +2026-03-19 20:06:56.0564|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019571 +2026-03-19 20:06:56.0564|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:06:56.0564|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:06:56.0564|DEBUG|OnDoc| +2026-03-19 20:06:56.0733|DEBUG|OnDoc| +2026-03-19 20:06:56.0733|DEBUG|OnDoc| +2026-03-19 20:06:56.0733|DEBUG|OnDoc| +2026-03-19 20:06:56.0733|DEBUG|OnDoc| +2026-03-19 20:06:56.0733|DEBUG|OnDoc| +2026-03-19 20:07:16.8501|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:07:16.9380|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:07:16.9578|INFO|APIDocLog|Input JSON +2026-03-19 20:07:16.9578|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9618|DEBUG|OnDoc| +2026-03-19 20:07:16.9773|DEBUG|OnDoc| +2026-03-19 20:07:16.9773|DEBUG|OnDoc| +2026-03-19 20:07:16.9773|DEBUG|OnDoc| +2026-03-19 20:07:16.9773|DEBUG|OnDoc| +2026-03-19 20:07:16.9773|DEBUG|OnDoc| +2026-03-19 20:07:16.9773|DEBUG|OnDoc| +2026-03-19 20:07:16.9773|DEBUG|OnDoc| +2026-03-19 20:07:16.9773|DEBUG|OnDoc| +2026-03-19 20:07:16.9773|DEBUG|OnDoc| +2026-03-19 20:07:16.9773|DEBUG|OnDoc| +2026-03-19 20:07:16.9773|DEBUG|OnDoc| +2026-03-19 20:07:16.9773|DEBUG|OnDoc| +2026-03-19 20:07:16.9773|DEBUG|OnDoc| +2026-03-19 20:07:16.9773|DEBUG|OnDoc| +2026-03-19 20:07:16.9983|DEBUG|OnDoc| +2026-03-19 20:07:16.9983|DEBUG|OnDoc| +2026-03-19 20:07:17.0095|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:07:17.0570|DEBUG|OnDoc| +2026-03-19 20:07:17.0570|DEBUG|OnDoc| +2026-03-19 20:07:17.0570|DEBUG|OnDoc| +2026-03-19 20:07:17.0719|DEBUG|OnDoc| +2026-03-19 20:07:17.0719|DEBUG|OnDoc| +2026-03-19 20:07:17.0719|DEBUG|OnDoc| +2026-03-19 20:07:17.0719|DEBUG|OnDoc| +2026-03-19 20:07:17.0719|DEBUG|OnDoc| +2026-03-19 20:07:17.0948|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:07:17.0948|DEBUG|OnDoc| +2026-03-19 20:07:17.1049|DEBUG|OnDoc| +2026-03-19 20:07:17.1049|DEBUG|OnDoc| +2026-03-19 20:07:17.1049|DEBUG|OnDoc| +2026-03-19 20:07:17.1049|DEBUG|OnDoc| +2026-03-19 20:07:17.1049|DEBUG|OnDoc| +2026-03-19 20:07:17.1049|DEBUG|OnDoc| +2026-03-19 20:07:17.1268|DEBUG|OnDoc| +2026-03-19 20:07:17.1268|DEBUG|OnDoc|Generate_Word +2026-03-19 20:07:17.1409|DEBUG|OnDoc|Word2013 +2026-03-19 20:07:17.1409|DEBUG|OnDoc|Word2013 +2026-03-19 20:07:17.4336|DEBUG|OnDoc| +2026-03-19 20:07:17.4336|DEBUG|OnDoc| +2026-03-19 20:07:17.4675|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:07:17.4675|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:07:17.5132|DEBUG|OnDoc| +2026-03-19 20:07:17.5132|DEBUG|OnDoc| +2026-03-19 20:07:17.5408|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:07:17.5408|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:07:18.1767|DEBUG|OnDoc|Generate_Word +2026-03-19 20:07:18.1903|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019586 +2026-03-19 20:07:18.1903|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:07:18.1903|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:07:18.1903|DEBUG|OnDoc| +2026-03-19 20:07:18.2094|DEBUG|OnDoc| +2026-03-19 20:07:18.2094|DEBUG|OnDoc| +2026-03-19 20:07:18.2094|DEBUG|OnDoc| +2026-03-19 20:07:18.2119|DEBUG|OnDoc| +2026-03-19 20:07:18.2119|DEBUG|OnDoc| +2026-03-19 20:07:30.1435|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:07:30.2084|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:07:30.2299|INFO|APIDocLog|Input JSON +2026-03-19 20:07:30.2299|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:07:30.2299|DEBUG|OnDoc| +2026-03-19 20:07:30.2299|DEBUG|OnDoc| +2026-03-19 20:07:30.2299|DEBUG|OnDoc| +2026-03-19 20:07:30.2299|DEBUG|OnDoc| +2026-03-19 20:07:30.2299|DEBUG|OnDoc| +2026-03-19 20:07:30.2299|DEBUG|OnDoc| +2026-03-19 20:07:30.2299|DEBUG|OnDoc| +2026-03-19 20:07:30.2299|DEBUG|OnDoc| +2026-03-19 20:07:30.2299|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2431|DEBUG|OnDoc| +2026-03-19 20:07:30.2593|DEBUG|OnDoc| +2026-03-19 20:07:30.2593|DEBUG|OnDoc| +2026-03-19 20:07:30.2593|DEBUG|OnDoc| +2026-03-19 20:07:30.2593|DEBUG|OnDoc| +2026-03-19 20:07:30.2593|DEBUG|OnDoc| +2026-03-19 20:07:30.2593|DEBUG|OnDoc| +2026-03-19 20:07:30.2593|DEBUG|OnDoc| +2026-03-19 20:07:30.2593|DEBUG|OnDoc| +2026-03-19 20:07:30.2593|DEBUG|OnDoc| +2026-03-19 20:07:30.2756|DEBUG|OnDoc| +2026-03-19 20:07:30.2756|DEBUG|OnDoc| +2026-03-19 20:07:30.2756|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:07:30.3309|DEBUG|OnDoc| +2026-03-19 20:07:30.3309|DEBUG|OnDoc| +2026-03-19 20:07:30.3451|DEBUG|OnDoc| +2026-03-19 20:07:30.3451|DEBUG|OnDoc| +2026-03-19 20:07:30.3611|DEBUG|OnDoc| +2026-03-19 20:07:30.3611|DEBUG|OnDoc| +2026-03-19 20:07:30.3611|DEBUG|OnDoc| +2026-03-19 20:07:30.3611|DEBUG|OnDoc| +2026-03-19 20:07:30.3772|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:07:30.3772|DEBUG|OnDoc| +2026-03-19 20:07:30.3897|DEBUG|OnDoc| +2026-03-19 20:07:30.3897|DEBUG|OnDoc| +2026-03-19 20:07:30.3897|DEBUG|OnDoc| +2026-03-19 20:07:30.3897|DEBUG|OnDoc| +2026-03-19 20:07:30.4024|DEBUG|OnDoc| +2026-03-19 20:07:30.4024|DEBUG|OnDoc| +2026-03-19 20:07:30.4024|DEBUG|OnDoc| +2026-03-19 20:07:30.4024|DEBUG|OnDoc|Generate_Word +2026-03-19 20:07:30.4184|DEBUG|OnDoc|Word2013 +2026-03-19 20:07:30.4184|DEBUG|OnDoc|Word2013 +2026-03-19 20:07:30.6464|DEBUG|OnDoc| +2026-03-19 20:07:30.6567|DEBUG|OnDoc| +2026-03-19 20:07:30.6820|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:07:30.6820|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:07:30.7259|DEBUG|OnDoc| +2026-03-19 20:07:30.7289|DEBUG|OnDoc| +2026-03-19 20:07:30.7538|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:07:30.7538|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:07:31.4069|DEBUG|OnDoc|Generate_Word +2026-03-19 20:07:31.4211|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019594 +2026-03-19 20:07:31.4211|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:07:31.4211|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:07:31.4211|DEBUG|OnDoc| +2026-03-19 20:07:31.4350|DEBUG|OnDoc| +2026-03-19 20:07:31.4350|DEBUG|OnDoc| +2026-03-19 20:07:31.4350|DEBUG|OnDoc| +2026-03-19 20:07:31.4350|DEBUG|OnDoc| +2026-03-19 20:07:31.4350|DEBUG|OnDoc| +2026-03-19 20:07:38.9342|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:07:39.0118|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:07:39.0333|INFO|APIDocLog|Input JSON +2026-03-19 20:07:39.0333|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:07:39.0333|DEBUG|OnDoc| +2026-03-19 20:07:39.0333|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0400|DEBUG|OnDoc| +2026-03-19 20:07:39.0576|DEBUG|OnDoc| +2026-03-19 20:07:39.0576|DEBUG|OnDoc| +2026-03-19 20:07:39.0576|DEBUG|OnDoc| +2026-03-19 20:07:39.0576|DEBUG|OnDoc| +2026-03-19 20:07:39.0576|DEBUG|OnDoc| +2026-03-19 20:07:39.0576|DEBUG|OnDoc| +2026-03-19 20:07:39.0576|DEBUG|OnDoc| +2026-03-19 20:07:39.0576|DEBUG|OnDoc| +2026-03-19 20:07:39.0576|DEBUG|OnDoc| +2026-03-19 20:07:39.0576|DEBUG|OnDoc| +2026-03-19 20:07:39.0576|DEBUG|OnDoc| +2026-03-19 20:07:39.0576|DEBUG|OnDoc| +2026-03-19 20:07:39.0576|DEBUG|OnDoc| +2026-03-19 20:07:39.0710|DEBUG|OnDoc| +2026-03-19 20:07:39.0710|DEBUG|OnDoc| +2026-03-19 20:07:39.0710|DEBUG|OnDoc| +2026-03-19 20:07:39.0936|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:07:39.1373|DEBUG|OnDoc| +2026-03-19 20:07:39.1373|DEBUG|OnDoc| +2026-03-19 20:07:39.1522|DEBUG|OnDoc| +2026-03-19 20:07:39.1522|DEBUG|OnDoc| +2026-03-19 20:07:39.1522|DEBUG|OnDoc| +2026-03-19 20:07:39.1522|DEBUG|OnDoc| +2026-03-19 20:07:39.1522|DEBUG|OnDoc| +2026-03-19 20:07:39.1645|DEBUG|OnDoc| +2026-03-19 20:07:39.1645|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:07:39.1645|DEBUG|OnDoc| +2026-03-19 20:07:39.1861|DEBUG|OnDoc| +2026-03-19 20:07:39.1861|DEBUG|OnDoc| +2026-03-19 20:07:39.1861|DEBUG|OnDoc| +2026-03-19 20:07:39.1861|DEBUG|OnDoc| +2026-03-19 20:07:39.1861|DEBUG|OnDoc| +2026-03-19 20:07:39.1861|DEBUG|OnDoc| +2026-03-19 20:07:39.2001|DEBUG|OnDoc| +2026-03-19 20:07:39.2001|DEBUG|OnDoc|Generate_Word +2026-03-19 20:07:39.2001|DEBUG|OnDoc|Word2013 +2026-03-19 20:07:39.2001|DEBUG|OnDoc|Word2013 +2026-03-19 20:07:39.4227|DEBUG|OnDoc| +2026-03-19 20:07:39.4342|DEBUG|OnDoc| +2026-03-19 20:07:39.4595|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:07:39.4620|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:07:39.5020|DEBUG|OnDoc| +2026-03-19 20:07:39.5020|DEBUG|OnDoc| +2026-03-19 20:07:39.5299|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:07:39.5299|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:07:40.1176|DEBUG|OnDoc|Generate_Word +2026-03-19 20:07:40.1292|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019603 +2026-03-19 20:07:40.1292|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:07:40.1292|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:07:40.1292|DEBUG|OnDoc| +2026-03-19 20:07:40.1447|DEBUG|OnDoc| +2026-03-19 20:07:40.1447|DEBUG|OnDoc| +2026-03-19 20:07:40.1447|DEBUG|OnDoc| +2026-03-19 20:07:40.1447|DEBUG|OnDoc| +2026-03-19 20:07:40.1447|DEBUG|OnDoc| +2026-03-19 20:08:04.3530|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:08:04.4218|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:08:04.4415|INFO|APIDocLog|Input JSON +2026-03-19 20:08:04.4415|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:08:04.4415|DEBUG|OnDoc| +2026-03-19 20:08:04.4415|DEBUG|OnDoc| +2026-03-19 20:08:04.4415|DEBUG|OnDoc| +2026-03-19 20:08:04.4415|DEBUG|OnDoc| +2026-03-19 20:08:04.4415|DEBUG|OnDoc| +2026-03-19 20:08:04.4415|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4467|DEBUG|OnDoc| +2026-03-19 20:08:04.4675|DEBUG|OnDoc| +2026-03-19 20:08:04.4675|DEBUG|OnDoc| +2026-03-19 20:08:04.4834|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:08:04.5284|DEBUG|OnDoc| +2026-03-19 20:08:04.5284|DEBUG|OnDoc| +2026-03-19 20:08:04.5443|DEBUG|OnDoc| +2026-03-19 20:08:04.5443|DEBUG|OnDoc| +2026-03-19 20:08:04.5443|DEBUG|OnDoc| +2026-03-19 20:08:04.5443|DEBUG|OnDoc| +2026-03-19 20:08:04.5443|DEBUG|OnDoc| +2026-03-19 20:08:04.5443|DEBUG|OnDoc| +2026-03-19 20:08:04.5669|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:08:04.5669|DEBUG|OnDoc| +2026-03-19 20:08:04.5764|DEBUG|OnDoc| +2026-03-19 20:08:04.5764|DEBUG|OnDoc| +2026-03-19 20:08:04.5764|DEBUG|OnDoc| +2026-03-19 20:08:04.5764|DEBUG|OnDoc| +2026-03-19 20:08:04.5764|DEBUG|OnDoc| +2026-03-19 20:08:04.5764|DEBUG|OnDoc| +2026-03-19 20:08:04.5864|DEBUG|OnDoc| +2026-03-19 20:08:04.5864|DEBUG|OnDoc|Generate_Word +2026-03-19 20:08:04.5864|DEBUG|OnDoc|Word2013 +2026-03-19 20:08:04.5864|DEBUG|OnDoc|Word2013 +2026-03-19 20:08:04.8165|DEBUG|OnDoc| +2026-03-19 20:08:04.8256|DEBUG|OnDoc| +2026-03-19 20:08:04.8504|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:08:04.8529|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:08:04.8933|DEBUG|OnDoc| +2026-03-19 20:08:04.8933|DEBUG|OnDoc| +2026-03-19 20:08:04.9208|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:08:04.9208|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:08:05.5935|DEBUG|OnDoc|Generate_Word +2026-03-19 20:08:05.6060|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019619 +2026-03-19 20:08:05.6060|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:08:05.6060|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:08:05.6060|DEBUG|OnDoc| +2026-03-19 20:08:05.6208|DEBUG|OnDoc| +2026-03-19 20:08:05.6208|DEBUG|OnDoc| +2026-03-19 20:08:05.6208|DEBUG|OnDoc| +2026-03-19 20:08:05.6208|DEBUG|OnDoc| +2026-03-19 20:08:05.6208|DEBUG|OnDoc| +2026-03-19 20:08:21.0582|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:08:21.1249|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:08:21.1455|INFO|APIDocLog|Input JSON +2026-03-19 20:08:21.1490|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1490|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1646|DEBUG|OnDoc| +2026-03-19 20:08:21.1808|DEBUG|OnDoc| +2026-03-19 20:08:21.1808|DEBUG|OnDoc| +2026-03-19 20:08:21.1808|DEBUG|OnDoc| +2026-03-19 20:08:21.1808|DEBUG|OnDoc| +2026-03-19 20:08:21.1979|DEBUG|OnDoc| +2026-03-19 20:08:21.1979|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:08:21.2480|DEBUG|OnDoc| +2026-03-19 20:08:21.2480|DEBUG|OnDoc| +2026-03-19 20:08:21.2653|DEBUG|OnDoc| +2026-03-19 20:08:21.2653|DEBUG|OnDoc| +2026-03-19 20:08:21.2767|DEBUG|OnDoc| +2026-03-19 20:08:21.2767|DEBUG|OnDoc| +2026-03-19 20:08:21.2767|DEBUG|OnDoc| +2026-03-19 20:08:21.2767|DEBUG|OnDoc| +2026-03-19 20:08:21.2904|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:08:21.2904|DEBUG|OnDoc| +2026-03-19 20:08:21.2904|DEBUG|OnDoc| +2026-03-19 20:08:21.2904|DEBUG|OnDoc| +2026-03-19 20:08:21.2904|DEBUG|OnDoc| +2026-03-19 20:08:21.2904|DEBUG|OnDoc| +2026-03-19 20:08:21.3121|DEBUG|OnDoc| +2026-03-19 20:08:21.3121|DEBUG|OnDoc| +2026-03-19 20:08:21.3121|DEBUG|OnDoc| +2026-03-19 20:08:21.3121|DEBUG|OnDoc|Generate_Word +2026-03-19 20:08:21.3268|DEBUG|OnDoc|Word2013 +2026-03-19 20:08:21.3268|DEBUG|OnDoc|Word2013 +2026-03-19 20:08:21.5492|DEBUG|OnDoc| +2026-03-19 20:08:21.5580|DEBUG|OnDoc| +2026-03-19 20:08:21.5842|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:08:21.5868|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:08:21.6293|DEBUG|OnDoc| +2026-03-19 20:08:21.6293|DEBUG|OnDoc| +2026-03-19 20:08:21.6566|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:08:21.6566|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:08:22.3017|DEBUG|OnDoc|Generate_Word +2026-03-19 20:08:22.3160|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019627 +2026-03-19 20:08:22.3160|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:08:22.3160|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:08:22.3160|DEBUG|OnDoc| +2026-03-19 20:08:22.3317|DEBUG|OnDoc| +2026-03-19 20:08:22.3317|DEBUG|OnDoc| +2026-03-19 20:08:22.3317|DEBUG|OnDoc| +2026-03-19 20:08:22.3317|DEBUG|OnDoc| +2026-03-19 20:08:22.3317|DEBUG|OnDoc| +2026-03-19 20:08:40.5214|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:08:40.5915|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:08:40.6103|INFO|APIDocLog|Input JSON +2026-03-19 20:08:40.6103|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:08:40.6103|DEBUG|OnDoc| +2026-03-19 20:08:40.6103|DEBUG|OnDoc| +2026-03-19 20:08:40.6103|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6185|DEBUG|OnDoc| +2026-03-19 20:08:40.6359|DEBUG|OnDoc| +2026-03-19 20:08:40.6359|DEBUG|OnDoc| +2026-03-19 20:08:40.6359|DEBUG|OnDoc| +2026-03-19 20:08:40.6359|DEBUG|OnDoc| +2026-03-19 20:08:40.6359|DEBUG|OnDoc| +2026-03-19 20:08:40.6359|DEBUG|OnDoc| +2026-03-19 20:08:40.6359|DEBUG|OnDoc| +2026-03-19 20:08:40.6359|DEBUG|OnDoc| +2026-03-19 20:08:40.6359|DEBUG|OnDoc| +2026-03-19 20:08:40.6359|DEBUG|OnDoc| +2026-03-19 20:08:40.6491|DEBUG|OnDoc| +2026-03-19 20:08:40.6491|DEBUG|OnDoc| +2026-03-19 20:08:40.6491|DEBUG|OnDoc| +2026-03-19 20:08:40.6491|DEBUG|OnDoc| +2026-03-19 20:08:40.6657|DEBUG|OnDoc| +2026-03-19 20:08:40.6657|DEBUG|OnDoc| +2026-03-19 20:08:40.6657|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:08:40.7212|DEBUG|OnDoc| +2026-03-19 20:08:40.7212|DEBUG|OnDoc| +2026-03-19 20:08:40.7382|DEBUG|OnDoc| +2026-03-19 20:08:40.7382|DEBUG|OnDoc| +2026-03-19 20:08:40.7517|DEBUG|OnDoc| +2026-03-19 20:08:40.7517|DEBUG|OnDoc| +2026-03-19 20:08:40.7517|DEBUG|OnDoc| +2026-03-19 20:08:40.7517|DEBUG|OnDoc| +2026-03-19 20:08:40.7663|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:08:40.7663|DEBUG|OnDoc| +2026-03-19 20:08:40.7746|DEBUG|OnDoc| +2026-03-19 20:08:40.7746|DEBUG|OnDoc| +2026-03-19 20:08:40.7746|DEBUG|OnDoc| +2026-03-19 20:08:40.7746|DEBUG|OnDoc| +2026-03-19 20:08:40.7746|DEBUG|OnDoc| +2026-03-19 20:08:40.7746|DEBUG|OnDoc| +2026-03-19 20:08:40.7913|DEBUG|OnDoc| +2026-03-19 20:08:40.7913|DEBUG|OnDoc|Generate_Word +2026-03-19 20:08:40.7913|DEBUG|OnDoc|Word2013 +2026-03-19 20:08:40.7913|DEBUG|OnDoc|Word2013 +2026-03-19 20:08:41.0197|DEBUG|OnDoc| +2026-03-19 20:08:41.0309|DEBUG|OnDoc| +2026-03-19 20:08:41.0571|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:08:41.0571|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:08:41.1020|DEBUG|OnDoc| +2026-03-19 20:08:41.1020|DEBUG|OnDoc| +2026-03-19 20:08:41.1295|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:08:41.1295|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:08:41.7138|DEBUG|OnDoc|Generate_Word +2026-03-19 20:08:41.7283|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019635 +2026-03-19 20:08:41.7283|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:08:41.7283|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:08:41.7283|DEBUG|OnDoc| +2026-03-19 20:08:41.7462|DEBUG|OnDoc| +2026-03-19 20:08:41.7462|DEBUG|OnDoc| +2026-03-19 20:08:41.7462|DEBUG|OnDoc| +2026-03-19 20:08:41.7462|DEBUG|OnDoc| +2026-03-19 20:08:41.7462|DEBUG|OnDoc| +2026-03-19 20:08:56.9870|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:08:57.0560|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:08:57.0751|INFO|APIDocLog|Input JSON +2026-03-19 20:08:57.0751|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0751|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.0872|DEBUG|OnDoc| +2026-03-19 20:08:57.1035|DEBUG|OnDoc| +2026-03-19 20:08:57.1035|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:08:57.1530|DEBUG|OnDoc| +2026-03-19 20:08:57.1530|DEBUG|OnDoc| +2026-03-19 20:08:57.1666|DEBUG|OnDoc| +2026-03-19 20:08:57.1666|DEBUG|OnDoc| +2026-03-19 20:08:57.1666|DEBUG|OnDoc| +2026-03-19 20:08:57.1666|DEBUG|OnDoc| +2026-03-19 20:08:57.1666|DEBUG|OnDoc| +2026-03-19 20:08:57.1666|DEBUG|OnDoc| +2026-03-19 20:08:57.1865|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:08:57.1865|DEBUG|OnDoc| +2026-03-19 20:08:57.1865|DEBUG|OnDoc| +2026-03-19 20:08:57.1865|DEBUG|OnDoc| +2026-03-19 20:08:57.1865|DEBUG|OnDoc| +2026-03-19 20:08:57.1865|DEBUG|OnDoc| +2026-03-19 20:08:57.1982|DEBUG|OnDoc| +2026-03-19 20:08:57.1982|DEBUG|OnDoc| +2026-03-19 20:08:57.1982|DEBUG|OnDoc| +2026-03-19 20:08:57.1982|DEBUG|OnDoc|Generate_Word +2026-03-19 20:08:57.2118|DEBUG|OnDoc|Word2013 +2026-03-19 20:08:57.2118|DEBUG|OnDoc|Word2013 +2026-03-19 20:08:57.4304|DEBUG|OnDoc| +2026-03-19 20:08:57.4304|DEBUG|OnDoc| +2026-03-19 20:08:57.4649|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:08:57.4649|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:08:57.5077|DEBUG|OnDoc| +2026-03-19 20:08:57.5097|DEBUG|OnDoc| +2026-03-19 20:08:57.5350|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:08:57.5350|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:08:58.1770|DEBUG|OnDoc|Generate_Word +2026-03-19 20:08:58.1894|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019640 +2026-03-19 20:08:58.1894|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:08:58.1894|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:08:58.1894|DEBUG|OnDoc| +2026-03-19 20:08:58.2059|DEBUG|OnDoc| +2026-03-19 20:08:58.2059|DEBUG|OnDoc| +2026-03-19 20:08:58.2059|DEBUG|OnDoc| +2026-03-19 20:08:58.2059|DEBUG|OnDoc| +2026-03-19 20:08:58.2059|DEBUG|OnDoc| +2026-03-19 20:09:05.8095|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:09:05.8844|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:09:05.9046|INFO|APIDocLog|Input JSON +2026-03-19 20:09:05.9046|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9046|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9146|DEBUG|OnDoc| +2026-03-19 20:09:05.9318|DEBUG|OnDoc| +2026-03-19 20:09:05.9318|DEBUG|OnDoc| +2026-03-19 20:09:05.9318|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:09:05.9846|DEBUG|OnDoc| +2026-03-19 20:09:05.9846|DEBUG|OnDoc| +2026-03-19 20:09:06.0010|DEBUG|OnDoc| +2026-03-19 20:09:06.0010|DEBUG|OnDoc| +2026-03-19 20:09:06.0115|DEBUG|OnDoc| +2026-03-19 20:09:06.0115|DEBUG|OnDoc| +2026-03-19 20:09:06.0115|DEBUG|OnDoc| +2026-03-19 20:09:06.0115|DEBUG|OnDoc| +2026-03-19 20:09:06.0245|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:09:06.0245|DEBUG|OnDoc| +2026-03-19 20:09:06.0245|DEBUG|OnDoc| +2026-03-19 20:09:06.0245|DEBUG|OnDoc| +2026-03-19 20:09:06.0245|DEBUG|OnDoc| +2026-03-19 20:09:06.0245|DEBUG|OnDoc| +2026-03-19 20:09:06.0245|DEBUG|OnDoc| +2026-03-19 20:09:06.0245|DEBUG|OnDoc| +2026-03-19 20:09:06.0399|DEBUG|OnDoc| +2026-03-19 20:09:06.0399|DEBUG|OnDoc|Generate_Word +2026-03-19 20:09:06.0399|DEBUG|OnDoc|Word2013 +2026-03-19 20:09:06.0399|DEBUG|OnDoc|Word2013 +2026-03-19 20:09:06.2640|DEBUG|OnDoc| +2026-03-19 20:09:06.2640|DEBUG|OnDoc| +2026-03-19 20:09:06.2979|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:09:06.2979|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:09:06.3407|DEBUG|OnDoc| +2026-03-19 20:09:06.3407|DEBUG|OnDoc| +2026-03-19 20:09:06.3685|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:09:06.3685|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:09:06.9791|DEBUG|OnDoc|Generate_Word +2026-03-19 20:09:06.9969|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019651 +2026-03-19 20:09:06.9969|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:09:06.9969|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:09:06.9969|DEBUG|OnDoc| +2026-03-19 20:09:07.0223|DEBUG|OnDoc| +2026-03-19 20:09:07.0246|DEBUG|OnDoc| +2026-03-19 20:09:07.0246|DEBUG|OnDoc| +2026-03-19 20:09:07.0246|DEBUG|OnDoc| +2026-03-19 20:09:07.0246|DEBUG|OnDoc| +2026-03-19 20:09:18.9132|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:09:18.9917|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:09:19.0114|INFO|APIDocLog|Input JSON +2026-03-19 20:09:19.0114|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:09:19.0114|DEBUG|OnDoc| +2026-03-19 20:09:19.0114|DEBUG|OnDoc| +2026-03-19 20:09:19.0114|DEBUG|OnDoc| +2026-03-19 20:09:19.0114|DEBUG|OnDoc| +2026-03-19 20:09:19.0114|DEBUG|OnDoc| +2026-03-19 20:09:19.0114|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0241|DEBUG|OnDoc| +2026-03-19 20:09:19.0395|DEBUG|OnDoc| +2026-03-19 20:09:19.0395|DEBUG|OnDoc| +2026-03-19 20:09:19.0395|DEBUG|OnDoc| +2026-03-19 20:09:19.0395|DEBUG|OnDoc| +2026-03-19 20:09:19.0395|DEBUG|OnDoc| +2026-03-19 20:09:19.0395|DEBUG|OnDoc| +2026-03-19 20:09:19.0395|DEBUG|OnDoc| +2026-03-19 20:09:19.0395|DEBUG|OnDoc| +2026-03-19 20:09:19.0395|DEBUG|OnDoc| +2026-03-19 20:09:19.0395|DEBUG|OnDoc| +2026-03-19 20:09:19.0395|DEBUG|OnDoc| +2026-03-19 20:09:19.0395|DEBUG|OnDoc| +2026-03-19 20:09:19.0395|DEBUG|OnDoc| +2026-03-19 20:09:19.0615|DEBUG|OnDoc| +2026-03-19 20:09:19.0615|DEBUG|OnDoc| +2026-03-19 20:09:19.0739|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:09:19.1188|DEBUG|OnDoc| +2026-03-19 20:09:19.1188|DEBUG|OnDoc| +2026-03-19 20:09:19.1357|DEBUG|OnDoc| +2026-03-19 20:09:19.1357|DEBUG|OnDoc| +2026-03-19 20:09:19.1357|DEBUG|OnDoc| +2026-03-19 20:09:19.1357|DEBUG|OnDoc| +2026-03-19 20:09:19.1357|DEBUG|OnDoc| +2026-03-19 20:09:19.1357|DEBUG|OnDoc| +2026-03-19 20:09:19.1608|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:09:19.1608|DEBUG|OnDoc| +2026-03-19 20:09:19.1688|DEBUG|OnDoc| +2026-03-19 20:09:19.1688|DEBUG|OnDoc| +2026-03-19 20:09:19.1688|DEBUG|OnDoc| +2026-03-19 20:09:19.1688|DEBUG|OnDoc| +2026-03-19 20:09:19.1688|DEBUG|OnDoc| +2026-03-19 20:09:19.1688|DEBUG|OnDoc| +2026-03-19 20:09:19.1805|DEBUG|OnDoc| +2026-03-19 20:09:19.1805|DEBUG|OnDoc|Generate_Word +2026-03-19 20:09:19.1805|DEBUG|OnDoc|Word2013 +2026-03-19 20:09:19.1805|DEBUG|OnDoc|Word2013 +2026-03-19 20:09:19.4061|DEBUG|OnDoc| +2026-03-19 20:09:19.4161|DEBUG|OnDoc| +2026-03-19 20:09:19.4414|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:09:19.4414|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:09:19.4838|DEBUG|OnDoc| +2026-03-19 20:09:19.4838|DEBUG|OnDoc| +2026-03-19 20:09:19.5129|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:09:19.5129|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:09:20.0961|DEBUG|OnDoc|Generate_Word +2026-03-19 20:09:20.1114|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019666 +2026-03-19 20:09:20.1114|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:09:20.1114|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:09:20.1114|DEBUG|OnDoc| +2026-03-19 20:09:20.1326|DEBUG|OnDoc| +2026-03-19 20:09:20.1338|DEBUG|OnDoc| +2026-03-19 20:09:20.1338|DEBUG|OnDoc| +2026-03-19 20:09:20.1338|DEBUG|OnDoc| +2026-03-19 20:09:20.1338|DEBUG|OnDoc| +2026-03-19 20:09:53.9714|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:09:54.0567|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:09:54.0867|INFO|APIDocLog|Input JSON +2026-03-19 20:09:54.0867|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.0867|DEBUG|OnDoc| +2026-03-19 20:09:54.1023|DEBUG|OnDoc| +2026-03-19 20:09:54.1023|DEBUG|OnDoc| +2026-03-19 20:09:54.1023|DEBUG|OnDoc| +2026-03-19 20:09:54.1023|DEBUG|OnDoc| +2026-03-19 20:09:54.1023|DEBUG|OnDoc| +2026-03-19 20:09:54.1023|DEBUG|OnDoc| +2026-03-19 20:09:54.1232|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:09:54.1787|DEBUG|OnDoc| +2026-03-19 20:09:54.1823|DEBUG|OnDoc| +2026-03-19 20:09:54.2058|DEBUG|OnDoc| +2026-03-19 20:09:54.2058|DEBUG|OnDoc| +2026-03-19 20:09:54.2153|DEBUG|OnDoc| +2026-03-19 20:09:54.2153|DEBUG|OnDoc| +2026-03-19 20:09:54.2153|DEBUG|OnDoc| +2026-03-19 20:09:54.2153|DEBUG|OnDoc| +2026-03-19 20:09:54.2367|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:09:54.2367|DEBUG|OnDoc| +2026-03-19 20:09:54.2435|DEBUG|OnDoc| +2026-03-19 20:09:54.2435|DEBUG|OnDoc| +2026-03-19 20:09:54.2435|DEBUG|OnDoc| +2026-03-19 20:09:54.2435|DEBUG|OnDoc| +2026-03-19 20:09:54.2435|DEBUG|OnDoc| +2026-03-19 20:09:54.2435|DEBUG|OnDoc| +2026-03-19 20:09:54.2435|DEBUG|OnDoc| +2026-03-19 20:09:54.2435|DEBUG|OnDoc|Generate_Word +2026-03-19 20:09:54.2685|DEBUG|OnDoc|Word2013 +2026-03-19 20:09:54.2685|DEBUG|OnDoc|Word2013 +2026-03-19 20:09:54.6794|DEBUG|OnDoc| +2026-03-19 20:09:54.6889|DEBUG|OnDoc| +2026-03-19 20:09:54.7357|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:09:54.7357|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:09:54.8012|DEBUG|OnDoc| +2026-03-19 20:09:54.8063|DEBUG|OnDoc| +2026-03-19 20:09:54.8531|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:09:54.8531|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:09:55.5411|DEBUG|OnDoc|Generate_Word +2026-03-19 20:09:55.5411|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019674 +2026-03-19 20:09:55.5411|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:09:55.5558|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:09:55.5558|DEBUG|OnDoc| +2026-03-19 20:09:55.5791|DEBUG|OnDoc| +2026-03-19 20:09:55.5791|DEBUG|OnDoc| +2026-03-19 20:09:55.5791|DEBUG|OnDoc| +2026-03-19 20:09:55.5791|DEBUG|OnDoc| +2026-03-19 20:09:55.5791|DEBUG|OnDoc| +2026-03-19 20:10:17.5446|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:10:17.6260|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:10:17.6557|INFO|APIDocLog|Input JSON +2026-03-19 20:10:17.6557|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:10:17.6557|DEBUG|OnDoc| +2026-03-19 20:10:17.6557|DEBUG|OnDoc| +2026-03-19 20:10:17.6557|DEBUG|OnDoc| +2026-03-19 20:10:17.6557|DEBUG|OnDoc| +2026-03-19 20:10:17.6557|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6657|DEBUG|OnDoc| +2026-03-19 20:10:17.6802|DEBUG|OnDoc| +2026-03-19 20:10:17.6802|DEBUG|OnDoc| +2026-03-19 20:10:17.6802|DEBUG|OnDoc| +2026-03-19 20:10:17.6802|DEBUG|OnDoc| +2026-03-19 20:10:17.6802|DEBUG|OnDoc| +2026-03-19 20:10:17.6802|DEBUG|OnDoc| +2026-03-19 20:10:17.6802|DEBUG|OnDoc| +2026-03-19 20:10:17.6802|DEBUG|OnDoc| +2026-03-19 20:10:17.6802|DEBUG|OnDoc| +2026-03-19 20:10:17.6802|DEBUG|OnDoc| +2026-03-19 20:10:17.6802|DEBUG|OnDoc| +2026-03-19 20:10:17.6802|DEBUG|OnDoc| +2026-03-19 20:10:17.6802|DEBUG|OnDoc| +2026-03-19 20:10:17.6802|DEBUG|OnDoc| +2026-03-19 20:10:17.7006|DEBUG|OnDoc| +2026-03-19 20:10:17.7006|DEBUG|OnDoc| +2026-03-19 20:10:17.7006|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:10:17.7552|DEBUG|OnDoc| +2026-03-19 20:10:17.7552|DEBUG|OnDoc| +2026-03-19 20:10:17.7809|DEBUG|OnDoc| +2026-03-19 20:10:17.7809|DEBUG|OnDoc| +2026-03-19 20:10:17.7911|DEBUG|OnDoc| +2026-03-19 20:10:17.7911|DEBUG|OnDoc| +2026-03-19 20:10:17.7911|DEBUG|OnDoc| +2026-03-19 20:10:17.7911|DEBUG|OnDoc| +2026-03-19 20:10:17.8153|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:10:17.8153|DEBUG|OnDoc| +2026-03-19 20:10:17.8249|DEBUG|OnDoc| +2026-03-19 20:10:17.8249|DEBUG|OnDoc| +2026-03-19 20:10:17.8249|DEBUG|OnDoc| +2026-03-19 20:10:17.8249|DEBUG|OnDoc| +2026-03-19 20:10:17.8249|DEBUG|OnDoc| +2026-03-19 20:10:17.8249|DEBUG|OnDoc| +2026-03-19 20:10:17.8415|DEBUG|OnDoc| +2026-03-19 20:10:17.8415|DEBUG|OnDoc|Generate_Word +2026-03-19 20:10:17.8415|DEBUG|OnDoc|Word2013 +2026-03-19 20:10:17.8520|DEBUG|OnDoc|Word2013 +2026-03-19 20:10:33.0789|DEBUG|OnDoc| +2026-03-19 20:10:33.1150|DEBUG|OnDoc| +2026-03-19 20:10:33.1632|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:10:33.1652|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:10:33.2334|DEBUG|OnDoc| +2026-03-19 20:10:33.2440|DEBUG|OnDoc| +2026-03-19 20:10:33.2918|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:10:33.2918|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:10:33.9135|DEBUG|OnDoc|Generate_Word +2026-03-19 20:10:33.9261|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019682 +2026-03-19 20:10:33.9261|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:10:33.9261|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:10:33.9312|DEBUG|OnDoc| +2026-03-19 20:10:33.9312|DEBUG|OnDoc| +2026-03-19 20:10:33.9312|DEBUG|OnDoc| +2026-03-19 20:10:33.9312|DEBUG|OnDoc| +2026-03-19 20:10:33.9473|DEBUG|OnDoc| +2026-03-19 20:10:33.9473|DEBUG|OnDoc| +2026-03-19 20:11:03.4862|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:11:03.5944|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:11:03.6405|INFO|APIDocLog|Input JSON +2026-03-19 20:11:03.6405|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:11:03.6405|DEBUG|OnDoc| +2026-03-19 20:11:03.6405|DEBUG|OnDoc| +2026-03-19 20:11:03.6405|DEBUG|OnDoc| +2026-03-19 20:11:03.6405|DEBUG|OnDoc| +2026-03-19 20:11:03.6405|DEBUG|OnDoc| +2026-03-19 20:11:03.6405|DEBUG|OnDoc| +2026-03-19 20:11:03.6405|DEBUG|OnDoc| +2026-03-19 20:11:03.6405|DEBUG|OnDoc| +2026-03-19 20:11:03.6405|DEBUG|OnDoc| +2026-03-19 20:11:03.6405|DEBUG|OnDoc| +2026-03-19 20:11:03.6405|DEBUG|OnDoc| +2026-03-19 20:11:03.6405|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6489|DEBUG|OnDoc| +2026-03-19 20:11:03.6690|DEBUG|OnDoc| +2026-03-19 20:11:03.6690|DEBUG|OnDoc| +2026-03-19 20:11:03.6690|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:11:03.7220|DEBUG|OnDoc| +2026-03-19 20:11:03.7220|DEBUG|OnDoc| +2026-03-19 20:11:03.7570|DEBUG|OnDoc| +2026-03-19 20:11:03.7570|DEBUG|OnDoc| +2026-03-19 20:11:03.7665|DEBUG|OnDoc| +2026-03-19 20:11:03.7665|DEBUG|OnDoc| +2026-03-19 20:11:03.7665|DEBUG|OnDoc| +2026-03-19 20:11:03.7665|DEBUG|OnDoc| +2026-03-19 20:11:03.7986|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:11:03.7986|DEBUG|OnDoc| +2026-03-19 20:11:03.8058|DEBUG|OnDoc| +2026-03-19 20:11:03.8058|DEBUG|OnDoc| +2026-03-19 20:11:03.8058|DEBUG|OnDoc| +2026-03-19 20:11:03.8058|DEBUG|OnDoc| +2026-03-19 20:11:03.8058|DEBUG|OnDoc| +2026-03-19 20:11:03.8058|DEBUG|OnDoc| +2026-03-19 20:11:03.8267|DEBUG|OnDoc| +2026-03-19 20:11:03.8267|DEBUG|OnDoc|Generate_Word +2026-03-19 20:11:03.8402|DEBUG|OnDoc|Word2013 +2026-03-19 20:11:03.8402|DEBUG|OnDoc|Word2013 +2026-03-19 20:11:04.4102|DEBUG|OnDoc| +2026-03-19 20:11:04.4193|DEBUG|OnDoc| +2026-03-19 20:11:04.5093|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:11:04.5093|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:11:04.6070|DEBUG|OnDoc| +2026-03-19 20:11:04.6070|DEBUG|OnDoc| +2026-03-19 20:11:04.6861|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:11:04.6861|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:11:05.3492|DEBUG|OnDoc|Generate_Word +2026-03-19 20:11:05.3616|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019698 +2026-03-19 20:11:05.3616|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:11:05.3616|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:11:05.3616|DEBUG|OnDoc| +2026-03-19 20:11:05.3745|DEBUG|OnDoc| +2026-03-19 20:11:05.3745|DEBUG|OnDoc| +2026-03-19 20:11:05.3745|DEBUG|OnDoc| +2026-03-19 20:11:05.3745|DEBUG|OnDoc| +2026-03-19 20:11:05.3745|DEBUG|OnDoc| +2026-03-19 20:12:22.2687|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:12:22.3679|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:12:22.4099|INFO|APIDocLog|Input JSON +2026-03-19 20:12:22.4099|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:12:22.4099|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4148|DEBUG|OnDoc| +2026-03-19 20:12:22.4312|DEBUG|OnDoc| +2026-03-19 20:12:22.4312|DEBUG|OnDoc| +2026-03-19 20:12:22.4312|DEBUG|OnDoc| +2026-03-19 20:12:22.4312|DEBUG|OnDoc| +2026-03-19 20:12:22.4312|DEBUG|OnDoc| +2026-03-19 20:12:22.4312|DEBUG|OnDoc| +2026-03-19 20:12:22.4312|DEBUG|OnDoc| +2026-03-19 20:12:22.4312|DEBUG|OnDoc| +2026-03-19 20:12:22.4312|DEBUG|OnDoc| +2026-03-19 20:12:22.4312|DEBUG|OnDoc| +2026-03-19 20:12:22.4312|DEBUG|OnDoc| +2026-03-19 20:12:22.4556|DEBUG|OnDoc| +2026-03-19 20:12:22.4556|DEBUG|OnDoc| +2026-03-19 20:12:22.4658|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:12:22.5130|DEBUG|OnDoc| +2026-03-19 20:12:22.5130|DEBUG|OnDoc| +2026-03-19 20:12:22.5498|DEBUG|OnDoc| +2026-03-19 20:12:22.5498|DEBUG|OnDoc| +2026-03-19 20:12:22.5628|DEBUG|OnDoc| +2026-03-19 20:12:22.5628|DEBUG|OnDoc| +2026-03-19 20:12:22.5628|DEBUG|OnDoc| +2026-03-19 20:12:22.5628|DEBUG|OnDoc| +2026-03-19 20:12:22.5978|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:12:22.5978|DEBUG|OnDoc| +2026-03-19 20:12:22.6061|DEBUG|OnDoc| +2026-03-19 20:12:22.6061|DEBUG|OnDoc| +2026-03-19 20:12:22.6061|DEBUG|OnDoc| +2026-03-19 20:12:22.6061|DEBUG|OnDoc| +2026-03-19 20:12:22.6061|DEBUG|OnDoc| +2026-03-19 20:12:22.6061|DEBUG|OnDoc| +2026-03-19 20:12:22.6196|DEBUG|OnDoc| +2026-03-19 20:12:22.6196|DEBUG|OnDoc|Generate_Word +2026-03-19 20:12:22.6196|DEBUG|OnDoc|Word2013 +2026-03-19 20:12:22.6196|DEBUG|OnDoc|Word2013 +2026-03-19 20:12:55.6091|DEBUG|OnDoc| +2026-03-19 20:12:55.6438|DEBUG|OnDoc| +2026-03-19 20:12:55.7151|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:12:55.7151|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:12:55.8099|DEBUG|OnDoc| +2026-03-19 20:12:55.8099|DEBUG|OnDoc| +2026-03-19 20:12:55.8882|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:12:55.8882|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:12:56.5192|DEBUG|OnDoc|Generate_Word +2026-03-19 20:12:56.5300|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019707 +2026-03-19 20:12:56.5300|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:12:56.5300|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:12:56.5300|DEBUG|OnDoc| +2026-03-19 20:12:56.5432|DEBUG|OnDoc| +2026-03-19 20:12:56.5432|DEBUG|OnDoc| +2026-03-19 20:12:56.5432|DEBUG|OnDoc| +2026-03-19 20:12:56.5432|DEBUG|OnDoc| +2026-03-19 20:12:56.5432|DEBUG|OnDoc| +2026-03-19 20:13:03.3659|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:13:03.4650|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:13:03.5040|INFO|APIDocLog|Input JSON +2026-03-19 20:13:03.5040|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:13:03.5040|DEBUG|OnDoc| +2026-03-19 20:13:03.5040|DEBUG|OnDoc| +2026-03-19 20:13:03.5040|DEBUG|OnDoc| +2026-03-19 20:13:03.5040|DEBUG|OnDoc| +2026-03-19 20:13:03.5040|DEBUG|OnDoc| +2026-03-19 20:13:03.5040|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5092|DEBUG|OnDoc| +2026-03-19 20:13:03.5286|DEBUG|OnDoc| +2026-03-19 20:13:03.5286|DEBUG|OnDoc| +2026-03-19 20:13:03.5286|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:13:03.5853|DEBUG|OnDoc| +2026-03-19 20:13:03.5878|DEBUG|OnDoc| +2026-03-19 20:13:03.6224|DEBUG|OnDoc| +2026-03-19 20:13:03.6224|DEBUG|OnDoc| +2026-03-19 20:13:03.6224|DEBUG|OnDoc| +2026-03-19 20:13:03.6224|DEBUG|OnDoc| +2026-03-19 20:13:03.6224|DEBUG|OnDoc| +2026-03-19 20:13:03.6224|DEBUG|OnDoc| +2026-03-19 20:13:03.6608|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:13:03.6608|DEBUG|OnDoc| +2026-03-19 20:13:03.7091|DEBUG|OnDoc| +2026-03-19 20:13:03.7091|DEBUG|OnDoc| +2026-03-19 20:13:03.7126|DEBUG|OnDoc| +2026-03-19 20:13:03.7126|DEBUG|OnDoc| +2026-03-19 20:13:03.7126|DEBUG|OnDoc| +2026-03-19 20:13:03.7126|DEBUG|OnDoc| +2026-03-19 20:13:03.7290|DEBUG|OnDoc| +2026-03-19 20:13:03.7290|DEBUG|OnDoc|Generate_Word +2026-03-19 20:13:03.7290|DEBUG|OnDoc|Word2013 +2026-03-19 20:13:03.7290|DEBUG|OnDoc|Word2013 +2026-03-19 20:13:13.0707|DEBUG|OnDoc| +2026-03-19 20:13:13.1070|DEBUG|OnDoc| +2026-03-19 20:13:13.1795|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:13:13.1892|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:13:13.2747|DEBUG|OnDoc| +2026-03-19 20:13:13.2747|DEBUG|OnDoc| +2026-03-19 20:13:13.3562|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:13:13.3562|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:13:13.9602|DEBUG|OnDoc|Generate_Word +2026-03-19 20:13:13.9734|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019715 +2026-03-19 20:13:13.9734|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:13:13.9734|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:13:13.9774|DEBUG|OnDoc| +2026-03-19 20:13:13.9774|DEBUG|OnDoc| +2026-03-19 20:13:13.9774|DEBUG|OnDoc| +2026-03-19 20:13:13.9774|DEBUG|OnDoc| +2026-03-19 20:13:13.9774|DEBUG|OnDoc| +2026-03-19 20:13:13.9774|DEBUG|OnDoc| +2026-03-19 20:13:30.0662|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:13:30.1720|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:13:30.2169|INFO|APIDocLog|Input JSON +2026-03-19 20:13:30.2169|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:13:30.2169|DEBUG|OnDoc| +2026-03-19 20:13:30.2169|DEBUG|OnDoc| +2026-03-19 20:13:30.2169|DEBUG|OnDoc| +2026-03-19 20:13:30.2169|DEBUG|OnDoc| +2026-03-19 20:13:30.2169|DEBUG|OnDoc| +2026-03-19 20:13:30.2169|DEBUG|OnDoc| +2026-03-19 20:13:30.2169|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2280|DEBUG|OnDoc| +2026-03-19 20:13:30.2437|DEBUG|OnDoc| +2026-03-19 20:13:30.2437|DEBUG|OnDoc| +2026-03-19 20:13:30.2437|DEBUG|OnDoc| +2026-03-19 20:13:30.2437|DEBUG|OnDoc| +2026-03-19 20:13:30.2437|DEBUG|OnDoc| +2026-03-19 20:13:30.2437|DEBUG|OnDoc| +2026-03-19 20:13:30.2613|DEBUG|OnDoc| +2026-03-19 20:13:30.2613|DEBUG|OnDoc| +2026-03-19 20:13:30.2738|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:13:30.3226|DEBUG|OnDoc| +2026-03-19 20:13:30.3226|DEBUG|OnDoc| +2026-03-19 20:13:30.3578|DEBUG|OnDoc| +2026-03-19 20:13:30.3578|DEBUG|OnDoc| +2026-03-19 20:13:30.3578|DEBUG|OnDoc| +2026-03-19 20:13:30.3695|DEBUG|OnDoc| +2026-03-19 20:13:30.3695|DEBUG|OnDoc| +2026-03-19 20:13:30.3695|DEBUG|OnDoc| +2026-03-19 20:13:30.4019|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:13:30.4019|DEBUG|OnDoc| +2026-03-19 20:13:30.4153|DEBUG|OnDoc| +2026-03-19 20:13:30.4153|DEBUG|OnDoc| +2026-03-19 20:13:30.4153|DEBUG|OnDoc| +2026-03-19 20:13:30.4153|DEBUG|OnDoc| +2026-03-19 20:13:30.4153|DEBUG|OnDoc| +2026-03-19 20:13:30.4153|DEBUG|OnDoc| +2026-03-19 20:13:30.4343|DEBUG|OnDoc| +2026-03-19 20:13:30.4343|DEBUG|OnDoc|Generate_Word +2026-03-19 20:13:30.4343|DEBUG|OnDoc|Word2013 +2026-03-19 20:13:30.4464|DEBUG|OnDoc|Word2013 +2026-03-19 20:13:34.7386|DEBUG|OnDoc|Generate_Word +2026-03-19 20:13:34.7790|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019720 +2026-03-19 20:13:34.7790|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:13:34.7790|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:13:34.7790|DEBUG|OnDoc| +2026-03-19 20:13:34.8007|DEBUG|OnDoc| +2026-03-19 20:13:34.8007|DEBUG|OnDoc| +2026-03-19 20:13:34.8007|DEBUG|OnDoc| +2026-03-19 20:13:34.8007|DEBUG|OnDoc| +2026-03-19 20:13:34.8007|DEBUG|OnDoc| +2026-03-19 20:13:58.8402|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:13:58.9481|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:13:58.9929|INFO|APIDocLog|Input JSON +2026-03-19 20:13:58.9929|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:58.9929|DEBUG|OnDoc| +2026-03-19 20:13:59.0085|DEBUG|OnDoc| +2026-03-19 20:13:59.0085|DEBUG|OnDoc| +2026-03-19 20:13:59.0085|DEBUG|OnDoc| +2026-03-19 20:13:59.0085|DEBUG|OnDoc| +2026-03-19 20:13:59.0277|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:13:59.0722|DEBUG|OnDoc| +2026-03-19 20:13:59.0722|DEBUG|OnDoc| +2026-03-19 20:13:59.1069|DEBUG|OnDoc| +2026-03-19 20:13:59.1069|DEBUG|OnDoc| +2026-03-19 20:13:59.1069|DEBUG|OnDoc| +2026-03-19 20:13:59.1069|DEBUG|OnDoc| +2026-03-19 20:13:59.1069|DEBUG|OnDoc| +2026-03-19 20:13:59.1069|DEBUG|OnDoc| +2026-03-19 20:13:59.1486|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:13:59.1496|DEBUG|OnDoc| +2026-03-19 20:13:59.1496|DEBUG|OnDoc| +2026-03-19 20:13:59.1496|DEBUG|OnDoc| +2026-03-19 20:13:59.1496|DEBUG|OnDoc| +2026-03-19 20:13:59.1496|DEBUG|OnDoc| +2026-03-19 20:13:59.1496|DEBUG|OnDoc| +2026-03-19 20:13:59.1496|DEBUG|OnDoc| +2026-03-19 20:13:59.1666|DEBUG|OnDoc| +2026-03-19 20:13:59.1666|DEBUG|OnDoc|Generate_Word +2026-03-19 20:13:59.1666|DEBUG|OnDoc|Word2013 +2026-03-19 20:13:59.1666|DEBUG|OnDoc|Word2013 +2026-03-19 20:14:05.8684|DEBUG|OnDoc| +2026-03-19 20:14:05.9039|DEBUG|OnDoc| +2026-03-19 20:14:05.9770|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:14:05.9770|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:14:06.0702|DEBUG|OnDoc| +2026-03-19 20:14:06.0787|DEBUG|OnDoc| +2026-03-19 20:14:06.1490|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:14:06.1490|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:14:06.7439|DEBUG|OnDoc|Generate_Word +2026-03-19 20:14:06.7439|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019731 +2026-03-19 20:14:06.7439|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:14:06.7439|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:14:06.7439|DEBUG|OnDoc| +2026-03-19 20:14:06.7695|DEBUG|OnDoc| +2026-03-19 20:14:06.7695|DEBUG|OnDoc| +2026-03-19 20:14:06.7695|DEBUG|OnDoc| +2026-03-19 20:14:06.7695|DEBUG|OnDoc| +2026-03-19 20:14:06.7695|DEBUG|OnDoc| +2026-03-19 20:14:31.8356|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:14:31.9422|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:14:31.9879|INFO|APIDocLog|Input JSON +2026-03-19 20:14:31.9879|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:14:31.9879|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:31.9929|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0090|DEBUG|OnDoc| +2026-03-19 20:14:32.0393|DEBUG|OnDoc| +2026-03-19 20:14:32.0428|DEBUG|OnDoc| +2026-03-19 20:14:32.0428|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:14:32.1311|DEBUG|OnDoc| +2026-03-19 20:14:32.1412|DEBUG|OnDoc| +2026-03-19 20:14:32.1792|DEBUG|OnDoc| +2026-03-19 20:14:32.1818|DEBUG|OnDoc| +2026-03-19 20:14:32.2022|DEBUG|OnDoc| +2026-03-19 20:14:32.2022|DEBUG|OnDoc| +2026-03-19 20:14:32.2022|DEBUG|OnDoc| +2026-03-19 20:14:32.2022|DEBUG|OnDoc| +2026-03-19 20:14:32.2453|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:14:32.2453|DEBUG|OnDoc| +2026-03-19 20:14:32.2453|DEBUG|OnDoc| +2026-03-19 20:14:32.2587|DEBUG|OnDoc| +2026-03-19 20:14:32.2587|DEBUG|OnDoc| +2026-03-19 20:14:32.2587|DEBUG|OnDoc| +2026-03-19 20:14:32.2587|DEBUG|OnDoc| +2026-03-19 20:14:32.2587|DEBUG|OnDoc| +2026-03-19 20:14:32.2587|DEBUG|OnDoc| +2026-03-19 20:14:32.2587|DEBUG|OnDoc|Generate_Word +2026-03-19 20:14:32.2822|DEBUG|OnDoc|Word2013 +2026-03-19 20:14:32.2822|DEBUG|OnDoc|Word2013 +2026-03-19 20:14:38.2920|DEBUG|OnDoc| +2026-03-19 20:14:38.3280|DEBUG|OnDoc| +2026-03-19 20:14:38.3989|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:14:38.3989|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:14:38.5125|DEBUG|OnDoc| +2026-03-19 20:14:38.5125|DEBUG|OnDoc| +2026-03-19 20:14:38.5940|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:14:38.6026|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:14:39.2032|DEBUG|OnDoc|Generate_Word +2026-03-19 20:14:39.2174|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019746 +2026-03-19 20:14:39.2174|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:14:39.2174|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:14:39.2174|DEBUG|OnDoc| +2026-03-19 20:14:39.2357|DEBUG|OnDoc| +2026-03-19 20:14:39.2357|DEBUG|OnDoc| +2026-03-19 20:14:39.2357|DEBUG|OnDoc| +2026-03-19 20:14:39.2357|DEBUG|OnDoc| +2026-03-19 20:14:39.2357|DEBUG|OnDoc| +2026-03-19 20:15:08.9919|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:15:09.0981|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:15:09.1416|INFO|APIDocLog|Input JSON +2026-03-19 20:15:09.1416|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:15:09.1416|DEBUG|OnDoc| +2026-03-19 20:15:09.1416|DEBUG|OnDoc| +2026-03-19 20:15:09.1416|DEBUG|OnDoc| +2026-03-19 20:15:09.1416|DEBUG|OnDoc| +2026-03-19 20:15:09.1416|DEBUG|OnDoc| +2026-03-19 20:15:09.1416|DEBUG|OnDoc| +2026-03-19 20:15:09.1416|DEBUG|OnDoc| +2026-03-19 20:15:09.1416|DEBUG|OnDoc| +2026-03-19 20:15:09.1416|DEBUG|OnDoc| +2026-03-19 20:15:09.1416|DEBUG|OnDoc| +2026-03-19 20:15:09.1416|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1491|DEBUG|OnDoc| +2026-03-19 20:15:09.1803|DEBUG|OnDoc| +2026-03-19 20:15:09.1803|DEBUG|OnDoc| +2026-03-19 20:15:09.1803|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:15:09.2342|DEBUG|OnDoc| +2026-03-19 20:15:09.2342|DEBUG|OnDoc| +2026-03-19 20:15:09.2660|DEBUG|OnDoc| +2026-03-19 20:15:09.2660|DEBUG|OnDoc| +2026-03-19 20:15:09.2755|DEBUG|OnDoc| +2026-03-19 20:15:09.2755|DEBUG|OnDoc| +2026-03-19 20:15:09.2755|DEBUG|OnDoc| +2026-03-19 20:15:09.2755|DEBUG|OnDoc| +2026-03-19 20:15:09.3050|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:15:09.3065|DEBUG|OnDoc| +2026-03-19 20:15:09.3065|DEBUG|OnDoc| +2026-03-19 20:15:09.3065|DEBUG|OnDoc| +2026-03-19 20:15:09.3065|DEBUG|OnDoc| +2026-03-19 20:15:09.3065|DEBUG|OnDoc| +2026-03-19 20:15:09.3217|DEBUG|OnDoc| +2026-03-19 20:15:09.3217|DEBUG|OnDoc| +2026-03-19 20:15:09.3217|DEBUG|OnDoc| +2026-03-19 20:15:09.3217|DEBUG|OnDoc|Generate_Word +2026-03-19 20:15:09.3217|DEBUG|OnDoc|Word2013 +2026-03-19 20:15:09.3217|DEBUG|OnDoc|Word2013 +2026-03-19 20:15:14.6265|DEBUG|OnDoc|Generate_Word +2026-03-19 20:15:14.6682|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019754 +2026-03-19 20:15:14.6682|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:15:14.6682|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:15:14.6682|DEBUG|OnDoc| +2026-03-19 20:15:14.6835|DEBUG|OnDoc| +2026-03-19 20:15:14.6835|DEBUG|OnDoc| +2026-03-19 20:15:14.6835|DEBUG|OnDoc| +2026-03-19 20:15:14.6835|DEBUG|OnDoc| +2026-03-19 20:15:14.6835|DEBUG|OnDoc| +2026-03-19 20:15:27.4147|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:15:27.5291|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:15:27.5751|INFO|APIDocLog|Input JSON +2026-03-19 20:15:27.5751|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:15:27.5751|DEBUG|OnDoc| +2026-03-19 20:15:27.5751|DEBUG|OnDoc| +2026-03-19 20:15:27.5751|DEBUG|OnDoc| +2026-03-19 20:15:27.5751|DEBUG|OnDoc| +2026-03-19 20:15:27.5751|DEBUG|OnDoc| +2026-03-19 20:15:27.5751|DEBUG|OnDoc| +2026-03-19 20:15:27.5751|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.5869|DEBUG|OnDoc| +2026-03-19 20:15:27.6029|DEBUG|OnDoc| +2026-03-19 20:15:27.6029|DEBUG|OnDoc| +2026-03-19 20:15:27.6029|DEBUG|OnDoc| +2026-03-19 20:15:27.6029|DEBUG|OnDoc| +2026-03-19 20:15:27.6029|DEBUG|OnDoc| +2026-03-19 20:15:27.6029|DEBUG|OnDoc| +2026-03-19 20:15:27.6029|DEBUG|OnDoc| +2026-03-19 20:15:27.6029|DEBUG|OnDoc| +2026-03-19 20:15:27.6204|DEBUG|OnDoc| +2026-03-19 20:15:27.6204|DEBUG|OnDoc| +2026-03-19 20:15:27.6204|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:15:27.6712|DEBUG|OnDoc| +2026-03-19 20:15:27.6712|DEBUG|OnDoc| +2026-03-19 20:15:27.7083|DEBUG|OnDoc| +2026-03-19 20:15:27.7083|DEBUG|OnDoc| +2026-03-19 20:15:27.7188|DEBUG|OnDoc| +2026-03-19 20:15:27.7188|DEBUG|OnDoc| +2026-03-19 20:15:27.7188|DEBUG|OnDoc| +2026-03-19 20:15:27.7188|DEBUG|OnDoc| +2026-03-19 20:15:27.7516|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:15:27.7516|DEBUG|OnDoc| +2026-03-19 20:15:27.7603|DEBUG|OnDoc| +2026-03-19 20:15:27.7603|DEBUG|OnDoc| +2026-03-19 20:15:27.7603|DEBUG|OnDoc| +2026-03-19 20:15:27.7603|DEBUG|OnDoc| +2026-03-19 20:15:27.7603|DEBUG|OnDoc| +2026-03-19 20:15:27.7603|DEBUG|OnDoc| +2026-03-19 20:15:27.7784|DEBUG|OnDoc| +2026-03-19 20:15:27.7784|DEBUG|OnDoc|Generate_Word +2026-03-19 20:15:27.7901|DEBUG|OnDoc|Word2013 +2026-03-19 20:15:27.7901|DEBUG|OnDoc|Word2013 +2026-03-19 20:16:41.5522|DEBUG|OnDoc| +2026-03-19 20:16:41.5622|DEBUG|OnDoc| +2026-03-19 20:16:41.6334|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:16:41.6334|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:16:41.7509|DEBUG|OnDoc| +2026-03-19 20:16:41.7612|DEBUG|OnDoc| +2026-03-19 20:16:41.8355|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:16:41.8448|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:16:42.4885|DEBUG|OnDoc|Generate_Word +2026-03-19 20:16:42.5006|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019762 +2026-03-19 20:16:42.5006|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:16:42.5006|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:16:42.5006|DEBUG|OnDoc| +2026-03-19 20:16:42.5177|DEBUG|OnDoc| +2026-03-19 20:16:42.5177|DEBUG|OnDoc| +2026-03-19 20:16:42.5177|DEBUG|OnDoc| +2026-03-19 20:16:42.5177|DEBUG|OnDoc| +2026-03-19 20:16:42.5177|DEBUG|OnDoc| +2026-03-19 20:16:58.9081|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:16:59.0135|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:16:59.0577|INFO|APIDocLog|Input JSON +2026-03-19 20:16:59.0577|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0577|DEBUG|OnDoc| +2026-03-19 20:16:59.0713|DEBUG|OnDoc| +2026-03-19 20:16:59.0713|DEBUG|OnDoc| +2026-03-19 20:16:59.0713|DEBUG|OnDoc| +2026-03-19 20:16:59.0713|DEBUG|OnDoc| +2026-03-19 20:16:59.0713|DEBUG|OnDoc| +2026-03-19 20:16:59.0713|DEBUG|OnDoc| +2026-03-19 20:16:59.0713|DEBUG|OnDoc| +2026-03-19 20:16:59.0969|DEBUG|OnDoc| +2026-03-19 20:16:59.0969|DEBUG|OnDoc| +2026-03-19 20:16:59.1064|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:16:59.1487|DEBUG|OnDoc| +2026-03-19 20:16:59.1510|DEBUG|OnDoc| +2026-03-19 20:16:59.1827|DEBUG|OnDoc| +2026-03-19 20:16:59.1827|DEBUG|OnDoc| +2026-03-19 20:16:59.1827|DEBUG|OnDoc| +2026-03-19 20:16:59.1827|DEBUG|OnDoc| +2026-03-19 20:16:59.1827|DEBUG|OnDoc| +2026-03-19 20:16:59.1827|DEBUG|OnDoc| +2026-03-19 20:16:59.2259|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:16:59.2259|DEBUG|OnDoc| +2026-03-19 20:16:59.2338|DEBUG|OnDoc| +2026-03-19 20:16:59.2338|DEBUG|OnDoc| +2026-03-19 20:16:59.2338|DEBUG|OnDoc| +2026-03-19 20:16:59.2338|DEBUG|OnDoc| +2026-03-19 20:16:59.2338|DEBUG|OnDoc| +2026-03-19 20:16:59.2338|DEBUG|OnDoc| +2026-03-19 20:16:59.2433|DEBUG|OnDoc| +2026-03-19 20:16:59.2433|DEBUG|OnDoc|Generate_Word +2026-03-19 20:16:59.2433|DEBUG|OnDoc|Word2013 +2026-03-19 20:16:59.2433|DEBUG|OnDoc|Word2013 +2026-03-19 20:16:59.8118|DEBUG|OnDoc| +2026-03-19 20:16:59.8210|DEBUG|OnDoc| +2026-03-19 20:16:59.8930|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:16:59.9020|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:16:59.9900|DEBUG|OnDoc| +2026-03-19 20:16:59.9990|DEBUG|OnDoc| +2026-03-19 20:17:00.0731|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:17:00.0731|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:17:00.6963|DEBUG|OnDoc|Generate_Word +2026-03-19 20:17:00.6963|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019778 +2026-03-19 20:17:00.6963|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:17:00.6963|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:17:00.6963|DEBUG|OnDoc| +2026-03-19 20:17:00.7211|DEBUG|OnDoc| +2026-03-19 20:17:00.7211|DEBUG|OnDoc| +2026-03-19 20:17:00.7211|DEBUG|OnDoc| +2026-03-19 20:17:00.7211|DEBUG|OnDoc| +2026-03-19 20:17:00.7211|DEBUG|OnDoc| +2026-03-19 20:17:20.6898|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:17:20.7919|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:17:20.8418|INFO|APIDocLog|Input JSON +2026-03-19 20:17:20.8418|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:17:20.8418|DEBUG|OnDoc| +2026-03-19 20:17:20.8418|DEBUG|OnDoc| +2026-03-19 20:17:20.8418|DEBUG|OnDoc| +2026-03-19 20:17:20.8418|DEBUG|OnDoc| +2026-03-19 20:17:20.8418|DEBUG|OnDoc| +2026-03-19 20:17:20.8418|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8520|DEBUG|OnDoc| +2026-03-19 20:17:20.8680|DEBUG|OnDoc| +2026-03-19 20:17:20.8680|DEBUG|OnDoc| +2026-03-19 20:17:20.8680|DEBUG|OnDoc| +2026-03-19 20:17:20.8680|DEBUG|OnDoc| +2026-03-19 20:17:20.8680|DEBUG|OnDoc| +2026-03-19 20:17:20.8680|DEBUG|OnDoc| +2026-03-19 20:17:20.8680|DEBUG|OnDoc| +2026-03-19 20:17:20.8680|DEBUG|OnDoc| +2026-03-19 20:17:20.8680|DEBUG|OnDoc| +2026-03-19 20:17:20.8680|DEBUG|OnDoc| +2026-03-19 20:17:20.8987|DEBUG|OnDoc| +2026-03-19 20:17:20.9007|DEBUG|OnDoc| +2026-03-19 20:17:20.9007|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:17:20.9556|DEBUG|OnDoc| +2026-03-19 20:17:20.9556|DEBUG|OnDoc| +2026-03-19 20:17:20.9924|DEBUG|OnDoc| +2026-03-19 20:17:20.9934|DEBUG|OnDoc| +2026-03-19 20:17:20.9934|DEBUG|OnDoc| +2026-03-19 20:17:20.9934|DEBUG|OnDoc| +2026-03-19 20:17:20.9934|DEBUG|OnDoc| +2026-03-19 20:17:20.9934|DEBUG|OnDoc| +2026-03-19 20:17:21.0396|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:17:21.0396|DEBUG|OnDoc| +2026-03-19 20:17:21.0396|DEBUG|OnDoc| +2026-03-19 20:17:21.0396|DEBUG|OnDoc| +2026-03-19 20:17:21.0396|DEBUG|OnDoc| +2026-03-19 20:17:21.0396|DEBUG|OnDoc| +2026-03-19 20:17:21.0562|DEBUG|OnDoc| +2026-03-19 20:17:21.0562|DEBUG|OnDoc| +2026-03-19 20:17:21.0562|DEBUG|OnDoc| +2026-03-19 20:17:21.0562|DEBUG|OnDoc|Generate_Word +2026-03-19 20:17:21.0729|DEBUG|OnDoc|Word2013 +2026-03-19 20:17:21.0729|DEBUG|OnDoc|Word2013 +2026-03-19 20:17:21.8368|DEBUG|OnDoc| +2026-03-19 20:17:21.8368|DEBUG|OnDoc| +2026-03-19 20:17:21.9176|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:17:21.9176|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:17:22.0169|DEBUG|OnDoc| +2026-03-19 20:17:22.0268|DEBUG|OnDoc| +2026-03-19 20:17:22.0980|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:17:22.1073|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:17:22.7140|DEBUG|OnDoc|Generate_Word +2026-03-19 20:17:22.7272|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019783 +2026-03-19 20:17:22.7272|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:17:22.7272|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:17:22.7272|DEBUG|OnDoc| +2026-03-19 20:17:22.7453|DEBUG|OnDoc| +2026-03-19 20:17:22.7453|DEBUG|OnDoc| +2026-03-19 20:17:22.7453|DEBUG|OnDoc| +2026-03-19 20:17:22.7453|DEBUG|OnDoc| +2026-03-19 20:17:22.7453|DEBUG|OnDoc| +2026-03-19 20:17:35.9700|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:17:36.0786|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:17:36.1262|INFO|APIDocLog|Input JSON +2026-03-19 20:17:36.1262|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:17:36.1262|DEBUG|OnDoc| +2026-03-19 20:17:36.1262|DEBUG|OnDoc| +2026-03-19 20:17:36.1262|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1340|DEBUG|OnDoc| +2026-03-19 20:17:36.1493|DEBUG|OnDoc| +2026-03-19 20:17:36.1493|DEBUG|OnDoc| +2026-03-19 20:17:36.1493|DEBUG|OnDoc| +2026-03-19 20:17:36.1493|DEBUG|OnDoc| +2026-03-19 20:17:36.1493|DEBUG|OnDoc| +2026-03-19 20:17:36.1493|DEBUG|OnDoc| +2026-03-19 20:17:36.1493|DEBUG|OnDoc| +2026-03-19 20:17:36.1493|DEBUG|OnDoc| +2026-03-19 20:17:36.1493|DEBUG|OnDoc| +2026-03-19 20:17:36.1493|DEBUG|OnDoc| +2026-03-19 20:17:36.1493|DEBUG|OnDoc| +2026-03-19 20:17:36.1493|DEBUG|OnDoc| +2026-03-19 20:17:36.1493|DEBUG|OnDoc| +2026-03-19 20:17:36.1668|DEBUG|OnDoc| +2026-03-19 20:17:36.1668|DEBUG|OnDoc| +2026-03-19 20:17:36.1668|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:17:36.2180|DEBUG|OnDoc| +2026-03-19 20:17:36.2180|DEBUG|OnDoc| +2026-03-19 20:17:36.2572|DEBUG|OnDoc| +2026-03-19 20:17:36.2572|DEBUG|OnDoc| +2026-03-19 20:17:36.2688|DEBUG|OnDoc| +2026-03-19 20:17:36.2688|DEBUG|OnDoc| +2026-03-19 20:17:36.2688|DEBUG|OnDoc| +2026-03-19 20:17:36.2688|DEBUG|OnDoc| +2026-03-19 20:17:36.3037|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:17:36.3059|DEBUG|OnDoc| +2026-03-19 20:17:36.3059|DEBUG|OnDoc| +2026-03-19 20:17:36.3059|DEBUG|OnDoc| +2026-03-19 20:17:36.3059|DEBUG|OnDoc| +2026-03-19 20:17:36.3059|DEBUG|OnDoc| +2026-03-19 20:17:36.3214|DEBUG|OnDoc| +2026-03-19 20:17:36.3214|DEBUG|OnDoc| +2026-03-19 20:17:36.3214|DEBUG|OnDoc| +2026-03-19 20:17:36.3214|DEBUG|OnDoc|Generate_Word +2026-03-19 20:17:36.3214|DEBUG|OnDoc|Word2013 +2026-03-19 20:17:36.3364|DEBUG|OnDoc|Word2013 +2026-03-19 20:17:36.8882|DEBUG|OnDoc| +2026-03-19 20:17:36.8882|DEBUG|OnDoc| +2026-03-19 20:17:36.9707|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:17:36.9802|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:17:37.0731|DEBUG|OnDoc| +2026-03-19 20:17:37.0731|DEBUG|OnDoc| +2026-03-19 20:17:37.1542|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:17:37.1542|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:17:37.8219|DEBUG|OnDoc|Generate_Word +2026-03-19 20:17:37.8219|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019799 +2026-03-19 20:17:37.8219|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:17:37.8373|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:17:37.8373|DEBUG|OnDoc| +2026-03-19 20:17:37.8538|DEBUG|OnDoc| +2026-03-19 20:17:37.8538|DEBUG|OnDoc| +2026-03-19 20:17:37.8538|DEBUG|OnDoc| +2026-03-19 20:17:37.8538|DEBUG|OnDoc| +2026-03-19 20:17:37.8538|DEBUG|OnDoc| +2026-03-19 20:17:46.0824|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:17:46.1902|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:17:46.2347|INFO|APIDocLog|Input JSON +2026-03-19 20:17:46.2347|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2347|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2434|DEBUG|OnDoc| +2026-03-19 20:17:46.2616|DEBUG|OnDoc| +2026-03-19 20:17:46.2616|DEBUG|OnDoc| +2026-03-19 20:17:46.2616|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:17:46.3126|DEBUG|OnDoc| +2026-03-19 20:17:46.3126|DEBUG|OnDoc| +2026-03-19 20:17:46.3491|DEBUG|OnDoc| +2026-03-19 20:17:46.3491|DEBUG|OnDoc| +2026-03-19 20:17:46.3591|DEBUG|OnDoc| +2026-03-19 20:17:46.3591|DEBUG|OnDoc| +2026-03-19 20:17:46.3591|DEBUG|OnDoc| +2026-03-19 20:17:46.3591|DEBUG|OnDoc| +2026-03-19 20:17:46.3899|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:17:46.3899|DEBUG|OnDoc| +2026-03-19 20:17:46.3899|DEBUG|OnDoc| +2026-03-19 20:17:46.3899|DEBUG|OnDoc| +2026-03-19 20:17:46.3899|DEBUG|OnDoc| +2026-03-19 20:17:46.3899|DEBUG|OnDoc| +2026-03-19 20:17:46.4012|DEBUG|OnDoc| +2026-03-19 20:17:46.4012|DEBUG|OnDoc| +2026-03-19 20:17:46.4012|DEBUG|OnDoc| +2026-03-19 20:17:46.4012|DEBUG|OnDoc|Generate_Word +2026-03-19 20:17:46.4158|DEBUG|OnDoc|Word2013 +2026-03-19 20:17:46.4158|DEBUG|OnDoc|Word2013 +2026-03-19 20:17:46.9638|DEBUG|OnDoc| +2026-03-19 20:17:46.9638|DEBUG|OnDoc| +2026-03-19 20:17:47.0438|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:17:47.0438|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:17:47.1433|DEBUG|OnDoc| +2026-03-19 20:17:47.1538|DEBUG|OnDoc| +2026-03-19 20:17:47.2281|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:17:47.2281|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:17:47.8560|DEBUG|OnDoc|Generate_Word +2026-03-19 20:17:47.8734|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019806 +2026-03-19 20:17:47.8734|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:17:47.8734|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:17:47.8734|DEBUG|OnDoc| +2026-03-19 20:17:47.9030|DEBUG|OnDoc| +2026-03-19 20:17:47.9030|DEBUG|OnDoc| +2026-03-19 20:17:47.9030|DEBUG|OnDoc| +2026-03-19 20:17:47.9030|DEBUG|OnDoc| +2026-03-19 20:17:47.9030|DEBUG|OnDoc| +2026-03-19 20:18:04.2092|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:18:04.3139|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:18:04.3589|INFO|APIDocLog|Input JSON +2026-03-19 20:18:04.3589|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3589|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3684|DEBUG|OnDoc| +2026-03-19 20:18:04.3974|DEBUG|OnDoc| +2026-03-19 20:18:04.4004|DEBUG|OnDoc| +2026-03-19 20:18:04.4004|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:18:04.4512|DEBUG|OnDoc| +2026-03-19 20:18:04.4512|DEBUG|OnDoc| +2026-03-19 20:18:04.4859|DEBUG|OnDoc| +2026-03-19 20:18:04.4859|DEBUG|OnDoc| +2026-03-19 20:18:04.4949|DEBUG|OnDoc| +2026-03-19 20:18:04.4949|DEBUG|OnDoc| +2026-03-19 20:18:04.4949|DEBUG|OnDoc| +2026-03-19 20:18:04.4949|DEBUG|OnDoc| +2026-03-19 20:18:04.5256|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:18:04.5256|DEBUG|OnDoc| +2026-03-19 20:18:04.5256|DEBUG|OnDoc| +2026-03-19 20:18:04.5256|DEBUG|OnDoc| +2026-03-19 20:18:04.5256|DEBUG|OnDoc| +2026-03-19 20:18:04.5256|DEBUG|OnDoc| +2026-03-19 20:18:04.5256|DEBUG|OnDoc| +2026-03-19 20:18:04.5256|DEBUG|OnDoc| +2026-03-19 20:18:04.5429|DEBUG|OnDoc| +2026-03-19 20:18:04.5429|DEBUG|OnDoc|Generate_Word +2026-03-19 20:18:04.5429|DEBUG|OnDoc|Word2013 +2026-03-19 20:18:04.5429|DEBUG|OnDoc|Word2013 +2026-03-19 20:18:05.1289|DEBUG|OnDoc| +2026-03-19 20:18:05.1369|DEBUG|OnDoc| +2026-03-19 20:18:05.2070|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:18:05.2167|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:18:05.3025|DEBUG|OnDoc| +2026-03-19 20:18:05.3116|DEBUG|OnDoc| +2026-03-19 20:18:05.3834|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:18:05.3834|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:18:05.9152|DEBUG|OnDoc|Generate_Word +2026-03-19 20:18:05.9152|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019814 +2026-03-19 20:18:05.9152|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:18:05.9152|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:18:05.9152|DEBUG|OnDoc| +2026-03-19 20:18:05.9384|DEBUG|OnDoc| +2026-03-19 20:18:05.9384|DEBUG|OnDoc| +2026-03-19 20:18:05.9384|DEBUG|OnDoc| +2026-03-19 20:18:05.9384|DEBUG|OnDoc| +2026-03-19 20:18:05.9384|DEBUG|OnDoc| +2026-03-19 20:18:18.5607|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:18:18.6641|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:18:18.7093|INFO|APIDocLog|Input JSON +2026-03-19 20:18:18.7133|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:18:18.7133|DEBUG|OnDoc| +2026-03-19 20:18:18.7133|DEBUG|OnDoc| +2026-03-19 20:18:18.7133|DEBUG|OnDoc| +2026-03-19 20:18:18.7133|DEBUG|OnDoc| +2026-03-19 20:18:18.7133|DEBUG|OnDoc| +2026-03-19 20:18:18.7133|DEBUG|OnDoc| +2026-03-19 20:18:18.7133|DEBUG|OnDoc| +2026-03-19 20:18:18.7133|DEBUG|OnDoc| +2026-03-19 20:18:18.7133|DEBUG|OnDoc| +2026-03-19 20:18:18.7133|DEBUG|OnDoc| +2026-03-19 20:18:18.7133|DEBUG|OnDoc| +2026-03-19 20:18:18.7133|DEBUG|OnDoc| +2026-03-19 20:18:18.7133|DEBUG|OnDoc| +2026-03-19 20:18:18.7133|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7274|DEBUG|OnDoc| +2026-03-19 20:18:18.7541|DEBUG|OnDoc| +2026-03-19 20:18:18.7541|DEBUG|OnDoc| +2026-03-19 20:18:18.7655|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:18:18.8124|DEBUG|OnDoc| +2026-03-19 20:18:18.8124|DEBUG|OnDoc| +2026-03-19 20:18:18.8500|DEBUG|OnDoc| +2026-03-19 20:18:18.8500|DEBUG|OnDoc| +2026-03-19 20:18:18.8607|DEBUG|OnDoc| +2026-03-19 20:18:18.8607|DEBUG|OnDoc| +2026-03-19 20:18:18.8607|DEBUG|OnDoc| +2026-03-19 20:18:18.8607|DEBUG|OnDoc| +2026-03-19 20:18:18.8952|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:18:18.8952|DEBUG|OnDoc| +2026-03-19 20:18:18.9012|DEBUG|OnDoc| +2026-03-19 20:18:18.9012|DEBUG|OnDoc| +2026-03-19 20:18:18.9012|DEBUG|OnDoc| +2026-03-19 20:18:18.9012|DEBUG|OnDoc| +2026-03-19 20:18:18.9012|DEBUG|OnDoc| +2026-03-19 20:18:18.9012|DEBUG|OnDoc| +2026-03-19 20:18:18.9012|DEBUG|OnDoc| +2026-03-19 20:18:18.9012|DEBUG|OnDoc|Generate_Word +2026-03-19 20:18:18.9209|DEBUG|OnDoc|Word2013 +2026-03-19 20:18:18.9209|DEBUG|OnDoc|Word2013 +2026-03-19 20:18:19.5332|DEBUG|OnDoc| +2026-03-19 20:18:19.5440|DEBUG|OnDoc| +2026-03-19 20:18:19.6168|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:18:19.6260|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:18:19.7149|DEBUG|OnDoc| +2026-03-19 20:18:19.7149|DEBUG|OnDoc| +2026-03-19 20:18:19.7975|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:18:19.8070|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:18:20.3814|DEBUG|OnDoc|Generate_Word +2026-03-19 20:18:20.3948|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019822 +2026-03-19 20:18:20.3948|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:18:20.3948|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:18:20.3948|DEBUG|OnDoc| +2026-03-19 20:18:20.4119|DEBUG|OnDoc| +2026-03-19 20:18:20.4149|DEBUG|OnDoc| +2026-03-19 20:18:20.4149|DEBUG|OnDoc| +2026-03-19 20:18:20.4149|DEBUG|OnDoc| +2026-03-19 20:18:20.4149|DEBUG|OnDoc| +2026-03-19 20:18:33.0526|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:18:33.1526|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:18:33.1903|INFO|APIDocLog|Input JSON +2026-03-19 20:18:33.1903|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.1963|DEBUG|OnDoc| +2026-03-19 20:18:33.2119|DEBUG|OnDoc| +2026-03-19 20:18:33.2119|DEBUG|OnDoc| +2026-03-19 20:18:33.2119|DEBUG|OnDoc| +2026-03-19 20:18:33.2119|DEBUG|OnDoc| +2026-03-19 20:18:33.2119|DEBUG|OnDoc| +2026-03-19 20:18:33.2119|DEBUG|OnDoc| +2026-03-19 20:18:33.2119|DEBUG|OnDoc| +2026-03-19 20:18:33.2119|DEBUG|OnDoc| +2026-03-19 20:18:33.2119|DEBUG|OnDoc| +2026-03-19 20:18:33.2119|DEBUG|OnDoc| +2026-03-19 20:18:33.2119|DEBUG|OnDoc| +2026-03-19 20:18:33.2119|DEBUG|OnDoc| +2026-03-19 20:18:33.2119|DEBUG|OnDoc| +2026-03-19 20:18:33.2119|DEBUG|OnDoc| +2026-03-19 20:18:33.2318|DEBUG|OnDoc| +2026-03-19 20:18:33.2318|DEBUG|OnDoc| +2026-03-19 20:18:33.2318|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:18:33.2854|DEBUG|OnDoc| +2026-03-19 20:18:33.2854|DEBUG|OnDoc| +2026-03-19 20:18:33.3212|DEBUG|OnDoc| +2026-03-19 20:18:33.3212|DEBUG|OnDoc| +2026-03-19 20:18:33.3212|DEBUG|OnDoc| +2026-03-19 20:18:33.3212|DEBUG|OnDoc| +2026-03-19 20:18:33.3365|DEBUG|OnDoc| +2026-03-19 20:18:33.3365|DEBUG|OnDoc| +2026-03-19 20:18:33.3682|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:18:33.3682|DEBUG|OnDoc| +2026-03-19 20:18:33.3682|DEBUG|OnDoc| +2026-03-19 20:18:33.3682|DEBUG|OnDoc| +2026-03-19 20:18:33.3682|DEBUG|OnDoc| +2026-03-19 20:18:33.3682|DEBUG|OnDoc| +2026-03-19 20:18:33.3841|DEBUG|OnDoc| +2026-03-19 20:18:33.3841|DEBUG|OnDoc| +2026-03-19 20:18:33.3841|DEBUG|OnDoc| +2026-03-19 20:18:33.3841|DEBUG|OnDoc|Generate_Word +2026-03-19 20:18:33.4004|DEBUG|OnDoc|Word2013 +2026-03-19 20:18:33.4004|DEBUG|OnDoc|Word2013 +2026-03-19 20:18:33.9810|DEBUG|OnDoc| +2026-03-19 20:18:33.9810|DEBUG|OnDoc| +2026-03-19 20:18:34.0629|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:18:34.0726|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:18:34.1612|DEBUG|OnDoc| +2026-03-19 20:18:34.1715|DEBUG|OnDoc| +2026-03-19 20:18:34.2438|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:18:34.2438|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:18:34.8299|DEBUG|OnDoc|Generate_Word +2026-03-19 20:18:34.8441|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019838 +2026-03-19 20:18:34.8441|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:18:34.8441|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:18:34.8441|DEBUG|OnDoc| +2026-03-19 20:18:34.8610|DEBUG|OnDoc| +2026-03-19 20:18:34.8610|DEBUG|OnDoc| +2026-03-19 20:18:34.8610|DEBUG|OnDoc| +2026-03-19 20:18:34.8610|DEBUG|OnDoc| +2026-03-19 20:18:34.8610|DEBUG|OnDoc| +2026-03-19 20:18:50.3343|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:18:50.4457|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:18:50.4892|INFO|APIDocLog|Input JSON +2026-03-19 20:18:50.4892|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:18:50.4892|DEBUG|OnDoc| +2026-03-19 20:18:50.4892|DEBUG|OnDoc| +2026-03-19 20:18:50.4892|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.4931|DEBUG|OnDoc| +2026-03-19 20:18:50.5182|DEBUG|OnDoc| +2026-03-19 20:18:50.5182|DEBUG|OnDoc| +2026-03-19 20:18:50.5274|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:18:50.5703|DEBUG|OnDoc| +2026-03-19 20:18:50.5733|DEBUG|OnDoc| +2026-03-19 20:18:50.6050|DEBUG|OnDoc| +2026-03-19 20:18:50.6050|DEBUG|OnDoc| +2026-03-19 20:18:50.6050|DEBUG|OnDoc| +2026-03-19 20:18:50.6050|DEBUG|OnDoc| +2026-03-19 20:18:50.6050|DEBUG|OnDoc| +2026-03-19 20:18:50.6050|DEBUG|OnDoc| +2026-03-19 20:18:50.6442|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:18:50.6442|DEBUG|OnDoc| +2026-03-19 20:18:50.6512|DEBUG|OnDoc| +2026-03-19 20:18:50.6512|DEBUG|OnDoc| +2026-03-19 20:18:50.6512|DEBUG|OnDoc| +2026-03-19 20:18:50.6512|DEBUG|OnDoc| +2026-03-19 20:18:50.6512|DEBUG|OnDoc| +2026-03-19 20:18:50.6512|DEBUG|OnDoc| +2026-03-19 20:18:50.6512|DEBUG|OnDoc| +2026-03-19 20:18:50.6512|DEBUG|OnDoc|Generate_Word +2026-03-19 20:18:50.6673|DEBUG|OnDoc|Word2013 +2026-03-19 20:18:50.6673|DEBUG|OnDoc|Word2013 +2026-03-19 20:18:51.2677|DEBUG|OnDoc| +2026-03-19 20:18:51.2766|DEBUG|OnDoc| +2026-03-19 20:18:51.3481|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:18:51.3565|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:18:51.4460|DEBUG|OnDoc| +2026-03-19 20:18:51.4460|DEBUG|OnDoc| +2026-03-19 20:18:51.5287|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:18:51.5287|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:18:52.0630|DEBUG|OnDoc|Generate_Word +2026-03-19 20:18:52.0760|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019843 +2026-03-19 20:18:52.0760|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:18:52.0760|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:18:52.0760|DEBUG|OnDoc| +2026-03-19 20:18:52.0985|DEBUG|OnDoc| +2026-03-19 20:18:52.0985|DEBUG|OnDoc| +2026-03-19 20:18:52.0985|DEBUG|OnDoc| +2026-03-19 20:18:52.0985|DEBUG|OnDoc| +2026-03-19 20:18:52.0985|DEBUG|OnDoc| +2026-03-19 20:18:58.0708|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:18:58.1800|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:18:58.2247|INFO|APIDocLog|Input JSON +2026-03-19 20:18:58.2276|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2276|DEBUG|OnDoc| +2026-03-19 20:18:58.2512|DEBUG|OnDoc| +2026-03-19 20:18:58.2512|DEBUG|OnDoc| +2026-03-19 20:18:58.2598|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:18:58.3031|DEBUG|OnDoc| +2026-03-19 20:18:58.3057|DEBUG|OnDoc| +2026-03-19 20:18:58.3367|DEBUG|OnDoc| +2026-03-19 20:18:58.3367|DEBUG|OnDoc| +2026-03-19 20:18:58.3367|DEBUG|OnDoc| +2026-03-19 20:18:58.3367|DEBUG|OnDoc| +2026-03-19 20:18:58.3367|DEBUG|OnDoc| +2026-03-19 20:18:58.3367|DEBUG|OnDoc| +2026-03-19 20:18:58.3758|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:18:58.3758|DEBUG|OnDoc| +2026-03-19 20:18:58.3758|DEBUG|OnDoc| +2026-03-19 20:18:58.3758|DEBUG|OnDoc| +2026-03-19 20:18:58.3758|DEBUG|OnDoc| +2026-03-19 20:18:58.3758|DEBUG|OnDoc| +2026-03-19 20:18:58.3865|DEBUG|OnDoc| +2026-03-19 20:18:58.3865|DEBUG|OnDoc| +2026-03-19 20:18:58.3865|DEBUG|OnDoc| +2026-03-19 20:18:58.3865|DEBUG|OnDoc|Generate_Word +2026-03-19 20:18:58.3865|DEBUG|OnDoc|Word2013 +2026-03-19 20:18:58.3994|DEBUG|OnDoc|Word2013 +2026-03-19 20:18:59.0041|DEBUG|OnDoc| +2026-03-19 20:18:59.0129|DEBUG|OnDoc| +2026-03-19 20:18:59.0837|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:18:59.0919|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:18:59.1788|DEBUG|OnDoc| +2026-03-19 20:18:59.1877|DEBUG|OnDoc| +2026-03-19 20:18:59.2592|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:18:59.2592|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:18:59.7869|DEBUG|OnDoc|Generate_Word +2026-03-19 20:18:59.7990|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019859 +2026-03-19 20:18:59.7990|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:18:59.7990|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:18:59.7990|DEBUG|OnDoc| +2026-03-19 20:18:59.8118|DEBUG|OnDoc| +2026-03-19 20:18:59.8118|DEBUG|OnDoc| +2026-03-19 20:18:59.8118|DEBUG|OnDoc| +2026-03-19 20:18:59.8118|DEBUG|OnDoc| +2026-03-19 20:18:59.8118|DEBUG|OnDoc| +2026-03-19 20:19:09.5882|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:19:09.7006|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:19:09.7467|INFO|APIDocLog|Input JSON +2026-03-19 20:19:09.7467|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7467|DEBUG|OnDoc| +2026-03-19 20:19:09.7590|DEBUG|OnDoc| +2026-03-19 20:19:09.7590|DEBUG|OnDoc| +2026-03-19 20:19:09.7590|DEBUG|OnDoc| +2026-03-19 20:19:09.7590|DEBUG|OnDoc| +2026-03-19 20:19:09.7590|DEBUG|OnDoc| +2026-03-19 20:19:09.7590|DEBUG|OnDoc| +2026-03-19 20:19:09.7590|DEBUG|OnDoc| +2026-03-19 20:19:09.7590|DEBUG|OnDoc| +2026-03-19 20:19:09.7590|DEBUG|OnDoc| +2026-03-19 20:19:09.7590|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:19:09.8190|DEBUG|OnDoc| +2026-03-19 20:19:09.8213|DEBUG|OnDoc| +2026-03-19 20:19:09.8510|DEBUG|OnDoc| +2026-03-19 20:19:09.8520|DEBUG|OnDoc| +2026-03-19 20:19:09.8520|DEBUG|OnDoc| +2026-03-19 20:19:09.8520|DEBUG|OnDoc| +2026-03-19 20:19:09.8520|DEBUG|OnDoc| +2026-03-19 20:19:09.8520|DEBUG|OnDoc| +2026-03-19 20:19:09.8938|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:19:09.8938|DEBUG|OnDoc| +2026-03-19 20:19:09.8999|DEBUG|OnDoc| +2026-03-19 20:19:09.8999|DEBUG|OnDoc| +2026-03-19 20:19:09.8999|DEBUG|OnDoc| +2026-03-19 20:19:09.8999|DEBUG|OnDoc| +2026-03-19 20:19:09.8999|DEBUG|OnDoc| +2026-03-19 20:19:09.8999|DEBUG|OnDoc| +2026-03-19 20:19:09.8999|DEBUG|OnDoc| +2026-03-19 20:19:09.8999|DEBUG|OnDoc|Generate_Word +2026-03-19 20:19:09.9172|DEBUG|OnDoc|Word2013 +2026-03-19 20:19:09.9172|DEBUG|OnDoc|Word2013 +2026-03-19 20:19:10.4887|DEBUG|OnDoc| +2026-03-19 20:19:10.4986|DEBUG|OnDoc| +2026-03-19 20:19:10.5696|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:19:10.5795|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:19:10.6661|DEBUG|OnDoc| +2026-03-19 20:19:10.6661|DEBUG|OnDoc| +2026-03-19 20:19:10.7452|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:19:10.7452|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:19:11.3420|DEBUG|OnDoc|Generate_Word +2026-03-19 20:19:11.3550|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019867 +2026-03-19 20:19:11.3550|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:19:11.3550|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:19:11.3550|DEBUG|OnDoc| +2026-03-19 20:19:11.3677|DEBUG|OnDoc| +2026-03-19 20:19:11.3677|DEBUG|OnDoc| +2026-03-19 20:19:11.3677|DEBUG|OnDoc| +2026-03-19 20:19:11.3677|DEBUG|OnDoc| +2026-03-19 20:19:11.3677|DEBUG|OnDoc| +2026-03-19 20:19:22.6411|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:19:22.7542|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:19:22.7987|INFO|APIDocLog|Input JSON +2026-03-19 20:19:22.7987|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:19:22.7987|DEBUG|OnDoc| +2026-03-19 20:19:22.7987|DEBUG|OnDoc| +2026-03-19 20:19:22.8055|DEBUG|OnDoc| +2026-03-19 20:19:22.8055|DEBUG|OnDoc| +2026-03-19 20:19:22.8055|DEBUG|OnDoc| +2026-03-19 20:19:22.8055|DEBUG|OnDoc| +2026-03-19 20:19:22.8055|DEBUG|OnDoc| +2026-03-19 20:19:22.8055|DEBUG|OnDoc| +2026-03-19 20:19:22.8055|DEBUG|OnDoc| +2026-03-19 20:19:22.8055|DEBUG|OnDoc| +2026-03-19 20:19:22.8055|ERROR|APIDocLog|Error Verify +2026-03-19 20:19:23.0270|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-03-19 20:19:23.0585|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-03-19 20:19:39.9619|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:19:40.0642|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:19:40.1034|INFO|APIDocLog|Input JSON +2026-03-19 20:19:40.1034|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:19:40.1034|DEBUG|OnDoc| +2026-03-19 20:19:40.1034|DEBUG|OnDoc| +2026-03-19 20:19:40.1034|DEBUG|OnDoc| +2026-03-19 20:19:40.1034|DEBUG|OnDoc| +2026-03-19 20:19:40.1034|DEBUG|OnDoc| +2026-03-19 20:19:40.1034|DEBUG|OnDoc| +2026-03-19 20:19:40.1034|DEBUG|OnDoc| +2026-03-19 20:19:40.1034|DEBUG|OnDoc| +2026-03-19 20:19:40.1034|DEBUG|OnDoc| +2026-03-19 20:19:40.1034|DEBUG|OnDoc| +2026-03-19 20:19:40.1034|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|DEBUG|OnDoc| +2026-03-19 20:19:40.1179|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:19:40.1914|DEBUG|OnDoc| +2026-03-19 20:19:40.1914|DEBUG|OnDoc| +2026-03-19 20:19:40.2276|DEBUG|OnDoc| +2026-03-19 20:19:40.2276|DEBUG|OnDoc| +2026-03-19 20:19:40.2276|DEBUG|OnDoc| +2026-03-19 20:19:40.2276|DEBUG|OnDoc| +2026-03-19 20:19:40.2276|DEBUG|OnDoc| +2026-03-19 20:19:40.2434|DEBUG|OnDoc| +2026-03-19 20:19:40.2749|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:19:40.2749|DEBUG|OnDoc| +2026-03-19 20:19:40.2749|DEBUG|OnDoc| +2026-03-19 20:19:40.2749|DEBUG|OnDoc| +2026-03-19 20:19:40.2749|DEBUG|OnDoc| +2026-03-19 20:19:40.2749|DEBUG|OnDoc| +2026-03-19 20:19:40.2920|DEBUG|OnDoc| +2026-03-19 20:19:40.2920|DEBUG|OnDoc| +2026-03-19 20:19:40.2920|DEBUG|OnDoc| +2026-03-19 20:19:40.2920|DEBUG|OnDoc|Generate_Word +2026-03-19 20:19:40.3057|DEBUG|OnDoc|Word2013 +2026-03-19 20:19:40.3057|DEBUG|OnDoc|Word2013 +2026-03-19 20:19:40.8713|DEBUG|OnDoc| +2026-03-19 20:19:40.8713|DEBUG|OnDoc| +2026-03-19 20:19:40.9531|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:19:40.9621|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:19:41.0519|DEBUG|OnDoc| +2026-03-19 20:19:41.0612|DEBUG|OnDoc| +2026-03-19 20:19:41.1327|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:19:41.1425|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:19:41.6703|DEBUG|OnDoc|Generate_Word +2026-03-19 20:19:41.6837|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019875 +2026-03-19 20:19:41.6837|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:19:41.6837|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:19:41.6837|DEBUG|OnDoc| +2026-03-19 20:19:41.7001|DEBUG|OnDoc| +2026-03-19 20:19:41.7001|DEBUG|OnDoc| +2026-03-19 20:19:41.7001|DEBUG|OnDoc| +2026-03-19 20:19:41.7001|DEBUG|OnDoc| +2026-03-19 20:19:41.7001|DEBUG|OnDoc| +2026-03-19 20:19:54.2806|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:19:54.3842|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:19:54.4300|INFO|APIDocLog|Input JSON +2026-03-19 20:19:54.4320|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4320|DEBUG|OnDoc| +2026-03-19 20:19:54.4457|DEBUG|OnDoc| +2026-03-19 20:19:54.4457|DEBUG|OnDoc| +2026-03-19 20:19:54.4457|DEBUG|OnDoc| +2026-03-19 20:19:54.4457|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:19:54.4907|DEBUG|OnDoc| +2026-03-19 20:19:54.4939|DEBUG|OnDoc| +2026-03-19 20:19:54.5247|DEBUG|OnDoc| +2026-03-19 20:19:54.5247|DEBUG|OnDoc| +2026-03-19 20:19:54.5247|DEBUG|OnDoc| +2026-03-19 20:19:54.5247|DEBUG|OnDoc| +2026-03-19 20:19:54.5247|DEBUG|OnDoc| +2026-03-19 20:19:54.5247|DEBUG|OnDoc| +2026-03-19 20:19:54.5641|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:19:54.5641|DEBUG|OnDoc| +2026-03-19 20:19:54.5641|DEBUG|OnDoc| +2026-03-19 20:19:54.5716|DEBUG|OnDoc| +2026-03-19 20:19:54.5716|DEBUG|OnDoc| +2026-03-19 20:19:54.5716|DEBUG|OnDoc| +2026-03-19 20:19:54.5716|DEBUG|OnDoc| +2026-03-19 20:19:54.5716|DEBUG|OnDoc| +2026-03-19 20:19:54.5716|DEBUG|OnDoc| +2026-03-19 20:19:54.5716|DEBUG|OnDoc|Generate_Word +2026-03-19 20:19:54.5870|DEBUG|OnDoc|Word2013 +2026-03-19 20:19:54.5870|DEBUG|OnDoc|Word2013 +2026-03-19 20:19:55.1541|DEBUG|OnDoc| +2026-03-19 20:19:55.1541|DEBUG|OnDoc| +2026-03-19 20:19:55.2329|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:19:55.2426|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:19:55.3296|DEBUG|OnDoc| +2026-03-19 20:19:55.3391|DEBUG|OnDoc| +2026-03-19 20:19:55.4091|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:19:55.4184|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:19:55.9919|DEBUG|OnDoc|Generate_Word +2026-03-19 20:19:56.0048|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019880 +2026-03-19 20:19:56.0048|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:19:56.0048|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:19:56.0048|DEBUG|OnDoc| +2026-03-19 20:19:56.0180|DEBUG|OnDoc| +2026-03-19 20:19:56.0180|DEBUG|OnDoc| +2026-03-19 20:19:56.0180|DEBUG|OnDoc| +2026-03-19 20:19:56.0180|DEBUG|OnDoc| +2026-03-19 20:19:56.0180|DEBUG|OnDoc| +2026-03-19 20:20:02.9899|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:20:03.0896|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:20:03.1267|INFO|APIDocLog|Input JSON +2026-03-19 20:20:03.1267|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:20:03.1267|DEBUG|OnDoc| +2026-03-19 20:20:03.1267|DEBUG|OnDoc| +2026-03-19 20:20:03.1267|DEBUG|OnDoc| +2026-03-19 20:20:03.1267|DEBUG|OnDoc| +2026-03-19 20:20:03.1267|DEBUG|OnDoc| +2026-03-19 20:20:03.1267|DEBUG|OnDoc| +2026-03-19 20:20:03.1267|DEBUG|OnDoc| +2026-03-19 20:20:03.1267|DEBUG|OnDoc| +2026-03-19 20:20:03.1267|DEBUG|OnDoc| +2026-03-19 20:20:03.1267|DEBUG|OnDoc| +2026-03-19 20:20:03.1267|DEBUG|OnDoc| +2026-03-19 20:20:03.1267|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|DEBUG|OnDoc| +2026-03-19 20:20:03.1344|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:20:03.1893|DEBUG|OnDoc| +2026-03-19 20:20:03.1893|DEBUG|OnDoc| +2026-03-19 20:20:03.2211|DEBUG|OnDoc| +2026-03-19 20:20:03.2211|DEBUG|OnDoc| +2026-03-19 20:20:03.2311|DEBUG|OnDoc| +2026-03-19 20:20:03.2311|DEBUG|OnDoc| +2026-03-19 20:20:03.2311|DEBUG|OnDoc| +2026-03-19 20:20:03.2311|DEBUG|OnDoc| +2026-03-19 20:20:03.2602|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:20:03.2602|DEBUG|OnDoc| +2026-03-19 20:20:03.2602|DEBUG|OnDoc| +2026-03-19 20:20:03.2602|DEBUG|OnDoc| +2026-03-19 20:20:03.2602|DEBUG|OnDoc| +2026-03-19 20:20:03.2602|DEBUG|OnDoc| +2026-03-19 20:20:03.2602|DEBUG|OnDoc| +2026-03-19 20:20:03.2602|DEBUG|OnDoc| +2026-03-19 20:20:03.2770|DEBUG|OnDoc| +2026-03-19 20:20:03.2770|DEBUG|OnDoc|Generate_Word +2026-03-19 20:20:03.2770|DEBUG|OnDoc|Word2013 +2026-03-19 20:20:03.2770|DEBUG|OnDoc|Word2013 +2026-03-19 20:20:03.8483|DEBUG|OnDoc| +2026-03-19 20:20:03.8582|DEBUG|OnDoc| +2026-03-19 20:20:03.9273|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:20:03.9363|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:20:04.0252|DEBUG|OnDoc| +2026-03-19 20:20:04.0252|DEBUG|OnDoc| +2026-03-19 20:20:04.1054|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:20:04.1054|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:20:04.6907|DEBUG|OnDoc|Generate_Word +2026-03-19 20:20:04.7091|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019891 +2026-03-19 20:20:04.7091|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:20:04.7117|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:20:04.7117|DEBUG|OnDoc| +2026-03-19 20:20:04.7342|DEBUG|OnDoc| +2026-03-19 20:20:04.7342|DEBUG|OnDoc| +2026-03-19 20:20:04.7342|DEBUG|OnDoc| +2026-03-19 20:20:04.7342|DEBUG|OnDoc| +2026-03-19 20:20:04.7342|DEBUG|OnDoc| +2026-03-19 20:20:13.5239|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:20:13.6015|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:20:13.6467|INFO|APIDocLog|Input JSON +2026-03-19 20:20:13.6493|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6493|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|DEBUG|OnDoc| +2026-03-19 20:20:13.6654|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:20:13.7266|DEBUG|OnDoc| +2026-03-19 20:20:13.7295|DEBUG|OnDoc| +2026-03-19 20:20:13.7623|DEBUG|OnDoc| +2026-03-19 20:20:13.7623|DEBUG|OnDoc| +2026-03-19 20:20:13.7739|DEBUG|OnDoc| +2026-03-19 20:20:13.7739|DEBUG|OnDoc| +2026-03-19 20:20:13.7739|DEBUG|OnDoc| +2026-03-19 20:20:13.7739|DEBUG|OnDoc| +2026-03-19 20:20:13.8061|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:20:13.8061|DEBUG|OnDoc| +2026-03-19 20:20:13.8061|DEBUG|OnDoc| +2026-03-19 20:20:13.8061|DEBUG|OnDoc| +2026-03-19 20:20:13.8061|DEBUG|OnDoc| +2026-03-19 20:20:13.8061|DEBUG|OnDoc| +2026-03-19 20:20:13.8253|DEBUG|OnDoc| +2026-03-19 20:20:13.8253|DEBUG|OnDoc| +2026-03-19 20:20:13.8253|DEBUG|OnDoc| +2026-03-19 20:20:13.8253|DEBUG|OnDoc|Generate_Word +2026-03-19 20:20:13.8382|DEBUG|OnDoc|Word2013 +2026-03-19 20:20:13.8382|DEBUG|OnDoc|Word2013 +2026-03-19 20:20:14.8657|DEBUG|OnDoc|Generate_Word +2026-03-19 20:20:14.8781|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019909 +2026-03-19 20:20:14.8781|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:20:14.8781|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:20:14.8781|DEBUG|OnDoc| +2026-03-19 20:20:14.8917|DEBUG|OnDoc| +2026-03-19 20:20:14.8917|DEBUG|OnDoc| +2026-03-19 20:20:14.8917|DEBUG|OnDoc| +2026-03-19 20:20:14.8917|DEBUG|OnDoc| +2026-03-19 20:20:14.8917|DEBUG|OnDoc| +2026-03-19 20:20:23.9888|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:20:24.0653|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:20:24.1064|INFO|APIDocLog|Input JSON +2026-03-19 20:20:24.1064|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:20:24.1064|DEBUG|OnDoc| +2026-03-19 20:20:24.1064|DEBUG|OnDoc| +2026-03-19 20:20:24.1064|DEBUG|OnDoc| +2026-03-19 20:20:24.1064|DEBUG|OnDoc| +2026-03-19 20:20:24.1064|DEBUG|OnDoc| +2026-03-19 20:20:24.1064|DEBUG|OnDoc| +2026-03-19 20:20:24.1064|DEBUG|OnDoc| +2026-03-19 20:20:24.1064|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1187|DEBUG|OnDoc| +2026-03-19 20:20:24.1333|DEBUG|OnDoc| +2026-03-19 20:20:24.1333|DEBUG|OnDoc| +2026-03-19 20:20:24.1333|DEBUG|OnDoc| +2026-03-19 20:20:24.1333|DEBUG|OnDoc| +2026-03-19 20:20:24.1333|DEBUG|OnDoc| +2026-03-19 20:20:24.1333|DEBUG|OnDoc| +2026-03-19 20:20:24.1333|DEBUG|OnDoc| +2026-03-19 20:20:24.1333|DEBUG|OnDoc| +2026-03-19 20:20:24.1333|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:20:24.1870|DEBUG|OnDoc| +2026-03-19 20:20:24.1870|DEBUG|OnDoc| +2026-03-19 20:20:24.2221|DEBUG|OnDoc| +2026-03-19 20:20:24.2221|DEBUG|OnDoc| +2026-03-19 20:20:24.2326|DEBUG|OnDoc| +2026-03-19 20:20:24.2326|DEBUG|OnDoc| +2026-03-19 20:20:24.2326|DEBUG|OnDoc| +2026-03-19 20:20:24.2326|DEBUG|OnDoc| +2026-03-19 20:20:24.2680|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:20:24.2680|DEBUG|OnDoc| +2026-03-19 20:20:24.2755|DEBUG|OnDoc| +2026-03-19 20:20:24.2755|DEBUG|OnDoc| +2026-03-19 20:20:24.2755|DEBUG|OnDoc| +2026-03-19 20:20:24.2755|DEBUG|OnDoc| +2026-03-19 20:20:24.2755|DEBUG|OnDoc| +2026-03-19 20:20:24.2755|DEBUG|OnDoc| +2026-03-19 20:20:24.2896|DEBUG|OnDoc| +2026-03-19 20:20:24.2896|DEBUG|OnDoc|Generate_Word +2026-03-19 20:20:24.2896|DEBUG|OnDoc|Word2013 +2026-03-19 20:20:24.2896|DEBUG|OnDoc|Word2013 +2026-03-19 20:20:24.8774|DEBUG|OnDoc| +2026-03-19 20:20:24.8880|DEBUG|OnDoc| +2026-03-19 20:20:24.9596|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:20:24.9690|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:20:25.0581|DEBUG|OnDoc| +2026-03-19 20:20:25.0581|DEBUG|OnDoc| +2026-03-19 20:20:25.1396|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:20:25.1396|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:20:25.7293|DEBUG|OnDoc|Generate_Word +2026-03-19 20:20:25.7293|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019917 +2026-03-19 20:20:25.7430|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:20:25.7430|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:20:25.7430|DEBUG|OnDoc| +2026-03-19 20:20:25.7605|DEBUG|OnDoc| +2026-03-19 20:20:25.7605|DEBUG|OnDoc| +2026-03-19 20:20:25.7605|DEBUG|OnDoc| +2026-03-19 20:20:25.7605|DEBUG|OnDoc| +2026-03-19 20:20:25.7605|DEBUG|OnDoc| +2026-03-19 20:20:37.3329|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:20:37.4449|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:20:37.4899|INFO|APIDocLog|Input JSON +2026-03-19 20:20:37.4941|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:20:37.4941|DEBUG|OnDoc| +2026-03-19 20:20:37.4941|DEBUG|OnDoc| +2026-03-19 20:20:37.4941|DEBUG|OnDoc| +2026-03-19 20:20:37.4941|DEBUG|OnDoc| +2026-03-19 20:20:37.4941|DEBUG|OnDoc| +2026-03-19 20:20:37.4941|DEBUG|OnDoc| +2026-03-19 20:20:37.4941|DEBUG|OnDoc| +2026-03-19 20:20:37.4941|DEBUG|OnDoc| +2026-03-19 20:20:37.4941|DEBUG|OnDoc| +2026-03-19 20:20:37.4941|DEBUG|OnDoc| +2026-03-19 20:20:37.4941|DEBUG|OnDoc| +2026-03-19 20:20:37.4941|DEBUG|OnDoc| +2026-03-19 20:20:37.4941|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5090|DEBUG|OnDoc| +2026-03-19 20:20:37.5240|DEBUG|OnDoc| +2026-03-19 20:20:37.5240|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:20:37.5821|DEBUG|OnDoc| +2026-03-19 20:20:37.5821|DEBUG|OnDoc| +2026-03-19 20:20:37.6184|DEBUG|OnDoc| +2026-03-19 20:20:37.6184|DEBUG|OnDoc| +2026-03-19 20:20:37.6184|DEBUG|OnDoc| +2026-03-19 20:20:37.6184|DEBUG|OnDoc| +2026-03-19 20:20:37.6184|DEBUG|OnDoc| +2026-03-19 20:20:37.6184|DEBUG|OnDoc| +2026-03-19 20:20:37.6620|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:20:37.6650|DEBUG|OnDoc| +2026-03-19 20:20:37.6650|DEBUG|OnDoc| +2026-03-19 20:20:37.6650|DEBUG|OnDoc| +2026-03-19 20:20:37.6650|DEBUG|OnDoc| +2026-03-19 20:20:37.6650|DEBUG|OnDoc| +2026-03-19 20:20:37.6650|DEBUG|OnDoc| +2026-03-19 20:20:37.6804|DEBUG|OnDoc| +2026-03-19 20:20:37.6804|DEBUG|OnDoc| +2026-03-19 20:20:37.6804|DEBUG|OnDoc|Generate_Word +2026-03-19 20:20:37.6804|DEBUG|OnDoc|Word2013 +2026-03-19 20:20:37.6804|DEBUG|OnDoc|Word2013 +2026-03-19 20:20:38.2693|DEBUG|OnDoc| +2026-03-19 20:20:38.2787|DEBUG|OnDoc| +2026-03-19 20:20:38.3484|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:20:38.3582|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:20:38.4489|DEBUG|OnDoc| +2026-03-19 20:20:38.4489|DEBUG|OnDoc| +2026-03-19 20:20:38.5307|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:20:38.5411|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:20:39.1081|DEBUG|OnDoc|Generate_Word +2026-03-19 20:20:39.1209|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019925 +2026-03-19 20:20:39.1209|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:20:39.1209|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:20:39.1209|DEBUG|OnDoc| +2026-03-19 20:20:39.1376|DEBUG|OnDoc| +2026-03-19 20:20:39.1376|DEBUG|OnDoc| +2026-03-19 20:20:39.1376|DEBUG|OnDoc| +2026-03-19 20:20:39.1376|DEBUG|OnDoc| +2026-03-19 20:20:39.1376|DEBUG|OnDoc| +2026-03-19 20:20:51.1724|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:20:51.2780|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:20:51.3250|INFO|APIDocLog|Input JSON +2026-03-19 20:20:51.3250|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3250|DEBUG|OnDoc| +2026-03-19 20:20:51.3370|DEBUG|OnDoc| +2026-03-19 20:20:51.3370|DEBUG|OnDoc| +2026-03-19 20:20:51.3370|DEBUG|OnDoc| +2026-03-19 20:20:51.3370|DEBUG|OnDoc| +2026-03-19 20:20:51.3370|DEBUG|OnDoc| +2026-03-19 20:20:51.3370|DEBUG|OnDoc| +2026-03-19 20:20:51.3370|DEBUG|OnDoc| +2026-03-19 20:20:51.3370|DEBUG|OnDoc| +2026-03-19 20:20:51.3370|DEBUG|OnDoc| +2026-03-19 20:20:51.3370|DEBUG|OnDoc| +2026-03-19 20:20:51.3370|DEBUG|OnDoc| +2026-03-19 20:20:51.3370|DEBUG|OnDoc| +2026-03-19 20:20:51.3370|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:20:51.3855|DEBUG|OnDoc| +2026-03-19 20:20:51.3855|DEBUG|OnDoc| +2026-03-19 20:20:51.4206|DEBUG|OnDoc| +2026-03-19 20:20:51.4206|DEBUG|OnDoc| +2026-03-19 20:20:51.4311|DEBUG|OnDoc| +2026-03-19 20:20:51.4311|DEBUG|OnDoc| +2026-03-19 20:20:51.4311|DEBUG|OnDoc| +2026-03-19 20:20:51.4311|DEBUG|OnDoc| +2026-03-19 20:20:51.4639|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:20:51.4639|DEBUG|OnDoc| +2026-03-19 20:20:51.4639|DEBUG|OnDoc| +2026-03-19 20:20:51.4639|DEBUG|OnDoc| +2026-03-19 20:20:51.4639|DEBUG|OnDoc| +2026-03-19 20:20:51.4639|DEBUG|OnDoc| +2026-03-19 20:20:51.4639|DEBUG|OnDoc| +2026-03-19 20:20:51.4639|DEBUG|OnDoc| +2026-03-19 20:20:51.4789|DEBUG|OnDoc| +2026-03-19 20:20:51.4789|DEBUG|OnDoc|Generate_Word +2026-03-19 20:20:51.4789|DEBUG|OnDoc|Word2013 +2026-03-19 20:20:51.4789|DEBUG|OnDoc|Word2013 +2026-03-19 20:20:52.0666|DEBUG|OnDoc| +2026-03-19 20:20:52.0771|DEBUG|OnDoc| +2026-03-19 20:20:52.1486|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:20:52.1584|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:20:52.2475|DEBUG|OnDoc| +2026-03-19 20:20:52.2475|DEBUG|OnDoc| +2026-03-19 20:20:52.3261|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:20:52.3261|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:20:52.9153|DEBUG|OnDoc|Generate_Word +2026-03-19 20:20:52.9153|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019930 +2026-03-19 20:20:52.9153|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:20:52.9153|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:20:52.9153|DEBUG|OnDoc| +2026-03-19 20:20:52.9403|DEBUG|OnDoc| +2026-03-19 20:20:52.9403|DEBUG|OnDoc| +2026-03-19 20:20:52.9403|DEBUG|OnDoc| +2026-03-19 20:20:52.9403|DEBUG|OnDoc| +2026-03-19 20:20:52.9403|DEBUG|OnDoc| +2026-03-19 20:21:22.7931|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:21:22.9041|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:21:22.9477|INFO|APIDocLog|Input JSON +2026-03-19 20:21:22.9477|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:21:22.9477|DEBUG|OnDoc| +2026-03-19 20:21:22.9477|DEBUG|OnDoc| +2026-03-19 20:21:22.9477|DEBUG|OnDoc| +2026-03-19 20:21:22.9477|DEBUG|OnDoc| +2026-03-19 20:21:22.9477|DEBUG|OnDoc| +2026-03-19 20:21:22.9477|DEBUG|OnDoc| +2026-03-19 20:21:22.9477|DEBUG|OnDoc| +2026-03-19 20:21:22.9477|DEBUG|OnDoc| +2026-03-19 20:21:22.9477|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9619|DEBUG|OnDoc| +2026-03-19 20:21:22.9771|DEBUG|OnDoc| +2026-03-19 20:21:22.9771|DEBUG|OnDoc| +2026-03-19 20:21:22.9771|DEBUG|OnDoc| +2026-03-19 20:21:22.9771|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:21:23.0339|DEBUG|OnDoc| +2026-03-19 20:21:23.0339|DEBUG|OnDoc| +2026-03-19 20:21:23.0700|DEBUG|OnDoc| +2026-03-19 20:21:23.0710|DEBUG|OnDoc| +2026-03-19 20:21:23.0710|DEBUG|OnDoc| +2026-03-19 20:21:23.0710|DEBUG|OnDoc| +2026-03-19 20:21:23.0710|DEBUG|OnDoc| +2026-03-19 20:21:23.0710|DEBUG|OnDoc| +2026-03-19 20:21:23.1140|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:21:23.1140|DEBUG|OnDoc| +2026-03-19 20:21:23.1232|DEBUG|OnDoc| +2026-03-19 20:21:23.1232|DEBUG|OnDoc| +2026-03-19 20:21:23.1232|DEBUG|OnDoc| +2026-03-19 20:21:23.1232|DEBUG|OnDoc| +2026-03-19 20:21:23.1232|DEBUG|OnDoc| +2026-03-19 20:21:23.1232|DEBUG|OnDoc| +2026-03-19 20:21:23.1359|DEBUG|OnDoc| +2026-03-19 20:21:23.1359|DEBUG|OnDoc|Generate_Word +2026-03-19 20:21:23.1359|DEBUG|OnDoc|Word2013 +2026-03-19 20:21:23.1359|DEBUG|OnDoc|Word2013 +2026-03-19 20:21:24.1873|DEBUG|OnDoc|Generate_Word +2026-03-19 20:21:24.2005|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019941 +2026-03-19 20:21:24.2005|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:21:24.2005|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:21:24.2005|DEBUG|OnDoc| +2026-03-19 20:21:24.2532|DEBUG|OnDoc| +2026-03-19 20:21:24.2532|DEBUG|OnDoc| +2026-03-19 20:21:24.2532|DEBUG|OnDoc| +2026-03-19 20:21:24.2532|DEBUG|OnDoc| +2026-03-19 20:21:24.2592|DEBUG|OnDoc| +2026-03-19 20:21:35.9076|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:21:36.0151|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:21:36.0607|INFO|APIDocLog|Input JSON +2026-03-19 20:21:36.0607|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:21:36.0607|DEBUG|OnDoc| +2026-03-19 20:21:36.0607|DEBUG|OnDoc| +2026-03-19 20:21:36.0607|DEBUG|OnDoc| +2026-03-19 20:21:36.0607|DEBUG|OnDoc| +2026-03-19 20:21:36.0607|DEBUG|OnDoc| +2026-03-19 20:21:36.0607|DEBUG|OnDoc| +2026-03-19 20:21:36.0607|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0709|DEBUG|OnDoc| +2026-03-19 20:21:36.0865|DEBUG|OnDoc| +2026-03-19 20:21:36.0865|DEBUG|OnDoc| +2026-03-19 20:21:36.0865|DEBUG|OnDoc| +2026-03-19 20:21:36.0865|DEBUG|OnDoc| +2026-03-19 20:21:36.0865|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:21:36.1352|DEBUG|OnDoc| +2026-03-19 20:21:36.1352|DEBUG|OnDoc| +2026-03-19 20:21:36.1720|DEBUG|OnDoc| +2026-03-19 20:21:36.1720|DEBUG|OnDoc| +2026-03-19 20:21:36.1827|DEBUG|OnDoc| +2026-03-19 20:21:36.1827|DEBUG|OnDoc| +2026-03-19 20:21:36.1827|DEBUG|OnDoc| +2026-03-19 20:21:36.1827|DEBUG|OnDoc| +2026-03-19 20:21:36.2183|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:21:36.2183|DEBUG|OnDoc| +2026-03-19 20:21:36.2183|DEBUG|OnDoc| +2026-03-19 20:21:36.2183|DEBUG|OnDoc| +2026-03-19 20:21:36.2276|DEBUG|OnDoc| +2026-03-19 20:21:36.2276|DEBUG|OnDoc| +2026-03-19 20:21:36.2276|DEBUG|OnDoc| +2026-03-19 20:21:36.2276|DEBUG|OnDoc| +2026-03-19 20:21:36.2276|DEBUG|OnDoc| +2026-03-19 20:21:36.2276|DEBUG|OnDoc|Generate_Word +2026-03-19 20:21:36.2492|DEBUG|OnDoc|Word2013 +2026-03-19 20:21:36.2492|DEBUG|OnDoc|Word2013 +2026-03-19 20:21:37.2856|DEBUG|OnDoc|Generate_Word +2026-03-19 20:21:37.2998|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019956 +2026-03-19 20:21:37.2998|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:21:37.2998|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:21:37.2998|DEBUG|OnDoc| +2026-03-19 20:21:37.3174|DEBUG|OnDoc| +2026-03-19 20:21:37.3174|DEBUG|OnDoc| +2026-03-19 20:21:37.3174|DEBUG|OnDoc| +2026-03-19 20:21:37.3174|DEBUG|OnDoc| +2026-03-19 20:21:37.3219|DEBUG|OnDoc| +2026-03-19 20:21:47.2412|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:21:47.3599|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:21:47.4048|INFO|APIDocLog|Input JSON +2026-03-19 20:21:47.4048|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4048|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4148|DEBUG|OnDoc| +2026-03-19 20:21:47.4422|DEBUG|OnDoc| +2026-03-19 20:21:47.4422|DEBUG|OnDoc| +2026-03-19 20:21:47.4513|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:21:47.4921|DEBUG|OnDoc| +2026-03-19 20:21:47.4954|DEBUG|OnDoc| +2026-03-19 20:21:47.5270|DEBUG|OnDoc| +2026-03-19 20:21:47.5270|DEBUG|OnDoc| +2026-03-19 20:21:47.5270|DEBUG|OnDoc| +2026-03-19 20:21:47.5270|DEBUG|OnDoc| +2026-03-19 20:21:47.5270|DEBUG|OnDoc| +2026-03-19 20:21:47.5270|DEBUG|OnDoc| +2026-03-19 20:21:47.5679|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:21:47.5679|DEBUG|OnDoc| +2026-03-19 20:21:47.5737|DEBUG|OnDoc| +2026-03-19 20:21:47.5737|DEBUG|OnDoc| +2026-03-19 20:21:47.5737|DEBUG|OnDoc| +2026-03-19 20:21:47.5737|DEBUG|OnDoc| +2026-03-19 20:21:47.5737|DEBUG|OnDoc| +2026-03-19 20:21:47.5737|DEBUG|OnDoc| +2026-03-19 20:21:47.5737|DEBUG|OnDoc| +2026-03-19 20:21:47.5737|DEBUG|OnDoc|Generate_Word +2026-03-19 20:21:47.5903|DEBUG|OnDoc|Word2013 +2026-03-19 20:21:47.5903|DEBUG|OnDoc|Word2013 +2026-03-19 20:21:48.6277|DEBUG|OnDoc|Generate_Word +2026-03-19 20:21:48.6391|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019964 +2026-03-19 20:21:48.6391|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:21:48.6391|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:21:48.6391|DEBUG|OnDoc| +2026-03-19 20:21:48.6538|DEBUG|OnDoc| +2026-03-19 20:21:48.6538|DEBUG|OnDoc| +2026-03-19 20:21:48.6538|DEBUG|OnDoc| +2026-03-19 20:21:48.6538|DEBUG|OnDoc| +2026-03-19 20:21:48.6538|DEBUG|OnDoc| +2026-03-19 20:22:18.1466|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:22:18.2544|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:22:18.3016|INFO|APIDocLog|Input JSON +2026-03-19 20:22:18.3056|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3056|DEBUG|OnDoc| +2026-03-19 20:22:18.3211|DEBUG|OnDoc| +2026-03-19 20:22:18.3211|DEBUG|OnDoc| +2026-03-19 20:22:18.3211|DEBUG|OnDoc| +2026-03-19 20:22:18.3211|DEBUG|OnDoc| +2026-03-19 20:22:18.3211|DEBUG|OnDoc| +2026-03-19 20:22:18.3211|DEBUG|OnDoc| +2026-03-19 20:22:18.3211|DEBUG|OnDoc| +2026-03-19 20:22:18.3211|DEBUG|OnDoc| +2026-03-19 20:22:18.3211|DEBUG|OnDoc| +2026-03-19 20:22:18.3211|DEBUG|OnDoc| +2026-03-19 20:22:18.3211|DEBUG|OnDoc| +2026-03-19 20:22:18.3211|DEBUG|OnDoc| +2026-03-19 20:22:18.3211|DEBUG|OnDoc| +2026-03-19 20:22:18.3211|DEBUG|OnDoc| +2026-03-19 20:22:18.3366|DEBUG|OnDoc| +2026-03-19 20:22:18.3366|DEBUG|OnDoc| +2026-03-19 20:22:18.3366|DEBUG|OnDoc| +2026-03-19 20:22:18.3366|DEBUG|OnDoc| +2026-03-19 20:22:18.3601|DEBUG|OnDoc| +2026-03-19 20:22:18.3601|DEBUG|OnDoc| +2026-03-19 20:22:18.3768|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:22:18.4235|DEBUG|OnDoc| +2026-03-19 20:22:18.4235|DEBUG|OnDoc| +2026-03-19 20:22:18.4594|DEBUG|OnDoc| +2026-03-19 20:22:18.4594|DEBUG|OnDoc| +2026-03-19 20:22:18.4701|DEBUG|OnDoc| +2026-03-19 20:22:18.4701|DEBUG|OnDoc| +2026-03-19 20:22:18.4701|DEBUG|OnDoc| +2026-03-19 20:22:18.4701|DEBUG|OnDoc| +2026-03-19 20:22:18.5075|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:22:18.5075|DEBUG|OnDoc| +2026-03-19 20:22:18.5153|DEBUG|OnDoc| +2026-03-19 20:22:18.5153|DEBUG|OnDoc| +2026-03-19 20:22:18.5153|DEBUG|OnDoc| +2026-03-19 20:22:18.5153|DEBUG|OnDoc| +2026-03-19 20:22:18.5245|DEBUG|OnDoc| +2026-03-19 20:22:18.5245|DEBUG|OnDoc| +2026-03-19 20:22:18.5245|DEBUG|OnDoc| +2026-03-19 20:22:18.5245|DEBUG|OnDoc|Generate_Word +2026-03-19 20:22:18.5395|DEBUG|OnDoc|Word2013 +2026-03-19 20:22:18.5395|DEBUG|OnDoc|Word2013 +2026-03-19 20:22:39.7410|DEBUG|OnDoc|Generate_Word +2026-03-19 20:22:39.7818|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019972 +2026-03-19 20:22:39.7818|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:22:39.7818|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:22:39.7818|DEBUG|OnDoc| +2026-03-19 20:22:39.7981|DEBUG|OnDoc| +2026-03-19 20:22:39.7981|DEBUG|OnDoc| +2026-03-19 20:22:39.7981|DEBUG|OnDoc| +2026-03-19 20:22:39.7981|DEBUG|OnDoc| +2026-03-19 20:22:39.7981|DEBUG|OnDoc| +2026-03-19 20:31:29.1485|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:31:29.2662|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:31:29.3123|INFO|APIDocLog|Input JSON +2026-03-19 20:31:29.3123|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:31:29.3123|DEBUG|OnDoc| +2026-03-19 20:31:29.3123|DEBUG|OnDoc| +2026-03-19 20:31:29.3123|DEBUG|OnDoc| +2026-03-19 20:31:29.3123|DEBUG|OnDoc| +2026-03-19 20:31:29.3123|DEBUG|OnDoc| +2026-03-19 20:31:29.3123|DEBUG|OnDoc| +2026-03-19 20:31:29.3123|DEBUG|OnDoc| +2026-03-19 20:31:29.3123|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3214|DEBUG|OnDoc| +2026-03-19 20:31:29.3543|DEBUG|OnDoc| +2026-03-19 20:31:29.3543|DEBUG|OnDoc| +2026-03-19 20:31:29.3543|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:31:29.4100|DEBUG|OnDoc| +2026-03-19 20:31:29.4100|DEBUG|OnDoc| +2026-03-19 20:31:29.4444|DEBUG|OnDoc| +2026-03-19 20:31:29.4444|DEBUG|OnDoc| +2026-03-19 20:31:29.4561|DEBUG|OnDoc| +2026-03-19 20:31:29.4561|DEBUG|OnDoc| +2026-03-19 20:31:29.4561|DEBUG|OnDoc| +2026-03-19 20:31:29.4561|DEBUG|OnDoc| +2026-03-19 20:31:29.4869|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:31:29.4869|DEBUG|OnDoc| +2026-03-19 20:31:29.5413|DEBUG|OnDoc| +2026-03-19 20:31:29.5413|DEBUG|OnDoc| +2026-03-19 20:31:29.5413|DEBUG|OnDoc| +2026-03-19 20:31:29.5413|DEBUG|OnDoc| +2026-03-19 20:31:29.5559|DEBUG|OnDoc| +2026-03-19 20:31:29.5559|DEBUG|OnDoc| +2026-03-19 20:31:29.5559|DEBUG|OnDoc| +2026-03-19 20:31:29.5559|DEBUG|OnDoc|Generate_Word +2026-03-19 20:31:29.5742|DEBUG|OnDoc|Word2013 +2026-03-19 20:31:29.5742|DEBUG|OnDoc|Word2013 +2026-03-19 20:32:32.1087|DEBUG|OnDoc|Generate_Word +2026-03-19 20:32:32.1484|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019988 +2026-03-19 20:32:32.1496|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:32:32.1496|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:32:32.1496|DEBUG|OnDoc| +2026-03-19 20:32:32.1496|DEBUG|OnDoc| +2026-03-19 20:32:32.1496|DEBUG|OnDoc| +2026-03-19 20:32:32.1496|DEBUG|OnDoc| +2026-03-19 20:32:32.1496|DEBUG|OnDoc| +2026-03-19 20:32:32.1496|DEBUG|OnDoc| +2026-03-19 20:32:53.2342|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:32:53.3547|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:32:53.4005|INFO|APIDocLog|Input JSON +2026-03-19 20:32:53.4005|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4005|DEBUG|OnDoc| +2026-03-19 20:32:53.4145|DEBUG|OnDoc| +2026-03-19 20:32:53.4145|DEBUG|OnDoc| +2026-03-19 20:32:53.4145|DEBUG|OnDoc| +2026-03-19 20:32:53.4145|DEBUG|OnDoc| +2026-03-19 20:32:53.4145|DEBUG|OnDoc| +2026-03-19 20:32:53.4145|DEBUG|OnDoc| +2026-03-19 20:32:53.4145|DEBUG|OnDoc| +2026-03-19 20:32:53.4145|DEBUG|OnDoc| +2026-03-19 20:32:53.4145|DEBUG|OnDoc| +2026-03-19 20:32:53.4145|DEBUG|OnDoc| +2026-03-19 20:32:53.4145|DEBUG|OnDoc| +2026-03-19 20:32:53.4145|DEBUG|OnDoc| +2026-03-19 20:32:53.4388|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:32:53.4817|DEBUG|OnDoc| +2026-03-19 20:32:53.4817|DEBUG|OnDoc| +2026-03-19 20:32:53.5147|DEBUG|OnDoc| +2026-03-19 20:32:53.5147|DEBUG|OnDoc| +2026-03-19 20:32:53.5252|DEBUG|OnDoc| +2026-03-19 20:32:53.5252|DEBUG|OnDoc| +2026-03-19 20:32:53.5252|DEBUG|OnDoc| +2026-03-19 20:32:53.5252|DEBUG|OnDoc| +2026-03-19 20:32:53.5582|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:32:53.5582|DEBUG|OnDoc| +2026-03-19 20:32:53.5582|DEBUG|OnDoc| +2026-03-19 20:32:53.5582|DEBUG|OnDoc| +2026-03-19 20:32:53.5582|DEBUG|OnDoc| +2026-03-19 20:32:53.5582|DEBUG|OnDoc| +2026-03-19 20:32:53.5582|DEBUG|OnDoc| +2026-03-19 20:32:53.5582|DEBUG|OnDoc| +2026-03-19 20:32:53.5742|DEBUG|OnDoc| +2026-03-19 20:32:53.5742|DEBUG|OnDoc|Generate_Word +2026-03-19 20:32:53.5742|DEBUG|OnDoc|Word2013 +2026-03-19 20:32:53.5742|DEBUG|OnDoc|Word2013 +2026-03-19 20:34:09.0642|DEBUG|OnDoc|Generate_Word +2026-03-19 20:34:09.1043|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000019993 +2026-03-19 20:34:09.1043|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:34:09.1043|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:34:09.1043|DEBUG|OnDoc| +2026-03-19 20:34:09.1240|DEBUG|OnDoc| +2026-03-19 20:34:09.1240|DEBUG|OnDoc| +2026-03-19 20:34:09.1240|DEBUG|OnDoc| +2026-03-19 20:34:09.1240|DEBUG|OnDoc| +2026-03-19 20:34:09.1240|DEBUG|OnDoc| +2026-03-19 20:34:34.1815|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:34:34.2900|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:34:34.3357|INFO|APIDocLog|Input JSON +2026-03-19 20:34:34.3392|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3392|DEBUG|OnDoc| +2026-03-19 20:34:34.3521|DEBUG|OnDoc| +2026-03-19 20:34:34.3521|DEBUG|OnDoc| +2026-03-19 20:34:34.3521|DEBUG|OnDoc| +2026-03-19 20:34:34.3521|DEBUG|OnDoc| +2026-03-19 20:34:34.3521|DEBUG|OnDoc| +2026-03-19 20:34:34.3521|DEBUG|OnDoc| +2026-03-19 20:34:34.3521|DEBUG|OnDoc| +2026-03-19 20:34:34.3521|DEBUG|OnDoc| +2026-03-19 20:34:34.3521|DEBUG|OnDoc| +2026-03-19 20:34:34.3521|DEBUG|OnDoc| +2026-03-19 20:34:34.3521|DEBUG|OnDoc| +2026-03-19 20:34:34.3786|DEBUG|OnDoc| +2026-03-19 20:34:34.3786|DEBUG|OnDoc| +2026-03-19 20:34:34.3885|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:34:34.4327|DEBUG|OnDoc| +2026-03-19 20:34:34.4327|DEBUG|OnDoc| +2026-03-19 20:34:34.4672|DEBUG|OnDoc| +2026-03-19 20:34:34.4672|DEBUG|OnDoc| +2026-03-19 20:34:34.4672|DEBUG|OnDoc| +2026-03-19 20:34:34.4775|DEBUG|OnDoc| +2026-03-19 20:34:34.4775|DEBUG|OnDoc| +2026-03-19 20:34:34.4775|DEBUG|OnDoc| +2026-03-19 20:34:34.5083|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:34:34.5083|DEBUG|OnDoc| +2026-03-19 20:34:34.5083|DEBUG|OnDoc| +2026-03-19 20:34:34.5083|DEBUG|OnDoc| +2026-03-19 20:34:34.5083|DEBUG|OnDoc| +2026-03-19 20:34:34.5083|DEBUG|OnDoc| +2026-03-19 20:34:34.5083|DEBUG|OnDoc| +2026-03-19 20:34:34.5083|DEBUG|OnDoc| +2026-03-19 20:34:34.5239|DEBUG|OnDoc| +2026-03-19 20:34:34.5239|DEBUG|OnDoc|Generate_Word +2026-03-19 20:34:34.5239|DEBUG|OnDoc|Word2013 +2026-03-19 20:34:34.5239|DEBUG|OnDoc|Word2013 +2026-03-19 20:34:45.4802|DEBUG|OnDoc|Generate_Word +2026-03-19 20:34:45.5242|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020008 +2026-03-19 20:34:45.5242|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:34:45.5242|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:34:45.5242|DEBUG|OnDoc| +2026-03-19 20:34:45.5595|DEBUG|OnDoc| +2026-03-19 20:34:45.5595|DEBUG|OnDoc| +2026-03-19 20:34:45.5595|DEBUG|OnDoc| +2026-03-19 20:34:45.5595|DEBUG|OnDoc| +2026-03-19 20:34:45.5595|DEBUG|OnDoc| +2026-03-19 20:35:20.4003|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:35:20.5116|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:35:20.5570|INFO|APIDocLog|Input JSON +2026-03-19 20:35:20.5570|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5570|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.5711|DEBUG|OnDoc| +2026-03-19 20:35:20.6065|DEBUG|OnDoc| +2026-03-19 20:35:20.6065|DEBUG|OnDoc| +2026-03-19 20:35:20.6065|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:35:20.6602|DEBUG|OnDoc| +2026-03-19 20:35:20.6602|DEBUG|OnDoc| +2026-03-19 20:35:20.6930|DEBUG|OnDoc| +2026-03-19 20:35:20.6930|DEBUG|OnDoc| +2026-03-19 20:35:20.7048|DEBUG|OnDoc| +2026-03-19 20:35:20.7048|DEBUG|OnDoc| +2026-03-19 20:35:20.7048|DEBUG|OnDoc| +2026-03-19 20:35:20.7048|DEBUG|OnDoc| +2026-03-19 20:35:20.7382|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:35:20.7382|DEBUG|OnDoc| +2026-03-19 20:35:20.7444|DEBUG|OnDoc| +2026-03-19 20:35:20.7444|DEBUG|OnDoc| +2026-03-19 20:35:20.7444|DEBUG|OnDoc| +2026-03-19 20:35:20.7444|DEBUG|OnDoc| +2026-03-19 20:35:20.7444|DEBUG|OnDoc| +2026-03-19 20:35:20.7444|DEBUG|OnDoc| +2026-03-19 20:35:20.7444|DEBUG|OnDoc| +2026-03-19 20:35:20.7444|DEBUG|OnDoc|Generate_Word +2026-03-19 20:35:20.7638|DEBUG|OnDoc|Word2013 +2026-03-19 20:35:20.7638|DEBUG|OnDoc|Word2013 +2026-03-19 20:35:29.3305|DEBUG|OnDoc| +2026-03-19 20:35:29.3661|DEBUG|OnDoc| +2026-03-19 20:35:29.4368|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:35:29.4461|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:35:29.5351|DEBUG|OnDoc| +2026-03-19 20:35:29.5450|DEBUG|OnDoc| +2026-03-19 20:35:29.6187|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:35:29.6187|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:35:30.2229|DEBUG|OnDoc|Generate_Word +2026-03-19 20:35:30.2361|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020013 +2026-03-19 20:35:30.2361|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:35:30.2361|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:35:30.2361|DEBUG|OnDoc| +2026-03-19 20:35:30.2514|DEBUG|OnDoc| +2026-03-19 20:35:30.2514|DEBUG|OnDoc| +2026-03-19 20:35:30.2514|DEBUG|OnDoc| +2026-03-19 20:35:30.2514|DEBUG|OnDoc| +2026-03-19 20:35:30.2514|DEBUG|OnDoc| +2026-03-19 20:35:49.6677|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:35:49.7696|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:35:49.8073|INFO|APIDocLog|Input JSON +2026-03-19 20:35:49.8073|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8073|DEBUG|OnDoc| +2026-03-19 20:35:49.8208|DEBUG|OnDoc| +2026-03-19 20:35:49.8208|DEBUG|OnDoc| +2026-03-19 20:35:49.8208|DEBUG|OnDoc| +2026-03-19 20:35:49.8208|DEBUG|OnDoc| +2026-03-19 20:35:49.8208|DEBUG|OnDoc| +2026-03-19 20:35:49.8208|DEBUG|OnDoc| +2026-03-19 20:35:49.8208|DEBUG|OnDoc| +2026-03-19 20:35:49.8208|DEBUG|OnDoc| +2026-03-19 20:35:49.8208|DEBUG|OnDoc| +2026-03-19 20:35:49.8208|DEBUG|OnDoc| +2026-03-19 20:35:49.8208|DEBUG|OnDoc| +2026-03-19 20:35:49.8208|DEBUG|OnDoc| +2026-03-19 20:35:49.8208|DEBUG|OnDoc| +2026-03-19 20:35:49.8208|DEBUG|OnDoc| +2026-03-19 20:35:49.8383|DEBUG|OnDoc| +2026-03-19 20:35:49.8383|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:35:49.8894|DEBUG|OnDoc| +2026-03-19 20:35:49.8894|DEBUG|OnDoc| +2026-03-19 20:35:49.9220|DEBUG|OnDoc| +2026-03-19 20:35:49.9220|DEBUG|OnDoc| +2026-03-19 20:35:49.9307|DEBUG|OnDoc| +2026-03-19 20:35:49.9307|DEBUG|OnDoc| +2026-03-19 20:35:49.9307|DEBUG|OnDoc| +2026-03-19 20:35:49.9307|DEBUG|OnDoc| +2026-03-19 20:35:49.9593|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:35:49.9593|DEBUG|OnDoc| +2026-03-19 20:35:49.9674|DEBUG|OnDoc| +2026-03-19 20:35:49.9674|DEBUG|OnDoc| +2026-03-19 20:35:49.9674|DEBUG|OnDoc| +2026-03-19 20:35:49.9674|DEBUG|OnDoc| +2026-03-19 20:35:49.9674|DEBUG|OnDoc| +2026-03-19 20:35:49.9674|DEBUG|OnDoc| +2026-03-19 20:35:49.9799|DEBUG|OnDoc| +2026-03-19 20:35:49.9799|DEBUG|OnDoc|Generate_Word +2026-03-19 20:35:49.9799|DEBUG|OnDoc|Word2013 +2026-03-19 20:35:49.9799|DEBUG|OnDoc|Word2013 +2026-03-19 20:36:04.6422|DEBUG|OnDoc|Generate_Word +2026-03-19 20:36:04.6544|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020029 +2026-03-19 20:36:04.6544|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:36:04.6544|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:36:04.6544|DEBUG|OnDoc| +2026-03-19 20:36:04.6729|DEBUG|OnDoc| +2026-03-19 20:36:04.6729|DEBUG|OnDoc| +2026-03-19 20:36:04.6729|DEBUG|OnDoc| +2026-03-19 20:36:04.6729|DEBUG|OnDoc| +2026-03-19 20:36:04.6729|DEBUG|OnDoc| +2026-03-19 20:36:24.1053|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:36:24.2160|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:36:24.2625|INFO|APIDocLog|Input JSON +2026-03-19 20:36:24.2625|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2625|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2743|DEBUG|OnDoc| +2026-03-19 20:36:24.2924|DEBUG|OnDoc| +2026-03-19 20:36:24.2924|DEBUG|OnDoc| +2026-03-19 20:36:24.2924|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:36:24.3481|DEBUG|OnDoc| +2026-03-19 20:36:24.3481|DEBUG|OnDoc| +2026-03-19 20:36:24.3811|DEBUG|OnDoc| +2026-03-19 20:36:24.3811|DEBUG|OnDoc| +2026-03-19 20:36:24.3897|DEBUG|OnDoc| +2026-03-19 20:36:24.3897|DEBUG|OnDoc| +2026-03-19 20:36:24.3897|DEBUG|OnDoc| +2026-03-19 20:36:24.3897|DEBUG|OnDoc| +2026-03-19 20:36:24.4211|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:36:24.4211|DEBUG|OnDoc| +2026-03-19 20:36:24.4211|DEBUG|OnDoc| +2026-03-19 20:36:24.4211|DEBUG|OnDoc| +2026-03-19 20:36:24.4211|DEBUG|OnDoc| +2026-03-19 20:36:24.4211|DEBUG|OnDoc| +2026-03-19 20:36:24.4375|DEBUG|OnDoc| +2026-03-19 20:36:24.4375|DEBUG|OnDoc| +2026-03-19 20:36:24.4375|DEBUG|OnDoc| +2026-03-19 20:36:24.4375|DEBUG|OnDoc|Generate_Word +2026-03-19 20:36:24.4496|DEBUG|OnDoc|Word2013 +2026-03-19 20:36:24.4496|DEBUG|OnDoc|Word2013 +2026-03-19 20:36:37.8651|DEBUG|OnDoc| +2026-03-19 20:36:37.8681|DEBUG|OnDoc| +2026-03-19 20:36:37.9392|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:36:37.9489|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:36:38.0383|DEBUG|OnDoc| +2026-03-19 20:36:38.0482|DEBUG|OnDoc| +2026-03-19 20:36:38.1183|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:36:38.1183|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:36:38.7268|DEBUG|OnDoc|Generate_Word +2026-03-19 20:36:38.7396|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020037 +2026-03-19 20:36:38.7396|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:36:38.7396|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:36:38.7396|DEBUG|OnDoc| +2026-03-19 20:36:38.7563|DEBUG|OnDoc| +2026-03-19 20:36:38.7563|DEBUG|OnDoc| +2026-03-19 20:36:38.7563|DEBUG|OnDoc| +2026-03-19 20:36:38.7583|DEBUG|OnDoc| +2026-03-19 20:36:38.7583|DEBUG|OnDoc| +2026-03-19 20:36:57.4143|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:36:57.5365|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:36:57.5830|INFO|APIDocLog|Input JSON +2026-03-19 20:36:57.5830|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:36:57.5830|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.5864|DEBUG|OnDoc| +2026-03-19 20:36:57.6234|DEBUG|OnDoc| +2026-03-19 20:36:57.6234|DEBUG|OnDoc| +2026-03-19 20:36:57.6234|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:36:57.6745|DEBUG|OnDoc| +2026-03-19 20:36:57.6745|DEBUG|OnDoc| +2026-03-19 20:36:57.7076|DEBUG|OnDoc| +2026-03-19 20:36:57.7076|DEBUG|OnDoc| +2026-03-19 20:36:57.7184|DEBUG|OnDoc| +2026-03-19 20:36:57.7184|DEBUG|OnDoc| +2026-03-19 20:36:57.7184|DEBUG|OnDoc| +2026-03-19 20:36:57.7184|DEBUG|OnDoc| +2026-03-19 20:36:57.7502|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:36:57.7502|DEBUG|OnDoc| +2026-03-19 20:36:57.7502|DEBUG|OnDoc| +2026-03-19 20:36:57.7502|DEBUG|OnDoc| +2026-03-19 20:36:57.7502|DEBUG|OnDoc| +2026-03-19 20:36:57.7502|DEBUG|OnDoc| +2026-03-19 20:36:57.7623|DEBUG|OnDoc| +2026-03-19 20:36:57.7623|DEBUG|OnDoc| +2026-03-19 20:36:57.7623|DEBUG|OnDoc| +2026-03-19 20:36:57.7623|DEBUG|OnDoc|Generate_Word +2026-03-19 20:36:57.7623|DEBUG|OnDoc|Word2013 +2026-03-19 20:36:57.7744|DEBUG|OnDoc|Word2013 +2026-03-19 20:37:07.8557|DEBUG|OnDoc| +2026-03-19 20:37:07.8912|DEBUG|OnDoc| +2026-03-19 20:37:07.9623|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:37:07.9623|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:37:08.0705|DEBUG|OnDoc| +2026-03-19 20:37:08.0787|DEBUG|OnDoc| +2026-03-19 20:37:08.1482|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:37:08.1573|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:37:08.7554|DEBUG|OnDoc|Generate_Word +2026-03-19 20:37:08.7666|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020045 +2026-03-19 20:37:08.7666|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:37:08.7666|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:37:08.7666|DEBUG|OnDoc| +2026-03-19 20:37:08.7790|DEBUG|OnDoc| +2026-03-19 20:37:08.7790|DEBUG|OnDoc| +2026-03-19 20:37:08.7790|DEBUG|OnDoc| +2026-03-19 20:37:08.7790|DEBUG|OnDoc| +2026-03-19 20:37:08.7790|DEBUG|OnDoc| +2026-03-19 20:37:20.2093|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:37:20.3305|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:37:20.3755|INFO|APIDocLog|Input JSON +2026-03-19 20:37:20.3755|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:37:20.3755|DEBUG|OnDoc| +2026-03-19 20:37:20.3755|DEBUG|OnDoc| +2026-03-19 20:37:20.3755|DEBUG|OnDoc| +2026-03-19 20:37:20.3755|DEBUG|OnDoc| +2026-03-19 20:37:20.3755|DEBUG|OnDoc| +2026-03-19 20:37:20.3755|DEBUG|OnDoc| +2026-03-19 20:37:20.3755|DEBUG|OnDoc| +2026-03-19 20:37:20.3755|DEBUG|OnDoc| +2026-03-19 20:37:20.3755|DEBUG|OnDoc| +2026-03-19 20:37:20.3755|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.3842|DEBUG|OnDoc| +2026-03-19 20:37:20.4056|DEBUG|OnDoc| +2026-03-19 20:37:20.4056|DEBUG|OnDoc| +2026-03-19 20:37:20.4056|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:37:20.4575|DEBUG|OnDoc| +2026-03-19 20:37:20.4575|DEBUG|OnDoc| +2026-03-19 20:37:20.4928|DEBUG|OnDoc| +2026-03-19 20:37:20.4928|DEBUG|OnDoc| +2026-03-19 20:37:20.4928|DEBUG|OnDoc| +2026-03-19 20:37:20.4928|DEBUG|OnDoc| +2026-03-19 20:37:20.4928|DEBUG|OnDoc| +2026-03-19 20:37:20.4928|DEBUG|OnDoc| +2026-03-19 20:37:20.5361|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:37:20.5361|DEBUG|OnDoc| +2026-03-19 20:37:20.5457|DEBUG|OnDoc| +2026-03-19 20:37:20.5457|DEBUG|OnDoc| +2026-03-19 20:37:20.5457|DEBUG|OnDoc| +2026-03-19 20:37:20.5457|DEBUG|OnDoc| +2026-03-19 20:37:20.5457|DEBUG|OnDoc| +2026-03-19 20:37:20.5457|DEBUG|OnDoc| +2026-03-19 20:37:20.5556|DEBUG|OnDoc| +2026-03-19 20:37:20.5556|DEBUG|OnDoc|Generate_Word +2026-03-19 20:37:20.5556|DEBUG|OnDoc|Word2013 +2026-03-19 20:37:20.5556|DEBUG|OnDoc|Word2013 +2026-03-19 20:37:31.8565|DEBUG|OnDoc| +2026-03-19 20:37:31.8917|DEBUG|OnDoc| +2026-03-19 20:37:31.9628|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:37:31.9628|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:37:32.0692|DEBUG|OnDoc| +2026-03-19 20:37:32.0790|DEBUG|OnDoc| +2026-03-19 20:37:32.1493|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:37:32.1493|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:37:32.8014|DEBUG|OnDoc|Generate_Word +2026-03-19 20:37:32.8139|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020050 +2026-03-19 20:37:32.8139|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:37:32.8139|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:37:32.8139|DEBUG|OnDoc| +2026-03-19 20:37:32.8310|DEBUG|OnDoc| +2026-03-19 20:37:32.8310|DEBUG|OnDoc| +2026-03-19 20:37:32.8310|DEBUG|OnDoc| +2026-03-19 20:37:32.8310|DEBUG|OnDoc| +2026-03-19 20:37:32.8310|DEBUG|OnDoc| +2026-03-19 20:37:32.9271|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:37:32.9981|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:37:33.0413|INFO|APIDocLog|Input JSON +2026-03-19 20:37:33.0413|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0413|DEBUG|OnDoc| +2026-03-19 20:37:33.0560|DEBUG|OnDoc| +2026-03-19 20:37:33.0560|DEBUG|OnDoc| +2026-03-19 20:37:33.0560|DEBUG|OnDoc| +2026-03-19 20:37:33.0560|DEBUG|OnDoc| +2026-03-19 20:37:33.0560|DEBUG|OnDoc| +2026-03-19 20:37:33.0560|DEBUG|OnDoc| +2026-03-19 20:37:33.0560|DEBUG|OnDoc| +2026-03-19 20:37:33.0560|DEBUG|OnDoc| +2026-03-19 20:37:33.0560|DEBUG|OnDoc| +2026-03-19 20:37:33.0560|DEBUG|OnDoc| +2026-03-19 20:37:33.0560|DEBUG|OnDoc| +2026-03-19 20:37:33.0560|DEBUG|OnDoc| +2026-03-19 20:37:33.0709|DEBUG|OnDoc| +2026-03-19 20:37:33.0709|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:37:33.1224|DEBUG|OnDoc| +2026-03-19 20:37:33.1224|DEBUG|OnDoc| +2026-03-19 20:37:33.1571|DEBUG|OnDoc| +2026-03-19 20:37:33.1571|DEBUG|OnDoc| +2026-03-19 20:37:33.1662|DEBUG|OnDoc| +2026-03-19 20:37:33.1662|DEBUG|OnDoc| +2026-03-19 20:37:33.1662|DEBUG|OnDoc| +2026-03-19 20:37:33.1662|DEBUG|OnDoc| +2026-03-19 20:37:33.1983|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:37:33.1983|DEBUG|OnDoc| +2026-03-19 20:37:33.1983|DEBUG|OnDoc| +2026-03-19 20:37:33.1983|DEBUG|OnDoc| +2026-03-19 20:37:33.1983|DEBUG|OnDoc| +2026-03-19 20:37:33.1983|DEBUG|OnDoc| +2026-03-19 20:37:33.2117|DEBUG|OnDoc| +2026-03-19 20:37:33.2117|DEBUG|OnDoc| +2026-03-19 20:37:33.2117|DEBUG|OnDoc| +2026-03-19 20:37:33.2117|DEBUG|OnDoc|Generate_Word +2026-03-19 20:37:33.2117|DEBUG|OnDoc|Word2013 +2026-03-19 20:37:33.2117|DEBUG|OnDoc|Word2013 +2026-03-19 20:37:40.2157|DEBUG|OnDoc| +2026-03-19 20:37:40.2514|DEBUG|OnDoc| +2026-03-19 20:37:40.3227|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:37:40.3227|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:37:40.4218|DEBUG|OnDoc| +2026-03-19 20:37:40.4323|DEBUG|OnDoc| +2026-03-19 20:37:40.5023|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:37:40.5119|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:37:41.1079|DEBUG|OnDoc|Generate_Word +2026-03-19 20:37:41.1194|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020061 +2026-03-19 20:37:41.1194|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:37:41.1194|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:37:41.1194|DEBUG|OnDoc| +2026-03-19 20:37:41.1402|DEBUG|OnDoc| +2026-03-19 20:37:41.1402|DEBUG|OnDoc| +2026-03-19 20:37:41.1402|DEBUG|OnDoc| +2026-03-19 20:37:41.1402|DEBUG|OnDoc| +2026-03-19 20:37:41.1402|DEBUG|OnDoc| +2026-03-19 20:37:41.2249|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:37:41.2951|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:37:41.3339|INFO|APIDocLog|Input JSON +2026-03-19 20:37:41.3366|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3366|DEBUG|OnDoc| +2026-03-19 20:37:41.3522|DEBUG|OnDoc| +2026-03-19 20:37:41.3522|DEBUG|OnDoc| +2026-03-19 20:37:41.3522|DEBUG|OnDoc| +2026-03-19 20:37:41.3522|DEBUG|OnDoc| +2026-03-19 20:37:41.3522|DEBUG|OnDoc| +2026-03-19 20:37:41.3522|DEBUG|OnDoc| +2026-03-19 20:37:41.3522|DEBUG|OnDoc| +2026-03-19 20:37:41.3728|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:37:41.4184|DEBUG|OnDoc| +2026-03-19 20:37:41.4184|DEBUG|OnDoc| +2026-03-19 20:37:41.4539|DEBUG|OnDoc| +2026-03-19 20:37:41.4539|DEBUG|OnDoc| +2026-03-19 20:37:41.4639|DEBUG|OnDoc| +2026-03-19 20:37:41.4639|DEBUG|OnDoc| +2026-03-19 20:37:41.4639|DEBUG|OnDoc| +2026-03-19 20:37:41.4639|DEBUG|OnDoc| +2026-03-19 20:37:41.4959|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:37:41.4959|DEBUG|OnDoc| +2026-03-19 20:37:41.4959|DEBUG|OnDoc| +2026-03-19 20:37:41.4959|DEBUG|OnDoc| +2026-03-19 20:37:41.4959|DEBUG|OnDoc| +2026-03-19 20:37:41.4959|DEBUG|OnDoc| +2026-03-19 20:37:41.5097|DEBUG|OnDoc| +2026-03-19 20:37:41.5097|DEBUG|OnDoc| +2026-03-19 20:37:41.5097|DEBUG|OnDoc| +2026-03-19 20:37:41.5097|DEBUG|OnDoc|Generate_Word +2026-03-19 20:37:41.5097|DEBUG|OnDoc|Word2013 +2026-03-19 20:37:41.5097|DEBUG|OnDoc|Word2013 +2026-03-19 20:37:48.3833|DEBUG|OnDoc| +2026-03-19 20:37:48.4196|DEBUG|OnDoc| +2026-03-19 20:37:48.4909|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:37:48.5000|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:37:48.5873|DEBUG|OnDoc| +2026-03-19 20:37:48.5873|DEBUG|OnDoc| +2026-03-19 20:37:48.6674|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:37:48.6674|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:37:49.2728|DEBUG|OnDoc|Generate_Word +2026-03-19 20:37:49.2848|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020076 +2026-03-19 20:37:49.2848|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:37:49.2848|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:37:49.2848|DEBUG|OnDoc| +2026-03-19 20:37:49.3003|DEBUG|OnDoc| +2026-03-19 20:37:49.3003|DEBUG|OnDoc| +2026-03-19 20:37:49.3003|DEBUG|OnDoc| +2026-03-19 20:37:49.3003|DEBUG|OnDoc| +2026-03-19 20:37:49.3057|DEBUG|OnDoc| +2026-03-19 20:37:59.4406|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:37:59.5427|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:37:59.5810|INFO|APIDocLog|Input JSON +2026-03-19 20:37:59.5810|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:37:59.5810|DEBUG|OnDoc| +2026-03-19 20:37:59.5810|DEBUG|OnDoc| +2026-03-19 20:37:59.5810|DEBUG|OnDoc| +2026-03-19 20:37:59.5810|DEBUG|OnDoc| +2026-03-19 20:37:59.5810|DEBUG|OnDoc| +2026-03-19 20:37:59.5810|DEBUG|OnDoc| +2026-03-19 20:37:59.5810|DEBUG|OnDoc| +2026-03-19 20:37:59.5810|DEBUG|OnDoc| +2026-03-19 20:37:59.5810|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.5873|DEBUG|OnDoc| +2026-03-19 20:37:59.6120|DEBUG|OnDoc| +2026-03-19 20:37:59.6120|DEBUG|OnDoc| +2026-03-19 20:37:59.6223|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:37:59.6644|DEBUG|OnDoc| +2026-03-19 20:37:59.6665|DEBUG|OnDoc| +2026-03-19 20:37:59.6979|DEBUG|OnDoc| +2026-03-19 20:37:59.6979|DEBUG|OnDoc| +2026-03-19 20:37:59.6979|DEBUG|OnDoc| +2026-03-19 20:37:59.6979|DEBUG|OnDoc| +2026-03-19 20:37:59.6979|DEBUG|OnDoc| +2026-03-19 20:37:59.6979|DEBUG|OnDoc| +2026-03-19 20:37:59.7370|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:37:59.7370|DEBUG|OnDoc| +2026-03-19 20:37:59.7431|DEBUG|OnDoc| +2026-03-19 20:37:59.7431|DEBUG|OnDoc| +2026-03-19 20:37:59.7431|DEBUG|OnDoc| +2026-03-19 20:37:59.7431|DEBUG|OnDoc| +2026-03-19 20:37:59.7431|DEBUG|OnDoc| +2026-03-19 20:37:59.7431|DEBUG|OnDoc| +2026-03-19 20:37:59.7431|DEBUG|OnDoc| +2026-03-19 20:37:59.7431|DEBUG|OnDoc|Generate_Word +2026-03-19 20:37:59.7615|DEBUG|OnDoc|Word2013 +2026-03-19 20:37:59.7615|DEBUG|OnDoc|Word2013 +2026-03-19 20:38:04.6149|DEBUG|OnDoc| +2026-03-19 20:38:04.6502|DEBUG|OnDoc| +2026-03-19 20:38:04.7226|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:38:04.7321|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:38:04.8207|DEBUG|OnDoc| +2026-03-19 20:38:04.8207|DEBUG|OnDoc| +2026-03-19 20:38:04.8993|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:38:04.8993|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:38:05.6189|DEBUG|OnDoc|Generate_Word +2026-03-19 20:38:05.6355|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020084 +2026-03-19 20:38:05.6355|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:38:05.6355|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:38:05.6355|DEBUG|OnDoc| +2026-03-19 20:38:05.6496|DEBUG|OnDoc| +2026-03-19 20:38:05.6496|DEBUG|OnDoc| +2026-03-19 20:38:05.6496|DEBUG|OnDoc| +2026-03-19 20:38:05.6496|DEBUG|OnDoc| +2026-03-19 20:38:05.6496|DEBUG|OnDoc| +2026-03-19 20:38:30.7652|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:38:30.8706|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:38:30.9161|INFO|APIDocLog|Input JSON +2026-03-19 20:38:30.9161|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9161|DEBUG|OnDoc| +2026-03-19 20:38:30.9304|DEBUG|OnDoc| +2026-03-19 20:38:30.9304|DEBUG|OnDoc| +2026-03-19 20:38:30.9304|DEBUG|OnDoc| +2026-03-19 20:38:30.9304|DEBUG|OnDoc| +2026-03-19 20:38:30.9304|DEBUG|OnDoc| +2026-03-19 20:38:30.9304|DEBUG|OnDoc| +2026-03-19 20:38:30.9304|DEBUG|OnDoc| +2026-03-19 20:38:30.9304|DEBUG|OnDoc| +2026-03-19 20:38:30.9304|DEBUG|OnDoc| +2026-03-19 20:38:30.9304|DEBUG|OnDoc| +2026-03-19 20:38:30.9304|DEBUG|OnDoc| +2026-03-19 20:38:30.9304|DEBUG|OnDoc| +2026-03-19 20:38:30.9304|DEBUG|OnDoc| +2026-03-19 20:38:30.9465|DEBUG|OnDoc| +2026-03-19 20:38:30.9465|DEBUG|OnDoc| +2026-03-19 20:38:30.9465|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:38:30.9989|DEBUG|OnDoc| +2026-03-19 20:38:30.9989|DEBUG|OnDoc| +2026-03-19 20:38:31.0327|DEBUG|OnDoc| +2026-03-19 20:38:31.0327|DEBUG|OnDoc| +2026-03-19 20:38:31.0433|DEBUG|OnDoc| +2026-03-19 20:38:31.0433|DEBUG|OnDoc| +2026-03-19 20:38:31.0433|DEBUG|OnDoc| +2026-03-19 20:38:31.0433|DEBUG|OnDoc| +2026-03-19 20:38:31.0744|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:38:31.0744|DEBUG|OnDoc| +2026-03-19 20:38:31.0744|DEBUG|OnDoc| +2026-03-19 20:38:31.0744|DEBUG|OnDoc| +2026-03-19 20:38:31.0744|DEBUG|OnDoc| +2026-03-19 20:38:31.0744|DEBUG|OnDoc| +2026-03-19 20:38:31.0901|DEBUG|OnDoc| +2026-03-19 20:38:31.0901|DEBUG|OnDoc| +2026-03-19 20:38:31.0901|DEBUG|OnDoc| +2026-03-19 20:38:31.0901|DEBUG|OnDoc|Generate_Word +2026-03-19 20:38:31.0901|DEBUG|OnDoc|Word2013 +2026-03-19 20:38:31.1026|DEBUG|OnDoc|Word2013 +2026-03-19 20:38:37.2522|DEBUG|OnDoc| +2026-03-19 20:38:37.2882|DEBUG|OnDoc| +2026-03-19 20:38:37.3802|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:38:37.3903|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:38:37.5092|DEBUG|OnDoc| +2026-03-19 20:38:37.5092|DEBUG|OnDoc| +2026-03-19 20:38:37.6169|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:38:37.6358|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:38:38.2762|DEBUG|OnDoc|Generate_Word +2026-03-19 20:38:38.2762|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020092 +2026-03-19 20:38:38.2762|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:38:38.2907|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:38:38.2907|DEBUG|OnDoc| +2026-03-19 20:38:38.2907|DEBUG|OnDoc| +2026-03-19 20:38:38.3057|DEBUG|OnDoc| +2026-03-19 20:38:38.3057|DEBUG|OnDoc| +2026-03-19 20:38:38.3057|DEBUG|OnDoc| +2026-03-19 20:38:38.3057|DEBUG|OnDoc| +2026-03-19 20:38:52.6298|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:38:52.7527|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:38:52.8046|INFO|APIDocLog|Input JSON +2026-03-19 20:38:52.8066|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8066|DEBUG|OnDoc| +2026-03-19 20:38:52.8208|DEBUG|OnDoc| +2026-03-19 20:38:52.8208|DEBUG|OnDoc| +2026-03-19 20:38:52.8208|DEBUG|OnDoc| +2026-03-19 20:38:52.8208|DEBUG|OnDoc| +2026-03-19 20:38:52.8424|DEBUG|OnDoc| +2026-03-19 20:38:52.8424|DEBUG|OnDoc| +2026-03-19 20:38:52.8424|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:38:52.8949|DEBUG|OnDoc| +2026-03-19 20:38:52.8949|DEBUG|OnDoc| +2026-03-19 20:38:52.9367|DEBUG|OnDoc| +2026-03-19 20:38:52.9367|DEBUG|OnDoc| +2026-03-19 20:38:52.9367|DEBUG|OnDoc| +2026-03-19 20:38:52.9462|DEBUG|OnDoc| +2026-03-19 20:38:52.9462|DEBUG|OnDoc| +2026-03-19 20:38:52.9462|DEBUG|OnDoc| +2026-03-19 20:38:52.9853|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:38:52.9853|DEBUG|OnDoc| +2026-03-19 20:38:52.9953|DEBUG|OnDoc| +2026-03-19 20:38:52.9953|DEBUG|OnDoc| +2026-03-19 20:38:52.9953|DEBUG|OnDoc| +2026-03-19 20:38:52.9953|DEBUG|OnDoc| +2026-03-19 20:38:52.9953|DEBUG|OnDoc| +2026-03-19 20:38:52.9953|DEBUG|OnDoc| +2026-03-19 20:38:52.9953|DEBUG|OnDoc| +2026-03-19 20:38:52.9953|DEBUG|OnDoc|Generate_Word +2026-03-19 20:38:53.0118|DEBUG|OnDoc|Word2013 +2026-03-19 20:38:53.0118|DEBUG|OnDoc|Word2013 +2026-03-19 20:38:57.5005|DEBUG|OnDoc| +2026-03-19 20:38:57.5363|DEBUG|OnDoc| +2026-03-19 20:38:57.6314|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:38:57.6405|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:38:57.7510|DEBUG|OnDoc| +2026-03-19 20:38:57.7607|DEBUG|OnDoc| +2026-03-19 20:38:57.8566|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:38:57.8566|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:38:58.4798|DEBUG|OnDoc|Generate_Word +2026-03-19 20:38:58.4943|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020100 +2026-03-19 20:38:58.4943|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:38:58.4943|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:38:58.4943|DEBUG|OnDoc| +2026-03-19 20:38:58.5091|DEBUG|OnDoc| +2026-03-19 20:38:58.5091|DEBUG|OnDoc| +2026-03-19 20:38:58.5091|DEBUG|OnDoc| +2026-03-19 20:38:58.5091|DEBUG|OnDoc| +2026-03-19 20:38:58.5091|DEBUG|OnDoc| +2026-03-19 20:39:12.2397|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:39:12.3712|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:39:12.4243|INFO|APIDocLog|Input JSON +2026-03-19 20:39:12.4243|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:39:12.4243|DEBUG|OnDoc| +2026-03-19 20:39:12.4243|DEBUG|OnDoc| +2026-03-19 20:39:12.4243|DEBUG|OnDoc| +2026-03-19 20:39:12.4243|DEBUG|OnDoc| +2026-03-19 20:39:12.4243|DEBUG|OnDoc| +2026-03-19 20:39:12.4243|DEBUG|OnDoc| +2026-03-19 20:39:12.4243|DEBUG|OnDoc| +2026-03-19 20:39:12.4243|DEBUG|OnDoc| +2026-03-19 20:39:12.4243|DEBUG|OnDoc| +2026-03-19 20:39:12.4243|DEBUG|OnDoc| +2026-03-19 20:39:12.4243|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4305|DEBUG|OnDoc| +2026-03-19 20:39:12.4616|DEBUG|OnDoc| +2026-03-19 20:39:12.4616|DEBUG|OnDoc| +2026-03-19 20:39:12.4616|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:39:12.5153|DEBUG|OnDoc| +2026-03-19 20:39:12.5153|DEBUG|OnDoc| +2026-03-19 20:39:12.5574|DEBUG|OnDoc| +2026-03-19 20:39:12.5574|DEBUG|OnDoc| +2026-03-19 20:39:12.5574|DEBUG|OnDoc| +2026-03-19 20:39:12.5574|DEBUG|OnDoc| +2026-03-19 20:39:12.5574|DEBUG|OnDoc| +2026-03-19 20:39:12.5574|DEBUG|OnDoc| +2026-03-19 20:39:12.6073|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:39:12.6073|DEBUG|OnDoc| +2026-03-19 20:39:12.6542|DEBUG|OnDoc| +2026-03-19 20:39:12.6542|DEBUG|OnDoc| +2026-03-19 20:39:12.6542|DEBUG|OnDoc| +2026-03-19 20:39:12.6542|DEBUG|OnDoc| +2026-03-19 20:39:12.6689|DEBUG|OnDoc| +2026-03-19 20:39:12.6689|DEBUG|OnDoc| +2026-03-19 20:39:12.6689|DEBUG|OnDoc| +2026-03-19 20:39:12.6803|DEBUG|OnDoc|Generate_Word +2026-03-19 20:39:12.6803|DEBUG|OnDoc|Word2013 +2026-03-19 20:39:12.6803|DEBUG|OnDoc|Word2013 +2026-03-19 20:39:17.8337|DEBUG|OnDoc| +2026-03-19 20:39:17.8699|DEBUG|OnDoc| +2026-03-19 20:39:17.9601|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:39:17.9701|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:39:18.0788|DEBUG|OnDoc| +2026-03-19 20:39:18.0888|DEBUG|OnDoc| +2026-03-19 20:39:18.1799|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:39:18.1880|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:39:18.7899|DEBUG|OnDoc|Generate_Word +2026-03-19 20:39:18.7899|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020111 +2026-03-19 20:39:18.7899|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:39:18.7899|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:39:18.7899|DEBUG|OnDoc| +2026-03-19 20:39:18.8185|DEBUG|OnDoc| +2026-03-19 20:39:18.8185|DEBUG|OnDoc| +2026-03-19 20:39:18.8185|DEBUG|OnDoc| +2026-03-19 20:39:18.8185|DEBUG|OnDoc| +2026-03-19 20:39:18.8185|DEBUG|OnDoc| +2026-03-19 20:39:54.7393|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:39:54.8569|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:39:54.9093|INFO|APIDocLog|Input JSON +2026-03-19 20:39:54.9093|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:39:54.9093|DEBUG|OnDoc| +2026-03-19 20:39:54.9093|DEBUG|OnDoc| +2026-03-19 20:39:54.9093|DEBUG|OnDoc| +2026-03-19 20:39:54.9093|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9153|DEBUG|OnDoc| +2026-03-19 20:39:54.9498|DEBUG|OnDoc| +2026-03-19 20:39:54.9498|DEBUG|OnDoc| +2026-03-19 20:39:54.9498|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:39:55.0012|DEBUG|OnDoc| +2026-03-19 20:39:55.0012|DEBUG|OnDoc| +2026-03-19 20:39:55.0439|DEBUG|OnDoc| +2026-03-19 20:39:55.0439|DEBUG|OnDoc| +2026-03-19 20:39:55.0439|DEBUG|OnDoc| +2026-03-19 20:39:55.0439|DEBUG|OnDoc| +2026-03-19 20:39:55.0439|DEBUG|OnDoc| +2026-03-19 20:39:55.0564|DEBUG|OnDoc| +2026-03-19 20:39:55.0941|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:39:55.0941|DEBUG|OnDoc| +2026-03-19 20:39:55.1028|DEBUG|OnDoc| +2026-03-19 20:39:55.1028|DEBUG|OnDoc| +2026-03-19 20:39:55.1028|DEBUG|OnDoc| +2026-03-19 20:39:55.1028|DEBUG|OnDoc| +2026-03-19 20:39:55.1028|DEBUG|OnDoc| +2026-03-19 20:39:55.1028|DEBUG|OnDoc| +2026-03-19 20:39:55.1028|DEBUG|OnDoc| +2026-03-19 20:39:55.1028|DEBUG|OnDoc|Generate_Word +2026-03-19 20:39:55.1198|DEBUG|OnDoc|Word2013 +2026-03-19 20:39:55.1198|DEBUG|OnDoc|Word2013 +2026-03-19 20:39:59.3519|DEBUG|OnDoc| +2026-03-19 20:39:59.3884|DEBUG|OnDoc| +2026-03-19 20:39:59.4785|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:39:59.4785|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:40:00.1175|DEBUG|OnDoc|Generate_Word +2026-03-19 20:40:00.1291|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020126 +2026-03-19 20:40:00.1291|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:40:00.1291|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:40:00.1291|DEBUG|OnDoc| +2026-03-19 20:40:00.1411|DEBUG|OnDoc| +2026-03-19 20:40:00.1411|DEBUG|OnDoc| +2026-03-19 20:40:00.1411|DEBUG|OnDoc| +2026-03-19 20:40:00.1411|DEBUG|OnDoc| +2026-03-19 20:40:00.1411|DEBUG|OnDoc| +2026-03-19 20:40:36.1087|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:40:36.2365|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:40:36.2907|INFO|APIDocLog|Input JSON +2026-03-19 20:40:36.2907|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.2907|DEBUG|OnDoc| +2026-03-19 20:40:36.3063|DEBUG|OnDoc| +2026-03-19 20:40:36.3063|DEBUG|OnDoc| +2026-03-19 20:40:36.3063|DEBUG|OnDoc| +2026-03-19 20:40:36.3063|DEBUG|OnDoc| +2026-03-19 20:40:36.3063|DEBUG|OnDoc| +2026-03-19 20:40:36.3063|DEBUG|OnDoc| +2026-03-19 20:40:36.3063|DEBUG|OnDoc| +2026-03-19 20:40:36.3063|DEBUG|OnDoc| +2026-03-19 20:40:36.3063|DEBUG|OnDoc| +2026-03-19 20:40:36.3063|DEBUG|OnDoc| +2026-03-19 20:40:36.3063|DEBUG|OnDoc| +2026-03-19 20:40:36.3063|DEBUG|OnDoc| +2026-03-19 20:40:36.3344|DEBUG|OnDoc| +2026-03-19 20:40:36.3364|DEBUG|OnDoc| +2026-03-19 20:40:36.3364|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:40:36.3897|DEBUG|OnDoc| +2026-03-19 20:40:36.3897|DEBUG|OnDoc| +2026-03-19 20:40:36.4343|DEBUG|OnDoc| +2026-03-19 20:40:36.4343|DEBUG|OnDoc| +2026-03-19 20:40:36.4343|DEBUG|OnDoc| +2026-03-19 20:40:36.4465|DEBUG|OnDoc| +2026-03-19 20:40:36.4465|DEBUG|OnDoc| +2026-03-19 20:40:36.4465|DEBUG|OnDoc| +2026-03-19 20:40:36.4873|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:40:36.4873|DEBUG|OnDoc| +2026-03-19 20:40:36.4938|DEBUG|OnDoc| +2026-03-19 20:40:36.4938|DEBUG|OnDoc| +2026-03-19 20:40:36.4938|DEBUG|OnDoc| +2026-03-19 20:40:36.4938|DEBUG|OnDoc| +2026-03-19 20:40:36.4938|DEBUG|OnDoc| +2026-03-19 20:40:36.4938|DEBUG|OnDoc| +2026-03-19 20:40:36.4938|DEBUG|OnDoc| +2026-03-19 20:40:36.4938|DEBUG|OnDoc|Generate_Word +2026-03-19 20:40:36.5124|DEBUG|OnDoc|Word2013 +2026-03-19 20:40:36.5124|DEBUG|OnDoc|Word2013 +2026-03-19 20:40:40.6639|DEBUG|OnDoc| +2026-03-19 20:40:40.6995|DEBUG|OnDoc| +2026-03-19 20:40:40.7937|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:40:40.7937|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:40:40.9114|DEBUG|OnDoc| +2026-03-19 20:40:40.9217|DEBUG|OnDoc| +2026-03-19 20:40:41.0152|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:40:41.0246|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:40:41.6912|DEBUG|OnDoc|Generate_Word +2026-03-19 20:40:41.7072|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020134 +2026-03-19 20:40:41.7072|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:40:41.7072|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:40:41.7134|DEBUG|OnDoc| +2026-03-19 20:40:41.7331|DEBUG|OnDoc| +2026-03-19 20:40:41.7331|DEBUG|OnDoc| +2026-03-19 20:40:41.7331|DEBUG|OnDoc| +2026-03-19 20:40:41.7331|DEBUG|OnDoc| +2026-03-19 20:40:41.7331|DEBUG|OnDoc| +2026-03-19 20:40:58.2942|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:40:58.4841|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:40:58.5622|INFO|APIDocLog|Input JSON +2026-03-19 20:40:58.5728|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5728|DEBUG|OnDoc| +2026-03-19 20:40:58.5865|DEBUG|OnDoc| +2026-03-19 20:40:58.5865|DEBUG|OnDoc| +2026-03-19 20:40:58.5865|DEBUG|OnDoc| +2026-03-19 20:40:58.5865|DEBUG|OnDoc| +2026-03-19 20:40:58.5865|DEBUG|OnDoc| +2026-03-19 20:40:58.5865|DEBUG|OnDoc| +2026-03-19 20:40:58.5865|DEBUG|OnDoc| +2026-03-19 20:40:58.6112|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:40:58.6671|DEBUG|OnDoc| +2026-03-19 20:40:58.6671|DEBUG|OnDoc| +2026-03-19 20:40:58.7275|DEBUG|OnDoc| +2026-03-19 20:40:58.7275|DEBUG|OnDoc| +2026-03-19 20:40:58.7275|DEBUG|OnDoc| +2026-03-19 20:40:58.7275|DEBUG|OnDoc| +2026-03-19 20:40:58.7275|DEBUG|OnDoc| +2026-03-19 20:40:58.7275|DEBUG|OnDoc| +2026-03-19 20:40:58.8012|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:40:58.8012|DEBUG|OnDoc| +2026-03-19 20:40:58.8083|DEBUG|OnDoc| +2026-03-19 20:40:58.8083|DEBUG|OnDoc| +2026-03-19 20:40:58.8083|DEBUG|OnDoc| +2026-03-19 20:40:58.8083|DEBUG|OnDoc| +2026-03-19 20:40:58.8083|DEBUG|OnDoc| +2026-03-19 20:40:58.8083|DEBUG|OnDoc| +2026-03-19 20:40:58.8083|DEBUG|OnDoc| +2026-03-19 20:40:58.8083|DEBUG|OnDoc|Generate_Word +2026-03-19 20:40:58.8281|DEBUG|OnDoc|Word2013 +2026-03-19 20:40:58.8281|DEBUG|OnDoc|Word2013 +2026-03-19 20:41:02.9886|DEBUG|OnDoc| +2026-03-19 20:41:03.0242|DEBUG|OnDoc| +2026-03-19 20:41:03.1188|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:41:03.1188|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:41:03.2367|DEBUG|OnDoc| +2026-03-19 20:41:03.2453|DEBUG|OnDoc| +2026-03-19 20:41:03.3383|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:41:03.3383|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:41:03.9754|DEBUG|OnDoc|Generate_Word +2026-03-19 20:41:03.9871|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020142 +2026-03-19 20:41:03.9871|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:41:03.9871|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:41:03.9871|DEBUG|OnDoc| +2026-03-19 20:41:04.0052|DEBUG|OnDoc| +2026-03-19 20:41:04.0052|DEBUG|OnDoc| +2026-03-19 20:41:04.0052|DEBUG|OnDoc| +2026-03-19 20:41:04.0052|DEBUG|OnDoc| +2026-03-19 20:41:04.0052|DEBUG|OnDoc| +2026-03-19 20:41:27.6598|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:41:27.7786|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:41:27.8325|INFO|APIDocLog|Input JSON +2026-03-19 20:41:27.8325|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:41:27.8325|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8373|DEBUG|OnDoc| +2026-03-19 20:41:27.8521|DEBUG|OnDoc| +2026-03-19 20:41:27.8521|DEBUG|OnDoc| +2026-03-19 20:41:27.8521|DEBUG|OnDoc| +2026-03-19 20:41:27.8521|DEBUG|OnDoc| +2026-03-19 20:41:27.8521|DEBUG|OnDoc| +2026-03-19 20:41:27.8521|DEBUG|OnDoc| +2026-03-19 20:41:27.8762|DEBUG|OnDoc| +2026-03-19 20:41:27.8762|DEBUG|OnDoc| +2026-03-19 20:41:27.8855|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:41:27.9300|DEBUG|OnDoc| +2026-03-19 20:41:27.9325|DEBUG|OnDoc| +2026-03-19 20:41:27.9746|DEBUG|OnDoc| +2026-03-19 20:41:27.9746|DEBUG|OnDoc| +2026-03-19 20:41:27.9858|DEBUG|OnDoc| +2026-03-19 20:41:27.9858|DEBUG|OnDoc| +2026-03-19 20:41:27.9858|DEBUG|OnDoc| +2026-03-19 20:41:27.9858|DEBUG|OnDoc| +2026-03-19 20:41:28.0271|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:41:28.0271|DEBUG|OnDoc| +2026-03-19 20:41:28.0271|DEBUG|OnDoc| +2026-03-19 20:41:28.0271|DEBUG|OnDoc| +2026-03-19 20:41:28.0271|DEBUG|OnDoc| +2026-03-19 20:41:28.0271|DEBUG|OnDoc| +2026-03-19 20:41:28.0409|DEBUG|OnDoc| +2026-03-19 20:41:28.0409|DEBUG|OnDoc| +2026-03-19 20:41:28.0409|DEBUG|OnDoc| +2026-03-19 20:41:28.0409|DEBUG|OnDoc|Generate_Word +2026-03-19 20:41:28.0409|DEBUG|OnDoc|Word2013 +2026-03-19 20:41:28.0552|DEBUG|OnDoc|Word2013 +2026-03-19 20:41:31.8991|DEBUG|OnDoc| +2026-03-19 20:41:31.8991|DEBUG|OnDoc| +2026-03-19 20:41:31.9976|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:41:31.9976|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:41:32.1183|DEBUG|OnDoc| +2026-03-19 20:41:32.1183|DEBUG|OnDoc| +2026-03-19 20:41:32.2202|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:41:32.2296|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:41:32.9169|DEBUG|OnDoc|Generate_Word +2026-03-19 20:41:32.9169|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020158 +2026-03-19 20:41:32.9169|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:41:32.9310|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:41:32.9310|DEBUG|OnDoc| +2026-03-19 20:41:32.9310|DEBUG|OnDoc| +2026-03-19 20:41:32.9310|DEBUG|OnDoc| +2026-03-19 20:41:32.9310|DEBUG|OnDoc| +2026-03-19 20:41:32.9310|DEBUG|OnDoc| +2026-03-19 20:41:32.9310|DEBUG|OnDoc| +2026-03-19 20:42:07.4033|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:42:07.5323|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:42:07.5844|INFO|APIDocLog|Input JSON +2026-03-19 20:42:07.5873|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.5873|DEBUG|OnDoc| +2026-03-19 20:42:07.6028|DEBUG|OnDoc| +2026-03-19 20:42:07.6028|DEBUG|OnDoc| +2026-03-19 20:42:07.6028|DEBUG|OnDoc| +2026-03-19 20:42:07.6028|DEBUG|OnDoc| +2026-03-19 20:42:07.6028|DEBUG|OnDoc| +2026-03-19 20:42:07.6324|DEBUG|OnDoc| +2026-03-19 20:42:07.6344|DEBUG|OnDoc| +2026-03-19 20:42:07.6344|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:42:07.6847|DEBUG|OnDoc| +2026-03-19 20:42:07.6847|DEBUG|OnDoc| +2026-03-19 20:42:07.7291|DEBUG|OnDoc| +2026-03-19 20:42:07.7291|DEBUG|OnDoc| +2026-03-19 20:42:07.7291|DEBUG|OnDoc| +2026-03-19 20:42:07.7291|DEBUG|OnDoc| +2026-03-19 20:42:07.7291|DEBUG|OnDoc| +2026-03-19 20:42:07.7291|DEBUG|OnDoc| +2026-03-19 20:42:07.7758|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:42:07.7758|DEBUG|OnDoc| +2026-03-19 20:42:07.7758|DEBUG|OnDoc| +2026-03-19 20:42:07.7758|DEBUG|OnDoc| +2026-03-19 20:42:07.7758|DEBUG|OnDoc| +2026-03-19 20:42:07.7758|DEBUG|OnDoc| +2026-03-19 20:42:07.7758|DEBUG|OnDoc| +2026-03-19 20:42:07.7758|DEBUG|OnDoc| +2026-03-19 20:42:07.7923|DEBUG|OnDoc| +2026-03-19 20:42:07.7923|DEBUG|OnDoc|Generate_Word +2026-03-19 20:42:07.7923|DEBUG|OnDoc|Word2013 +2026-03-19 20:42:07.7923|DEBUG|OnDoc|Word2013 +2026-03-19 20:42:11.3847|DEBUG|OnDoc| +2026-03-19 20:42:11.4199|DEBUG|OnDoc| +2026-03-19 20:42:11.5152|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:42:11.5248|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:42:11.6334|DEBUG|OnDoc| +2026-03-19 20:42:11.6334|DEBUG|OnDoc| +2026-03-19 20:42:11.7356|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:42:11.7439|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:42:12.3612|DEBUG|OnDoc|Generate_Word +2026-03-19 20:42:12.3740|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020163 +2026-03-19 20:42:12.3740|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:42:12.3740|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:42:12.3740|DEBUG|OnDoc| +2026-03-19 20:42:12.3978|DEBUG|OnDoc| +2026-03-19 20:42:12.3978|DEBUG|OnDoc| +2026-03-19 20:42:12.3992|DEBUG|OnDoc| +2026-03-19 20:42:12.3992|DEBUG|OnDoc| +2026-03-19 20:42:12.3992|DEBUG|OnDoc| +2026-03-19 20:42:27.6742|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:42:27.7967|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:42:27.8508|INFO|APIDocLog|Input JSON +2026-03-19 20:42:27.8545|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8545|DEBUG|OnDoc| +2026-03-19 20:42:27.8682|DEBUG|OnDoc| +2026-03-19 20:42:27.8682|DEBUG|OnDoc| +2026-03-19 20:42:27.8682|DEBUG|OnDoc| +2026-03-19 20:42:27.8682|DEBUG|OnDoc| +2026-03-19 20:42:27.8682|DEBUG|OnDoc| +2026-03-19 20:42:27.8682|DEBUG|OnDoc| +2026-03-19 20:42:27.8682|DEBUG|OnDoc| +2026-03-19 20:42:27.8682|DEBUG|OnDoc| +2026-03-19 20:42:27.8682|DEBUG|OnDoc| +2026-03-19 20:42:27.8682|DEBUG|OnDoc| +2026-03-19 20:42:27.8682|DEBUG|OnDoc| +2026-03-19 20:42:27.8682|DEBUG|OnDoc| +2026-03-19 20:42:27.8682|DEBUG|OnDoc| +2026-03-19 20:42:27.8855|DEBUG|OnDoc| +2026-03-19 20:42:27.8855|DEBUG|OnDoc| +2026-03-19 20:42:27.8855|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:42:27.9401|DEBUG|OnDoc| +2026-03-19 20:42:27.9401|DEBUG|OnDoc| +2026-03-19 20:42:27.9820|DEBUG|OnDoc| +2026-03-19 20:42:27.9820|DEBUG|OnDoc| +2026-03-19 20:42:27.9928|DEBUG|OnDoc| +2026-03-19 20:42:27.9928|DEBUG|OnDoc| +2026-03-19 20:42:27.9928|DEBUG|OnDoc| +2026-03-19 20:42:27.9928|DEBUG|OnDoc| +2026-03-19 20:42:28.0330|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:42:28.0330|DEBUG|OnDoc| +2026-03-19 20:42:28.0330|DEBUG|OnDoc| +2026-03-19 20:42:28.0400|DEBUG|OnDoc| +2026-03-19 20:42:28.0400|DEBUG|OnDoc| +2026-03-19 20:42:28.0400|DEBUG|OnDoc| +2026-03-19 20:42:28.0400|DEBUG|OnDoc| +2026-03-19 20:42:28.0400|DEBUG|OnDoc| +2026-03-19 20:42:28.0400|DEBUG|OnDoc| +2026-03-19 20:42:28.0400|DEBUG|OnDoc|Generate_Word +2026-03-19 20:42:28.0565|DEBUG|OnDoc|Word2013 +2026-03-19 20:42:28.0565|DEBUG|OnDoc|Word2013 +2026-03-19 20:42:34.1715|DEBUG|OnDoc| +2026-03-19 20:42:34.2068|DEBUG|OnDoc| +2026-03-19 20:42:34.3017|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:42:34.3124|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:42:34.4213|DEBUG|OnDoc| +2026-03-19 20:42:34.4309|DEBUG|OnDoc| +2026-03-19 20:42:34.5215|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:42:34.5304|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:42:35.2023|DEBUG|OnDoc|Generate_Word +2026-03-19 20:42:35.2146|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020179 +2026-03-19 20:42:35.2146|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:42:35.2146|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:42:35.2146|DEBUG|OnDoc| +2026-03-19 20:42:35.2307|DEBUG|OnDoc| +2026-03-19 20:42:35.2307|DEBUG|OnDoc| +2026-03-19 20:42:35.2307|DEBUG|OnDoc| +2026-03-19 20:42:35.2307|DEBUG|OnDoc| +2026-03-19 20:42:35.2307|DEBUG|OnDoc| +2026-03-19 20:42:58.3732|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:42:58.4923|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:42:58.5448|INFO|APIDocLog|Input JSON +2026-03-19 20:42:58.5448|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5448|DEBUG|OnDoc| +2026-03-19 20:42:58.5563|DEBUG|OnDoc| +2026-03-19 20:42:58.5563|DEBUG|OnDoc| +2026-03-19 20:42:58.5563|DEBUG|OnDoc| +2026-03-19 20:42:58.5563|DEBUG|OnDoc| +2026-03-19 20:42:58.5563|DEBUG|OnDoc| +2026-03-19 20:42:58.5563|DEBUG|OnDoc| +2026-03-19 20:42:58.5563|DEBUG|OnDoc| +2026-03-19 20:42:58.5563|DEBUG|OnDoc| +2026-03-19 20:42:58.5563|DEBUG|OnDoc| +2026-03-19 20:42:58.5563|DEBUG|OnDoc| +2026-03-19 20:42:58.5563|DEBUG|OnDoc| +2026-03-19 20:42:58.5563|DEBUG|OnDoc| +2026-03-19 20:42:58.5563|DEBUG|OnDoc| +2026-03-19 20:42:58.5563|DEBUG|OnDoc| +2026-03-19 20:42:58.5818|DEBUG|OnDoc| +2026-03-19 20:42:58.5818|DEBUG|OnDoc| +2026-03-19 20:42:58.5906|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:42:58.6332|DEBUG|OnDoc| +2026-03-19 20:42:58.6362|DEBUG|OnDoc| +2026-03-19 20:42:58.6762|DEBUG|OnDoc| +2026-03-19 20:42:58.6762|DEBUG|OnDoc| +2026-03-19 20:42:58.6863|DEBUG|OnDoc| +2026-03-19 20:42:58.6863|DEBUG|OnDoc| +2026-03-19 20:42:58.6863|DEBUG|OnDoc| +2026-03-19 20:42:58.6863|DEBUG|OnDoc| +2026-03-19 20:42:58.7250|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:42:58.7250|DEBUG|OnDoc| +2026-03-19 20:42:58.7325|DEBUG|OnDoc| +2026-03-19 20:42:58.7325|DEBUG|OnDoc| +2026-03-19 20:42:58.7325|DEBUG|OnDoc| +2026-03-19 20:42:58.7325|DEBUG|OnDoc| +2026-03-19 20:42:58.7325|DEBUG|OnDoc| +2026-03-19 20:42:58.7325|DEBUG|OnDoc| +2026-03-19 20:42:58.7443|DEBUG|OnDoc| +2026-03-19 20:42:58.7443|DEBUG|OnDoc|Generate_Word +2026-03-19 20:42:58.7443|DEBUG|OnDoc|Word2013 +2026-03-19 20:42:58.7443|DEBUG|OnDoc|Word2013 +2026-03-19 20:43:04.2614|DEBUG|OnDoc| +2026-03-19 20:43:04.2963|DEBUG|OnDoc| +2026-03-19 20:43:04.3887|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:43:04.3887|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:43:04.5064|DEBUG|OnDoc| +2026-03-19 20:43:04.5153|DEBUG|OnDoc| +2026-03-19 20:43:04.6079|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:43:04.6079|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:43:05.2342|DEBUG|OnDoc|Generate_Word +2026-03-19 20:43:05.2473|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020187 +2026-03-19 20:43:05.2473|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:43:05.2473|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:43:05.2473|DEBUG|OnDoc| +2026-03-19 20:43:05.2611|DEBUG|OnDoc| +2026-03-19 20:43:05.2611|DEBUG|OnDoc| +2026-03-19 20:43:05.2611|DEBUG|OnDoc| +2026-03-19 20:43:05.2611|DEBUG|OnDoc| +2026-03-19 20:43:05.2611|DEBUG|OnDoc| +2026-03-19 20:43:16.8921|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:43:17.0203|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:43:17.0732|INFO|APIDocLog|Input JSON +2026-03-19 20:43:17.0732|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0732|DEBUG|OnDoc| +2026-03-19 20:43:17.0877|DEBUG|OnDoc| +2026-03-19 20:43:17.0877|DEBUG|OnDoc| +2026-03-19 20:43:17.0877|DEBUG|OnDoc| +2026-03-19 20:43:17.0877|DEBUG|OnDoc| +2026-03-19 20:43:17.0877|DEBUG|OnDoc| +2026-03-19 20:43:17.0877|DEBUG|OnDoc| +2026-03-19 20:43:17.0877|DEBUG|OnDoc| +2026-03-19 20:43:17.0877|DEBUG|OnDoc| +2026-03-19 20:43:17.0877|DEBUG|OnDoc| +2026-03-19 20:43:17.0877|DEBUG|OnDoc| +2026-03-19 20:43:17.0877|DEBUG|OnDoc| +2026-03-19 20:43:17.0877|DEBUG|OnDoc| +2026-03-19 20:43:17.1155|DEBUG|OnDoc| +2026-03-19 20:43:17.1179|DEBUG|OnDoc| +2026-03-19 20:43:17.1179|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:43:17.1724|DEBUG|OnDoc| +2026-03-19 20:43:17.1724|DEBUG|OnDoc| +2026-03-19 20:43:17.2156|DEBUG|OnDoc| +2026-03-19 20:43:17.2156|DEBUG|OnDoc| +2026-03-19 20:43:17.2156|DEBUG|OnDoc| +2026-03-19 20:43:17.2273|DEBUG|OnDoc| +2026-03-19 20:43:17.2273|DEBUG|OnDoc| +2026-03-19 20:43:17.2273|DEBUG|OnDoc| +2026-03-19 20:43:17.2651|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:43:17.2651|DEBUG|OnDoc| +2026-03-19 20:43:17.3164|DEBUG|OnDoc| +2026-03-19 20:43:17.3164|DEBUG|OnDoc| +2026-03-19 20:43:17.3220|DEBUG|OnDoc| +2026-03-19 20:43:17.3220|DEBUG|OnDoc| +2026-03-19 20:43:17.3220|DEBUG|OnDoc| +2026-03-19 20:43:17.3220|DEBUG|OnDoc| +2026-03-19 20:43:17.3412|DEBUG|OnDoc| +2026-03-19 20:43:17.3412|DEBUG|OnDoc|Generate_Word +2026-03-19 20:43:17.3412|DEBUG|OnDoc|Word2013 +2026-03-19 20:43:17.3526|DEBUG|OnDoc|Word2013 +2026-03-19 20:43:20.5856|DEBUG|OnDoc| +2026-03-19 20:43:20.6216|DEBUG|OnDoc| +2026-03-19 20:43:20.7152|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:43:20.7152|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:43:20.8398|DEBUG|OnDoc| +2026-03-19 20:43:20.8398|DEBUG|OnDoc| +2026-03-19 20:43:20.9405|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:43:20.9504|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:43:21.5505|DEBUG|OnDoc|Generate_Word +2026-03-19 20:43:21.5622|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020195 +2026-03-19 20:43:21.5622|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:43:21.5622|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:43:21.5622|DEBUG|OnDoc| +2026-03-19 20:43:21.5771|DEBUG|OnDoc| +2026-03-19 20:43:21.5771|DEBUG|OnDoc| +2026-03-19 20:43:21.5771|DEBUG|OnDoc| +2026-03-19 20:43:21.5771|DEBUG|OnDoc| +2026-03-19 20:43:21.5771|DEBUG|OnDoc| +2026-03-19 20:43:42.9264|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:43:43.0541|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:43:43.1100|INFO|APIDocLog|Input JSON +2026-03-19 20:43:43.1100|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:43:43.1100|DEBUG|OnDoc| +2026-03-19 20:43:43.1100|DEBUG|OnDoc| +2026-03-19 20:43:43.1100|DEBUG|OnDoc| +2026-03-19 20:43:43.1100|DEBUG|OnDoc| +2026-03-19 20:43:43.1100|DEBUG|OnDoc| +2026-03-19 20:43:43.1100|DEBUG|OnDoc| +2026-03-19 20:43:43.1100|DEBUG|OnDoc| +2026-03-19 20:43:43.1100|DEBUG|OnDoc| +2026-03-19 20:43:43.1100|DEBUG|OnDoc| +2026-03-19 20:43:43.1100|DEBUG|OnDoc| +2026-03-19 20:43:43.1100|DEBUG|OnDoc| +2026-03-19 20:43:43.1100|DEBUG|OnDoc| +2026-03-19 20:43:43.1100|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1177|DEBUG|OnDoc| +2026-03-19 20:43:43.1373|DEBUG|OnDoc| +2026-03-19 20:43:43.1373|DEBUG|OnDoc| +2026-03-19 20:43:43.1373|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:43:43.1915|DEBUG|OnDoc| +2026-03-19 20:43:43.1915|DEBUG|OnDoc| +2026-03-19 20:43:43.2352|DEBUG|OnDoc| +2026-03-19 20:43:43.2352|DEBUG|OnDoc| +2026-03-19 20:43:43.2445|DEBUG|OnDoc| +2026-03-19 20:43:43.2445|DEBUG|OnDoc| +2026-03-19 20:43:43.2445|DEBUG|OnDoc| +2026-03-19 20:43:43.2445|DEBUG|OnDoc| +2026-03-19 20:43:43.2832|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:43:43.2832|DEBUG|OnDoc| +2026-03-19 20:43:43.2897|DEBUG|OnDoc| +2026-03-19 20:43:43.2897|DEBUG|OnDoc| +2026-03-19 20:43:43.2897|DEBUG|OnDoc| +2026-03-19 20:43:43.2897|DEBUG|OnDoc| +2026-03-19 20:43:43.2897|DEBUG|OnDoc| +2026-03-19 20:43:43.2897|DEBUG|OnDoc| +2026-03-19 20:43:43.2897|DEBUG|OnDoc| +2026-03-19 20:43:43.2897|DEBUG|OnDoc|Generate_Word +2026-03-19 20:43:43.3089|DEBUG|OnDoc|Word2013 +2026-03-19 20:43:43.3089|DEBUG|OnDoc|Word2013 +2026-03-19 20:44:33.8341|DEBUG|OnDoc| +2026-03-19 20:44:33.8693|DEBUG|OnDoc| +2026-03-19 20:44:33.9625|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:44:33.9625|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:44:34.0903|DEBUG|OnDoc| +2026-03-19 20:44:34.0903|DEBUG|OnDoc| +2026-03-19 20:44:34.1948|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:44:34.2041|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:44:34.8757|DEBUG|OnDoc|Generate_Word +2026-03-19 20:44:34.8879|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020205 +2026-03-19 20:44:34.8879|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:44:34.8879|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:44:34.8879|DEBUG|OnDoc| +2026-03-19 20:44:34.9043|DEBUG|OnDoc| +2026-03-19 20:44:34.9043|DEBUG|OnDoc| +2026-03-19 20:44:34.9043|DEBUG|OnDoc| +2026-03-19 20:44:34.9043|DEBUG|OnDoc| +2026-03-19 20:44:34.9043|DEBUG|OnDoc| +2026-03-19 20:45:03.0158|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:45:03.1465|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:45:03.1985|INFO|APIDocLog|Input JSON +2026-03-19 20:45:03.1985|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.1985|DEBUG|OnDoc| +2026-03-19 20:45:03.2123|DEBUG|OnDoc| +2026-03-19 20:45:03.2123|DEBUG|OnDoc| +2026-03-19 20:45:03.2123|DEBUG|OnDoc| +2026-03-19 20:45:03.2123|DEBUG|OnDoc| +2026-03-19 20:45:03.2123|DEBUG|OnDoc| +2026-03-19 20:45:03.2123|DEBUG|OnDoc| +2026-03-19 20:45:03.2123|DEBUG|OnDoc| +2026-03-19 20:45:03.2123|DEBUG|OnDoc| +2026-03-19 20:45:03.2123|DEBUG|OnDoc| +2026-03-19 20:45:03.2341|DEBUG|OnDoc| +2026-03-19 20:45:03.2341|DEBUG|OnDoc| +2026-03-19 20:45:03.2435|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:45:03.2859|DEBUG|OnDoc| +2026-03-19 20:45:03.2859|DEBUG|OnDoc| +2026-03-19 20:45:03.3284|DEBUG|OnDoc| +2026-03-19 20:45:03.3284|DEBUG|OnDoc| +2026-03-19 20:45:03.3407|DEBUG|OnDoc| +2026-03-19 20:45:03.3407|DEBUG|OnDoc| +2026-03-19 20:45:03.3407|DEBUG|OnDoc| +2026-03-19 20:45:03.3407|DEBUG|OnDoc| +2026-03-19 20:45:03.3803|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:45:03.3803|DEBUG|OnDoc| +2026-03-19 20:45:03.3875|DEBUG|OnDoc| +2026-03-19 20:45:03.3875|DEBUG|OnDoc| +2026-03-19 20:45:03.3875|DEBUG|OnDoc| +2026-03-19 20:45:03.3875|DEBUG|OnDoc| +2026-03-19 20:45:03.3875|DEBUG|OnDoc| +2026-03-19 20:45:03.3875|DEBUG|OnDoc| +2026-03-19 20:45:03.3997|DEBUG|OnDoc| +2026-03-19 20:45:03.3997|DEBUG|OnDoc|Generate_Word +2026-03-19 20:45:03.3997|DEBUG|OnDoc|Word2013 +2026-03-19 20:45:03.3997|DEBUG|OnDoc|Word2013 +2026-03-19 20:45:07.2112|DEBUG|OnDoc| +2026-03-19 20:45:07.2461|DEBUG|OnDoc| +2026-03-19 20:45:07.3403|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:45:07.3403|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:45:07.4601|DEBUG|OnDoc| +2026-03-19 20:45:07.4682|DEBUG|OnDoc| +2026-03-19 20:45:07.5625|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:45:07.5715|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:45:08.1728|DEBUG|OnDoc|Generate_Word +2026-03-19 20:45:08.1859|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020210 +2026-03-19 20:45:08.1859|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:45:08.1859|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:45:08.1859|DEBUG|OnDoc| +2026-03-19 20:45:08.2035|DEBUG|OnDoc| +2026-03-19 20:45:08.2035|DEBUG|OnDoc| +2026-03-19 20:45:08.2035|DEBUG|OnDoc| +2026-03-19 20:45:08.2035|DEBUG|OnDoc| +2026-03-19 20:45:08.2035|DEBUG|OnDoc| +2026-03-19 20:45:53.0789|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:45:53.1754|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:45:53.2264|INFO|APIDocLog|Input JSON +2026-03-19 20:45:53.2291|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2291|DEBUG|OnDoc| +2026-03-19 20:45:53.2624|DEBUG|OnDoc| +2026-03-19 20:45:53.2624|DEBUG|OnDoc| +2026-03-19 20:45:53.2624|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:45:53.3169|DEBUG|OnDoc| +2026-03-19 20:45:53.3169|DEBUG|OnDoc| +2026-03-19 20:45:53.3594|DEBUG|OnDoc| +2026-03-19 20:45:53.3594|DEBUG|OnDoc| +2026-03-19 20:45:53.3691|DEBUG|OnDoc| +2026-03-19 20:45:53.3691|DEBUG|OnDoc| +2026-03-19 20:45:53.3691|DEBUG|OnDoc| +2026-03-19 20:45:53.3691|DEBUG|OnDoc| +2026-03-19 20:45:53.4078|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:45:53.4078|DEBUG|OnDoc| +2026-03-19 20:45:53.4153|DEBUG|OnDoc| +2026-03-19 20:45:53.4153|DEBUG|OnDoc| +2026-03-19 20:45:53.4153|DEBUG|OnDoc| +2026-03-19 20:45:53.4153|DEBUG|OnDoc| +2026-03-19 20:45:53.4153|DEBUG|OnDoc| +2026-03-19 20:45:53.4153|DEBUG|OnDoc| +2026-03-19 20:45:53.4153|DEBUG|OnDoc| +2026-03-19 20:45:53.4153|DEBUG|OnDoc|Generate_Word +2026-03-19 20:45:53.4790|DEBUG|OnDoc|Word2013 +2026-03-19 20:45:53.4790|DEBUG|OnDoc|Word2013 +2026-03-19 20:45:56.6935|DEBUG|OnDoc| +2026-03-19 20:45:56.7302|DEBUG|OnDoc| +2026-03-19 20:45:56.8511|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:45:56.8617|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:45:56.9809|DEBUG|OnDoc| +2026-03-19 20:45:56.9809|DEBUG|OnDoc| +2026-03-19 20:45:57.0828|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:45:57.0933|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:45:57.7071|DEBUG|OnDoc|Generate_Word +2026-03-19 20:45:57.7206|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020221 +2026-03-19 20:45:57.7206|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:45:57.7206|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:45:57.7206|DEBUG|OnDoc| +2026-03-19 20:45:57.7372|DEBUG|OnDoc| +2026-03-19 20:45:57.7372|DEBUG|OnDoc| +2026-03-19 20:45:57.7372|DEBUG|OnDoc| +2026-03-19 20:45:57.7372|DEBUG|OnDoc| +2026-03-19 20:45:57.7372|DEBUG|OnDoc| +2026-03-19 20:46:27.2578|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:46:27.3837|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:46:27.4380|INFO|APIDocLog|Input JSON +2026-03-19 20:46:27.4380|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:46:27.4380|DEBUG|OnDoc| +2026-03-19 20:46:27.4380|DEBUG|OnDoc| +2026-03-19 20:46:27.4380|DEBUG|OnDoc| +2026-03-19 20:46:27.4380|DEBUG|OnDoc| +2026-03-19 20:46:27.4380|DEBUG|OnDoc| +2026-03-19 20:46:27.4380|DEBUG|OnDoc| +2026-03-19 20:46:27.4380|DEBUG|OnDoc| +2026-03-19 20:46:27.4380|DEBUG|OnDoc| +2026-03-19 20:46:27.4380|DEBUG|OnDoc| +2026-03-19 20:46:27.4380|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4469|DEBUG|OnDoc| +2026-03-19 20:46:27.4808|DEBUG|OnDoc| +2026-03-19 20:46:27.4808|DEBUG|OnDoc| +2026-03-19 20:46:27.4808|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:46:27.5345|DEBUG|OnDoc| +2026-03-19 20:46:27.5345|DEBUG|OnDoc| +2026-03-19 20:46:27.5794|DEBUG|OnDoc| +2026-03-19 20:46:27.5794|DEBUG|OnDoc| +2026-03-19 20:46:27.5898|DEBUG|OnDoc| +2026-03-19 20:46:27.5898|DEBUG|OnDoc| +2026-03-19 20:46:27.5898|DEBUG|OnDoc| +2026-03-19 20:46:27.5898|DEBUG|OnDoc| +2026-03-19 20:46:27.6301|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:46:27.6301|DEBUG|OnDoc| +2026-03-19 20:46:27.6358|DEBUG|OnDoc| +2026-03-19 20:46:27.6358|DEBUG|OnDoc| +2026-03-19 20:46:27.6358|DEBUG|OnDoc| +2026-03-19 20:46:27.6358|DEBUG|OnDoc| +2026-03-19 20:46:27.6358|DEBUG|OnDoc| +2026-03-19 20:46:27.6358|DEBUG|OnDoc| +2026-03-19 20:46:27.6358|DEBUG|OnDoc| +2026-03-19 20:46:27.6358|DEBUG|OnDoc|Generate_Word +2026-03-19 20:46:27.6539|DEBUG|OnDoc|Word2013 +2026-03-19 20:46:27.6539|DEBUG|OnDoc|Word2013 +2026-03-19 20:46:35.8477|DEBUG|OnDoc| +2026-03-19 20:46:35.8836|DEBUG|OnDoc| +2026-03-19 20:46:35.9772|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:46:35.9772|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:46:36.0959|DEBUG|OnDoc| +2026-03-19 20:46:36.1059|DEBUG|OnDoc| +2026-03-19 20:46:36.1997|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:46:36.1997|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:46:36.9092|DEBUG|OnDoc|Generate_Word +2026-03-19 20:46:36.9222|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020236 +2026-03-19 20:46:36.9222|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:46:36.9222|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:46:36.9222|DEBUG|OnDoc| +2026-03-19 20:46:36.9357|DEBUG|OnDoc| +2026-03-19 20:46:36.9357|DEBUG|OnDoc| +2026-03-19 20:46:36.9357|DEBUG|OnDoc| +2026-03-19 20:46:36.9357|DEBUG|OnDoc| +2026-03-19 20:46:36.9357|DEBUG|OnDoc| +2026-03-19 20:46:50.5661|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:46:50.6862|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:46:50.7422|INFO|APIDocLog|Input JSON +2026-03-19 20:46:50.7454|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7454|DEBUG|OnDoc| +2026-03-19 20:46:50.7688|DEBUG|OnDoc| +2026-03-19 20:46:50.7688|DEBUG|OnDoc| +2026-03-19 20:46:50.7770|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:46:50.8200|DEBUG|OnDoc| +2026-03-19 20:46:50.8232|DEBUG|OnDoc| +2026-03-19 20:46:50.8643|DEBUG|OnDoc| +2026-03-19 20:46:50.8643|DEBUG|OnDoc| +2026-03-19 20:46:50.8738|DEBUG|OnDoc| +2026-03-19 20:46:50.8738|DEBUG|OnDoc| +2026-03-19 20:46:50.8738|DEBUG|OnDoc| +2026-03-19 20:46:50.8738|DEBUG|OnDoc| +2026-03-19 20:46:50.9134|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:46:50.9134|DEBUG|OnDoc| +2026-03-19 20:46:50.9184|DEBUG|OnDoc| +2026-03-19 20:46:50.9184|DEBUG|OnDoc| +2026-03-19 20:46:50.9184|DEBUG|OnDoc| +2026-03-19 20:46:50.9184|DEBUG|OnDoc| +2026-03-19 20:46:50.9184|DEBUG|OnDoc| +2026-03-19 20:46:50.9184|DEBUG|OnDoc| +2026-03-19 20:46:50.9184|DEBUG|OnDoc| +2026-03-19 20:46:50.9184|DEBUG|OnDoc|Generate_Word +2026-03-19 20:46:50.9383|DEBUG|OnDoc|Word2013 +2026-03-19 20:46:50.9383|DEBUG|OnDoc|Word2013 +2026-03-19 20:46:52.0777|DEBUG|OnDoc|Generate_Word +2026-03-19 20:46:52.0898|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020244 +2026-03-19 20:46:52.0898|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:46:52.0898|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:46:52.0898|DEBUG|OnDoc| +2026-03-19 20:46:52.0898|DEBUG|OnDoc| +2026-03-19 20:46:52.1023|DEBUG|OnDoc| +2026-03-19 20:46:52.1023|DEBUG|OnDoc| +2026-03-19 20:46:52.1023|DEBUG|OnDoc| +2026-03-19 20:46:52.1023|DEBUG|OnDoc| +2026-03-19 20:47:06.8535|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 20:47:06.9842|INFO|APIDocLog|Start CreateDoc +2026-03-19 20:47:07.0357|INFO|APIDocLog|Input JSON +2026-03-19 20:47:07.0396|DEBUG|OnDoc|Start GenDoc +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0396|DEBUG|OnDoc| +2026-03-19 20:47:07.0636|DEBUG|OnDoc| +2026-03-19 20:47:07.0636|DEBUG|OnDoc| +2026-03-19 20:47:07.0743|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 20:47:07.1288|DEBUG|OnDoc| +2026-03-19 20:47:07.1288|DEBUG|OnDoc| +2026-03-19 20:47:07.1743|DEBUG|OnDoc| +2026-03-19 20:47:07.1743|DEBUG|OnDoc| +2026-03-19 20:47:07.1829|DEBUG|OnDoc| +2026-03-19 20:47:07.1829|DEBUG|OnDoc| +2026-03-19 20:47:07.1829|DEBUG|OnDoc| +2026-03-19 20:47:07.1829|DEBUG|OnDoc| +2026-03-19 20:47:07.2234|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 20:47:07.2234|DEBUG|OnDoc| +2026-03-19 20:47:07.2294|DEBUG|OnDoc| +2026-03-19 20:47:07.2294|DEBUG|OnDoc| +2026-03-19 20:47:07.2294|DEBUG|OnDoc| +2026-03-19 20:47:07.2294|DEBUG|OnDoc| +2026-03-19 20:47:07.2294|DEBUG|OnDoc| +2026-03-19 20:47:07.2294|DEBUG|OnDoc| +2026-03-19 20:47:07.2294|DEBUG|OnDoc| +2026-03-19 20:47:07.2294|DEBUG|OnDoc|Generate_Word +2026-03-19 20:47:07.2470|DEBUG|OnDoc|Word2013 +2026-03-19 20:47:07.2470|DEBUG|OnDoc|Word2013 +2026-03-19 20:47:07.8759|DEBUG|OnDoc| +2026-03-19 20:47:07.8852|DEBUG|OnDoc| +2026-03-19 20:47:07.9772|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 20:47:07.9772|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 20:47:08.0977|DEBUG|OnDoc| +2026-03-19 20:47:08.1067|DEBUG|OnDoc| +2026-03-19 20:47:08.2021|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 20:47:08.2021|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 20:47:08.8882|DEBUG|OnDoc|Generate_Word +2026-03-19 20:47:08.8996|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020252 +2026-03-19 20:47:08.8996|INFO|DocLog|Dokument über API erstellt +2026-03-19 20:47:08.8996|INFO|APIDocLog|Dokument return to sender +2026-03-19 20:47:08.8996|DEBUG|OnDoc| +2026-03-19 20:47:08.8996|DEBUG|OnDoc| +2026-03-19 20:47:08.9153|DEBUG|OnDoc| +2026-03-19 20:47:08.9153|DEBUG|OnDoc| +2026-03-19 20:47:08.9153|DEBUG|OnDoc| +2026-03-19 20:47:08.9153|DEBUG|OnDoc| +2026-03-19 21:19:59.7780|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 21:19:59.9154|INFO|APIDocLog|Start CreateDoc +2026-03-19 21:19:59.9659|INFO|APIDocLog|Input JSON +2026-03-19 21:19:59.9659|DEBUG|OnDoc|Start GenDoc +2026-03-19 21:19:59.9659|DEBUG|OnDoc| +2026-03-19 21:19:59.9659|DEBUG|OnDoc| +2026-03-19 21:19:59.9659|DEBUG|OnDoc| +2026-03-19 21:19:59.9659|DEBUG|OnDoc| +2026-03-19 21:19:59.9659|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:19:59.9773|DEBUG|OnDoc| +2026-03-19 21:20:00.0097|DEBUG|OnDoc| +2026-03-19 21:20:00.0097|DEBUG|OnDoc| +2026-03-19 21:20:00.0097|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 21:20:00.0683|DEBUG|OnDoc| +2026-03-19 21:20:00.0683|DEBUG|OnDoc| +2026-03-19 21:20:00.1111|DEBUG|OnDoc| +2026-03-19 21:20:00.1111|DEBUG|OnDoc| +2026-03-19 21:20:00.1261|DEBUG|OnDoc| +2026-03-19 21:20:00.1261|DEBUG|OnDoc| +2026-03-19 21:20:00.1261|DEBUG|OnDoc| +2026-03-19 21:20:00.1261|DEBUG|OnDoc| +2026-03-19 21:20:00.1646|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 21:20:00.1646|DEBUG|OnDoc| +2026-03-19 21:20:00.1646|DEBUG|OnDoc| +2026-03-19 21:20:00.1646|DEBUG|OnDoc| +2026-03-19 21:20:00.1646|DEBUG|OnDoc| +2026-03-19 21:20:00.1646|DEBUG|OnDoc| +2026-03-19 21:20:00.1646|DEBUG|OnDoc| +2026-03-19 21:20:00.1646|DEBUG|OnDoc| +2026-03-19 21:20:00.1819|DEBUG|OnDoc| +2026-03-19 21:20:00.1819|DEBUG|OnDoc|Generate_Word +2026-03-19 21:20:00.1819|DEBUG|OnDoc|Word2013 +2026-03-19 21:20:00.1819|DEBUG|OnDoc|Word2013 +2026-03-19 21:20:00.8266|DEBUG|OnDoc| +2026-03-19 21:20:00.8266|DEBUG|OnDoc| +2026-03-19 21:20:00.9262|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 21:20:00.9262|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 21:20:01.0453|DEBUG|OnDoc| +2026-03-19 21:20:01.0557|DEBUG|OnDoc| +2026-03-19 21:20:01.1447|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 21:20:01.1536|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 21:20:01.7696|DEBUG|OnDoc|Generate_Word +2026-03-19 21:20:01.7816|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020268 +2026-03-19 21:20:01.7816|INFO|DocLog|Dokument über API erstellt +2026-03-19 21:20:01.7816|INFO|APIDocLog|Dokument return to sender +2026-03-19 21:20:01.7816|DEBUG|OnDoc| +2026-03-19 21:20:01.7957|DEBUG|OnDoc| +2026-03-19 21:20:01.7957|DEBUG|OnDoc| +2026-03-19 21:20:01.7957|DEBUG|OnDoc| +2026-03-19 21:20:01.7957|DEBUG|OnDoc| +2026-03-19 21:20:01.7957|DEBUG|OnDoc| +2026-03-19 21:27:21.4312|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 21:27:21.5630|INFO|APIDocLog|Start CreateDoc +2026-03-19 21:27:21.6141|INFO|APIDocLog|Input JSON +2026-03-19 21:27:21.6177|DEBUG|OnDoc|Start GenDoc +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6177|DEBUG|OnDoc| +2026-03-19 21:27:21.6336|DEBUG|OnDoc| +2026-03-19 21:27:21.6336|DEBUG|OnDoc| +2026-03-19 21:27:21.6336|DEBUG|OnDoc| +2026-03-19 21:27:21.6336|DEBUG|OnDoc| +2026-03-19 21:27:21.6336|DEBUG|OnDoc| +2026-03-19 21:27:21.6336|DEBUG|OnDoc| +2026-03-19 21:27:21.6336|DEBUG|OnDoc| +2026-03-19 21:27:21.6336|DEBUG|OnDoc| +2026-03-19 21:27:21.6336|DEBUG|OnDoc| +2026-03-19 21:27:21.6527|DEBUG|OnDoc| +2026-03-19 21:27:21.6527|DEBUG|OnDoc| +2026-03-19 21:27:21.6527|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 21:27:21.7156|DEBUG|OnDoc| +2026-03-19 21:27:21.7156|DEBUG|OnDoc| +2026-03-19 21:27:21.7597|DEBUG|OnDoc| +2026-03-19 21:27:21.7597|DEBUG|OnDoc| +2026-03-19 21:27:21.7597|DEBUG|OnDoc| +2026-03-19 21:27:21.7597|DEBUG|OnDoc| +2026-03-19 21:27:21.7597|DEBUG|OnDoc| +2026-03-19 21:27:21.7742|DEBUG|OnDoc| +2026-03-19 21:27:21.8126|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 21:27:21.8126|DEBUG|OnDoc| +2026-03-19 21:27:21.8126|DEBUG|OnDoc| +2026-03-19 21:27:21.8126|DEBUG|OnDoc| +2026-03-19 21:27:21.8214|DEBUG|OnDoc| +2026-03-19 21:27:21.8214|DEBUG|OnDoc| +2026-03-19 21:27:21.8214|DEBUG|OnDoc| +2026-03-19 21:27:21.8214|DEBUG|OnDoc| +2026-03-19 21:27:21.8214|DEBUG|OnDoc| +2026-03-19 21:27:21.8214|DEBUG|OnDoc|Generate_Word +2026-03-19 21:27:21.8433|DEBUG|OnDoc|Word2013 +2026-03-19 21:27:21.8433|DEBUG|OnDoc|Word2013 +2026-03-19 21:27:22.5422|DEBUG|OnDoc| +2026-03-19 21:27:22.5422|DEBUG|OnDoc| +2026-03-19 21:27:22.6436|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 21:27:22.6534|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 21:27:22.7642|DEBUG|OnDoc| +2026-03-19 21:27:22.7642|DEBUG|OnDoc| +2026-03-19 21:27:22.8668|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 21:27:22.8769|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 21:27:23.5849|DEBUG|OnDoc|Generate_Word +2026-03-19 21:27:23.5969|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020273 +2026-03-19 21:27:23.5969|INFO|DocLog|Dokument über API erstellt +2026-03-19 21:27:23.5969|INFO|APIDocLog|Dokument return to sender +2026-03-19 21:27:23.5969|DEBUG|OnDoc| +2026-03-19 21:27:23.6129|DEBUG|OnDoc| +2026-03-19 21:27:23.6129|DEBUG|OnDoc| +2026-03-19 21:27:23.6129|DEBUG|OnDoc| +2026-03-19 21:27:23.6129|DEBUG|OnDoc| +2026-03-19 21:27:23.6129|DEBUG|OnDoc| +2026-03-19 21:28:10.9359|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 21:28:11.0603|INFO|APIDocLog|Start CreateDoc +2026-03-19 21:28:11.1137|INFO|APIDocLog|Input JSON +2026-03-19 21:28:11.1137|DEBUG|OnDoc|Start GenDoc +2026-03-19 21:28:11.1137|DEBUG|OnDoc| +2026-03-19 21:28:11.1137|DEBUG|OnDoc| +2026-03-19 21:28:11.1137|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1184|DEBUG|OnDoc| +2026-03-19 21:28:11.1529|DEBUG|OnDoc| +2026-03-19 21:28:11.1529|DEBUG|OnDoc| +2026-03-19 21:28:11.1529|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 21:28:11.2106|DEBUG|OnDoc| +2026-03-19 21:28:11.2131|DEBUG|OnDoc| +2026-03-19 21:28:11.2547|DEBUG|OnDoc| +2026-03-19 21:28:11.2547|DEBUG|OnDoc| +2026-03-19 21:28:11.2639|DEBUG|OnDoc| +2026-03-19 21:28:11.2639|DEBUG|OnDoc| +2026-03-19 21:28:11.2639|DEBUG|OnDoc| +2026-03-19 21:28:11.2639|DEBUG|OnDoc| +2026-03-19 21:28:11.3030|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 21:28:11.3030|DEBUG|OnDoc| +2026-03-19 21:28:11.3110|DEBUG|OnDoc| +2026-03-19 21:28:11.3110|DEBUG|OnDoc| +2026-03-19 21:28:11.3110|DEBUG|OnDoc| +2026-03-19 21:28:11.3110|DEBUG|OnDoc| +2026-03-19 21:28:11.3110|DEBUG|OnDoc| +2026-03-19 21:28:11.3110|DEBUG|OnDoc| +2026-03-19 21:28:11.3258|DEBUG|OnDoc| +2026-03-19 21:28:11.3258|DEBUG|OnDoc|Generate_Word +2026-03-19 21:28:11.3258|DEBUG|OnDoc|Word2013 +2026-03-19 21:28:11.3258|DEBUG|OnDoc|Word2013 +2026-03-19 21:28:38.7181|DEBUG|OnDoc| +2026-03-19 21:28:38.7539|DEBUG|OnDoc| +2026-03-19 21:28:38.8512|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 21:28:38.8606|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 21:28:38.9752|DEBUG|OnDoc| +2026-03-19 21:28:38.9843|DEBUG|OnDoc| +2026-03-19 21:28:39.0817|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 21:28:39.0900|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 21:28:39.7798|DEBUG|OnDoc|Generate_Word +2026-03-19 21:28:39.7921|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020289 +2026-03-19 21:28:39.7921|INFO|DocLog|Dokument über API erstellt +2026-03-19 21:28:39.7921|INFO|APIDocLog|Dokument return to sender +2026-03-19 21:28:39.7921|DEBUG|OnDoc| +2026-03-19 21:28:39.8088|DEBUG|OnDoc| +2026-03-19 21:28:39.8088|DEBUG|OnDoc| +2026-03-19 21:28:39.8088|DEBUG|OnDoc| +2026-03-19 21:28:39.8088|DEBUG|OnDoc| +2026-03-19 21:28:39.8088|DEBUG|OnDoc| +2026-03-19 21:29:19.4512|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 21:29:19.5861|INFO|APIDocLog|Start CreateDoc +2026-03-19 21:29:19.6510|INFO|APIDocLog|Input JSON +2026-03-19 21:29:19.6510|DEBUG|OnDoc|Start GenDoc +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6510|DEBUG|OnDoc| +2026-03-19 21:29:19.6651|DEBUG|OnDoc| +2026-03-19 21:29:19.6651|DEBUG|OnDoc| +2026-03-19 21:29:19.6651|DEBUG|OnDoc| +2026-03-19 21:29:19.6651|DEBUG|OnDoc| +2026-03-19 21:29:19.6651|DEBUG|OnDoc| +2026-03-19 21:29:19.6651|DEBUG|OnDoc| +2026-03-19 21:29:19.6651|DEBUG|OnDoc| +2026-03-19 21:29:19.6651|DEBUG|OnDoc| +2026-03-19 21:29:19.6651|DEBUG|OnDoc| +2026-03-19 21:29:19.6651|DEBUG|OnDoc| +2026-03-19 21:29:19.6651|DEBUG|OnDoc| +2026-03-19 21:29:19.6651|DEBUG|OnDoc| +2026-03-19 21:29:19.6651|DEBUG|OnDoc| +2026-03-19 21:29:19.6651|DEBUG|OnDoc| +2026-03-19 21:29:19.6827|DEBUG|OnDoc| +2026-03-19 21:29:19.6827|DEBUG|OnDoc| +2026-03-19 21:29:19.6987|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 21:29:19.7466|DEBUG|OnDoc| +2026-03-19 21:29:19.7466|DEBUG|OnDoc| +2026-03-19 21:29:19.7997|DEBUG|OnDoc| +2026-03-19 21:29:19.7997|DEBUG|OnDoc| +2026-03-19 21:29:19.8083|DEBUG|OnDoc| +2026-03-19 21:29:19.8083|DEBUG|OnDoc| +2026-03-19 21:29:19.8083|DEBUG|OnDoc| +2026-03-19 21:29:19.8083|DEBUG|OnDoc| +2026-03-19 21:29:19.8587|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 21:29:19.8587|DEBUG|OnDoc| +2026-03-19 21:29:19.8587|DEBUG|OnDoc| +2026-03-19 21:29:19.8677|DEBUG|OnDoc| +2026-03-19 21:29:19.8677|DEBUG|OnDoc| +2026-03-19 21:29:19.8677|DEBUG|OnDoc| +2026-03-19 21:29:19.8677|DEBUG|OnDoc| +2026-03-19 21:29:19.8677|DEBUG|OnDoc| +2026-03-19 21:29:19.8677|DEBUG|OnDoc| +2026-03-19 21:29:19.8834|DEBUG|OnDoc|Generate_Word +2026-03-19 21:29:19.8834|DEBUG|OnDoc|Word2013 +2026-03-19 21:29:19.8997|DEBUG|OnDoc|Word2013 +2026-03-19 21:29:23.8151|DEBUG|OnDoc| +2026-03-19 21:29:23.8497|DEBUG|OnDoc| +2026-03-19 21:29:23.9728|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 21:29:23.9823|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 21:29:24.1155|DEBUG|OnDoc| +2026-03-19 21:29:24.1255|DEBUG|OnDoc| +2026-03-19 21:29:24.2422|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 21:29:24.2515|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 21:29:24.9141|DEBUG|OnDoc|Generate_Word +2026-03-19 21:29:24.9288|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020297 +2026-03-19 21:29:24.9288|INFO|DocLog|Dokument über API erstellt +2026-03-19 21:29:24.9288|INFO|APIDocLog|Dokument return to sender +2026-03-19 21:29:24.9313|DEBUG|OnDoc| +2026-03-19 21:29:24.9313|DEBUG|OnDoc| +2026-03-19 21:29:24.9313|DEBUG|OnDoc| +2026-03-19 21:29:24.9313|DEBUG|OnDoc| +2026-03-19 21:29:24.9313|DEBUG|OnDoc| +2026-03-19 21:29:24.9466|DEBUG|OnDoc| +2026-03-19 21:33:28.7851|DEBUG|OnDoc| +2026-03-19 21:33:28.8488|DEBUG|OnDoc| +2026-03-19 21:33:28.8524|DEBUG|OnDoc| +2026-03-19 21:33:28.8524|DEBUG|OnDoc| +2026-03-19 21:33:29.1815|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 21:33:29.4666|INFO|APIDocLog|Start CreateDoc +2026-03-19 21:33:29.5651|INFO|APIDocLog|Input JSON +2026-03-19 21:33:29.6036|DEBUG|OnDoc|Start GenDoc +2026-03-19 21:33:29.6036|DEBUG|OnDoc| +2026-03-19 21:33:29.6036|DEBUG|OnDoc| +2026-03-19 21:33:29.6036|DEBUG|OnDoc| +2026-03-19 21:33:29.6036|DEBUG|OnDoc| +2026-03-19 21:33:29.6036|DEBUG|OnDoc| +2026-03-19 21:33:29.6036|DEBUG|OnDoc| +2026-03-19 21:33:29.6036|DEBUG|OnDoc| +2026-03-19 21:33:29.6036|DEBUG|OnDoc| +2026-03-19 21:33:29.6036|DEBUG|OnDoc| +2026-03-19 21:33:29.6036|DEBUG|OnDoc| +2026-03-19 21:33:29.6036|DEBUG|OnDoc| +2026-03-19 21:33:29.6036|DEBUG|OnDoc| +2026-03-19 21:33:29.6036|DEBUG|OnDoc| +2026-03-19 21:33:29.6182|DEBUG|OnDoc| +2026-03-19 21:33:29.6182|DEBUG|OnDoc| +2026-03-19 21:33:29.6182|DEBUG|OnDoc| +2026-03-19 21:33:29.6182|DEBUG|OnDoc| +2026-03-19 21:33:29.6182|DEBUG|OnDoc| +2026-03-19 21:33:29.6182|DEBUG|OnDoc| +2026-03-19 21:33:29.6182|DEBUG|OnDoc| +2026-03-19 21:33:29.6343|DEBUG|OnDoc| +2026-03-19 21:33:29.6343|DEBUG|OnDoc| +2026-03-19 21:33:29.6343|DEBUG|OnDoc| +2026-03-19 21:33:29.6343|DEBUG|OnDoc| +2026-03-19 21:33:29.6343|DEBUG|OnDoc| +2026-03-19 21:33:29.6343|DEBUG|OnDoc| +2026-03-19 21:33:29.6343|DEBUG|OnDoc| +2026-03-19 21:33:29.6343|DEBUG|OnDoc| +2026-03-19 21:33:29.6343|DEBUG|OnDoc| +2026-03-19 21:33:29.6343|DEBUG|OnDoc| +2026-03-19 21:33:29.6343|DEBUG|OnDoc| +2026-03-19 21:33:29.6343|DEBUG|OnDoc| +2026-03-19 21:33:29.6343|DEBUG|OnDoc| +2026-03-19 21:33:29.6343|DEBUG|OnDoc| +2026-03-19 21:33:29.6699|DEBUG|OnDoc| +2026-03-19 21:33:29.6699|DEBUG|OnDoc| +2026-03-19 21:33:29.6809|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 21:33:29.8651|DEBUG|OnDoc| +2026-03-19 21:33:29.8766|DEBUG|OnDoc| +2026-03-19 21:33:29.9153|DEBUG|OnDoc| +2026-03-19 21:33:29.9153|DEBUG|OnDoc| +2026-03-19 21:33:29.9456|DEBUG|OnDoc| +2026-03-19 21:33:29.9486|DEBUG|OnDoc| +2026-03-19 21:33:29.9486|DEBUG|OnDoc| +2026-03-19 21:33:29.9486|DEBUG|OnDoc| +2026-03-19 21:33:29.9694|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 21:33:29.9694|DEBUG|OnDoc| +2026-03-19 21:33:29.9833|DEBUG|OnDoc| +2026-03-19 21:33:29.9833|DEBUG|OnDoc| +2026-03-19 21:33:29.9833|DEBUG|OnDoc| +2026-03-19 21:33:29.9833|DEBUG|OnDoc| +2026-03-19 21:33:29.9958|DEBUG|OnDoc| +2026-03-19 21:33:29.9958|DEBUG|OnDoc| +2026-03-19 21:33:29.9958|DEBUG|OnDoc| +2026-03-19 21:33:29.9958|DEBUG|OnDoc|Generate_Word +2026-03-19 21:33:30.4639|DEBUG|OnDoc|Word2013 +2026-03-19 21:33:30.4639|DEBUG|OnDoc|Word2013 +2026-03-19 21:33:32.8824|DEBUG|OnDoc| +2026-03-19 21:33:32.8919|DEBUG|OnDoc| +2026-03-19 21:33:32.9187|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 21:33:32.9187|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 21:33:33.0778|DEBUG|OnDoc| +2026-03-19 21:33:33.0879|DEBUG|OnDoc| +2026-03-19 21:33:33.1132|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 21:33:33.1132|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 21:33:35.1835|DEBUG|OnDoc|Generate_Word +2026-03-19 21:33:35.2309|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020302 +2026-03-19 21:33:35.2309|INFO|DocLog|Dokument über API erstellt +2026-03-19 21:33:35.2309|INFO|APIDocLog|Dokument return to sender +2026-03-19 21:33:35.2309|DEBUG|OnDoc| +2026-03-19 21:33:35.2508|DEBUG|OnDoc| +2026-03-19 21:33:35.2508|DEBUG|OnDoc| +2026-03-19 21:33:35.2508|DEBUG|OnDoc| +2026-03-19 21:33:35.2508|DEBUG|OnDoc| +2026-03-19 21:33:35.2508|DEBUG|OnDoc| +2026-03-19 21:33:53.2828|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 21:33:53.3811|INFO|APIDocLog|Start CreateDoc +2026-03-19 21:33:53.4030|INFO|APIDocLog|Input JSON +2026-03-19 21:33:53.4030|DEBUG|OnDoc|Start GenDoc +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4030|DEBUG|OnDoc| +2026-03-19 21:33:53.4160|DEBUG|OnDoc| +2026-03-19 21:33:53.4160|DEBUG|OnDoc| +2026-03-19 21:33:53.4160|DEBUG|OnDoc| +2026-03-19 21:33:53.4160|DEBUG|OnDoc| +2026-03-19 21:33:53.4160|DEBUG|OnDoc| +2026-03-19 21:33:53.4160|DEBUG|OnDoc| +2026-03-19 21:33:53.4160|DEBUG|OnDoc| +2026-03-19 21:33:53.4160|DEBUG|OnDoc| +2026-03-19 21:33:53.4160|DEBUG|OnDoc| +2026-03-19 21:33:53.4160|DEBUG|OnDoc| +2026-03-19 21:33:53.4160|DEBUG|OnDoc| +2026-03-19 21:33:53.4160|DEBUG|OnDoc| +2026-03-19 21:33:53.4160|DEBUG|OnDoc| +2026-03-19 21:33:53.4160|DEBUG|OnDoc| +2026-03-19 21:33:53.4310|DEBUG|OnDoc| +2026-03-19 21:33:53.4310|DEBUG|OnDoc| +2026-03-19 21:33:53.4310|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 21:33:53.4916|DEBUG|OnDoc| +2026-03-19 21:33:53.4946|DEBUG|OnDoc| +2026-03-19 21:33:53.4946|DEBUG|OnDoc| +2026-03-19 21:33:53.4946|DEBUG|OnDoc| +2026-03-19 21:33:53.5169|DEBUG|OnDoc| +2026-03-19 21:33:53.5169|DEBUG|OnDoc| +2026-03-19 21:33:53.5169|DEBUG|OnDoc| +2026-03-19 21:33:53.5169|DEBUG|OnDoc| +2026-03-19 21:33:53.5327|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 21:33:53.5327|DEBUG|OnDoc| +2026-03-19 21:33:53.5417|DEBUG|OnDoc| +2026-03-19 21:33:53.5417|DEBUG|OnDoc| +2026-03-19 21:33:53.5417|DEBUG|OnDoc| +2026-03-19 21:33:53.5417|DEBUG|OnDoc| +2026-03-19 21:33:53.5417|DEBUG|OnDoc| +2026-03-19 21:33:53.5417|DEBUG|OnDoc| +2026-03-19 21:33:53.5417|DEBUG|OnDoc| +2026-03-19 21:33:53.5417|DEBUG|OnDoc|Generate_Word +2026-03-19 21:33:53.5654|DEBUG|OnDoc|Word2013 +2026-03-19 21:33:53.5654|DEBUG|OnDoc|Word2013 +2026-03-19 21:33:55.7377|DEBUG|OnDoc| +2026-03-19 21:33:55.7476|DEBUG|OnDoc| +2026-03-19 21:33:55.7738|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 21:33:55.7756|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 21:33:55.8267|DEBUG|OnDoc| +2026-03-19 21:33:55.8267|DEBUG|OnDoc| +2026-03-19 21:33:55.8546|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 21:33:55.8546|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 21:33:56.4912|DEBUG|OnDoc|Generate_Word +2026-03-19 21:33:56.5045|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020318 +2026-03-19 21:33:56.5045|INFO|DocLog|Dokument über API erstellt +2026-03-19 21:33:56.5045|INFO|APIDocLog|Dokument return to sender +2026-03-19 21:33:56.5045|DEBUG|OnDoc| +2026-03-19 21:33:56.5181|DEBUG|OnDoc| +2026-03-19 21:33:56.5181|DEBUG|OnDoc| +2026-03-19 21:33:56.5181|DEBUG|OnDoc| +2026-03-19 21:33:56.5181|DEBUG|OnDoc| +2026-03-19 21:33:56.5181|DEBUG|OnDoc| +2026-03-19 21:34:11.8463|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 21:34:11.9136|INFO|APIDocLog|Start CreateDoc +2026-03-19 21:34:11.9387|INFO|APIDocLog|Input JSON +2026-03-19 21:34:11.9387|DEBUG|OnDoc|Start GenDoc +2026-03-19 21:34:11.9387|DEBUG|OnDoc| +2026-03-19 21:34:11.9387|DEBUG|OnDoc| +2026-03-19 21:34:11.9387|DEBUG|OnDoc| +2026-03-19 21:34:11.9387|DEBUG|OnDoc| +2026-03-19 21:34:11.9387|DEBUG|OnDoc| +2026-03-19 21:34:11.9387|DEBUG|OnDoc| +2026-03-19 21:34:11.9387|DEBUG|OnDoc| +2026-03-19 21:34:11.9387|DEBUG|OnDoc| +2026-03-19 21:34:11.9387|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9466|DEBUG|OnDoc| +2026-03-19 21:34:11.9709|DEBUG|OnDoc| +2026-03-19 21:34:11.9709|DEBUG|OnDoc| +2026-03-19 21:34:11.9807|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 21:34:12.0290|DEBUG|OnDoc| +2026-03-19 21:34:12.0290|DEBUG|OnDoc| +2026-03-19 21:34:12.0420|DEBUG|OnDoc| +2026-03-19 21:34:12.0420|DEBUG|OnDoc| +2026-03-19 21:34:12.0420|DEBUG|OnDoc| +2026-03-19 21:34:12.0420|DEBUG|OnDoc| +2026-03-19 21:34:12.0420|DEBUG|OnDoc| +2026-03-19 21:34:12.0420|DEBUG|OnDoc| +2026-03-19 21:34:12.0631|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 21:34:12.0631|DEBUG|OnDoc| +2026-03-19 21:34:12.0631|DEBUG|OnDoc| +2026-03-19 21:34:12.0714|DEBUG|OnDoc| +2026-03-19 21:34:12.0714|DEBUG|OnDoc| +2026-03-19 21:34:12.0714|DEBUG|OnDoc| +2026-03-19 21:34:12.0714|DEBUG|OnDoc| +2026-03-19 21:34:12.0714|DEBUG|OnDoc| +2026-03-19 21:34:12.0714|DEBUG|OnDoc| +2026-03-19 21:34:12.0714|DEBUG|OnDoc|Generate_Word +2026-03-19 21:34:12.0909|DEBUG|OnDoc|Word2013 +2026-03-19 21:34:12.0909|DEBUG|OnDoc|Word2013 +2026-03-19 21:34:14.4854|DEBUG|OnDoc| +2026-03-19 21:34:14.4958|DEBUG|OnDoc| +2026-03-19 21:34:14.5221|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 21:34:14.5251|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 21:34:14.5697|DEBUG|OnDoc| +2026-03-19 21:34:14.5717|DEBUG|OnDoc| +2026-03-19 21:34:14.5971|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 21:34:14.5971|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 21:34:15.2378|DEBUG|OnDoc|Generate_Word +2026-03-19 21:34:15.2508|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020323 +2026-03-19 21:34:15.2508|INFO|DocLog|Dokument über API erstellt +2026-03-19 21:34:15.2508|INFO|APIDocLog|Dokument return to sender +2026-03-19 21:34:15.2508|DEBUG|OnDoc| +2026-03-19 21:34:15.2686|DEBUG|OnDoc| +2026-03-19 21:34:15.2686|DEBUG|OnDoc| +2026-03-19 21:34:15.2686|DEBUG|OnDoc| +2026-03-19 21:34:15.2686|DEBUG|OnDoc| +2026-03-19 21:34:15.2686|DEBUG|OnDoc| +2026-03-19 21:34:39.7588|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 21:34:39.8553|INFO|APIDocLog|Start CreateDoc +2026-03-19 21:34:39.8777|INFO|APIDocLog|Input JSON +2026-03-19 21:34:39.8777|DEBUG|OnDoc|Start GenDoc +2026-03-19 21:34:39.8777|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8845|DEBUG|OnDoc| +2026-03-19 21:34:39.8995|DEBUG|OnDoc| +2026-03-19 21:34:39.8995|DEBUG|OnDoc| +2026-03-19 21:34:39.8995|DEBUG|OnDoc| +2026-03-19 21:34:39.8995|DEBUG|OnDoc| +2026-03-19 21:34:39.8995|DEBUG|OnDoc| +2026-03-19 21:34:39.8995|DEBUG|OnDoc| +2026-03-19 21:34:39.8995|DEBUG|OnDoc| +2026-03-19 21:34:39.8995|DEBUG|OnDoc| +2026-03-19 21:34:39.9248|DEBUG|OnDoc| +2026-03-19 21:34:39.9248|DEBUG|OnDoc| +2026-03-19 21:34:39.9369|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 21:34:39.9962|DEBUG|OnDoc| +2026-03-19 21:34:39.9962|DEBUG|OnDoc| +2026-03-19 21:34:40.0121|DEBUG|OnDoc| +2026-03-19 21:34:40.0121|DEBUG|OnDoc| +2026-03-19 21:34:40.0243|DEBUG|OnDoc| +2026-03-19 21:34:40.0243|DEBUG|OnDoc| +2026-03-19 21:34:40.0243|DEBUG|OnDoc| +2026-03-19 21:34:40.0243|DEBUG|OnDoc| +2026-03-19 21:34:40.0407|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 21:34:40.0407|DEBUG|OnDoc| +2026-03-19 21:34:40.0407|DEBUG|OnDoc| +2026-03-19 21:34:40.0407|DEBUG|OnDoc| +2026-03-19 21:34:40.0407|DEBUG|OnDoc| +2026-03-19 21:34:40.0407|DEBUG|OnDoc| +2026-03-19 21:34:40.0557|DEBUG|OnDoc| +2026-03-19 21:34:40.0557|DEBUG|OnDoc| +2026-03-19 21:34:40.0557|DEBUG|OnDoc| +2026-03-19 21:34:40.0557|DEBUG|OnDoc|Generate_Word +2026-03-19 21:34:40.0557|DEBUG|OnDoc|Word2013 +2026-03-19 21:34:40.0721|DEBUG|OnDoc|Word2013 +2026-03-19 21:34:42.1587|DEBUG|OnDoc| +2026-03-19 21:34:42.1693|DEBUG|OnDoc| +2026-03-19 21:34:42.1939|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 21:34:42.1959|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 21:34:42.2411|DEBUG|OnDoc| +2026-03-19 21:34:42.2431|DEBUG|OnDoc| +2026-03-19 21:34:42.2705|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 21:34:42.2705|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 21:34:42.8595|DEBUG|OnDoc|Generate_Word +2026-03-19 21:34:42.8743|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020339 +2026-03-19 21:34:42.8743|INFO|DocLog|Dokument über API erstellt +2026-03-19 21:34:42.8743|INFO|APIDocLog|Dokument return to sender +2026-03-19 21:34:42.8743|DEBUG|OnDoc| +2026-03-19 21:34:42.8912|DEBUG|OnDoc| +2026-03-19 21:34:42.8912|DEBUG|OnDoc| +2026-03-19 21:34:42.8912|DEBUG|OnDoc| +2026-03-19 21:34:42.8912|DEBUG|OnDoc| +2026-03-19 21:34:42.8912|DEBUG|OnDoc| +2026-03-19 21:35:01.3148|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 21:35:01.4115|INFO|APIDocLog|Start CreateDoc +2026-03-19 21:35:01.4371|INFO|APIDocLog|Input JSON +2026-03-19 21:35:01.4371|DEBUG|OnDoc|Start GenDoc +2026-03-19 21:35:01.4371|DEBUG|OnDoc| +2026-03-19 21:35:01.4371|DEBUG|OnDoc| +2026-03-19 21:35:01.4371|DEBUG|OnDoc| +2026-03-19 21:35:01.4371|DEBUG|OnDoc| +2026-03-19 21:35:01.4371|DEBUG|OnDoc| +2026-03-19 21:35:01.4371|DEBUG|OnDoc| +2026-03-19 21:35:01.4371|DEBUG|OnDoc| +2026-03-19 21:35:01.4371|DEBUG|OnDoc| +2026-03-19 21:35:01.4371|DEBUG|OnDoc| +2026-03-19 21:35:01.4371|DEBUG|OnDoc| +2026-03-19 21:35:01.4371|DEBUG|OnDoc| +2026-03-19 21:35:01.4371|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4463|DEBUG|OnDoc| +2026-03-19 21:35:01.4825|DEBUG|OnDoc| +2026-03-19 21:35:01.4825|DEBUG|OnDoc| +2026-03-19 21:35:01.4929|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 21:35:01.5408|DEBUG|OnDoc| +2026-03-19 21:35:01.5408|DEBUG|OnDoc| +2026-03-19 21:35:01.5557|DEBUG|OnDoc| +2026-03-19 21:35:01.5557|DEBUG|OnDoc| +2026-03-19 21:35:01.5557|DEBUG|OnDoc| +2026-03-19 21:35:01.5557|DEBUG|OnDoc| +2026-03-19 21:35:01.5557|DEBUG|OnDoc| +2026-03-19 21:35:01.5557|DEBUG|OnDoc| +2026-03-19 21:35:01.5824|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 21:35:01.5824|DEBUG|OnDoc| +2026-03-19 21:35:01.5890|DEBUG|OnDoc| +2026-03-19 21:35:01.5890|DEBUG|OnDoc| +2026-03-19 21:35:01.5890|DEBUG|OnDoc| +2026-03-19 21:35:01.5890|DEBUG|OnDoc| +2026-03-19 21:35:01.5890|DEBUG|OnDoc| +2026-03-19 21:35:01.5890|DEBUG|OnDoc| +2026-03-19 21:35:01.6068|DEBUG|OnDoc| +2026-03-19 21:35:01.6068|DEBUG|OnDoc|Generate_Word +2026-03-19 21:35:01.6068|DEBUG|OnDoc|Word2013 +2026-03-19 21:35:01.6068|DEBUG|OnDoc|Word2013 +2026-03-19 21:35:03.6004|DEBUG|OnDoc| +2026-03-19 21:35:03.6098|DEBUG|OnDoc| +2026-03-19 21:35:03.6370|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 21:35:03.6370|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 21:35:03.6832|DEBUG|OnDoc| +2026-03-19 21:35:03.6832|DEBUG|OnDoc| +2026-03-19 21:35:03.7109|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 21:35:03.7134|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 21:35:04.3806|DEBUG|OnDoc|Generate_Word +2026-03-19 21:35:04.3962|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020347 +2026-03-19 21:35:04.3962|INFO|DocLog|Dokument über API erstellt +2026-03-19 21:35:04.3995|INFO|APIDocLog|Dokument return to sender +2026-03-19 21:35:04.3995|DEBUG|OnDoc| +2026-03-19 21:35:04.4229|DEBUG|OnDoc| +2026-03-19 21:35:04.4229|DEBUG|OnDoc| +2026-03-19 21:35:04.4229|DEBUG|OnDoc| +2026-03-19 21:35:04.4229|DEBUG|OnDoc| +2026-03-19 21:35:04.4229|DEBUG|OnDoc| +2026-03-19 21:35:37.1296|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 21:35:37.2143|INFO|APIDocLog|Start CreateDoc +2026-03-19 21:35:37.2459|INFO|APIDocLog|Input JSON +2026-03-19 21:35:37.2459|DEBUG|OnDoc|Start GenDoc +2026-03-19 21:35:37.2459|DEBUG|OnDoc| +2026-03-19 21:35:37.2459|DEBUG|OnDoc| +2026-03-19 21:35:37.2459|DEBUG|OnDoc| +2026-03-19 21:35:37.2459|DEBUG|OnDoc| +2026-03-19 21:35:37.2459|DEBUG|OnDoc| +2026-03-19 21:35:37.2459|DEBUG|OnDoc| +2026-03-19 21:35:37.2459|DEBUG|OnDoc| +2026-03-19 21:35:37.2459|DEBUG|OnDoc| +2026-03-19 21:35:37.2459|DEBUG|OnDoc| +2026-03-19 21:35:37.2459|DEBUG|OnDoc| +2026-03-19 21:35:37.2459|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2583|DEBUG|OnDoc| +2026-03-19 21:35:37.2957|DEBUG|OnDoc| +2026-03-19 21:35:37.2957|DEBUG|OnDoc| +2026-03-19 21:35:37.3079|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 21:35:37.3676|DEBUG|OnDoc| +2026-03-19 21:35:37.3676|DEBUG|OnDoc| +2026-03-19 21:35:37.3858|DEBUG|OnDoc| +2026-03-19 21:35:37.3858|DEBUG|OnDoc| +2026-03-19 21:35:37.3858|DEBUG|OnDoc| +2026-03-19 21:35:37.3858|DEBUG|OnDoc| +2026-03-19 21:35:37.3858|DEBUG|OnDoc| +2026-03-19 21:35:37.3996|DEBUG|OnDoc| +2026-03-19 21:35:37.4182|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 21:35:37.4182|DEBUG|OnDoc| +2026-03-19 21:35:37.4182|DEBUG|OnDoc| +2026-03-19 21:35:37.4182|DEBUG|OnDoc| +2026-03-19 21:35:37.4182|DEBUG|OnDoc| +2026-03-19 21:35:37.4182|DEBUG|OnDoc| +2026-03-19 21:35:37.4317|DEBUG|OnDoc| +2026-03-19 21:35:37.4317|DEBUG|OnDoc| +2026-03-19 21:35:37.4317|DEBUG|OnDoc| +2026-03-19 21:35:37.4317|DEBUG|OnDoc|Generate_Word +2026-03-19 21:35:37.4465|DEBUG|OnDoc|Word2013 +2026-03-19 21:35:37.4465|DEBUG|OnDoc|Word2013 +2026-03-19 21:35:39.2193|DEBUG|OnDoc| +2026-03-19 21:35:39.2294|DEBUG|OnDoc| +2026-03-19 21:35:39.2544|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 21:35:39.2544|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 21:35:39.3019|DEBUG|OnDoc| +2026-03-19 21:35:39.3019|DEBUG|OnDoc| +2026-03-19 21:35:39.3305|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 21:35:39.3305|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 21:35:39.9315|DEBUG|OnDoc|Generate_Word +2026-03-19 21:35:39.9315|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020355 +2026-03-19 21:35:39.9315|INFO|DocLog|Dokument über API erstellt +2026-03-19 21:35:39.9471|INFO|APIDocLog|Dokument return to sender +2026-03-19 21:35:39.9471|DEBUG|OnDoc| +2026-03-19 21:35:39.9471|DEBUG|OnDoc| +2026-03-19 21:35:39.9471|DEBUG|OnDoc| +2026-03-19 21:35:39.9616|DEBUG|OnDoc| +2026-03-19 21:35:39.9616|DEBUG|OnDoc| +2026-03-19 21:35:39.9616|DEBUG|OnDoc| +2026-03-19 21:35:57.0453|INFO|APIDocLog|DokumentGegnerator Start +2026-03-19 21:35:57.1632|INFO|APIDocLog|Start CreateDoc +2026-03-19 21:35:57.2090|INFO|APIDocLog|Input JSON +2026-03-19 21:35:57.2121|DEBUG|OnDoc|Start GenDoc +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2121|DEBUG|OnDoc| +2026-03-19 21:35:57.2279|DEBUG|OnDoc| +2026-03-19 21:35:57.2279|DEBUG|OnDoc| +2026-03-19 21:35:57.2279|DEBUG|OnDoc| +2026-03-19 21:35:57.2279|DEBUG|OnDoc| +2026-03-19 21:35:57.2279|DEBUG|OnDoc| +2026-03-19 21:35:57.2451|DEBUG|OnDoc| +2026-03-19 21:35:57.2451|DEBUG|OnDoc| +2026-03-19 21:35:57.2451|INFO|OnDoc|Image-Bezug: 4 +2026-03-19 21:35:57.3089|DEBUG|OnDoc| +2026-03-19 21:35:57.3089|DEBUG|OnDoc| +2026-03-19 21:35:57.3248|DEBUG|OnDoc| +2026-03-19 21:35:57.3248|DEBUG|OnDoc| +2026-03-19 21:35:57.3248|DEBUG|OnDoc| +2026-03-19 21:35:57.3248|DEBUG|OnDoc| +2026-03-19 21:35:57.3248|DEBUG|OnDoc| +2026-03-19 21:35:57.3248|DEBUG|OnDoc| +2026-03-19 21:35:57.3500|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-03-19 21:35:57.3500|DEBUG|OnDoc| +2026-03-19 21:35:57.3580|DEBUG|OnDoc| +2026-03-19 21:35:57.3580|DEBUG|OnDoc| +2026-03-19 21:35:57.3580|DEBUG|OnDoc| +2026-03-19 21:35:57.3580|DEBUG|OnDoc| +2026-03-19 21:35:57.3580|DEBUG|OnDoc| +2026-03-19 21:35:57.3580|DEBUG|OnDoc| +2026-03-19 21:35:57.3700|DEBUG|OnDoc| +2026-03-19 21:35:57.3700|DEBUG|OnDoc|Generate_Word +2026-03-19 21:35:57.3700|DEBUG|OnDoc|Word2013 +2026-03-19 21:35:57.3700|DEBUG|OnDoc|Word2013 +2026-03-19 21:35:59.7864|DEBUG|OnDoc| +2026-03-19 21:35:59.7974|DEBUG|OnDoc| +2026-03-19 21:35:59.8220|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal +2026-03-19 21:35:59.8220|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal +2026-03-19 21:35:59.8681|DEBUG|OnDoc| +2026-03-19 21:35:59.8681|DEBUG|OnDoc| +2026-03-19 21:35:59.8962|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494 +2026-03-19 21:35:59.8962|INFO|OnDoc|Unterschrift-Bezug: TG0494 +2026-03-19 21:36:00.5491|DEBUG|OnDoc|Generate_Word +2026-03-19 21:36:00.5619|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020360 +2026-03-19 21:36:00.5619|INFO|DocLog|Dokument über API erstellt +2026-03-19 21:36:00.5619|INFO|APIDocLog|Dokument return to sender +2026-03-19 21:36:00.5619|DEBUG|OnDoc| +2026-03-19 21:36:00.5747|DEBUG|OnDoc| +2026-03-19 21:36:00.5747|DEBUG|OnDoc| +2026-03-19 21:36:00.5747|DEBUG|OnDoc| +2026-03-19 21:36:00.5747|DEBUG|OnDoc| +2026-03-19 21:36:00.5747|DEBUG|OnDoc| diff --git a/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache b/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache index c300ac509..5398fc3e1 100644 Binary files a/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache and b/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache differ diff --git a/API_NetFramework/obj/Debug/API_NetFramework.csproj.CoreCompileInputs.cache b/API_NetFramework/obj/Debug/API_NetFramework.csproj.CoreCompileInputs.cache index f86aab70a..12ec8be95 100644 --- a/API_NetFramework/obj/Debug/API_NetFramework.csproj.CoreCompileInputs.cache +++ b/API_NetFramework/obj/Debug/API_NetFramework.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -03f618b2dfc5f393b66a9ae6511309a83729393b6f45a1f633a74efbbfb6c43b +0358c1c86ae90780049baadd92e8b1a6c37002f6fdab06531303b154229e8122 diff --git a/API_NetFramework/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/API_NetFramework/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index e033462e2..08c487154 100644 Binary files a/API_NetFramework/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/API_NetFramework/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/API_NetFramework/obj/Debug/OnDoc_NetFramework.dll b/API_NetFramework/obj/Debug/OnDoc_NetFramework.dll index 7b025819c..995176178 100644 Binary files a/API_NetFramework/obj/Debug/OnDoc_NetFramework.dll and b/API_NetFramework/obj/Debug/OnDoc_NetFramework.dll differ diff --git a/API_NetFramework/obj/Debug/OnDoc_NetFramework.pdb b/API_NetFramework/obj/Debug/OnDoc_NetFramework.pdb index b8e98d4e2..ffa272b54 100644 Binary files a/API_NetFramework/obj/Debug/OnDoc_NetFramework.pdb and b/API_NetFramework/obj/Debug/OnDoc_NetFramework.pdb differ diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/App_Data/TableConfig.json b/API_NetFramework/obj/Debug/Package/PackageTmp/App_Data/TableConfig.json new file mode 100644 index 000000000..097a4483b --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/App_Data/TableConfig.json @@ -0,0 +1,54 @@ +{ + "tables": [ + { + "key": "Ondoc_Versandstrasse_Paket", + "displayName": "Ondoc_Versandstrasse_Paket", + "sqlList": "SELECT ID, erstellt_am as Name from Ondoc_Versandstrasse_Paket order by Id desc", + "sqlById": "SELECT paket as JsonData from Ondoc_Versandstrasse_Paket where id= @id ", + "idField": "ID", + "displayField": "ID", + "jsonField": "JsonData", + "Buttons": "Öffnen", + "AnzeigeDokument": "", + "FilterColumns": "" + }, + { + "key": "NLOGApiDoc", + "displayName": "APIDoc", + "sqlList": "SELECT ID, CreatedOn, GUID from edoka_journale.dbo.nlogapidoc where message='Input JSON' and isnull(div,'')<>'' order by Id desc", + "sqlById": "SELECT div as JsonData from edoka_journale.dbo.nlogapidoc where id= @id ", + "idField": "ID", + "displayField": "ID", + "jsonField": "JsonData", + "Buttons": "Öffnen", + "AnzeigeDokument": "", + "FilterColumns": "GUID" + + }, + { + "key": "CLMDokumente", + "displayName": "CLM-Dokumente", + "sqlList": "SELECT ID, clmdokumentid as CLM_ID, GUID, Erstellt_Am, Aktiv, Archivstatus, Archiviert from ondoc_clm_dokumente [FILTER] order by Id desc", + "sqlById": "SELECT jsondata as JsonData from ondoc_clm_dokumente where id= @id ", + "idField": "ID", + "displayField": "ID", + "jsonField": "JsonData", + "Buttons": "Öffnen;Anzeigen", + "AnzeigeDokument": "SELECT dbo.BinaryToBase64(dokument) FROM dbo.OnDoc_CLM_Dokumente INNER JOIN dbo.Doks ON dbo.OnDoc_CLM_Dokumente.dokumentid = dbo.Doks.DokumentID where dbo.ondoc_clm_dokumente.id=@id", + "FilterColumns": "clmdokumentid;archivstatus" + }, + { + "key": "CLMJournal", + "displayName": "CLM-Journal", + "sqlList": "SELECT ID, clmdokumentid as CLM_ID, Dokumentid, GUID, Erstellt_Am, Aktiv, Archivstatus, Archiviert, Archiviert_am from ondoc_clm_dokumente [FILTER] order by Id desc", + "sqlById": " ", + "idField": "ID", + "displayField": "ID", + "jsonField": "", + "Buttons": "Anzeigen", + "AnzeigeDokument": "SELECT dbo.BinaryToBase64(dokument) FROM dbo.OnDoc_CLM_Dokumente INNER JOIN dbo.Doks ON dbo.OnDoc_CLM_Dokumente.dokumentid = dbo.Doks.DokumentID where dbo.ondoc_clm_dokumente.id=@id", + "FilterColumns": "clmdokumentid;archivstatus;dokumentid" + } + + ] +} \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/App_Data/users.json b/API_NetFramework/obj/Debug/Package/PackageTmp/App_Data/users.json new file mode 100644 index 000000000..dcd3d2cfc --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/App_Data/users.json @@ -0,0 +1,10 @@ +[ + { + "UserID": "admin", + "Password": "1234" + }, + { + "UserID": "user1", + "Password": "pass1" + } +] \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/HelpPage.css b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/HelpPage.css new file mode 100644 index 000000000..aff223033 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/HelpPage.css @@ -0,0 +1,134 @@ +.help-page h1, +.help-page .h1, +.help-page h2, +.help-page .h2, +.help-page h3, +.help-page .h3, +#body.help-page, +.help-page-table th, +.help-page-table pre, +.help-page-table p { + font-family: "Segoe UI Light", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; +} + +.help-page pre.wrapped { + white-space: -moz-pre-wrap; + white-space: -pre-wrap; + white-space: -o-pre-wrap; + white-space: pre-wrap; +} + +.help-page .warning-message-container { + margin-top: 20px; + padding: 0 10px; + color: #525252; + background: #EFDCA9; + border: 1px solid #CCCCCC; +} + +.help-page-table { + width: 100%; + border-collapse: collapse; + text-align: left; + margin: 0px 0px 20px 0px; + border-top: 1px solid #D4D4D4; +} + +.help-page-table th { + text-align: left; + font-weight: bold; + border-bottom: 1px solid #D4D4D4; + padding: 5px 6px 5px 6px; +} + +.help-page-table td { + border-bottom: 1px solid #D4D4D4; + padding: 10px 8px 10px 8px; + vertical-align: top; +} + +.help-page-table pre, +.help-page-table p { + margin: 0px; + padding: 0px; + font-family: inherit; + font-size: 100%; +} + +.help-page-table tbody tr:hover td { + background-color: #F3F3F3; +} + +.help-page a:hover { + background-color: transparent; +} + +.help-page .sample-header { + border: 2px solid #D4D4D4; + background: #00497E; + color: #FFFFFF; + padding: 8px 15px; + border-bottom: none; + display: inline-block; + margin: 10px 0px 0px 0px; +} + +.help-page .sample-content { + display: block; + border-width: 0; + padding: 15px 20px; + background: #FFFFFF; + border: 2px solid #D4D4D4; + margin: 0px 0px 10px 0px; +} + +.help-page .api-name { + width: 40%; +} + +.help-page .api-documentation { + width: 60%; +} + +.help-page .parameter-name { + width: 20%; +} + +.help-page .parameter-documentation { + width: 40%; +} + +.help-page .parameter-type { + width: 20%; +} + +.help-page .parameter-annotations { + width: 20%; +} + +.help-page h1, +.help-page .h1 { + font-size: 36px; + line-height: normal; +} + +.help-page h2, +.help-page .h2 { + font-size: 24px; +} + +.help-page h3, +.help-page .h3 { + font-size: 20px; +} + +#body.help-page { + font-size: 14px; + line-height: 143%; + color: #333; +} + +.help-page a { + color: #0000EE; + text-decoration: none; +} diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/Api.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/Api.cshtml new file mode 100644 index 000000000..9b853ea29 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/Api.cshtml @@ -0,0 +1,22 @@ +@using System.Web.Http +@using API_NetFramework.Areas.HelpPage.Models +@model HelpPageApiModel + +@{ + var description = Model.ApiDescription; + ViewBag.Title = description.HttpMethod.Method + " " + description.RelativePath; +} + + +
+ +
+ @Html.DisplayForModel() +
+
diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml new file mode 100644 index 000000000..757c9358a --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml @@ -0,0 +1,41 @@ +@using System.Web.Http +@using System.Web.Http.Controllers +@using System.Web.Http.Description +@using API_NetFramework.Areas.HelpPage +@using API_NetFramework.Areas.HelpPage.Models +@model IGrouping + +@{ + var controllerDocumentation = ViewBag.DocumentationProvider != null ? + ViewBag.DocumentationProvider.GetDocumentation(Model.Key) : + null; +} + +

@Model.Key.ControllerName

+@if (!String.IsNullOrEmpty(controllerDocumentation)) +{ +

@controllerDocumentation

+} + + + + + + @foreach (var api in Model) + { + + + + + } + +
APIDescription
@api.HttpMethod.Method @api.RelativePath + @if (api.Documentation != null) + { +

@api.Documentation

+ } + else + { +

No documentation available.

+ } +
\ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml new file mode 100644 index 000000000..30bec1664 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml @@ -0,0 +1,6 @@ +@using API_NetFramework.Areas.HelpPage.ModelDescriptions +@model CollectionModelDescription +@if (Model.ElementDescription is ComplexTypeModelDescription) +{ + @Html.DisplayFor(m => m.ElementDescription) +} \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml new file mode 100644 index 000000000..985ad9d74 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml @@ -0,0 +1,3 @@ +@using API_NetFramework.Areas.HelpPage.ModelDescriptions +@model ComplexTypeModelDescription +@Html.DisplayFor(m => m.Properties, "Parameters") \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml new file mode 100644 index 000000000..d90b2ce1f --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml @@ -0,0 +1,4 @@ +@using API_NetFramework.Areas.HelpPage.ModelDescriptions +@model DictionaryModelDescription +Dictionary of @Html.DisplayFor(m => Model.KeyModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.KeyModelDescription }) [key] +and @Html.DisplayFor(m => Model.ValueModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.ValueModelDescription }) [value] \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml new file mode 100644 index 000000000..90be5a8a9 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml @@ -0,0 +1,24 @@ +@using API_NetFramework.Areas.HelpPage.ModelDescriptions +@model EnumTypeModelDescription + +

Possible enumeration values:

+ + + + + + + @foreach (EnumValueDescription value in Model.Values) + { + + + + + + } + +
NameValueDescription
@value.Name +

@value.Value

+
+

@value.Documentation

+
\ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml new file mode 100644 index 000000000..e492c4a7b --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml @@ -0,0 +1,67 @@ +@using System.Web.Http +@using System.Web.Http.Description +@using API_NetFramework.Areas.HelpPage.Models +@using API_NetFramework.Areas.HelpPage.ModelDescriptions +@model HelpPageApiModel + +@{ + ApiDescription description = Model.ApiDescription; +} +

@description.HttpMethod.Method @description.RelativePath

+
+

@description.Documentation

+ +

Request Information

+ +

URI Parameters

+ @Html.DisplayFor(m => m.UriParameters, "Parameters") + +

Body Parameters

+ +

@Model.RequestDocumentation

+ + @if (Model.RequestModelDescription != null) + { + @Html.DisplayFor(m => m.RequestModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.RequestModelDescription }) + if (Model.RequestBodyParameters != null) + { + @Html.DisplayFor(m => m.RequestBodyParameters, "Parameters") + } + } + else + { +

None.

+ } + + @if (Model.SampleRequests.Count > 0) + { +

Request Formats

+ @Html.DisplayFor(m => m.SampleRequests, "Samples") + } + +

Response Information

+ +

Resource Description

+ +

@description.ResponseDescription.Documentation

+ + @if (Model.ResourceDescription != null) + { + @Html.DisplayFor(m => m.ResourceDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.ResourceDescription }) + if (Model.ResourceProperties != null) + { + @Html.DisplayFor(m => m.ResourceProperties, "Parameters") + } + } + else + { +

None.

+ } + + @if (Model.SampleResponses.Count > 0) + { +

Response Formats

+ @Html.DisplayFor(m => m.SampleResponses, "Samples") + } + +
\ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml new file mode 100644 index 000000000..47c44937b --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml @@ -0,0 +1,4 @@ +@using API_NetFramework.Areas.HelpPage +@model ImageSample + + \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml new file mode 100644 index 000000000..5045c1794 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml @@ -0,0 +1,13 @@ +@using API_NetFramework.Areas.HelpPage +@model InvalidSample + +@if (HttpContext.Current.IsDebuggingEnabled) +{ +
+

@Model.ErrorMessage

+
+} +else +{ +

Sample not available.

+} \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml new file mode 100644 index 000000000..8e1f2b64e --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml @@ -0,0 +1,4 @@ +@using API_NetFramework.Areas.HelpPage.ModelDescriptions +@model KeyValuePairModelDescription +Pair of @Html.DisplayFor(m => Model.KeyModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.KeyModelDescription }) [key] +and @Html.DisplayFor(m => Model.ValueModelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = Model.ValueModelDescription }) [value] \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml new file mode 100644 index 000000000..f88d6bf67 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml @@ -0,0 +1,26 @@ +@using API_NetFramework.Areas.HelpPage.ModelDescriptions +@model Type +@{ + ModelDescription modelDescription = ViewBag.modelDescription; + if (modelDescription is ComplexTypeModelDescription || modelDescription is EnumTypeModelDescription) + { + if (Model == typeof(Object)) + { + @:Object + } + else + { + @Html.ActionLink(modelDescription.Name, "ResourceModel", "Help", new { modelName = modelDescription.Name }, null) + } + } + else if (modelDescription is CollectionModelDescription) + { + var collectionDescription = modelDescription as CollectionModelDescription; + var elementDescription = collectionDescription.ElementDescription; + @:Collection of @Html.DisplayFor(m => elementDescription.ModelType, "ModelDescriptionLink", new { modelDescription = elementDescription }) + } + else + { + @Html.DisplayFor(m => modelDescription) + } +} \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml new file mode 100644 index 000000000..e8f3c82c5 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml @@ -0,0 +1,48 @@ +@using System.Collections.Generic +@using System.Collections.ObjectModel +@using System.Web.Http.Description +@using System.Threading +@using API_NetFramework.Areas.HelpPage.ModelDescriptions +@model IList + +@if (Model.Count > 0) +{ + + + + + + @foreach (ParameterDescription parameter in Model) + { + ModelDescription modelDescription = parameter.TypeDescription; + + + + + + + } + +
NameDescriptionTypeAdditional information
@parameter.Name +

@parameter.Documentation

+
+ @Html.DisplayFor(m => modelDescription.ModelType, "ModelDescriptionLink", new { modelDescription = modelDescription }) + + @if (parameter.Annotations.Count > 0) + { + foreach (var annotation in parameter.Annotations) + { +

@annotation.Documentation

+ } + } + else + { +

None.

+ } +
+} +else +{ +

None.

+} + diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml new file mode 100644 index 000000000..c19596fb1 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml @@ -0,0 +1,30 @@ +@using System.Net.Http.Headers +@model Dictionary + +@{ + // Group the samples into a single tab if they are the same. + Dictionary samples = Model.GroupBy(pair => pair.Value).ToDictionary( + pair => String.Join(", ", pair.Select(m => m.Key.ToString()).ToArray()), + pair => pair.Key); + var mediaTypes = samples.Keys; +} +
+ @foreach (var mediaType in mediaTypes) + { +

@mediaType

+
+ Sample: + @{ + var sample = samples[mediaType]; + if (sample == null) + { +

Sample not available.

+ } + else + { + @Html.DisplayFor(s => sample); + } + } +
+ } +
\ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml new file mode 100644 index 000000000..e79b88682 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml @@ -0,0 +1,3 @@ +@using API_NetFramework.Areas.HelpPage.ModelDescriptions +@model SimpleTypeModelDescription +@Model.Documentation \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml new file mode 100644 index 000000000..76897f896 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml @@ -0,0 +1,6 @@ +@using API_NetFramework.Areas.HelpPage +@model TextSample + +
+@Model.Text
+
\ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/Index.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/Index.cshtml new file mode 100644 index 000000000..9de6fecfe --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/Index.cshtml @@ -0,0 +1,38 @@ +@using System.Web.Http +@using System.Web.Http.Controllers +@using System.Web.Http.Description +@using System.Collections.ObjectModel +@using API_NetFramework.Areas.HelpPage.Models +@model Collection + +@{ + ViewBag.Title = "ASP.NET Web API Help Page"; + + // Group APIs by controller + ILookup apiGroups = Model.ToLookup(api => api.ActionDescriptor.ControllerDescriptor); +} + + +
+
+
+

@ViewBag.Title

+
+
+
+
+ +
+ @foreach (var group in apiGroups) + { + @Html.DisplayFor(m => group, "ApiGroup") + } +
+
diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/ResourceModel.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/ResourceModel.cshtml new file mode 100644 index 000000000..c7624c0fd --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Help/ResourceModel.cshtml @@ -0,0 +1,19 @@ +@using System.Web.Http +@using API_NetFramework.Areas.HelpPage.ModelDescriptions +@model ModelDescription + + +
+ +

@Model.Name

+

@Model.Documentation

+
+ @Html.DisplayFor(m => Model) +
+
diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Shared/_Layout.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Shared/_Layout.cshtml new file mode 100644 index 000000000..896c833a0 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Shared/_Layout.cshtml @@ -0,0 +1,12 @@ + + + + + + @ViewBag.Title + @RenderSection("scripts", required: false) + + + @RenderBody() + + \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Web.config b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Web.config new file mode 100644 index 000000000..5ce411ea8 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/Web.config @@ -0,0 +1,41 @@ + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/_ViewStart.cshtml b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/_ViewStart.cshtml new file mode 100644 index 000000000..a92595083 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Areas/HelpPage/Views/_ViewStart.cshtml @@ -0,0 +1,4 @@ +@{ + // Change the Layout path below to blend the look and feel of the help page with your existing web pages. + Layout = "~/Areas/HelpPage/Views/Shared/_Layout.cshtml"; +} \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/CLM.aspx b/API_NetFramework/obj/Debug/Package/PackageTmp/CLM.aspx new file mode 100644 index 000000000..f3b29fdc2 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/CLM.aspx @@ -0,0 +1,381 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CLM.aspx.cs" Inherits="WebApp.CLM" %> + + + + + <%--Daten & JSON Editor--%> + + + + + + + + + <%-- + --%> + + + + + + +
+
+ +
+ +
+
+

Selektion

+

+ Tabelle + + + + + + + + + + + + +

+ + + + +
+ + + +
+ + <%-- + + +      + + + + + + --%> + + + + + +
+ +
+ + + + + + diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Content/Site.css b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/Site.css new file mode 100644 index 000000000..8b2ae4b58 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/Site.css @@ -0,0 +1,13 @@ +/* Set padding to keep content from hitting the edges */ +.body-content { + margin-top: 15px; + padding-left: 15px; + padding-right: 15px; +} + +/* Set width on the form input elements since they're 100% wide by default */ +input, +select, +textarea { + max-width: 280px; +} diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.css b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.css new file mode 100644 index 000000000..3882a8199 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.css @@ -0,0 +1,4085 @@ +/*! + * Bootstrap Grid v5.3.3 (https://getbootstrap.com/) + * Copyright 2011-2024 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +.container, +.container-fluid, +.container-xxl, +.container-xl, +.container-lg, +.container-md, +.container-sm { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + width: 100%; + padding-right: calc(var(--bs-gutter-x) * 0.5); + padding-left: calc(var(--bs-gutter-x) * 0.5); + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + .container-sm, .container { + max-width: 540px; + } +} +@media (min-width: 768px) { + .container-md, .container-sm, .container { + max-width: 720px; + } +} +@media (min-width: 992px) { + .container-lg, .container-md, .container-sm, .container { + max-width: 960px; + } +} +@media (min-width: 1200px) { + .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1140px; + } +} +@media (min-width: 1400px) { + .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1320px; + } +} +:root { + --bs-breakpoint-xs: 0; + --bs-breakpoint-sm: 576px; + --bs-breakpoint-md: 768px; + --bs-breakpoint-lg: 992px; + --bs-breakpoint-xl: 1200px; + --bs-breakpoint-xxl: 1400px; +} + +.row { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(-1 * var(--bs-gutter-y)); + margin-right: calc(-0.5 * var(--bs-gutter-x)); + margin-left: calc(-0.5 * var(--bs-gutter-x)); +} +.row > * { + box-sizing: border-box; + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-right: calc(var(--bs-gutter-x) * 0.5); + padding-left: calc(var(--bs-gutter-x) * 0.5); + margin-top: var(--bs-gutter-y); +} + +.col { + flex: 1 0 0%; +} + +.row-cols-auto > * { + flex: 0 0 auto; + width: auto; +} + +.row-cols-1 > * { + flex: 0 0 auto; + width: 100%; +} + +.row-cols-2 > * { + flex: 0 0 auto; + width: 50%; +} + +.row-cols-3 > * { + flex: 0 0 auto; + width: 33.33333333%; +} + +.row-cols-4 > * { + flex: 0 0 auto; + width: 25%; +} + +.row-cols-5 > * { + flex: 0 0 auto; + width: 20%; +} + +.row-cols-6 > * { + flex: 0 0 auto; + width: 16.66666667%; +} + +.col-auto { + flex: 0 0 auto; + width: auto; +} + +.col-1 { + flex: 0 0 auto; + width: 8.33333333%; +} + +.col-2 { + flex: 0 0 auto; + width: 16.66666667%; +} + +.col-3 { + flex: 0 0 auto; + width: 25%; +} + +.col-4 { + flex: 0 0 auto; + width: 33.33333333%; +} + +.col-5 { + flex: 0 0 auto; + width: 41.66666667%; +} + +.col-6 { + flex: 0 0 auto; + width: 50%; +} + +.col-7 { + flex: 0 0 auto; + width: 58.33333333%; +} + +.col-8 { + flex: 0 0 auto; + width: 66.66666667%; +} + +.col-9 { + flex: 0 0 auto; + width: 75%; +} + +.col-10 { + flex: 0 0 auto; + width: 83.33333333%; +} + +.col-11 { + flex: 0 0 auto; + width: 91.66666667%; +} + +.col-12 { + flex: 0 0 auto; + width: 100%; +} + +.offset-1 { + margin-left: 8.33333333%; +} + +.offset-2 { + margin-left: 16.66666667%; +} + +.offset-3 { + margin-left: 25%; +} + +.offset-4 { + margin-left: 33.33333333%; +} + +.offset-5 { + margin-left: 41.66666667%; +} + +.offset-6 { + margin-left: 50%; +} + +.offset-7 { + margin-left: 58.33333333%; +} + +.offset-8 { + margin-left: 66.66666667%; +} + +.offset-9 { + margin-left: 75%; +} + +.offset-10 { + margin-left: 83.33333333%; +} + +.offset-11 { + margin-left: 91.66666667%; +} + +.g-0, +.gx-0 { + --bs-gutter-x: 0; +} + +.g-0, +.gy-0 { + --bs-gutter-y: 0; +} + +.g-1, +.gx-1 { + --bs-gutter-x: 0.25rem; +} + +.g-1, +.gy-1 { + --bs-gutter-y: 0.25rem; +} + +.g-2, +.gx-2 { + --bs-gutter-x: 0.5rem; +} + +.g-2, +.gy-2 { + --bs-gutter-y: 0.5rem; +} + +.g-3, +.gx-3 { + --bs-gutter-x: 1rem; +} + +.g-3, +.gy-3 { + --bs-gutter-y: 1rem; +} + +.g-4, +.gx-4 { + --bs-gutter-x: 1.5rem; +} + +.g-4, +.gy-4 { + --bs-gutter-y: 1.5rem; +} + +.g-5, +.gx-5 { + --bs-gutter-x: 3rem; +} + +.g-5, +.gy-5 { + --bs-gutter-y: 3rem; +} + +@media (min-width: 576px) { + .col-sm { + flex: 1 0 0%; + } + .row-cols-sm-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-sm-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-sm-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-sm-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-sm-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-sm-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-sm-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-auto { + flex: 0 0 auto; + width: auto; + } + .col-sm-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-sm-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-3 { + flex: 0 0 auto; + width: 25%; + } + .col-sm-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-sm-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-sm-6 { + flex: 0 0 auto; + width: 50%; + } + .col-sm-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-sm-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-sm-9 { + flex: 0 0 auto; + width: 75%; + } + .col-sm-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-sm-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-sm-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-sm-0 { + margin-left: 0; + } + .offset-sm-1 { + margin-left: 8.33333333%; + } + .offset-sm-2 { + margin-left: 16.66666667%; + } + .offset-sm-3 { + margin-left: 25%; + } + .offset-sm-4 { + margin-left: 33.33333333%; + } + .offset-sm-5 { + margin-left: 41.66666667%; + } + .offset-sm-6 { + margin-left: 50%; + } + .offset-sm-7 { + margin-left: 58.33333333%; + } + .offset-sm-8 { + margin-left: 66.66666667%; + } + .offset-sm-9 { + margin-left: 75%; + } + .offset-sm-10 { + margin-left: 83.33333333%; + } + .offset-sm-11 { + margin-left: 91.66666667%; + } + .g-sm-0, + .gx-sm-0 { + --bs-gutter-x: 0; + } + .g-sm-0, + .gy-sm-0 { + --bs-gutter-y: 0; + } + .g-sm-1, + .gx-sm-1 { + --bs-gutter-x: 0.25rem; + } + .g-sm-1, + .gy-sm-1 { + --bs-gutter-y: 0.25rem; + } + .g-sm-2, + .gx-sm-2 { + --bs-gutter-x: 0.5rem; + } + .g-sm-2, + .gy-sm-2 { + --bs-gutter-y: 0.5rem; + } + .g-sm-3, + .gx-sm-3 { + --bs-gutter-x: 1rem; + } + .g-sm-3, + .gy-sm-3 { + --bs-gutter-y: 1rem; + } + .g-sm-4, + .gx-sm-4 { + --bs-gutter-x: 1.5rem; + } + .g-sm-4, + .gy-sm-4 { + --bs-gutter-y: 1.5rem; + } + .g-sm-5, + .gx-sm-5 { + --bs-gutter-x: 3rem; + } + .g-sm-5, + .gy-sm-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 768px) { + .col-md { + flex: 1 0 0%; + } + .row-cols-md-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-md-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-md-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-md-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-md-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-md-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-md-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-auto { + flex: 0 0 auto; + width: auto; + } + .col-md-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-md-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-3 { + flex: 0 0 auto; + width: 25%; + } + .col-md-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-md-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-md-6 { + flex: 0 0 auto; + width: 50%; + } + .col-md-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-md-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-md-9 { + flex: 0 0 auto; + width: 75%; + } + .col-md-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-md-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-md-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-md-0 { + margin-left: 0; + } + .offset-md-1 { + margin-left: 8.33333333%; + } + .offset-md-2 { + margin-left: 16.66666667%; + } + .offset-md-3 { + margin-left: 25%; + } + .offset-md-4 { + margin-left: 33.33333333%; + } + .offset-md-5 { + margin-left: 41.66666667%; + } + .offset-md-6 { + margin-left: 50%; + } + .offset-md-7 { + margin-left: 58.33333333%; + } + .offset-md-8 { + margin-left: 66.66666667%; + } + .offset-md-9 { + margin-left: 75%; + } + .offset-md-10 { + margin-left: 83.33333333%; + } + .offset-md-11 { + margin-left: 91.66666667%; + } + .g-md-0, + .gx-md-0 { + --bs-gutter-x: 0; + } + .g-md-0, + .gy-md-0 { + --bs-gutter-y: 0; + } + .g-md-1, + .gx-md-1 { + --bs-gutter-x: 0.25rem; + } + .g-md-1, + .gy-md-1 { + --bs-gutter-y: 0.25rem; + } + .g-md-2, + .gx-md-2 { + --bs-gutter-x: 0.5rem; + } + .g-md-2, + .gy-md-2 { + --bs-gutter-y: 0.5rem; + } + .g-md-3, + .gx-md-3 { + --bs-gutter-x: 1rem; + } + .g-md-3, + .gy-md-3 { + --bs-gutter-y: 1rem; + } + .g-md-4, + .gx-md-4 { + --bs-gutter-x: 1.5rem; + } + .g-md-4, + .gy-md-4 { + --bs-gutter-y: 1.5rem; + } + .g-md-5, + .gx-md-5 { + --bs-gutter-x: 3rem; + } + .g-md-5, + .gy-md-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 992px) { + .col-lg { + flex: 1 0 0%; + } + .row-cols-lg-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-lg-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-lg-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-lg-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-lg-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-lg-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-lg-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-auto { + flex: 0 0 auto; + width: auto; + } + .col-lg-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-lg-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-3 { + flex: 0 0 auto; + width: 25%; + } + .col-lg-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-lg-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-lg-6 { + flex: 0 0 auto; + width: 50%; + } + .col-lg-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-lg-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-lg-9 { + flex: 0 0 auto; + width: 75%; + } + .col-lg-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-lg-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-lg-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-lg-0 { + margin-left: 0; + } + .offset-lg-1 { + margin-left: 8.33333333%; + } + .offset-lg-2 { + margin-left: 16.66666667%; + } + .offset-lg-3 { + margin-left: 25%; + } + .offset-lg-4 { + margin-left: 33.33333333%; + } + .offset-lg-5 { + margin-left: 41.66666667%; + } + .offset-lg-6 { + margin-left: 50%; + } + .offset-lg-7 { + margin-left: 58.33333333%; + } + .offset-lg-8 { + margin-left: 66.66666667%; + } + .offset-lg-9 { + margin-left: 75%; + } + .offset-lg-10 { + margin-left: 83.33333333%; + } + .offset-lg-11 { + margin-left: 91.66666667%; + } + .g-lg-0, + .gx-lg-0 { + --bs-gutter-x: 0; + } + .g-lg-0, + .gy-lg-0 { + --bs-gutter-y: 0; + } + .g-lg-1, + .gx-lg-1 { + --bs-gutter-x: 0.25rem; + } + .g-lg-1, + .gy-lg-1 { + --bs-gutter-y: 0.25rem; + } + .g-lg-2, + .gx-lg-2 { + --bs-gutter-x: 0.5rem; + } + .g-lg-2, + .gy-lg-2 { + --bs-gutter-y: 0.5rem; + } + .g-lg-3, + .gx-lg-3 { + --bs-gutter-x: 1rem; + } + .g-lg-3, + .gy-lg-3 { + --bs-gutter-y: 1rem; + } + .g-lg-4, + .gx-lg-4 { + --bs-gutter-x: 1.5rem; + } + .g-lg-4, + .gy-lg-4 { + --bs-gutter-y: 1.5rem; + } + .g-lg-5, + .gx-lg-5 { + --bs-gutter-x: 3rem; + } + .g-lg-5, + .gy-lg-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1200px) { + .col-xl { + flex: 1 0 0%; + } + .row-cols-xl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xl-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-xl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xl-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xl-0 { + margin-left: 0; + } + .offset-xl-1 { + margin-left: 8.33333333%; + } + .offset-xl-2 { + margin-left: 16.66666667%; + } + .offset-xl-3 { + margin-left: 25%; + } + .offset-xl-4 { + margin-left: 33.33333333%; + } + .offset-xl-5 { + margin-left: 41.66666667%; + } + .offset-xl-6 { + margin-left: 50%; + } + .offset-xl-7 { + margin-left: 58.33333333%; + } + .offset-xl-8 { + margin-left: 66.66666667%; + } + .offset-xl-9 { + margin-left: 75%; + } + .offset-xl-10 { + margin-left: 83.33333333%; + } + .offset-xl-11 { + margin-left: 91.66666667%; + } + .g-xl-0, + .gx-xl-0 { + --bs-gutter-x: 0; + } + .g-xl-0, + .gy-xl-0 { + --bs-gutter-y: 0; + } + .g-xl-1, + .gx-xl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xl-1, + .gy-xl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xl-2, + .gx-xl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xl-2, + .gy-xl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xl-3, + .gx-xl-3 { + --bs-gutter-x: 1rem; + } + .g-xl-3, + .gy-xl-3 { + --bs-gutter-y: 1rem; + } + .g-xl-4, + .gx-xl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xl-4, + .gy-xl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xl-5, + .gx-xl-5 { + --bs-gutter-x: 3rem; + } + .g-xl-5, + .gy-xl-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1400px) { + .col-xxl { + flex: 1 0 0%; + } + .row-cols-xxl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xxl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xxl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xxl-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-xxl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xxl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xxl-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xxl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xxl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xxl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xxl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xxl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xxl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xxl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xxl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xxl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xxl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xxl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xxl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xxl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xxl-0 { + margin-left: 0; + } + .offset-xxl-1 { + margin-left: 8.33333333%; + } + .offset-xxl-2 { + margin-left: 16.66666667%; + } + .offset-xxl-3 { + margin-left: 25%; + } + .offset-xxl-4 { + margin-left: 33.33333333%; + } + .offset-xxl-5 { + margin-left: 41.66666667%; + } + .offset-xxl-6 { + margin-left: 50%; + } + .offset-xxl-7 { + margin-left: 58.33333333%; + } + .offset-xxl-8 { + margin-left: 66.66666667%; + } + .offset-xxl-9 { + margin-left: 75%; + } + .offset-xxl-10 { + margin-left: 83.33333333%; + } + .offset-xxl-11 { + margin-left: 91.66666667%; + } + .g-xxl-0, + .gx-xxl-0 { + --bs-gutter-x: 0; + } + .g-xxl-0, + .gy-xxl-0 { + --bs-gutter-y: 0; + } + .g-xxl-1, + .gx-xxl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xxl-1, + .gy-xxl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xxl-2, + .gx-xxl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xxl-2, + .gy-xxl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xxl-3, + .gx-xxl-3 { + --bs-gutter-x: 1rem; + } + .g-xxl-3, + .gy-xxl-3 { + --bs-gutter-y: 1rem; + } + .g-xxl-4, + .gx-xxl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xxl-4, + .gy-xxl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xxl-5, + .gx-xxl-5 { + --bs-gutter-x: 3rem; + } + .g-xxl-5, + .gy-xxl-5 { + --bs-gutter-y: 3rem; + } +} +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-grid { + display: grid !important; +} + +.d-inline-grid { + display: inline-grid !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: flex !important; +} + +.d-inline-flex { + display: inline-flex !important; +} + +.d-none { + display: none !important; +} + +.flex-fill { + flex: 1 1 auto !important; +} + +.flex-row { + flex-direction: row !important; +} + +.flex-column { + flex-direction: column !important; +} + +.flex-row-reverse { + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + flex-direction: column-reverse !important; +} + +.flex-grow-0 { + flex-grow: 0 !important; +} + +.flex-grow-1 { + flex-grow: 1 !important; +} + +.flex-shrink-0 { + flex-shrink: 0 !important; +} + +.flex-shrink-1 { + flex-shrink: 1 !important; +} + +.flex-wrap { + flex-wrap: wrap !important; +} + +.flex-nowrap { + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} + +.justify-content-start { + justify-content: flex-start !important; +} + +.justify-content-end { + justify-content: flex-end !important; +} + +.justify-content-center { + justify-content: center !important; +} + +.justify-content-between { + justify-content: space-between !important; +} + +.justify-content-around { + justify-content: space-around !important; +} + +.justify-content-evenly { + justify-content: space-evenly !important; +} + +.align-items-start { + align-items: flex-start !important; +} + +.align-items-end { + align-items: flex-end !important; +} + +.align-items-center { + align-items: center !important; +} + +.align-items-baseline { + align-items: baseline !important; +} + +.align-items-stretch { + align-items: stretch !important; +} + +.align-content-start { + align-content: flex-start !important; +} + +.align-content-end { + align-content: flex-end !important; +} + +.align-content-center { + align-content: center !important; +} + +.align-content-between { + align-content: space-between !important; +} + +.align-content-around { + align-content: space-around !important; +} + +.align-content-stretch { + align-content: stretch !important; +} + +.align-self-auto { + align-self: auto !important; +} + +.align-self-start { + align-self: flex-start !important; +} + +.align-self-end { + align-self: flex-end !important; +} + +.align-self-center { + align-self: center !important; +} + +.align-self-baseline { + align-self: baseline !important; +} + +.align-self-stretch { + align-self: stretch !important; +} + +.order-first { + order: -1 !important; +} + +.order-0 { + order: 0 !important; +} + +.order-1 { + order: 1 !important; +} + +.order-2 { + order: 2 !important; +} + +.order-3 { + order: 3 !important; +} + +.order-4 { + order: 4 !important; +} + +.order-5 { + order: 5 !important; +} + +.order-last { + order: 6 !important; +} + +.m-0 { + margin: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mx-0 { + margin-right: 0 !important; + margin-left: 0 !important; +} + +.mx-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; +} + +.mx-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; +} + +.mx-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; +} + +.mx-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; +} + +.mx-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; +} + +.mx-auto { + margin-right: auto !important; + margin-left: auto !important; +} + +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; +} + +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; +} + +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; +} + +.my-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; +} + +.my-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; +} + +.my-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; +} + +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; +} + +.mt-0 { + margin-top: 0 !important; +} + +.mt-1 { + margin-top: 0.25rem !important; +} + +.mt-2 { + margin-top: 0.5rem !important; +} + +.mt-3 { + margin-top: 1rem !important; +} + +.mt-4 { + margin-top: 1.5rem !important; +} + +.mt-5 { + margin-top: 3rem !important; +} + +.mt-auto { + margin-top: auto !important; +} + +.me-0 { + margin-right: 0 !important; +} + +.me-1 { + margin-right: 0.25rem !important; +} + +.me-2 { + margin-right: 0.5rem !important; +} + +.me-3 { + margin-right: 1rem !important; +} + +.me-4 { + margin-right: 1.5rem !important; +} + +.me-5 { + margin-right: 3rem !important; +} + +.me-auto { + margin-right: auto !important; +} + +.mb-0 { + margin-bottom: 0 !important; +} + +.mb-1 { + margin-bottom: 0.25rem !important; +} + +.mb-2 { + margin-bottom: 0.5rem !important; +} + +.mb-3 { + margin-bottom: 1rem !important; +} + +.mb-4 { + margin-bottom: 1.5rem !important; +} + +.mb-5 { + margin-bottom: 3rem !important; +} + +.mb-auto { + margin-bottom: auto !important; +} + +.ms-0 { + margin-left: 0 !important; +} + +.ms-1 { + margin-left: 0.25rem !important; +} + +.ms-2 { + margin-left: 0.5rem !important; +} + +.ms-3 { + margin-left: 1rem !important; +} + +.ms-4 { + margin-left: 1.5rem !important; +} + +.ms-5 { + margin-left: 3rem !important; +} + +.ms-auto { + margin-left: auto !important; +} + +.p-0 { + padding: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.px-0 { + padding-right: 0 !important; + padding-left: 0 !important; +} + +.px-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; +} + +.px-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; +} + +.px-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; +} + +.px-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; +} + +.px-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; +} + +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} + +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; +} + +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; +} + +.py-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; +} + +.py-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; +} + +.py-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; +} + +.pt-0 { + padding-top: 0 !important; +} + +.pt-1 { + padding-top: 0.25rem !important; +} + +.pt-2 { + padding-top: 0.5rem !important; +} + +.pt-3 { + padding-top: 1rem !important; +} + +.pt-4 { + padding-top: 1.5rem !important; +} + +.pt-5 { + padding-top: 3rem !important; +} + +.pe-0 { + padding-right: 0 !important; +} + +.pe-1 { + padding-right: 0.25rem !important; +} + +.pe-2 { + padding-right: 0.5rem !important; +} + +.pe-3 { + padding-right: 1rem !important; +} + +.pe-4 { + padding-right: 1.5rem !important; +} + +.pe-5 { + padding-right: 3rem !important; +} + +.pb-0 { + padding-bottom: 0 !important; +} + +.pb-1 { + padding-bottom: 0.25rem !important; +} + +.pb-2 { + padding-bottom: 0.5rem !important; +} + +.pb-3 { + padding-bottom: 1rem !important; +} + +.pb-4 { + padding-bottom: 1.5rem !important; +} + +.pb-5 { + padding-bottom: 3rem !important; +} + +.ps-0 { + padding-left: 0 !important; +} + +.ps-1 { + padding-left: 0.25rem !important; +} + +.ps-2 { + padding-left: 0.5rem !important; +} + +.ps-3 { + padding-left: 1rem !important; +} + +.ps-4 { + padding-left: 1.5rem !important; +} + +.ps-5 { + padding-left: 3rem !important; +} + +@media (min-width: 576px) { + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-grid { + display: grid !important; + } + .d-sm-inline-grid { + display: inline-grid !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-row { + display: table-row !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: flex !important; + } + .d-sm-inline-flex { + display: inline-flex !important; + } + .d-sm-none { + display: none !important; + } + .flex-sm-fill { + flex: 1 1 auto !important; + } + .flex-sm-row { + flex-direction: row !important; + } + .flex-sm-column { + flex-direction: column !important; + } + .flex-sm-row-reverse { + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + flex-direction: column-reverse !important; + } + .flex-sm-grow-0 { + flex-grow: 0 !important; + } + .flex-sm-grow-1 { + flex-grow: 1 !important; + } + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + .flex-sm-wrap { + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-sm-start { + justify-content: flex-start !important; + } + .justify-content-sm-end { + justify-content: flex-end !important; + } + .justify-content-sm-center { + justify-content: center !important; + } + .justify-content-sm-between { + justify-content: space-between !important; + } + .justify-content-sm-around { + justify-content: space-around !important; + } + .justify-content-sm-evenly { + justify-content: space-evenly !important; + } + .align-items-sm-start { + align-items: flex-start !important; + } + .align-items-sm-end { + align-items: flex-end !important; + } + .align-items-sm-center { + align-items: center !important; + } + .align-items-sm-baseline { + align-items: baseline !important; + } + .align-items-sm-stretch { + align-items: stretch !important; + } + .align-content-sm-start { + align-content: flex-start !important; + } + .align-content-sm-end { + align-content: flex-end !important; + } + .align-content-sm-center { + align-content: center !important; + } + .align-content-sm-between { + align-content: space-between !important; + } + .align-content-sm-around { + align-content: space-around !important; + } + .align-content-sm-stretch { + align-content: stretch !important; + } + .align-self-sm-auto { + align-self: auto !important; + } + .align-self-sm-start { + align-self: flex-start !important; + } + .align-self-sm-end { + align-self: flex-end !important; + } + .align-self-sm-center { + align-self: center !important; + } + .align-self-sm-baseline { + align-self: baseline !important; + } + .align-self-sm-stretch { + align-self: stretch !important; + } + .order-sm-first { + order: -1 !important; + } + .order-sm-0 { + order: 0 !important; + } + .order-sm-1 { + order: 1 !important; + } + .order-sm-2 { + order: 2 !important; + } + .order-sm-3 { + order: 3 !important; + } + .order-sm-4 { + order: 4 !important; + } + .order-sm-5 { + order: 5 !important; + } + .order-sm-last { + order: 6 !important; + } + .m-sm-0 { + margin: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .m-sm-4 { + margin: 1.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mx-sm-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-sm-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-sm-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-sm-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-sm-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-sm-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-sm-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-sm-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-sm-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-sm-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-sm-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-sm-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-sm-0 { + margin-top: 0 !important; + } + .mt-sm-1 { + margin-top: 0.25rem !important; + } + .mt-sm-2 { + margin-top: 0.5rem !important; + } + .mt-sm-3 { + margin-top: 1rem !important; + } + .mt-sm-4 { + margin-top: 1.5rem !important; + } + .mt-sm-5 { + margin-top: 3rem !important; + } + .mt-sm-auto { + margin-top: auto !important; + } + .me-sm-0 { + margin-right: 0 !important; + } + .me-sm-1 { + margin-right: 0.25rem !important; + } + .me-sm-2 { + margin-right: 0.5rem !important; + } + .me-sm-3 { + margin-right: 1rem !important; + } + .me-sm-4 { + margin-right: 1.5rem !important; + } + .me-sm-5 { + margin-right: 3rem !important; + } + .me-sm-auto { + margin-right: auto !important; + } + .mb-sm-0 { + margin-bottom: 0 !important; + } + .mb-sm-1 { + margin-bottom: 0.25rem !important; + } + .mb-sm-2 { + margin-bottom: 0.5rem !important; + } + .mb-sm-3 { + margin-bottom: 1rem !important; + } + .mb-sm-4 { + margin-bottom: 1.5rem !important; + } + .mb-sm-5 { + margin-bottom: 3rem !important; + } + .mb-sm-auto { + margin-bottom: auto !important; + } + .ms-sm-0 { + margin-left: 0 !important; + } + .ms-sm-1 { + margin-left: 0.25rem !important; + } + .ms-sm-2 { + margin-left: 0.5rem !important; + } + .ms-sm-3 { + margin-left: 1rem !important; + } + .ms-sm-4 { + margin-left: 1.5rem !important; + } + .ms-sm-5 { + margin-left: 3rem !important; + } + .ms-sm-auto { + margin-left: auto !important; + } + .p-sm-0 { + padding: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .p-sm-4 { + padding: 1.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .px-sm-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-sm-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-sm-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-sm-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-sm-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-sm-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-sm-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-sm-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-sm-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-sm-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-sm-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-sm-0 { + padding-top: 0 !important; + } + .pt-sm-1 { + padding-top: 0.25rem !important; + } + .pt-sm-2 { + padding-top: 0.5rem !important; + } + .pt-sm-3 { + padding-top: 1rem !important; + } + .pt-sm-4 { + padding-top: 1.5rem !important; + } + .pt-sm-5 { + padding-top: 3rem !important; + } + .pe-sm-0 { + padding-right: 0 !important; + } + .pe-sm-1 { + padding-right: 0.25rem !important; + } + .pe-sm-2 { + padding-right: 0.5rem !important; + } + .pe-sm-3 { + padding-right: 1rem !important; + } + .pe-sm-4 { + padding-right: 1.5rem !important; + } + .pe-sm-5 { + padding-right: 3rem !important; + } + .pb-sm-0 { + padding-bottom: 0 !important; + } + .pb-sm-1 { + padding-bottom: 0.25rem !important; + } + .pb-sm-2 { + padding-bottom: 0.5rem !important; + } + .pb-sm-3 { + padding-bottom: 1rem !important; + } + .pb-sm-4 { + padding-bottom: 1.5rem !important; + } + .pb-sm-5 { + padding-bottom: 3rem !important; + } + .ps-sm-0 { + padding-left: 0 !important; + } + .ps-sm-1 { + padding-left: 0.25rem !important; + } + .ps-sm-2 { + padding-left: 0.5rem !important; + } + .ps-sm-3 { + padding-left: 1rem !important; + } + .ps-sm-4 { + padding-left: 1.5rem !important; + } + .ps-sm-5 { + padding-left: 3rem !important; + } +} +@media (min-width: 768px) { + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-grid { + display: grid !important; + } + .d-md-inline-grid { + display: inline-grid !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-row { + display: table-row !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: flex !important; + } + .d-md-inline-flex { + display: inline-flex !important; + } + .d-md-none { + display: none !important; + } + .flex-md-fill { + flex: 1 1 auto !important; + } + .flex-md-row { + flex-direction: row !important; + } + .flex-md-column { + flex-direction: column !important; + } + .flex-md-row-reverse { + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + flex-direction: column-reverse !important; + } + .flex-md-grow-0 { + flex-grow: 0 !important; + } + .flex-md-grow-1 { + flex-grow: 1 !important; + } + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } + .flex-md-wrap { + flex-wrap: wrap !important; + } + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-md-start { + justify-content: flex-start !important; + } + .justify-content-md-end { + justify-content: flex-end !important; + } + .justify-content-md-center { + justify-content: center !important; + } + .justify-content-md-between { + justify-content: space-between !important; + } + .justify-content-md-around { + justify-content: space-around !important; + } + .justify-content-md-evenly { + justify-content: space-evenly !important; + } + .align-items-md-start { + align-items: flex-start !important; + } + .align-items-md-end { + align-items: flex-end !important; + } + .align-items-md-center { + align-items: center !important; + } + .align-items-md-baseline { + align-items: baseline !important; + } + .align-items-md-stretch { + align-items: stretch !important; + } + .align-content-md-start { + align-content: flex-start !important; + } + .align-content-md-end { + align-content: flex-end !important; + } + .align-content-md-center { + align-content: center !important; + } + .align-content-md-between { + align-content: space-between !important; + } + .align-content-md-around { + align-content: space-around !important; + } + .align-content-md-stretch { + align-content: stretch !important; + } + .align-self-md-auto { + align-self: auto !important; + } + .align-self-md-start { + align-self: flex-start !important; + } + .align-self-md-end { + align-self: flex-end !important; + } + .align-self-md-center { + align-self: center !important; + } + .align-self-md-baseline { + align-self: baseline !important; + } + .align-self-md-stretch { + align-self: stretch !important; + } + .order-md-first { + order: -1 !important; + } + .order-md-0 { + order: 0 !important; + } + .order-md-1 { + order: 1 !important; + } + .order-md-2 { + order: 2 !important; + } + .order-md-3 { + order: 3 !important; + } + .order-md-4 { + order: 4 !important; + } + .order-md-5 { + order: 5 !important; + } + .order-md-last { + order: 6 !important; + } + .m-md-0 { + margin: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .m-md-4 { + margin: 1.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mx-md-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-md-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-md-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-md-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-md-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-md-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-md-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-md-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-md-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-md-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-md-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-md-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-md-0 { + margin-top: 0 !important; + } + .mt-md-1 { + margin-top: 0.25rem !important; + } + .mt-md-2 { + margin-top: 0.5rem !important; + } + .mt-md-3 { + margin-top: 1rem !important; + } + .mt-md-4 { + margin-top: 1.5rem !important; + } + .mt-md-5 { + margin-top: 3rem !important; + } + .mt-md-auto { + margin-top: auto !important; + } + .me-md-0 { + margin-right: 0 !important; + } + .me-md-1 { + margin-right: 0.25rem !important; + } + .me-md-2 { + margin-right: 0.5rem !important; + } + .me-md-3 { + margin-right: 1rem !important; + } + .me-md-4 { + margin-right: 1.5rem !important; + } + .me-md-5 { + margin-right: 3rem !important; + } + .me-md-auto { + margin-right: auto !important; + } + .mb-md-0 { + margin-bottom: 0 !important; + } + .mb-md-1 { + margin-bottom: 0.25rem !important; + } + .mb-md-2 { + margin-bottom: 0.5rem !important; + } + .mb-md-3 { + margin-bottom: 1rem !important; + } + .mb-md-4 { + margin-bottom: 1.5rem !important; + } + .mb-md-5 { + margin-bottom: 3rem !important; + } + .mb-md-auto { + margin-bottom: auto !important; + } + .ms-md-0 { + margin-left: 0 !important; + } + .ms-md-1 { + margin-left: 0.25rem !important; + } + .ms-md-2 { + margin-left: 0.5rem !important; + } + .ms-md-3 { + margin-left: 1rem !important; + } + .ms-md-4 { + margin-left: 1.5rem !important; + } + .ms-md-5 { + margin-left: 3rem !important; + } + .ms-md-auto { + margin-left: auto !important; + } + .p-md-0 { + padding: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .p-md-4 { + padding: 1.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .px-md-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-md-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-md-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-md-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-md-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-md-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-md-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-md-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-md-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-md-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-md-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-md-0 { + padding-top: 0 !important; + } + .pt-md-1 { + padding-top: 0.25rem !important; + } + .pt-md-2 { + padding-top: 0.5rem !important; + } + .pt-md-3 { + padding-top: 1rem !important; + } + .pt-md-4 { + padding-top: 1.5rem !important; + } + .pt-md-5 { + padding-top: 3rem !important; + } + .pe-md-0 { + padding-right: 0 !important; + } + .pe-md-1 { + padding-right: 0.25rem !important; + } + .pe-md-2 { + padding-right: 0.5rem !important; + } + .pe-md-3 { + padding-right: 1rem !important; + } + .pe-md-4 { + padding-right: 1.5rem !important; + } + .pe-md-5 { + padding-right: 3rem !important; + } + .pb-md-0 { + padding-bottom: 0 !important; + } + .pb-md-1 { + padding-bottom: 0.25rem !important; + } + .pb-md-2 { + padding-bottom: 0.5rem !important; + } + .pb-md-3 { + padding-bottom: 1rem !important; + } + .pb-md-4 { + padding-bottom: 1.5rem !important; + } + .pb-md-5 { + padding-bottom: 3rem !important; + } + .ps-md-0 { + padding-left: 0 !important; + } + .ps-md-1 { + padding-left: 0.25rem !important; + } + .ps-md-2 { + padding-left: 0.5rem !important; + } + .ps-md-3 { + padding-left: 1rem !important; + } + .ps-md-4 { + padding-left: 1.5rem !important; + } + .ps-md-5 { + padding-left: 3rem !important; + } +} +@media (min-width: 992px) { + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-grid { + display: grid !important; + } + .d-lg-inline-grid { + display: inline-grid !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-row { + display: table-row !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: flex !important; + } + .d-lg-inline-flex { + display: inline-flex !important; + } + .d-lg-none { + display: none !important; + } + .flex-lg-fill { + flex: 1 1 auto !important; + } + .flex-lg-row { + flex-direction: row !important; + } + .flex-lg-column { + flex-direction: column !important; + } + .flex-lg-row-reverse { + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + flex-direction: column-reverse !important; + } + .flex-lg-grow-0 { + flex-grow: 0 !important; + } + .flex-lg-grow-1 { + flex-grow: 1 !important; + } + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } + .flex-lg-wrap { + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-lg-start { + justify-content: flex-start !important; + } + .justify-content-lg-end { + justify-content: flex-end !important; + } + .justify-content-lg-center { + justify-content: center !important; + } + .justify-content-lg-between { + justify-content: space-between !important; + } + .justify-content-lg-around { + justify-content: space-around !important; + } + .justify-content-lg-evenly { + justify-content: space-evenly !important; + } + .align-items-lg-start { + align-items: flex-start !important; + } + .align-items-lg-end { + align-items: flex-end !important; + } + .align-items-lg-center { + align-items: center !important; + } + .align-items-lg-baseline { + align-items: baseline !important; + } + .align-items-lg-stretch { + align-items: stretch !important; + } + .align-content-lg-start { + align-content: flex-start !important; + } + .align-content-lg-end { + align-content: flex-end !important; + } + .align-content-lg-center { + align-content: center !important; + } + .align-content-lg-between { + align-content: space-between !important; + } + .align-content-lg-around { + align-content: space-around !important; + } + .align-content-lg-stretch { + align-content: stretch !important; + } + .align-self-lg-auto { + align-self: auto !important; + } + .align-self-lg-start { + align-self: flex-start !important; + } + .align-self-lg-end { + align-self: flex-end !important; + } + .align-self-lg-center { + align-self: center !important; + } + .align-self-lg-baseline { + align-self: baseline !important; + } + .align-self-lg-stretch { + align-self: stretch !important; + } + .order-lg-first { + order: -1 !important; + } + .order-lg-0 { + order: 0 !important; + } + .order-lg-1 { + order: 1 !important; + } + .order-lg-2 { + order: 2 !important; + } + .order-lg-3 { + order: 3 !important; + } + .order-lg-4 { + order: 4 !important; + } + .order-lg-5 { + order: 5 !important; + } + .order-lg-last { + order: 6 !important; + } + .m-lg-0 { + margin: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .m-lg-4 { + margin: 1.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mx-lg-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-lg-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-lg-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-lg-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-lg-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-lg-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-lg-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-lg-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-lg-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-lg-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-lg-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-lg-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-lg-0 { + margin-top: 0 !important; + } + .mt-lg-1 { + margin-top: 0.25rem !important; + } + .mt-lg-2 { + margin-top: 0.5rem !important; + } + .mt-lg-3 { + margin-top: 1rem !important; + } + .mt-lg-4 { + margin-top: 1.5rem !important; + } + .mt-lg-5 { + margin-top: 3rem !important; + } + .mt-lg-auto { + margin-top: auto !important; + } + .me-lg-0 { + margin-right: 0 !important; + } + .me-lg-1 { + margin-right: 0.25rem !important; + } + .me-lg-2 { + margin-right: 0.5rem !important; + } + .me-lg-3 { + margin-right: 1rem !important; + } + .me-lg-4 { + margin-right: 1.5rem !important; + } + .me-lg-5 { + margin-right: 3rem !important; + } + .me-lg-auto { + margin-right: auto !important; + } + .mb-lg-0 { + margin-bottom: 0 !important; + } + .mb-lg-1 { + margin-bottom: 0.25rem !important; + } + .mb-lg-2 { + margin-bottom: 0.5rem !important; + } + .mb-lg-3 { + margin-bottom: 1rem !important; + } + .mb-lg-4 { + margin-bottom: 1.5rem !important; + } + .mb-lg-5 { + margin-bottom: 3rem !important; + } + .mb-lg-auto { + margin-bottom: auto !important; + } + .ms-lg-0 { + margin-left: 0 !important; + } + .ms-lg-1 { + margin-left: 0.25rem !important; + } + .ms-lg-2 { + margin-left: 0.5rem !important; + } + .ms-lg-3 { + margin-left: 1rem !important; + } + .ms-lg-4 { + margin-left: 1.5rem !important; + } + .ms-lg-5 { + margin-left: 3rem !important; + } + .ms-lg-auto { + margin-left: auto !important; + } + .p-lg-0 { + padding: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .p-lg-4 { + padding: 1.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .px-lg-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-lg-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-lg-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-lg-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-lg-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-lg-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-lg-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-lg-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-lg-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-lg-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-lg-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-lg-0 { + padding-top: 0 !important; + } + .pt-lg-1 { + padding-top: 0.25rem !important; + } + .pt-lg-2 { + padding-top: 0.5rem !important; + } + .pt-lg-3 { + padding-top: 1rem !important; + } + .pt-lg-4 { + padding-top: 1.5rem !important; + } + .pt-lg-5 { + padding-top: 3rem !important; + } + .pe-lg-0 { + padding-right: 0 !important; + } + .pe-lg-1 { + padding-right: 0.25rem !important; + } + .pe-lg-2 { + padding-right: 0.5rem !important; + } + .pe-lg-3 { + padding-right: 1rem !important; + } + .pe-lg-4 { + padding-right: 1.5rem !important; + } + .pe-lg-5 { + padding-right: 3rem !important; + } + .pb-lg-0 { + padding-bottom: 0 !important; + } + .pb-lg-1 { + padding-bottom: 0.25rem !important; + } + .pb-lg-2 { + padding-bottom: 0.5rem !important; + } + .pb-lg-3 { + padding-bottom: 1rem !important; + } + .pb-lg-4 { + padding-bottom: 1.5rem !important; + } + .pb-lg-5 { + padding-bottom: 3rem !important; + } + .ps-lg-0 { + padding-left: 0 !important; + } + .ps-lg-1 { + padding-left: 0.25rem !important; + } + .ps-lg-2 { + padding-left: 0.5rem !important; + } + .ps-lg-3 { + padding-left: 1rem !important; + } + .ps-lg-4 { + padding-left: 1.5rem !important; + } + .ps-lg-5 { + padding-left: 3rem !important; + } +} +@media (min-width: 1200px) { + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-grid { + display: grid !important; + } + .d-xl-inline-grid { + display: inline-grid !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-row { + display: table-row !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: flex !important; + } + .d-xl-inline-flex { + display: inline-flex !important; + } + .d-xl-none { + display: none !important; + } + .flex-xl-fill { + flex: 1 1 auto !important; + } + .flex-xl-row { + flex-direction: row !important; + } + .flex-xl-column { + flex-direction: column !important; + } + .flex-xl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xl-grow-0 { + flex-grow: 0 !important; + } + .flex-xl-grow-1 { + flex-grow: 1 !important; + } + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xl-wrap { + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-xl-start { + justify-content: flex-start !important; + } + .justify-content-xl-end { + justify-content: flex-end !important; + } + .justify-content-xl-center { + justify-content: center !important; + } + .justify-content-xl-between { + justify-content: space-between !important; + } + .justify-content-xl-around { + justify-content: space-around !important; + } + .justify-content-xl-evenly { + justify-content: space-evenly !important; + } + .align-items-xl-start { + align-items: flex-start !important; + } + .align-items-xl-end { + align-items: flex-end !important; + } + .align-items-xl-center { + align-items: center !important; + } + .align-items-xl-baseline { + align-items: baseline !important; + } + .align-items-xl-stretch { + align-items: stretch !important; + } + .align-content-xl-start { + align-content: flex-start !important; + } + .align-content-xl-end { + align-content: flex-end !important; + } + .align-content-xl-center { + align-content: center !important; + } + .align-content-xl-between { + align-content: space-between !important; + } + .align-content-xl-around { + align-content: space-around !important; + } + .align-content-xl-stretch { + align-content: stretch !important; + } + .align-self-xl-auto { + align-self: auto !important; + } + .align-self-xl-start { + align-self: flex-start !important; + } + .align-self-xl-end { + align-self: flex-end !important; + } + .align-self-xl-center { + align-self: center !important; + } + .align-self-xl-baseline { + align-self: baseline !important; + } + .align-self-xl-stretch { + align-self: stretch !important; + } + .order-xl-first { + order: -1 !important; + } + .order-xl-0 { + order: 0 !important; + } + .order-xl-1 { + order: 1 !important; + } + .order-xl-2 { + order: 2 !important; + } + .order-xl-3 { + order: 3 !important; + } + .order-xl-4 { + order: 4 !important; + } + .order-xl-5 { + order: 5 !important; + } + .order-xl-last { + order: 6 !important; + } + .m-xl-0 { + margin: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .m-xl-4 { + margin: 1.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mx-xl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-xl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-xl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-xl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-xl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-xl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-xl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xl-0 { + margin-top: 0 !important; + } + .mt-xl-1 { + margin-top: 0.25rem !important; + } + .mt-xl-2 { + margin-top: 0.5rem !important; + } + .mt-xl-3 { + margin-top: 1rem !important; + } + .mt-xl-4 { + margin-top: 1.5rem !important; + } + .mt-xl-5 { + margin-top: 3rem !important; + } + .mt-xl-auto { + margin-top: auto !important; + } + .me-xl-0 { + margin-right: 0 !important; + } + .me-xl-1 { + margin-right: 0.25rem !important; + } + .me-xl-2 { + margin-right: 0.5rem !important; + } + .me-xl-3 { + margin-right: 1rem !important; + } + .me-xl-4 { + margin-right: 1.5rem !important; + } + .me-xl-5 { + margin-right: 3rem !important; + } + .me-xl-auto { + margin-right: auto !important; + } + .mb-xl-0 { + margin-bottom: 0 !important; + } + .mb-xl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xl-3 { + margin-bottom: 1rem !important; + } + .mb-xl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xl-5 { + margin-bottom: 3rem !important; + } + .mb-xl-auto { + margin-bottom: auto !important; + } + .ms-xl-0 { + margin-left: 0 !important; + } + .ms-xl-1 { + margin-left: 0.25rem !important; + } + .ms-xl-2 { + margin-left: 0.5rem !important; + } + .ms-xl-3 { + margin-left: 1rem !important; + } + .ms-xl-4 { + margin-left: 1.5rem !important; + } + .ms-xl-5 { + margin-left: 3rem !important; + } + .ms-xl-auto { + margin-left: auto !important; + } + .p-xl-0 { + padding: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .p-xl-4 { + padding: 1.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .px-xl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-xl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-xl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-xl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-xl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-xl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-xl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xl-0 { + padding-top: 0 !important; + } + .pt-xl-1 { + padding-top: 0.25rem !important; + } + .pt-xl-2 { + padding-top: 0.5rem !important; + } + .pt-xl-3 { + padding-top: 1rem !important; + } + .pt-xl-4 { + padding-top: 1.5rem !important; + } + .pt-xl-5 { + padding-top: 3rem !important; + } + .pe-xl-0 { + padding-right: 0 !important; + } + .pe-xl-1 { + padding-right: 0.25rem !important; + } + .pe-xl-2 { + padding-right: 0.5rem !important; + } + .pe-xl-3 { + padding-right: 1rem !important; + } + .pe-xl-4 { + padding-right: 1.5rem !important; + } + .pe-xl-5 { + padding-right: 3rem !important; + } + .pb-xl-0 { + padding-bottom: 0 !important; + } + .pb-xl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xl-3 { + padding-bottom: 1rem !important; + } + .pb-xl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xl-5 { + padding-bottom: 3rem !important; + } + .ps-xl-0 { + padding-left: 0 !important; + } + .ps-xl-1 { + padding-left: 0.25rem !important; + } + .ps-xl-2 { + padding-left: 0.5rem !important; + } + .ps-xl-3 { + padding-left: 1rem !important; + } + .ps-xl-4 { + padding-left: 1.5rem !important; + } + .ps-xl-5 { + padding-left: 3rem !important; + } +} +@media (min-width: 1400px) { + .d-xxl-inline { + display: inline !important; + } + .d-xxl-inline-block { + display: inline-block !important; + } + .d-xxl-block { + display: block !important; + } + .d-xxl-grid { + display: grid !important; + } + .d-xxl-inline-grid { + display: inline-grid !important; + } + .d-xxl-table { + display: table !important; + } + .d-xxl-table-row { + display: table-row !important; + } + .d-xxl-table-cell { + display: table-cell !important; + } + .d-xxl-flex { + display: flex !important; + } + .d-xxl-inline-flex { + display: inline-flex !important; + } + .d-xxl-none { + display: none !important; + } + .flex-xxl-fill { + flex: 1 1 auto !important; + } + .flex-xxl-row { + flex-direction: row !important; + } + .flex-xxl-column { + flex-direction: column !important; + } + .flex-xxl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xxl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xxl-grow-0 { + flex-grow: 0 !important; + } + .flex-xxl-grow-1 { + flex-grow: 1 !important; + } + .flex-xxl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xxl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xxl-wrap { + flex-wrap: wrap !important; + } + .flex-xxl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xxl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-xxl-start { + justify-content: flex-start !important; + } + .justify-content-xxl-end { + justify-content: flex-end !important; + } + .justify-content-xxl-center { + justify-content: center !important; + } + .justify-content-xxl-between { + justify-content: space-between !important; + } + .justify-content-xxl-around { + justify-content: space-around !important; + } + .justify-content-xxl-evenly { + justify-content: space-evenly !important; + } + .align-items-xxl-start { + align-items: flex-start !important; + } + .align-items-xxl-end { + align-items: flex-end !important; + } + .align-items-xxl-center { + align-items: center !important; + } + .align-items-xxl-baseline { + align-items: baseline !important; + } + .align-items-xxl-stretch { + align-items: stretch !important; + } + .align-content-xxl-start { + align-content: flex-start !important; + } + .align-content-xxl-end { + align-content: flex-end !important; + } + .align-content-xxl-center { + align-content: center !important; + } + .align-content-xxl-between { + align-content: space-between !important; + } + .align-content-xxl-around { + align-content: space-around !important; + } + .align-content-xxl-stretch { + align-content: stretch !important; + } + .align-self-xxl-auto { + align-self: auto !important; + } + .align-self-xxl-start { + align-self: flex-start !important; + } + .align-self-xxl-end { + align-self: flex-end !important; + } + .align-self-xxl-center { + align-self: center !important; + } + .align-self-xxl-baseline { + align-self: baseline !important; + } + .align-self-xxl-stretch { + align-self: stretch !important; + } + .order-xxl-first { + order: -1 !important; + } + .order-xxl-0 { + order: 0 !important; + } + .order-xxl-1 { + order: 1 !important; + } + .order-xxl-2 { + order: 2 !important; + } + .order-xxl-3 { + order: 3 !important; + } + .order-xxl-4 { + order: 4 !important; + } + .order-xxl-5 { + order: 5 !important; + } + .order-xxl-last { + order: 6 !important; + } + .m-xxl-0 { + margin: 0 !important; + } + .m-xxl-1 { + margin: 0.25rem !important; + } + .m-xxl-2 { + margin: 0.5rem !important; + } + .m-xxl-3 { + margin: 1rem !important; + } + .m-xxl-4 { + margin: 1.5rem !important; + } + .m-xxl-5 { + margin: 3rem !important; + } + .m-xxl-auto { + margin: auto !important; + } + .mx-xxl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-xxl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-xxl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-xxl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-xxl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-xxl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-xxl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xxl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xxl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xxl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xxl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xxl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xxl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xxl-0 { + margin-top: 0 !important; + } + .mt-xxl-1 { + margin-top: 0.25rem !important; + } + .mt-xxl-2 { + margin-top: 0.5rem !important; + } + .mt-xxl-3 { + margin-top: 1rem !important; + } + .mt-xxl-4 { + margin-top: 1.5rem !important; + } + .mt-xxl-5 { + margin-top: 3rem !important; + } + .mt-xxl-auto { + margin-top: auto !important; + } + .me-xxl-0 { + margin-right: 0 !important; + } + .me-xxl-1 { + margin-right: 0.25rem !important; + } + .me-xxl-2 { + margin-right: 0.5rem !important; + } + .me-xxl-3 { + margin-right: 1rem !important; + } + .me-xxl-4 { + margin-right: 1.5rem !important; + } + .me-xxl-5 { + margin-right: 3rem !important; + } + .me-xxl-auto { + margin-right: auto !important; + } + .mb-xxl-0 { + margin-bottom: 0 !important; + } + .mb-xxl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xxl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xxl-3 { + margin-bottom: 1rem !important; + } + .mb-xxl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xxl-5 { + margin-bottom: 3rem !important; + } + .mb-xxl-auto { + margin-bottom: auto !important; + } + .ms-xxl-0 { + margin-left: 0 !important; + } + .ms-xxl-1 { + margin-left: 0.25rem !important; + } + .ms-xxl-2 { + margin-left: 0.5rem !important; + } + .ms-xxl-3 { + margin-left: 1rem !important; + } + .ms-xxl-4 { + margin-left: 1.5rem !important; + } + .ms-xxl-5 { + margin-left: 3rem !important; + } + .ms-xxl-auto { + margin-left: auto !important; + } + .p-xxl-0 { + padding: 0 !important; + } + .p-xxl-1 { + padding: 0.25rem !important; + } + .p-xxl-2 { + padding: 0.5rem !important; + } + .p-xxl-3 { + padding: 1rem !important; + } + .p-xxl-4 { + padding: 1.5rem !important; + } + .p-xxl-5 { + padding: 3rem !important; + } + .px-xxl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-xxl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-xxl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-xxl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-xxl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-xxl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-xxl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xxl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xxl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xxl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xxl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xxl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xxl-0 { + padding-top: 0 !important; + } + .pt-xxl-1 { + padding-top: 0.25rem !important; + } + .pt-xxl-2 { + padding-top: 0.5rem !important; + } + .pt-xxl-3 { + padding-top: 1rem !important; + } + .pt-xxl-4 { + padding-top: 1.5rem !important; + } + .pt-xxl-5 { + padding-top: 3rem !important; + } + .pe-xxl-0 { + padding-right: 0 !important; + } + .pe-xxl-1 { + padding-right: 0.25rem !important; + } + .pe-xxl-2 { + padding-right: 0.5rem !important; + } + .pe-xxl-3 { + padding-right: 1rem !important; + } + .pe-xxl-4 { + padding-right: 1.5rem !important; + } + .pe-xxl-5 { + padding-right: 3rem !important; + } + .pb-xxl-0 { + padding-bottom: 0 !important; + } + .pb-xxl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xxl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xxl-3 { + padding-bottom: 1rem !important; + } + .pb-xxl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xxl-5 { + padding-bottom: 3rem !important; + } + .ps-xxl-0 { + padding-left: 0 !important; + } + .ps-xxl-1 { + padding-left: 0.25rem !important; + } + .ps-xxl-2 { + padding-left: 0.5rem !important; + } + .ps-xxl-3 { + padding-left: 1rem !important; + } + .ps-xxl-4 { + padding-left: 1.5rem !important; + } + .ps-xxl-5 { + padding-left: 3rem !important; + } +} +@media print { + .d-print-inline { + display: inline !important; + } + .d-print-inline-block { + display: inline-block !important; + } + .d-print-block { + display: block !important; + } + .d-print-grid { + display: grid !important; + } + .d-print-inline-grid { + display: inline-grid !important; + } + .d-print-table { + display: table !important; + } + .d-print-table-row { + display: table-row !important; + } + .d-print-table-cell { + display: table-cell !important; + } + .d-print-flex { + display: flex !important; + } + .d-print-inline-flex { + display: inline-flex !important; + } + .d-print-none { + display: none !important; + } +} + +/*# sourceMappingURL=bootstrap-grid.css.map */ \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.css.map b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.css.map new file mode 100644 index 000000000..ce99ec196 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","bootstrap-grid.css","../../scss/mixins/_breakpoints.scss","../../scss/_variables.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"AACE;;;;EAAA;ACKA;;;;;;;ECHA,qBAAA;EACA,gBAAA;EACA,WAAA;EACA,6CAAA;EACA,4CAAA;EACA,kBAAA;EACA,iBAAA;ACUF;;AC4CI;EH5CE;IACE,gBIkee;EF9drB;AACF;ACsCI;EH5CE;IACE,gBIkee;EFzdrB;AACF;ACiCI;EH5CE;IACE,gBIkee;EFpdrB;AACF;AC4BI;EH5CE;IACE,iBIkee;EF/crB;AACF;ACuBI;EH5CE;IACE,iBIkee;EF1crB;AACF;AGzCA;EAEI,qBAAA;EAAA,yBAAA;EAAA,yBAAA;EAAA,yBAAA;EAAA,0BAAA;EAAA,2BAAA;AH+CJ;;AG1CE;ECNA,qBAAA;EACA,gBAAA;EACA,aAAA;EACA,eAAA;EAEA,yCAAA;EACA,6CAAA;EACA,4CAAA;AJmDF;AGjDI;ECGF,sBAAA;EAIA,cAAA;EACA,WAAA;EACA,eAAA;EACA,6CAAA;EACA,4CAAA;EACA,8BAAA;AJ8CF;;AICM;EACE,YAAA;AJER;;AICM;EApCJ,cAAA;EACA,WAAA;AJuCF;;AIzBE;EACE,cAAA;EACA,WAAA;AJ4BJ;;AI9BE;EACE,cAAA;EACA,UAAA;AJiCJ;;AInCE;EACE,cAAA;EACA,mBAAA;AJsCJ;;AIxCE;EACE,cAAA;EACA,UAAA;AJ2CJ;;AI7CE;EACE,cAAA;EACA,UAAA;AJgDJ;;AIlDE;EACE,cAAA;EACA,mBAAA;AJqDJ;;AItBM;EAhDJ,cAAA;EACA,WAAA;AJ0EF;;AIrBU;EAhEN,cAAA;EACA,kBAAA;AJyFJ;;AI1BU;EAhEN,cAAA;EACA,mBAAA;AJ8FJ;;AI/BU;EAhEN,cAAA;EACA,UAAA;AJmGJ;;AIpCU;EAhEN,cAAA;EACA,mBAAA;AJwGJ;;AIzCU;EAhEN,cAAA;EACA,mBAAA;AJ6GJ;;AI9CU;EAhEN,cAAA;EACA,UAAA;AJkHJ;;AInDU;EAhEN,cAAA;EACA,mBAAA;AJuHJ;;AIxDU;EAhEN,cAAA;EACA,mBAAA;AJ4HJ;;AI7DU;EAhEN,cAAA;EACA,UAAA;AJiIJ;;AIlEU;EAhEN,cAAA;EACA,mBAAA;AJsIJ;;AIvEU;EAhEN,cAAA;EACA,mBAAA;AJ2IJ;;AI5EU;EAhEN,cAAA;EACA,WAAA;AJgJJ;;AIzEY;EAxDV,wBAAA;AJqIF;;AI7EY;EAxDV,yBAAA;AJyIF;;AIjFY;EAxDV,gBAAA;AJ6IF;;AIrFY;EAxDV,yBAAA;AJiJF;;AIzFY;EAxDV,yBAAA;AJqJF;;AI7FY;EAxDV,gBAAA;AJyJF;;AIjGY;EAxDV,yBAAA;AJ6JF;;AIrGY;EAxDV,yBAAA;AJiKF;;AIzGY;EAxDV,gBAAA;AJqKF;;AI7GY;EAxDV,yBAAA;AJyKF;;AIjHY;EAxDV,yBAAA;AJ6KF;;AI1GQ;;EAEE,gBAAA;AJ6GV;;AI1GQ;;EAEE,gBAAA;AJ6GV;;AIpHQ;;EAEE,sBAAA;AJuHV;;AIpHQ;;EAEE,sBAAA;AJuHV;;AI9HQ;;EAEE,qBAAA;AJiIV;;AI9HQ;;EAEE,qBAAA;AJiIV;;AIxIQ;;EAEE,mBAAA;AJ2IV;;AIxIQ;;EAEE,mBAAA;AJ2IV;;AIlJQ;;EAEE,qBAAA;AJqJV;;AIlJQ;;EAEE,qBAAA;AJqJV;;AI5JQ;;EAEE,mBAAA;AJ+JV;;AI5JQ;;EAEE,mBAAA;AJ+JV;;ACzNI;EGUE;IACE,YAAA;EJmNN;EIhNI;IApCJ,cAAA;IACA,WAAA;EJuPA;EIzOA;IACE,cAAA;IACA,WAAA;EJ2OF;EI7OA;IACE,cAAA;IACA,UAAA;EJ+OF;EIjPA;IACE,cAAA;IACA,mBAAA;EJmPF;EIrPA;IACE,cAAA;IACA,UAAA;EJuPF;EIzPA;IACE,cAAA;IACA,UAAA;EJ2PF;EI7PA;IACE,cAAA;IACA,mBAAA;EJ+PF;EIhOI;IAhDJ,cAAA;IACA,WAAA;EJmRA;EI9NQ;IAhEN,cAAA;IACA,kBAAA;EJiSF;EIlOQ;IAhEN,cAAA;IACA,mBAAA;EJqSF;EItOQ;IAhEN,cAAA;IACA,UAAA;EJySF;EI1OQ;IAhEN,cAAA;IACA,mBAAA;EJ6SF;EI9OQ;IAhEN,cAAA;IACA,mBAAA;EJiTF;EIlPQ;IAhEN,cAAA;IACA,UAAA;EJqTF;EItPQ;IAhEN,cAAA;IACA,mBAAA;EJyTF;EI1PQ;IAhEN,cAAA;IACA,mBAAA;EJ6TF;EI9PQ;IAhEN,cAAA;IACA,UAAA;EJiUF;EIlQQ;IAhEN,cAAA;IACA,mBAAA;EJqUF;EItQQ;IAhEN,cAAA;IACA,mBAAA;EJyUF;EI1QQ;IAhEN,cAAA;IACA,WAAA;EJ6UF;EItQU;IAxDV,cAAA;EJiUA;EIzQU;IAxDV,wBAAA;EJoUA;EI5QU;IAxDV,yBAAA;EJuUA;EI/QU;IAxDV,gBAAA;EJ0UA;EIlRU;IAxDV,yBAAA;EJ6UA;EIrRU;IAxDV,yBAAA;EJgVA;EIxRU;IAxDV,gBAAA;EJmVA;EI3RU;IAxDV,yBAAA;EJsVA;EI9RU;IAxDV,yBAAA;EJyVA;EIjSU;IAxDV,gBAAA;EJ4VA;EIpSU;IAxDV,yBAAA;EJ+VA;EIvSU;IAxDV,yBAAA;EJkWA;EI/RM;;IAEE,gBAAA;EJiSR;EI9RM;;IAEE,gBAAA;EJgSR;EIvSM;;IAEE,sBAAA;EJySR;EItSM;;IAEE,sBAAA;EJwSR;EI/SM;;IAEE,qBAAA;EJiTR;EI9SM;;IAEE,qBAAA;EJgTR;EIvTM;;IAEE,mBAAA;EJyTR;EItTM;;IAEE,mBAAA;EJwTR;EI/TM;;IAEE,qBAAA;EJiUR;EI9TM;;IAEE,qBAAA;EJgUR;EIvUM;;IAEE,mBAAA;EJyUR;EItUM;;IAEE,mBAAA;EJwUR;AACF;ACnYI;EGUE;IACE,YAAA;EJ4XN;EIzXI;IApCJ,cAAA;IACA,WAAA;EJgaA;EIlZA;IACE,cAAA;IACA,WAAA;EJoZF;EItZA;IACE,cAAA;IACA,UAAA;EJwZF;EI1ZA;IACE,cAAA;IACA,mBAAA;EJ4ZF;EI9ZA;IACE,cAAA;IACA,UAAA;EJgaF;EIlaA;IACE,cAAA;IACA,UAAA;EJoaF;EItaA;IACE,cAAA;IACA,mBAAA;EJwaF;EIzYI;IAhDJ,cAAA;IACA,WAAA;EJ4bA;EIvYQ;IAhEN,cAAA;IACA,kBAAA;EJ0cF;EI3YQ;IAhEN,cAAA;IACA,mBAAA;EJ8cF;EI/YQ;IAhEN,cAAA;IACA,UAAA;EJkdF;EInZQ;IAhEN,cAAA;IACA,mBAAA;EJsdF;EIvZQ;IAhEN,cAAA;IACA,mBAAA;EJ0dF;EI3ZQ;IAhEN,cAAA;IACA,UAAA;EJ8dF;EI/ZQ;IAhEN,cAAA;IACA,mBAAA;EJkeF;EInaQ;IAhEN,cAAA;IACA,mBAAA;EJseF;EIvaQ;IAhEN,cAAA;IACA,UAAA;EJ0eF;EI3aQ;IAhEN,cAAA;IACA,mBAAA;EJ8eF;EI/aQ;IAhEN,cAAA;IACA,mBAAA;EJkfF;EInbQ;IAhEN,cAAA;IACA,WAAA;EJsfF;EI/aU;IAxDV,cAAA;EJ0eA;EIlbU;IAxDV,wBAAA;EJ6eA;EIrbU;IAxDV,yBAAA;EJgfA;EIxbU;IAxDV,gBAAA;EJmfA;EI3bU;IAxDV,yBAAA;EJsfA;EI9bU;IAxDV,yBAAA;EJyfA;EIjcU;IAxDV,gBAAA;EJ4fA;EIpcU;IAxDV,yBAAA;EJ+fA;EIvcU;IAxDV,yBAAA;EJkgBA;EI1cU;IAxDV,gBAAA;EJqgBA;EI7cU;IAxDV,yBAAA;EJwgBA;EIhdU;IAxDV,yBAAA;EJ2gBA;EIxcM;;IAEE,gBAAA;EJ0cR;EIvcM;;IAEE,gBAAA;EJycR;EIhdM;;IAEE,sBAAA;EJkdR;EI/cM;;IAEE,sBAAA;EJidR;EIxdM;;IAEE,qBAAA;EJ0dR;EIvdM;;IAEE,qBAAA;EJydR;EIheM;;IAEE,mBAAA;EJkeR;EI/dM;;IAEE,mBAAA;EJieR;EIxeM;;IAEE,qBAAA;EJ0eR;EIveM;;IAEE,qBAAA;EJyeR;EIhfM;;IAEE,mBAAA;EJkfR;EI/eM;;IAEE,mBAAA;EJifR;AACF;AC5iBI;EGUE;IACE,YAAA;EJqiBN;EIliBI;IApCJ,cAAA;IACA,WAAA;EJykBA;EI3jBA;IACE,cAAA;IACA,WAAA;EJ6jBF;EI/jBA;IACE,cAAA;IACA,UAAA;EJikBF;EInkBA;IACE,cAAA;IACA,mBAAA;EJqkBF;EIvkBA;IACE,cAAA;IACA,UAAA;EJykBF;EI3kBA;IACE,cAAA;IACA,UAAA;EJ6kBF;EI/kBA;IACE,cAAA;IACA,mBAAA;EJilBF;EIljBI;IAhDJ,cAAA;IACA,WAAA;EJqmBA;EIhjBQ;IAhEN,cAAA;IACA,kBAAA;EJmnBF;EIpjBQ;IAhEN,cAAA;IACA,mBAAA;EJunBF;EIxjBQ;IAhEN,cAAA;IACA,UAAA;EJ2nBF;EI5jBQ;IAhEN,cAAA;IACA,mBAAA;EJ+nBF;EIhkBQ;IAhEN,cAAA;IACA,mBAAA;EJmoBF;EIpkBQ;IAhEN,cAAA;IACA,UAAA;EJuoBF;EIxkBQ;IAhEN,cAAA;IACA,mBAAA;EJ2oBF;EI5kBQ;IAhEN,cAAA;IACA,mBAAA;EJ+oBF;EIhlBQ;IAhEN,cAAA;IACA,UAAA;EJmpBF;EIplBQ;IAhEN,cAAA;IACA,mBAAA;EJupBF;EIxlBQ;IAhEN,cAAA;IACA,mBAAA;EJ2pBF;EI5lBQ;IAhEN,cAAA;IACA,WAAA;EJ+pBF;EIxlBU;IAxDV,cAAA;EJmpBA;EI3lBU;IAxDV,wBAAA;EJspBA;EI9lBU;IAxDV,yBAAA;EJypBA;EIjmBU;IAxDV,gBAAA;EJ4pBA;EIpmBU;IAxDV,yBAAA;EJ+pBA;EIvmBU;IAxDV,yBAAA;EJkqBA;EI1mBU;IAxDV,gBAAA;EJqqBA;EI7mBU;IAxDV,yBAAA;EJwqBA;EIhnBU;IAxDV,yBAAA;EJ2qBA;EInnBU;IAxDV,gBAAA;EJ8qBA;EItnBU;IAxDV,yBAAA;EJirBA;EIznBU;IAxDV,yBAAA;EJorBA;EIjnBM;;IAEE,gBAAA;EJmnBR;EIhnBM;;IAEE,gBAAA;EJknBR;EIznBM;;IAEE,sBAAA;EJ2nBR;EIxnBM;;IAEE,sBAAA;EJ0nBR;EIjoBM;;IAEE,qBAAA;EJmoBR;EIhoBM;;IAEE,qBAAA;EJkoBR;EIzoBM;;IAEE,mBAAA;EJ2oBR;EIxoBM;;IAEE,mBAAA;EJ0oBR;EIjpBM;;IAEE,qBAAA;EJmpBR;EIhpBM;;IAEE,qBAAA;EJkpBR;EIzpBM;;IAEE,mBAAA;EJ2pBR;EIxpBM;;IAEE,mBAAA;EJ0pBR;AACF;ACrtBI;EGUE;IACE,YAAA;EJ8sBN;EI3sBI;IApCJ,cAAA;IACA,WAAA;EJkvBA;EIpuBA;IACE,cAAA;IACA,WAAA;EJsuBF;EIxuBA;IACE,cAAA;IACA,UAAA;EJ0uBF;EI5uBA;IACE,cAAA;IACA,mBAAA;EJ8uBF;EIhvBA;IACE,cAAA;IACA,UAAA;EJkvBF;EIpvBA;IACE,cAAA;IACA,UAAA;EJsvBF;EIxvBA;IACE,cAAA;IACA,mBAAA;EJ0vBF;EI3tBI;IAhDJ,cAAA;IACA,WAAA;EJ8wBA;EIztBQ;IAhEN,cAAA;IACA,kBAAA;EJ4xBF;EI7tBQ;IAhEN,cAAA;IACA,mBAAA;EJgyBF;EIjuBQ;IAhEN,cAAA;IACA,UAAA;EJoyBF;EIruBQ;IAhEN,cAAA;IACA,mBAAA;EJwyBF;EIzuBQ;IAhEN,cAAA;IACA,mBAAA;EJ4yBF;EI7uBQ;IAhEN,cAAA;IACA,UAAA;EJgzBF;EIjvBQ;IAhEN,cAAA;IACA,mBAAA;EJozBF;EIrvBQ;IAhEN,cAAA;IACA,mBAAA;EJwzBF;EIzvBQ;IAhEN,cAAA;IACA,UAAA;EJ4zBF;EI7vBQ;IAhEN,cAAA;IACA,mBAAA;EJg0BF;EIjwBQ;IAhEN,cAAA;IACA,mBAAA;EJo0BF;EIrwBQ;IAhEN,cAAA;IACA,WAAA;EJw0BF;EIjwBU;IAxDV,cAAA;EJ4zBA;EIpwBU;IAxDV,wBAAA;EJ+zBA;EIvwBU;IAxDV,yBAAA;EJk0BA;EI1wBU;IAxDV,gBAAA;EJq0BA;EI7wBU;IAxDV,yBAAA;EJw0BA;EIhxBU;IAxDV,yBAAA;EJ20BA;EInxBU;IAxDV,gBAAA;EJ80BA;EItxBU;IAxDV,yBAAA;EJi1BA;EIzxBU;IAxDV,yBAAA;EJo1BA;EI5xBU;IAxDV,gBAAA;EJu1BA;EI/xBU;IAxDV,yBAAA;EJ01BA;EIlyBU;IAxDV,yBAAA;EJ61BA;EI1xBM;;IAEE,gBAAA;EJ4xBR;EIzxBM;;IAEE,gBAAA;EJ2xBR;EIlyBM;;IAEE,sBAAA;EJoyBR;EIjyBM;;IAEE,sBAAA;EJmyBR;EI1yBM;;IAEE,qBAAA;EJ4yBR;EIzyBM;;IAEE,qBAAA;EJ2yBR;EIlzBM;;IAEE,mBAAA;EJozBR;EIjzBM;;IAEE,mBAAA;EJmzBR;EI1zBM;;IAEE,qBAAA;EJ4zBR;EIzzBM;;IAEE,qBAAA;EJ2zBR;EIl0BM;;IAEE,mBAAA;EJo0BR;EIj0BM;;IAEE,mBAAA;EJm0BR;AACF;AC93BI;EGUE;IACE,YAAA;EJu3BN;EIp3BI;IApCJ,cAAA;IACA,WAAA;EJ25BA;EI74BA;IACE,cAAA;IACA,WAAA;EJ+4BF;EIj5BA;IACE,cAAA;IACA,UAAA;EJm5BF;EIr5BA;IACE,cAAA;IACA,mBAAA;EJu5BF;EIz5BA;IACE,cAAA;IACA,UAAA;EJ25BF;EI75BA;IACE,cAAA;IACA,UAAA;EJ+5BF;EIj6BA;IACE,cAAA;IACA,mBAAA;EJm6BF;EIp4BI;IAhDJ,cAAA;IACA,WAAA;EJu7BA;EIl4BQ;IAhEN,cAAA;IACA,kBAAA;EJq8BF;EIt4BQ;IAhEN,cAAA;IACA,mBAAA;EJy8BF;EI14BQ;IAhEN,cAAA;IACA,UAAA;EJ68BF;EI94BQ;IAhEN,cAAA;IACA,mBAAA;EJi9BF;EIl5BQ;IAhEN,cAAA;IACA,mBAAA;EJq9BF;EIt5BQ;IAhEN,cAAA;IACA,UAAA;EJy9BF;EI15BQ;IAhEN,cAAA;IACA,mBAAA;EJ69BF;EI95BQ;IAhEN,cAAA;IACA,mBAAA;EJi+BF;EIl6BQ;IAhEN,cAAA;IACA,UAAA;EJq+BF;EIt6BQ;IAhEN,cAAA;IACA,mBAAA;EJy+BF;EI16BQ;IAhEN,cAAA;IACA,mBAAA;EJ6+BF;EI96BQ;IAhEN,cAAA;IACA,WAAA;EJi/BF;EI16BU;IAxDV,cAAA;EJq+BA;EI76BU;IAxDV,wBAAA;EJw+BA;EIh7BU;IAxDV,yBAAA;EJ2+BA;EIn7BU;IAxDV,gBAAA;EJ8+BA;EIt7BU;IAxDV,yBAAA;EJi/BA;EIz7BU;IAxDV,yBAAA;EJo/BA;EI57BU;IAxDV,gBAAA;EJu/BA;EI/7BU;IAxDV,yBAAA;EJ0/BA;EIl8BU;IAxDV,yBAAA;EJ6/BA;EIr8BU;IAxDV,gBAAA;EJggCA;EIx8BU;IAxDV,yBAAA;EJmgCA;EI38BU;IAxDV,yBAAA;EJsgCA;EIn8BM;;IAEE,gBAAA;EJq8BR;EIl8BM;;IAEE,gBAAA;EJo8BR;EI38BM;;IAEE,sBAAA;EJ68BR;EI18BM;;IAEE,sBAAA;EJ48BR;EIn9BM;;IAEE,qBAAA;EJq9BR;EIl9BM;;IAEE,qBAAA;EJo9BR;EI39BM;;IAEE,mBAAA;EJ69BR;EI19BM;;IAEE,mBAAA;EJ49BR;EIn+BM;;IAEE,qBAAA;EJq+BR;EIl+BM;;IAEE,qBAAA;EJo+BR;EI3+BM;;IAEE,mBAAA;EJ6+BR;EI1+BM;;IAEE,mBAAA;EJ4+BR;AACF;AKpiCQ;EAOI,0BAAA;ALgiCZ;;AKviCQ;EAOI,gCAAA;ALoiCZ;;AK3iCQ;EAOI,yBAAA;ALwiCZ;;AK/iCQ;EAOI,wBAAA;AL4iCZ;;AKnjCQ;EAOI,+BAAA;ALgjCZ;;AKvjCQ;EAOI,yBAAA;ALojCZ;;AK3jCQ;EAOI,6BAAA;ALwjCZ;;AK/jCQ;EAOI,8BAAA;AL4jCZ;;AKnkCQ;EAOI,wBAAA;ALgkCZ;;AKvkCQ;EAOI,+BAAA;ALokCZ;;AK3kCQ;EAOI,wBAAA;ALwkCZ;;AK/kCQ;EAOI,yBAAA;AL4kCZ;;AKnlCQ;EAOI,8BAAA;ALglCZ;;AKvlCQ;EAOI,iCAAA;ALolCZ;;AK3lCQ;EAOI,sCAAA;ALwlCZ;;AK/lCQ;EAOI,yCAAA;AL4lCZ;;AKnmCQ;EAOI,uBAAA;ALgmCZ;;AKvmCQ;EAOI,uBAAA;ALomCZ;;AK3mCQ;EAOI,yBAAA;ALwmCZ;;AK/mCQ;EAOI,yBAAA;AL4mCZ;;AKnnCQ;EAOI,0BAAA;ALgnCZ;;AKvnCQ;EAOI,4BAAA;ALonCZ;;AK3nCQ;EAOI,kCAAA;ALwnCZ;;AK/nCQ;EAOI,sCAAA;AL4nCZ;;AKnoCQ;EAOI,oCAAA;ALgoCZ;;AKvoCQ;EAOI,kCAAA;ALooCZ;;AK3oCQ;EAOI,yCAAA;ALwoCZ;;AK/oCQ;EAOI,wCAAA;AL4oCZ;;AKnpCQ;EAOI,wCAAA;ALgpCZ;;AKvpCQ;EAOI,kCAAA;ALopCZ;;AK3pCQ;EAOI,gCAAA;ALwpCZ;;AK/pCQ;EAOI,8BAAA;AL4pCZ;;AKnqCQ;EAOI,gCAAA;ALgqCZ;;AKvqCQ;EAOI,+BAAA;ALoqCZ;;AK3qCQ;EAOI,oCAAA;ALwqCZ;;AK/qCQ;EAOI,kCAAA;AL4qCZ;;AKnrCQ;EAOI,gCAAA;ALgrCZ;;AKvrCQ;EAOI,uCAAA;ALorCZ;;AK3rCQ;EAOI,sCAAA;ALwrCZ;;AK/rCQ;EAOI,iCAAA;AL4rCZ;;AKnsCQ;EAOI,2BAAA;ALgsCZ;;AKvsCQ;EAOI,iCAAA;ALosCZ;;AK3sCQ;EAOI,+BAAA;ALwsCZ;;AK/sCQ;EAOI,6BAAA;AL4sCZ;;AKntCQ;EAOI,+BAAA;ALgtCZ;;AKvtCQ;EAOI,8BAAA;ALotCZ;;AK3tCQ;EAOI,oBAAA;ALwtCZ;;AK/tCQ;EAOI,mBAAA;AL4tCZ;;AKnuCQ;EAOI,mBAAA;ALguCZ;;AKvuCQ;EAOI,mBAAA;ALouCZ;;AK3uCQ;EAOI,mBAAA;ALwuCZ;;AK/uCQ;EAOI,mBAAA;AL4uCZ;;AKnvCQ;EAOI,mBAAA;ALgvCZ;;AKvvCQ;EAOI,mBAAA;ALovCZ;;AK3vCQ;EAOI,oBAAA;ALwvCZ;;AK/vCQ;EAOI,0BAAA;AL4vCZ;;AKnwCQ;EAOI,yBAAA;ALgwCZ;;AKvwCQ;EAOI,uBAAA;ALowCZ;;AK3wCQ;EAOI,yBAAA;ALwwCZ;;AK/wCQ;EAOI,uBAAA;AL4wCZ;;AKnxCQ;EAOI,uBAAA;ALgxCZ;;AKvxCQ;EAOI,0BAAA;EAAA,yBAAA;ALqxCZ;;AK5xCQ;EAOI,gCAAA;EAAA,+BAAA;AL0xCZ;;AKjyCQ;EAOI,+BAAA;EAAA,8BAAA;AL+xCZ;;AKtyCQ;EAOI,6BAAA;EAAA,4BAAA;ALoyCZ;;AK3yCQ;EAOI,+BAAA;EAAA,8BAAA;ALyyCZ;;AKhzCQ;EAOI,6BAAA;EAAA,4BAAA;AL8yCZ;;AKrzCQ;EAOI,6BAAA;EAAA,4BAAA;ALmzCZ;;AK1zCQ;EAOI,wBAAA;EAAA,2BAAA;ALwzCZ;;AK/zCQ;EAOI,8BAAA;EAAA,iCAAA;AL6zCZ;;AKp0CQ;EAOI,6BAAA;EAAA,gCAAA;ALk0CZ;;AKz0CQ;EAOI,2BAAA;EAAA,8BAAA;ALu0CZ;;AK90CQ;EAOI,6BAAA;EAAA,gCAAA;AL40CZ;;AKn1CQ;EAOI,2BAAA;EAAA,8BAAA;ALi1CZ;;AKx1CQ;EAOI,2BAAA;EAAA,8BAAA;ALs1CZ;;AK71CQ;EAOI,wBAAA;AL01CZ;;AKj2CQ;EAOI,8BAAA;AL81CZ;;AKr2CQ;EAOI,6BAAA;ALk2CZ;;AKz2CQ;EAOI,2BAAA;ALs2CZ;;AK72CQ;EAOI,6BAAA;AL02CZ;;AKj3CQ;EAOI,2BAAA;AL82CZ;;AKr3CQ;EAOI,2BAAA;ALk3CZ;;AKz3CQ;EAOI,0BAAA;ALs3CZ;;AK73CQ;EAOI,gCAAA;AL03CZ;;AKj4CQ;EAOI,+BAAA;AL83CZ;;AKr4CQ;EAOI,6BAAA;ALk4CZ;;AKz4CQ;EAOI,+BAAA;ALs4CZ;;AK74CQ;EAOI,6BAAA;AL04CZ;;AKj5CQ;EAOI,6BAAA;AL84CZ;;AKr5CQ;EAOI,2BAAA;ALk5CZ;;AKz5CQ;EAOI,iCAAA;ALs5CZ;;AK75CQ;EAOI,gCAAA;AL05CZ;;AKj6CQ;EAOI,8BAAA;AL85CZ;;AKr6CQ;EAOI,gCAAA;ALk6CZ;;AKz6CQ;EAOI,8BAAA;ALs6CZ;;AK76CQ;EAOI,8BAAA;AL06CZ;;AKj7CQ;EAOI,yBAAA;AL86CZ;;AKr7CQ;EAOI,+BAAA;ALk7CZ;;AKz7CQ;EAOI,8BAAA;ALs7CZ;;AK77CQ;EAOI,4BAAA;AL07CZ;;AKj8CQ;EAOI,8BAAA;AL87CZ;;AKr8CQ;EAOI,4BAAA;ALk8CZ;;AKz8CQ;EAOI,4BAAA;ALs8CZ;;AK78CQ;EAOI,qBAAA;AL08CZ;;AKj9CQ;EAOI,2BAAA;AL88CZ;;AKr9CQ;EAOI,0BAAA;ALk9CZ;;AKz9CQ;EAOI,wBAAA;ALs9CZ;;AK79CQ;EAOI,0BAAA;AL09CZ;;AKj+CQ;EAOI,wBAAA;AL89CZ;;AKr+CQ;EAOI,2BAAA;EAAA,0BAAA;ALm+CZ;;AK1+CQ;EAOI,iCAAA;EAAA,gCAAA;ALw+CZ;;AK/+CQ;EAOI,gCAAA;EAAA,+BAAA;AL6+CZ;;AKp/CQ;EAOI,8BAAA;EAAA,6BAAA;ALk/CZ;;AKz/CQ;EAOI,gCAAA;EAAA,+BAAA;ALu/CZ;;AK9/CQ;EAOI,8BAAA;EAAA,6BAAA;AL4/CZ;;AKngDQ;EAOI,yBAAA;EAAA,4BAAA;ALigDZ;;AKxgDQ;EAOI,+BAAA;EAAA,kCAAA;ALsgDZ;;AK7gDQ;EAOI,8BAAA;EAAA,iCAAA;AL2gDZ;;AKlhDQ;EAOI,4BAAA;EAAA,+BAAA;ALghDZ;;AKvhDQ;EAOI,8BAAA;EAAA,iCAAA;ALqhDZ;;AK5hDQ;EAOI,4BAAA;EAAA,+BAAA;AL0hDZ;;AKjiDQ;EAOI,yBAAA;AL8hDZ;;AKriDQ;EAOI,+BAAA;ALkiDZ;;AKziDQ;EAOI,8BAAA;ALsiDZ;;AK7iDQ;EAOI,4BAAA;AL0iDZ;;AKjjDQ;EAOI,8BAAA;AL8iDZ;;AKrjDQ;EAOI,4BAAA;ALkjDZ;;AKzjDQ;EAOI,2BAAA;ALsjDZ;;AK7jDQ;EAOI,iCAAA;AL0jDZ;;AKjkDQ;EAOI,gCAAA;AL8jDZ;;AKrkDQ;EAOI,8BAAA;ALkkDZ;;AKzkDQ;EAOI,gCAAA;ALskDZ;;AK7kDQ;EAOI,8BAAA;AL0kDZ;;AKjlDQ;EAOI,4BAAA;AL8kDZ;;AKrlDQ;EAOI,kCAAA;ALklDZ;;AKzlDQ;EAOI,iCAAA;ALslDZ;;AK7lDQ;EAOI,+BAAA;AL0lDZ;;AKjmDQ;EAOI,iCAAA;AL8lDZ;;AKrmDQ;EAOI,+BAAA;ALkmDZ;;AKzmDQ;EAOI,0BAAA;ALsmDZ;;AK7mDQ;EAOI,gCAAA;AL0mDZ;;AKjnDQ;EAOI,+BAAA;AL8mDZ;;AKrnDQ;EAOI,6BAAA;ALknDZ;;AKznDQ;EAOI,+BAAA;ALsnDZ;;AK7nDQ;EAOI,6BAAA;AL0nDZ;;ACpoDI;EIGI;IAOI,0BAAA;EL+nDV;EKtoDM;IAOI,gCAAA;ELkoDV;EKzoDM;IAOI,yBAAA;ELqoDV;EK5oDM;IAOI,wBAAA;ELwoDV;EK/oDM;IAOI,+BAAA;EL2oDV;EKlpDM;IAOI,yBAAA;EL8oDV;EKrpDM;IAOI,6BAAA;ELipDV;EKxpDM;IAOI,8BAAA;ELopDV;EK3pDM;IAOI,wBAAA;ELupDV;EK9pDM;IAOI,+BAAA;EL0pDV;EKjqDM;IAOI,wBAAA;EL6pDV;EKpqDM;IAOI,yBAAA;ELgqDV;EKvqDM;IAOI,8BAAA;ELmqDV;EK1qDM;IAOI,iCAAA;ELsqDV;EK7qDM;IAOI,sCAAA;ELyqDV;EKhrDM;IAOI,yCAAA;EL4qDV;EKnrDM;IAOI,uBAAA;EL+qDV;EKtrDM;IAOI,uBAAA;ELkrDV;EKzrDM;IAOI,yBAAA;ELqrDV;EK5rDM;IAOI,yBAAA;ELwrDV;EK/rDM;IAOI,0BAAA;EL2rDV;EKlsDM;IAOI,4BAAA;EL8rDV;EKrsDM;IAOI,kCAAA;ELisDV;EKxsDM;IAOI,sCAAA;ELosDV;EK3sDM;IAOI,oCAAA;ELusDV;EK9sDM;IAOI,kCAAA;EL0sDV;EKjtDM;IAOI,yCAAA;EL6sDV;EKptDM;IAOI,wCAAA;ELgtDV;EKvtDM;IAOI,wCAAA;ELmtDV;EK1tDM;IAOI,kCAAA;ELstDV;EK7tDM;IAOI,gCAAA;ELytDV;EKhuDM;IAOI,8BAAA;EL4tDV;EKnuDM;IAOI,gCAAA;EL+tDV;EKtuDM;IAOI,+BAAA;ELkuDV;EKzuDM;IAOI,oCAAA;ELquDV;EK5uDM;IAOI,kCAAA;ELwuDV;EK/uDM;IAOI,gCAAA;EL2uDV;EKlvDM;IAOI,uCAAA;EL8uDV;EKrvDM;IAOI,sCAAA;ELivDV;EKxvDM;IAOI,iCAAA;ELovDV;EK3vDM;IAOI,2BAAA;ELuvDV;EK9vDM;IAOI,iCAAA;EL0vDV;EKjwDM;IAOI,+BAAA;EL6vDV;EKpwDM;IAOI,6BAAA;ELgwDV;EKvwDM;IAOI,+BAAA;ELmwDV;EK1wDM;IAOI,8BAAA;ELswDV;EK7wDM;IAOI,oBAAA;ELywDV;EKhxDM;IAOI,mBAAA;EL4wDV;EKnxDM;IAOI,mBAAA;EL+wDV;EKtxDM;IAOI,mBAAA;ELkxDV;EKzxDM;IAOI,mBAAA;ELqxDV;EK5xDM;IAOI,mBAAA;ELwxDV;EK/xDM;IAOI,mBAAA;EL2xDV;EKlyDM;IAOI,mBAAA;EL8xDV;EKryDM;IAOI,oBAAA;ELiyDV;EKxyDM;IAOI,0BAAA;ELoyDV;EK3yDM;IAOI,yBAAA;ELuyDV;EK9yDM;IAOI,uBAAA;EL0yDV;EKjzDM;IAOI,yBAAA;EL6yDV;EKpzDM;IAOI,uBAAA;ELgzDV;EKvzDM;IAOI,uBAAA;ELmzDV;EK1zDM;IAOI,0BAAA;IAAA,yBAAA;ELuzDV;EK9zDM;IAOI,gCAAA;IAAA,+BAAA;EL2zDV;EKl0DM;IAOI,+BAAA;IAAA,8BAAA;EL+zDV;EKt0DM;IAOI,6BAAA;IAAA,4BAAA;ELm0DV;EK10DM;IAOI,+BAAA;IAAA,8BAAA;ELu0DV;EK90DM;IAOI,6BAAA;IAAA,4BAAA;EL20DV;EKl1DM;IAOI,6BAAA;IAAA,4BAAA;EL+0DV;EKt1DM;IAOI,wBAAA;IAAA,2BAAA;ELm1DV;EK11DM;IAOI,8BAAA;IAAA,iCAAA;ELu1DV;EK91DM;IAOI,6BAAA;IAAA,gCAAA;EL21DV;EKl2DM;IAOI,2BAAA;IAAA,8BAAA;EL+1DV;EKt2DM;IAOI,6BAAA;IAAA,gCAAA;ELm2DV;EK12DM;IAOI,2BAAA;IAAA,8BAAA;ELu2DV;EK92DM;IAOI,2BAAA;IAAA,8BAAA;EL22DV;EKl3DM;IAOI,wBAAA;EL82DV;EKr3DM;IAOI,8BAAA;ELi3DV;EKx3DM;IAOI,6BAAA;ELo3DV;EK33DM;IAOI,2BAAA;ELu3DV;EK93DM;IAOI,6BAAA;EL03DV;EKj4DM;IAOI,2BAAA;EL63DV;EKp4DM;IAOI,2BAAA;ELg4DV;EKv4DM;IAOI,0BAAA;ELm4DV;EK14DM;IAOI,gCAAA;ELs4DV;EK74DM;IAOI,+BAAA;ELy4DV;EKh5DM;IAOI,6BAAA;EL44DV;EKn5DM;IAOI,+BAAA;EL+4DV;EKt5DM;IAOI,6BAAA;ELk5DV;EKz5DM;IAOI,6BAAA;ELq5DV;EK55DM;IAOI,2BAAA;ELw5DV;EK/5DM;IAOI,iCAAA;EL25DV;EKl6DM;IAOI,gCAAA;EL85DV;EKr6DM;IAOI,8BAAA;ELi6DV;EKx6DM;IAOI,gCAAA;ELo6DV;EK36DM;IAOI,8BAAA;ELu6DV;EK96DM;IAOI,8BAAA;EL06DV;EKj7DM;IAOI,yBAAA;EL66DV;EKp7DM;IAOI,+BAAA;ELg7DV;EKv7DM;IAOI,8BAAA;ELm7DV;EK17DM;IAOI,4BAAA;ELs7DV;EK77DM;IAOI,8BAAA;ELy7DV;EKh8DM;IAOI,4BAAA;EL47DV;EKn8DM;IAOI,4BAAA;EL+7DV;EKt8DM;IAOI,qBAAA;ELk8DV;EKz8DM;IAOI,2BAAA;ELq8DV;EK58DM;IAOI,0BAAA;ELw8DV;EK/8DM;IAOI,wBAAA;EL28DV;EKl9DM;IAOI,0BAAA;EL88DV;EKr9DM;IAOI,wBAAA;ELi9DV;EKx9DM;IAOI,2BAAA;IAAA,0BAAA;ELq9DV;EK59DM;IAOI,iCAAA;IAAA,gCAAA;ELy9DV;EKh+DM;IAOI,gCAAA;IAAA,+BAAA;EL69DV;EKp+DM;IAOI,8BAAA;IAAA,6BAAA;ELi+DV;EKx+DM;IAOI,gCAAA;IAAA,+BAAA;ELq+DV;EK5+DM;IAOI,8BAAA;IAAA,6BAAA;ELy+DV;EKh/DM;IAOI,yBAAA;IAAA,4BAAA;EL6+DV;EKp/DM;IAOI,+BAAA;IAAA,kCAAA;ELi/DV;EKx/DM;IAOI,8BAAA;IAAA,iCAAA;ELq/DV;EK5/DM;IAOI,4BAAA;IAAA,+BAAA;ELy/DV;EKhgEM;IAOI,8BAAA;IAAA,iCAAA;EL6/DV;EKpgEM;IAOI,4BAAA;IAAA,+BAAA;ELigEV;EKxgEM;IAOI,yBAAA;ELogEV;EK3gEM;IAOI,+BAAA;ELugEV;EK9gEM;IAOI,8BAAA;EL0gEV;EKjhEM;IAOI,4BAAA;EL6gEV;EKphEM;IAOI,8BAAA;ELghEV;EKvhEM;IAOI,4BAAA;ELmhEV;EK1hEM;IAOI,2BAAA;ELshEV;EK7hEM;IAOI,iCAAA;ELyhEV;EKhiEM;IAOI,gCAAA;EL4hEV;EKniEM;IAOI,8BAAA;EL+hEV;EKtiEM;IAOI,gCAAA;ELkiEV;EKziEM;IAOI,8BAAA;ELqiEV;EK5iEM;IAOI,4BAAA;ELwiEV;EK/iEM;IAOI,kCAAA;EL2iEV;EKljEM;IAOI,iCAAA;EL8iEV;EKrjEM;IAOI,+BAAA;ELijEV;EKxjEM;IAOI,iCAAA;ELojEV;EK3jEM;IAOI,+BAAA;ELujEV;EK9jEM;IAOI,0BAAA;EL0jEV;EKjkEM;IAOI,gCAAA;EL6jEV;EKpkEM;IAOI,+BAAA;ELgkEV;EKvkEM;IAOI,6BAAA;ELmkEV;EK1kEM;IAOI,+BAAA;ELskEV;EK7kEM;IAOI,6BAAA;ELykEV;AACF;ACplEI;EIGI;IAOI,0BAAA;EL8kEV;EKrlEM;IAOI,gCAAA;ELilEV;EKxlEM;IAOI,yBAAA;ELolEV;EK3lEM;IAOI,wBAAA;ELulEV;EK9lEM;IAOI,+BAAA;EL0lEV;EKjmEM;IAOI,yBAAA;EL6lEV;EKpmEM;IAOI,6BAAA;ELgmEV;EKvmEM;IAOI,8BAAA;ELmmEV;EK1mEM;IAOI,wBAAA;ELsmEV;EK7mEM;IAOI,+BAAA;ELymEV;EKhnEM;IAOI,wBAAA;EL4mEV;EKnnEM;IAOI,yBAAA;EL+mEV;EKtnEM;IAOI,8BAAA;ELknEV;EKznEM;IAOI,iCAAA;ELqnEV;EK5nEM;IAOI,sCAAA;ELwnEV;EK/nEM;IAOI,yCAAA;EL2nEV;EKloEM;IAOI,uBAAA;EL8nEV;EKroEM;IAOI,uBAAA;ELioEV;EKxoEM;IAOI,yBAAA;ELooEV;EK3oEM;IAOI,yBAAA;ELuoEV;EK9oEM;IAOI,0BAAA;EL0oEV;EKjpEM;IAOI,4BAAA;EL6oEV;EKppEM;IAOI,kCAAA;ELgpEV;EKvpEM;IAOI,sCAAA;ELmpEV;EK1pEM;IAOI,oCAAA;ELspEV;EK7pEM;IAOI,kCAAA;ELypEV;EKhqEM;IAOI,yCAAA;EL4pEV;EKnqEM;IAOI,wCAAA;EL+pEV;EKtqEM;IAOI,wCAAA;ELkqEV;EKzqEM;IAOI,kCAAA;ELqqEV;EK5qEM;IAOI,gCAAA;ELwqEV;EK/qEM;IAOI,8BAAA;EL2qEV;EKlrEM;IAOI,gCAAA;EL8qEV;EKrrEM;IAOI,+BAAA;ELirEV;EKxrEM;IAOI,oCAAA;ELorEV;EK3rEM;IAOI,kCAAA;ELurEV;EK9rEM;IAOI,gCAAA;EL0rEV;EKjsEM;IAOI,uCAAA;EL6rEV;EKpsEM;IAOI,sCAAA;ELgsEV;EKvsEM;IAOI,iCAAA;ELmsEV;EK1sEM;IAOI,2BAAA;ELssEV;EK7sEM;IAOI,iCAAA;ELysEV;EKhtEM;IAOI,+BAAA;EL4sEV;EKntEM;IAOI,6BAAA;EL+sEV;EKttEM;IAOI,+BAAA;ELktEV;EKztEM;IAOI,8BAAA;ELqtEV;EK5tEM;IAOI,oBAAA;ELwtEV;EK/tEM;IAOI,mBAAA;EL2tEV;EKluEM;IAOI,mBAAA;EL8tEV;EKruEM;IAOI,mBAAA;ELiuEV;EKxuEM;IAOI,mBAAA;ELouEV;EK3uEM;IAOI,mBAAA;ELuuEV;EK9uEM;IAOI,mBAAA;EL0uEV;EKjvEM;IAOI,mBAAA;EL6uEV;EKpvEM;IAOI,oBAAA;ELgvEV;EKvvEM;IAOI,0BAAA;ELmvEV;EK1vEM;IAOI,yBAAA;ELsvEV;EK7vEM;IAOI,uBAAA;ELyvEV;EKhwEM;IAOI,yBAAA;EL4vEV;EKnwEM;IAOI,uBAAA;EL+vEV;EKtwEM;IAOI,uBAAA;ELkwEV;EKzwEM;IAOI,0BAAA;IAAA,yBAAA;ELswEV;EK7wEM;IAOI,gCAAA;IAAA,+BAAA;EL0wEV;EKjxEM;IAOI,+BAAA;IAAA,8BAAA;EL8wEV;EKrxEM;IAOI,6BAAA;IAAA,4BAAA;ELkxEV;EKzxEM;IAOI,+BAAA;IAAA,8BAAA;ELsxEV;EK7xEM;IAOI,6BAAA;IAAA,4BAAA;EL0xEV;EKjyEM;IAOI,6BAAA;IAAA,4BAAA;EL8xEV;EKryEM;IAOI,wBAAA;IAAA,2BAAA;ELkyEV;EKzyEM;IAOI,8BAAA;IAAA,iCAAA;ELsyEV;EK7yEM;IAOI,6BAAA;IAAA,gCAAA;EL0yEV;EKjzEM;IAOI,2BAAA;IAAA,8BAAA;EL8yEV;EKrzEM;IAOI,6BAAA;IAAA,gCAAA;ELkzEV;EKzzEM;IAOI,2BAAA;IAAA,8BAAA;ELszEV;EK7zEM;IAOI,2BAAA;IAAA,8BAAA;EL0zEV;EKj0EM;IAOI,wBAAA;EL6zEV;EKp0EM;IAOI,8BAAA;ELg0EV;EKv0EM;IAOI,6BAAA;ELm0EV;EK10EM;IAOI,2BAAA;ELs0EV;EK70EM;IAOI,6BAAA;ELy0EV;EKh1EM;IAOI,2BAAA;EL40EV;EKn1EM;IAOI,2BAAA;EL+0EV;EKt1EM;IAOI,0BAAA;ELk1EV;EKz1EM;IAOI,gCAAA;ELq1EV;EK51EM;IAOI,+BAAA;ELw1EV;EK/1EM;IAOI,6BAAA;EL21EV;EKl2EM;IAOI,+BAAA;EL81EV;EKr2EM;IAOI,6BAAA;ELi2EV;EKx2EM;IAOI,6BAAA;ELo2EV;EK32EM;IAOI,2BAAA;ELu2EV;EK92EM;IAOI,iCAAA;EL02EV;EKj3EM;IAOI,gCAAA;EL62EV;EKp3EM;IAOI,8BAAA;ELg3EV;EKv3EM;IAOI,gCAAA;ELm3EV;EK13EM;IAOI,8BAAA;ELs3EV;EK73EM;IAOI,8BAAA;ELy3EV;EKh4EM;IAOI,yBAAA;EL43EV;EKn4EM;IAOI,+BAAA;EL+3EV;EKt4EM;IAOI,8BAAA;ELk4EV;EKz4EM;IAOI,4BAAA;ELq4EV;EK54EM;IAOI,8BAAA;ELw4EV;EK/4EM;IAOI,4BAAA;EL24EV;EKl5EM;IAOI,4BAAA;EL84EV;EKr5EM;IAOI,qBAAA;ELi5EV;EKx5EM;IAOI,2BAAA;ELo5EV;EK35EM;IAOI,0BAAA;ELu5EV;EK95EM;IAOI,wBAAA;EL05EV;EKj6EM;IAOI,0BAAA;EL65EV;EKp6EM;IAOI,wBAAA;ELg6EV;EKv6EM;IAOI,2BAAA;IAAA,0BAAA;ELo6EV;EK36EM;IAOI,iCAAA;IAAA,gCAAA;ELw6EV;EK/6EM;IAOI,gCAAA;IAAA,+BAAA;EL46EV;EKn7EM;IAOI,8BAAA;IAAA,6BAAA;ELg7EV;EKv7EM;IAOI,gCAAA;IAAA,+BAAA;ELo7EV;EK37EM;IAOI,8BAAA;IAAA,6BAAA;ELw7EV;EK/7EM;IAOI,yBAAA;IAAA,4BAAA;EL47EV;EKn8EM;IAOI,+BAAA;IAAA,kCAAA;ELg8EV;EKv8EM;IAOI,8BAAA;IAAA,iCAAA;ELo8EV;EK38EM;IAOI,4BAAA;IAAA,+BAAA;ELw8EV;EK/8EM;IAOI,8BAAA;IAAA,iCAAA;EL48EV;EKn9EM;IAOI,4BAAA;IAAA,+BAAA;ELg9EV;EKv9EM;IAOI,yBAAA;ELm9EV;EK19EM;IAOI,+BAAA;ELs9EV;EK79EM;IAOI,8BAAA;ELy9EV;EKh+EM;IAOI,4BAAA;EL49EV;EKn+EM;IAOI,8BAAA;EL+9EV;EKt+EM;IAOI,4BAAA;ELk+EV;EKz+EM;IAOI,2BAAA;ELq+EV;EK5+EM;IAOI,iCAAA;ELw+EV;EK/+EM;IAOI,gCAAA;EL2+EV;EKl/EM;IAOI,8BAAA;EL8+EV;EKr/EM;IAOI,gCAAA;ELi/EV;EKx/EM;IAOI,8BAAA;ELo/EV;EK3/EM;IAOI,4BAAA;ELu/EV;EK9/EM;IAOI,kCAAA;EL0/EV;EKjgFM;IAOI,iCAAA;EL6/EV;EKpgFM;IAOI,+BAAA;ELggFV;EKvgFM;IAOI,iCAAA;ELmgFV;EK1gFM;IAOI,+BAAA;ELsgFV;EK7gFM;IAOI,0BAAA;ELygFV;EKhhFM;IAOI,gCAAA;EL4gFV;EKnhFM;IAOI,+BAAA;EL+gFV;EKthFM;IAOI,6BAAA;ELkhFV;EKzhFM;IAOI,+BAAA;ELqhFV;EK5hFM;IAOI,6BAAA;ELwhFV;AACF;ACniFI;EIGI;IAOI,0BAAA;EL6hFV;EKpiFM;IAOI,gCAAA;ELgiFV;EKviFM;IAOI,yBAAA;ELmiFV;EK1iFM;IAOI,wBAAA;ELsiFV;EK7iFM;IAOI,+BAAA;ELyiFV;EKhjFM;IAOI,yBAAA;EL4iFV;EKnjFM;IAOI,6BAAA;EL+iFV;EKtjFM;IAOI,8BAAA;ELkjFV;EKzjFM;IAOI,wBAAA;ELqjFV;EK5jFM;IAOI,+BAAA;ELwjFV;EK/jFM;IAOI,wBAAA;EL2jFV;EKlkFM;IAOI,yBAAA;EL8jFV;EKrkFM;IAOI,8BAAA;ELikFV;EKxkFM;IAOI,iCAAA;ELokFV;EK3kFM;IAOI,sCAAA;ELukFV;EK9kFM;IAOI,yCAAA;EL0kFV;EKjlFM;IAOI,uBAAA;EL6kFV;EKplFM;IAOI,uBAAA;ELglFV;EKvlFM;IAOI,yBAAA;ELmlFV;EK1lFM;IAOI,yBAAA;ELslFV;EK7lFM;IAOI,0BAAA;ELylFV;EKhmFM;IAOI,4BAAA;EL4lFV;EKnmFM;IAOI,kCAAA;EL+lFV;EKtmFM;IAOI,sCAAA;ELkmFV;EKzmFM;IAOI,oCAAA;ELqmFV;EK5mFM;IAOI,kCAAA;ELwmFV;EK/mFM;IAOI,yCAAA;EL2mFV;EKlnFM;IAOI,wCAAA;EL8mFV;EKrnFM;IAOI,wCAAA;ELinFV;EKxnFM;IAOI,kCAAA;ELonFV;EK3nFM;IAOI,gCAAA;ELunFV;EK9nFM;IAOI,8BAAA;EL0nFV;EKjoFM;IAOI,gCAAA;EL6nFV;EKpoFM;IAOI,+BAAA;ELgoFV;EKvoFM;IAOI,oCAAA;ELmoFV;EK1oFM;IAOI,kCAAA;ELsoFV;EK7oFM;IAOI,gCAAA;ELyoFV;EKhpFM;IAOI,uCAAA;EL4oFV;EKnpFM;IAOI,sCAAA;EL+oFV;EKtpFM;IAOI,iCAAA;ELkpFV;EKzpFM;IAOI,2BAAA;ELqpFV;EK5pFM;IAOI,iCAAA;ELwpFV;EK/pFM;IAOI,+BAAA;EL2pFV;EKlqFM;IAOI,6BAAA;EL8pFV;EKrqFM;IAOI,+BAAA;ELiqFV;EKxqFM;IAOI,8BAAA;ELoqFV;EK3qFM;IAOI,oBAAA;ELuqFV;EK9qFM;IAOI,mBAAA;EL0qFV;EKjrFM;IAOI,mBAAA;EL6qFV;EKprFM;IAOI,mBAAA;ELgrFV;EKvrFM;IAOI,mBAAA;ELmrFV;EK1rFM;IAOI,mBAAA;ELsrFV;EK7rFM;IAOI,mBAAA;ELyrFV;EKhsFM;IAOI,mBAAA;EL4rFV;EKnsFM;IAOI,oBAAA;EL+rFV;EKtsFM;IAOI,0BAAA;ELksFV;EKzsFM;IAOI,yBAAA;ELqsFV;EK5sFM;IAOI,uBAAA;ELwsFV;EK/sFM;IAOI,yBAAA;EL2sFV;EKltFM;IAOI,uBAAA;EL8sFV;EKrtFM;IAOI,uBAAA;ELitFV;EKxtFM;IAOI,0BAAA;IAAA,yBAAA;ELqtFV;EK5tFM;IAOI,gCAAA;IAAA,+BAAA;ELytFV;EKhuFM;IAOI,+BAAA;IAAA,8BAAA;EL6tFV;EKpuFM;IAOI,6BAAA;IAAA,4BAAA;ELiuFV;EKxuFM;IAOI,+BAAA;IAAA,8BAAA;ELquFV;EK5uFM;IAOI,6BAAA;IAAA,4BAAA;ELyuFV;EKhvFM;IAOI,6BAAA;IAAA,4BAAA;EL6uFV;EKpvFM;IAOI,wBAAA;IAAA,2BAAA;ELivFV;EKxvFM;IAOI,8BAAA;IAAA,iCAAA;ELqvFV;EK5vFM;IAOI,6BAAA;IAAA,gCAAA;ELyvFV;EKhwFM;IAOI,2BAAA;IAAA,8BAAA;EL6vFV;EKpwFM;IAOI,6BAAA;IAAA,gCAAA;ELiwFV;EKxwFM;IAOI,2BAAA;IAAA,8BAAA;ELqwFV;EK5wFM;IAOI,2BAAA;IAAA,8BAAA;ELywFV;EKhxFM;IAOI,wBAAA;EL4wFV;EKnxFM;IAOI,8BAAA;EL+wFV;EKtxFM;IAOI,6BAAA;ELkxFV;EKzxFM;IAOI,2BAAA;ELqxFV;EK5xFM;IAOI,6BAAA;ELwxFV;EK/xFM;IAOI,2BAAA;EL2xFV;EKlyFM;IAOI,2BAAA;EL8xFV;EKryFM;IAOI,0BAAA;ELiyFV;EKxyFM;IAOI,gCAAA;ELoyFV;EK3yFM;IAOI,+BAAA;ELuyFV;EK9yFM;IAOI,6BAAA;EL0yFV;EKjzFM;IAOI,+BAAA;EL6yFV;EKpzFM;IAOI,6BAAA;ELgzFV;EKvzFM;IAOI,6BAAA;ELmzFV;EK1zFM;IAOI,2BAAA;ELszFV;EK7zFM;IAOI,iCAAA;ELyzFV;EKh0FM;IAOI,gCAAA;EL4zFV;EKn0FM;IAOI,8BAAA;EL+zFV;EKt0FM;IAOI,gCAAA;ELk0FV;EKz0FM;IAOI,8BAAA;ELq0FV;EK50FM;IAOI,8BAAA;ELw0FV;EK/0FM;IAOI,yBAAA;EL20FV;EKl1FM;IAOI,+BAAA;EL80FV;EKr1FM;IAOI,8BAAA;ELi1FV;EKx1FM;IAOI,4BAAA;ELo1FV;EK31FM;IAOI,8BAAA;ELu1FV;EK91FM;IAOI,4BAAA;EL01FV;EKj2FM;IAOI,4BAAA;EL61FV;EKp2FM;IAOI,qBAAA;ELg2FV;EKv2FM;IAOI,2BAAA;ELm2FV;EK12FM;IAOI,0BAAA;ELs2FV;EK72FM;IAOI,wBAAA;ELy2FV;EKh3FM;IAOI,0BAAA;EL42FV;EKn3FM;IAOI,wBAAA;EL+2FV;EKt3FM;IAOI,2BAAA;IAAA,0BAAA;ELm3FV;EK13FM;IAOI,iCAAA;IAAA,gCAAA;ELu3FV;EK93FM;IAOI,gCAAA;IAAA,+BAAA;EL23FV;EKl4FM;IAOI,8BAAA;IAAA,6BAAA;EL+3FV;EKt4FM;IAOI,gCAAA;IAAA,+BAAA;ELm4FV;EK14FM;IAOI,8BAAA;IAAA,6BAAA;ELu4FV;EK94FM;IAOI,yBAAA;IAAA,4BAAA;EL24FV;EKl5FM;IAOI,+BAAA;IAAA,kCAAA;EL+4FV;EKt5FM;IAOI,8BAAA;IAAA,iCAAA;ELm5FV;EK15FM;IAOI,4BAAA;IAAA,+BAAA;ELu5FV;EK95FM;IAOI,8BAAA;IAAA,iCAAA;EL25FV;EKl6FM;IAOI,4BAAA;IAAA,+BAAA;EL+5FV;EKt6FM;IAOI,yBAAA;ELk6FV;EKz6FM;IAOI,+BAAA;ELq6FV;EK56FM;IAOI,8BAAA;ELw6FV;EK/6FM;IAOI,4BAAA;EL26FV;EKl7FM;IAOI,8BAAA;EL86FV;EKr7FM;IAOI,4BAAA;ELi7FV;EKx7FM;IAOI,2BAAA;ELo7FV;EK37FM;IAOI,iCAAA;ELu7FV;EK97FM;IAOI,gCAAA;EL07FV;EKj8FM;IAOI,8BAAA;EL67FV;EKp8FM;IAOI,gCAAA;ELg8FV;EKv8FM;IAOI,8BAAA;ELm8FV;EK18FM;IAOI,4BAAA;ELs8FV;EK78FM;IAOI,kCAAA;ELy8FV;EKh9FM;IAOI,iCAAA;EL48FV;EKn9FM;IAOI,+BAAA;EL+8FV;EKt9FM;IAOI,iCAAA;ELk9FV;EKz9FM;IAOI,+BAAA;ELq9FV;EK59FM;IAOI,0BAAA;ELw9FV;EK/9FM;IAOI,gCAAA;EL29FV;EKl+FM;IAOI,+BAAA;EL89FV;EKr+FM;IAOI,6BAAA;ELi+FV;EKx+FM;IAOI,+BAAA;ELo+FV;EK3+FM;IAOI,6BAAA;ELu+FV;AACF;ACl/FI;EIGI;IAOI,0BAAA;EL4+FV;EKn/FM;IAOI,gCAAA;EL++FV;EKt/FM;IAOI,yBAAA;ELk/FV;EKz/FM;IAOI,wBAAA;ELq/FV;EK5/FM;IAOI,+BAAA;ELw/FV;EK//FM;IAOI,yBAAA;EL2/FV;EKlgGM;IAOI,6BAAA;EL8/FV;EKrgGM;IAOI,8BAAA;ELigGV;EKxgGM;IAOI,wBAAA;ELogGV;EK3gGM;IAOI,+BAAA;ELugGV;EK9gGM;IAOI,wBAAA;EL0gGV;EKjhGM;IAOI,yBAAA;EL6gGV;EKphGM;IAOI,8BAAA;ELghGV;EKvhGM;IAOI,iCAAA;ELmhGV;EK1hGM;IAOI,sCAAA;ELshGV;EK7hGM;IAOI,yCAAA;ELyhGV;EKhiGM;IAOI,uBAAA;EL4hGV;EKniGM;IAOI,uBAAA;EL+hGV;EKtiGM;IAOI,yBAAA;ELkiGV;EKziGM;IAOI,yBAAA;ELqiGV;EK5iGM;IAOI,0BAAA;ELwiGV;EK/iGM;IAOI,4BAAA;EL2iGV;EKljGM;IAOI,kCAAA;EL8iGV;EKrjGM;IAOI,sCAAA;ELijGV;EKxjGM;IAOI,oCAAA;ELojGV;EK3jGM;IAOI,kCAAA;ELujGV;EK9jGM;IAOI,yCAAA;EL0jGV;EKjkGM;IAOI,wCAAA;EL6jGV;EKpkGM;IAOI,wCAAA;ELgkGV;EKvkGM;IAOI,kCAAA;ELmkGV;EK1kGM;IAOI,gCAAA;ELskGV;EK7kGM;IAOI,8BAAA;ELykGV;EKhlGM;IAOI,gCAAA;EL4kGV;EKnlGM;IAOI,+BAAA;EL+kGV;EKtlGM;IAOI,oCAAA;ELklGV;EKzlGM;IAOI,kCAAA;ELqlGV;EK5lGM;IAOI,gCAAA;ELwlGV;EK/lGM;IAOI,uCAAA;EL2lGV;EKlmGM;IAOI,sCAAA;EL8lGV;EKrmGM;IAOI,iCAAA;ELimGV;EKxmGM;IAOI,2BAAA;ELomGV;EK3mGM;IAOI,iCAAA;ELumGV;EK9mGM;IAOI,+BAAA;EL0mGV;EKjnGM;IAOI,6BAAA;EL6mGV;EKpnGM;IAOI,+BAAA;ELgnGV;EKvnGM;IAOI,8BAAA;ELmnGV;EK1nGM;IAOI,oBAAA;ELsnGV;EK7nGM;IAOI,mBAAA;ELynGV;EKhoGM;IAOI,mBAAA;EL4nGV;EKnoGM;IAOI,mBAAA;EL+nGV;EKtoGM;IAOI,mBAAA;ELkoGV;EKzoGM;IAOI,mBAAA;ELqoGV;EK5oGM;IAOI,mBAAA;ELwoGV;EK/oGM;IAOI,mBAAA;EL2oGV;EKlpGM;IAOI,oBAAA;EL8oGV;EKrpGM;IAOI,0BAAA;ELipGV;EKxpGM;IAOI,yBAAA;ELopGV;EK3pGM;IAOI,uBAAA;ELupGV;EK9pGM;IAOI,yBAAA;EL0pGV;EKjqGM;IAOI,uBAAA;EL6pGV;EKpqGM;IAOI,uBAAA;ELgqGV;EKvqGM;IAOI,0BAAA;IAAA,yBAAA;ELoqGV;EK3qGM;IAOI,gCAAA;IAAA,+BAAA;ELwqGV;EK/qGM;IAOI,+BAAA;IAAA,8BAAA;EL4qGV;EKnrGM;IAOI,6BAAA;IAAA,4BAAA;ELgrGV;EKvrGM;IAOI,+BAAA;IAAA,8BAAA;ELorGV;EK3rGM;IAOI,6BAAA;IAAA,4BAAA;ELwrGV;EK/rGM;IAOI,6BAAA;IAAA,4BAAA;EL4rGV;EKnsGM;IAOI,wBAAA;IAAA,2BAAA;ELgsGV;EKvsGM;IAOI,8BAAA;IAAA,iCAAA;ELosGV;EK3sGM;IAOI,6BAAA;IAAA,gCAAA;ELwsGV;EK/sGM;IAOI,2BAAA;IAAA,8BAAA;EL4sGV;EKntGM;IAOI,6BAAA;IAAA,gCAAA;ELgtGV;EKvtGM;IAOI,2BAAA;IAAA,8BAAA;ELotGV;EK3tGM;IAOI,2BAAA;IAAA,8BAAA;ELwtGV;EK/tGM;IAOI,wBAAA;EL2tGV;EKluGM;IAOI,8BAAA;EL8tGV;EKruGM;IAOI,6BAAA;ELiuGV;EKxuGM;IAOI,2BAAA;ELouGV;EK3uGM;IAOI,6BAAA;ELuuGV;EK9uGM;IAOI,2BAAA;EL0uGV;EKjvGM;IAOI,2BAAA;EL6uGV;EKpvGM;IAOI,0BAAA;ELgvGV;EKvvGM;IAOI,gCAAA;ELmvGV;EK1vGM;IAOI,+BAAA;ELsvGV;EK7vGM;IAOI,6BAAA;ELyvGV;EKhwGM;IAOI,+BAAA;EL4vGV;EKnwGM;IAOI,6BAAA;EL+vGV;EKtwGM;IAOI,6BAAA;ELkwGV;EKzwGM;IAOI,2BAAA;ELqwGV;EK5wGM;IAOI,iCAAA;ELwwGV;EK/wGM;IAOI,gCAAA;EL2wGV;EKlxGM;IAOI,8BAAA;EL8wGV;EKrxGM;IAOI,gCAAA;ELixGV;EKxxGM;IAOI,8BAAA;ELoxGV;EK3xGM;IAOI,8BAAA;ELuxGV;EK9xGM;IAOI,yBAAA;EL0xGV;EKjyGM;IAOI,+BAAA;EL6xGV;EKpyGM;IAOI,8BAAA;ELgyGV;EKvyGM;IAOI,4BAAA;ELmyGV;EK1yGM;IAOI,8BAAA;ELsyGV;EK7yGM;IAOI,4BAAA;ELyyGV;EKhzGM;IAOI,4BAAA;EL4yGV;EKnzGM;IAOI,qBAAA;EL+yGV;EKtzGM;IAOI,2BAAA;ELkzGV;EKzzGM;IAOI,0BAAA;ELqzGV;EK5zGM;IAOI,wBAAA;ELwzGV;EK/zGM;IAOI,0BAAA;EL2zGV;EKl0GM;IAOI,wBAAA;EL8zGV;EKr0GM;IAOI,2BAAA;IAAA,0BAAA;ELk0GV;EKz0GM;IAOI,iCAAA;IAAA,gCAAA;ELs0GV;EK70GM;IAOI,gCAAA;IAAA,+BAAA;EL00GV;EKj1GM;IAOI,8BAAA;IAAA,6BAAA;EL80GV;EKr1GM;IAOI,gCAAA;IAAA,+BAAA;ELk1GV;EKz1GM;IAOI,8BAAA;IAAA,6BAAA;ELs1GV;EK71GM;IAOI,yBAAA;IAAA,4BAAA;EL01GV;EKj2GM;IAOI,+BAAA;IAAA,kCAAA;EL81GV;EKr2GM;IAOI,8BAAA;IAAA,iCAAA;ELk2GV;EKz2GM;IAOI,4BAAA;IAAA,+BAAA;ELs2GV;EK72GM;IAOI,8BAAA;IAAA,iCAAA;EL02GV;EKj3GM;IAOI,4BAAA;IAAA,+BAAA;EL82GV;EKr3GM;IAOI,yBAAA;ELi3GV;EKx3GM;IAOI,+BAAA;ELo3GV;EK33GM;IAOI,8BAAA;ELu3GV;EK93GM;IAOI,4BAAA;EL03GV;EKj4GM;IAOI,8BAAA;EL63GV;EKp4GM;IAOI,4BAAA;ELg4GV;EKv4GM;IAOI,2BAAA;ELm4GV;EK14GM;IAOI,iCAAA;ELs4GV;EK74GM;IAOI,gCAAA;ELy4GV;EKh5GM;IAOI,8BAAA;EL44GV;EKn5GM;IAOI,gCAAA;EL+4GV;EKt5GM;IAOI,8BAAA;ELk5GV;EKz5GM;IAOI,4BAAA;ELq5GV;EK55GM;IAOI,kCAAA;ELw5GV;EK/5GM;IAOI,iCAAA;EL25GV;EKl6GM;IAOI,+BAAA;EL85GV;EKr6GM;IAOI,iCAAA;ELi6GV;EKx6GM;IAOI,+BAAA;ELo6GV;EK36GM;IAOI,0BAAA;ELu6GV;EK96GM;IAOI,gCAAA;EL06GV;EKj7GM;IAOI,+BAAA;EL66GV;EKp7GM;IAOI,6BAAA;ELg7GV;EKv7GM;IAOI,+BAAA;ELm7GV;EK17GM;IAOI,6BAAA;ELs7GV;AACF;ACj8GI;EIGI;IAOI,0BAAA;EL27GV;EKl8GM;IAOI,gCAAA;EL87GV;EKr8GM;IAOI,yBAAA;ELi8GV;EKx8GM;IAOI,wBAAA;ELo8GV;EK38GM;IAOI,+BAAA;ELu8GV;EK98GM;IAOI,yBAAA;EL08GV;EKj9GM;IAOI,6BAAA;EL68GV;EKp9GM;IAOI,8BAAA;ELg9GV;EKv9GM;IAOI,wBAAA;ELm9GV;EK19GM;IAOI,+BAAA;ELs9GV;EK79GM;IAOI,wBAAA;ELy9GV;EKh+GM;IAOI,yBAAA;EL49GV;EKn+GM;IAOI,8BAAA;EL+9GV;EKt+GM;IAOI,iCAAA;ELk+GV;EKz+GM;IAOI,sCAAA;ELq+GV;EK5+GM;IAOI,yCAAA;ELw+GV;EK/+GM;IAOI,uBAAA;EL2+GV;EKl/GM;IAOI,uBAAA;EL8+GV;EKr/GM;IAOI,yBAAA;ELi/GV;EKx/GM;IAOI,yBAAA;ELo/GV;EK3/GM;IAOI,0BAAA;ELu/GV;EK9/GM;IAOI,4BAAA;EL0/GV;EKjgHM;IAOI,kCAAA;EL6/GV;EKpgHM;IAOI,sCAAA;ELggHV;EKvgHM;IAOI,oCAAA;ELmgHV;EK1gHM;IAOI,kCAAA;ELsgHV;EK7gHM;IAOI,yCAAA;ELygHV;EKhhHM;IAOI,wCAAA;EL4gHV;EKnhHM;IAOI,wCAAA;EL+gHV;EKthHM;IAOI,kCAAA;ELkhHV;EKzhHM;IAOI,gCAAA;ELqhHV;EK5hHM;IAOI,8BAAA;ELwhHV;EK/hHM;IAOI,gCAAA;EL2hHV;EKliHM;IAOI,+BAAA;EL8hHV;EKriHM;IAOI,oCAAA;ELiiHV;EKxiHM;IAOI,kCAAA;ELoiHV;EK3iHM;IAOI,gCAAA;ELuiHV;EK9iHM;IAOI,uCAAA;EL0iHV;EKjjHM;IAOI,sCAAA;EL6iHV;EKpjHM;IAOI,iCAAA;ELgjHV;EKvjHM;IAOI,2BAAA;ELmjHV;EK1jHM;IAOI,iCAAA;ELsjHV;EK7jHM;IAOI,+BAAA;ELyjHV;EKhkHM;IAOI,6BAAA;EL4jHV;EKnkHM;IAOI,+BAAA;EL+jHV;EKtkHM;IAOI,8BAAA;ELkkHV;EKzkHM;IAOI,oBAAA;ELqkHV;EK5kHM;IAOI,mBAAA;ELwkHV;EK/kHM;IAOI,mBAAA;EL2kHV;EKllHM;IAOI,mBAAA;EL8kHV;EKrlHM;IAOI,mBAAA;ELilHV;EKxlHM;IAOI,mBAAA;ELolHV;EK3lHM;IAOI,mBAAA;ELulHV;EK9lHM;IAOI,mBAAA;EL0lHV;EKjmHM;IAOI,oBAAA;EL6lHV;EKpmHM;IAOI,0BAAA;ELgmHV;EKvmHM;IAOI,yBAAA;ELmmHV;EK1mHM;IAOI,uBAAA;ELsmHV;EK7mHM;IAOI,yBAAA;ELymHV;EKhnHM;IAOI,uBAAA;EL4mHV;EKnnHM;IAOI,uBAAA;EL+mHV;EKtnHM;IAOI,0BAAA;IAAA,yBAAA;ELmnHV;EK1nHM;IAOI,gCAAA;IAAA,+BAAA;ELunHV;EK9nHM;IAOI,+BAAA;IAAA,8BAAA;EL2nHV;EKloHM;IAOI,6BAAA;IAAA,4BAAA;EL+nHV;EKtoHM;IAOI,+BAAA;IAAA,8BAAA;ELmoHV;EK1oHM;IAOI,6BAAA;IAAA,4BAAA;ELuoHV;EK9oHM;IAOI,6BAAA;IAAA,4BAAA;EL2oHV;EKlpHM;IAOI,wBAAA;IAAA,2BAAA;EL+oHV;EKtpHM;IAOI,8BAAA;IAAA,iCAAA;ELmpHV;EK1pHM;IAOI,6BAAA;IAAA,gCAAA;ELupHV;EK9pHM;IAOI,2BAAA;IAAA,8BAAA;EL2pHV;EKlqHM;IAOI,6BAAA;IAAA,gCAAA;EL+pHV;EKtqHM;IAOI,2BAAA;IAAA,8BAAA;ELmqHV;EK1qHM;IAOI,2BAAA;IAAA,8BAAA;ELuqHV;EK9qHM;IAOI,wBAAA;EL0qHV;EKjrHM;IAOI,8BAAA;EL6qHV;EKprHM;IAOI,6BAAA;ELgrHV;EKvrHM;IAOI,2BAAA;ELmrHV;EK1rHM;IAOI,6BAAA;ELsrHV;EK7rHM;IAOI,2BAAA;ELyrHV;EKhsHM;IAOI,2BAAA;EL4rHV;EKnsHM;IAOI,0BAAA;EL+rHV;EKtsHM;IAOI,gCAAA;ELksHV;EKzsHM;IAOI,+BAAA;ELqsHV;EK5sHM;IAOI,6BAAA;ELwsHV;EK/sHM;IAOI,+BAAA;EL2sHV;EKltHM;IAOI,6BAAA;EL8sHV;EKrtHM;IAOI,6BAAA;ELitHV;EKxtHM;IAOI,2BAAA;ELotHV;EK3tHM;IAOI,iCAAA;ELutHV;EK9tHM;IAOI,gCAAA;EL0tHV;EKjuHM;IAOI,8BAAA;EL6tHV;EKpuHM;IAOI,gCAAA;ELguHV;EKvuHM;IAOI,8BAAA;ELmuHV;EK1uHM;IAOI,8BAAA;ELsuHV;EK7uHM;IAOI,yBAAA;ELyuHV;EKhvHM;IAOI,+BAAA;EL4uHV;EKnvHM;IAOI,8BAAA;EL+uHV;EKtvHM;IAOI,4BAAA;ELkvHV;EKzvHM;IAOI,8BAAA;ELqvHV;EK5vHM;IAOI,4BAAA;ELwvHV;EK/vHM;IAOI,4BAAA;EL2vHV;EKlwHM;IAOI,qBAAA;EL8vHV;EKrwHM;IAOI,2BAAA;ELiwHV;EKxwHM;IAOI,0BAAA;ELowHV;EK3wHM;IAOI,wBAAA;ELuwHV;EK9wHM;IAOI,0BAAA;EL0wHV;EKjxHM;IAOI,wBAAA;EL6wHV;EKpxHM;IAOI,2BAAA;IAAA,0BAAA;ELixHV;EKxxHM;IAOI,iCAAA;IAAA,gCAAA;ELqxHV;EK5xHM;IAOI,gCAAA;IAAA,+BAAA;ELyxHV;EKhyHM;IAOI,8BAAA;IAAA,6BAAA;EL6xHV;EKpyHM;IAOI,gCAAA;IAAA,+BAAA;ELiyHV;EKxyHM;IAOI,8BAAA;IAAA,6BAAA;ELqyHV;EK5yHM;IAOI,yBAAA;IAAA,4BAAA;ELyyHV;EKhzHM;IAOI,+BAAA;IAAA,kCAAA;EL6yHV;EKpzHM;IAOI,8BAAA;IAAA,iCAAA;ELizHV;EKxzHM;IAOI,4BAAA;IAAA,+BAAA;ELqzHV;EK5zHM;IAOI,8BAAA;IAAA,iCAAA;ELyzHV;EKh0HM;IAOI,4BAAA;IAAA,+BAAA;EL6zHV;EKp0HM;IAOI,yBAAA;ELg0HV;EKv0HM;IAOI,+BAAA;ELm0HV;EK10HM;IAOI,8BAAA;ELs0HV;EK70HM;IAOI,4BAAA;ELy0HV;EKh1HM;IAOI,8BAAA;EL40HV;EKn1HM;IAOI,4BAAA;EL+0HV;EKt1HM;IAOI,2BAAA;ELk1HV;EKz1HM;IAOI,iCAAA;ELq1HV;EK51HM;IAOI,gCAAA;ELw1HV;EK/1HM;IAOI,8BAAA;EL21HV;EKl2HM;IAOI,gCAAA;EL81HV;EKr2HM;IAOI,8BAAA;ELi2HV;EKx2HM;IAOI,4BAAA;ELo2HV;EK32HM;IAOI,kCAAA;ELu2HV;EK92HM;IAOI,iCAAA;EL02HV;EKj3HM;IAOI,+BAAA;EL62HV;EKp3HM;IAOI,iCAAA;ELg3HV;EKv3HM;IAOI,+BAAA;ELm3HV;EK13HM;IAOI,0BAAA;ELs3HV;EK73HM;IAOI,gCAAA;ELy3HV;EKh4HM;IAOI,+BAAA;EL43HV;EKn4HM;IAOI,6BAAA;EL+3HV;EKt4HM;IAOI,+BAAA;ELk4HV;EKz4HM;IAOI,6BAAA;ELq4HV;AACF;AMz6HA;ED4BQ;IAOI,0BAAA;EL04HV;EKj5HM;IAOI,gCAAA;EL64HV;EKp5HM;IAOI,yBAAA;ELg5HV;EKv5HM;IAOI,wBAAA;ELm5HV;EK15HM;IAOI,+BAAA;ELs5HV;EK75HM;IAOI,yBAAA;ELy5HV;EKh6HM;IAOI,6BAAA;EL45HV;EKn6HM;IAOI,8BAAA;EL+5HV;EKt6HM;IAOI,wBAAA;ELk6HV;EKz6HM;IAOI,+BAAA;ELq6HV;EK56HM;IAOI,wBAAA;ELw6HV;AACF","file":"bootstrap-grid.css","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-container-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-right: auto;\n margin-left: auto;\n}\n","/*!\n * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n:root {\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n .g-sm-0,\n .gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n .gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n .gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n .gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n .gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n .gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n .gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n .gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n .gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n .gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n .gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n .gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n .g-md-0,\n .gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n .gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n .gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n .gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n .gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n .gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n .gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n .gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n .gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n .gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n .gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n .gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n .g-lg-0,\n .gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n .gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n .gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n .gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n .gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n .gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n .gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n .gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n .gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n .gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n .gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n .gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n .g-xl-0,\n .gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n .gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n .gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n .gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n .gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n .gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n .gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n .gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n .gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xl-4,\n .gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xl-5,\n .gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n .gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-left: 0;\n }\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xxl-3 {\n margin-left: 25%;\n }\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xxl-6 {\n margin-left: 50%;\n }\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xxl-9 {\n margin-left: 75%;\n }\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n .g-xxl-0,\n .gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n .gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n .gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n .gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n .gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n .gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n .gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n .gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n .gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xxl-4,\n .gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xxl-5,\n .gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n .gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-inline-grid {\n display: inline-grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-grid {\n display: grid !important;\n }\n .d-sm-inline-grid {\n display: inline-grid !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n .d-sm-none {\n display: none !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n .order-sm-first {\n order: -1 !important;\n }\n .order-sm-0 {\n order: 0 !important;\n }\n .order-sm-1 {\n order: 1 !important;\n }\n .order-sm-2 {\n order: 2 !important;\n }\n .order-sm-3 {\n order: 3 !important;\n }\n .order-sm-4 {\n order: 4 !important;\n }\n .order-sm-5 {\n order: 5 !important;\n }\n .order-sm-last {\n order: 6 !important;\n }\n .m-sm-0 {\n margin: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n .mt-sm-auto {\n margin-top: auto !important;\n }\n .me-sm-0 {\n margin-right: 0 !important;\n }\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n .me-sm-4 {\n margin-right: 1.5rem !important;\n }\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n .me-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n .ms-sm-4 {\n margin-left: 1.5rem !important;\n }\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n .ms-sm-auto {\n margin-left: auto !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-sm-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n .pe-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n .ps-sm-4 {\n padding-left: 1.5rem !important;\n }\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-grid {\n display: grid !important;\n }\n .d-md-inline-grid {\n display: inline-grid !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n .d-md-none {\n display: none !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n .order-md-first {\n order: -1 !important;\n }\n .order-md-0 {\n order: 0 !important;\n }\n .order-md-1 {\n order: 1 !important;\n }\n .order-md-2 {\n order: 2 !important;\n }\n .order-md-3 {\n order: 3 !important;\n }\n .order-md-4 {\n order: 4 !important;\n }\n .order-md-5 {\n order: 5 !important;\n }\n .order-md-last {\n order: 6 !important;\n }\n .m-md-0 {\n margin: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-md-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-md-0 {\n margin-top: 0 !important;\n }\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n .mt-md-auto {\n margin-top: auto !important;\n }\n .me-md-0 {\n margin-right: 0 !important;\n }\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n .me-md-3 {\n margin-right: 1rem !important;\n }\n .me-md-4 {\n margin-right: 1.5rem !important;\n }\n .me-md-5 {\n margin-right: 3rem !important;\n }\n .me-md-auto {\n margin-right: auto !important;\n }\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n .ms-md-0 {\n margin-left: 0 !important;\n }\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n .ms-md-4 {\n margin-left: 1.5rem !important;\n }\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n .ms-md-auto {\n margin-left: auto !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-md-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-md-0 {\n padding-top: 0 !important;\n }\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n .pe-md-0 {\n padding-right: 0 !important;\n }\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n .pe-md-4 {\n padding-right: 1.5rem !important;\n }\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n .ps-md-0 {\n padding-left: 0 !important;\n }\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n .ps-md-4 {\n padding-left: 1.5rem !important;\n }\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-grid {\n display: grid !important;\n }\n .d-lg-inline-grid {\n display: inline-grid !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n .d-lg-none {\n display: none !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n .order-lg-first {\n order: -1 !important;\n }\n .order-lg-0 {\n order: 0 !important;\n }\n .order-lg-1 {\n order: 1 !important;\n }\n .order-lg-2 {\n order: 2 !important;\n }\n .order-lg-3 {\n order: 3 !important;\n }\n .order-lg-4 {\n order: 4 !important;\n }\n .order-lg-5 {\n order: 5 !important;\n }\n .order-lg-last {\n order: 6 !important;\n }\n .m-lg-0 {\n margin: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n .mt-lg-auto {\n margin-top: auto !important;\n }\n .me-lg-0 {\n margin-right: 0 !important;\n }\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n .me-lg-4 {\n margin-right: 1.5rem !important;\n }\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n .me-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n .ms-lg-4 {\n margin-left: 1.5rem !important;\n }\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n .ms-lg-auto {\n margin-left: auto !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-lg-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n .pe-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n .ps-lg-4 {\n padding-left: 1.5rem !important;\n }\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-grid {\n display: grid !important;\n }\n .d-xl-inline-grid {\n display: inline-grid !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n .d-xl-none {\n display: none !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n .order-xl-first {\n order: -1 !important;\n }\n .order-xl-0 {\n order: 0 !important;\n }\n .order-xl-1 {\n order: 1 !important;\n }\n .order-xl-2 {\n order: 2 !important;\n }\n .order-xl-3 {\n order: 3 !important;\n }\n .order-xl-4 {\n order: 4 !important;\n }\n .order-xl-5 {\n order: 5 !important;\n }\n .order-xl-last {\n order: 6 !important;\n }\n .m-xl-0 {\n margin: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n .mt-xl-auto {\n margin-top: auto !important;\n }\n .me-xl-0 {\n margin-right: 0 !important;\n }\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n .me-xl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n .me-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n .ms-xl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n .ms-xl-auto {\n margin-left: auto !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n .pe-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n .ps-xl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n .d-xxl-block {\n display: block !important;\n }\n .d-xxl-grid {\n display: grid !important;\n }\n .d-xxl-inline-grid {\n display: inline-grid !important;\n }\n .d-xxl-table {\n display: table !important;\n }\n .d-xxl-table-row {\n display: table-row !important;\n }\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n .d-xxl-flex {\n display: flex !important;\n }\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n .d-xxl-none {\n display: none !important;\n }\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xxl-row {\n flex-direction: row !important;\n }\n .flex-xxl-column {\n flex-direction: column !important;\n }\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n .align-items-xxl-center {\n align-items: center !important;\n }\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n .align-content-xxl-center {\n align-content: center !important;\n }\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n .align-self-xxl-center {\n align-self: center !important;\n }\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n .order-xxl-first {\n order: -1 !important;\n }\n .order-xxl-0 {\n order: 0 !important;\n }\n .order-xxl-1 {\n order: 1 !important;\n }\n .order-xxl-2 {\n order: 2 !important;\n }\n .order-xxl-3 {\n order: 3 !important;\n }\n .order-xxl-4 {\n order: 4 !important;\n }\n .order-xxl-5 {\n order: 5 !important;\n }\n .order-xxl-last {\n order: 6 !important;\n }\n .m-xxl-0 {\n margin: 0 !important;\n }\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n .m-xxl-3 {\n margin: 1rem !important;\n }\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n .m-xxl-5 {\n margin: 3rem !important;\n }\n .m-xxl-auto {\n margin: auto !important;\n }\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xxl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n .me-xxl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n .me-xxl-auto {\n margin-right: auto !important;\n }\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n .ms-xxl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n .p-xxl-0 {\n padding: 0 !important;\n }\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n .p-xxl-3 {\n padding: 1rem !important;\n }\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n .p-xxl-5 {\n padding: 3rem !important;\n }\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xxl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n .pe-xxl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n .ps-xxl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-grid {\n display: grid !important;\n }\n .d-print-inline-grid {\n display: inline-grid !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n .d-print-none {\n display: none !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap-grid.css.map */\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n// Color system\n\n// scss-docs-start gray-color-variables\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n// scss-docs-end gray-color-variables\n\n// fusv-disable\n// scss-docs-start gray-colors-map\n$grays: (\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n) !default;\n// scss-docs-end gray-colors-map\n// fusv-enable\n\n// scss-docs-start color-variables\n$blue: #0d6efd !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #d63384 !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #198754 !default;\n$teal: #20c997 !default;\n$cyan: #0dcaf0 !default;\n// scss-docs-end color-variables\n\n// scss-docs-start colors-map\n$colors: (\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"black\": $black,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n) !default;\n// scss-docs-end colors-map\n\n// The contrast ratio to reach against white, to determine if color changes from \"light\" to \"dark\". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.\n// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast\n$min-contrast-ratio: 4.5 !default;\n\n// Customize the light and dark text colors for use in our color contrast function.\n$color-contrast-dark: $black !default;\n$color-contrast-light: $white !default;\n\n// fusv-disable\n$blue-100: tint-color($blue, 80%) !default;\n$blue-200: tint-color($blue, 60%) !default;\n$blue-300: tint-color($blue, 40%) !default;\n$blue-400: tint-color($blue, 20%) !default;\n$blue-500: $blue !default;\n$blue-600: shade-color($blue, 20%) !default;\n$blue-700: shade-color($blue, 40%) !default;\n$blue-800: shade-color($blue, 60%) !default;\n$blue-900: shade-color($blue, 80%) !default;\n\n$indigo-100: tint-color($indigo, 80%) !default;\n$indigo-200: tint-color($indigo, 60%) !default;\n$indigo-300: tint-color($indigo, 40%) !default;\n$indigo-400: tint-color($indigo, 20%) !default;\n$indigo-500: $indigo !default;\n$indigo-600: shade-color($indigo, 20%) !default;\n$indigo-700: shade-color($indigo, 40%) !default;\n$indigo-800: shade-color($indigo, 60%) !default;\n$indigo-900: shade-color($indigo, 80%) !default;\n\n$purple-100: tint-color($purple, 80%) !default;\n$purple-200: tint-color($purple, 60%) !default;\n$purple-300: tint-color($purple, 40%) !default;\n$purple-400: tint-color($purple, 20%) !default;\n$purple-500: $purple !default;\n$purple-600: shade-color($purple, 20%) !default;\n$purple-700: shade-color($purple, 40%) !default;\n$purple-800: shade-color($purple, 60%) !default;\n$purple-900: shade-color($purple, 80%) !default;\n\n$pink-100: tint-color($pink, 80%) !default;\n$pink-200: tint-color($pink, 60%) !default;\n$pink-300: tint-color($pink, 40%) !default;\n$pink-400: tint-color($pink, 20%) !default;\n$pink-500: $pink !default;\n$pink-600: shade-color($pink, 20%) !default;\n$pink-700: shade-color($pink, 40%) !default;\n$pink-800: shade-color($pink, 60%) !default;\n$pink-900: shade-color($pink, 80%) !default;\n\n$red-100: tint-color($red, 80%) !default;\n$red-200: tint-color($red, 60%) !default;\n$red-300: tint-color($red, 40%) !default;\n$red-400: tint-color($red, 20%) !default;\n$red-500: $red !default;\n$red-600: shade-color($red, 20%) !default;\n$red-700: shade-color($red, 40%) !default;\n$red-800: shade-color($red, 60%) !default;\n$red-900: shade-color($red, 80%) !default;\n\n$orange-100: tint-color($orange, 80%) !default;\n$orange-200: tint-color($orange, 60%) !default;\n$orange-300: tint-color($orange, 40%) !default;\n$orange-400: tint-color($orange, 20%) !default;\n$orange-500: $orange !default;\n$orange-600: shade-color($orange, 20%) !default;\n$orange-700: shade-color($orange, 40%) !default;\n$orange-800: shade-color($orange, 60%) !default;\n$orange-900: shade-color($orange, 80%) !default;\n\n$yellow-100: tint-color($yellow, 80%) !default;\n$yellow-200: tint-color($yellow, 60%) !default;\n$yellow-300: tint-color($yellow, 40%) !default;\n$yellow-400: tint-color($yellow, 20%) !default;\n$yellow-500: $yellow !default;\n$yellow-600: shade-color($yellow, 20%) !default;\n$yellow-700: shade-color($yellow, 40%) !default;\n$yellow-800: shade-color($yellow, 60%) !default;\n$yellow-900: shade-color($yellow, 80%) !default;\n\n$green-100: tint-color($green, 80%) !default;\n$green-200: tint-color($green, 60%) !default;\n$green-300: tint-color($green, 40%) !default;\n$green-400: tint-color($green, 20%) !default;\n$green-500: $green !default;\n$green-600: shade-color($green, 20%) !default;\n$green-700: shade-color($green, 40%) !default;\n$green-800: shade-color($green, 60%) !default;\n$green-900: shade-color($green, 80%) !default;\n\n$teal-100: tint-color($teal, 80%) !default;\n$teal-200: tint-color($teal, 60%) !default;\n$teal-300: tint-color($teal, 40%) !default;\n$teal-400: tint-color($teal, 20%) !default;\n$teal-500: $teal !default;\n$teal-600: shade-color($teal, 20%) !default;\n$teal-700: shade-color($teal, 40%) !default;\n$teal-800: shade-color($teal, 60%) !default;\n$teal-900: shade-color($teal, 80%) !default;\n\n$cyan-100: tint-color($cyan, 80%) !default;\n$cyan-200: tint-color($cyan, 60%) !default;\n$cyan-300: tint-color($cyan, 40%) !default;\n$cyan-400: tint-color($cyan, 20%) !default;\n$cyan-500: $cyan !default;\n$cyan-600: shade-color($cyan, 20%) !default;\n$cyan-700: shade-color($cyan, 40%) !default;\n$cyan-800: shade-color($cyan, 60%) !default;\n$cyan-900: shade-color($cyan, 80%) !default;\n\n$blues: (\n \"blue-100\": $blue-100,\n \"blue-200\": $blue-200,\n \"blue-300\": $blue-300,\n \"blue-400\": $blue-400,\n \"blue-500\": $blue-500,\n \"blue-600\": $blue-600,\n \"blue-700\": $blue-700,\n \"blue-800\": $blue-800,\n \"blue-900\": $blue-900\n) !default;\n\n$indigos: (\n \"indigo-100\": $indigo-100,\n \"indigo-200\": $indigo-200,\n \"indigo-300\": $indigo-300,\n \"indigo-400\": $indigo-400,\n \"indigo-500\": $indigo-500,\n \"indigo-600\": $indigo-600,\n \"indigo-700\": $indigo-700,\n \"indigo-800\": $indigo-800,\n \"indigo-900\": $indigo-900\n) !default;\n\n$purples: (\n \"purple-100\": $purple-100,\n \"purple-200\": $purple-200,\n \"purple-300\": $purple-300,\n \"purple-400\": $purple-400,\n \"purple-500\": $purple-500,\n \"purple-600\": $purple-600,\n \"purple-700\": $purple-700,\n \"purple-800\": $purple-800,\n \"purple-900\": $purple-900\n) !default;\n\n$pinks: (\n \"pink-100\": $pink-100,\n \"pink-200\": $pink-200,\n \"pink-300\": $pink-300,\n \"pink-400\": $pink-400,\n \"pink-500\": $pink-500,\n \"pink-600\": $pink-600,\n \"pink-700\": $pink-700,\n \"pink-800\": $pink-800,\n \"pink-900\": $pink-900\n) !default;\n\n$reds: (\n \"red-100\": $red-100,\n \"red-200\": $red-200,\n \"red-300\": $red-300,\n \"red-400\": $red-400,\n \"red-500\": $red-500,\n \"red-600\": $red-600,\n \"red-700\": $red-700,\n \"red-800\": $red-800,\n \"red-900\": $red-900\n) !default;\n\n$oranges: (\n \"orange-100\": $orange-100,\n \"orange-200\": $orange-200,\n \"orange-300\": $orange-300,\n \"orange-400\": $orange-400,\n \"orange-500\": $orange-500,\n \"orange-600\": $orange-600,\n \"orange-700\": $orange-700,\n \"orange-800\": $orange-800,\n \"orange-900\": $orange-900\n) !default;\n\n$yellows: (\n \"yellow-100\": $yellow-100,\n \"yellow-200\": $yellow-200,\n \"yellow-300\": $yellow-300,\n \"yellow-400\": $yellow-400,\n \"yellow-500\": $yellow-500,\n \"yellow-600\": $yellow-600,\n \"yellow-700\": $yellow-700,\n \"yellow-800\": $yellow-800,\n \"yellow-900\": $yellow-900\n) !default;\n\n$greens: (\n \"green-100\": $green-100,\n \"green-200\": $green-200,\n \"green-300\": $green-300,\n \"green-400\": $green-400,\n \"green-500\": $green-500,\n \"green-600\": $green-600,\n \"green-700\": $green-700,\n \"green-800\": $green-800,\n \"green-900\": $green-900\n) !default;\n\n$teals: (\n \"teal-100\": $teal-100,\n \"teal-200\": $teal-200,\n \"teal-300\": $teal-300,\n \"teal-400\": $teal-400,\n \"teal-500\": $teal-500,\n \"teal-600\": $teal-600,\n \"teal-700\": $teal-700,\n \"teal-800\": $teal-800,\n \"teal-900\": $teal-900\n) !default;\n\n$cyans: (\n \"cyan-100\": $cyan-100,\n \"cyan-200\": $cyan-200,\n \"cyan-300\": $cyan-300,\n \"cyan-400\": $cyan-400,\n \"cyan-500\": $cyan-500,\n \"cyan-600\": $cyan-600,\n \"cyan-700\": $cyan-700,\n \"cyan-800\": $cyan-800,\n \"cyan-900\": $cyan-900\n) !default;\n// fusv-enable\n\n// scss-docs-start theme-color-variables\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-900 !default;\n// scss-docs-end theme-color-variables\n\n// scss-docs-start theme-colors-map\n$theme-colors: (\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n) !default;\n// scss-docs-end theme-colors-map\n\n// scss-docs-start theme-text-variables\n$primary-text-emphasis: shade-color($primary, 60%) !default;\n$secondary-text-emphasis: shade-color($secondary, 60%) !default;\n$success-text-emphasis: shade-color($success, 60%) !default;\n$info-text-emphasis: shade-color($info, 60%) !default;\n$warning-text-emphasis: shade-color($warning, 60%) !default;\n$danger-text-emphasis: shade-color($danger, 60%) !default;\n$light-text-emphasis: $gray-700 !default;\n$dark-text-emphasis: $gray-700 !default;\n// scss-docs-end theme-text-variables\n\n// scss-docs-start theme-bg-subtle-variables\n$primary-bg-subtle: tint-color($primary, 80%) !default;\n$secondary-bg-subtle: tint-color($secondary, 80%) !default;\n$success-bg-subtle: tint-color($success, 80%) !default;\n$info-bg-subtle: tint-color($info, 80%) !default;\n$warning-bg-subtle: tint-color($warning, 80%) !default;\n$danger-bg-subtle: tint-color($danger, 80%) !default;\n$light-bg-subtle: mix($gray-100, $white) !default;\n$dark-bg-subtle: $gray-400 !default;\n// scss-docs-end theme-bg-subtle-variables\n\n// scss-docs-start theme-border-subtle-variables\n$primary-border-subtle: tint-color($primary, 60%) !default;\n$secondary-border-subtle: tint-color($secondary, 60%) !default;\n$success-border-subtle: tint-color($success, 60%) !default;\n$info-border-subtle: tint-color($info, 60%) !default;\n$warning-border-subtle: tint-color($warning, 60%) !default;\n$danger-border-subtle: tint-color($danger, 60%) !default;\n$light-border-subtle: $gray-200 !default;\n$dark-border-subtle: $gray-500 !default;\n// scss-docs-end theme-border-subtle-variables\n\n// Characters which are escaped by the escape-svg function\n$escaped-characters: (\n (\"<\", \"%3c\"),\n (\">\", \"%3e\"),\n (\"#\", \"%23\"),\n (\"(\", \"%28\"),\n (\")\", \"%29\"),\n) !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-reduced-motion: true !default;\n$enable-smooth-scroll: true !default;\n$enable-grid-classes: true !default;\n$enable-container-classes: true !default;\n$enable-cssgrid: false !default;\n$enable-button-pointers: true !default;\n$enable-rfs: true !default;\n$enable-validation-icons: true !default;\n$enable-negative-margins: false !default;\n$enable-deprecation-messages: true !default;\n$enable-important-utilities: true !default;\n\n$enable-dark-mode: true !default;\n$color-mode-type: data !default; // `data` or `media-query`\n\n// Prefix for :root CSS variables\n\n$variable-prefix: bs- !default; // Deprecated in v5.2.0 for the shorter `$prefix`\n$prefix: $variable-prefix !default;\n\n// Gradient\n//\n// The gradient which is added to components if `$enable-gradients` is `true`\n// This gradient is also added to elements with `.bg-gradient`\n// scss-docs-start variable-gradient\n$gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0)) !default;\n// scss-docs-end variable-gradient\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n// scss-docs-start spacer-variables-maps\n$spacer: 1rem !default;\n$spacers: (\n 0: 0,\n 1: $spacer * .25,\n 2: $spacer * .5,\n 3: $spacer,\n 4: $spacer * 1.5,\n 5: $spacer * 3,\n) !default;\n// scss-docs-end spacer-variables-maps\n\n// Position\n//\n// Define the edge positioning anchors of the position utilities.\n\n// scss-docs-start position-map\n$position-values: (\n 0: 0,\n 50: 50%,\n 100: 100%\n) !default;\n// scss-docs-end position-map\n\n// Body\n//\n// Settings for the `` element.\n\n$body-text-align: null !default;\n$body-color: $gray-900 !default;\n$body-bg: $white !default;\n\n$body-secondary-color: rgba($body-color, .75) !default;\n$body-secondary-bg: $gray-200 !default;\n\n$body-tertiary-color: rgba($body-color, .5) !default;\n$body-tertiary-bg: $gray-100 !default;\n\n$body-emphasis-color: $black !default;\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: $primary !default;\n$link-decoration: underline !default;\n$link-shade-percentage: 20% !default;\n$link-hover-color: shift-color($link-color, $link-shade-percentage) !default;\n$link-hover-decoration: null !default;\n\n$stretched-link-pseudo-element: after !default;\n$stretched-link-z-index: 1 !default;\n\n// Icon links\n// scss-docs-start icon-link-variables\n$icon-link-gap: .375rem !default;\n$icon-link-underline-offset: .25em !default;\n$icon-link-icon-size: 1em !default;\n$icon-link-icon-transition: .2s ease-in-out transform !default;\n$icon-link-icon-transform: translate3d(.25em, 0, 0) !default;\n// scss-docs-end icon-link-variables\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n// scss-docs-start grid-breakpoints\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px,\n xxl: 1400px\n) !default;\n// scss-docs-end grid-breakpoints\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints, \"$grid-breakpoints\");\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n// scss-docs-start container-max-widths\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px,\n xxl: 1320px\n) !default;\n// scss-docs-end container-max-widths\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 1.5rem !default;\n$grid-row-columns: 6 !default;\n\n// Container padding\n\n$container-padding-x: $grid-gutter-width !default;\n\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n// scss-docs-start border-variables\n$border-width: 1px !default;\n$border-widths: (\n 1: 1px,\n 2: 2px,\n 3: 3px,\n 4: 4px,\n 5: 5px\n) !default;\n$border-style: solid !default;\n$border-color: $gray-300 !default;\n$border-color-translucent: rgba($black, .175) !default;\n// scss-docs-end border-variables\n\n// scss-docs-start border-radius-variables\n$border-radius: .375rem !default;\n$border-radius-sm: .25rem !default;\n$border-radius-lg: .5rem !default;\n$border-radius-xl: 1rem !default;\n$border-radius-xxl: 2rem !default;\n$border-radius-pill: 50rem !default;\n// scss-docs-end border-radius-variables\n// fusv-disable\n$border-radius-2xl: $border-radius-xxl !default; // Deprecated in v5.3.0\n// fusv-enable\n\n// scss-docs-start box-shadow-variables\n$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;\n$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;\n$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;\n$box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default;\n// scss-docs-end box-shadow-variables\n\n$component-active-color: $white !default;\n$component-active-bg: $primary !default;\n\n// scss-docs-start focus-ring-variables\n$focus-ring-width: .25rem !default;\n$focus-ring-opacity: .25 !default;\n$focus-ring-color: rgba($primary, $focus-ring-opacity) !default;\n$focus-ring-blur: 0 !default;\n$focus-ring-box-shadow: 0 0 $focus-ring-blur $focus-ring-width $focus-ring-color !default;\n// scss-docs-end focus-ring-variables\n\n// scss-docs-start caret-variables\n$caret-width: .3em !default;\n$caret-vertical-align: $caret-width * .85 !default;\n$caret-spacing: $caret-width * .85 !default;\n// scss-docs-end caret-variables\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n// scss-docs-start collapse-transition\n$transition-collapse: height .35s ease !default;\n$transition-collapse-width: width .35s ease !default;\n// scss-docs-end collapse-transition\n\n// stylelint-disable function-disallowed-list\n// scss-docs-start aspect-ratios\n$aspect-ratios: (\n \"1x1\": 100%,\n \"4x3\": calc(3 / 4 * 100%),\n \"16x9\": calc(9 / 16 * 100%),\n \"21x9\": calc(9 / 21 * 100%)\n) !default;\n// scss-docs-end aspect-ratios\n// stylelint-enable function-disallowed-list\n\n// Typography\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// scss-docs-start font-variables\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n// stylelint-enable value-keyword-case\n$font-family-base: var(--#{$prefix}font-sans-serif) !default;\n$font-family-code: var(--#{$prefix}font-monospace) !default;\n\n// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins\n// $font-size-base affects the font size of the body text\n$font-size-root: null !default;\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-sm: $font-size-base * .875 !default;\n$font-size-lg: $font-size-base * 1.25 !default;\n\n$font-weight-lighter: lighter !default;\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-medium: 500 !default;\n$font-weight-semibold: 600 !default;\n$font-weight-bold: 700 !default;\n$font-weight-bolder: bolder !default;\n\n$font-weight-base: $font-weight-normal !default;\n\n$line-height-base: 1.5 !default;\n$line-height-sm: 1.25 !default;\n$line-height-lg: 2 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n// scss-docs-end font-variables\n\n// scss-docs-start font-sizes\n$font-sizes: (\n 1: $h1-font-size,\n 2: $h2-font-size,\n 3: $h3-font-size,\n 4: $h4-font-size,\n 5: $h5-font-size,\n 6: $h6-font-size\n) !default;\n// scss-docs-end font-sizes\n\n// scss-docs-start headings-variables\n$headings-margin-bottom: $spacer * .5 !default;\n$headings-font-family: null !default;\n$headings-font-style: null !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: inherit !default;\n// scss-docs-end headings-variables\n\n// scss-docs-start display-headings\n$display-font-sizes: (\n 1: 5rem,\n 2: 4.5rem,\n 3: 4rem,\n 4: 3.5rem,\n 5: 3rem,\n 6: 2.5rem\n) !default;\n\n$display-font-family: null !default;\n$display-font-style: null !default;\n$display-font-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n// scss-docs-end display-headings\n\n// scss-docs-start type-variables\n$lead-font-size: $font-size-base * 1.25 !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: .875em !default;\n\n$sub-sup-font-size: .75em !default;\n\n// fusv-disable\n$text-muted: var(--#{$prefix}secondary-color) !default; // Deprecated in 5.3.0\n// fusv-enable\n\n$initialism-font-size: $small-font-size !default;\n\n$blockquote-margin-y: $spacer !default;\n$blockquote-font-size: $font-size-base * 1.25 !default;\n$blockquote-footer-color: $gray-600 !default;\n$blockquote-footer-font-size: $small-font-size !default;\n\n$hr-margin-y: $spacer !default;\n$hr-color: inherit !default;\n\n// fusv-disable\n$hr-bg-color: null !default; // Deprecated in v5.2.0\n$hr-height: null !default; // Deprecated in v5.2.0\n// fusv-enable\n\n$hr-border-color: null !default; // Allows for inherited colors\n$hr-border-width: var(--#{$prefix}border-width) !default;\n$hr-opacity: .25 !default;\n\n// scss-docs-start vr-variables\n$vr-border-width: var(--#{$prefix}border-width) !default;\n// scss-docs-end vr-variables\n\n$legend-margin-bottom: .5rem !default;\n$legend-font-size: 1.5rem !default;\n$legend-font-weight: null !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-padding: .1875em !default;\n$mark-color: $body-color !default;\n$mark-bg: $yellow-100 !default;\n// scss-docs-end type-variables\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n// scss-docs-start table-variables\n$table-cell-padding-y: .5rem !default;\n$table-cell-padding-x: .5rem !default;\n$table-cell-padding-y-sm: .25rem !default;\n$table-cell-padding-x-sm: .25rem !default;\n\n$table-cell-vertical-align: top !default;\n\n$table-color: var(--#{$prefix}emphasis-color) !default;\n$table-bg: var(--#{$prefix}body-bg) !default;\n$table-accent-bg: transparent !default;\n\n$table-th-font-weight: null !default;\n\n$table-striped-color: $table-color !default;\n$table-striped-bg-factor: .05 !default;\n$table-striped-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-striped-bg-factor) !default;\n\n$table-active-color: $table-color !default;\n$table-active-bg-factor: .1 !default;\n$table-active-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-active-bg-factor) !default;\n\n$table-hover-color: $table-color !default;\n$table-hover-bg-factor: .075 !default;\n$table-hover-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-hover-bg-factor) !default;\n\n$table-border-factor: .2 !default;\n$table-border-width: var(--#{$prefix}border-width) !default;\n$table-border-color: var(--#{$prefix}border-color) !default;\n\n$table-striped-order: odd !default;\n$table-striped-columns-order: even !default;\n\n$table-group-separator-color: currentcolor !default;\n\n$table-caption-color: var(--#{$prefix}secondary-color) !default;\n\n$table-bg-scale: -80% !default;\n// scss-docs-end table-variables\n\n// scss-docs-start table-loop\n$table-variants: (\n \"primary\": shift-color($primary, $table-bg-scale),\n \"secondary\": shift-color($secondary, $table-bg-scale),\n \"success\": shift-color($success, $table-bg-scale),\n \"info\": shift-color($info, $table-bg-scale),\n \"warning\": shift-color($warning, $table-bg-scale),\n \"danger\": shift-color($danger, $table-bg-scale),\n \"light\": $light,\n \"dark\": $dark,\n) !default;\n// scss-docs-end table-loop\n\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n// scss-docs-start input-btn-variables\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-font-family: null !default;\n$input-btn-font-size: $font-size-base !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: $focus-ring-width !default;\n$input-btn-focus-color-opacity: $focus-ring-opacity !default;\n$input-btn-focus-color: $focus-ring-color !default;\n$input-btn-focus-blur: $focus-ring-blur !default;\n$input-btn-focus-box-shadow: $focus-ring-box-shadow !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-font-size-sm: $font-size-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-font-size-lg: $font-size-lg !default;\n\n$input-btn-border-width: var(--#{$prefix}border-width) !default;\n// scss-docs-end input-btn-variables\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n// scss-docs-start btn-variables\n$btn-color: var(--#{$prefix}body-color) !default;\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-font-family: $input-btn-font-family !default;\n$btn-font-size: $input-btn-font-size !default;\n$btn-line-height: $input-btn-line-height !default;\n$btn-white-space: null !default; // Set to `nowrap` to prevent text wrapping\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-font-size-sm: $input-btn-font-size-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-font-size-lg: $input-btn-font-size-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-color: var(--#{$prefix}link-color) !default;\n$btn-link-hover-color: var(--#{$prefix}link-hover-color) !default;\n$btn-link-disabled-color: $gray-600 !default;\n$btn-link-focus-shadow-rgb: to-rgb(mix(color-contrast($link-color), $link-color, 15%)) !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: var(--#{$prefix}border-radius) !default;\n$btn-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;\n$btn-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$btn-hover-bg-shade-amount: 15% !default;\n$btn-hover-bg-tint-amount: 15% !default;\n$btn-hover-border-shade-amount: 20% !default;\n$btn-hover-border-tint-amount: 10% !default;\n$btn-active-bg-shade-amount: 20% !default;\n$btn-active-bg-tint-amount: 20% !default;\n$btn-active-border-shade-amount: 25% !default;\n$btn-active-border-tint-amount: 10% !default;\n// scss-docs-end btn-variables\n\n\n// Forms\n\n// scss-docs-start form-text-variables\n$form-text-margin-top: .25rem !default;\n$form-text-font-size: $small-font-size !default;\n$form-text-font-style: null !default;\n$form-text-font-weight: null !default;\n$form-text-color: var(--#{$prefix}secondary-color) !default;\n// scss-docs-end form-text-variables\n\n// scss-docs-start form-label-variables\n$form-label-margin-bottom: .5rem !default;\n$form-label-font-size: null !default;\n$form-label-font-style: null !default;\n$form-label-font-weight: null !default;\n$form-label-color: null !default;\n// scss-docs-end form-label-variables\n\n// scss-docs-start form-input-variables\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-font-family: $input-btn-font-family !default;\n$input-font-size: $input-btn-font-size !default;\n$input-font-weight: $font-weight-base !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-font-size-sm: $input-btn-font-size-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-font-size-lg: $input-btn-font-size-lg !default;\n\n$input-bg: var(--#{$prefix}body-bg) !default;\n$input-disabled-color: null !default;\n$input-disabled-bg: var(--#{$prefix}secondary-bg) !default;\n$input-disabled-border-color: null !default;\n\n$input-color: var(--#{$prefix}body-color) !default;\n$input-border-color: var(--#{$prefix}border-color) !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n\n$input-border-radius: var(--#{$prefix}border-radius) !default;\n$input-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;\n$input-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: tint-color($component-active-bg, 50%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: var(--#{$prefix}secondary-color) !default;\n$input-plaintext-color: var(--#{$prefix}body-color) !default;\n\n$input-height-border: calc(#{$input-border-width} * 2) !default; // stylelint-disable-line function-disallowed-list\n\n$input-height-inner: add($input-line-height * 1em, $input-padding-y * 2) !default;\n$input-height-inner-half: add($input-line-height * .5em, $input-padding-y) !default;\n$input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y * .5) !default;\n\n$input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default;\n$input-height-sm: add($input-line-height * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;\n$input-height-lg: add($input-line-height * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-color-width: 3rem !default;\n// scss-docs-end form-input-variables\n\n// scss-docs-start form-check-variables\n$form-check-input-width: 1em !default;\n$form-check-min-height: $font-size-base * $line-height-base !default;\n$form-check-padding-start: $form-check-input-width + .5em !default;\n$form-check-margin-bottom: .125rem !default;\n$form-check-label-color: null !default;\n$form-check-label-cursor: null !default;\n$form-check-transition: null !default;\n\n$form-check-input-active-filter: brightness(90%) !default;\n\n$form-check-input-bg: $input-bg !default;\n$form-check-input-border: var(--#{$prefix}border-width) solid var(--#{$prefix}border-color) !default;\n$form-check-input-border-radius: .25em !default;\n$form-check-radio-border-radius: 50% !default;\n$form-check-input-focus-border: $input-focus-border-color !default;\n$form-check-input-focus-box-shadow: $focus-ring-box-shadow !default;\n\n$form-check-input-checked-color: $component-active-color !default;\n$form-check-input-checked-bg-color: $component-active-bg !default;\n$form-check-input-checked-border-color: $form-check-input-checked-bg-color !default;\n$form-check-input-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-check-radio-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-check-input-indeterminate-color: $component-active-color !default;\n$form-check-input-indeterminate-bg-color: $component-active-bg !default;\n$form-check-input-indeterminate-border-color: $form-check-input-indeterminate-bg-color !default;\n$form-check-input-indeterminate-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-check-input-disabled-opacity: .5 !default;\n$form-check-label-disabled-opacity: $form-check-input-disabled-opacity !default;\n$form-check-btn-check-disabled-opacity: $btn-disabled-opacity !default;\n\n$form-check-inline-margin-end: 1rem !default;\n// scss-docs-end form-check-variables\n\n// scss-docs-start form-switch-variables\n$form-switch-color: rgba($black, .25) !default;\n$form-switch-width: 2em !default;\n$form-switch-padding-start: $form-switch-width + .5em !default;\n$form-switch-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-switch-border-radius: $form-switch-width !default;\n$form-switch-transition: background-position .15s ease-in-out !default;\n\n$form-switch-focus-color: $input-focus-border-color !default;\n$form-switch-focus-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-switch-checked-color: $component-active-color !default;\n$form-switch-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-switch-checked-bg-position: right center !default;\n// scss-docs-end form-switch-variables\n\n// scss-docs-start input-group-variables\n$input-group-addon-padding-y: $input-padding-y !default;\n$input-group-addon-padding-x: $input-padding-x !default;\n$input-group-addon-font-weight: $input-font-weight !default;\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: var(--#{$prefix}tertiary-bg) !default;\n$input-group-addon-border-color: $input-border-color !default;\n// scss-docs-end input-group-variables\n\n// scss-docs-start form-select-variables\n$form-select-padding-y: $input-padding-y !default;\n$form-select-padding-x: $input-padding-x !default;\n$form-select-font-family: $input-font-family !default;\n$form-select-font-size: $input-font-size !default;\n$form-select-indicator-padding: $form-select-padding-x * 3 !default; // Extra padding for background-image\n$form-select-font-weight: $input-font-weight !default;\n$form-select-line-height: $input-line-height !default;\n$form-select-color: $input-color !default;\n$form-select-bg: $input-bg !default;\n$form-select-disabled-color: null !default;\n$form-select-disabled-bg: $input-disabled-bg !default;\n$form-select-disabled-border-color: $input-disabled-border-color !default;\n$form-select-bg-position: right $form-select-padding-x center !default;\n$form-select-bg-size: 16px 12px !default; // In pixels because image dimensions\n$form-select-indicator-color: $gray-800 !default;\n$form-select-indicator: url(\"data:image/svg+xml,\") !default;\n\n$form-select-feedback-icon-padding-end: $form-select-padding-x * 2.5 + $form-select-indicator-padding !default;\n$form-select-feedback-icon-position: center right $form-select-indicator-padding !default;\n$form-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;\n\n$form-select-border-width: $input-border-width !default;\n$form-select-border-color: $input-border-color !default;\n$form-select-border-radius: $input-border-radius !default;\n$form-select-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n\n$form-select-focus-border-color: $input-focus-border-color !default;\n$form-select-focus-width: $input-focus-width !default;\n$form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focus-color !default;\n\n$form-select-padding-y-sm: $input-padding-y-sm !default;\n$form-select-padding-x-sm: $input-padding-x-sm !default;\n$form-select-font-size-sm: $input-font-size-sm !default;\n$form-select-border-radius-sm: $input-border-radius-sm !default;\n\n$form-select-padding-y-lg: $input-padding-y-lg !default;\n$form-select-padding-x-lg: $input-padding-x-lg !default;\n$form-select-font-size-lg: $input-font-size-lg !default;\n$form-select-border-radius-lg: $input-border-radius-lg !default;\n\n$form-select-transition: $input-transition !default;\n// scss-docs-end form-select-variables\n\n// scss-docs-start form-range-variables\n$form-range-track-width: 100% !default;\n$form-range-track-height: .5rem !default;\n$form-range-track-cursor: pointer !default;\n$form-range-track-bg: var(--#{$prefix}secondary-bg) !default;\n$form-range-track-border-radius: 1rem !default;\n$form-range-track-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n\n$form-range-thumb-width: 1rem !default;\n$form-range-thumb-height: $form-range-thumb-width !default;\n$form-range-thumb-bg: $component-active-bg !default;\n$form-range-thumb-border: 0 !default;\n$form-range-thumb-border-radius: 1rem !default;\n$form-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;\n$form-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;\n$form-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in Edge\n$form-range-thumb-active-bg: tint-color($component-active-bg, 70%) !default;\n$form-range-thumb-disabled-bg: var(--#{$prefix}secondary-color) !default;\n$form-range-thumb-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n// scss-docs-end form-range-variables\n\n// scss-docs-start form-file-variables\n$form-file-button-color: $input-color !default;\n$form-file-button-bg: var(--#{$prefix}tertiary-bg) !default;\n$form-file-button-hover-bg: var(--#{$prefix}secondary-bg) !default;\n// scss-docs-end form-file-variables\n\n// scss-docs-start form-floating-variables\n$form-floating-height: add(3.5rem, $input-height-border) !default;\n$form-floating-line-height: 1.25 !default;\n$form-floating-padding-x: $input-padding-x !default;\n$form-floating-padding-y: 1rem !default;\n$form-floating-input-padding-t: 1.625rem !default;\n$form-floating-input-padding-b: .625rem !default;\n$form-floating-label-height: 1.5em !default;\n$form-floating-label-opacity: .65 !default;\n$form-floating-label-transform: scale(.85) translateY(-.5rem) translateX(.15rem) !default;\n$form-floating-label-disabled-color: $gray-600 !default;\n$form-floating-transition: opacity .1s ease-in-out, transform .1s ease-in-out !default;\n// scss-docs-end form-floating-variables\n\n// Form validation\n\n// scss-docs-start form-feedback-variables\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $form-text-font-size !default;\n$form-feedback-font-style: $form-text-font-style !default;\n$form-feedback-valid-color: $success !default;\n$form-feedback-invalid-color: $danger !default;\n\n$form-feedback-icon-valid-color: $form-feedback-valid-color !default;\n$form-feedback-icon-valid: url(\"data:image/svg+xml,\") !default;\n$form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;\n$form-feedback-icon-invalid: url(\"data:image/svg+xml,\") !default;\n// scss-docs-end form-feedback-variables\n\n// scss-docs-start form-validation-colors\n$form-valid-color: $form-feedback-valid-color !default;\n$form-valid-border-color: $form-feedback-valid-color !default;\n$form-invalid-color: $form-feedback-invalid-color !default;\n$form-invalid-border-color: $form-feedback-invalid-color !default;\n// scss-docs-end form-validation-colors\n\n// scss-docs-start form-validation-states\n$form-validation-states: (\n \"valid\": (\n \"color\": var(--#{$prefix}form-valid-color),\n \"icon\": $form-feedback-icon-valid,\n \"tooltip-color\": #fff,\n \"tooltip-bg-color\": var(--#{$prefix}success),\n \"focus-box-shadow\": 0 0 $input-btn-focus-blur $input-focus-width rgba(var(--#{$prefix}success-rgb), $input-btn-focus-color-opacity),\n \"border-color\": var(--#{$prefix}form-valid-border-color),\n ),\n \"invalid\": (\n \"color\": var(--#{$prefix}form-invalid-color),\n \"icon\": $form-feedback-icon-invalid,\n \"tooltip-color\": #fff,\n \"tooltip-bg-color\": var(--#{$prefix}danger),\n \"focus-box-shadow\": 0 0 $input-btn-focus-blur $input-focus-width rgba(var(--#{$prefix}danger-rgb), $input-btn-focus-color-opacity),\n \"border-color\": var(--#{$prefix}form-invalid-border-color),\n )\n) !default;\n// scss-docs-end form-validation-states\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n// scss-docs-start zindex-stack\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-offcanvas-backdrop: 1040 !default;\n$zindex-offcanvas: 1045 !default;\n$zindex-modal-backdrop: 1050 !default;\n$zindex-modal: 1055 !default;\n$zindex-popover: 1070 !default;\n$zindex-tooltip: 1080 !default;\n$zindex-toast: 1090 !default;\n// scss-docs-end zindex-stack\n\n// scss-docs-start zindex-levels-map\n$zindex-levels: (\n n1: -1,\n 0: 0,\n 1: 1,\n 2: 2,\n 3: 3\n) !default;\n// scss-docs-end zindex-levels-map\n\n\n// Navs\n\n// scss-docs-start nav-variables\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-font-size: null !default;\n$nav-link-font-weight: null !default;\n$nav-link-color: var(--#{$prefix}link-color) !default;\n$nav-link-hover-color: var(--#{$prefix}link-hover-color) !default;\n$nav-link-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out !default;\n$nav-link-disabled-color: var(--#{$prefix}secondary-color) !default;\n$nav-link-focus-box-shadow: $focus-ring-box-shadow !default;\n\n$nav-tabs-border-color: var(--#{$prefix}border-color) !default;\n$nav-tabs-border-width: var(--#{$prefix}border-width) !default;\n$nav-tabs-border-radius: var(--#{$prefix}border-radius) !default;\n$nav-tabs-link-hover-border-color: var(--#{$prefix}secondary-bg) var(--#{$prefix}secondary-bg) $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: var(--#{$prefix}emphasis-color) !default;\n$nav-tabs-link-active-bg: var(--#{$prefix}body-bg) !default;\n$nav-tabs-link-active-border-color: var(--#{$prefix}border-color) var(--#{$prefix}border-color) $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: var(--#{$prefix}border-radius) !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n\n$nav-underline-gap: 1rem !default;\n$nav-underline-border-width: .125rem !default;\n$nav-underline-link-active-color: var(--#{$prefix}emphasis-color) !default;\n// scss-docs-end nav-variables\n\n\n// Navbar\n\n// scss-docs-start navbar-variables\n$navbar-padding-y: $spacer * .5 !default;\n$navbar-padding-x: null !default;\n\n$navbar-nav-link-padding-x: .5rem !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) * .5 !default;\n$navbar-brand-margin-end: 1rem !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n$navbar-toggler-focus-width: $btn-focus-width !default;\n$navbar-toggler-transition: box-shadow .15s ease-in-out !default;\n\n$navbar-light-color: rgba(var(--#{$prefix}emphasis-color-rgb), .65) !default;\n$navbar-light-hover-color: rgba(var(--#{$prefix}emphasis-color-rgb), .8) !default;\n$navbar-light-active-color: rgba(var(--#{$prefix}emphasis-color-rgb), 1) !default;\n$navbar-light-disabled-color: rgba(var(--#{$prefix}emphasis-color-rgb), .3) !default;\n$navbar-light-icon-color: rgba($body-color, .75) !default;\n$navbar-light-toggler-icon-bg: url(\"data:image/svg+xml,\") !default;\n$navbar-light-toggler-border-color: rgba(var(--#{$prefix}emphasis-color-rgb), .15) !default;\n$navbar-light-brand-color: $navbar-light-active-color !default;\n$navbar-light-brand-hover-color: $navbar-light-active-color !default;\n// scss-docs-end navbar-variables\n\n// scss-docs-start navbar-dark-variables\n$navbar-dark-color: rgba($white, .55) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-icon-color: $navbar-dark-color !default;\n$navbar-dark-toggler-icon-bg: url(\"data:image/svg+xml,\") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n$navbar-dark-brand-color: $navbar-dark-active-color !default;\n$navbar-dark-brand-hover-color: $navbar-dark-active-color !default;\n// scss-docs-end navbar-dark-variables\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n// scss-docs-start dropdown-variables\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-x: 0 !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-font-size: $font-size-base !default;\n$dropdown-color: var(--#{$prefix}body-color) !default;\n$dropdown-bg: var(--#{$prefix}body-bg) !default;\n$dropdown-border-color: var(--#{$prefix}border-color-translucent) !default;\n$dropdown-border-radius: var(--#{$prefix}border-radius) !default;\n$dropdown-border-width: var(--#{$prefix}border-width) !default;\n$dropdown-inner-border-radius: calc(#{$dropdown-border-radius} - #{$dropdown-border-width}) !default; // stylelint-disable-line function-disallowed-list\n$dropdown-divider-bg: $dropdown-border-color !default;\n$dropdown-divider-margin-y: $spacer * .5 !default;\n$dropdown-box-shadow: var(--#{$prefix}box-shadow) !default;\n\n$dropdown-link-color: var(--#{$prefix}body-color) !default;\n$dropdown-link-hover-color: $dropdown-link-color !default;\n$dropdown-link-hover-bg: var(--#{$prefix}tertiary-bg) !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: var(--#{$prefix}tertiary-color) !default;\n\n$dropdown-item-padding-y: $spacer * .25 !default;\n$dropdown-item-padding-x: $spacer !default;\n\n$dropdown-header-color: $gray-600 !default;\n$dropdown-header-padding-x: $dropdown-item-padding-x !default;\n$dropdown-header-padding-y: $dropdown-padding-y !default;\n// fusv-disable\n$dropdown-header-padding: $dropdown-header-padding-y $dropdown-header-padding-x !default; // Deprecated in v5.2.0\n// fusv-enable\n// scss-docs-end dropdown-variables\n\n// scss-docs-start dropdown-dark-variables\n$dropdown-dark-color: $gray-300 !default;\n$dropdown-dark-bg: $gray-800 !default;\n$dropdown-dark-border-color: $dropdown-border-color !default;\n$dropdown-dark-divider-bg: $dropdown-divider-bg !default;\n$dropdown-dark-box-shadow: null !default;\n$dropdown-dark-link-color: $dropdown-dark-color !default;\n$dropdown-dark-link-hover-color: $white !default;\n$dropdown-dark-link-hover-bg: rgba($white, .15) !default;\n$dropdown-dark-link-active-color: $dropdown-link-active-color !default;\n$dropdown-dark-link-active-bg: $dropdown-link-active-bg !default;\n$dropdown-dark-link-disabled-color: $gray-500 !default;\n$dropdown-dark-header-color: $gray-500 !default;\n// scss-docs-end dropdown-dark-variables\n\n\n// Pagination\n\n// scss-docs-start pagination-variables\n$pagination-padding-y: .375rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n\n$pagination-font-size: $font-size-base !default;\n\n$pagination-color: var(--#{$prefix}link-color) !default;\n$pagination-bg: var(--#{$prefix}body-bg) !default;\n$pagination-border-radius: var(--#{$prefix}border-radius) !default;\n$pagination-border-width: var(--#{$prefix}border-width) !default;\n$pagination-margin-start: calc(#{$pagination-border-width} * -1) !default; // stylelint-disable-line function-disallowed-list\n$pagination-border-color: var(--#{$prefix}border-color) !default;\n\n$pagination-focus-color: var(--#{$prefix}link-hover-color) !default;\n$pagination-focus-bg: var(--#{$prefix}secondary-bg) !default;\n$pagination-focus-box-shadow: $focus-ring-box-shadow !default;\n$pagination-focus-outline: 0 !default;\n\n$pagination-hover-color: var(--#{$prefix}link-hover-color) !default;\n$pagination-hover-bg: var(--#{$prefix}tertiary-bg) !default;\n$pagination-hover-border-color: var(--#{$prefix}border-color) !default; // Todo in v6: remove this?\n\n$pagination-active-color: $component-active-color !default;\n$pagination-active-bg: $component-active-bg !default;\n$pagination-active-border-color: $component-active-bg !default;\n\n$pagination-disabled-color: var(--#{$prefix}secondary-color) !default;\n$pagination-disabled-bg: var(--#{$prefix}secondary-bg) !default;\n$pagination-disabled-border-color: var(--#{$prefix}border-color) !default;\n\n$pagination-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$pagination-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;\n$pagination-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;\n// scss-docs-end pagination-variables\n\n\n// Placeholders\n\n// scss-docs-start placeholders\n$placeholder-opacity-max: .5 !default;\n$placeholder-opacity-min: .2 !default;\n// scss-docs-end placeholders\n\n// Cards\n\n// scss-docs-start card-variables\n$card-spacer-y: $spacer !default;\n$card-spacer-x: $spacer !default;\n$card-title-spacer-y: $spacer * .5 !default;\n$card-title-color: null !default;\n$card-subtitle-color: null !default;\n$card-border-width: var(--#{$prefix}border-width) !default;\n$card-border-color: var(--#{$prefix}border-color-translucent) !default;\n$card-border-radius: var(--#{$prefix}border-radius) !default;\n$card-box-shadow: null !default;\n$card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;\n$card-cap-padding-y: $card-spacer-y * .5 !default;\n$card-cap-padding-x: $card-spacer-x !default;\n$card-cap-bg: rgba(var(--#{$prefix}body-color-rgb), .03) !default;\n$card-cap-color: null !default;\n$card-height: null !default;\n$card-color: null !default;\n$card-bg: var(--#{$prefix}body-bg) !default;\n$card-img-overlay-padding: $spacer !default;\n$card-group-margin: $grid-gutter-width * .5 !default;\n// scss-docs-end card-variables\n\n// Accordion\n\n// scss-docs-start accordion-variables\n$accordion-padding-y: 1rem !default;\n$accordion-padding-x: 1.25rem !default;\n$accordion-color: var(--#{$prefix}body-color) !default;\n$accordion-bg: var(--#{$prefix}body-bg) !default;\n$accordion-border-width: var(--#{$prefix}border-width) !default;\n$accordion-border-color: var(--#{$prefix}border-color) !default;\n$accordion-border-radius: var(--#{$prefix}border-radius) !default;\n$accordion-inner-border-radius: subtract($accordion-border-radius, $accordion-border-width) !default;\n\n$accordion-body-padding-y: $accordion-padding-y !default;\n$accordion-body-padding-x: $accordion-padding-x !default;\n\n$accordion-button-padding-y: $accordion-padding-y !default;\n$accordion-button-padding-x: $accordion-padding-x !default;\n$accordion-button-color: var(--#{$prefix}body-color) !default;\n$accordion-button-bg: var(--#{$prefix}accordion-bg) !default;\n$accordion-transition: $btn-transition, border-radius .15s ease !default;\n$accordion-button-active-bg: var(--#{$prefix}primary-bg-subtle) !default;\n$accordion-button-active-color: var(--#{$prefix}primary-text-emphasis) !default;\n\n// fusv-disable\n$accordion-button-focus-border-color: $input-focus-border-color !default; // Deprecated in v5.3.3\n// fusv-enable\n$accordion-button-focus-box-shadow: $btn-focus-box-shadow !default;\n\n$accordion-icon-width: 1.25rem !default;\n$accordion-icon-color: $body-color !default;\n$accordion-icon-active-color: $primary-text-emphasis !default;\n$accordion-icon-transition: transform .2s ease-in-out !default;\n$accordion-icon-transform: rotate(-180deg) !default;\n\n$accordion-button-icon: url(\"data:image/svg+xml,\") !default;\n$accordion-button-active-icon: url(\"data:image/svg+xml,\") !default;\n// scss-docs-end accordion-variables\n\n// Tooltips\n\n// scss-docs-start tooltip-variables\n$tooltip-font-size: $font-size-sm !default;\n$tooltip-max-width: 200px !default;\n$tooltip-color: var(--#{$prefix}body-bg) !default;\n$tooltip-bg: var(--#{$prefix}emphasis-color) !default;\n$tooltip-border-radius: var(--#{$prefix}border-radius) !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: $spacer * .25 !default;\n$tooltip-padding-x: $spacer * .5 !default;\n$tooltip-margin: null !default; // TODO: remove this in v6\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n// fusv-disable\n$tooltip-arrow-color: null !default; // Deprecated in Bootstrap 5.2.0 for CSS variables\n// fusv-enable\n// scss-docs-end tooltip-variables\n\n// Form tooltips must come after regular tooltips\n// scss-docs-start tooltip-feedback-variables\n$form-feedback-tooltip-padding-y: $tooltip-padding-y !default;\n$form-feedback-tooltip-padding-x: $tooltip-padding-x !default;\n$form-feedback-tooltip-font-size: $tooltip-font-size !default;\n$form-feedback-tooltip-line-height: null !default;\n$form-feedback-tooltip-opacity: $tooltip-opacity !default;\n$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;\n// scss-docs-end tooltip-feedback-variables\n\n\n// Popovers\n\n// scss-docs-start popover-variables\n$popover-font-size: $font-size-sm !default;\n$popover-bg: var(--#{$prefix}body-bg) !default;\n$popover-max-width: 276px !default;\n$popover-border-width: var(--#{$prefix}border-width) !default;\n$popover-border-color: var(--#{$prefix}border-color-translucent) !default;\n$popover-border-radius: var(--#{$prefix}border-radius-lg) !default;\n$popover-inner-border-radius: calc(#{$popover-border-radius} - #{$popover-border-width}) !default; // stylelint-disable-line function-disallowed-list\n$popover-box-shadow: var(--#{$prefix}box-shadow) !default;\n\n$popover-header-font-size: $font-size-base !default;\n$popover-header-bg: var(--#{$prefix}secondary-bg) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: $spacer !default;\n\n$popover-body-color: var(--#{$prefix}body-color) !default;\n$popover-body-padding-y: $spacer !default;\n$popover-body-padding-x: $spacer !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n// scss-docs-end popover-variables\n\n// fusv-disable\n// Deprecated in Bootstrap 5.2.0 for CSS variables\n$popover-arrow-color: $popover-bg !default;\n$popover-arrow-outer-color: var(--#{$prefix}border-color-translucent) !default;\n// fusv-enable\n\n\n// Toasts\n\n// scss-docs-start toast-variables\n$toast-max-width: 350px !default;\n$toast-padding-x: .75rem !default;\n$toast-padding-y: .5rem !default;\n$toast-font-size: .875rem !default;\n$toast-color: null !default;\n$toast-background-color: rgba(var(--#{$prefix}body-bg-rgb), .85) !default;\n$toast-border-width: var(--#{$prefix}border-width) !default;\n$toast-border-color: var(--#{$prefix}border-color-translucent) !default;\n$toast-border-radius: var(--#{$prefix}border-radius) !default;\n$toast-box-shadow: var(--#{$prefix}box-shadow) !default;\n$toast-spacing: $container-padding-x !default;\n\n$toast-header-color: var(--#{$prefix}secondary-color) !default;\n$toast-header-background-color: rgba(var(--#{$prefix}body-bg-rgb), .85) !default;\n$toast-header-border-color: $toast-border-color !default;\n// scss-docs-end toast-variables\n\n\n// Badges\n\n// scss-docs-start badge-variables\n$badge-font-size: .75em !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-color: $white !default;\n$badge-padding-y: .35em !default;\n$badge-padding-x: .65em !default;\n$badge-border-radius: var(--#{$prefix}border-radius) !default;\n// scss-docs-end badge-variables\n\n\n// Modals\n\n// scss-docs-start modal-variables\n$modal-inner-padding: $spacer !default;\n\n$modal-footer-margin-between: .5rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-color: null !default;\n$modal-content-bg: var(--#{$prefix}body-bg) !default;\n$modal-content-border-color: var(--#{$prefix}border-color-translucent) !default;\n$modal-content-border-width: var(--#{$prefix}border-width) !default;\n$modal-content-border-radius: var(--#{$prefix}border-radius-lg) !default;\n$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;\n$modal-content-box-shadow-xs: var(--#{$prefix}box-shadow-sm) !default;\n$modal-content-box-shadow-sm-up: var(--#{$prefix}box-shadow) !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n\n$modal-header-border-color: var(--#{$prefix}border-color) !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-header-padding-y: $modal-inner-padding !default;\n$modal-header-padding-x: $modal-inner-padding !default;\n$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility\n\n$modal-footer-bg: null !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n\n$modal-sm: 300px !default;\n$modal-md: 500px !default;\n$modal-lg: 800px !default;\n$modal-xl: 1140px !default;\n\n$modal-fade-transform: translate(0, -50px) !default;\n$modal-show-transform: none !default;\n$modal-transition: transform .3s ease-out !default;\n$modal-scale-transform: scale(1.02) !default;\n// scss-docs-end modal-variables\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n// scss-docs-start alert-variables\n$alert-padding-y: $spacer !default;\n$alert-padding-x: $spacer !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: var(--#{$prefix}border-radius) !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: var(--#{$prefix}border-width) !default;\n$alert-dismissible-padding-r: $alert-padding-x * 3 !default; // 3x covers width of x plus default padding on either side\n// scss-docs-end alert-variables\n\n// fusv-disable\n$alert-bg-scale: -80% !default; // Deprecated in v5.2.0, to be removed in v6\n$alert-border-scale: -70% !default; // Deprecated in v5.2.0, to be removed in v6\n$alert-color-scale: 40% !default; // Deprecated in v5.2.0, to be removed in v6\n// fusv-enable\n\n// Progress bars\n\n// scss-docs-start progress-variables\n$progress-height: 1rem !default;\n$progress-font-size: $font-size-base * .75 !default;\n$progress-bg: var(--#{$prefix}secondary-bg) !default;\n$progress-border-radius: var(--#{$prefix}border-radius) !default;\n$progress-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: $primary !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n// scss-docs-end progress-variables\n\n\n// List group\n\n// scss-docs-start list-group-variables\n$list-group-color: var(--#{$prefix}body-color) !default;\n$list-group-bg: var(--#{$prefix}body-bg) !default;\n$list-group-border-color: var(--#{$prefix}border-color) !default;\n$list-group-border-width: var(--#{$prefix}border-width) !default;\n$list-group-border-radius: var(--#{$prefix}border-radius) !default;\n\n$list-group-item-padding-y: $spacer * .5 !default;\n$list-group-item-padding-x: $spacer !default;\n// fusv-disable\n$list-group-item-bg-scale: -80% !default; // Deprecated in v5.3.0\n$list-group-item-color-scale: 40% !default; // Deprecated in v5.3.0\n// fusv-enable\n\n$list-group-hover-bg: var(--#{$prefix}tertiary-bg) !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: var(--#{$prefix}secondary-color) !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: var(--#{$prefix}secondary-color) !default;\n$list-group-action-hover-color: var(--#{$prefix}emphasis-color) !default;\n\n$list-group-action-active-color: var(--#{$prefix}body-color) !default;\n$list-group-action-active-bg: var(--#{$prefix}secondary-bg) !default;\n// scss-docs-end list-group-variables\n\n\n// Image thumbnails\n\n// scss-docs-start thumbnail-variables\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: var(--#{$prefix}body-bg) !default;\n$thumbnail-border-width: var(--#{$prefix}border-width) !default;\n$thumbnail-border-color: var(--#{$prefix}border-color) !default;\n$thumbnail-border-radius: var(--#{$prefix}border-radius) !default;\n$thumbnail-box-shadow: var(--#{$prefix}box-shadow-sm) !default;\n// scss-docs-end thumbnail-variables\n\n\n// Figures\n\n// scss-docs-start figure-variables\n$figure-caption-font-size: $small-font-size !default;\n$figure-caption-color: var(--#{$prefix}secondary-color) !default;\n// scss-docs-end figure-variables\n\n\n// Breadcrumbs\n\n// scss-docs-start breadcrumb-variables\n$breadcrumb-font-size: null !default;\n$breadcrumb-padding-y: 0 !default;\n$breadcrumb-padding-x: 0 !default;\n$breadcrumb-item-padding-x: .5rem !default;\n$breadcrumb-margin-bottom: 1rem !default;\n$breadcrumb-bg: null !default;\n$breadcrumb-divider-color: var(--#{$prefix}secondary-color) !default;\n$breadcrumb-active-color: var(--#{$prefix}secondary-color) !default;\n$breadcrumb-divider: quote(\"/\") !default;\n$breadcrumb-divider-flipped: $breadcrumb-divider !default;\n$breadcrumb-border-radius: null !default;\n// scss-docs-end breadcrumb-variables\n\n// Carousel\n\n// scss-docs-start carousel-variables\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n$carousel-control-hover-opacity: .9 !default;\n$carousel-control-transition: opacity .15s ease !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-hit-area-height: 10px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-opacity: .5 !default;\n$carousel-indicator-active-bg: $white !default;\n$carousel-indicator-active-opacity: 1 !default;\n$carousel-indicator-transition: opacity .6s ease !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n$carousel-caption-padding-y: 1.25rem !default;\n$carousel-caption-spacer: 1.25rem !default;\n\n$carousel-control-icon-width: 2rem !default;\n\n$carousel-control-prev-icon-bg: url(\"data:image/svg+xml,\") !default;\n$carousel-control-next-icon-bg: url(\"data:image/svg+xml,\") !default;\n\n$carousel-transition-duration: .6s !default;\n$carousel-transition: transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)\n// scss-docs-end carousel-variables\n\n// scss-docs-start carousel-dark-variables\n$carousel-dark-indicator-active-bg: $black !default;\n$carousel-dark-caption-color: $black !default;\n$carousel-dark-control-icon-filter: invert(1) grayscale(100) !default;\n// scss-docs-end carousel-dark-variables\n\n\n// Spinners\n\n// scss-docs-start spinner-variables\n$spinner-width: 2rem !default;\n$spinner-height: $spinner-width !default;\n$spinner-vertical-align: -.125em !default;\n$spinner-border-width: .25em !default;\n$spinner-animation-speed: .75s !default;\n\n$spinner-width-sm: 1rem !default;\n$spinner-height-sm: $spinner-width-sm !default;\n$spinner-border-width-sm: .2em !default;\n// scss-docs-end spinner-variables\n\n\n// Close\n\n// scss-docs-start close-variables\n$btn-close-width: 1em !default;\n$btn-close-height: $btn-close-width !default;\n$btn-close-padding-x: .25em !default;\n$btn-close-padding-y: $btn-close-padding-x !default;\n$btn-close-color: $black !default;\n$btn-close-bg: url(\"data:image/svg+xml,\") !default;\n$btn-close-focus-shadow: $focus-ring-box-shadow !default;\n$btn-close-opacity: .5 !default;\n$btn-close-hover-opacity: .75 !default;\n$btn-close-focus-opacity: 1 !default;\n$btn-close-disabled-opacity: .25 !default;\n$btn-close-white-filter: invert(1) grayscale(100%) brightness(200%) !default;\n// scss-docs-end close-variables\n\n\n// Offcanvas\n\n// scss-docs-start offcanvas-variables\n$offcanvas-padding-y: $modal-inner-padding !default;\n$offcanvas-padding-x: $modal-inner-padding !default;\n$offcanvas-horizontal-width: 400px !default;\n$offcanvas-vertical-height: 30vh !default;\n$offcanvas-transition-duration: .3s !default;\n$offcanvas-border-color: $modal-content-border-color !default;\n$offcanvas-border-width: $modal-content-border-width !default;\n$offcanvas-title-line-height: $modal-title-line-height !default;\n$offcanvas-bg-color: var(--#{$prefix}body-bg) !default;\n$offcanvas-color: var(--#{$prefix}body-color) !default;\n$offcanvas-box-shadow: $modal-content-box-shadow-xs !default;\n$offcanvas-backdrop-bg: $modal-backdrop-bg !default;\n$offcanvas-backdrop-opacity: $modal-backdrop-opacity !default;\n// scss-docs-end offcanvas-variables\n\n// Code\n\n$code-font-size: $small-font-size !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .1875rem !default;\n$kbd-padding-x: .375rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: var(--#{$prefix}body-bg) !default;\n$kbd-bg: var(--#{$prefix}body-color) !default;\n$nested-kbd-font-weight: null !default; // Deprecated in v5.2.0, removing in v6\n\n$pre-color: null !default;\n\n@import \"variables-dark\"; // TODO: can be removed safely in v6, only here to avoid breaking changes in v5.3\n","// Row\n//\n// Rows contain your columns.\n\n:root {\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n // TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed\n margin-top: calc(-1 * var(--#{$prefix}gutter-y)); // stylelint-disable-line function-disallowed-list\n margin-right: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n margin-left: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready() {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// number of columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: percentage(divide(1, $count));\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is an invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix: \"\", $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // Use custom CSS variable name if present, otherwise default to `class`\n $css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (e.g. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]} \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.min.css b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.min.css new file mode 100644 index 000000000..49b843b19 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.min.css @@ -0,0 +1,6 @@ +/*! + * Bootstrap Grid v5.3.3 (https://getbootstrap.com/) + * Copyright 2011-2024 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.66666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.66666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.66666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.66666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.66666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.66666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}@media (min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}}@media (min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}}@media (min-width:992px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}}@media (min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}}@media (min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap-grid.min.css.map */ \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.min.css.map b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.min.css.map new file mode 100644 index 000000000..a0db8b57a --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_containers.scss","dist/css/bootstrap-grid.css","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"AACE;;;;ACKA,WCAF,iBAGA,cACA,cACA,cAHA,cADA,eCJE,cAAA,OACA,cAAA,EACA,MAAA,KACA,cAAA,8BACA,aAAA,8BACA,aAAA,KACA,YAAA,KCsDE,yBH5CE,WAAA,cACE,UAAA,OG2CJ,yBH5CE,WAAA,cAAA,cACE,UAAA,OG2CJ,yBH5CE,WAAA,cAAA,cAAA,cACE,UAAA,OG2CJ,0BH5CE,WAAA,cAAA,cAAA,cAAA,cACE,UAAA,QG2CJ,0BH5CE,WAAA,cAAA,cAAA,cAAA,cAAA,eACE,UAAA,QIhBR,MAEI,mBAAA,EAAA,mBAAA,MAAA,mBAAA,MAAA,mBAAA,MAAA,mBAAA,OAAA,oBAAA,OAKF,KCNA,cAAA,OACA,cAAA,EACA,QAAA,KACA,UAAA,KAEA,WAAA,8BACA,aAAA,+BACA,YAAA,+BDEE,OCGF,WAAA,WAIA,YAAA,EACA,MAAA,KACA,UAAA,KACA,cAAA,8BACA,aAAA,8BACA,WAAA,mBA+CI,KACE,KAAA,EAAA,EAAA,GAGF,iBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,cACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,UAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,UAxDV,YAAA,YAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,WAxDV,YAAA,aAwDU,WAxDV,YAAA,aAmEM,KJ6GR,MI3GU,cAAA,EAGF,KJ6GR,MI3GU,cAAA,EAPF,KJuHR,MIrHU,cAAA,QAGF,KJuHR,MIrHU,cAAA,QAPF,KJiIR,MI/HU,cAAA,OAGF,KJiIR,MI/HU,cAAA,OAPF,KJ2IR,MIzIU,cAAA,KAGF,KJ2IR,MIzIU,cAAA,KAPF,KJqJR,MInJU,cAAA,OAGF,KJqJR,MInJU,cAAA,OAPF,KJ+JR,MI7JU,cAAA,KAGF,KJ+JR,MI7JU,cAAA,KF1DN,yBEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QJiSN,SI/RQ,cAAA,EAGF,QJgSN,SI9RQ,cAAA,EAPF,QJySN,SIvSQ,cAAA,QAGF,QJwSN,SItSQ,cAAA,QAPF,QJiTN,SI/SQ,cAAA,OAGF,QJgTN,SI9SQ,cAAA,OAPF,QJyTN,SIvTQ,cAAA,KAGF,QJwTN,SItTQ,cAAA,KAPF,QJiUN,SI/TQ,cAAA,OAGF,QJgUN,SI9TQ,cAAA,OAPF,QJyUN,SIvUQ,cAAA,KAGF,QJwUN,SItUQ,cAAA,MF1DN,yBEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QJ0cN,SIxcQ,cAAA,EAGF,QJycN,SIvcQ,cAAA,EAPF,QJkdN,SIhdQ,cAAA,QAGF,QJidN,SI/cQ,cAAA,QAPF,QJ0dN,SIxdQ,cAAA,OAGF,QJydN,SIvdQ,cAAA,OAPF,QJkeN,SIheQ,cAAA,KAGF,QJieN,SI/dQ,cAAA,KAPF,QJ0eN,SIxeQ,cAAA,OAGF,QJyeN,SIveQ,cAAA,OAPF,QJkfN,SIhfQ,cAAA,KAGF,QJifN,SI/eQ,cAAA,MF1DN,yBEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QJmnBN,SIjnBQ,cAAA,EAGF,QJknBN,SIhnBQ,cAAA,EAPF,QJ2nBN,SIznBQ,cAAA,QAGF,QJ0nBN,SIxnBQ,cAAA,QAPF,QJmoBN,SIjoBQ,cAAA,OAGF,QJkoBN,SIhoBQ,cAAA,OAPF,QJ2oBN,SIzoBQ,cAAA,KAGF,QJ0oBN,SIxoBQ,cAAA,KAPF,QJmpBN,SIjpBQ,cAAA,OAGF,QJkpBN,SIhpBQ,cAAA,OAPF,QJ2pBN,SIzpBQ,cAAA,KAGF,QJ0pBN,SIxpBQ,cAAA,MF1DN,0BEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QJ4xBN,SI1xBQ,cAAA,EAGF,QJ2xBN,SIzxBQ,cAAA,EAPF,QJoyBN,SIlyBQ,cAAA,QAGF,QJmyBN,SIjyBQ,cAAA,QAPF,QJ4yBN,SI1yBQ,cAAA,OAGF,QJ2yBN,SIzyBQ,cAAA,OAPF,QJozBN,SIlzBQ,cAAA,KAGF,QJmzBN,SIjzBQ,cAAA,KAPF,QJ4zBN,SI1zBQ,cAAA,OAGF,QJ2zBN,SIzzBQ,cAAA,OAPF,QJo0BN,SIl0BQ,cAAA,KAGF,QJm0BN,SIj0BQ,cAAA,MF1DN,0BEUE,SACE,KAAA,EAAA,EAAA,GAGF,qBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,cAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,cAxDV,YAAA,EAwDU,cAxDV,YAAA,YAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,eAxDV,YAAA,aAwDU,eAxDV,YAAA,aAmEM,SJq8BN,UIn8BQ,cAAA,EAGF,SJo8BN,UIl8BQ,cAAA,EAPF,SJ68BN,UI38BQ,cAAA,QAGF,SJ48BN,UI18BQ,cAAA,QAPF,SJq9BN,UIn9BQ,cAAA,OAGF,SJo9BN,UIl9BQ,cAAA,OAPF,SJ69BN,UI39BQ,cAAA,KAGF,SJ49BN,UI19BQ,cAAA,KAPF,SJq+BN,UIn+BQ,cAAA,OAGF,SJo+BN,UIl+BQ,cAAA,OAPF,SJ6+BN,UI3+BQ,cAAA,KAGF,SJ4+BN,UI1+BQ,cAAA,MCvDF,UAOI,QAAA,iBAPJ,gBAOI,QAAA,uBAPJ,SAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,SAOI,QAAA,gBAPJ,aAOI,QAAA,oBAPJ,cAOI,QAAA,qBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,QAOI,QAAA,eAPJ,WAOI,KAAA,EAAA,EAAA,eAPJ,UAOI,eAAA,cAPJ,aAOI,eAAA,iBAPJ,kBAOI,eAAA,sBAPJ,qBAOI,eAAA,yBAPJ,aAOI,UAAA,YAPJ,aAOI,UAAA,YAPJ,eAOI,YAAA,YAPJ,eAOI,YAAA,YAPJ,WAOI,UAAA,eAPJ,aAOI,UAAA,iBAPJ,mBAOI,UAAA,uBAPJ,uBAOI,gBAAA,qBAPJ,qBAOI,gBAAA,mBAPJ,wBAOI,gBAAA,iBAPJ,yBAOI,gBAAA,wBAPJ,wBAOI,gBAAA,uBAPJ,wBAOI,gBAAA,uBAPJ,mBAOI,YAAA,qBAPJ,iBAOI,YAAA,mBAPJ,oBAOI,YAAA,iBAPJ,sBAOI,YAAA,mBAPJ,qBAOI,YAAA,kBAPJ,qBAOI,cAAA,qBAPJ,mBAOI,cAAA,mBAPJ,sBAOI,cAAA,iBAPJ,uBAOI,cAAA,wBAPJ,sBAOI,cAAA,uBAPJ,uBAOI,cAAA,kBAPJ,iBAOI,WAAA,eAPJ,kBAOI,WAAA,qBAPJ,gBAOI,WAAA,mBAPJ,mBAOI,WAAA,iBAPJ,qBAOI,WAAA,mBAPJ,oBAOI,WAAA,kBAPJ,aAOI,MAAA,aAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,KAOI,OAAA,YAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,gBAPJ,KAOI,OAAA,eAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,MAOI,aAAA,YAAA,YAAA,YAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,gBAAA,YAAA,gBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,WAAA,YAAA,cAAA,YAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,gBAAA,cAAA,gBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,YAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,gBAPJ,MAOI,WAAA,eAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,eAPJ,SAOI,WAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,SAOI,aAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,SAOI,cAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,SAOI,YAAA,eAPJ,KAOI,QAAA,YAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,gBAPJ,KAOI,QAAA,eAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,eAPJ,MAOI,cAAA,YAAA,aAAA,YAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,gBAAA,aAAA,gBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,YAAA,YAAA,eAAA,YAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,gBAAA,eAAA,gBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,MAOI,eAAA,YAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,gBAPJ,MAOI,eAAA,eAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eHVR,yBGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBHVR,yBGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBHVR,yBGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBHVR,0BGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBHVR,0BGGI,cAOI,QAAA,iBAPJ,oBAOI,QAAA,uBAPJ,aAOI,QAAA,gBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,aAOI,QAAA,gBAPJ,iBAOI,QAAA,oBAPJ,kBAOI,QAAA,qBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,YAOI,QAAA,eAPJ,eAOI,KAAA,EAAA,EAAA,eAPJ,cAOI,eAAA,cAPJ,iBAOI,eAAA,iBAPJ,sBAOI,eAAA,sBAPJ,yBAOI,eAAA,yBAPJ,iBAOI,UAAA,YAPJ,iBAOI,UAAA,YAPJ,mBAOI,YAAA,YAPJ,mBAOI,YAAA,YAPJ,eAOI,UAAA,eAPJ,iBAOI,UAAA,iBAPJ,uBAOI,UAAA,uBAPJ,2BAOI,gBAAA,qBAPJ,yBAOI,gBAAA,mBAPJ,4BAOI,gBAAA,iBAPJ,6BAOI,gBAAA,wBAPJ,4BAOI,gBAAA,uBAPJ,4BAOI,gBAAA,uBAPJ,uBAOI,YAAA,qBAPJ,qBAOI,YAAA,mBAPJ,wBAOI,YAAA,iBAPJ,0BAOI,YAAA,mBAPJ,yBAOI,YAAA,kBAPJ,yBAOI,cAAA,qBAPJ,uBAOI,cAAA,mBAPJ,0BAOI,cAAA,iBAPJ,2BAOI,cAAA,wBAPJ,0BAOI,cAAA,uBAPJ,2BAOI,cAAA,kBAPJ,qBAOI,WAAA,eAPJ,sBAOI,WAAA,qBAPJ,oBAOI,WAAA,mBAPJ,uBAOI,WAAA,iBAPJ,yBAOI,WAAA,mBAPJ,wBAOI,WAAA,kBAPJ,iBAOI,MAAA,aAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,gBAOI,MAAA,YAPJ,SAOI,OAAA,YAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,gBAPJ,SAOI,OAAA,eAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,eAPJ,YAOI,OAAA,eAPJ,UAOI,aAAA,YAAA,YAAA,YAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,gBAAA,YAAA,gBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,aAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,WAAA,YAAA,cAAA,YAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,gBAAA,cAAA,gBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,aAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,YAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,gBAPJ,UAOI,WAAA,eAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,eAPJ,aAOI,WAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,aAOI,aAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,aAOI,cAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,aAOI,YAAA,eAPJ,SAOI,QAAA,YAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,gBAPJ,SAOI,QAAA,eAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,eAPJ,UAOI,cAAA,YAAA,aAAA,YAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,gBAAA,aAAA,gBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,YAAA,YAAA,eAAA,YAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,gBAAA,eAAA,gBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,UAOI,eAAA,YAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,gBAPJ,UAOI,eAAA,eAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBCnCZ,aD4BQ,gBAOI,QAAA,iBAPJ,sBAOI,QAAA,uBAPJ,eAOI,QAAA,gBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,eAOI,QAAA,gBAPJ,mBAOI,QAAA,oBAPJ,oBAOI,QAAA,qBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,cAOI,QAAA","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-container-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","/*!\n * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n:root {\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n .g-sm-0,\n .gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n .gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n .gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n .gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n .gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n .gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n .gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n .gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n .gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n .gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n .gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n .gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n .g-md-0,\n .gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n .gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n .gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n .gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n .gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n .gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n .gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n .gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n .gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n .gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n .gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n .gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n .g-lg-0,\n .gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n .gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n .gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n .gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n .gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n .gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n .gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n .gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n .gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n .gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n .gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n .gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n .g-xl-0,\n .gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n .gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n .gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n .gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n .gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n .gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n .gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n .gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n .gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xl-4,\n .gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xl-5,\n .gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n .gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-left: 0;\n }\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xxl-3 {\n margin-left: 25%;\n }\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xxl-6 {\n margin-left: 50%;\n }\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xxl-9 {\n margin-left: 75%;\n }\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n .g-xxl-0,\n .gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n .gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n .gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n .gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n .gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n .gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n .gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n .gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n .gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xxl-4,\n .gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xxl-5,\n .gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n .gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-inline-grid {\n display: inline-grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-grid {\n display: grid !important;\n }\n .d-sm-inline-grid {\n display: inline-grid !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n .d-sm-none {\n display: none !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n .order-sm-first {\n order: -1 !important;\n }\n .order-sm-0 {\n order: 0 !important;\n }\n .order-sm-1 {\n order: 1 !important;\n }\n .order-sm-2 {\n order: 2 !important;\n }\n .order-sm-3 {\n order: 3 !important;\n }\n .order-sm-4 {\n order: 4 !important;\n }\n .order-sm-5 {\n order: 5 !important;\n }\n .order-sm-last {\n order: 6 !important;\n }\n .m-sm-0 {\n margin: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n .mt-sm-auto {\n margin-top: auto !important;\n }\n .me-sm-0 {\n margin-right: 0 !important;\n }\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n .me-sm-4 {\n margin-right: 1.5rem !important;\n }\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n .me-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n .ms-sm-4 {\n margin-left: 1.5rem !important;\n }\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n .ms-sm-auto {\n margin-left: auto !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-sm-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n .pe-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n .ps-sm-4 {\n padding-left: 1.5rem !important;\n }\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-grid {\n display: grid !important;\n }\n .d-md-inline-grid {\n display: inline-grid !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n .d-md-none {\n display: none !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n .order-md-first {\n order: -1 !important;\n }\n .order-md-0 {\n order: 0 !important;\n }\n .order-md-1 {\n order: 1 !important;\n }\n .order-md-2 {\n order: 2 !important;\n }\n .order-md-3 {\n order: 3 !important;\n }\n .order-md-4 {\n order: 4 !important;\n }\n .order-md-5 {\n order: 5 !important;\n }\n .order-md-last {\n order: 6 !important;\n }\n .m-md-0 {\n margin: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-md-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-md-0 {\n margin-top: 0 !important;\n }\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n .mt-md-auto {\n margin-top: auto !important;\n }\n .me-md-0 {\n margin-right: 0 !important;\n }\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n .me-md-3 {\n margin-right: 1rem !important;\n }\n .me-md-4 {\n margin-right: 1.5rem !important;\n }\n .me-md-5 {\n margin-right: 3rem !important;\n }\n .me-md-auto {\n margin-right: auto !important;\n }\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n .ms-md-0 {\n margin-left: 0 !important;\n }\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n .ms-md-4 {\n margin-left: 1.5rem !important;\n }\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n .ms-md-auto {\n margin-left: auto !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-md-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-md-0 {\n padding-top: 0 !important;\n }\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n .pe-md-0 {\n padding-right: 0 !important;\n }\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n .pe-md-4 {\n padding-right: 1.5rem !important;\n }\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n .ps-md-0 {\n padding-left: 0 !important;\n }\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n .ps-md-4 {\n padding-left: 1.5rem !important;\n }\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-grid {\n display: grid !important;\n }\n .d-lg-inline-grid {\n display: inline-grid !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n .d-lg-none {\n display: none !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n .order-lg-first {\n order: -1 !important;\n }\n .order-lg-0 {\n order: 0 !important;\n }\n .order-lg-1 {\n order: 1 !important;\n }\n .order-lg-2 {\n order: 2 !important;\n }\n .order-lg-3 {\n order: 3 !important;\n }\n .order-lg-4 {\n order: 4 !important;\n }\n .order-lg-5 {\n order: 5 !important;\n }\n .order-lg-last {\n order: 6 !important;\n }\n .m-lg-0 {\n margin: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n .mt-lg-auto {\n margin-top: auto !important;\n }\n .me-lg-0 {\n margin-right: 0 !important;\n }\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n .me-lg-4 {\n margin-right: 1.5rem !important;\n }\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n .me-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n .ms-lg-4 {\n margin-left: 1.5rem !important;\n }\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n .ms-lg-auto {\n margin-left: auto !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-lg-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n .pe-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n .ps-lg-4 {\n padding-left: 1.5rem !important;\n }\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-grid {\n display: grid !important;\n }\n .d-xl-inline-grid {\n display: inline-grid !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n .d-xl-none {\n display: none !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n .order-xl-first {\n order: -1 !important;\n }\n .order-xl-0 {\n order: 0 !important;\n }\n .order-xl-1 {\n order: 1 !important;\n }\n .order-xl-2 {\n order: 2 !important;\n }\n .order-xl-3 {\n order: 3 !important;\n }\n .order-xl-4 {\n order: 4 !important;\n }\n .order-xl-5 {\n order: 5 !important;\n }\n .order-xl-last {\n order: 6 !important;\n }\n .m-xl-0 {\n margin: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n .mt-xl-auto {\n margin-top: auto !important;\n }\n .me-xl-0 {\n margin-right: 0 !important;\n }\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n .me-xl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n .me-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n .ms-xl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n .ms-xl-auto {\n margin-left: auto !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n .pe-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n .ps-xl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n .d-xxl-block {\n display: block !important;\n }\n .d-xxl-grid {\n display: grid !important;\n }\n .d-xxl-inline-grid {\n display: inline-grid !important;\n }\n .d-xxl-table {\n display: table !important;\n }\n .d-xxl-table-row {\n display: table-row !important;\n }\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n .d-xxl-flex {\n display: flex !important;\n }\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n .d-xxl-none {\n display: none !important;\n }\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xxl-row {\n flex-direction: row !important;\n }\n .flex-xxl-column {\n flex-direction: column !important;\n }\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n .align-items-xxl-center {\n align-items: center !important;\n }\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n .align-content-xxl-center {\n align-content: center !important;\n }\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n .align-self-xxl-center {\n align-self: center !important;\n }\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n .order-xxl-first {\n order: -1 !important;\n }\n .order-xxl-0 {\n order: 0 !important;\n }\n .order-xxl-1 {\n order: 1 !important;\n }\n .order-xxl-2 {\n order: 2 !important;\n }\n .order-xxl-3 {\n order: 3 !important;\n }\n .order-xxl-4 {\n order: 4 !important;\n }\n .order-xxl-5 {\n order: 5 !important;\n }\n .order-xxl-last {\n order: 6 !important;\n }\n .m-xxl-0 {\n margin: 0 !important;\n }\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n .m-xxl-3 {\n margin: 1rem !important;\n }\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n .m-xxl-5 {\n margin: 3rem !important;\n }\n .m-xxl-auto {\n margin: auto !important;\n }\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xxl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n .me-xxl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n .me-xxl-auto {\n margin-right: auto !important;\n }\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n .ms-xxl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n .p-xxl-0 {\n padding: 0 !important;\n }\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n .p-xxl-3 {\n padding: 1rem !important;\n }\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n .p-xxl-5 {\n padding: 3rem !important;\n }\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xxl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n .pe-xxl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n .ps-xxl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-grid {\n display: grid !important;\n }\n .d-print-inline-grid {\n display: inline-grid !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n .d-print-none {\n display: none !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap-grid.css.map */","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-right: auto;\n margin-left: auto;\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Row\n//\n// Rows contain your columns.\n\n:root {\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n // TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed\n margin-top: calc(-1 * var(--#{$prefix}gutter-y)); // stylelint-disable-line function-disallowed-list\n margin-right: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n margin-left: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready() {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// number of columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: percentage(divide(1, $count));\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is an invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix: \"\", $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // Use custom CSS variable name if present, otherwise default to `class`\n $css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (e.g. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]} \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.rtl.css b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.rtl.css new file mode 100644 index 000000000..1a5d65630 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.rtl.css @@ -0,0 +1,4084 @@ +/*! + * Bootstrap Grid v5.3.3 (https://getbootstrap.com/) + * Copyright 2011-2024 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +.container, +.container-fluid, +.container-xxl, +.container-xl, +.container-lg, +.container-md, +.container-sm { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + width: 100%; + padding-left: calc(var(--bs-gutter-x) * 0.5); + padding-right: calc(var(--bs-gutter-x) * 0.5); + margin-left: auto; + margin-right: auto; +} + +@media (min-width: 576px) { + .container-sm, .container { + max-width: 540px; + } +} +@media (min-width: 768px) { + .container-md, .container-sm, .container { + max-width: 720px; + } +} +@media (min-width: 992px) { + .container-lg, .container-md, .container-sm, .container { + max-width: 960px; + } +} +@media (min-width: 1200px) { + .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1140px; + } +} +@media (min-width: 1400px) { + .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1320px; + } +} +:root { + --bs-breakpoint-xs: 0; + --bs-breakpoint-sm: 576px; + --bs-breakpoint-md: 768px; + --bs-breakpoint-lg: 992px; + --bs-breakpoint-xl: 1200px; + --bs-breakpoint-xxl: 1400px; +} + +.row { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(-1 * var(--bs-gutter-y)); + margin-left: calc(-0.5 * var(--bs-gutter-x)); + margin-right: calc(-0.5 * var(--bs-gutter-x)); +} +.row > * { + box-sizing: border-box; + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-left: calc(var(--bs-gutter-x) * 0.5); + padding-right: calc(var(--bs-gutter-x) * 0.5); + margin-top: var(--bs-gutter-y); +} + +.col { + flex: 1 0 0%; +} + +.row-cols-auto > * { + flex: 0 0 auto; + width: auto; +} + +.row-cols-1 > * { + flex: 0 0 auto; + width: 100%; +} + +.row-cols-2 > * { + flex: 0 0 auto; + width: 50%; +} + +.row-cols-3 > * { + flex: 0 0 auto; + width: 33.33333333%; +} + +.row-cols-4 > * { + flex: 0 0 auto; + width: 25%; +} + +.row-cols-5 > * { + flex: 0 0 auto; + width: 20%; +} + +.row-cols-6 > * { + flex: 0 0 auto; + width: 16.66666667%; +} + +.col-auto { + flex: 0 0 auto; + width: auto; +} + +.col-1 { + flex: 0 0 auto; + width: 8.33333333%; +} + +.col-2 { + flex: 0 0 auto; + width: 16.66666667%; +} + +.col-3 { + flex: 0 0 auto; + width: 25%; +} + +.col-4 { + flex: 0 0 auto; + width: 33.33333333%; +} + +.col-5 { + flex: 0 0 auto; + width: 41.66666667%; +} + +.col-6 { + flex: 0 0 auto; + width: 50%; +} + +.col-7 { + flex: 0 0 auto; + width: 58.33333333%; +} + +.col-8 { + flex: 0 0 auto; + width: 66.66666667%; +} + +.col-9 { + flex: 0 0 auto; + width: 75%; +} + +.col-10 { + flex: 0 0 auto; + width: 83.33333333%; +} + +.col-11 { + flex: 0 0 auto; + width: 91.66666667%; +} + +.col-12 { + flex: 0 0 auto; + width: 100%; +} + +.offset-1 { + margin-right: 8.33333333%; +} + +.offset-2 { + margin-right: 16.66666667%; +} + +.offset-3 { + margin-right: 25%; +} + +.offset-4 { + margin-right: 33.33333333%; +} + +.offset-5 { + margin-right: 41.66666667%; +} + +.offset-6 { + margin-right: 50%; +} + +.offset-7 { + margin-right: 58.33333333%; +} + +.offset-8 { + margin-right: 66.66666667%; +} + +.offset-9 { + margin-right: 75%; +} + +.offset-10 { + margin-right: 83.33333333%; +} + +.offset-11 { + margin-right: 91.66666667%; +} + +.g-0, +.gx-0 { + --bs-gutter-x: 0; +} + +.g-0, +.gy-0 { + --bs-gutter-y: 0; +} + +.g-1, +.gx-1 { + --bs-gutter-x: 0.25rem; +} + +.g-1, +.gy-1 { + --bs-gutter-y: 0.25rem; +} + +.g-2, +.gx-2 { + --bs-gutter-x: 0.5rem; +} + +.g-2, +.gy-2 { + --bs-gutter-y: 0.5rem; +} + +.g-3, +.gx-3 { + --bs-gutter-x: 1rem; +} + +.g-3, +.gy-3 { + --bs-gutter-y: 1rem; +} + +.g-4, +.gx-4 { + --bs-gutter-x: 1.5rem; +} + +.g-4, +.gy-4 { + --bs-gutter-y: 1.5rem; +} + +.g-5, +.gx-5 { + --bs-gutter-x: 3rem; +} + +.g-5, +.gy-5 { + --bs-gutter-y: 3rem; +} + +@media (min-width: 576px) { + .col-sm { + flex: 1 0 0%; + } + .row-cols-sm-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-sm-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-sm-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-sm-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-sm-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-sm-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-sm-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-auto { + flex: 0 0 auto; + width: auto; + } + .col-sm-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-sm-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-3 { + flex: 0 0 auto; + width: 25%; + } + .col-sm-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-sm-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-sm-6 { + flex: 0 0 auto; + width: 50%; + } + .col-sm-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-sm-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-sm-9 { + flex: 0 0 auto; + width: 75%; + } + .col-sm-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-sm-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-sm-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-sm-0 { + margin-right: 0; + } + .offset-sm-1 { + margin-right: 8.33333333%; + } + .offset-sm-2 { + margin-right: 16.66666667%; + } + .offset-sm-3 { + margin-right: 25%; + } + .offset-sm-4 { + margin-right: 33.33333333%; + } + .offset-sm-5 { + margin-right: 41.66666667%; + } + .offset-sm-6 { + margin-right: 50%; + } + .offset-sm-7 { + margin-right: 58.33333333%; + } + .offset-sm-8 { + margin-right: 66.66666667%; + } + .offset-sm-9 { + margin-right: 75%; + } + .offset-sm-10 { + margin-right: 83.33333333%; + } + .offset-sm-11 { + margin-right: 91.66666667%; + } + .g-sm-0, + .gx-sm-0 { + --bs-gutter-x: 0; + } + .g-sm-0, + .gy-sm-0 { + --bs-gutter-y: 0; + } + .g-sm-1, + .gx-sm-1 { + --bs-gutter-x: 0.25rem; + } + .g-sm-1, + .gy-sm-1 { + --bs-gutter-y: 0.25rem; + } + .g-sm-2, + .gx-sm-2 { + --bs-gutter-x: 0.5rem; + } + .g-sm-2, + .gy-sm-2 { + --bs-gutter-y: 0.5rem; + } + .g-sm-3, + .gx-sm-3 { + --bs-gutter-x: 1rem; + } + .g-sm-3, + .gy-sm-3 { + --bs-gutter-y: 1rem; + } + .g-sm-4, + .gx-sm-4 { + --bs-gutter-x: 1.5rem; + } + .g-sm-4, + .gy-sm-4 { + --bs-gutter-y: 1.5rem; + } + .g-sm-5, + .gx-sm-5 { + --bs-gutter-x: 3rem; + } + .g-sm-5, + .gy-sm-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 768px) { + .col-md { + flex: 1 0 0%; + } + .row-cols-md-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-md-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-md-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-md-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-md-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-md-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-md-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-auto { + flex: 0 0 auto; + width: auto; + } + .col-md-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-md-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-3 { + flex: 0 0 auto; + width: 25%; + } + .col-md-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-md-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-md-6 { + flex: 0 0 auto; + width: 50%; + } + .col-md-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-md-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-md-9 { + flex: 0 0 auto; + width: 75%; + } + .col-md-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-md-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-md-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-md-0 { + margin-right: 0; + } + .offset-md-1 { + margin-right: 8.33333333%; + } + .offset-md-2 { + margin-right: 16.66666667%; + } + .offset-md-3 { + margin-right: 25%; + } + .offset-md-4 { + margin-right: 33.33333333%; + } + .offset-md-5 { + margin-right: 41.66666667%; + } + .offset-md-6 { + margin-right: 50%; + } + .offset-md-7 { + margin-right: 58.33333333%; + } + .offset-md-8 { + margin-right: 66.66666667%; + } + .offset-md-9 { + margin-right: 75%; + } + .offset-md-10 { + margin-right: 83.33333333%; + } + .offset-md-11 { + margin-right: 91.66666667%; + } + .g-md-0, + .gx-md-0 { + --bs-gutter-x: 0; + } + .g-md-0, + .gy-md-0 { + --bs-gutter-y: 0; + } + .g-md-1, + .gx-md-1 { + --bs-gutter-x: 0.25rem; + } + .g-md-1, + .gy-md-1 { + --bs-gutter-y: 0.25rem; + } + .g-md-2, + .gx-md-2 { + --bs-gutter-x: 0.5rem; + } + .g-md-2, + .gy-md-2 { + --bs-gutter-y: 0.5rem; + } + .g-md-3, + .gx-md-3 { + --bs-gutter-x: 1rem; + } + .g-md-3, + .gy-md-3 { + --bs-gutter-y: 1rem; + } + .g-md-4, + .gx-md-4 { + --bs-gutter-x: 1.5rem; + } + .g-md-4, + .gy-md-4 { + --bs-gutter-y: 1.5rem; + } + .g-md-5, + .gx-md-5 { + --bs-gutter-x: 3rem; + } + .g-md-5, + .gy-md-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 992px) { + .col-lg { + flex: 1 0 0%; + } + .row-cols-lg-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-lg-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-lg-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-lg-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-lg-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-lg-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-lg-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-auto { + flex: 0 0 auto; + width: auto; + } + .col-lg-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-lg-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-3 { + flex: 0 0 auto; + width: 25%; + } + .col-lg-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-lg-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-lg-6 { + flex: 0 0 auto; + width: 50%; + } + .col-lg-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-lg-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-lg-9 { + flex: 0 0 auto; + width: 75%; + } + .col-lg-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-lg-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-lg-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-lg-0 { + margin-right: 0; + } + .offset-lg-1 { + margin-right: 8.33333333%; + } + .offset-lg-2 { + margin-right: 16.66666667%; + } + .offset-lg-3 { + margin-right: 25%; + } + .offset-lg-4 { + margin-right: 33.33333333%; + } + .offset-lg-5 { + margin-right: 41.66666667%; + } + .offset-lg-6 { + margin-right: 50%; + } + .offset-lg-7 { + margin-right: 58.33333333%; + } + .offset-lg-8 { + margin-right: 66.66666667%; + } + .offset-lg-9 { + margin-right: 75%; + } + .offset-lg-10 { + margin-right: 83.33333333%; + } + .offset-lg-11 { + margin-right: 91.66666667%; + } + .g-lg-0, + .gx-lg-0 { + --bs-gutter-x: 0; + } + .g-lg-0, + .gy-lg-0 { + --bs-gutter-y: 0; + } + .g-lg-1, + .gx-lg-1 { + --bs-gutter-x: 0.25rem; + } + .g-lg-1, + .gy-lg-1 { + --bs-gutter-y: 0.25rem; + } + .g-lg-2, + .gx-lg-2 { + --bs-gutter-x: 0.5rem; + } + .g-lg-2, + .gy-lg-2 { + --bs-gutter-y: 0.5rem; + } + .g-lg-3, + .gx-lg-3 { + --bs-gutter-x: 1rem; + } + .g-lg-3, + .gy-lg-3 { + --bs-gutter-y: 1rem; + } + .g-lg-4, + .gx-lg-4 { + --bs-gutter-x: 1.5rem; + } + .g-lg-4, + .gy-lg-4 { + --bs-gutter-y: 1.5rem; + } + .g-lg-5, + .gx-lg-5 { + --bs-gutter-x: 3rem; + } + .g-lg-5, + .gy-lg-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1200px) { + .col-xl { + flex: 1 0 0%; + } + .row-cols-xl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xl-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-xl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xl-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xl-0 { + margin-right: 0; + } + .offset-xl-1 { + margin-right: 8.33333333%; + } + .offset-xl-2 { + margin-right: 16.66666667%; + } + .offset-xl-3 { + margin-right: 25%; + } + .offset-xl-4 { + margin-right: 33.33333333%; + } + .offset-xl-5 { + margin-right: 41.66666667%; + } + .offset-xl-6 { + margin-right: 50%; + } + .offset-xl-7 { + margin-right: 58.33333333%; + } + .offset-xl-8 { + margin-right: 66.66666667%; + } + .offset-xl-9 { + margin-right: 75%; + } + .offset-xl-10 { + margin-right: 83.33333333%; + } + .offset-xl-11 { + margin-right: 91.66666667%; + } + .g-xl-0, + .gx-xl-0 { + --bs-gutter-x: 0; + } + .g-xl-0, + .gy-xl-0 { + --bs-gutter-y: 0; + } + .g-xl-1, + .gx-xl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xl-1, + .gy-xl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xl-2, + .gx-xl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xl-2, + .gy-xl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xl-3, + .gx-xl-3 { + --bs-gutter-x: 1rem; + } + .g-xl-3, + .gy-xl-3 { + --bs-gutter-y: 1rem; + } + .g-xl-4, + .gx-xl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xl-4, + .gy-xl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xl-5, + .gx-xl-5 { + --bs-gutter-x: 3rem; + } + .g-xl-5, + .gy-xl-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1400px) { + .col-xxl { + flex: 1 0 0%; + } + .row-cols-xxl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xxl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xxl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xxl-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-xxl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xxl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xxl-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xxl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xxl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xxl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xxl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xxl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xxl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xxl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xxl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xxl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xxl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xxl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xxl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xxl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xxl-0 { + margin-right: 0; + } + .offset-xxl-1 { + margin-right: 8.33333333%; + } + .offset-xxl-2 { + margin-right: 16.66666667%; + } + .offset-xxl-3 { + margin-right: 25%; + } + .offset-xxl-4 { + margin-right: 33.33333333%; + } + .offset-xxl-5 { + margin-right: 41.66666667%; + } + .offset-xxl-6 { + margin-right: 50%; + } + .offset-xxl-7 { + margin-right: 58.33333333%; + } + .offset-xxl-8 { + margin-right: 66.66666667%; + } + .offset-xxl-9 { + margin-right: 75%; + } + .offset-xxl-10 { + margin-right: 83.33333333%; + } + .offset-xxl-11 { + margin-right: 91.66666667%; + } + .g-xxl-0, + .gx-xxl-0 { + --bs-gutter-x: 0; + } + .g-xxl-0, + .gy-xxl-0 { + --bs-gutter-y: 0; + } + .g-xxl-1, + .gx-xxl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xxl-1, + .gy-xxl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xxl-2, + .gx-xxl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xxl-2, + .gy-xxl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xxl-3, + .gx-xxl-3 { + --bs-gutter-x: 1rem; + } + .g-xxl-3, + .gy-xxl-3 { + --bs-gutter-y: 1rem; + } + .g-xxl-4, + .gx-xxl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xxl-4, + .gy-xxl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xxl-5, + .gx-xxl-5 { + --bs-gutter-x: 3rem; + } + .g-xxl-5, + .gy-xxl-5 { + --bs-gutter-y: 3rem; + } +} +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-grid { + display: grid !important; +} + +.d-inline-grid { + display: inline-grid !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: flex !important; +} + +.d-inline-flex { + display: inline-flex !important; +} + +.d-none { + display: none !important; +} + +.flex-fill { + flex: 1 1 auto !important; +} + +.flex-row { + flex-direction: row !important; +} + +.flex-column { + flex-direction: column !important; +} + +.flex-row-reverse { + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + flex-direction: column-reverse !important; +} + +.flex-grow-0 { + flex-grow: 0 !important; +} + +.flex-grow-1 { + flex-grow: 1 !important; +} + +.flex-shrink-0 { + flex-shrink: 0 !important; +} + +.flex-shrink-1 { + flex-shrink: 1 !important; +} + +.flex-wrap { + flex-wrap: wrap !important; +} + +.flex-nowrap { + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} + +.justify-content-start { + justify-content: flex-start !important; +} + +.justify-content-end { + justify-content: flex-end !important; +} + +.justify-content-center { + justify-content: center !important; +} + +.justify-content-between { + justify-content: space-between !important; +} + +.justify-content-around { + justify-content: space-around !important; +} + +.justify-content-evenly { + justify-content: space-evenly !important; +} + +.align-items-start { + align-items: flex-start !important; +} + +.align-items-end { + align-items: flex-end !important; +} + +.align-items-center { + align-items: center !important; +} + +.align-items-baseline { + align-items: baseline !important; +} + +.align-items-stretch { + align-items: stretch !important; +} + +.align-content-start { + align-content: flex-start !important; +} + +.align-content-end { + align-content: flex-end !important; +} + +.align-content-center { + align-content: center !important; +} + +.align-content-between { + align-content: space-between !important; +} + +.align-content-around { + align-content: space-around !important; +} + +.align-content-stretch { + align-content: stretch !important; +} + +.align-self-auto { + align-self: auto !important; +} + +.align-self-start { + align-self: flex-start !important; +} + +.align-self-end { + align-self: flex-end !important; +} + +.align-self-center { + align-self: center !important; +} + +.align-self-baseline { + align-self: baseline !important; +} + +.align-self-stretch { + align-self: stretch !important; +} + +.order-first { + order: -1 !important; +} + +.order-0 { + order: 0 !important; +} + +.order-1 { + order: 1 !important; +} + +.order-2 { + order: 2 !important; +} + +.order-3 { + order: 3 !important; +} + +.order-4 { + order: 4 !important; +} + +.order-5 { + order: 5 !important; +} + +.order-last { + order: 6 !important; +} + +.m-0 { + margin: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mx-0 { + margin-left: 0 !important; + margin-right: 0 !important; +} + +.mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; +} + +.mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; +} + +.mx-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; +} + +.mx-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; +} + +.mx-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; +} + +.mx-auto { + margin-left: auto !important; + margin-right: auto !important; +} + +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; +} + +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; +} + +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; +} + +.my-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; +} + +.my-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; +} + +.my-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; +} + +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; +} + +.mt-0 { + margin-top: 0 !important; +} + +.mt-1 { + margin-top: 0.25rem !important; +} + +.mt-2 { + margin-top: 0.5rem !important; +} + +.mt-3 { + margin-top: 1rem !important; +} + +.mt-4 { + margin-top: 1.5rem !important; +} + +.mt-5 { + margin-top: 3rem !important; +} + +.mt-auto { + margin-top: auto !important; +} + +.me-0 { + margin-left: 0 !important; +} + +.me-1 { + margin-left: 0.25rem !important; +} + +.me-2 { + margin-left: 0.5rem !important; +} + +.me-3 { + margin-left: 1rem !important; +} + +.me-4 { + margin-left: 1.5rem !important; +} + +.me-5 { + margin-left: 3rem !important; +} + +.me-auto { + margin-left: auto !important; +} + +.mb-0 { + margin-bottom: 0 !important; +} + +.mb-1 { + margin-bottom: 0.25rem !important; +} + +.mb-2 { + margin-bottom: 0.5rem !important; +} + +.mb-3 { + margin-bottom: 1rem !important; +} + +.mb-4 { + margin-bottom: 1.5rem !important; +} + +.mb-5 { + margin-bottom: 3rem !important; +} + +.mb-auto { + margin-bottom: auto !important; +} + +.ms-0 { + margin-right: 0 !important; +} + +.ms-1 { + margin-right: 0.25rem !important; +} + +.ms-2 { + margin-right: 0.5rem !important; +} + +.ms-3 { + margin-right: 1rem !important; +} + +.ms-4 { + margin-right: 1.5rem !important; +} + +.ms-5 { + margin-right: 3rem !important; +} + +.ms-auto { + margin-right: auto !important; +} + +.p-0 { + padding: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.px-0 { + padding-left: 0 !important; + padding-right: 0 !important; +} + +.px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; +} + +.px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; +} + +.px-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; +} + +.px-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; +} + +.px-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; +} + +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} + +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; +} + +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; +} + +.py-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; +} + +.py-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; +} + +.py-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; +} + +.pt-0 { + padding-top: 0 !important; +} + +.pt-1 { + padding-top: 0.25rem !important; +} + +.pt-2 { + padding-top: 0.5rem !important; +} + +.pt-3 { + padding-top: 1rem !important; +} + +.pt-4 { + padding-top: 1.5rem !important; +} + +.pt-5 { + padding-top: 3rem !important; +} + +.pe-0 { + padding-left: 0 !important; +} + +.pe-1 { + padding-left: 0.25rem !important; +} + +.pe-2 { + padding-left: 0.5rem !important; +} + +.pe-3 { + padding-left: 1rem !important; +} + +.pe-4 { + padding-left: 1.5rem !important; +} + +.pe-5 { + padding-left: 3rem !important; +} + +.pb-0 { + padding-bottom: 0 !important; +} + +.pb-1 { + padding-bottom: 0.25rem !important; +} + +.pb-2 { + padding-bottom: 0.5rem !important; +} + +.pb-3 { + padding-bottom: 1rem !important; +} + +.pb-4 { + padding-bottom: 1.5rem !important; +} + +.pb-5 { + padding-bottom: 3rem !important; +} + +.ps-0 { + padding-right: 0 !important; +} + +.ps-1 { + padding-right: 0.25rem !important; +} + +.ps-2 { + padding-right: 0.5rem !important; +} + +.ps-3 { + padding-right: 1rem !important; +} + +.ps-4 { + padding-right: 1.5rem !important; +} + +.ps-5 { + padding-right: 3rem !important; +} + +@media (min-width: 576px) { + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-grid { + display: grid !important; + } + .d-sm-inline-grid { + display: inline-grid !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-row { + display: table-row !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: flex !important; + } + .d-sm-inline-flex { + display: inline-flex !important; + } + .d-sm-none { + display: none !important; + } + .flex-sm-fill { + flex: 1 1 auto !important; + } + .flex-sm-row { + flex-direction: row !important; + } + .flex-sm-column { + flex-direction: column !important; + } + .flex-sm-row-reverse { + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + flex-direction: column-reverse !important; + } + .flex-sm-grow-0 { + flex-grow: 0 !important; + } + .flex-sm-grow-1 { + flex-grow: 1 !important; + } + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + .flex-sm-wrap { + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-sm-start { + justify-content: flex-start !important; + } + .justify-content-sm-end { + justify-content: flex-end !important; + } + .justify-content-sm-center { + justify-content: center !important; + } + .justify-content-sm-between { + justify-content: space-between !important; + } + .justify-content-sm-around { + justify-content: space-around !important; + } + .justify-content-sm-evenly { + justify-content: space-evenly !important; + } + .align-items-sm-start { + align-items: flex-start !important; + } + .align-items-sm-end { + align-items: flex-end !important; + } + .align-items-sm-center { + align-items: center !important; + } + .align-items-sm-baseline { + align-items: baseline !important; + } + .align-items-sm-stretch { + align-items: stretch !important; + } + .align-content-sm-start { + align-content: flex-start !important; + } + .align-content-sm-end { + align-content: flex-end !important; + } + .align-content-sm-center { + align-content: center !important; + } + .align-content-sm-between { + align-content: space-between !important; + } + .align-content-sm-around { + align-content: space-around !important; + } + .align-content-sm-stretch { + align-content: stretch !important; + } + .align-self-sm-auto { + align-self: auto !important; + } + .align-self-sm-start { + align-self: flex-start !important; + } + .align-self-sm-end { + align-self: flex-end !important; + } + .align-self-sm-center { + align-self: center !important; + } + .align-self-sm-baseline { + align-self: baseline !important; + } + .align-self-sm-stretch { + align-self: stretch !important; + } + .order-sm-first { + order: -1 !important; + } + .order-sm-0 { + order: 0 !important; + } + .order-sm-1 { + order: 1 !important; + } + .order-sm-2 { + order: 2 !important; + } + .order-sm-3 { + order: 3 !important; + } + .order-sm-4 { + order: 4 !important; + } + .order-sm-5 { + order: 5 !important; + } + .order-sm-last { + order: 6 !important; + } + .m-sm-0 { + margin: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .m-sm-4 { + margin: 1.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mx-sm-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-sm-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-sm-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-sm-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-sm-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-sm-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-sm-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-sm-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-sm-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-sm-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-sm-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-sm-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-sm-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-sm-0 { + margin-top: 0 !important; + } + .mt-sm-1 { + margin-top: 0.25rem !important; + } + .mt-sm-2 { + margin-top: 0.5rem !important; + } + .mt-sm-3 { + margin-top: 1rem !important; + } + .mt-sm-4 { + margin-top: 1.5rem !important; + } + .mt-sm-5 { + margin-top: 3rem !important; + } + .mt-sm-auto { + margin-top: auto !important; + } + .me-sm-0 { + margin-left: 0 !important; + } + .me-sm-1 { + margin-left: 0.25rem !important; + } + .me-sm-2 { + margin-left: 0.5rem !important; + } + .me-sm-3 { + margin-left: 1rem !important; + } + .me-sm-4 { + margin-left: 1.5rem !important; + } + .me-sm-5 { + margin-left: 3rem !important; + } + .me-sm-auto { + margin-left: auto !important; + } + .mb-sm-0 { + margin-bottom: 0 !important; + } + .mb-sm-1 { + margin-bottom: 0.25rem !important; + } + .mb-sm-2 { + margin-bottom: 0.5rem !important; + } + .mb-sm-3 { + margin-bottom: 1rem !important; + } + .mb-sm-4 { + margin-bottom: 1.5rem !important; + } + .mb-sm-5 { + margin-bottom: 3rem !important; + } + .mb-sm-auto { + margin-bottom: auto !important; + } + .ms-sm-0 { + margin-right: 0 !important; + } + .ms-sm-1 { + margin-right: 0.25rem !important; + } + .ms-sm-2 { + margin-right: 0.5rem !important; + } + .ms-sm-3 { + margin-right: 1rem !important; + } + .ms-sm-4 { + margin-right: 1.5rem !important; + } + .ms-sm-5 { + margin-right: 3rem !important; + } + .ms-sm-auto { + margin-right: auto !important; + } + .p-sm-0 { + padding: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .p-sm-4 { + padding: 1.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .px-sm-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-sm-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-sm-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-sm-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-sm-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-sm-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-sm-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-sm-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-sm-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-sm-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-sm-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-sm-0 { + padding-top: 0 !important; + } + .pt-sm-1 { + padding-top: 0.25rem !important; + } + .pt-sm-2 { + padding-top: 0.5rem !important; + } + .pt-sm-3 { + padding-top: 1rem !important; + } + .pt-sm-4 { + padding-top: 1.5rem !important; + } + .pt-sm-5 { + padding-top: 3rem !important; + } + .pe-sm-0 { + padding-left: 0 !important; + } + .pe-sm-1 { + padding-left: 0.25rem !important; + } + .pe-sm-2 { + padding-left: 0.5rem !important; + } + .pe-sm-3 { + padding-left: 1rem !important; + } + .pe-sm-4 { + padding-left: 1.5rem !important; + } + .pe-sm-5 { + padding-left: 3rem !important; + } + .pb-sm-0 { + padding-bottom: 0 !important; + } + .pb-sm-1 { + padding-bottom: 0.25rem !important; + } + .pb-sm-2 { + padding-bottom: 0.5rem !important; + } + .pb-sm-3 { + padding-bottom: 1rem !important; + } + .pb-sm-4 { + padding-bottom: 1.5rem !important; + } + .pb-sm-5 { + padding-bottom: 3rem !important; + } + .ps-sm-0 { + padding-right: 0 !important; + } + .ps-sm-1 { + padding-right: 0.25rem !important; + } + .ps-sm-2 { + padding-right: 0.5rem !important; + } + .ps-sm-3 { + padding-right: 1rem !important; + } + .ps-sm-4 { + padding-right: 1.5rem !important; + } + .ps-sm-5 { + padding-right: 3rem !important; + } +} +@media (min-width: 768px) { + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-grid { + display: grid !important; + } + .d-md-inline-grid { + display: inline-grid !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-row { + display: table-row !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: flex !important; + } + .d-md-inline-flex { + display: inline-flex !important; + } + .d-md-none { + display: none !important; + } + .flex-md-fill { + flex: 1 1 auto !important; + } + .flex-md-row { + flex-direction: row !important; + } + .flex-md-column { + flex-direction: column !important; + } + .flex-md-row-reverse { + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + flex-direction: column-reverse !important; + } + .flex-md-grow-0 { + flex-grow: 0 !important; + } + .flex-md-grow-1 { + flex-grow: 1 !important; + } + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } + .flex-md-wrap { + flex-wrap: wrap !important; + } + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-md-start { + justify-content: flex-start !important; + } + .justify-content-md-end { + justify-content: flex-end !important; + } + .justify-content-md-center { + justify-content: center !important; + } + .justify-content-md-between { + justify-content: space-between !important; + } + .justify-content-md-around { + justify-content: space-around !important; + } + .justify-content-md-evenly { + justify-content: space-evenly !important; + } + .align-items-md-start { + align-items: flex-start !important; + } + .align-items-md-end { + align-items: flex-end !important; + } + .align-items-md-center { + align-items: center !important; + } + .align-items-md-baseline { + align-items: baseline !important; + } + .align-items-md-stretch { + align-items: stretch !important; + } + .align-content-md-start { + align-content: flex-start !important; + } + .align-content-md-end { + align-content: flex-end !important; + } + .align-content-md-center { + align-content: center !important; + } + .align-content-md-between { + align-content: space-between !important; + } + .align-content-md-around { + align-content: space-around !important; + } + .align-content-md-stretch { + align-content: stretch !important; + } + .align-self-md-auto { + align-self: auto !important; + } + .align-self-md-start { + align-self: flex-start !important; + } + .align-self-md-end { + align-self: flex-end !important; + } + .align-self-md-center { + align-self: center !important; + } + .align-self-md-baseline { + align-self: baseline !important; + } + .align-self-md-stretch { + align-self: stretch !important; + } + .order-md-first { + order: -1 !important; + } + .order-md-0 { + order: 0 !important; + } + .order-md-1 { + order: 1 !important; + } + .order-md-2 { + order: 2 !important; + } + .order-md-3 { + order: 3 !important; + } + .order-md-4 { + order: 4 !important; + } + .order-md-5 { + order: 5 !important; + } + .order-md-last { + order: 6 !important; + } + .m-md-0 { + margin: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .m-md-4 { + margin: 1.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mx-md-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-md-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-md-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-md-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-md-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-md-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-md-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-md-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-md-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-md-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-md-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-md-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-md-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-md-0 { + margin-top: 0 !important; + } + .mt-md-1 { + margin-top: 0.25rem !important; + } + .mt-md-2 { + margin-top: 0.5rem !important; + } + .mt-md-3 { + margin-top: 1rem !important; + } + .mt-md-4 { + margin-top: 1.5rem !important; + } + .mt-md-5 { + margin-top: 3rem !important; + } + .mt-md-auto { + margin-top: auto !important; + } + .me-md-0 { + margin-left: 0 !important; + } + .me-md-1 { + margin-left: 0.25rem !important; + } + .me-md-2 { + margin-left: 0.5rem !important; + } + .me-md-3 { + margin-left: 1rem !important; + } + .me-md-4 { + margin-left: 1.5rem !important; + } + .me-md-5 { + margin-left: 3rem !important; + } + .me-md-auto { + margin-left: auto !important; + } + .mb-md-0 { + margin-bottom: 0 !important; + } + .mb-md-1 { + margin-bottom: 0.25rem !important; + } + .mb-md-2 { + margin-bottom: 0.5rem !important; + } + .mb-md-3 { + margin-bottom: 1rem !important; + } + .mb-md-4 { + margin-bottom: 1.5rem !important; + } + .mb-md-5 { + margin-bottom: 3rem !important; + } + .mb-md-auto { + margin-bottom: auto !important; + } + .ms-md-0 { + margin-right: 0 !important; + } + .ms-md-1 { + margin-right: 0.25rem !important; + } + .ms-md-2 { + margin-right: 0.5rem !important; + } + .ms-md-3 { + margin-right: 1rem !important; + } + .ms-md-4 { + margin-right: 1.5rem !important; + } + .ms-md-5 { + margin-right: 3rem !important; + } + .ms-md-auto { + margin-right: auto !important; + } + .p-md-0 { + padding: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .p-md-4 { + padding: 1.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .px-md-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-md-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-md-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-md-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-md-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-md-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-md-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-md-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-md-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-md-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-md-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-md-0 { + padding-top: 0 !important; + } + .pt-md-1 { + padding-top: 0.25rem !important; + } + .pt-md-2 { + padding-top: 0.5rem !important; + } + .pt-md-3 { + padding-top: 1rem !important; + } + .pt-md-4 { + padding-top: 1.5rem !important; + } + .pt-md-5 { + padding-top: 3rem !important; + } + .pe-md-0 { + padding-left: 0 !important; + } + .pe-md-1 { + padding-left: 0.25rem !important; + } + .pe-md-2 { + padding-left: 0.5rem !important; + } + .pe-md-3 { + padding-left: 1rem !important; + } + .pe-md-4 { + padding-left: 1.5rem !important; + } + .pe-md-5 { + padding-left: 3rem !important; + } + .pb-md-0 { + padding-bottom: 0 !important; + } + .pb-md-1 { + padding-bottom: 0.25rem !important; + } + .pb-md-2 { + padding-bottom: 0.5rem !important; + } + .pb-md-3 { + padding-bottom: 1rem !important; + } + .pb-md-4 { + padding-bottom: 1.5rem !important; + } + .pb-md-5 { + padding-bottom: 3rem !important; + } + .ps-md-0 { + padding-right: 0 !important; + } + .ps-md-1 { + padding-right: 0.25rem !important; + } + .ps-md-2 { + padding-right: 0.5rem !important; + } + .ps-md-3 { + padding-right: 1rem !important; + } + .ps-md-4 { + padding-right: 1.5rem !important; + } + .ps-md-5 { + padding-right: 3rem !important; + } +} +@media (min-width: 992px) { + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-grid { + display: grid !important; + } + .d-lg-inline-grid { + display: inline-grid !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-row { + display: table-row !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: flex !important; + } + .d-lg-inline-flex { + display: inline-flex !important; + } + .d-lg-none { + display: none !important; + } + .flex-lg-fill { + flex: 1 1 auto !important; + } + .flex-lg-row { + flex-direction: row !important; + } + .flex-lg-column { + flex-direction: column !important; + } + .flex-lg-row-reverse { + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + flex-direction: column-reverse !important; + } + .flex-lg-grow-0 { + flex-grow: 0 !important; + } + .flex-lg-grow-1 { + flex-grow: 1 !important; + } + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } + .flex-lg-wrap { + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-lg-start { + justify-content: flex-start !important; + } + .justify-content-lg-end { + justify-content: flex-end !important; + } + .justify-content-lg-center { + justify-content: center !important; + } + .justify-content-lg-between { + justify-content: space-between !important; + } + .justify-content-lg-around { + justify-content: space-around !important; + } + .justify-content-lg-evenly { + justify-content: space-evenly !important; + } + .align-items-lg-start { + align-items: flex-start !important; + } + .align-items-lg-end { + align-items: flex-end !important; + } + .align-items-lg-center { + align-items: center !important; + } + .align-items-lg-baseline { + align-items: baseline !important; + } + .align-items-lg-stretch { + align-items: stretch !important; + } + .align-content-lg-start { + align-content: flex-start !important; + } + .align-content-lg-end { + align-content: flex-end !important; + } + .align-content-lg-center { + align-content: center !important; + } + .align-content-lg-between { + align-content: space-between !important; + } + .align-content-lg-around { + align-content: space-around !important; + } + .align-content-lg-stretch { + align-content: stretch !important; + } + .align-self-lg-auto { + align-self: auto !important; + } + .align-self-lg-start { + align-self: flex-start !important; + } + .align-self-lg-end { + align-self: flex-end !important; + } + .align-self-lg-center { + align-self: center !important; + } + .align-self-lg-baseline { + align-self: baseline !important; + } + .align-self-lg-stretch { + align-self: stretch !important; + } + .order-lg-first { + order: -1 !important; + } + .order-lg-0 { + order: 0 !important; + } + .order-lg-1 { + order: 1 !important; + } + .order-lg-2 { + order: 2 !important; + } + .order-lg-3 { + order: 3 !important; + } + .order-lg-4 { + order: 4 !important; + } + .order-lg-5 { + order: 5 !important; + } + .order-lg-last { + order: 6 !important; + } + .m-lg-0 { + margin: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .m-lg-4 { + margin: 1.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mx-lg-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-lg-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-lg-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-lg-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-lg-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-lg-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-lg-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-lg-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-lg-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-lg-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-lg-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-lg-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-lg-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-lg-0 { + margin-top: 0 !important; + } + .mt-lg-1 { + margin-top: 0.25rem !important; + } + .mt-lg-2 { + margin-top: 0.5rem !important; + } + .mt-lg-3 { + margin-top: 1rem !important; + } + .mt-lg-4 { + margin-top: 1.5rem !important; + } + .mt-lg-5 { + margin-top: 3rem !important; + } + .mt-lg-auto { + margin-top: auto !important; + } + .me-lg-0 { + margin-left: 0 !important; + } + .me-lg-1 { + margin-left: 0.25rem !important; + } + .me-lg-2 { + margin-left: 0.5rem !important; + } + .me-lg-3 { + margin-left: 1rem !important; + } + .me-lg-4 { + margin-left: 1.5rem !important; + } + .me-lg-5 { + margin-left: 3rem !important; + } + .me-lg-auto { + margin-left: auto !important; + } + .mb-lg-0 { + margin-bottom: 0 !important; + } + .mb-lg-1 { + margin-bottom: 0.25rem !important; + } + .mb-lg-2 { + margin-bottom: 0.5rem !important; + } + .mb-lg-3 { + margin-bottom: 1rem !important; + } + .mb-lg-4 { + margin-bottom: 1.5rem !important; + } + .mb-lg-5 { + margin-bottom: 3rem !important; + } + .mb-lg-auto { + margin-bottom: auto !important; + } + .ms-lg-0 { + margin-right: 0 !important; + } + .ms-lg-1 { + margin-right: 0.25rem !important; + } + .ms-lg-2 { + margin-right: 0.5rem !important; + } + .ms-lg-3 { + margin-right: 1rem !important; + } + .ms-lg-4 { + margin-right: 1.5rem !important; + } + .ms-lg-5 { + margin-right: 3rem !important; + } + .ms-lg-auto { + margin-right: auto !important; + } + .p-lg-0 { + padding: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .p-lg-4 { + padding: 1.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .px-lg-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-lg-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-lg-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-lg-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-lg-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-lg-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-lg-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-lg-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-lg-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-lg-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-lg-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-lg-0 { + padding-top: 0 !important; + } + .pt-lg-1 { + padding-top: 0.25rem !important; + } + .pt-lg-2 { + padding-top: 0.5rem !important; + } + .pt-lg-3 { + padding-top: 1rem !important; + } + .pt-lg-4 { + padding-top: 1.5rem !important; + } + .pt-lg-5 { + padding-top: 3rem !important; + } + .pe-lg-0 { + padding-left: 0 !important; + } + .pe-lg-1 { + padding-left: 0.25rem !important; + } + .pe-lg-2 { + padding-left: 0.5rem !important; + } + .pe-lg-3 { + padding-left: 1rem !important; + } + .pe-lg-4 { + padding-left: 1.5rem !important; + } + .pe-lg-5 { + padding-left: 3rem !important; + } + .pb-lg-0 { + padding-bottom: 0 !important; + } + .pb-lg-1 { + padding-bottom: 0.25rem !important; + } + .pb-lg-2 { + padding-bottom: 0.5rem !important; + } + .pb-lg-3 { + padding-bottom: 1rem !important; + } + .pb-lg-4 { + padding-bottom: 1.5rem !important; + } + .pb-lg-5 { + padding-bottom: 3rem !important; + } + .ps-lg-0 { + padding-right: 0 !important; + } + .ps-lg-1 { + padding-right: 0.25rem !important; + } + .ps-lg-2 { + padding-right: 0.5rem !important; + } + .ps-lg-3 { + padding-right: 1rem !important; + } + .ps-lg-4 { + padding-right: 1.5rem !important; + } + .ps-lg-5 { + padding-right: 3rem !important; + } +} +@media (min-width: 1200px) { + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-grid { + display: grid !important; + } + .d-xl-inline-grid { + display: inline-grid !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-row { + display: table-row !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: flex !important; + } + .d-xl-inline-flex { + display: inline-flex !important; + } + .d-xl-none { + display: none !important; + } + .flex-xl-fill { + flex: 1 1 auto !important; + } + .flex-xl-row { + flex-direction: row !important; + } + .flex-xl-column { + flex-direction: column !important; + } + .flex-xl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xl-grow-0 { + flex-grow: 0 !important; + } + .flex-xl-grow-1 { + flex-grow: 1 !important; + } + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xl-wrap { + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-xl-start { + justify-content: flex-start !important; + } + .justify-content-xl-end { + justify-content: flex-end !important; + } + .justify-content-xl-center { + justify-content: center !important; + } + .justify-content-xl-between { + justify-content: space-between !important; + } + .justify-content-xl-around { + justify-content: space-around !important; + } + .justify-content-xl-evenly { + justify-content: space-evenly !important; + } + .align-items-xl-start { + align-items: flex-start !important; + } + .align-items-xl-end { + align-items: flex-end !important; + } + .align-items-xl-center { + align-items: center !important; + } + .align-items-xl-baseline { + align-items: baseline !important; + } + .align-items-xl-stretch { + align-items: stretch !important; + } + .align-content-xl-start { + align-content: flex-start !important; + } + .align-content-xl-end { + align-content: flex-end !important; + } + .align-content-xl-center { + align-content: center !important; + } + .align-content-xl-between { + align-content: space-between !important; + } + .align-content-xl-around { + align-content: space-around !important; + } + .align-content-xl-stretch { + align-content: stretch !important; + } + .align-self-xl-auto { + align-self: auto !important; + } + .align-self-xl-start { + align-self: flex-start !important; + } + .align-self-xl-end { + align-self: flex-end !important; + } + .align-self-xl-center { + align-self: center !important; + } + .align-self-xl-baseline { + align-self: baseline !important; + } + .align-self-xl-stretch { + align-self: stretch !important; + } + .order-xl-first { + order: -1 !important; + } + .order-xl-0 { + order: 0 !important; + } + .order-xl-1 { + order: 1 !important; + } + .order-xl-2 { + order: 2 !important; + } + .order-xl-3 { + order: 3 !important; + } + .order-xl-4 { + order: 4 !important; + } + .order-xl-5 { + order: 5 !important; + } + .order-xl-last { + order: 6 !important; + } + .m-xl-0 { + margin: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .m-xl-4 { + margin: 1.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mx-xl-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-xl-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-xl-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-xl-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-xl-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-xl-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-xl-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-xl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xl-0 { + margin-top: 0 !important; + } + .mt-xl-1 { + margin-top: 0.25rem !important; + } + .mt-xl-2 { + margin-top: 0.5rem !important; + } + .mt-xl-3 { + margin-top: 1rem !important; + } + .mt-xl-4 { + margin-top: 1.5rem !important; + } + .mt-xl-5 { + margin-top: 3rem !important; + } + .mt-xl-auto { + margin-top: auto !important; + } + .me-xl-0 { + margin-left: 0 !important; + } + .me-xl-1 { + margin-left: 0.25rem !important; + } + .me-xl-2 { + margin-left: 0.5rem !important; + } + .me-xl-3 { + margin-left: 1rem !important; + } + .me-xl-4 { + margin-left: 1.5rem !important; + } + .me-xl-5 { + margin-left: 3rem !important; + } + .me-xl-auto { + margin-left: auto !important; + } + .mb-xl-0 { + margin-bottom: 0 !important; + } + .mb-xl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xl-3 { + margin-bottom: 1rem !important; + } + .mb-xl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xl-5 { + margin-bottom: 3rem !important; + } + .mb-xl-auto { + margin-bottom: auto !important; + } + .ms-xl-0 { + margin-right: 0 !important; + } + .ms-xl-1 { + margin-right: 0.25rem !important; + } + .ms-xl-2 { + margin-right: 0.5rem !important; + } + .ms-xl-3 { + margin-right: 1rem !important; + } + .ms-xl-4 { + margin-right: 1.5rem !important; + } + .ms-xl-5 { + margin-right: 3rem !important; + } + .ms-xl-auto { + margin-right: auto !important; + } + .p-xl-0 { + padding: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .p-xl-4 { + padding: 1.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .px-xl-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-xl-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-xl-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-xl-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-xl-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-xl-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-xl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xl-0 { + padding-top: 0 !important; + } + .pt-xl-1 { + padding-top: 0.25rem !important; + } + .pt-xl-2 { + padding-top: 0.5rem !important; + } + .pt-xl-3 { + padding-top: 1rem !important; + } + .pt-xl-4 { + padding-top: 1.5rem !important; + } + .pt-xl-5 { + padding-top: 3rem !important; + } + .pe-xl-0 { + padding-left: 0 !important; + } + .pe-xl-1 { + padding-left: 0.25rem !important; + } + .pe-xl-2 { + padding-left: 0.5rem !important; + } + .pe-xl-3 { + padding-left: 1rem !important; + } + .pe-xl-4 { + padding-left: 1.5rem !important; + } + .pe-xl-5 { + padding-left: 3rem !important; + } + .pb-xl-0 { + padding-bottom: 0 !important; + } + .pb-xl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xl-3 { + padding-bottom: 1rem !important; + } + .pb-xl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xl-5 { + padding-bottom: 3rem !important; + } + .ps-xl-0 { + padding-right: 0 !important; + } + .ps-xl-1 { + padding-right: 0.25rem !important; + } + .ps-xl-2 { + padding-right: 0.5rem !important; + } + .ps-xl-3 { + padding-right: 1rem !important; + } + .ps-xl-4 { + padding-right: 1.5rem !important; + } + .ps-xl-5 { + padding-right: 3rem !important; + } +} +@media (min-width: 1400px) { + .d-xxl-inline { + display: inline !important; + } + .d-xxl-inline-block { + display: inline-block !important; + } + .d-xxl-block { + display: block !important; + } + .d-xxl-grid { + display: grid !important; + } + .d-xxl-inline-grid { + display: inline-grid !important; + } + .d-xxl-table { + display: table !important; + } + .d-xxl-table-row { + display: table-row !important; + } + .d-xxl-table-cell { + display: table-cell !important; + } + .d-xxl-flex { + display: flex !important; + } + .d-xxl-inline-flex { + display: inline-flex !important; + } + .d-xxl-none { + display: none !important; + } + .flex-xxl-fill { + flex: 1 1 auto !important; + } + .flex-xxl-row { + flex-direction: row !important; + } + .flex-xxl-column { + flex-direction: column !important; + } + .flex-xxl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xxl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xxl-grow-0 { + flex-grow: 0 !important; + } + .flex-xxl-grow-1 { + flex-grow: 1 !important; + } + .flex-xxl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xxl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xxl-wrap { + flex-wrap: wrap !important; + } + .flex-xxl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xxl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-xxl-start { + justify-content: flex-start !important; + } + .justify-content-xxl-end { + justify-content: flex-end !important; + } + .justify-content-xxl-center { + justify-content: center !important; + } + .justify-content-xxl-between { + justify-content: space-between !important; + } + .justify-content-xxl-around { + justify-content: space-around !important; + } + .justify-content-xxl-evenly { + justify-content: space-evenly !important; + } + .align-items-xxl-start { + align-items: flex-start !important; + } + .align-items-xxl-end { + align-items: flex-end !important; + } + .align-items-xxl-center { + align-items: center !important; + } + .align-items-xxl-baseline { + align-items: baseline !important; + } + .align-items-xxl-stretch { + align-items: stretch !important; + } + .align-content-xxl-start { + align-content: flex-start !important; + } + .align-content-xxl-end { + align-content: flex-end !important; + } + .align-content-xxl-center { + align-content: center !important; + } + .align-content-xxl-between { + align-content: space-between !important; + } + .align-content-xxl-around { + align-content: space-around !important; + } + .align-content-xxl-stretch { + align-content: stretch !important; + } + .align-self-xxl-auto { + align-self: auto !important; + } + .align-self-xxl-start { + align-self: flex-start !important; + } + .align-self-xxl-end { + align-self: flex-end !important; + } + .align-self-xxl-center { + align-self: center !important; + } + .align-self-xxl-baseline { + align-self: baseline !important; + } + .align-self-xxl-stretch { + align-self: stretch !important; + } + .order-xxl-first { + order: -1 !important; + } + .order-xxl-0 { + order: 0 !important; + } + .order-xxl-1 { + order: 1 !important; + } + .order-xxl-2 { + order: 2 !important; + } + .order-xxl-3 { + order: 3 !important; + } + .order-xxl-4 { + order: 4 !important; + } + .order-xxl-5 { + order: 5 !important; + } + .order-xxl-last { + order: 6 !important; + } + .m-xxl-0 { + margin: 0 !important; + } + .m-xxl-1 { + margin: 0.25rem !important; + } + .m-xxl-2 { + margin: 0.5rem !important; + } + .m-xxl-3 { + margin: 1rem !important; + } + .m-xxl-4 { + margin: 1.5rem !important; + } + .m-xxl-5 { + margin: 3rem !important; + } + .m-xxl-auto { + margin: auto !important; + } + .mx-xxl-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-xxl-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-xxl-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-xxl-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-xxl-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-xxl-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-xxl-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-xxl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xxl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xxl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xxl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xxl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xxl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xxl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xxl-0 { + margin-top: 0 !important; + } + .mt-xxl-1 { + margin-top: 0.25rem !important; + } + .mt-xxl-2 { + margin-top: 0.5rem !important; + } + .mt-xxl-3 { + margin-top: 1rem !important; + } + .mt-xxl-4 { + margin-top: 1.5rem !important; + } + .mt-xxl-5 { + margin-top: 3rem !important; + } + .mt-xxl-auto { + margin-top: auto !important; + } + .me-xxl-0 { + margin-left: 0 !important; + } + .me-xxl-1 { + margin-left: 0.25rem !important; + } + .me-xxl-2 { + margin-left: 0.5rem !important; + } + .me-xxl-3 { + margin-left: 1rem !important; + } + .me-xxl-4 { + margin-left: 1.5rem !important; + } + .me-xxl-5 { + margin-left: 3rem !important; + } + .me-xxl-auto { + margin-left: auto !important; + } + .mb-xxl-0 { + margin-bottom: 0 !important; + } + .mb-xxl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xxl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xxl-3 { + margin-bottom: 1rem !important; + } + .mb-xxl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xxl-5 { + margin-bottom: 3rem !important; + } + .mb-xxl-auto { + margin-bottom: auto !important; + } + .ms-xxl-0 { + margin-right: 0 !important; + } + .ms-xxl-1 { + margin-right: 0.25rem !important; + } + .ms-xxl-2 { + margin-right: 0.5rem !important; + } + .ms-xxl-3 { + margin-right: 1rem !important; + } + .ms-xxl-4 { + margin-right: 1.5rem !important; + } + .ms-xxl-5 { + margin-right: 3rem !important; + } + .ms-xxl-auto { + margin-right: auto !important; + } + .p-xxl-0 { + padding: 0 !important; + } + .p-xxl-1 { + padding: 0.25rem !important; + } + .p-xxl-2 { + padding: 0.5rem !important; + } + .p-xxl-3 { + padding: 1rem !important; + } + .p-xxl-4 { + padding: 1.5rem !important; + } + .p-xxl-5 { + padding: 3rem !important; + } + .px-xxl-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-xxl-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-xxl-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-xxl-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-xxl-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-xxl-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-xxl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xxl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xxl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xxl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xxl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xxl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xxl-0 { + padding-top: 0 !important; + } + .pt-xxl-1 { + padding-top: 0.25rem !important; + } + .pt-xxl-2 { + padding-top: 0.5rem !important; + } + .pt-xxl-3 { + padding-top: 1rem !important; + } + .pt-xxl-4 { + padding-top: 1.5rem !important; + } + .pt-xxl-5 { + padding-top: 3rem !important; + } + .pe-xxl-0 { + padding-left: 0 !important; + } + .pe-xxl-1 { + padding-left: 0.25rem !important; + } + .pe-xxl-2 { + padding-left: 0.5rem !important; + } + .pe-xxl-3 { + padding-left: 1rem !important; + } + .pe-xxl-4 { + padding-left: 1.5rem !important; + } + .pe-xxl-5 { + padding-left: 3rem !important; + } + .pb-xxl-0 { + padding-bottom: 0 !important; + } + .pb-xxl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xxl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xxl-3 { + padding-bottom: 1rem !important; + } + .pb-xxl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xxl-5 { + padding-bottom: 3rem !important; + } + .ps-xxl-0 { + padding-right: 0 !important; + } + .ps-xxl-1 { + padding-right: 0.25rem !important; + } + .ps-xxl-2 { + padding-right: 0.5rem !important; + } + .ps-xxl-3 { + padding-right: 1rem !important; + } + .ps-xxl-4 { + padding-right: 1.5rem !important; + } + .ps-xxl-5 { + padding-right: 3rem !important; + } +} +@media print { + .d-print-inline { + display: inline !important; + } + .d-print-inline-block { + display: inline-block !important; + } + .d-print-block { + display: block !important; + } + .d-print-grid { + display: grid !important; + } + .d-print-inline-grid { + display: inline-grid !important; + } + .d-print-table { + display: table !important; + } + .d-print-table-row { + display: table-row !important; + } + .d-print-table-cell { + display: table-cell !important; + } + .d-print-flex { + display: flex !important; + } + .d-print-inline-flex { + display: inline-flex !important; + } + .d-print-none { + display: none !important; + } +} +/*# sourceMappingURL=bootstrap-grid.rtl.css.map */ \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.rtl.css.map b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.rtl.css.map new file mode 100644 index 000000000..8df43cfcc --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.rtl.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","bootstrap-grid.css","../../scss/mixins/_breakpoints.scss","../../scss/_variables.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"AACE;;;;EAAA;ACKA;;;;;;;ECHA,qBAAA;EACA,gBAAA;EACA,WAAA;EACA,4CAAA;EACA,6CAAA;EACA,iBAAA;EACA,kBAAA;ACUF;;AC4CI;EH5CE;IACE,gBIkee;EF9drB;AACF;ACsCI;EH5CE;IACE,gBIkee;EFzdrB;AACF;ACiCI;EH5CE;IACE,gBIkee;EFpdrB;AACF;AC4BI;EH5CE;IACE,iBIkee;EF/crB;AACF;ACuBI;EH5CE;IACE,iBIkee;EF1crB;AACF;AGzCA;EAEI,qBAAA;EAAA,yBAAA;EAAA,yBAAA;EAAA,yBAAA;EAAA,0BAAA;EAAA,2BAAA;AH+CJ;;AG1CE;ECNA,qBAAA;EACA,gBAAA;EACA,aAAA;EACA,eAAA;EAEA,yCAAA;EACA,4CAAA;EACA,6CAAA;AJmDF;AGjDI;ECGF,sBAAA;EAIA,cAAA;EACA,WAAA;EACA,eAAA;EACA,4CAAA;EACA,6CAAA;EACA,8BAAA;AJ8CF;;AICM;EACE,YAAA;AJER;;AICM;EApCJ,cAAA;EACA,WAAA;AJuCF;;AIzBE;EACE,cAAA;EACA,WAAA;AJ4BJ;;AI9BE;EACE,cAAA;EACA,UAAA;AJiCJ;;AInCE;EACE,cAAA;EACA,mBAAA;AJsCJ;;AIxCE;EACE,cAAA;EACA,UAAA;AJ2CJ;;AI7CE;EACE,cAAA;EACA,UAAA;AJgDJ;;AIlDE;EACE,cAAA;EACA,mBAAA;AJqDJ;;AItBM;EAhDJ,cAAA;EACA,WAAA;AJ0EF;;AIrBU;EAhEN,cAAA;EACA,kBAAA;AJyFJ;;AI1BU;EAhEN,cAAA;EACA,mBAAA;AJ8FJ;;AI/BU;EAhEN,cAAA;EACA,UAAA;AJmGJ;;AIpCU;EAhEN,cAAA;EACA,mBAAA;AJwGJ;;AIzCU;EAhEN,cAAA;EACA,mBAAA;AJ6GJ;;AI9CU;EAhEN,cAAA;EACA,UAAA;AJkHJ;;AInDU;EAhEN,cAAA;EACA,mBAAA;AJuHJ;;AIxDU;EAhEN,cAAA;EACA,mBAAA;AJ4HJ;;AI7DU;EAhEN,cAAA;EACA,UAAA;AJiIJ;;AIlEU;EAhEN,cAAA;EACA,mBAAA;AJsIJ;;AIvEU;EAhEN,cAAA;EACA,mBAAA;AJ2IJ;;AI5EU;EAhEN,cAAA;EACA,WAAA;AJgJJ;;AIzEY;EAxDV,yBAAA;AJqIF;;AI7EY;EAxDV,0BAAA;AJyIF;;AIjFY;EAxDV,iBAAA;AJ6IF;;AIrFY;EAxDV,0BAAA;AJiJF;;AIzFY;EAxDV,0BAAA;AJqJF;;AI7FY;EAxDV,iBAAA;AJyJF;;AIjGY;EAxDV,0BAAA;AJ6JF;;AIrGY;EAxDV,0BAAA;AJiKF;;AIzGY;EAxDV,iBAAA;AJqKF;;AI7GY;EAxDV,0BAAA;AJyKF;;AIjHY;EAxDV,0BAAA;AJ6KF;;AI1GQ;;EAEE,gBAAA;AJ6GV;;AI1GQ;;EAEE,gBAAA;AJ6GV;;AIpHQ;;EAEE,sBAAA;AJuHV;;AIpHQ;;EAEE,sBAAA;AJuHV;;AI9HQ;;EAEE,qBAAA;AJiIV;;AI9HQ;;EAEE,qBAAA;AJiIV;;AIxIQ;;EAEE,mBAAA;AJ2IV;;AIxIQ;;EAEE,mBAAA;AJ2IV;;AIlJQ;;EAEE,qBAAA;AJqJV;;AIlJQ;;EAEE,qBAAA;AJqJV;;AI5JQ;;EAEE,mBAAA;AJ+JV;;AI5JQ;;EAEE,mBAAA;AJ+JV;;ACzNI;EGUE;IACE,YAAA;EJmNN;EIhNI;IApCJ,cAAA;IACA,WAAA;EJuPA;EIzOA;IACE,cAAA;IACA,WAAA;EJ2OF;EI7OA;IACE,cAAA;IACA,UAAA;EJ+OF;EIjPA;IACE,cAAA;IACA,mBAAA;EJmPF;EIrPA;IACE,cAAA;IACA,UAAA;EJuPF;EIzPA;IACE,cAAA;IACA,UAAA;EJ2PF;EI7PA;IACE,cAAA;IACA,mBAAA;EJ+PF;EIhOI;IAhDJ,cAAA;IACA,WAAA;EJmRA;EI9NQ;IAhEN,cAAA;IACA,kBAAA;EJiSF;EIlOQ;IAhEN,cAAA;IACA,mBAAA;EJqSF;EItOQ;IAhEN,cAAA;IACA,UAAA;EJySF;EI1OQ;IAhEN,cAAA;IACA,mBAAA;EJ6SF;EI9OQ;IAhEN,cAAA;IACA,mBAAA;EJiTF;EIlPQ;IAhEN,cAAA;IACA,UAAA;EJqTF;EItPQ;IAhEN,cAAA;IACA,mBAAA;EJyTF;EI1PQ;IAhEN,cAAA;IACA,mBAAA;EJ6TF;EI9PQ;IAhEN,cAAA;IACA,UAAA;EJiUF;EIlQQ;IAhEN,cAAA;IACA,mBAAA;EJqUF;EItQQ;IAhEN,cAAA;IACA,mBAAA;EJyUF;EI1QQ;IAhEN,cAAA;IACA,WAAA;EJ6UF;EItQU;IAxDV,eAAA;EJiUA;EIzQU;IAxDV,yBAAA;EJoUA;EI5QU;IAxDV,0BAAA;EJuUA;EI/QU;IAxDV,iBAAA;EJ0UA;EIlRU;IAxDV,0BAAA;EJ6UA;EIrRU;IAxDV,0BAAA;EJgVA;EIxRU;IAxDV,iBAAA;EJmVA;EI3RU;IAxDV,0BAAA;EJsVA;EI9RU;IAxDV,0BAAA;EJyVA;EIjSU;IAxDV,iBAAA;EJ4VA;EIpSU;IAxDV,0BAAA;EJ+VA;EIvSU;IAxDV,0BAAA;EJkWA;EI/RM;;IAEE,gBAAA;EJiSR;EI9RM;;IAEE,gBAAA;EJgSR;EIvSM;;IAEE,sBAAA;EJySR;EItSM;;IAEE,sBAAA;EJwSR;EI/SM;;IAEE,qBAAA;EJiTR;EI9SM;;IAEE,qBAAA;EJgTR;EIvTM;;IAEE,mBAAA;EJyTR;EItTM;;IAEE,mBAAA;EJwTR;EI/TM;;IAEE,qBAAA;EJiUR;EI9TM;;IAEE,qBAAA;EJgUR;EIvUM;;IAEE,mBAAA;EJyUR;EItUM;;IAEE,mBAAA;EJwUR;AACF;ACnYI;EGUE;IACE,YAAA;EJ4XN;EIzXI;IApCJ,cAAA;IACA,WAAA;EJgaA;EIlZA;IACE,cAAA;IACA,WAAA;EJoZF;EItZA;IACE,cAAA;IACA,UAAA;EJwZF;EI1ZA;IACE,cAAA;IACA,mBAAA;EJ4ZF;EI9ZA;IACE,cAAA;IACA,UAAA;EJgaF;EIlaA;IACE,cAAA;IACA,UAAA;EJoaF;EItaA;IACE,cAAA;IACA,mBAAA;EJwaF;EIzYI;IAhDJ,cAAA;IACA,WAAA;EJ4bA;EIvYQ;IAhEN,cAAA;IACA,kBAAA;EJ0cF;EI3YQ;IAhEN,cAAA;IACA,mBAAA;EJ8cF;EI/YQ;IAhEN,cAAA;IACA,UAAA;EJkdF;EInZQ;IAhEN,cAAA;IACA,mBAAA;EJsdF;EIvZQ;IAhEN,cAAA;IACA,mBAAA;EJ0dF;EI3ZQ;IAhEN,cAAA;IACA,UAAA;EJ8dF;EI/ZQ;IAhEN,cAAA;IACA,mBAAA;EJkeF;EInaQ;IAhEN,cAAA;IACA,mBAAA;EJseF;EIvaQ;IAhEN,cAAA;IACA,UAAA;EJ0eF;EI3aQ;IAhEN,cAAA;IACA,mBAAA;EJ8eF;EI/aQ;IAhEN,cAAA;IACA,mBAAA;EJkfF;EInbQ;IAhEN,cAAA;IACA,WAAA;EJsfF;EI/aU;IAxDV,eAAA;EJ0eA;EIlbU;IAxDV,yBAAA;EJ6eA;EIrbU;IAxDV,0BAAA;EJgfA;EIxbU;IAxDV,iBAAA;EJmfA;EI3bU;IAxDV,0BAAA;EJsfA;EI9bU;IAxDV,0BAAA;EJyfA;EIjcU;IAxDV,iBAAA;EJ4fA;EIpcU;IAxDV,0BAAA;EJ+fA;EIvcU;IAxDV,0BAAA;EJkgBA;EI1cU;IAxDV,iBAAA;EJqgBA;EI7cU;IAxDV,0BAAA;EJwgBA;EIhdU;IAxDV,0BAAA;EJ2gBA;EIxcM;;IAEE,gBAAA;EJ0cR;EIvcM;;IAEE,gBAAA;EJycR;EIhdM;;IAEE,sBAAA;EJkdR;EI/cM;;IAEE,sBAAA;EJidR;EIxdM;;IAEE,qBAAA;EJ0dR;EIvdM;;IAEE,qBAAA;EJydR;EIheM;;IAEE,mBAAA;EJkeR;EI/dM;;IAEE,mBAAA;EJieR;EIxeM;;IAEE,qBAAA;EJ0eR;EIveM;;IAEE,qBAAA;EJyeR;EIhfM;;IAEE,mBAAA;EJkfR;EI/eM;;IAEE,mBAAA;EJifR;AACF;AC5iBI;EGUE;IACE,YAAA;EJqiBN;EIliBI;IApCJ,cAAA;IACA,WAAA;EJykBA;EI3jBA;IACE,cAAA;IACA,WAAA;EJ6jBF;EI/jBA;IACE,cAAA;IACA,UAAA;EJikBF;EInkBA;IACE,cAAA;IACA,mBAAA;EJqkBF;EIvkBA;IACE,cAAA;IACA,UAAA;EJykBF;EI3kBA;IACE,cAAA;IACA,UAAA;EJ6kBF;EI/kBA;IACE,cAAA;IACA,mBAAA;EJilBF;EIljBI;IAhDJ,cAAA;IACA,WAAA;EJqmBA;EIhjBQ;IAhEN,cAAA;IACA,kBAAA;EJmnBF;EIpjBQ;IAhEN,cAAA;IACA,mBAAA;EJunBF;EIxjBQ;IAhEN,cAAA;IACA,UAAA;EJ2nBF;EI5jBQ;IAhEN,cAAA;IACA,mBAAA;EJ+nBF;EIhkBQ;IAhEN,cAAA;IACA,mBAAA;EJmoBF;EIpkBQ;IAhEN,cAAA;IACA,UAAA;EJuoBF;EIxkBQ;IAhEN,cAAA;IACA,mBAAA;EJ2oBF;EI5kBQ;IAhEN,cAAA;IACA,mBAAA;EJ+oBF;EIhlBQ;IAhEN,cAAA;IACA,UAAA;EJmpBF;EIplBQ;IAhEN,cAAA;IACA,mBAAA;EJupBF;EIxlBQ;IAhEN,cAAA;IACA,mBAAA;EJ2pBF;EI5lBQ;IAhEN,cAAA;IACA,WAAA;EJ+pBF;EIxlBU;IAxDV,eAAA;EJmpBA;EI3lBU;IAxDV,yBAAA;EJspBA;EI9lBU;IAxDV,0BAAA;EJypBA;EIjmBU;IAxDV,iBAAA;EJ4pBA;EIpmBU;IAxDV,0BAAA;EJ+pBA;EIvmBU;IAxDV,0BAAA;EJkqBA;EI1mBU;IAxDV,iBAAA;EJqqBA;EI7mBU;IAxDV,0BAAA;EJwqBA;EIhnBU;IAxDV,0BAAA;EJ2qBA;EInnBU;IAxDV,iBAAA;EJ8qBA;EItnBU;IAxDV,0BAAA;EJirBA;EIznBU;IAxDV,0BAAA;EJorBA;EIjnBM;;IAEE,gBAAA;EJmnBR;EIhnBM;;IAEE,gBAAA;EJknBR;EIznBM;;IAEE,sBAAA;EJ2nBR;EIxnBM;;IAEE,sBAAA;EJ0nBR;EIjoBM;;IAEE,qBAAA;EJmoBR;EIhoBM;;IAEE,qBAAA;EJkoBR;EIzoBM;;IAEE,mBAAA;EJ2oBR;EIxoBM;;IAEE,mBAAA;EJ0oBR;EIjpBM;;IAEE,qBAAA;EJmpBR;EIhpBM;;IAEE,qBAAA;EJkpBR;EIzpBM;;IAEE,mBAAA;EJ2pBR;EIxpBM;;IAEE,mBAAA;EJ0pBR;AACF;ACrtBI;EGUE;IACE,YAAA;EJ8sBN;EI3sBI;IApCJ,cAAA;IACA,WAAA;EJkvBA;EIpuBA;IACE,cAAA;IACA,WAAA;EJsuBF;EIxuBA;IACE,cAAA;IACA,UAAA;EJ0uBF;EI5uBA;IACE,cAAA;IACA,mBAAA;EJ8uBF;EIhvBA;IACE,cAAA;IACA,UAAA;EJkvBF;EIpvBA;IACE,cAAA;IACA,UAAA;EJsvBF;EIxvBA;IACE,cAAA;IACA,mBAAA;EJ0vBF;EI3tBI;IAhDJ,cAAA;IACA,WAAA;EJ8wBA;EIztBQ;IAhEN,cAAA;IACA,kBAAA;EJ4xBF;EI7tBQ;IAhEN,cAAA;IACA,mBAAA;EJgyBF;EIjuBQ;IAhEN,cAAA;IACA,UAAA;EJoyBF;EIruBQ;IAhEN,cAAA;IACA,mBAAA;EJwyBF;EIzuBQ;IAhEN,cAAA;IACA,mBAAA;EJ4yBF;EI7uBQ;IAhEN,cAAA;IACA,UAAA;EJgzBF;EIjvBQ;IAhEN,cAAA;IACA,mBAAA;EJozBF;EIrvBQ;IAhEN,cAAA;IACA,mBAAA;EJwzBF;EIzvBQ;IAhEN,cAAA;IACA,UAAA;EJ4zBF;EI7vBQ;IAhEN,cAAA;IACA,mBAAA;EJg0BF;EIjwBQ;IAhEN,cAAA;IACA,mBAAA;EJo0BF;EIrwBQ;IAhEN,cAAA;IACA,WAAA;EJw0BF;EIjwBU;IAxDV,eAAA;EJ4zBA;EIpwBU;IAxDV,yBAAA;EJ+zBA;EIvwBU;IAxDV,0BAAA;EJk0BA;EI1wBU;IAxDV,iBAAA;EJq0BA;EI7wBU;IAxDV,0BAAA;EJw0BA;EIhxBU;IAxDV,0BAAA;EJ20BA;EInxBU;IAxDV,iBAAA;EJ80BA;EItxBU;IAxDV,0BAAA;EJi1BA;EIzxBU;IAxDV,0BAAA;EJo1BA;EI5xBU;IAxDV,iBAAA;EJu1BA;EI/xBU;IAxDV,0BAAA;EJ01BA;EIlyBU;IAxDV,0BAAA;EJ61BA;EI1xBM;;IAEE,gBAAA;EJ4xBR;EIzxBM;;IAEE,gBAAA;EJ2xBR;EIlyBM;;IAEE,sBAAA;EJoyBR;EIjyBM;;IAEE,sBAAA;EJmyBR;EI1yBM;;IAEE,qBAAA;EJ4yBR;EIzyBM;;IAEE,qBAAA;EJ2yBR;EIlzBM;;IAEE,mBAAA;EJozBR;EIjzBM;;IAEE,mBAAA;EJmzBR;EI1zBM;;IAEE,qBAAA;EJ4zBR;EIzzBM;;IAEE,qBAAA;EJ2zBR;EIl0BM;;IAEE,mBAAA;EJo0BR;EIj0BM;;IAEE,mBAAA;EJm0BR;AACF;AC93BI;EGUE;IACE,YAAA;EJu3BN;EIp3BI;IApCJ,cAAA;IACA,WAAA;EJ25BA;EI74BA;IACE,cAAA;IACA,WAAA;EJ+4BF;EIj5BA;IACE,cAAA;IACA,UAAA;EJm5BF;EIr5BA;IACE,cAAA;IACA,mBAAA;EJu5BF;EIz5BA;IACE,cAAA;IACA,UAAA;EJ25BF;EI75BA;IACE,cAAA;IACA,UAAA;EJ+5BF;EIj6BA;IACE,cAAA;IACA,mBAAA;EJm6BF;EIp4BI;IAhDJ,cAAA;IACA,WAAA;EJu7BA;EIl4BQ;IAhEN,cAAA;IACA,kBAAA;EJq8BF;EIt4BQ;IAhEN,cAAA;IACA,mBAAA;EJy8BF;EI14BQ;IAhEN,cAAA;IACA,UAAA;EJ68BF;EI94BQ;IAhEN,cAAA;IACA,mBAAA;EJi9BF;EIl5BQ;IAhEN,cAAA;IACA,mBAAA;EJq9BF;EIt5BQ;IAhEN,cAAA;IACA,UAAA;EJy9BF;EI15BQ;IAhEN,cAAA;IACA,mBAAA;EJ69BF;EI95BQ;IAhEN,cAAA;IACA,mBAAA;EJi+BF;EIl6BQ;IAhEN,cAAA;IACA,UAAA;EJq+BF;EIt6BQ;IAhEN,cAAA;IACA,mBAAA;EJy+BF;EI16BQ;IAhEN,cAAA;IACA,mBAAA;EJ6+BF;EI96BQ;IAhEN,cAAA;IACA,WAAA;EJi/BF;EI16BU;IAxDV,eAAA;EJq+BA;EI76BU;IAxDV,yBAAA;EJw+BA;EIh7BU;IAxDV,0BAAA;EJ2+BA;EIn7BU;IAxDV,iBAAA;EJ8+BA;EIt7BU;IAxDV,0BAAA;EJi/BA;EIz7BU;IAxDV,0BAAA;EJo/BA;EI57BU;IAxDV,iBAAA;EJu/BA;EI/7BU;IAxDV,0BAAA;EJ0/BA;EIl8BU;IAxDV,0BAAA;EJ6/BA;EIr8BU;IAxDV,iBAAA;EJggCA;EIx8BU;IAxDV,0BAAA;EJmgCA;EI38BU;IAxDV,0BAAA;EJsgCA;EIn8BM;;IAEE,gBAAA;EJq8BR;EIl8BM;;IAEE,gBAAA;EJo8BR;EI38BM;;IAEE,sBAAA;EJ68BR;EI18BM;;IAEE,sBAAA;EJ48BR;EIn9BM;;IAEE,qBAAA;EJq9BR;EIl9BM;;IAEE,qBAAA;EJo9BR;EI39BM;;IAEE,mBAAA;EJ69BR;EI19BM;;IAEE,mBAAA;EJ49BR;EIn+BM;;IAEE,qBAAA;EJq+BR;EIl+BM;;IAEE,qBAAA;EJo+BR;EI3+BM;;IAEE,mBAAA;EJ6+BR;EI1+BM;;IAEE,mBAAA;EJ4+BR;AACF;AKpiCQ;EAOI,0BAAA;ALgiCZ;;AKviCQ;EAOI,gCAAA;ALoiCZ;;AK3iCQ;EAOI,yBAAA;ALwiCZ;;AK/iCQ;EAOI,wBAAA;AL4iCZ;;AKnjCQ;EAOI,+BAAA;ALgjCZ;;AKvjCQ;EAOI,yBAAA;ALojCZ;;AK3jCQ;EAOI,6BAAA;ALwjCZ;;AK/jCQ;EAOI,8BAAA;AL4jCZ;;AKnkCQ;EAOI,wBAAA;ALgkCZ;;AKvkCQ;EAOI,+BAAA;ALokCZ;;AK3kCQ;EAOI,wBAAA;ALwkCZ;;AK/kCQ;EAOI,yBAAA;AL4kCZ;;AKnlCQ;EAOI,8BAAA;ALglCZ;;AKvlCQ;EAOI,iCAAA;ALolCZ;;AK3lCQ;EAOI,sCAAA;ALwlCZ;;AK/lCQ;EAOI,yCAAA;AL4lCZ;;AKnmCQ;EAOI,uBAAA;ALgmCZ;;AKvmCQ;EAOI,uBAAA;ALomCZ;;AK3mCQ;EAOI,yBAAA;ALwmCZ;;AK/mCQ;EAOI,yBAAA;AL4mCZ;;AKnnCQ;EAOI,0BAAA;ALgnCZ;;AKvnCQ;EAOI,4BAAA;ALonCZ;;AK3nCQ;EAOI,kCAAA;ALwnCZ;;AK/nCQ;EAOI,sCAAA;AL4nCZ;;AKnoCQ;EAOI,oCAAA;ALgoCZ;;AKvoCQ;EAOI,kCAAA;ALooCZ;;AK3oCQ;EAOI,yCAAA;ALwoCZ;;AK/oCQ;EAOI,wCAAA;AL4oCZ;;AKnpCQ;EAOI,wCAAA;ALgpCZ;;AKvpCQ;EAOI,kCAAA;ALopCZ;;AK3pCQ;EAOI,gCAAA;ALwpCZ;;AK/pCQ;EAOI,8BAAA;AL4pCZ;;AKnqCQ;EAOI,gCAAA;ALgqCZ;;AKvqCQ;EAOI,+BAAA;ALoqCZ;;AK3qCQ;EAOI,oCAAA;ALwqCZ;;AK/qCQ;EAOI,kCAAA;AL4qCZ;;AKnrCQ;EAOI,gCAAA;ALgrCZ;;AKvrCQ;EAOI,uCAAA;ALorCZ;;AK3rCQ;EAOI,sCAAA;ALwrCZ;;AK/rCQ;EAOI,iCAAA;AL4rCZ;;AKnsCQ;EAOI,2BAAA;ALgsCZ;;AKvsCQ;EAOI,iCAAA;ALosCZ;;AK3sCQ;EAOI,+BAAA;ALwsCZ;;AK/sCQ;EAOI,6BAAA;AL4sCZ;;AKntCQ;EAOI,+BAAA;ALgtCZ;;AKvtCQ;EAOI,8BAAA;ALotCZ;;AK3tCQ;EAOI,oBAAA;ALwtCZ;;AK/tCQ;EAOI,mBAAA;AL4tCZ;;AKnuCQ;EAOI,mBAAA;ALguCZ;;AKvuCQ;EAOI,mBAAA;ALouCZ;;AK3uCQ;EAOI,mBAAA;ALwuCZ;;AK/uCQ;EAOI,mBAAA;AL4uCZ;;AKnvCQ;EAOI,mBAAA;ALgvCZ;;AKvvCQ;EAOI,mBAAA;ALovCZ;;AK3vCQ;EAOI,oBAAA;ALwvCZ;;AK/vCQ;EAOI,0BAAA;AL4vCZ;;AKnwCQ;EAOI,yBAAA;ALgwCZ;;AKvwCQ;EAOI,uBAAA;ALowCZ;;AK3wCQ;EAOI,yBAAA;ALwwCZ;;AK/wCQ;EAOI,uBAAA;AL4wCZ;;AKnxCQ;EAOI,uBAAA;ALgxCZ;;AKvxCQ;EAOI,yBAAA;EAAA,0BAAA;ALqxCZ;;AK5xCQ;EAOI,+BAAA;EAAA,gCAAA;AL0xCZ;;AKjyCQ;EAOI,8BAAA;EAAA,+BAAA;AL+xCZ;;AKtyCQ;EAOI,4BAAA;EAAA,6BAAA;ALoyCZ;;AK3yCQ;EAOI,8BAAA;EAAA,+BAAA;ALyyCZ;;AKhzCQ;EAOI,4BAAA;EAAA,6BAAA;AL8yCZ;;AKrzCQ;EAOI,4BAAA;EAAA,6BAAA;ALmzCZ;;AK1zCQ;EAOI,wBAAA;EAAA,2BAAA;ALwzCZ;;AK/zCQ;EAOI,8BAAA;EAAA,iCAAA;AL6zCZ;;AKp0CQ;EAOI,6BAAA;EAAA,gCAAA;ALk0CZ;;AKz0CQ;EAOI,2BAAA;EAAA,8BAAA;ALu0CZ;;AK90CQ;EAOI,6BAAA;EAAA,gCAAA;AL40CZ;;AKn1CQ;EAOI,2BAAA;EAAA,8BAAA;ALi1CZ;;AKx1CQ;EAOI,2BAAA;EAAA,8BAAA;ALs1CZ;;AK71CQ;EAOI,wBAAA;AL01CZ;;AKj2CQ;EAOI,8BAAA;AL81CZ;;AKr2CQ;EAOI,6BAAA;ALk2CZ;;AKz2CQ;EAOI,2BAAA;ALs2CZ;;AK72CQ;EAOI,6BAAA;AL02CZ;;AKj3CQ;EAOI,2BAAA;AL82CZ;;AKr3CQ;EAOI,2BAAA;ALk3CZ;;AKz3CQ;EAOI,yBAAA;ALs3CZ;;AK73CQ;EAOI,+BAAA;AL03CZ;;AKj4CQ;EAOI,8BAAA;AL83CZ;;AKr4CQ;EAOI,4BAAA;ALk4CZ;;AKz4CQ;EAOI,8BAAA;ALs4CZ;;AK74CQ;EAOI,4BAAA;AL04CZ;;AKj5CQ;EAOI,4BAAA;AL84CZ;;AKr5CQ;EAOI,2BAAA;ALk5CZ;;AKz5CQ;EAOI,iCAAA;ALs5CZ;;AK75CQ;EAOI,gCAAA;AL05CZ;;AKj6CQ;EAOI,8BAAA;AL85CZ;;AKr6CQ;EAOI,gCAAA;ALk6CZ;;AKz6CQ;EAOI,8BAAA;ALs6CZ;;AK76CQ;EAOI,8BAAA;AL06CZ;;AKj7CQ;EAOI,0BAAA;AL86CZ;;AKr7CQ;EAOI,gCAAA;ALk7CZ;;AKz7CQ;EAOI,+BAAA;ALs7CZ;;AK77CQ;EAOI,6BAAA;AL07CZ;;AKj8CQ;EAOI,+BAAA;AL87CZ;;AKr8CQ;EAOI,6BAAA;ALk8CZ;;AKz8CQ;EAOI,6BAAA;ALs8CZ;;AK78CQ;EAOI,qBAAA;AL08CZ;;AKj9CQ;EAOI,2BAAA;AL88CZ;;AKr9CQ;EAOI,0BAAA;ALk9CZ;;AKz9CQ;EAOI,wBAAA;ALs9CZ;;AK79CQ;EAOI,0BAAA;AL09CZ;;AKj+CQ;EAOI,wBAAA;AL89CZ;;AKr+CQ;EAOI,0BAAA;EAAA,2BAAA;ALm+CZ;;AK1+CQ;EAOI,gCAAA;EAAA,iCAAA;ALw+CZ;;AK/+CQ;EAOI,+BAAA;EAAA,gCAAA;AL6+CZ;;AKp/CQ;EAOI,6BAAA;EAAA,8BAAA;ALk/CZ;;AKz/CQ;EAOI,+BAAA;EAAA,gCAAA;ALu/CZ;;AK9/CQ;EAOI,6BAAA;EAAA,8BAAA;AL4/CZ;;AKngDQ;EAOI,yBAAA;EAAA,4BAAA;ALigDZ;;AKxgDQ;EAOI,+BAAA;EAAA,kCAAA;ALsgDZ;;AK7gDQ;EAOI,8BAAA;EAAA,iCAAA;AL2gDZ;;AKlhDQ;EAOI,4BAAA;EAAA,+BAAA;ALghDZ;;AKvhDQ;EAOI,8BAAA;EAAA,iCAAA;ALqhDZ;;AK5hDQ;EAOI,4BAAA;EAAA,+BAAA;AL0hDZ;;AKjiDQ;EAOI,yBAAA;AL8hDZ;;AKriDQ;EAOI,+BAAA;ALkiDZ;;AKziDQ;EAOI,8BAAA;ALsiDZ;;AK7iDQ;EAOI,4BAAA;AL0iDZ;;AKjjDQ;EAOI,8BAAA;AL8iDZ;;AKrjDQ;EAOI,4BAAA;ALkjDZ;;AKzjDQ;EAOI,0BAAA;ALsjDZ;;AK7jDQ;EAOI,gCAAA;AL0jDZ;;AKjkDQ;EAOI,+BAAA;AL8jDZ;;AKrkDQ;EAOI,6BAAA;ALkkDZ;;AKzkDQ;EAOI,+BAAA;ALskDZ;;AK7kDQ;EAOI,6BAAA;AL0kDZ;;AKjlDQ;EAOI,4BAAA;AL8kDZ;;AKrlDQ;EAOI,kCAAA;ALklDZ;;AKzlDQ;EAOI,iCAAA;ALslDZ;;AK7lDQ;EAOI,+BAAA;AL0lDZ;;AKjmDQ;EAOI,iCAAA;AL8lDZ;;AKrmDQ;EAOI,+BAAA;ALkmDZ;;AKzmDQ;EAOI,2BAAA;ALsmDZ;;AK7mDQ;EAOI,iCAAA;AL0mDZ;;AKjnDQ;EAOI,gCAAA;AL8mDZ;;AKrnDQ;EAOI,8BAAA;ALknDZ;;AKznDQ;EAOI,gCAAA;ALsnDZ;;AK7nDQ;EAOI,8BAAA;AL0nDZ;;ACpoDI;EIGI;IAOI,0BAAA;EL+nDV;EKtoDM;IAOI,gCAAA;ELkoDV;EKzoDM;IAOI,yBAAA;ELqoDV;EK5oDM;IAOI,wBAAA;ELwoDV;EK/oDM;IAOI,+BAAA;EL2oDV;EKlpDM;IAOI,yBAAA;EL8oDV;EKrpDM;IAOI,6BAAA;ELipDV;EKxpDM;IAOI,8BAAA;ELopDV;EK3pDM;IAOI,wBAAA;ELupDV;EK9pDM;IAOI,+BAAA;EL0pDV;EKjqDM;IAOI,wBAAA;EL6pDV;EKpqDM;IAOI,yBAAA;ELgqDV;EKvqDM;IAOI,8BAAA;ELmqDV;EK1qDM;IAOI,iCAAA;ELsqDV;EK7qDM;IAOI,sCAAA;ELyqDV;EKhrDM;IAOI,yCAAA;EL4qDV;EKnrDM;IAOI,uBAAA;EL+qDV;EKtrDM;IAOI,uBAAA;ELkrDV;EKzrDM;IAOI,yBAAA;ELqrDV;EK5rDM;IAOI,yBAAA;ELwrDV;EK/rDM;IAOI,0BAAA;EL2rDV;EKlsDM;IAOI,4BAAA;EL8rDV;EKrsDM;IAOI,kCAAA;ELisDV;EKxsDM;IAOI,sCAAA;ELosDV;EK3sDM;IAOI,oCAAA;ELusDV;EK9sDM;IAOI,kCAAA;EL0sDV;EKjtDM;IAOI,yCAAA;EL6sDV;EKptDM;IAOI,wCAAA;ELgtDV;EKvtDM;IAOI,wCAAA;ELmtDV;EK1tDM;IAOI,kCAAA;ELstDV;EK7tDM;IAOI,gCAAA;ELytDV;EKhuDM;IAOI,8BAAA;EL4tDV;EKnuDM;IAOI,gCAAA;EL+tDV;EKtuDM;IAOI,+BAAA;ELkuDV;EKzuDM;IAOI,oCAAA;ELquDV;EK5uDM;IAOI,kCAAA;ELwuDV;EK/uDM;IAOI,gCAAA;EL2uDV;EKlvDM;IAOI,uCAAA;EL8uDV;EKrvDM;IAOI,sCAAA;ELivDV;EKxvDM;IAOI,iCAAA;ELovDV;EK3vDM;IAOI,2BAAA;ELuvDV;EK9vDM;IAOI,iCAAA;EL0vDV;EKjwDM;IAOI,+BAAA;EL6vDV;EKpwDM;IAOI,6BAAA;ELgwDV;EKvwDM;IAOI,+BAAA;ELmwDV;EK1wDM;IAOI,8BAAA;ELswDV;EK7wDM;IAOI,oBAAA;ELywDV;EKhxDM;IAOI,mBAAA;EL4wDV;EKnxDM;IAOI,mBAAA;EL+wDV;EKtxDM;IAOI,mBAAA;ELkxDV;EKzxDM;IAOI,mBAAA;ELqxDV;EK5xDM;IAOI,mBAAA;ELwxDV;EK/xDM;IAOI,mBAAA;EL2xDV;EKlyDM;IAOI,mBAAA;EL8xDV;EKryDM;IAOI,oBAAA;ELiyDV;EKxyDM;IAOI,0BAAA;ELoyDV;EK3yDM;IAOI,yBAAA;ELuyDV;EK9yDM;IAOI,uBAAA;EL0yDV;EKjzDM;IAOI,yBAAA;EL6yDV;EKpzDM;IAOI,uBAAA;ELgzDV;EKvzDM;IAOI,uBAAA;ELmzDV;EK1zDM;IAOI,yBAAA;IAAA,0BAAA;ELuzDV;EK9zDM;IAOI,+BAAA;IAAA,gCAAA;EL2zDV;EKl0DM;IAOI,8BAAA;IAAA,+BAAA;EL+zDV;EKt0DM;IAOI,4BAAA;IAAA,6BAAA;ELm0DV;EK10DM;IAOI,8BAAA;IAAA,+BAAA;ELu0DV;EK90DM;IAOI,4BAAA;IAAA,6BAAA;EL20DV;EKl1DM;IAOI,4BAAA;IAAA,6BAAA;EL+0DV;EKt1DM;IAOI,wBAAA;IAAA,2BAAA;ELm1DV;EK11DM;IAOI,8BAAA;IAAA,iCAAA;ELu1DV;EK91DM;IAOI,6BAAA;IAAA,gCAAA;EL21DV;EKl2DM;IAOI,2BAAA;IAAA,8BAAA;EL+1DV;EKt2DM;IAOI,6BAAA;IAAA,gCAAA;ELm2DV;EK12DM;IAOI,2BAAA;IAAA,8BAAA;ELu2DV;EK92DM;IAOI,2BAAA;IAAA,8BAAA;EL22DV;EKl3DM;IAOI,wBAAA;EL82DV;EKr3DM;IAOI,8BAAA;ELi3DV;EKx3DM;IAOI,6BAAA;ELo3DV;EK33DM;IAOI,2BAAA;ELu3DV;EK93DM;IAOI,6BAAA;EL03DV;EKj4DM;IAOI,2BAAA;EL63DV;EKp4DM;IAOI,2BAAA;ELg4DV;EKv4DM;IAOI,yBAAA;ELm4DV;EK14DM;IAOI,+BAAA;ELs4DV;EK74DM;IAOI,8BAAA;ELy4DV;EKh5DM;IAOI,4BAAA;EL44DV;EKn5DM;IAOI,8BAAA;EL+4DV;EKt5DM;IAOI,4BAAA;ELk5DV;EKz5DM;IAOI,4BAAA;ELq5DV;EK55DM;IAOI,2BAAA;ELw5DV;EK/5DM;IAOI,iCAAA;EL25DV;EKl6DM;IAOI,gCAAA;EL85DV;EKr6DM;IAOI,8BAAA;ELi6DV;EKx6DM;IAOI,gCAAA;ELo6DV;EK36DM;IAOI,8BAAA;ELu6DV;EK96DM;IAOI,8BAAA;EL06DV;EKj7DM;IAOI,0BAAA;EL66DV;EKp7DM;IAOI,gCAAA;ELg7DV;EKv7DM;IAOI,+BAAA;ELm7DV;EK17DM;IAOI,6BAAA;ELs7DV;EK77DM;IAOI,+BAAA;ELy7DV;EKh8DM;IAOI,6BAAA;EL47DV;EKn8DM;IAOI,6BAAA;EL+7DV;EKt8DM;IAOI,qBAAA;ELk8DV;EKz8DM;IAOI,2BAAA;ELq8DV;EK58DM;IAOI,0BAAA;ELw8DV;EK/8DM;IAOI,wBAAA;EL28DV;EKl9DM;IAOI,0BAAA;EL88DV;EKr9DM;IAOI,wBAAA;ELi9DV;EKx9DM;IAOI,0BAAA;IAAA,2BAAA;ELq9DV;EK59DM;IAOI,gCAAA;IAAA,iCAAA;ELy9DV;EKh+DM;IAOI,+BAAA;IAAA,gCAAA;EL69DV;EKp+DM;IAOI,6BAAA;IAAA,8BAAA;ELi+DV;EKx+DM;IAOI,+BAAA;IAAA,gCAAA;ELq+DV;EK5+DM;IAOI,6BAAA;IAAA,8BAAA;ELy+DV;EKh/DM;IAOI,yBAAA;IAAA,4BAAA;EL6+DV;EKp/DM;IAOI,+BAAA;IAAA,kCAAA;ELi/DV;EKx/DM;IAOI,8BAAA;IAAA,iCAAA;ELq/DV;EK5/DM;IAOI,4BAAA;IAAA,+BAAA;ELy/DV;EKhgEM;IAOI,8BAAA;IAAA,iCAAA;EL6/DV;EKpgEM;IAOI,4BAAA;IAAA,+BAAA;ELigEV;EKxgEM;IAOI,yBAAA;ELogEV;EK3gEM;IAOI,+BAAA;ELugEV;EK9gEM;IAOI,8BAAA;EL0gEV;EKjhEM;IAOI,4BAAA;EL6gEV;EKphEM;IAOI,8BAAA;ELghEV;EKvhEM;IAOI,4BAAA;ELmhEV;EK1hEM;IAOI,0BAAA;ELshEV;EK7hEM;IAOI,gCAAA;ELyhEV;EKhiEM;IAOI,+BAAA;EL4hEV;EKniEM;IAOI,6BAAA;EL+hEV;EKtiEM;IAOI,+BAAA;ELkiEV;EKziEM;IAOI,6BAAA;ELqiEV;EK5iEM;IAOI,4BAAA;ELwiEV;EK/iEM;IAOI,kCAAA;EL2iEV;EKljEM;IAOI,iCAAA;EL8iEV;EKrjEM;IAOI,+BAAA;ELijEV;EKxjEM;IAOI,iCAAA;ELojEV;EK3jEM;IAOI,+BAAA;ELujEV;EK9jEM;IAOI,2BAAA;EL0jEV;EKjkEM;IAOI,iCAAA;EL6jEV;EKpkEM;IAOI,gCAAA;ELgkEV;EKvkEM;IAOI,8BAAA;ELmkEV;EK1kEM;IAOI,gCAAA;ELskEV;EK7kEM;IAOI,8BAAA;ELykEV;AACF;ACplEI;EIGI;IAOI,0BAAA;EL8kEV;EKrlEM;IAOI,gCAAA;ELilEV;EKxlEM;IAOI,yBAAA;ELolEV;EK3lEM;IAOI,wBAAA;ELulEV;EK9lEM;IAOI,+BAAA;EL0lEV;EKjmEM;IAOI,yBAAA;EL6lEV;EKpmEM;IAOI,6BAAA;ELgmEV;EKvmEM;IAOI,8BAAA;ELmmEV;EK1mEM;IAOI,wBAAA;ELsmEV;EK7mEM;IAOI,+BAAA;ELymEV;EKhnEM;IAOI,wBAAA;EL4mEV;EKnnEM;IAOI,yBAAA;EL+mEV;EKtnEM;IAOI,8BAAA;ELknEV;EKznEM;IAOI,iCAAA;ELqnEV;EK5nEM;IAOI,sCAAA;ELwnEV;EK/nEM;IAOI,yCAAA;EL2nEV;EKloEM;IAOI,uBAAA;EL8nEV;EKroEM;IAOI,uBAAA;ELioEV;EKxoEM;IAOI,yBAAA;ELooEV;EK3oEM;IAOI,yBAAA;ELuoEV;EK9oEM;IAOI,0BAAA;EL0oEV;EKjpEM;IAOI,4BAAA;EL6oEV;EKppEM;IAOI,kCAAA;ELgpEV;EKvpEM;IAOI,sCAAA;ELmpEV;EK1pEM;IAOI,oCAAA;ELspEV;EK7pEM;IAOI,kCAAA;ELypEV;EKhqEM;IAOI,yCAAA;EL4pEV;EKnqEM;IAOI,wCAAA;EL+pEV;EKtqEM;IAOI,wCAAA;ELkqEV;EKzqEM;IAOI,kCAAA;ELqqEV;EK5qEM;IAOI,gCAAA;ELwqEV;EK/qEM;IAOI,8BAAA;EL2qEV;EKlrEM;IAOI,gCAAA;EL8qEV;EKrrEM;IAOI,+BAAA;ELirEV;EKxrEM;IAOI,oCAAA;ELorEV;EK3rEM;IAOI,kCAAA;ELurEV;EK9rEM;IAOI,gCAAA;EL0rEV;EKjsEM;IAOI,uCAAA;EL6rEV;EKpsEM;IAOI,sCAAA;ELgsEV;EKvsEM;IAOI,iCAAA;ELmsEV;EK1sEM;IAOI,2BAAA;ELssEV;EK7sEM;IAOI,iCAAA;ELysEV;EKhtEM;IAOI,+BAAA;EL4sEV;EKntEM;IAOI,6BAAA;EL+sEV;EKttEM;IAOI,+BAAA;ELktEV;EKztEM;IAOI,8BAAA;ELqtEV;EK5tEM;IAOI,oBAAA;ELwtEV;EK/tEM;IAOI,mBAAA;EL2tEV;EKluEM;IAOI,mBAAA;EL8tEV;EKruEM;IAOI,mBAAA;ELiuEV;EKxuEM;IAOI,mBAAA;ELouEV;EK3uEM;IAOI,mBAAA;ELuuEV;EK9uEM;IAOI,mBAAA;EL0uEV;EKjvEM;IAOI,mBAAA;EL6uEV;EKpvEM;IAOI,oBAAA;ELgvEV;EKvvEM;IAOI,0BAAA;ELmvEV;EK1vEM;IAOI,yBAAA;ELsvEV;EK7vEM;IAOI,uBAAA;ELyvEV;EKhwEM;IAOI,yBAAA;EL4vEV;EKnwEM;IAOI,uBAAA;EL+vEV;EKtwEM;IAOI,uBAAA;ELkwEV;EKzwEM;IAOI,yBAAA;IAAA,0BAAA;ELswEV;EK7wEM;IAOI,+BAAA;IAAA,gCAAA;EL0wEV;EKjxEM;IAOI,8BAAA;IAAA,+BAAA;EL8wEV;EKrxEM;IAOI,4BAAA;IAAA,6BAAA;ELkxEV;EKzxEM;IAOI,8BAAA;IAAA,+BAAA;ELsxEV;EK7xEM;IAOI,4BAAA;IAAA,6BAAA;EL0xEV;EKjyEM;IAOI,4BAAA;IAAA,6BAAA;EL8xEV;EKryEM;IAOI,wBAAA;IAAA,2BAAA;ELkyEV;EKzyEM;IAOI,8BAAA;IAAA,iCAAA;ELsyEV;EK7yEM;IAOI,6BAAA;IAAA,gCAAA;EL0yEV;EKjzEM;IAOI,2BAAA;IAAA,8BAAA;EL8yEV;EKrzEM;IAOI,6BAAA;IAAA,gCAAA;ELkzEV;EKzzEM;IAOI,2BAAA;IAAA,8BAAA;ELszEV;EK7zEM;IAOI,2BAAA;IAAA,8BAAA;EL0zEV;EKj0EM;IAOI,wBAAA;EL6zEV;EKp0EM;IAOI,8BAAA;ELg0EV;EKv0EM;IAOI,6BAAA;ELm0EV;EK10EM;IAOI,2BAAA;ELs0EV;EK70EM;IAOI,6BAAA;ELy0EV;EKh1EM;IAOI,2BAAA;EL40EV;EKn1EM;IAOI,2BAAA;EL+0EV;EKt1EM;IAOI,yBAAA;ELk1EV;EKz1EM;IAOI,+BAAA;ELq1EV;EK51EM;IAOI,8BAAA;ELw1EV;EK/1EM;IAOI,4BAAA;EL21EV;EKl2EM;IAOI,8BAAA;EL81EV;EKr2EM;IAOI,4BAAA;ELi2EV;EKx2EM;IAOI,4BAAA;ELo2EV;EK32EM;IAOI,2BAAA;ELu2EV;EK92EM;IAOI,iCAAA;EL02EV;EKj3EM;IAOI,gCAAA;EL62EV;EKp3EM;IAOI,8BAAA;ELg3EV;EKv3EM;IAOI,gCAAA;ELm3EV;EK13EM;IAOI,8BAAA;ELs3EV;EK73EM;IAOI,8BAAA;ELy3EV;EKh4EM;IAOI,0BAAA;EL43EV;EKn4EM;IAOI,gCAAA;EL+3EV;EKt4EM;IAOI,+BAAA;ELk4EV;EKz4EM;IAOI,6BAAA;ELq4EV;EK54EM;IAOI,+BAAA;ELw4EV;EK/4EM;IAOI,6BAAA;EL24EV;EKl5EM;IAOI,6BAAA;EL84EV;EKr5EM;IAOI,qBAAA;ELi5EV;EKx5EM;IAOI,2BAAA;ELo5EV;EK35EM;IAOI,0BAAA;ELu5EV;EK95EM;IAOI,wBAAA;EL05EV;EKj6EM;IAOI,0BAAA;EL65EV;EKp6EM;IAOI,wBAAA;ELg6EV;EKv6EM;IAOI,0BAAA;IAAA,2BAAA;ELo6EV;EK36EM;IAOI,gCAAA;IAAA,iCAAA;ELw6EV;EK/6EM;IAOI,+BAAA;IAAA,gCAAA;EL46EV;EKn7EM;IAOI,6BAAA;IAAA,8BAAA;ELg7EV;EKv7EM;IAOI,+BAAA;IAAA,gCAAA;ELo7EV;EK37EM;IAOI,6BAAA;IAAA,8BAAA;ELw7EV;EK/7EM;IAOI,yBAAA;IAAA,4BAAA;EL47EV;EKn8EM;IAOI,+BAAA;IAAA,kCAAA;ELg8EV;EKv8EM;IAOI,8BAAA;IAAA,iCAAA;ELo8EV;EK38EM;IAOI,4BAAA;IAAA,+BAAA;ELw8EV;EK/8EM;IAOI,8BAAA;IAAA,iCAAA;EL48EV;EKn9EM;IAOI,4BAAA;IAAA,+BAAA;ELg9EV;EKv9EM;IAOI,yBAAA;ELm9EV;EK19EM;IAOI,+BAAA;ELs9EV;EK79EM;IAOI,8BAAA;ELy9EV;EKh+EM;IAOI,4BAAA;EL49EV;EKn+EM;IAOI,8BAAA;EL+9EV;EKt+EM;IAOI,4BAAA;ELk+EV;EKz+EM;IAOI,0BAAA;ELq+EV;EK5+EM;IAOI,gCAAA;ELw+EV;EK/+EM;IAOI,+BAAA;EL2+EV;EKl/EM;IAOI,6BAAA;EL8+EV;EKr/EM;IAOI,+BAAA;ELi/EV;EKx/EM;IAOI,6BAAA;ELo/EV;EK3/EM;IAOI,4BAAA;ELu/EV;EK9/EM;IAOI,kCAAA;EL0/EV;EKjgFM;IAOI,iCAAA;EL6/EV;EKpgFM;IAOI,+BAAA;ELggFV;EKvgFM;IAOI,iCAAA;ELmgFV;EK1gFM;IAOI,+BAAA;ELsgFV;EK7gFM;IAOI,2BAAA;ELygFV;EKhhFM;IAOI,iCAAA;EL4gFV;EKnhFM;IAOI,gCAAA;EL+gFV;EKthFM;IAOI,8BAAA;ELkhFV;EKzhFM;IAOI,gCAAA;ELqhFV;EK5hFM;IAOI,8BAAA;ELwhFV;AACF;ACniFI;EIGI;IAOI,0BAAA;EL6hFV;EKpiFM;IAOI,gCAAA;ELgiFV;EKviFM;IAOI,yBAAA;ELmiFV;EK1iFM;IAOI,wBAAA;ELsiFV;EK7iFM;IAOI,+BAAA;ELyiFV;EKhjFM;IAOI,yBAAA;EL4iFV;EKnjFM;IAOI,6BAAA;EL+iFV;EKtjFM;IAOI,8BAAA;ELkjFV;EKzjFM;IAOI,wBAAA;ELqjFV;EK5jFM;IAOI,+BAAA;ELwjFV;EK/jFM;IAOI,wBAAA;EL2jFV;EKlkFM;IAOI,yBAAA;EL8jFV;EKrkFM;IAOI,8BAAA;ELikFV;EKxkFM;IAOI,iCAAA;ELokFV;EK3kFM;IAOI,sCAAA;ELukFV;EK9kFM;IAOI,yCAAA;EL0kFV;EKjlFM;IAOI,uBAAA;EL6kFV;EKplFM;IAOI,uBAAA;ELglFV;EKvlFM;IAOI,yBAAA;ELmlFV;EK1lFM;IAOI,yBAAA;ELslFV;EK7lFM;IAOI,0BAAA;ELylFV;EKhmFM;IAOI,4BAAA;EL4lFV;EKnmFM;IAOI,kCAAA;EL+lFV;EKtmFM;IAOI,sCAAA;ELkmFV;EKzmFM;IAOI,oCAAA;ELqmFV;EK5mFM;IAOI,kCAAA;ELwmFV;EK/mFM;IAOI,yCAAA;EL2mFV;EKlnFM;IAOI,wCAAA;EL8mFV;EKrnFM;IAOI,wCAAA;ELinFV;EKxnFM;IAOI,kCAAA;ELonFV;EK3nFM;IAOI,gCAAA;ELunFV;EK9nFM;IAOI,8BAAA;EL0nFV;EKjoFM;IAOI,gCAAA;EL6nFV;EKpoFM;IAOI,+BAAA;ELgoFV;EKvoFM;IAOI,oCAAA;ELmoFV;EK1oFM;IAOI,kCAAA;ELsoFV;EK7oFM;IAOI,gCAAA;ELyoFV;EKhpFM;IAOI,uCAAA;EL4oFV;EKnpFM;IAOI,sCAAA;EL+oFV;EKtpFM;IAOI,iCAAA;ELkpFV;EKzpFM;IAOI,2BAAA;ELqpFV;EK5pFM;IAOI,iCAAA;ELwpFV;EK/pFM;IAOI,+BAAA;EL2pFV;EKlqFM;IAOI,6BAAA;EL8pFV;EKrqFM;IAOI,+BAAA;ELiqFV;EKxqFM;IAOI,8BAAA;ELoqFV;EK3qFM;IAOI,oBAAA;ELuqFV;EK9qFM;IAOI,mBAAA;EL0qFV;EKjrFM;IAOI,mBAAA;EL6qFV;EKprFM;IAOI,mBAAA;ELgrFV;EKvrFM;IAOI,mBAAA;ELmrFV;EK1rFM;IAOI,mBAAA;ELsrFV;EK7rFM;IAOI,mBAAA;ELyrFV;EKhsFM;IAOI,mBAAA;EL4rFV;EKnsFM;IAOI,oBAAA;EL+rFV;EKtsFM;IAOI,0BAAA;ELksFV;EKzsFM;IAOI,yBAAA;ELqsFV;EK5sFM;IAOI,uBAAA;ELwsFV;EK/sFM;IAOI,yBAAA;EL2sFV;EKltFM;IAOI,uBAAA;EL8sFV;EKrtFM;IAOI,uBAAA;ELitFV;EKxtFM;IAOI,yBAAA;IAAA,0BAAA;ELqtFV;EK5tFM;IAOI,+BAAA;IAAA,gCAAA;ELytFV;EKhuFM;IAOI,8BAAA;IAAA,+BAAA;EL6tFV;EKpuFM;IAOI,4BAAA;IAAA,6BAAA;ELiuFV;EKxuFM;IAOI,8BAAA;IAAA,+BAAA;ELquFV;EK5uFM;IAOI,4BAAA;IAAA,6BAAA;ELyuFV;EKhvFM;IAOI,4BAAA;IAAA,6BAAA;EL6uFV;EKpvFM;IAOI,wBAAA;IAAA,2BAAA;ELivFV;EKxvFM;IAOI,8BAAA;IAAA,iCAAA;ELqvFV;EK5vFM;IAOI,6BAAA;IAAA,gCAAA;ELyvFV;EKhwFM;IAOI,2BAAA;IAAA,8BAAA;EL6vFV;EKpwFM;IAOI,6BAAA;IAAA,gCAAA;ELiwFV;EKxwFM;IAOI,2BAAA;IAAA,8BAAA;ELqwFV;EK5wFM;IAOI,2BAAA;IAAA,8BAAA;ELywFV;EKhxFM;IAOI,wBAAA;EL4wFV;EKnxFM;IAOI,8BAAA;EL+wFV;EKtxFM;IAOI,6BAAA;ELkxFV;EKzxFM;IAOI,2BAAA;ELqxFV;EK5xFM;IAOI,6BAAA;ELwxFV;EK/xFM;IAOI,2BAAA;EL2xFV;EKlyFM;IAOI,2BAAA;EL8xFV;EKryFM;IAOI,yBAAA;ELiyFV;EKxyFM;IAOI,+BAAA;ELoyFV;EK3yFM;IAOI,8BAAA;ELuyFV;EK9yFM;IAOI,4BAAA;EL0yFV;EKjzFM;IAOI,8BAAA;EL6yFV;EKpzFM;IAOI,4BAAA;ELgzFV;EKvzFM;IAOI,4BAAA;ELmzFV;EK1zFM;IAOI,2BAAA;ELszFV;EK7zFM;IAOI,iCAAA;ELyzFV;EKh0FM;IAOI,gCAAA;EL4zFV;EKn0FM;IAOI,8BAAA;EL+zFV;EKt0FM;IAOI,gCAAA;ELk0FV;EKz0FM;IAOI,8BAAA;ELq0FV;EK50FM;IAOI,8BAAA;ELw0FV;EK/0FM;IAOI,0BAAA;EL20FV;EKl1FM;IAOI,gCAAA;EL80FV;EKr1FM;IAOI,+BAAA;ELi1FV;EKx1FM;IAOI,6BAAA;ELo1FV;EK31FM;IAOI,+BAAA;ELu1FV;EK91FM;IAOI,6BAAA;EL01FV;EKj2FM;IAOI,6BAAA;EL61FV;EKp2FM;IAOI,qBAAA;ELg2FV;EKv2FM;IAOI,2BAAA;ELm2FV;EK12FM;IAOI,0BAAA;ELs2FV;EK72FM;IAOI,wBAAA;ELy2FV;EKh3FM;IAOI,0BAAA;EL42FV;EKn3FM;IAOI,wBAAA;EL+2FV;EKt3FM;IAOI,0BAAA;IAAA,2BAAA;ELm3FV;EK13FM;IAOI,gCAAA;IAAA,iCAAA;ELu3FV;EK93FM;IAOI,+BAAA;IAAA,gCAAA;EL23FV;EKl4FM;IAOI,6BAAA;IAAA,8BAAA;EL+3FV;EKt4FM;IAOI,+BAAA;IAAA,gCAAA;ELm4FV;EK14FM;IAOI,6BAAA;IAAA,8BAAA;ELu4FV;EK94FM;IAOI,yBAAA;IAAA,4BAAA;EL24FV;EKl5FM;IAOI,+BAAA;IAAA,kCAAA;EL+4FV;EKt5FM;IAOI,8BAAA;IAAA,iCAAA;ELm5FV;EK15FM;IAOI,4BAAA;IAAA,+BAAA;ELu5FV;EK95FM;IAOI,8BAAA;IAAA,iCAAA;EL25FV;EKl6FM;IAOI,4BAAA;IAAA,+BAAA;EL+5FV;EKt6FM;IAOI,yBAAA;ELk6FV;EKz6FM;IAOI,+BAAA;ELq6FV;EK56FM;IAOI,8BAAA;ELw6FV;EK/6FM;IAOI,4BAAA;EL26FV;EKl7FM;IAOI,8BAAA;EL86FV;EKr7FM;IAOI,4BAAA;ELi7FV;EKx7FM;IAOI,0BAAA;ELo7FV;EK37FM;IAOI,gCAAA;ELu7FV;EK97FM;IAOI,+BAAA;EL07FV;EKj8FM;IAOI,6BAAA;EL67FV;EKp8FM;IAOI,+BAAA;ELg8FV;EKv8FM;IAOI,6BAAA;ELm8FV;EK18FM;IAOI,4BAAA;ELs8FV;EK78FM;IAOI,kCAAA;ELy8FV;EKh9FM;IAOI,iCAAA;EL48FV;EKn9FM;IAOI,+BAAA;EL+8FV;EKt9FM;IAOI,iCAAA;ELk9FV;EKz9FM;IAOI,+BAAA;ELq9FV;EK59FM;IAOI,2BAAA;ELw9FV;EK/9FM;IAOI,iCAAA;EL29FV;EKl+FM;IAOI,gCAAA;EL89FV;EKr+FM;IAOI,8BAAA;ELi+FV;EKx+FM;IAOI,gCAAA;ELo+FV;EK3+FM;IAOI,8BAAA;ELu+FV;AACF;ACl/FI;EIGI;IAOI,0BAAA;EL4+FV;EKn/FM;IAOI,gCAAA;EL++FV;EKt/FM;IAOI,yBAAA;ELk/FV;EKz/FM;IAOI,wBAAA;ELq/FV;EK5/FM;IAOI,+BAAA;ELw/FV;EK//FM;IAOI,yBAAA;EL2/FV;EKlgGM;IAOI,6BAAA;EL8/FV;EKrgGM;IAOI,8BAAA;ELigGV;EKxgGM;IAOI,wBAAA;ELogGV;EK3gGM;IAOI,+BAAA;ELugGV;EK9gGM;IAOI,wBAAA;EL0gGV;EKjhGM;IAOI,yBAAA;EL6gGV;EKphGM;IAOI,8BAAA;ELghGV;EKvhGM;IAOI,iCAAA;ELmhGV;EK1hGM;IAOI,sCAAA;ELshGV;EK7hGM;IAOI,yCAAA;ELyhGV;EKhiGM;IAOI,uBAAA;EL4hGV;EKniGM;IAOI,uBAAA;EL+hGV;EKtiGM;IAOI,yBAAA;ELkiGV;EKziGM;IAOI,yBAAA;ELqiGV;EK5iGM;IAOI,0BAAA;ELwiGV;EK/iGM;IAOI,4BAAA;EL2iGV;EKljGM;IAOI,kCAAA;EL8iGV;EKrjGM;IAOI,sCAAA;ELijGV;EKxjGM;IAOI,oCAAA;ELojGV;EK3jGM;IAOI,kCAAA;ELujGV;EK9jGM;IAOI,yCAAA;EL0jGV;EKjkGM;IAOI,wCAAA;EL6jGV;EKpkGM;IAOI,wCAAA;ELgkGV;EKvkGM;IAOI,kCAAA;ELmkGV;EK1kGM;IAOI,gCAAA;ELskGV;EK7kGM;IAOI,8BAAA;ELykGV;EKhlGM;IAOI,gCAAA;EL4kGV;EKnlGM;IAOI,+BAAA;EL+kGV;EKtlGM;IAOI,oCAAA;ELklGV;EKzlGM;IAOI,kCAAA;ELqlGV;EK5lGM;IAOI,gCAAA;ELwlGV;EK/lGM;IAOI,uCAAA;EL2lGV;EKlmGM;IAOI,sCAAA;EL8lGV;EKrmGM;IAOI,iCAAA;ELimGV;EKxmGM;IAOI,2BAAA;ELomGV;EK3mGM;IAOI,iCAAA;ELumGV;EK9mGM;IAOI,+BAAA;EL0mGV;EKjnGM;IAOI,6BAAA;EL6mGV;EKpnGM;IAOI,+BAAA;ELgnGV;EKvnGM;IAOI,8BAAA;ELmnGV;EK1nGM;IAOI,oBAAA;ELsnGV;EK7nGM;IAOI,mBAAA;ELynGV;EKhoGM;IAOI,mBAAA;EL4nGV;EKnoGM;IAOI,mBAAA;EL+nGV;EKtoGM;IAOI,mBAAA;ELkoGV;EKzoGM;IAOI,mBAAA;ELqoGV;EK5oGM;IAOI,mBAAA;ELwoGV;EK/oGM;IAOI,mBAAA;EL2oGV;EKlpGM;IAOI,oBAAA;EL8oGV;EKrpGM;IAOI,0BAAA;ELipGV;EKxpGM;IAOI,yBAAA;ELopGV;EK3pGM;IAOI,uBAAA;ELupGV;EK9pGM;IAOI,yBAAA;EL0pGV;EKjqGM;IAOI,uBAAA;EL6pGV;EKpqGM;IAOI,uBAAA;ELgqGV;EKvqGM;IAOI,yBAAA;IAAA,0BAAA;ELoqGV;EK3qGM;IAOI,+BAAA;IAAA,gCAAA;ELwqGV;EK/qGM;IAOI,8BAAA;IAAA,+BAAA;EL4qGV;EKnrGM;IAOI,4BAAA;IAAA,6BAAA;ELgrGV;EKvrGM;IAOI,8BAAA;IAAA,+BAAA;ELorGV;EK3rGM;IAOI,4BAAA;IAAA,6BAAA;ELwrGV;EK/rGM;IAOI,4BAAA;IAAA,6BAAA;EL4rGV;EKnsGM;IAOI,wBAAA;IAAA,2BAAA;ELgsGV;EKvsGM;IAOI,8BAAA;IAAA,iCAAA;ELosGV;EK3sGM;IAOI,6BAAA;IAAA,gCAAA;ELwsGV;EK/sGM;IAOI,2BAAA;IAAA,8BAAA;EL4sGV;EKntGM;IAOI,6BAAA;IAAA,gCAAA;ELgtGV;EKvtGM;IAOI,2BAAA;IAAA,8BAAA;ELotGV;EK3tGM;IAOI,2BAAA;IAAA,8BAAA;ELwtGV;EK/tGM;IAOI,wBAAA;EL2tGV;EKluGM;IAOI,8BAAA;EL8tGV;EKruGM;IAOI,6BAAA;ELiuGV;EKxuGM;IAOI,2BAAA;ELouGV;EK3uGM;IAOI,6BAAA;ELuuGV;EK9uGM;IAOI,2BAAA;EL0uGV;EKjvGM;IAOI,2BAAA;EL6uGV;EKpvGM;IAOI,yBAAA;ELgvGV;EKvvGM;IAOI,+BAAA;ELmvGV;EK1vGM;IAOI,8BAAA;ELsvGV;EK7vGM;IAOI,4BAAA;ELyvGV;EKhwGM;IAOI,8BAAA;EL4vGV;EKnwGM;IAOI,4BAAA;EL+vGV;EKtwGM;IAOI,4BAAA;ELkwGV;EKzwGM;IAOI,2BAAA;ELqwGV;EK5wGM;IAOI,iCAAA;ELwwGV;EK/wGM;IAOI,gCAAA;EL2wGV;EKlxGM;IAOI,8BAAA;EL8wGV;EKrxGM;IAOI,gCAAA;ELixGV;EKxxGM;IAOI,8BAAA;ELoxGV;EK3xGM;IAOI,8BAAA;ELuxGV;EK9xGM;IAOI,0BAAA;EL0xGV;EKjyGM;IAOI,gCAAA;EL6xGV;EKpyGM;IAOI,+BAAA;ELgyGV;EKvyGM;IAOI,6BAAA;ELmyGV;EK1yGM;IAOI,+BAAA;ELsyGV;EK7yGM;IAOI,6BAAA;ELyyGV;EKhzGM;IAOI,6BAAA;EL4yGV;EKnzGM;IAOI,qBAAA;EL+yGV;EKtzGM;IAOI,2BAAA;ELkzGV;EKzzGM;IAOI,0BAAA;ELqzGV;EK5zGM;IAOI,wBAAA;ELwzGV;EK/zGM;IAOI,0BAAA;EL2zGV;EKl0GM;IAOI,wBAAA;EL8zGV;EKr0GM;IAOI,0BAAA;IAAA,2BAAA;ELk0GV;EKz0GM;IAOI,gCAAA;IAAA,iCAAA;ELs0GV;EK70GM;IAOI,+BAAA;IAAA,gCAAA;EL00GV;EKj1GM;IAOI,6BAAA;IAAA,8BAAA;EL80GV;EKr1GM;IAOI,+BAAA;IAAA,gCAAA;ELk1GV;EKz1GM;IAOI,6BAAA;IAAA,8BAAA;ELs1GV;EK71GM;IAOI,yBAAA;IAAA,4BAAA;EL01GV;EKj2GM;IAOI,+BAAA;IAAA,kCAAA;EL81GV;EKr2GM;IAOI,8BAAA;IAAA,iCAAA;ELk2GV;EKz2GM;IAOI,4BAAA;IAAA,+BAAA;ELs2GV;EK72GM;IAOI,8BAAA;IAAA,iCAAA;EL02GV;EKj3GM;IAOI,4BAAA;IAAA,+BAAA;EL82GV;EKr3GM;IAOI,yBAAA;ELi3GV;EKx3GM;IAOI,+BAAA;ELo3GV;EK33GM;IAOI,8BAAA;ELu3GV;EK93GM;IAOI,4BAAA;EL03GV;EKj4GM;IAOI,8BAAA;EL63GV;EKp4GM;IAOI,4BAAA;ELg4GV;EKv4GM;IAOI,0BAAA;ELm4GV;EK14GM;IAOI,gCAAA;ELs4GV;EK74GM;IAOI,+BAAA;ELy4GV;EKh5GM;IAOI,6BAAA;EL44GV;EKn5GM;IAOI,+BAAA;EL+4GV;EKt5GM;IAOI,6BAAA;ELk5GV;EKz5GM;IAOI,4BAAA;ELq5GV;EK55GM;IAOI,kCAAA;ELw5GV;EK/5GM;IAOI,iCAAA;EL25GV;EKl6GM;IAOI,+BAAA;EL85GV;EKr6GM;IAOI,iCAAA;ELi6GV;EKx6GM;IAOI,+BAAA;ELo6GV;EK36GM;IAOI,2BAAA;ELu6GV;EK96GM;IAOI,iCAAA;EL06GV;EKj7GM;IAOI,gCAAA;EL66GV;EKp7GM;IAOI,8BAAA;ELg7GV;EKv7GM;IAOI,gCAAA;ELm7GV;EK17GM;IAOI,8BAAA;ELs7GV;AACF;ACj8GI;EIGI;IAOI,0BAAA;EL27GV;EKl8GM;IAOI,gCAAA;EL87GV;EKr8GM;IAOI,yBAAA;ELi8GV;EKx8GM;IAOI,wBAAA;ELo8GV;EK38GM;IAOI,+BAAA;ELu8GV;EK98GM;IAOI,yBAAA;EL08GV;EKj9GM;IAOI,6BAAA;EL68GV;EKp9GM;IAOI,8BAAA;ELg9GV;EKv9GM;IAOI,wBAAA;ELm9GV;EK19GM;IAOI,+BAAA;ELs9GV;EK79GM;IAOI,wBAAA;ELy9GV;EKh+GM;IAOI,yBAAA;EL49GV;EKn+GM;IAOI,8BAAA;EL+9GV;EKt+GM;IAOI,iCAAA;ELk+GV;EKz+GM;IAOI,sCAAA;ELq+GV;EK5+GM;IAOI,yCAAA;ELw+GV;EK/+GM;IAOI,uBAAA;EL2+GV;EKl/GM;IAOI,uBAAA;EL8+GV;EKr/GM;IAOI,yBAAA;ELi/GV;EKx/GM;IAOI,yBAAA;ELo/GV;EK3/GM;IAOI,0BAAA;ELu/GV;EK9/GM;IAOI,4BAAA;EL0/GV;EKjgHM;IAOI,kCAAA;EL6/GV;EKpgHM;IAOI,sCAAA;ELggHV;EKvgHM;IAOI,oCAAA;ELmgHV;EK1gHM;IAOI,kCAAA;ELsgHV;EK7gHM;IAOI,yCAAA;ELygHV;EKhhHM;IAOI,wCAAA;EL4gHV;EKnhHM;IAOI,wCAAA;EL+gHV;EKthHM;IAOI,kCAAA;ELkhHV;EKzhHM;IAOI,gCAAA;ELqhHV;EK5hHM;IAOI,8BAAA;ELwhHV;EK/hHM;IAOI,gCAAA;EL2hHV;EKliHM;IAOI,+BAAA;EL8hHV;EKriHM;IAOI,oCAAA;ELiiHV;EKxiHM;IAOI,kCAAA;ELoiHV;EK3iHM;IAOI,gCAAA;ELuiHV;EK9iHM;IAOI,uCAAA;EL0iHV;EKjjHM;IAOI,sCAAA;EL6iHV;EKpjHM;IAOI,iCAAA;ELgjHV;EKvjHM;IAOI,2BAAA;ELmjHV;EK1jHM;IAOI,iCAAA;ELsjHV;EK7jHM;IAOI,+BAAA;ELyjHV;EKhkHM;IAOI,6BAAA;EL4jHV;EKnkHM;IAOI,+BAAA;EL+jHV;EKtkHM;IAOI,8BAAA;ELkkHV;EKzkHM;IAOI,oBAAA;ELqkHV;EK5kHM;IAOI,mBAAA;ELwkHV;EK/kHM;IAOI,mBAAA;EL2kHV;EKllHM;IAOI,mBAAA;EL8kHV;EKrlHM;IAOI,mBAAA;ELilHV;EKxlHM;IAOI,mBAAA;ELolHV;EK3lHM;IAOI,mBAAA;ELulHV;EK9lHM;IAOI,mBAAA;EL0lHV;EKjmHM;IAOI,oBAAA;EL6lHV;EKpmHM;IAOI,0BAAA;ELgmHV;EKvmHM;IAOI,yBAAA;ELmmHV;EK1mHM;IAOI,uBAAA;ELsmHV;EK7mHM;IAOI,yBAAA;ELymHV;EKhnHM;IAOI,uBAAA;EL4mHV;EKnnHM;IAOI,uBAAA;EL+mHV;EKtnHM;IAOI,yBAAA;IAAA,0BAAA;ELmnHV;EK1nHM;IAOI,+BAAA;IAAA,gCAAA;ELunHV;EK9nHM;IAOI,8BAAA;IAAA,+BAAA;EL2nHV;EKloHM;IAOI,4BAAA;IAAA,6BAAA;EL+nHV;EKtoHM;IAOI,8BAAA;IAAA,+BAAA;ELmoHV;EK1oHM;IAOI,4BAAA;IAAA,6BAAA;ELuoHV;EK9oHM;IAOI,4BAAA;IAAA,6BAAA;EL2oHV;EKlpHM;IAOI,wBAAA;IAAA,2BAAA;EL+oHV;EKtpHM;IAOI,8BAAA;IAAA,iCAAA;ELmpHV;EK1pHM;IAOI,6BAAA;IAAA,gCAAA;ELupHV;EK9pHM;IAOI,2BAAA;IAAA,8BAAA;EL2pHV;EKlqHM;IAOI,6BAAA;IAAA,gCAAA;EL+pHV;EKtqHM;IAOI,2BAAA;IAAA,8BAAA;ELmqHV;EK1qHM;IAOI,2BAAA;IAAA,8BAAA;ELuqHV;EK9qHM;IAOI,wBAAA;EL0qHV;EKjrHM;IAOI,8BAAA;EL6qHV;EKprHM;IAOI,6BAAA;ELgrHV;EKvrHM;IAOI,2BAAA;ELmrHV;EK1rHM;IAOI,6BAAA;ELsrHV;EK7rHM;IAOI,2BAAA;ELyrHV;EKhsHM;IAOI,2BAAA;EL4rHV;EKnsHM;IAOI,yBAAA;EL+rHV;EKtsHM;IAOI,+BAAA;ELksHV;EKzsHM;IAOI,8BAAA;ELqsHV;EK5sHM;IAOI,4BAAA;ELwsHV;EK/sHM;IAOI,8BAAA;EL2sHV;EKltHM;IAOI,4BAAA;EL8sHV;EKrtHM;IAOI,4BAAA;ELitHV;EKxtHM;IAOI,2BAAA;ELotHV;EK3tHM;IAOI,iCAAA;ELutHV;EK9tHM;IAOI,gCAAA;EL0tHV;EKjuHM;IAOI,8BAAA;EL6tHV;EKpuHM;IAOI,gCAAA;ELguHV;EKvuHM;IAOI,8BAAA;ELmuHV;EK1uHM;IAOI,8BAAA;ELsuHV;EK7uHM;IAOI,0BAAA;ELyuHV;EKhvHM;IAOI,gCAAA;EL4uHV;EKnvHM;IAOI,+BAAA;EL+uHV;EKtvHM;IAOI,6BAAA;ELkvHV;EKzvHM;IAOI,+BAAA;ELqvHV;EK5vHM;IAOI,6BAAA;ELwvHV;EK/vHM;IAOI,6BAAA;EL2vHV;EKlwHM;IAOI,qBAAA;EL8vHV;EKrwHM;IAOI,2BAAA;ELiwHV;EKxwHM;IAOI,0BAAA;ELowHV;EK3wHM;IAOI,wBAAA;ELuwHV;EK9wHM;IAOI,0BAAA;EL0wHV;EKjxHM;IAOI,wBAAA;EL6wHV;EKpxHM;IAOI,0BAAA;IAAA,2BAAA;ELixHV;EKxxHM;IAOI,gCAAA;IAAA,iCAAA;ELqxHV;EK5xHM;IAOI,+BAAA;IAAA,gCAAA;ELyxHV;EKhyHM;IAOI,6BAAA;IAAA,8BAAA;EL6xHV;EKpyHM;IAOI,+BAAA;IAAA,gCAAA;ELiyHV;EKxyHM;IAOI,6BAAA;IAAA,8BAAA;ELqyHV;EK5yHM;IAOI,yBAAA;IAAA,4BAAA;ELyyHV;EKhzHM;IAOI,+BAAA;IAAA,kCAAA;EL6yHV;EKpzHM;IAOI,8BAAA;IAAA,iCAAA;ELizHV;EKxzHM;IAOI,4BAAA;IAAA,+BAAA;ELqzHV;EK5zHM;IAOI,8BAAA;IAAA,iCAAA;ELyzHV;EKh0HM;IAOI,4BAAA;IAAA,+BAAA;EL6zHV;EKp0HM;IAOI,yBAAA;ELg0HV;EKv0HM;IAOI,+BAAA;ELm0HV;EK10HM;IAOI,8BAAA;ELs0HV;EK70HM;IAOI,4BAAA;ELy0HV;EKh1HM;IAOI,8BAAA;EL40HV;EKn1HM;IAOI,4BAAA;EL+0HV;EKt1HM;IAOI,0BAAA;ELk1HV;EKz1HM;IAOI,gCAAA;ELq1HV;EK51HM;IAOI,+BAAA;ELw1HV;EK/1HM;IAOI,6BAAA;EL21HV;EKl2HM;IAOI,+BAAA;EL81HV;EKr2HM;IAOI,6BAAA;ELi2HV;EKx2HM;IAOI,4BAAA;ELo2HV;EK32HM;IAOI,kCAAA;ELu2HV;EK92HM;IAOI,iCAAA;EL02HV;EKj3HM;IAOI,+BAAA;EL62HV;EKp3HM;IAOI,iCAAA;ELg3HV;EKv3HM;IAOI,+BAAA;ELm3HV;EK13HM;IAOI,2BAAA;ELs3HV;EK73HM;IAOI,iCAAA;ELy3HV;EKh4HM;IAOI,gCAAA;EL43HV;EKn4HM;IAOI,8BAAA;EL+3HV;EKt4HM;IAOI,gCAAA;ELk4HV;EKz4HM;IAOI,8BAAA;ELq4HV;AACF;AMz6HA;ED4BQ;IAOI,0BAAA;EL04HV;EKj5HM;IAOI,gCAAA;EL64HV;EKp5HM;IAOI,yBAAA;ELg5HV;EKv5HM;IAOI,wBAAA;ELm5HV;EK15HM;IAOI,+BAAA;ELs5HV;EK75HM;IAOI,yBAAA;ELy5HV;EKh6HM;IAOI,6BAAA;EL45HV;EKn6HM;IAOI,8BAAA;EL+5HV;EKt6HM;IAOI,wBAAA;ELk6HV;EKz6HM;IAOI,+BAAA;ELq6HV;EK56HM;IAOI,wBAAA;ELw6HV;AACF","file":"bootstrap-grid.rtl.css","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-container-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-right: auto;\n margin-left: auto;\n}\n","/*!\n * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n:root {\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n .g-sm-0,\n .gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n .gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n .gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n .gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n .gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n .gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n .gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n .gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n .gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n .gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n .gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n .gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n .g-md-0,\n .gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n .gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n .gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n .gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n .gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n .gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n .gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n .gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n .gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n .gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n .gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n .gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n .g-lg-0,\n .gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n .gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n .gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n .gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n .gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n .gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n .gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n .gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n .gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n .gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n .gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n .gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n .g-xl-0,\n .gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n .gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n .gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n .gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n .gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n .gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n .gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n .gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n .gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xl-4,\n .gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xl-5,\n .gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n .gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-left: 0;\n }\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xxl-3 {\n margin-left: 25%;\n }\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xxl-6 {\n margin-left: 50%;\n }\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xxl-9 {\n margin-left: 75%;\n }\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n .g-xxl-0,\n .gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n .gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n .gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n .gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n .gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n .gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n .gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n .gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n .gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xxl-4,\n .gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xxl-5,\n .gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n .gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-inline-grid {\n display: inline-grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-grid {\n display: grid !important;\n }\n .d-sm-inline-grid {\n display: inline-grid !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n .d-sm-none {\n display: none !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n .order-sm-first {\n order: -1 !important;\n }\n .order-sm-0 {\n order: 0 !important;\n }\n .order-sm-1 {\n order: 1 !important;\n }\n .order-sm-2 {\n order: 2 !important;\n }\n .order-sm-3 {\n order: 3 !important;\n }\n .order-sm-4 {\n order: 4 !important;\n }\n .order-sm-5 {\n order: 5 !important;\n }\n .order-sm-last {\n order: 6 !important;\n }\n .m-sm-0 {\n margin: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n .mt-sm-auto {\n margin-top: auto !important;\n }\n .me-sm-0 {\n margin-right: 0 !important;\n }\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n .me-sm-4 {\n margin-right: 1.5rem !important;\n }\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n .me-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n .ms-sm-4 {\n margin-left: 1.5rem !important;\n }\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n .ms-sm-auto {\n margin-left: auto !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-sm-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n .pe-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n .ps-sm-4 {\n padding-left: 1.5rem !important;\n }\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-grid {\n display: grid !important;\n }\n .d-md-inline-grid {\n display: inline-grid !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n .d-md-none {\n display: none !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n .order-md-first {\n order: -1 !important;\n }\n .order-md-0 {\n order: 0 !important;\n }\n .order-md-1 {\n order: 1 !important;\n }\n .order-md-2 {\n order: 2 !important;\n }\n .order-md-3 {\n order: 3 !important;\n }\n .order-md-4 {\n order: 4 !important;\n }\n .order-md-5 {\n order: 5 !important;\n }\n .order-md-last {\n order: 6 !important;\n }\n .m-md-0 {\n margin: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-md-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-md-0 {\n margin-top: 0 !important;\n }\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n .mt-md-auto {\n margin-top: auto !important;\n }\n .me-md-0 {\n margin-right: 0 !important;\n }\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n .me-md-3 {\n margin-right: 1rem !important;\n }\n .me-md-4 {\n margin-right: 1.5rem !important;\n }\n .me-md-5 {\n margin-right: 3rem !important;\n }\n .me-md-auto {\n margin-right: auto !important;\n }\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n .ms-md-0 {\n margin-left: 0 !important;\n }\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n .ms-md-4 {\n margin-left: 1.5rem !important;\n }\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n .ms-md-auto {\n margin-left: auto !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-md-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-md-0 {\n padding-top: 0 !important;\n }\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n .pe-md-0 {\n padding-right: 0 !important;\n }\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n .pe-md-4 {\n padding-right: 1.5rem !important;\n }\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n .ps-md-0 {\n padding-left: 0 !important;\n }\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n .ps-md-4 {\n padding-left: 1.5rem !important;\n }\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-grid {\n display: grid !important;\n }\n .d-lg-inline-grid {\n display: inline-grid !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n .d-lg-none {\n display: none !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n .order-lg-first {\n order: -1 !important;\n }\n .order-lg-0 {\n order: 0 !important;\n }\n .order-lg-1 {\n order: 1 !important;\n }\n .order-lg-2 {\n order: 2 !important;\n }\n .order-lg-3 {\n order: 3 !important;\n }\n .order-lg-4 {\n order: 4 !important;\n }\n .order-lg-5 {\n order: 5 !important;\n }\n .order-lg-last {\n order: 6 !important;\n }\n .m-lg-0 {\n margin: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n .mt-lg-auto {\n margin-top: auto !important;\n }\n .me-lg-0 {\n margin-right: 0 !important;\n }\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n .me-lg-4 {\n margin-right: 1.5rem !important;\n }\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n .me-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n .ms-lg-4 {\n margin-left: 1.5rem !important;\n }\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n .ms-lg-auto {\n margin-left: auto !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-lg-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n .pe-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n .ps-lg-4 {\n padding-left: 1.5rem !important;\n }\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-grid {\n display: grid !important;\n }\n .d-xl-inline-grid {\n display: inline-grid !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n .d-xl-none {\n display: none !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n .order-xl-first {\n order: -1 !important;\n }\n .order-xl-0 {\n order: 0 !important;\n }\n .order-xl-1 {\n order: 1 !important;\n }\n .order-xl-2 {\n order: 2 !important;\n }\n .order-xl-3 {\n order: 3 !important;\n }\n .order-xl-4 {\n order: 4 !important;\n }\n .order-xl-5 {\n order: 5 !important;\n }\n .order-xl-last {\n order: 6 !important;\n }\n .m-xl-0 {\n margin: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n .mt-xl-auto {\n margin-top: auto !important;\n }\n .me-xl-0 {\n margin-right: 0 !important;\n }\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n .me-xl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n .me-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n .ms-xl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n .ms-xl-auto {\n margin-left: auto !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n .pe-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n .ps-xl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n .d-xxl-block {\n display: block !important;\n }\n .d-xxl-grid {\n display: grid !important;\n }\n .d-xxl-inline-grid {\n display: inline-grid !important;\n }\n .d-xxl-table {\n display: table !important;\n }\n .d-xxl-table-row {\n display: table-row !important;\n }\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n .d-xxl-flex {\n display: flex !important;\n }\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n .d-xxl-none {\n display: none !important;\n }\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xxl-row {\n flex-direction: row !important;\n }\n .flex-xxl-column {\n flex-direction: column !important;\n }\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n .align-items-xxl-center {\n align-items: center !important;\n }\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n .align-content-xxl-center {\n align-content: center !important;\n }\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n .align-self-xxl-center {\n align-self: center !important;\n }\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n .order-xxl-first {\n order: -1 !important;\n }\n .order-xxl-0 {\n order: 0 !important;\n }\n .order-xxl-1 {\n order: 1 !important;\n }\n .order-xxl-2 {\n order: 2 !important;\n }\n .order-xxl-3 {\n order: 3 !important;\n }\n .order-xxl-4 {\n order: 4 !important;\n }\n .order-xxl-5 {\n order: 5 !important;\n }\n .order-xxl-last {\n order: 6 !important;\n }\n .m-xxl-0 {\n margin: 0 !important;\n }\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n .m-xxl-3 {\n margin: 1rem !important;\n }\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n .m-xxl-5 {\n margin: 3rem !important;\n }\n .m-xxl-auto {\n margin: auto !important;\n }\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xxl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n .me-xxl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n .me-xxl-auto {\n margin-right: auto !important;\n }\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n .ms-xxl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n .p-xxl-0 {\n padding: 0 !important;\n }\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n .p-xxl-3 {\n padding: 1rem !important;\n }\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n .p-xxl-5 {\n padding: 3rem !important;\n }\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xxl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n .pe-xxl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n .ps-xxl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-grid {\n display: grid !important;\n }\n .d-print-inline-grid {\n display: inline-grid !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n .d-print-none {\n display: none !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap-grid.css.map */\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n// Color system\n\n// scss-docs-start gray-color-variables\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n// scss-docs-end gray-color-variables\n\n// fusv-disable\n// scss-docs-start gray-colors-map\n$grays: (\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n) !default;\n// scss-docs-end gray-colors-map\n// fusv-enable\n\n// scss-docs-start color-variables\n$blue: #0d6efd !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #d63384 !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #198754 !default;\n$teal: #20c997 !default;\n$cyan: #0dcaf0 !default;\n// scss-docs-end color-variables\n\n// scss-docs-start colors-map\n$colors: (\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"black\": $black,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n) !default;\n// scss-docs-end colors-map\n\n// The contrast ratio to reach against white, to determine if color changes from \"light\" to \"dark\". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.\n// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast\n$min-contrast-ratio: 4.5 !default;\n\n// Customize the light and dark text colors for use in our color contrast function.\n$color-contrast-dark: $black !default;\n$color-contrast-light: $white !default;\n\n// fusv-disable\n$blue-100: tint-color($blue, 80%) !default;\n$blue-200: tint-color($blue, 60%) !default;\n$blue-300: tint-color($blue, 40%) !default;\n$blue-400: tint-color($blue, 20%) !default;\n$blue-500: $blue !default;\n$blue-600: shade-color($blue, 20%) !default;\n$blue-700: shade-color($blue, 40%) !default;\n$blue-800: shade-color($blue, 60%) !default;\n$blue-900: shade-color($blue, 80%) !default;\n\n$indigo-100: tint-color($indigo, 80%) !default;\n$indigo-200: tint-color($indigo, 60%) !default;\n$indigo-300: tint-color($indigo, 40%) !default;\n$indigo-400: tint-color($indigo, 20%) !default;\n$indigo-500: $indigo !default;\n$indigo-600: shade-color($indigo, 20%) !default;\n$indigo-700: shade-color($indigo, 40%) !default;\n$indigo-800: shade-color($indigo, 60%) !default;\n$indigo-900: shade-color($indigo, 80%) !default;\n\n$purple-100: tint-color($purple, 80%) !default;\n$purple-200: tint-color($purple, 60%) !default;\n$purple-300: tint-color($purple, 40%) !default;\n$purple-400: tint-color($purple, 20%) !default;\n$purple-500: $purple !default;\n$purple-600: shade-color($purple, 20%) !default;\n$purple-700: shade-color($purple, 40%) !default;\n$purple-800: shade-color($purple, 60%) !default;\n$purple-900: shade-color($purple, 80%) !default;\n\n$pink-100: tint-color($pink, 80%) !default;\n$pink-200: tint-color($pink, 60%) !default;\n$pink-300: tint-color($pink, 40%) !default;\n$pink-400: tint-color($pink, 20%) !default;\n$pink-500: $pink !default;\n$pink-600: shade-color($pink, 20%) !default;\n$pink-700: shade-color($pink, 40%) !default;\n$pink-800: shade-color($pink, 60%) !default;\n$pink-900: shade-color($pink, 80%) !default;\n\n$red-100: tint-color($red, 80%) !default;\n$red-200: tint-color($red, 60%) !default;\n$red-300: tint-color($red, 40%) !default;\n$red-400: tint-color($red, 20%) !default;\n$red-500: $red !default;\n$red-600: shade-color($red, 20%) !default;\n$red-700: shade-color($red, 40%) !default;\n$red-800: shade-color($red, 60%) !default;\n$red-900: shade-color($red, 80%) !default;\n\n$orange-100: tint-color($orange, 80%) !default;\n$orange-200: tint-color($orange, 60%) !default;\n$orange-300: tint-color($orange, 40%) !default;\n$orange-400: tint-color($orange, 20%) !default;\n$orange-500: $orange !default;\n$orange-600: shade-color($orange, 20%) !default;\n$orange-700: shade-color($orange, 40%) !default;\n$orange-800: shade-color($orange, 60%) !default;\n$orange-900: shade-color($orange, 80%) !default;\n\n$yellow-100: tint-color($yellow, 80%) !default;\n$yellow-200: tint-color($yellow, 60%) !default;\n$yellow-300: tint-color($yellow, 40%) !default;\n$yellow-400: tint-color($yellow, 20%) !default;\n$yellow-500: $yellow !default;\n$yellow-600: shade-color($yellow, 20%) !default;\n$yellow-700: shade-color($yellow, 40%) !default;\n$yellow-800: shade-color($yellow, 60%) !default;\n$yellow-900: shade-color($yellow, 80%) !default;\n\n$green-100: tint-color($green, 80%) !default;\n$green-200: tint-color($green, 60%) !default;\n$green-300: tint-color($green, 40%) !default;\n$green-400: tint-color($green, 20%) !default;\n$green-500: $green !default;\n$green-600: shade-color($green, 20%) !default;\n$green-700: shade-color($green, 40%) !default;\n$green-800: shade-color($green, 60%) !default;\n$green-900: shade-color($green, 80%) !default;\n\n$teal-100: tint-color($teal, 80%) !default;\n$teal-200: tint-color($teal, 60%) !default;\n$teal-300: tint-color($teal, 40%) !default;\n$teal-400: tint-color($teal, 20%) !default;\n$teal-500: $teal !default;\n$teal-600: shade-color($teal, 20%) !default;\n$teal-700: shade-color($teal, 40%) !default;\n$teal-800: shade-color($teal, 60%) !default;\n$teal-900: shade-color($teal, 80%) !default;\n\n$cyan-100: tint-color($cyan, 80%) !default;\n$cyan-200: tint-color($cyan, 60%) !default;\n$cyan-300: tint-color($cyan, 40%) !default;\n$cyan-400: tint-color($cyan, 20%) !default;\n$cyan-500: $cyan !default;\n$cyan-600: shade-color($cyan, 20%) !default;\n$cyan-700: shade-color($cyan, 40%) !default;\n$cyan-800: shade-color($cyan, 60%) !default;\n$cyan-900: shade-color($cyan, 80%) !default;\n\n$blues: (\n \"blue-100\": $blue-100,\n \"blue-200\": $blue-200,\n \"blue-300\": $blue-300,\n \"blue-400\": $blue-400,\n \"blue-500\": $blue-500,\n \"blue-600\": $blue-600,\n \"blue-700\": $blue-700,\n \"blue-800\": $blue-800,\n \"blue-900\": $blue-900\n) !default;\n\n$indigos: (\n \"indigo-100\": $indigo-100,\n \"indigo-200\": $indigo-200,\n \"indigo-300\": $indigo-300,\n \"indigo-400\": $indigo-400,\n \"indigo-500\": $indigo-500,\n \"indigo-600\": $indigo-600,\n \"indigo-700\": $indigo-700,\n \"indigo-800\": $indigo-800,\n \"indigo-900\": $indigo-900\n) !default;\n\n$purples: (\n \"purple-100\": $purple-100,\n \"purple-200\": $purple-200,\n \"purple-300\": $purple-300,\n \"purple-400\": $purple-400,\n \"purple-500\": $purple-500,\n \"purple-600\": $purple-600,\n \"purple-700\": $purple-700,\n \"purple-800\": $purple-800,\n \"purple-900\": $purple-900\n) !default;\n\n$pinks: (\n \"pink-100\": $pink-100,\n \"pink-200\": $pink-200,\n \"pink-300\": $pink-300,\n \"pink-400\": $pink-400,\n \"pink-500\": $pink-500,\n \"pink-600\": $pink-600,\n \"pink-700\": $pink-700,\n \"pink-800\": $pink-800,\n \"pink-900\": $pink-900\n) !default;\n\n$reds: (\n \"red-100\": $red-100,\n \"red-200\": $red-200,\n \"red-300\": $red-300,\n \"red-400\": $red-400,\n \"red-500\": $red-500,\n \"red-600\": $red-600,\n \"red-700\": $red-700,\n \"red-800\": $red-800,\n \"red-900\": $red-900\n) !default;\n\n$oranges: (\n \"orange-100\": $orange-100,\n \"orange-200\": $orange-200,\n \"orange-300\": $orange-300,\n \"orange-400\": $orange-400,\n \"orange-500\": $orange-500,\n \"orange-600\": $orange-600,\n \"orange-700\": $orange-700,\n \"orange-800\": $orange-800,\n \"orange-900\": $orange-900\n) !default;\n\n$yellows: (\n \"yellow-100\": $yellow-100,\n \"yellow-200\": $yellow-200,\n \"yellow-300\": $yellow-300,\n \"yellow-400\": $yellow-400,\n \"yellow-500\": $yellow-500,\n \"yellow-600\": $yellow-600,\n \"yellow-700\": $yellow-700,\n \"yellow-800\": $yellow-800,\n \"yellow-900\": $yellow-900\n) !default;\n\n$greens: (\n \"green-100\": $green-100,\n \"green-200\": $green-200,\n \"green-300\": $green-300,\n \"green-400\": $green-400,\n \"green-500\": $green-500,\n \"green-600\": $green-600,\n \"green-700\": $green-700,\n \"green-800\": $green-800,\n \"green-900\": $green-900\n) !default;\n\n$teals: (\n \"teal-100\": $teal-100,\n \"teal-200\": $teal-200,\n \"teal-300\": $teal-300,\n \"teal-400\": $teal-400,\n \"teal-500\": $teal-500,\n \"teal-600\": $teal-600,\n \"teal-700\": $teal-700,\n \"teal-800\": $teal-800,\n \"teal-900\": $teal-900\n) !default;\n\n$cyans: (\n \"cyan-100\": $cyan-100,\n \"cyan-200\": $cyan-200,\n \"cyan-300\": $cyan-300,\n \"cyan-400\": $cyan-400,\n \"cyan-500\": $cyan-500,\n \"cyan-600\": $cyan-600,\n \"cyan-700\": $cyan-700,\n \"cyan-800\": $cyan-800,\n \"cyan-900\": $cyan-900\n) !default;\n// fusv-enable\n\n// scss-docs-start theme-color-variables\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-900 !default;\n// scss-docs-end theme-color-variables\n\n// scss-docs-start theme-colors-map\n$theme-colors: (\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n) !default;\n// scss-docs-end theme-colors-map\n\n// scss-docs-start theme-text-variables\n$primary-text-emphasis: shade-color($primary, 60%) !default;\n$secondary-text-emphasis: shade-color($secondary, 60%) !default;\n$success-text-emphasis: shade-color($success, 60%) !default;\n$info-text-emphasis: shade-color($info, 60%) !default;\n$warning-text-emphasis: shade-color($warning, 60%) !default;\n$danger-text-emphasis: shade-color($danger, 60%) !default;\n$light-text-emphasis: $gray-700 !default;\n$dark-text-emphasis: $gray-700 !default;\n// scss-docs-end theme-text-variables\n\n// scss-docs-start theme-bg-subtle-variables\n$primary-bg-subtle: tint-color($primary, 80%) !default;\n$secondary-bg-subtle: tint-color($secondary, 80%) !default;\n$success-bg-subtle: tint-color($success, 80%) !default;\n$info-bg-subtle: tint-color($info, 80%) !default;\n$warning-bg-subtle: tint-color($warning, 80%) !default;\n$danger-bg-subtle: tint-color($danger, 80%) !default;\n$light-bg-subtle: mix($gray-100, $white) !default;\n$dark-bg-subtle: $gray-400 !default;\n// scss-docs-end theme-bg-subtle-variables\n\n// scss-docs-start theme-border-subtle-variables\n$primary-border-subtle: tint-color($primary, 60%) !default;\n$secondary-border-subtle: tint-color($secondary, 60%) !default;\n$success-border-subtle: tint-color($success, 60%) !default;\n$info-border-subtle: tint-color($info, 60%) !default;\n$warning-border-subtle: tint-color($warning, 60%) !default;\n$danger-border-subtle: tint-color($danger, 60%) !default;\n$light-border-subtle: $gray-200 !default;\n$dark-border-subtle: $gray-500 !default;\n// scss-docs-end theme-border-subtle-variables\n\n// Characters which are escaped by the escape-svg function\n$escaped-characters: (\n (\"<\", \"%3c\"),\n (\">\", \"%3e\"),\n (\"#\", \"%23\"),\n (\"(\", \"%28\"),\n (\")\", \"%29\"),\n) !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-reduced-motion: true !default;\n$enable-smooth-scroll: true !default;\n$enable-grid-classes: true !default;\n$enable-container-classes: true !default;\n$enable-cssgrid: false !default;\n$enable-button-pointers: true !default;\n$enable-rfs: true !default;\n$enable-validation-icons: true !default;\n$enable-negative-margins: false !default;\n$enable-deprecation-messages: true !default;\n$enable-important-utilities: true !default;\n\n$enable-dark-mode: true !default;\n$color-mode-type: data !default; // `data` or `media-query`\n\n// Prefix for :root CSS variables\n\n$variable-prefix: bs- !default; // Deprecated in v5.2.0 for the shorter `$prefix`\n$prefix: $variable-prefix !default;\n\n// Gradient\n//\n// The gradient which is added to components if `$enable-gradients` is `true`\n// This gradient is also added to elements with `.bg-gradient`\n// scss-docs-start variable-gradient\n$gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0)) !default;\n// scss-docs-end variable-gradient\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n// scss-docs-start spacer-variables-maps\n$spacer: 1rem !default;\n$spacers: (\n 0: 0,\n 1: $spacer * .25,\n 2: $spacer * .5,\n 3: $spacer,\n 4: $spacer * 1.5,\n 5: $spacer * 3,\n) !default;\n// scss-docs-end spacer-variables-maps\n\n// Position\n//\n// Define the edge positioning anchors of the position utilities.\n\n// scss-docs-start position-map\n$position-values: (\n 0: 0,\n 50: 50%,\n 100: 100%\n) !default;\n// scss-docs-end position-map\n\n// Body\n//\n// Settings for the `` element.\n\n$body-text-align: null !default;\n$body-color: $gray-900 !default;\n$body-bg: $white !default;\n\n$body-secondary-color: rgba($body-color, .75) !default;\n$body-secondary-bg: $gray-200 !default;\n\n$body-tertiary-color: rgba($body-color, .5) !default;\n$body-tertiary-bg: $gray-100 !default;\n\n$body-emphasis-color: $black !default;\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: $primary !default;\n$link-decoration: underline !default;\n$link-shade-percentage: 20% !default;\n$link-hover-color: shift-color($link-color, $link-shade-percentage) !default;\n$link-hover-decoration: null !default;\n\n$stretched-link-pseudo-element: after !default;\n$stretched-link-z-index: 1 !default;\n\n// Icon links\n// scss-docs-start icon-link-variables\n$icon-link-gap: .375rem !default;\n$icon-link-underline-offset: .25em !default;\n$icon-link-icon-size: 1em !default;\n$icon-link-icon-transition: .2s ease-in-out transform !default;\n$icon-link-icon-transform: translate3d(.25em, 0, 0) !default;\n// scss-docs-end icon-link-variables\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n// scss-docs-start grid-breakpoints\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px,\n xxl: 1400px\n) !default;\n// scss-docs-end grid-breakpoints\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints, \"$grid-breakpoints\");\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n// scss-docs-start container-max-widths\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px,\n xxl: 1320px\n) !default;\n// scss-docs-end container-max-widths\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 1.5rem !default;\n$grid-row-columns: 6 !default;\n\n// Container padding\n\n$container-padding-x: $grid-gutter-width !default;\n\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n// scss-docs-start border-variables\n$border-width: 1px !default;\n$border-widths: (\n 1: 1px,\n 2: 2px,\n 3: 3px,\n 4: 4px,\n 5: 5px\n) !default;\n$border-style: solid !default;\n$border-color: $gray-300 !default;\n$border-color-translucent: rgba($black, .175) !default;\n// scss-docs-end border-variables\n\n// scss-docs-start border-radius-variables\n$border-radius: .375rem !default;\n$border-radius-sm: .25rem !default;\n$border-radius-lg: .5rem !default;\n$border-radius-xl: 1rem !default;\n$border-radius-xxl: 2rem !default;\n$border-radius-pill: 50rem !default;\n// scss-docs-end border-radius-variables\n// fusv-disable\n$border-radius-2xl: $border-radius-xxl !default; // Deprecated in v5.3.0\n// fusv-enable\n\n// scss-docs-start box-shadow-variables\n$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;\n$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;\n$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;\n$box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default;\n// scss-docs-end box-shadow-variables\n\n$component-active-color: $white !default;\n$component-active-bg: $primary !default;\n\n// scss-docs-start focus-ring-variables\n$focus-ring-width: .25rem !default;\n$focus-ring-opacity: .25 !default;\n$focus-ring-color: rgba($primary, $focus-ring-opacity) !default;\n$focus-ring-blur: 0 !default;\n$focus-ring-box-shadow: 0 0 $focus-ring-blur $focus-ring-width $focus-ring-color !default;\n// scss-docs-end focus-ring-variables\n\n// scss-docs-start caret-variables\n$caret-width: .3em !default;\n$caret-vertical-align: $caret-width * .85 !default;\n$caret-spacing: $caret-width * .85 !default;\n// scss-docs-end caret-variables\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n// scss-docs-start collapse-transition\n$transition-collapse: height .35s ease !default;\n$transition-collapse-width: width .35s ease !default;\n// scss-docs-end collapse-transition\n\n// stylelint-disable function-disallowed-list\n// scss-docs-start aspect-ratios\n$aspect-ratios: (\n \"1x1\": 100%,\n \"4x3\": calc(3 / 4 * 100%),\n \"16x9\": calc(9 / 16 * 100%),\n \"21x9\": calc(9 / 21 * 100%)\n) !default;\n// scss-docs-end aspect-ratios\n// stylelint-enable function-disallowed-list\n\n// Typography\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// scss-docs-start font-variables\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n// stylelint-enable value-keyword-case\n$font-family-base: var(--#{$prefix}font-sans-serif) !default;\n$font-family-code: var(--#{$prefix}font-monospace) !default;\n\n// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins\n// $font-size-base affects the font size of the body text\n$font-size-root: null !default;\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-sm: $font-size-base * .875 !default;\n$font-size-lg: $font-size-base * 1.25 !default;\n\n$font-weight-lighter: lighter !default;\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-medium: 500 !default;\n$font-weight-semibold: 600 !default;\n$font-weight-bold: 700 !default;\n$font-weight-bolder: bolder !default;\n\n$font-weight-base: $font-weight-normal !default;\n\n$line-height-base: 1.5 !default;\n$line-height-sm: 1.25 !default;\n$line-height-lg: 2 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n// scss-docs-end font-variables\n\n// scss-docs-start font-sizes\n$font-sizes: (\n 1: $h1-font-size,\n 2: $h2-font-size,\n 3: $h3-font-size,\n 4: $h4-font-size,\n 5: $h5-font-size,\n 6: $h6-font-size\n) !default;\n// scss-docs-end font-sizes\n\n// scss-docs-start headings-variables\n$headings-margin-bottom: $spacer * .5 !default;\n$headings-font-family: null !default;\n$headings-font-style: null !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: inherit !default;\n// scss-docs-end headings-variables\n\n// scss-docs-start display-headings\n$display-font-sizes: (\n 1: 5rem,\n 2: 4.5rem,\n 3: 4rem,\n 4: 3.5rem,\n 5: 3rem,\n 6: 2.5rem\n) !default;\n\n$display-font-family: null !default;\n$display-font-style: null !default;\n$display-font-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n// scss-docs-end display-headings\n\n// scss-docs-start type-variables\n$lead-font-size: $font-size-base * 1.25 !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: .875em !default;\n\n$sub-sup-font-size: .75em !default;\n\n// fusv-disable\n$text-muted: var(--#{$prefix}secondary-color) !default; // Deprecated in 5.3.0\n// fusv-enable\n\n$initialism-font-size: $small-font-size !default;\n\n$blockquote-margin-y: $spacer !default;\n$blockquote-font-size: $font-size-base * 1.25 !default;\n$blockquote-footer-color: $gray-600 !default;\n$blockquote-footer-font-size: $small-font-size !default;\n\n$hr-margin-y: $spacer !default;\n$hr-color: inherit !default;\n\n// fusv-disable\n$hr-bg-color: null !default; // Deprecated in v5.2.0\n$hr-height: null !default; // Deprecated in v5.2.0\n// fusv-enable\n\n$hr-border-color: null !default; // Allows for inherited colors\n$hr-border-width: var(--#{$prefix}border-width) !default;\n$hr-opacity: .25 !default;\n\n// scss-docs-start vr-variables\n$vr-border-width: var(--#{$prefix}border-width) !default;\n// scss-docs-end vr-variables\n\n$legend-margin-bottom: .5rem !default;\n$legend-font-size: 1.5rem !default;\n$legend-font-weight: null !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-padding: .1875em !default;\n$mark-color: $body-color !default;\n$mark-bg: $yellow-100 !default;\n// scss-docs-end type-variables\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n// scss-docs-start table-variables\n$table-cell-padding-y: .5rem !default;\n$table-cell-padding-x: .5rem !default;\n$table-cell-padding-y-sm: .25rem !default;\n$table-cell-padding-x-sm: .25rem !default;\n\n$table-cell-vertical-align: top !default;\n\n$table-color: var(--#{$prefix}emphasis-color) !default;\n$table-bg: var(--#{$prefix}body-bg) !default;\n$table-accent-bg: transparent !default;\n\n$table-th-font-weight: null !default;\n\n$table-striped-color: $table-color !default;\n$table-striped-bg-factor: .05 !default;\n$table-striped-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-striped-bg-factor) !default;\n\n$table-active-color: $table-color !default;\n$table-active-bg-factor: .1 !default;\n$table-active-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-active-bg-factor) !default;\n\n$table-hover-color: $table-color !default;\n$table-hover-bg-factor: .075 !default;\n$table-hover-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-hover-bg-factor) !default;\n\n$table-border-factor: .2 !default;\n$table-border-width: var(--#{$prefix}border-width) !default;\n$table-border-color: var(--#{$prefix}border-color) !default;\n\n$table-striped-order: odd !default;\n$table-striped-columns-order: even !default;\n\n$table-group-separator-color: currentcolor !default;\n\n$table-caption-color: var(--#{$prefix}secondary-color) !default;\n\n$table-bg-scale: -80% !default;\n// scss-docs-end table-variables\n\n// scss-docs-start table-loop\n$table-variants: (\n \"primary\": shift-color($primary, $table-bg-scale),\n \"secondary\": shift-color($secondary, $table-bg-scale),\n \"success\": shift-color($success, $table-bg-scale),\n \"info\": shift-color($info, $table-bg-scale),\n \"warning\": shift-color($warning, $table-bg-scale),\n \"danger\": shift-color($danger, $table-bg-scale),\n \"light\": $light,\n \"dark\": $dark,\n) !default;\n// scss-docs-end table-loop\n\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n// scss-docs-start input-btn-variables\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-font-family: null !default;\n$input-btn-font-size: $font-size-base !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: $focus-ring-width !default;\n$input-btn-focus-color-opacity: $focus-ring-opacity !default;\n$input-btn-focus-color: $focus-ring-color !default;\n$input-btn-focus-blur: $focus-ring-blur !default;\n$input-btn-focus-box-shadow: $focus-ring-box-shadow !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-font-size-sm: $font-size-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-font-size-lg: $font-size-lg !default;\n\n$input-btn-border-width: var(--#{$prefix}border-width) !default;\n// scss-docs-end input-btn-variables\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n// scss-docs-start btn-variables\n$btn-color: var(--#{$prefix}body-color) !default;\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-font-family: $input-btn-font-family !default;\n$btn-font-size: $input-btn-font-size !default;\n$btn-line-height: $input-btn-line-height !default;\n$btn-white-space: null !default; // Set to `nowrap` to prevent text wrapping\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-font-size-sm: $input-btn-font-size-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-font-size-lg: $input-btn-font-size-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-color: var(--#{$prefix}link-color) !default;\n$btn-link-hover-color: var(--#{$prefix}link-hover-color) !default;\n$btn-link-disabled-color: $gray-600 !default;\n$btn-link-focus-shadow-rgb: to-rgb(mix(color-contrast($link-color), $link-color, 15%)) !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: var(--#{$prefix}border-radius) !default;\n$btn-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;\n$btn-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$btn-hover-bg-shade-amount: 15% !default;\n$btn-hover-bg-tint-amount: 15% !default;\n$btn-hover-border-shade-amount: 20% !default;\n$btn-hover-border-tint-amount: 10% !default;\n$btn-active-bg-shade-amount: 20% !default;\n$btn-active-bg-tint-amount: 20% !default;\n$btn-active-border-shade-amount: 25% !default;\n$btn-active-border-tint-amount: 10% !default;\n// scss-docs-end btn-variables\n\n\n// Forms\n\n// scss-docs-start form-text-variables\n$form-text-margin-top: .25rem !default;\n$form-text-font-size: $small-font-size !default;\n$form-text-font-style: null !default;\n$form-text-font-weight: null !default;\n$form-text-color: var(--#{$prefix}secondary-color) !default;\n// scss-docs-end form-text-variables\n\n// scss-docs-start form-label-variables\n$form-label-margin-bottom: .5rem !default;\n$form-label-font-size: null !default;\n$form-label-font-style: null !default;\n$form-label-font-weight: null !default;\n$form-label-color: null !default;\n// scss-docs-end form-label-variables\n\n// scss-docs-start form-input-variables\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-font-family: $input-btn-font-family !default;\n$input-font-size: $input-btn-font-size !default;\n$input-font-weight: $font-weight-base !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-font-size-sm: $input-btn-font-size-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-font-size-lg: $input-btn-font-size-lg !default;\n\n$input-bg: var(--#{$prefix}body-bg) !default;\n$input-disabled-color: null !default;\n$input-disabled-bg: var(--#{$prefix}secondary-bg) !default;\n$input-disabled-border-color: null !default;\n\n$input-color: var(--#{$prefix}body-color) !default;\n$input-border-color: var(--#{$prefix}border-color) !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n\n$input-border-radius: var(--#{$prefix}border-radius) !default;\n$input-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;\n$input-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: tint-color($component-active-bg, 50%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: var(--#{$prefix}secondary-color) !default;\n$input-plaintext-color: var(--#{$prefix}body-color) !default;\n\n$input-height-border: calc(#{$input-border-width} * 2) !default; // stylelint-disable-line function-disallowed-list\n\n$input-height-inner: add($input-line-height * 1em, $input-padding-y * 2) !default;\n$input-height-inner-half: add($input-line-height * .5em, $input-padding-y) !default;\n$input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y * .5) !default;\n\n$input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default;\n$input-height-sm: add($input-line-height * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;\n$input-height-lg: add($input-line-height * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-color-width: 3rem !default;\n// scss-docs-end form-input-variables\n\n// scss-docs-start form-check-variables\n$form-check-input-width: 1em !default;\n$form-check-min-height: $font-size-base * $line-height-base !default;\n$form-check-padding-start: $form-check-input-width + .5em !default;\n$form-check-margin-bottom: .125rem !default;\n$form-check-label-color: null !default;\n$form-check-label-cursor: null !default;\n$form-check-transition: null !default;\n\n$form-check-input-active-filter: brightness(90%) !default;\n\n$form-check-input-bg: $input-bg !default;\n$form-check-input-border: var(--#{$prefix}border-width) solid var(--#{$prefix}border-color) !default;\n$form-check-input-border-radius: .25em !default;\n$form-check-radio-border-radius: 50% !default;\n$form-check-input-focus-border: $input-focus-border-color !default;\n$form-check-input-focus-box-shadow: $focus-ring-box-shadow !default;\n\n$form-check-input-checked-color: $component-active-color !default;\n$form-check-input-checked-bg-color: $component-active-bg !default;\n$form-check-input-checked-border-color: $form-check-input-checked-bg-color !default;\n$form-check-input-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-check-radio-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-check-input-indeterminate-color: $component-active-color !default;\n$form-check-input-indeterminate-bg-color: $component-active-bg !default;\n$form-check-input-indeterminate-border-color: $form-check-input-indeterminate-bg-color !default;\n$form-check-input-indeterminate-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-check-input-disabled-opacity: .5 !default;\n$form-check-label-disabled-opacity: $form-check-input-disabled-opacity !default;\n$form-check-btn-check-disabled-opacity: $btn-disabled-opacity !default;\n\n$form-check-inline-margin-end: 1rem !default;\n// scss-docs-end form-check-variables\n\n// scss-docs-start form-switch-variables\n$form-switch-color: rgba($black, .25) !default;\n$form-switch-width: 2em !default;\n$form-switch-padding-start: $form-switch-width + .5em !default;\n$form-switch-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-switch-border-radius: $form-switch-width !default;\n$form-switch-transition: background-position .15s ease-in-out !default;\n\n$form-switch-focus-color: $input-focus-border-color !default;\n$form-switch-focus-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-switch-checked-color: $component-active-color !default;\n$form-switch-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-switch-checked-bg-position: right center !default;\n// scss-docs-end form-switch-variables\n\n// scss-docs-start input-group-variables\n$input-group-addon-padding-y: $input-padding-y !default;\n$input-group-addon-padding-x: $input-padding-x !default;\n$input-group-addon-font-weight: $input-font-weight !default;\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: var(--#{$prefix}tertiary-bg) !default;\n$input-group-addon-border-color: $input-border-color !default;\n// scss-docs-end input-group-variables\n\n// scss-docs-start form-select-variables\n$form-select-padding-y: $input-padding-y !default;\n$form-select-padding-x: $input-padding-x !default;\n$form-select-font-family: $input-font-family !default;\n$form-select-font-size: $input-font-size !default;\n$form-select-indicator-padding: $form-select-padding-x * 3 !default; // Extra padding for background-image\n$form-select-font-weight: $input-font-weight !default;\n$form-select-line-height: $input-line-height !default;\n$form-select-color: $input-color !default;\n$form-select-bg: $input-bg !default;\n$form-select-disabled-color: null !default;\n$form-select-disabled-bg: $input-disabled-bg !default;\n$form-select-disabled-border-color: $input-disabled-border-color !default;\n$form-select-bg-position: right $form-select-padding-x center !default;\n$form-select-bg-size: 16px 12px !default; // In pixels because image dimensions\n$form-select-indicator-color: $gray-800 !default;\n$form-select-indicator: url(\"data:image/svg+xml,\") !default;\n\n$form-select-feedback-icon-padding-end: $form-select-padding-x * 2.5 + $form-select-indicator-padding !default;\n$form-select-feedback-icon-position: center right $form-select-indicator-padding !default;\n$form-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;\n\n$form-select-border-width: $input-border-width !default;\n$form-select-border-color: $input-border-color !default;\n$form-select-border-radius: $input-border-radius !default;\n$form-select-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n\n$form-select-focus-border-color: $input-focus-border-color !default;\n$form-select-focus-width: $input-focus-width !default;\n$form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focus-color !default;\n\n$form-select-padding-y-sm: $input-padding-y-sm !default;\n$form-select-padding-x-sm: $input-padding-x-sm !default;\n$form-select-font-size-sm: $input-font-size-sm !default;\n$form-select-border-radius-sm: $input-border-radius-sm !default;\n\n$form-select-padding-y-lg: $input-padding-y-lg !default;\n$form-select-padding-x-lg: $input-padding-x-lg !default;\n$form-select-font-size-lg: $input-font-size-lg !default;\n$form-select-border-radius-lg: $input-border-radius-lg !default;\n\n$form-select-transition: $input-transition !default;\n// scss-docs-end form-select-variables\n\n// scss-docs-start form-range-variables\n$form-range-track-width: 100% !default;\n$form-range-track-height: .5rem !default;\n$form-range-track-cursor: pointer !default;\n$form-range-track-bg: var(--#{$prefix}secondary-bg) !default;\n$form-range-track-border-radius: 1rem !default;\n$form-range-track-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n\n$form-range-thumb-width: 1rem !default;\n$form-range-thumb-height: $form-range-thumb-width !default;\n$form-range-thumb-bg: $component-active-bg !default;\n$form-range-thumb-border: 0 !default;\n$form-range-thumb-border-radius: 1rem !default;\n$form-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;\n$form-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;\n$form-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in Edge\n$form-range-thumb-active-bg: tint-color($component-active-bg, 70%) !default;\n$form-range-thumb-disabled-bg: var(--#{$prefix}secondary-color) !default;\n$form-range-thumb-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n// scss-docs-end form-range-variables\n\n// scss-docs-start form-file-variables\n$form-file-button-color: $input-color !default;\n$form-file-button-bg: var(--#{$prefix}tertiary-bg) !default;\n$form-file-button-hover-bg: var(--#{$prefix}secondary-bg) !default;\n// scss-docs-end form-file-variables\n\n// scss-docs-start form-floating-variables\n$form-floating-height: add(3.5rem, $input-height-border) !default;\n$form-floating-line-height: 1.25 !default;\n$form-floating-padding-x: $input-padding-x !default;\n$form-floating-padding-y: 1rem !default;\n$form-floating-input-padding-t: 1.625rem !default;\n$form-floating-input-padding-b: .625rem !default;\n$form-floating-label-height: 1.5em !default;\n$form-floating-label-opacity: .65 !default;\n$form-floating-label-transform: scale(.85) translateY(-.5rem) translateX(.15rem) !default;\n$form-floating-label-disabled-color: $gray-600 !default;\n$form-floating-transition: opacity .1s ease-in-out, transform .1s ease-in-out !default;\n// scss-docs-end form-floating-variables\n\n// Form validation\n\n// scss-docs-start form-feedback-variables\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $form-text-font-size !default;\n$form-feedback-font-style: $form-text-font-style !default;\n$form-feedback-valid-color: $success !default;\n$form-feedback-invalid-color: $danger !default;\n\n$form-feedback-icon-valid-color: $form-feedback-valid-color !default;\n$form-feedback-icon-valid: url(\"data:image/svg+xml,\") !default;\n$form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;\n$form-feedback-icon-invalid: url(\"data:image/svg+xml,\") !default;\n// scss-docs-end form-feedback-variables\n\n// scss-docs-start form-validation-colors\n$form-valid-color: $form-feedback-valid-color !default;\n$form-valid-border-color: $form-feedback-valid-color !default;\n$form-invalid-color: $form-feedback-invalid-color !default;\n$form-invalid-border-color: $form-feedback-invalid-color !default;\n// scss-docs-end form-validation-colors\n\n// scss-docs-start form-validation-states\n$form-validation-states: (\n \"valid\": (\n \"color\": var(--#{$prefix}form-valid-color),\n \"icon\": $form-feedback-icon-valid,\n \"tooltip-color\": #fff,\n \"tooltip-bg-color\": var(--#{$prefix}success),\n \"focus-box-shadow\": 0 0 $input-btn-focus-blur $input-focus-width rgba(var(--#{$prefix}success-rgb), $input-btn-focus-color-opacity),\n \"border-color\": var(--#{$prefix}form-valid-border-color),\n ),\n \"invalid\": (\n \"color\": var(--#{$prefix}form-invalid-color),\n \"icon\": $form-feedback-icon-invalid,\n \"tooltip-color\": #fff,\n \"tooltip-bg-color\": var(--#{$prefix}danger),\n \"focus-box-shadow\": 0 0 $input-btn-focus-blur $input-focus-width rgba(var(--#{$prefix}danger-rgb), $input-btn-focus-color-opacity),\n \"border-color\": var(--#{$prefix}form-invalid-border-color),\n )\n) !default;\n// scss-docs-end form-validation-states\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n// scss-docs-start zindex-stack\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-offcanvas-backdrop: 1040 !default;\n$zindex-offcanvas: 1045 !default;\n$zindex-modal-backdrop: 1050 !default;\n$zindex-modal: 1055 !default;\n$zindex-popover: 1070 !default;\n$zindex-tooltip: 1080 !default;\n$zindex-toast: 1090 !default;\n// scss-docs-end zindex-stack\n\n// scss-docs-start zindex-levels-map\n$zindex-levels: (\n n1: -1,\n 0: 0,\n 1: 1,\n 2: 2,\n 3: 3\n) !default;\n// scss-docs-end zindex-levels-map\n\n\n// Navs\n\n// scss-docs-start nav-variables\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-font-size: null !default;\n$nav-link-font-weight: null !default;\n$nav-link-color: var(--#{$prefix}link-color) !default;\n$nav-link-hover-color: var(--#{$prefix}link-hover-color) !default;\n$nav-link-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out !default;\n$nav-link-disabled-color: var(--#{$prefix}secondary-color) !default;\n$nav-link-focus-box-shadow: $focus-ring-box-shadow !default;\n\n$nav-tabs-border-color: var(--#{$prefix}border-color) !default;\n$nav-tabs-border-width: var(--#{$prefix}border-width) !default;\n$nav-tabs-border-radius: var(--#{$prefix}border-radius) !default;\n$nav-tabs-link-hover-border-color: var(--#{$prefix}secondary-bg) var(--#{$prefix}secondary-bg) $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: var(--#{$prefix}emphasis-color) !default;\n$nav-tabs-link-active-bg: var(--#{$prefix}body-bg) !default;\n$nav-tabs-link-active-border-color: var(--#{$prefix}border-color) var(--#{$prefix}border-color) $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: var(--#{$prefix}border-radius) !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n\n$nav-underline-gap: 1rem !default;\n$nav-underline-border-width: .125rem !default;\n$nav-underline-link-active-color: var(--#{$prefix}emphasis-color) !default;\n// scss-docs-end nav-variables\n\n\n// Navbar\n\n// scss-docs-start navbar-variables\n$navbar-padding-y: $spacer * .5 !default;\n$navbar-padding-x: null !default;\n\n$navbar-nav-link-padding-x: .5rem !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) * .5 !default;\n$navbar-brand-margin-end: 1rem !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n$navbar-toggler-focus-width: $btn-focus-width !default;\n$navbar-toggler-transition: box-shadow .15s ease-in-out !default;\n\n$navbar-light-color: rgba(var(--#{$prefix}emphasis-color-rgb), .65) !default;\n$navbar-light-hover-color: rgba(var(--#{$prefix}emphasis-color-rgb), .8) !default;\n$navbar-light-active-color: rgba(var(--#{$prefix}emphasis-color-rgb), 1) !default;\n$navbar-light-disabled-color: rgba(var(--#{$prefix}emphasis-color-rgb), .3) !default;\n$navbar-light-icon-color: rgba($body-color, .75) !default;\n$navbar-light-toggler-icon-bg: url(\"data:image/svg+xml,\") !default;\n$navbar-light-toggler-border-color: rgba(var(--#{$prefix}emphasis-color-rgb), .15) !default;\n$navbar-light-brand-color: $navbar-light-active-color !default;\n$navbar-light-brand-hover-color: $navbar-light-active-color !default;\n// scss-docs-end navbar-variables\n\n// scss-docs-start navbar-dark-variables\n$navbar-dark-color: rgba($white, .55) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-icon-color: $navbar-dark-color !default;\n$navbar-dark-toggler-icon-bg: url(\"data:image/svg+xml,\") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n$navbar-dark-brand-color: $navbar-dark-active-color !default;\n$navbar-dark-brand-hover-color: $navbar-dark-active-color !default;\n// scss-docs-end navbar-dark-variables\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n// scss-docs-start dropdown-variables\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-x: 0 !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-font-size: $font-size-base !default;\n$dropdown-color: var(--#{$prefix}body-color) !default;\n$dropdown-bg: var(--#{$prefix}body-bg) !default;\n$dropdown-border-color: var(--#{$prefix}border-color-translucent) !default;\n$dropdown-border-radius: var(--#{$prefix}border-radius) !default;\n$dropdown-border-width: var(--#{$prefix}border-width) !default;\n$dropdown-inner-border-radius: calc(#{$dropdown-border-radius} - #{$dropdown-border-width}) !default; // stylelint-disable-line function-disallowed-list\n$dropdown-divider-bg: $dropdown-border-color !default;\n$dropdown-divider-margin-y: $spacer * .5 !default;\n$dropdown-box-shadow: var(--#{$prefix}box-shadow) !default;\n\n$dropdown-link-color: var(--#{$prefix}body-color) !default;\n$dropdown-link-hover-color: $dropdown-link-color !default;\n$dropdown-link-hover-bg: var(--#{$prefix}tertiary-bg) !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: var(--#{$prefix}tertiary-color) !default;\n\n$dropdown-item-padding-y: $spacer * .25 !default;\n$dropdown-item-padding-x: $spacer !default;\n\n$dropdown-header-color: $gray-600 !default;\n$dropdown-header-padding-x: $dropdown-item-padding-x !default;\n$dropdown-header-padding-y: $dropdown-padding-y !default;\n// fusv-disable\n$dropdown-header-padding: $dropdown-header-padding-y $dropdown-header-padding-x !default; // Deprecated in v5.2.0\n// fusv-enable\n// scss-docs-end dropdown-variables\n\n// scss-docs-start dropdown-dark-variables\n$dropdown-dark-color: $gray-300 !default;\n$dropdown-dark-bg: $gray-800 !default;\n$dropdown-dark-border-color: $dropdown-border-color !default;\n$dropdown-dark-divider-bg: $dropdown-divider-bg !default;\n$dropdown-dark-box-shadow: null !default;\n$dropdown-dark-link-color: $dropdown-dark-color !default;\n$dropdown-dark-link-hover-color: $white !default;\n$dropdown-dark-link-hover-bg: rgba($white, .15) !default;\n$dropdown-dark-link-active-color: $dropdown-link-active-color !default;\n$dropdown-dark-link-active-bg: $dropdown-link-active-bg !default;\n$dropdown-dark-link-disabled-color: $gray-500 !default;\n$dropdown-dark-header-color: $gray-500 !default;\n// scss-docs-end dropdown-dark-variables\n\n\n// Pagination\n\n// scss-docs-start pagination-variables\n$pagination-padding-y: .375rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n\n$pagination-font-size: $font-size-base !default;\n\n$pagination-color: var(--#{$prefix}link-color) !default;\n$pagination-bg: var(--#{$prefix}body-bg) !default;\n$pagination-border-radius: var(--#{$prefix}border-radius) !default;\n$pagination-border-width: var(--#{$prefix}border-width) !default;\n$pagination-margin-start: calc(#{$pagination-border-width} * -1) !default; // stylelint-disable-line function-disallowed-list\n$pagination-border-color: var(--#{$prefix}border-color) !default;\n\n$pagination-focus-color: var(--#{$prefix}link-hover-color) !default;\n$pagination-focus-bg: var(--#{$prefix}secondary-bg) !default;\n$pagination-focus-box-shadow: $focus-ring-box-shadow !default;\n$pagination-focus-outline: 0 !default;\n\n$pagination-hover-color: var(--#{$prefix}link-hover-color) !default;\n$pagination-hover-bg: var(--#{$prefix}tertiary-bg) !default;\n$pagination-hover-border-color: var(--#{$prefix}border-color) !default; // Todo in v6: remove this?\n\n$pagination-active-color: $component-active-color !default;\n$pagination-active-bg: $component-active-bg !default;\n$pagination-active-border-color: $component-active-bg !default;\n\n$pagination-disabled-color: var(--#{$prefix}secondary-color) !default;\n$pagination-disabled-bg: var(--#{$prefix}secondary-bg) !default;\n$pagination-disabled-border-color: var(--#{$prefix}border-color) !default;\n\n$pagination-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$pagination-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;\n$pagination-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;\n// scss-docs-end pagination-variables\n\n\n// Placeholders\n\n// scss-docs-start placeholders\n$placeholder-opacity-max: .5 !default;\n$placeholder-opacity-min: .2 !default;\n// scss-docs-end placeholders\n\n// Cards\n\n// scss-docs-start card-variables\n$card-spacer-y: $spacer !default;\n$card-spacer-x: $spacer !default;\n$card-title-spacer-y: $spacer * .5 !default;\n$card-title-color: null !default;\n$card-subtitle-color: null !default;\n$card-border-width: var(--#{$prefix}border-width) !default;\n$card-border-color: var(--#{$prefix}border-color-translucent) !default;\n$card-border-radius: var(--#{$prefix}border-radius) !default;\n$card-box-shadow: null !default;\n$card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;\n$card-cap-padding-y: $card-spacer-y * .5 !default;\n$card-cap-padding-x: $card-spacer-x !default;\n$card-cap-bg: rgba(var(--#{$prefix}body-color-rgb), .03) !default;\n$card-cap-color: null !default;\n$card-height: null !default;\n$card-color: null !default;\n$card-bg: var(--#{$prefix}body-bg) !default;\n$card-img-overlay-padding: $spacer !default;\n$card-group-margin: $grid-gutter-width * .5 !default;\n// scss-docs-end card-variables\n\n// Accordion\n\n// scss-docs-start accordion-variables\n$accordion-padding-y: 1rem !default;\n$accordion-padding-x: 1.25rem !default;\n$accordion-color: var(--#{$prefix}body-color) !default;\n$accordion-bg: var(--#{$prefix}body-bg) !default;\n$accordion-border-width: var(--#{$prefix}border-width) !default;\n$accordion-border-color: var(--#{$prefix}border-color) !default;\n$accordion-border-radius: var(--#{$prefix}border-radius) !default;\n$accordion-inner-border-radius: subtract($accordion-border-radius, $accordion-border-width) !default;\n\n$accordion-body-padding-y: $accordion-padding-y !default;\n$accordion-body-padding-x: $accordion-padding-x !default;\n\n$accordion-button-padding-y: $accordion-padding-y !default;\n$accordion-button-padding-x: $accordion-padding-x !default;\n$accordion-button-color: var(--#{$prefix}body-color) !default;\n$accordion-button-bg: var(--#{$prefix}accordion-bg) !default;\n$accordion-transition: $btn-transition, border-radius .15s ease !default;\n$accordion-button-active-bg: var(--#{$prefix}primary-bg-subtle) !default;\n$accordion-button-active-color: var(--#{$prefix}primary-text-emphasis) !default;\n\n// fusv-disable\n$accordion-button-focus-border-color: $input-focus-border-color !default; // Deprecated in v5.3.3\n// fusv-enable\n$accordion-button-focus-box-shadow: $btn-focus-box-shadow !default;\n\n$accordion-icon-width: 1.25rem !default;\n$accordion-icon-color: $body-color !default;\n$accordion-icon-active-color: $primary-text-emphasis !default;\n$accordion-icon-transition: transform .2s ease-in-out !default;\n$accordion-icon-transform: rotate(-180deg) !default;\n\n$accordion-button-icon: url(\"data:image/svg+xml,\") !default;\n$accordion-button-active-icon: url(\"data:image/svg+xml,\") !default;\n// scss-docs-end accordion-variables\n\n// Tooltips\n\n// scss-docs-start tooltip-variables\n$tooltip-font-size: $font-size-sm !default;\n$tooltip-max-width: 200px !default;\n$tooltip-color: var(--#{$prefix}body-bg) !default;\n$tooltip-bg: var(--#{$prefix}emphasis-color) !default;\n$tooltip-border-radius: var(--#{$prefix}border-radius) !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: $spacer * .25 !default;\n$tooltip-padding-x: $spacer * .5 !default;\n$tooltip-margin: null !default; // TODO: remove this in v6\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n// fusv-disable\n$tooltip-arrow-color: null !default; // Deprecated in Bootstrap 5.2.0 for CSS variables\n// fusv-enable\n// scss-docs-end tooltip-variables\n\n// Form tooltips must come after regular tooltips\n// scss-docs-start tooltip-feedback-variables\n$form-feedback-tooltip-padding-y: $tooltip-padding-y !default;\n$form-feedback-tooltip-padding-x: $tooltip-padding-x !default;\n$form-feedback-tooltip-font-size: $tooltip-font-size !default;\n$form-feedback-tooltip-line-height: null !default;\n$form-feedback-tooltip-opacity: $tooltip-opacity !default;\n$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;\n// scss-docs-end tooltip-feedback-variables\n\n\n// Popovers\n\n// scss-docs-start popover-variables\n$popover-font-size: $font-size-sm !default;\n$popover-bg: var(--#{$prefix}body-bg) !default;\n$popover-max-width: 276px !default;\n$popover-border-width: var(--#{$prefix}border-width) !default;\n$popover-border-color: var(--#{$prefix}border-color-translucent) !default;\n$popover-border-radius: var(--#{$prefix}border-radius-lg) !default;\n$popover-inner-border-radius: calc(#{$popover-border-radius} - #{$popover-border-width}) !default; // stylelint-disable-line function-disallowed-list\n$popover-box-shadow: var(--#{$prefix}box-shadow) !default;\n\n$popover-header-font-size: $font-size-base !default;\n$popover-header-bg: var(--#{$prefix}secondary-bg) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: $spacer !default;\n\n$popover-body-color: var(--#{$prefix}body-color) !default;\n$popover-body-padding-y: $spacer !default;\n$popover-body-padding-x: $spacer !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n// scss-docs-end popover-variables\n\n// fusv-disable\n// Deprecated in Bootstrap 5.2.0 for CSS variables\n$popover-arrow-color: $popover-bg !default;\n$popover-arrow-outer-color: var(--#{$prefix}border-color-translucent) !default;\n// fusv-enable\n\n\n// Toasts\n\n// scss-docs-start toast-variables\n$toast-max-width: 350px !default;\n$toast-padding-x: .75rem !default;\n$toast-padding-y: .5rem !default;\n$toast-font-size: .875rem !default;\n$toast-color: null !default;\n$toast-background-color: rgba(var(--#{$prefix}body-bg-rgb), .85) !default;\n$toast-border-width: var(--#{$prefix}border-width) !default;\n$toast-border-color: var(--#{$prefix}border-color-translucent) !default;\n$toast-border-radius: var(--#{$prefix}border-radius) !default;\n$toast-box-shadow: var(--#{$prefix}box-shadow) !default;\n$toast-spacing: $container-padding-x !default;\n\n$toast-header-color: var(--#{$prefix}secondary-color) !default;\n$toast-header-background-color: rgba(var(--#{$prefix}body-bg-rgb), .85) !default;\n$toast-header-border-color: $toast-border-color !default;\n// scss-docs-end toast-variables\n\n\n// Badges\n\n// scss-docs-start badge-variables\n$badge-font-size: .75em !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-color: $white !default;\n$badge-padding-y: .35em !default;\n$badge-padding-x: .65em !default;\n$badge-border-radius: var(--#{$prefix}border-radius) !default;\n// scss-docs-end badge-variables\n\n\n// Modals\n\n// scss-docs-start modal-variables\n$modal-inner-padding: $spacer !default;\n\n$modal-footer-margin-between: .5rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-color: null !default;\n$modal-content-bg: var(--#{$prefix}body-bg) !default;\n$modal-content-border-color: var(--#{$prefix}border-color-translucent) !default;\n$modal-content-border-width: var(--#{$prefix}border-width) !default;\n$modal-content-border-radius: var(--#{$prefix}border-radius-lg) !default;\n$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;\n$modal-content-box-shadow-xs: var(--#{$prefix}box-shadow-sm) !default;\n$modal-content-box-shadow-sm-up: var(--#{$prefix}box-shadow) !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n\n$modal-header-border-color: var(--#{$prefix}border-color) !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-header-padding-y: $modal-inner-padding !default;\n$modal-header-padding-x: $modal-inner-padding !default;\n$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility\n\n$modal-footer-bg: null !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n\n$modal-sm: 300px !default;\n$modal-md: 500px !default;\n$modal-lg: 800px !default;\n$modal-xl: 1140px !default;\n\n$modal-fade-transform: translate(0, -50px) !default;\n$modal-show-transform: none !default;\n$modal-transition: transform .3s ease-out !default;\n$modal-scale-transform: scale(1.02) !default;\n// scss-docs-end modal-variables\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n// scss-docs-start alert-variables\n$alert-padding-y: $spacer !default;\n$alert-padding-x: $spacer !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: var(--#{$prefix}border-radius) !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: var(--#{$prefix}border-width) !default;\n$alert-dismissible-padding-r: $alert-padding-x * 3 !default; // 3x covers width of x plus default padding on either side\n// scss-docs-end alert-variables\n\n// fusv-disable\n$alert-bg-scale: -80% !default; // Deprecated in v5.2.0, to be removed in v6\n$alert-border-scale: -70% !default; // Deprecated in v5.2.0, to be removed in v6\n$alert-color-scale: 40% !default; // Deprecated in v5.2.0, to be removed in v6\n// fusv-enable\n\n// Progress bars\n\n// scss-docs-start progress-variables\n$progress-height: 1rem !default;\n$progress-font-size: $font-size-base * .75 !default;\n$progress-bg: var(--#{$prefix}secondary-bg) !default;\n$progress-border-radius: var(--#{$prefix}border-radius) !default;\n$progress-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: $primary !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n// scss-docs-end progress-variables\n\n\n// List group\n\n// scss-docs-start list-group-variables\n$list-group-color: var(--#{$prefix}body-color) !default;\n$list-group-bg: var(--#{$prefix}body-bg) !default;\n$list-group-border-color: var(--#{$prefix}border-color) !default;\n$list-group-border-width: var(--#{$prefix}border-width) !default;\n$list-group-border-radius: var(--#{$prefix}border-radius) !default;\n\n$list-group-item-padding-y: $spacer * .5 !default;\n$list-group-item-padding-x: $spacer !default;\n// fusv-disable\n$list-group-item-bg-scale: -80% !default; // Deprecated in v5.3.0\n$list-group-item-color-scale: 40% !default; // Deprecated in v5.3.0\n// fusv-enable\n\n$list-group-hover-bg: var(--#{$prefix}tertiary-bg) !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: var(--#{$prefix}secondary-color) !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: var(--#{$prefix}secondary-color) !default;\n$list-group-action-hover-color: var(--#{$prefix}emphasis-color) !default;\n\n$list-group-action-active-color: var(--#{$prefix}body-color) !default;\n$list-group-action-active-bg: var(--#{$prefix}secondary-bg) !default;\n// scss-docs-end list-group-variables\n\n\n// Image thumbnails\n\n// scss-docs-start thumbnail-variables\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: var(--#{$prefix}body-bg) !default;\n$thumbnail-border-width: var(--#{$prefix}border-width) !default;\n$thumbnail-border-color: var(--#{$prefix}border-color) !default;\n$thumbnail-border-radius: var(--#{$prefix}border-radius) !default;\n$thumbnail-box-shadow: var(--#{$prefix}box-shadow-sm) !default;\n// scss-docs-end thumbnail-variables\n\n\n// Figures\n\n// scss-docs-start figure-variables\n$figure-caption-font-size: $small-font-size !default;\n$figure-caption-color: var(--#{$prefix}secondary-color) !default;\n// scss-docs-end figure-variables\n\n\n// Breadcrumbs\n\n// scss-docs-start breadcrumb-variables\n$breadcrumb-font-size: null !default;\n$breadcrumb-padding-y: 0 !default;\n$breadcrumb-padding-x: 0 !default;\n$breadcrumb-item-padding-x: .5rem !default;\n$breadcrumb-margin-bottom: 1rem !default;\n$breadcrumb-bg: null !default;\n$breadcrumb-divider-color: var(--#{$prefix}secondary-color) !default;\n$breadcrumb-active-color: var(--#{$prefix}secondary-color) !default;\n$breadcrumb-divider: quote(\"/\") !default;\n$breadcrumb-divider-flipped: $breadcrumb-divider !default;\n$breadcrumb-border-radius: null !default;\n// scss-docs-end breadcrumb-variables\n\n// Carousel\n\n// scss-docs-start carousel-variables\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n$carousel-control-hover-opacity: .9 !default;\n$carousel-control-transition: opacity .15s ease !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-hit-area-height: 10px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-opacity: .5 !default;\n$carousel-indicator-active-bg: $white !default;\n$carousel-indicator-active-opacity: 1 !default;\n$carousel-indicator-transition: opacity .6s ease !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n$carousel-caption-padding-y: 1.25rem !default;\n$carousel-caption-spacer: 1.25rem !default;\n\n$carousel-control-icon-width: 2rem !default;\n\n$carousel-control-prev-icon-bg: url(\"data:image/svg+xml,\") !default;\n$carousel-control-next-icon-bg: url(\"data:image/svg+xml,\") !default;\n\n$carousel-transition-duration: .6s !default;\n$carousel-transition: transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)\n// scss-docs-end carousel-variables\n\n// scss-docs-start carousel-dark-variables\n$carousel-dark-indicator-active-bg: $black !default;\n$carousel-dark-caption-color: $black !default;\n$carousel-dark-control-icon-filter: invert(1) grayscale(100) !default;\n// scss-docs-end carousel-dark-variables\n\n\n// Spinners\n\n// scss-docs-start spinner-variables\n$spinner-width: 2rem !default;\n$spinner-height: $spinner-width !default;\n$spinner-vertical-align: -.125em !default;\n$spinner-border-width: .25em !default;\n$spinner-animation-speed: .75s !default;\n\n$spinner-width-sm: 1rem !default;\n$spinner-height-sm: $spinner-width-sm !default;\n$spinner-border-width-sm: .2em !default;\n// scss-docs-end spinner-variables\n\n\n// Close\n\n// scss-docs-start close-variables\n$btn-close-width: 1em !default;\n$btn-close-height: $btn-close-width !default;\n$btn-close-padding-x: .25em !default;\n$btn-close-padding-y: $btn-close-padding-x !default;\n$btn-close-color: $black !default;\n$btn-close-bg: url(\"data:image/svg+xml,\") !default;\n$btn-close-focus-shadow: $focus-ring-box-shadow !default;\n$btn-close-opacity: .5 !default;\n$btn-close-hover-opacity: .75 !default;\n$btn-close-focus-opacity: 1 !default;\n$btn-close-disabled-opacity: .25 !default;\n$btn-close-white-filter: invert(1) grayscale(100%) brightness(200%) !default;\n// scss-docs-end close-variables\n\n\n// Offcanvas\n\n// scss-docs-start offcanvas-variables\n$offcanvas-padding-y: $modal-inner-padding !default;\n$offcanvas-padding-x: $modal-inner-padding !default;\n$offcanvas-horizontal-width: 400px !default;\n$offcanvas-vertical-height: 30vh !default;\n$offcanvas-transition-duration: .3s !default;\n$offcanvas-border-color: $modal-content-border-color !default;\n$offcanvas-border-width: $modal-content-border-width !default;\n$offcanvas-title-line-height: $modal-title-line-height !default;\n$offcanvas-bg-color: var(--#{$prefix}body-bg) !default;\n$offcanvas-color: var(--#{$prefix}body-color) !default;\n$offcanvas-box-shadow: $modal-content-box-shadow-xs !default;\n$offcanvas-backdrop-bg: $modal-backdrop-bg !default;\n$offcanvas-backdrop-opacity: $modal-backdrop-opacity !default;\n// scss-docs-end offcanvas-variables\n\n// Code\n\n$code-font-size: $small-font-size !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .1875rem !default;\n$kbd-padding-x: .375rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: var(--#{$prefix}body-bg) !default;\n$kbd-bg: var(--#{$prefix}body-color) !default;\n$nested-kbd-font-weight: null !default; // Deprecated in v5.2.0, removing in v6\n\n$pre-color: null !default;\n\n@import \"variables-dark\"; // TODO: can be removed safely in v6, only here to avoid breaking changes in v5.3\n","// Row\n//\n// Rows contain your columns.\n\n:root {\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n // TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed\n margin-top: calc(-1 * var(--#{$prefix}gutter-y)); // stylelint-disable-line function-disallowed-list\n margin-right: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n margin-left: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready() {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// number of columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: percentage(divide(1, $count));\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is an invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix: \"\", $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // Use custom CSS variable name if present, otherwise default to `class`\n $css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (e.g. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]} \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.rtl.min.css b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.rtl.min.css new file mode 100644 index 000000000..672cbc2e6 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.rtl.min.css @@ -0,0 +1,6 @@ +/*! + * Bootstrap Grid v5.3.3 (https://getbootstrap.com/) + * Copyright 2011-2024 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-left:calc(var(--bs-gutter-x) * .5);padding-right:calc(var(--bs-gutter-x) * .5);margin-left:auto;margin-right:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-left:calc(-.5 * var(--bs-gutter-x));margin-right:calc(-.5 * var(--bs-gutter-x))}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-left:calc(var(--bs-gutter-x) * .5);padding-right:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.66666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-right:8.33333333%}.offset-2{margin-right:16.66666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.33333333%}.offset-5{margin-right:41.66666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.33333333%}.offset-8{margin-right:66.66666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.33333333%}.offset-11{margin-right:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.66666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.33333333%}.offset-sm-2{margin-right:16.66666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.33333333%}.offset-sm-5{margin-right:41.66666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.33333333%}.offset-sm-8{margin-right:66.66666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.33333333%}.offset-sm-11{margin-right:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.66666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.33333333%}.offset-md-2{margin-right:16.66666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.33333333%}.offset-md-5{margin-right:41.66666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.33333333%}.offset-md-8{margin-right:66.66666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.33333333%}.offset-md-11{margin-right:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.66666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.33333333%}.offset-lg-2{margin-right:16.66666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.33333333%}.offset-lg-5{margin-right:41.66666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.33333333%}.offset-lg-8{margin-right:66.66666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.33333333%}.offset-lg-11{margin-right:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.66666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.33333333%}.offset-xl-2{margin-right:16.66666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.33333333%}.offset-xl-5{margin-right:41.66666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.33333333%}.offset-xl-8{margin-right:66.66666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.33333333%}.offset-xl-11{margin-right:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.66666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-right:0}.offset-xxl-1{margin-right:8.33333333%}.offset-xxl-2{margin-right:16.66666667%}.offset-xxl-3{margin-right:25%}.offset-xxl-4{margin-right:33.33333333%}.offset-xxl-5{margin-right:41.66666667%}.offset-xxl-6{margin-right:50%}.offset-xxl-7{margin-right:58.33333333%}.offset-xxl-8{margin-right:66.66666667%}.offset-xxl-9{margin-right:75%}.offset-xxl-10{margin-right:83.33333333%}.offset-xxl-11{margin-right:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:3rem!important;margin-right:3rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-left:0!important}.me-1{margin-left:.25rem!important}.me-2{margin-left:.5rem!important}.me-3{margin-left:1rem!important}.me-4{margin-left:1.5rem!important}.me-5{margin-left:3rem!important}.me-auto{margin-left:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-right:0!important}.ms-1{margin-right:.25rem!important}.ms-2{margin-right:.5rem!important}.ms-3{margin-right:1rem!important}.ms-4{margin-right:1.5rem!important}.ms-5{margin-right:3rem!important}.ms-auto{margin-right:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:3rem!important;padding-right:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-left:0!important}.pe-1{padding-left:.25rem!important}.pe-2{padding-left:.5rem!important}.pe-3{padding-left:1rem!important}.pe-4{padding-left:1.5rem!important}.pe-5{padding-left:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-right:0!important}.ps-1{padding-right:.25rem!important}.ps-2{padding-right:.5rem!important}.ps-3{padding-right:1rem!important}.ps-4{padding-right:1.5rem!important}.ps-5{padding-right:3rem!important}@media (min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-left:0!important;margin-right:0!important}.mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-sm-3{margin-left:1rem!important;margin-right:1rem!important}.mx-sm-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-sm-5{margin-left:3rem!important;margin-right:3rem!important}.mx-sm-auto{margin-left:auto!important;margin-right:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-left:0!important}.me-sm-1{margin-left:.25rem!important}.me-sm-2{margin-left:.5rem!important}.me-sm-3{margin-left:1rem!important}.me-sm-4{margin-left:1.5rem!important}.me-sm-5{margin-left:3rem!important}.me-sm-auto{margin-left:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-right:0!important}.ms-sm-1{margin-right:.25rem!important}.ms-sm-2{margin-right:.5rem!important}.ms-sm-3{margin-right:1rem!important}.ms-sm-4{margin-right:1.5rem!important}.ms-sm-5{margin-right:3rem!important}.ms-sm-auto{margin-right:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-left:0!important;padding-right:0!important}.px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-sm-3{padding-left:1rem!important;padding-right:1rem!important}.px-sm-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-sm-5{padding-left:3rem!important;padding-right:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-left:0!important}.pe-sm-1{padding-left:.25rem!important}.pe-sm-2{padding-left:.5rem!important}.pe-sm-3{padding-left:1rem!important}.pe-sm-4{padding-left:1.5rem!important}.pe-sm-5{padding-left:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-right:0!important}.ps-sm-1{padding-right:.25rem!important}.ps-sm-2{padding-right:.5rem!important}.ps-sm-3{padding-right:1rem!important}.ps-sm-4{padding-right:1.5rem!important}.ps-sm-5{padding-right:3rem!important}}@media (min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-left:0!important;margin-right:0!important}.mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-md-3{margin-left:1rem!important;margin-right:1rem!important}.mx-md-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-md-5{margin-left:3rem!important;margin-right:3rem!important}.mx-md-auto{margin-left:auto!important;margin-right:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-left:0!important}.me-md-1{margin-left:.25rem!important}.me-md-2{margin-left:.5rem!important}.me-md-3{margin-left:1rem!important}.me-md-4{margin-left:1.5rem!important}.me-md-5{margin-left:3rem!important}.me-md-auto{margin-left:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-right:0!important}.ms-md-1{margin-right:.25rem!important}.ms-md-2{margin-right:.5rem!important}.ms-md-3{margin-right:1rem!important}.ms-md-4{margin-right:1.5rem!important}.ms-md-5{margin-right:3rem!important}.ms-md-auto{margin-right:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-left:0!important;padding-right:0!important}.px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-md-3{padding-left:1rem!important;padding-right:1rem!important}.px-md-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-md-5{padding-left:3rem!important;padding-right:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-left:0!important}.pe-md-1{padding-left:.25rem!important}.pe-md-2{padding-left:.5rem!important}.pe-md-3{padding-left:1rem!important}.pe-md-4{padding-left:1.5rem!important}.pe-md-5{padding-left:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-right:0!important}.ps-md-1{padding-right:.25rem!important}.ps-md-2{padding-right:.5rem!important}.ps-md-3{padding-right:1rem!important}.ps-md-4{padding-right:1.5rem!important}.ps-md-5{padding-right:3rem!important}}@media (min-width:992px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-left:0!important;margin-right:0!important}.mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-lg-3{margin-left:1rem!important;margin-right:1rem!important}.mx-lg-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-lg-5{margin-left:3rem!important;margin-right:3rem!important}.mx-lg-auto{margin-left:auto!important;margin-right:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-left:0!important}.me-lg-1{margin-left:.25rem!important}.me-lg-2{margin-left:.5rem!important}.me-lg-3{margin-left:1rem!important}.me-lg-4{margin-left:1.5rem!important}.me-lg-5{margin-left:3rem!important}.me-lg-auto{margin-left:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-right:0!important}.ms-lg-1{margin-right:.25rem!important}.ms-lg-2{margin-right:.5rem!important}.ms-lg-3{margin-right:1rem!important}.ms-lg-4{margin-right:1.5rem!important}.ms-lg-5{margin-right:3rem!important}.ms-lg-auto{margin-right:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-left:0!important;padding-right:0!important}.px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-lg-3{padding-left:1rem!important;padding-right:1rem!important}.px-lg-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-lg-5{padding-left:3rem!important;padding-right:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-left:0!important}.pe-lg-1{padding-left:.25rem!important}.pe-lg-2{padding-left:.5rem!important}.pe-lg-3{padding-left:1rem!important}.pe-lg-4{padding-left:1.5rem!important}.pe-lg-5{padding-left:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-right:0!important}.ps-lg-1{padding-right:.25rem!important}.ps-lg-2{padding-right:.5rem!important}.ps-lg-3{padding-right:1rem!important}.ps-lg-4{padding-right:1.5rem!important}.ps-lg-5{padding-right:3rem!important}}@media (min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-left:0!important;margin-right:0!important}.mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xl-auto{margin-left:auto!important;margin-right:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-left:0!important}.me-xl-1{margin-left:.25rem!important}.me-xl-2{margin-left:.5rem!important}.me-xl-3{margin-left:1rem!important}.me-xl-4{margin-left:1.5rem!important}.me-xl-5{margin-left:3rem!important}.me-xl-auto{margin-left:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-right:0!important}.ms-xl-1{margin-right:.25rem!important}.ms-xl-2{margin-right:.5rem!important}.ms-xl-3{margin-right:1rem!important}.ms-xl-4{margin-right:1.5rem!important}.ms-xl-5{margin-right:3rem!important}.ms-xl-auto{margin-right:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-left:0!important;padding-right:0!important}.px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-left:0!important}.pe-xl-1{padding-left:.25rem!important}.pe-xl-2{padding-left:.5rem!important}.pe-xl-3{padding-left:1rem!important}.pe-xl-4{padding-left:1.5rem!important}.pe-xl-5{padding-left:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-right:0!important}.ps-xl-1{padding-right:.25rem!important}.ps-xl-2{padding-right:.5rem!important}.ps-xl-3{padding-right:1rem!important}.ps-xl-4{padding-right:1.5rem!important}.ps-xl-5{padding-right:3rem!important}}@media (min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-left:0!important;margin-right:0!important}.mx-xxl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xxl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xxl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xxl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xxl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xxl-auto{margin-left:auto!important;margin-right:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-left:0!important}.me-xxl-1{margin-left:.25rem!important}.me-xxl-2{margin-left:.5rem!important}.me-xxl-3{margin-left:1rem!important}.me-xxl-4{margin-left:1.5rem!important}.me-xxl-5{margin-left:3rem!important}.me-xxl-auto{margin-left:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-right:0!important}.ms-xxl-1{margin-right:.25rem!important}.ms-xxl-2{margin-right:.5rem!important}.ms-xxl-3{margin-right:1rem!important}.ms-xxl-4{margin-right:1.5rem!important}.ms-xxl-5{margin-right:3rem!important}.ms-xxl-auto{margin-right:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-left:0!important;padding-right:0!important}.px-xxl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xxl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xxl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xxl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xxl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-left:0!important}.pe-xxl-1{padding-left:.25rem!important}.pe-xxl-2{padding-left:.5rem!important}.pe-xxl-3{padding-left:1rem!important}.pe-xxl-4{padding-left:1.5rem!important}.pe-xxl-5{padding-left:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-right:0!important}.ps-xxl-1{padding-right:.25rem!important}.ps-xxl-2{padding-right:.5rem!important}.ps-xxl-3{padding-right:1rem!important}.ps-xxl-4{padding-right:1.5rem!important}.ps-xxl-5{padding-right:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap-grid.rtl.min.css.map */ \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.rtl.min.css.map b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.rtl.min.css.map new file mode 100644 index 000000000..1c926af57 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-grid.rtl.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_containers.scss","dist/css/bootstrap-grid.rtl.css","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"AACE;;;;ACKA,WCAF,iBAGA,cACA,cACA,cAHA,cADA,eCJE,cAAA,OACA,cAAA,EACA,MAAA,KACA,aAAA,8BACA,cAAA,8BACA,YAAA,KACA,aAAA,KCsDE,yBH5CE,WAAA,cACE,UAAA,OG2CJ,yBH5CE,WAAA,cAAA,cACE,UAAA,OG2CJ,yBH5CE,WAAA,cAAA,cAAA,cACE,UAAA,OG2CJ,0BH5CE,WAAA,cAAA,cAAA,cAAA,cACE,UAAA,QG2CJ,0BH5CE,WAAA,cAAA,cAAA,cAAA,cAAA,eACE,UAAA,QIhBR,MAEI,mBAAA,EAAA,mBAAA,MAAA,mBAAA,MAAA,mBAAA,MAAA,mBAAA,OAAA,oBAAA,OAKF,KCNA,cAAA,OACA,cAAA,EACA,QAAA,KACA,UAAA,KAEA,WAAA,8BACA,YAAA,+BACA,aAAA,+BDEE,OCGF,WAAA,WAIA,YAAA,EACA,MAAA,KACA,UAAA,KACA,aAAA,8BACA,cAAA,8BACA,WAAA,mBA+CI,KACE,KAAA,EAAA,EAAA,GAGF,iBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,cACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,UAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,UAxDV,aAAA,YAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,IAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,IAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,IAwDU,WAxDV,aAAA,aAwDU,WAxDV,aAAA,aAmEM,KJ6GR,MI3GU,cAAA,EAGF,KJ6GR,MI3GU,cAAA,EAPF,KJuHR,MIrHU,cAAA,QAGF,KJuHR,MIrHU,cAAA,QAPF,KJiIR,MI/HU,cAAA,OAGF,KJiIR,MI/HU,cAAA,OAPF,KJ2IR,MIzIU,cAAA,KAGF,KJ2IR,MIzIU,cAAA,KAPF,KJqJR,MInJU,cAAA,OAGF,KJqJR,MInJU,cAAA,OAPF,KJ+JR,MI7JU,cAAA,KAGF,KJ+JR,MI7JU,cAAA,KF1DN,yBEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,aAAA,EAwDU,aAxDV,aAAA,YAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAmEM,QJiSN,SI/RQ,cAAA,EAGF,QJgSN,SI9RQ,cAAA,EAPF,QJySN,SIvSQ,cAAA,QAGF,QJwSN,SItSQ,cAAA,QAPF,QJiTN,SI/SQ,cAAA,OAGF,QJgTN,SI9SQ,cAAA,OAPF,QJyTN,SIvTQ,cAAA,KAGF,QJwTN,SItTQ,cAAA,KAPF,QJiUN,SI/TQ,cAAA,OAGF,QJgUN,SI9TQ,cAAA,OAPF,QJyUN,SIvUQ,cAAA,KAGF,QJwUN,SItUQ,cAAA,MF1DN,yBEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,aAAA,EAwDU,aAxDV,aAAA,YAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAmEM,QJ0cN,SIxcQ,cAAA,EAGF,QJycN,SIvcQ,cAAA,EAPF,QJkdN,SIhdQ,cAAA,QAGF,QJidN,SI/cQ,cAAA,QAPF,QJ0dN,SIxdQ,cAAA,OAGF,QJydN,SIvdQ,cAAA,OAPF,QJkeN,SIheQ,cAAA,KAGF,QJieN,SI/dQ,cAAA,KAPF,QJ0eN,SIxeQ,cAAA,OAGF,QJyeN,SIveQ,cAAA,OAPF,QJkfN,SIhfQ,cAAA,KAGF,QJifN,SI/eQ,cAAA,MF1DN,yBEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,aAAA,EAwDU,aAxDV,aAAA,YAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAmEM,QJmnBN,SIjnBQ,cAAA,EAGF,QJknBN,SIhnBQ,cAAA,EAPF,QJ2nBN,SIznBQ,cAAA,QAGF,QJ0nBN,SIxnBQ,cAAA,QAPF,QJmoBN,SIjoBQ,cAAA,OAGF,QJkoBN,SIhoBQ,cAAA,OAPF,QJ2oBN,SIzoBQ,cAAA,KAGF,QJ0oBN,SIxoBQ,cAAA,KAPF,QJmpBN,SIjpBQ,cAAA,OAGF,QJkpBN,SIhpBQ,cAAA,OAPF,QJ2pBN,SIzpBQ,cAAA,KAGF,QJ0pBN,SIxpBQ,cAAA,MF1DN,0BEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,aAAA,EAwDU,aAxDV,aAAA,YAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAmEM,QJ4xBN,SI1xBQ,cAAA,EAGF,QJ2xBN,SIzxBQ,cAAA,EAPF,QJoyBN,SIlyBQ,cAAA,QAGF,QJmyBN,SIjyBQ,cAAA,QAPF,QJ4yBN,SI1yBQ,cAAA,OAGF,QJ2yBN,SIzyBQ,cAAA,OAPF,QJozBN,SIlzBQ,cAAA,KAGF,QJmzBN,SIjzBQ,cAAA,KAPF,QJ4zBN,SI1zBQ,cAAA,OAGF,QJ2zBN,SIzzBQ,cAAA,OAPF,QJo0BN,SIl0BQ,cAAA,KAGF,QJm0BN,SIj0BQ,cAAA,MF1DN,0BEUE,SACE,KAAA,EAAA,EAAA,GAGF,qBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,cAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,cAxDV,aAAA,EAwDU,cAxDV,aAAA,YAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,IAwDU,eAxDV,aAAA,aAwDU,eAxDV,aAAA,aAmEM,SJq8BN,UIn8BQ,cAAA,EAGF,SJo8BN,UIl8BQ,cAAA,EAPF,SJ68BN,UI38BQ,cAAA,QAGF,SJ48BN,UI18BQ,cAAA,QAPF,SJq9BN,UIn9BQ,cAAA,OAGF,SJo9BN,UIl9BQ,cAAA,OAPF,SJ69BN,UI39BQ,cAAA,KAGF,SJ49BN,UI19BQ,cAAA,KAPF,SJq+BN,UIn+BQ,cAAA,OAGF,SJo+BN,UIl+BQ,cAAA,OAPF,SJ6+BN,UI3+BQ,cAAA,KAGF,SJ4+BN,UI1+BQ,cAAA,MCvDF,UAOI,QAAA,iBAPJ,gBAOI,QAAA,uBAPJ,SAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,SAOI,QAAA,gBAPJ,aAOI,QAAA,oBAPJ,cAOI,QAAA,qBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,QAOI,QAAA,eAPJ,WAOI,KAAA,EAAA,EAAA,eAPJ,UAOI,eAAA,cAPJ,aAOI,eAAA,iBAPJ,kBAOI,eAAA,sBAPJ,qBAOI,eAAA,yBAPJ,aAOI,UAAA,YAPJ,aAOI,UAAA,YAPJ,eAOI,YAAA,YAPJ,eAOI,YAAA,YAPJ,WAOI,UAAA,eAPJ,aAOI,UAAA,iBAPJ,mBAOI,UAAA,uBAPJ,uBAOI,gBAAA,qBAPJ,qBAOI,gBAAA,mBAPJ,wBAOI,gBAAA,iBAPJ,yBAOI,gBAAA,wBAPJ,wBAOI,gBAAA,uBAPJ,wBAOI,gBAAA,uBAPJ,mBAOI,YAAA,qBAPJ,iBAOI,YAAA,mBAPJ,oBAOI,YAAA,iBAPJ,sBAOI,YAAA,mBAPJ,qBAOI,YAAA,kBAPJ,qBAOI,cAAA,qBAPJ,mBAOI,cAAA,mBAPJ,sBAOI,cAAA,iBAPJ,uBAOI,cAAA,wBAPJ,sBAOI,cAAA,uBAPJ,uBAOI,cAAA,kBAPJ,iBAOI,WAAA,eAPJ,kBAOI,WAAA,qBAPJ,gBAOI,WAAA,mBAPJ,mBAOI,WAAA,iBAPJ,qBAOI,WAAA,mBAPJ,oBAOI,WAAA,kBAPJ,aAOI,MAAA,aAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,KAOI,OAAA,YAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,gBAPJ,KAOI,OAAA,eAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,MAOI,YAAA,YAAA,aAAA,YAPJ,MAOI,YAAA,iBAAA,aAAA,iBAPJ,MAOI,YAAA,gBAAA,aAAA,gBAPJ,MAOI,YAAA,eAAA,aAAA,eAPJ,MAOI,YAAA,iBAAA,aAAA,iBAPJ,MAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,MAOI,WAAA,YAAA,cAAA,YAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,gBAAA,cAAA,gBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,YAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,gBAPJ,MAOI,WAAA,eAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,eAPJ,SAOI,WAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,SAOI,YAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,SAOI,cAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,SAOI,aAAA,eAPJ,KAOI,QAAA,YAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,gBAPJ,KAOI,QAAA,eAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,eAPJ,MAOI,aAAA,YAAA,cAAA,YAPJ,MAOI,aAAA,iBAAA,cAAA,iBAPJ,MAOI,aAAA,gBAAA,cAAA,gBAPJ,MAOI,aAAA,eAAA,cAAA,eAPJ,MAOI,aAAA,iBAAA,cAAA,iBAPJ,MAOI,aAAA,eAAA,cAAA,eAPJ,MAOI,YAAA,YAAA,eAAA,YAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,gBAAA,eAAA,gBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,MAOI,eAAA,YAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,gBAPJ,MAOI,eAAA,eAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eHVR,yBGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,YAAA,YAAA,aAAA,YAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,gBAAA,aAAA,gBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,YAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,aAAA,YAAA,cAAA,YAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,gBAAA,cAAA,gBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBHVR,yBGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,YAAA,YAAA,aAAA,YAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,gBAAA,aAAA,gBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,YAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,aAAA,YAAA,cAAA,YAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,gBAAA,cAAA,gBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBHVR,yBGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,YAAA,YAAA,aAAA,YAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,gBAAA,aAAA,gBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,YAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,aAAA,YAAA,cAAA,YAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,gBAAA,cAAA,gBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBHVR,0BGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,YAAA,YAAA,aAAA,YAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,gBAAA,aAAA,gBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,YAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,aAAA,YAAA,cAAA,YAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,gBAAA,cAAA,gBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBHVR,0BGGI,cAOI,QAAA,iBAPJ,oBAOI,QAAA,uBAPJ,aAOI,QAAA,gBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,aAOI,QAAA,gBAPJ,iBAOI,QAAA,oBAPJ,kBAOI,QAAA,qBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,YAOI,QAAA,eAPJ,eAOI,KAAA,EAAA,EAAA,eAPJ,cAOI,eAAA,cAPJ,iBAOI,eAAA,iBAPJ,sBAOI,eAAA,sBAPJ,yBAOI,eAAA,yBAPJ,iBAOI,UAAA,YAPJ,iBAOI,UAAA,YAPJ,mBAOI,YAAA,YAPJ,mBAOI,YAAA,YAPJ,eAOI,UAAA,eAPJ,iBAOI,UAAA,iBAPJ,uBAOI,UAAA,uBAPJ,2BAOI,gBAAA,qBAPJ,yBAOI,gBAAA,mBAPJ,4BAOI,gBAAA,iBAPJ,6BAOI,gBAAA,wBAPJ,4BAOI,gBAAA,uBAPJ,4BAOI,gBAAA,uBAPJ,uBAOI,YAAA,qBAPJ,qBAOI,YAAA,mBAPJ,wBAOI,YAAA,iBAPJ,0BAOI,YAAA,mBAPJ,yBAOI,YAAA,kBAPJ,yBAOI,cAAA,qBAPJ,uBAOI,cAAA,mBAPJ,0BAOI,cAAA,iBAPJ,2BAOI,cAAA,wBAPJ,0BAOI,cAAA,uBAPJ,2BAOI,cAAA,kBAPJ,qBAOI,WAAA,eAPJ,sBAOI,WAAA,qBAPJ,oBAOI,WAAA,mBAPJ,uBAOI,WAAA,iBAPJ,yBAOI,WAAA,mBAPJ,wBAOI,WAAA,kBAPJ,iBAOI,MAAA,aAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,gBAOI,MAAA,YAPJ,SAOI,OAAA,YAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,gBAPJ,SAOI,OAAA,eAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,eAPJ,YAOI,OAAA,eAPJ,UAOI,YAAA,YAAA,aAAA,YAPJ,UAOI,YAAA,iBAAA,aAAA,iBAPJ,UAOI,YAAA,gBAAA,aAAA,gBAPJ,UAOI,YAAA,eAAA,aAAA,eAPJ,UAOI,YAAA,iBAAA,aAAA,iBAPJ,UAOI,YAAA,eAAA,aAAA,eAPJ,aAOI,YAAA,eAAA,aAAA,eAPJ,UAOI,WAAA,YAAA,cAAA,YAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,gBAAA,cAAA,gBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,aAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,YAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,gBAPJ,UAOI,WAAA,eAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,eAPJ,aAOI,WAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,aAOI,YAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,aAOI,cAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,aAOI,aAAA,eAPJ,SAOI,QAAA,YAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,gBAPJ,SAOI,QAAA,eAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,eAPJ,UAOI,aAAA,YAAA,cAAA,YAPJ,UAOI,aAAA,iBAAA,cAAA,iBAPJ,UAOI,aAAA,gBAAA,cAAA,gBAPJ,UAOI,aAAA,eAAA,cAAA,eAPJ,UAOI,aAAA,iBAAA,cAAA,iBAPJ,UAOI,aAAA,eAAA,cAAA,eAPJ,UAOI,YAAA,YAAA,eAAA,YAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,gBAAA,eAAA,gBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,UAOI,eAAA,YAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,gBAPJ,UAOI,eAAA,eAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBCnCZ,aD4BQ,gBAOI,QAAA,iBAPJ,sBAOI,QAAA,uBAPJ,eAOI,QAAA,gBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,eAOI,QAAA,gBAPJ,mBAOI,QAAA,oBAPJ,oBAOI,QAAA,qBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,cAOI,QAAA","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-container-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","/*!\n * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n margin-left: auto;\n margin-right: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n:root {\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-right: 8.33333333%;\n}\n\n.offset-2 {\n margin-right: 16.66666667%;\n}\n\n.offset-3 {\n margin-right: 25%;\n}\n\n.offset-4 {\n margin-right: 33.33333333%;\n}\n\n.offset-5 {\n margin-right: 41.66666667%;\n}\n\n.offset-6 {\n margin-right: 50%;\n}\n\n.offset-7 {\n margin-right: 58.33333333%;\n}\n\n.offset-8 {\n margin-right: 66.66666667%;\n}\n\n.offset-9 {\n margin-right: 75%;\n}\n\n.offset-10 {\n margin-right: 83.33333333%;\n}\n\n.offset-11 {\n margin-right: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-right: 0;\n }\n .offset-sm-1 {\n margin-right: 8.33333333%;\n }\n .offset-sm-2 {\n margin-right: 16.66666667%;\n }\n .offset-sm-3 {\n margin-right: 25%;\n }\n .offset-sm-4 {\n margin-right: 33.33333333%;\n }\n .offset-sm-5 {\n margin-right: 41.66666667%;\n }\n .offset-sm-6 {\n margin-right: 50%;\n }\n .offset-sm-7 {\n margin-right: 58.33333333%;\n }\n .offset-sm-8 {\n margin-right: 66.66666667%;\n }\n .offset-sm-9 {\n margin-right: 75%;\n }\n .offset-sm-10 {\n margin-right: 83.33333333%;\n }\n .offset-sm-11 {\n margin-right: 91.66666667%;\n }\n .g-sm-0,\n .gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n .gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n .gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n .gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n .gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n .gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n .gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n .gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n .gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n .gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n .gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n .gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-right: 0;\n }\n .offset-md-1 {\n margin-right: 8.33333333%;\n }\n .offset-md-2 {\n margin-right: 16.66666667%;\n }\n .offset-md-3 {\n margin-right: 25%;\n }\n .offset-md-4 {\n margin-right: 33.33333333%;\n }\n .offset-md-5 {\n margin-right: 41.66666667%;\n }\n .offset-md-6 {\n margin-right: 50%;\n }\n .offset-md-7 {\n margin-right: 58.33333333%;\n }\n .offset-md-8 {\n margin-right: 66.66666667%;\n }\n .offset-md-9 {\n margin-right: 75%;\n }\n .offset-md-10 {\n margin-right: 83.33333333%;\n }\n .offset-md-11 {\n margin-right: 91.66666667%;\n }\n .g-md-0,\n .gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n .gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n .gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n .gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n .gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n .gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n .gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n .gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n .gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n .gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n .gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n .gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-right: 0;\n }\n .offset-lg-1 {\n margin-right: 8.33333333%;\n }\n .offset-lg-2 {\n margin-right: 16.66666667%;\n }\n .offset-lg-3 {\n margin-right: 25%;\n }\n .offset-lg-4 {\n margin-right: 33.33333333%;\n }\n .offset-lg-5 {\n margin-right: 41.66666667%;\n }\n .offset-lg-6 {\n margin-right: 50%;\n }\n .offset-lg-7 {\n margin-right: 58.33333333%;\n }\n .offset-lg-8 {\n margin-right: 66.66666667%;\n }\n .offset-lg-9 {\n margin-right: 75%;\n }\n .offset-lg-10 {\n margin-right: 83.33333333%;\n }\n .offset-lg-11 {\n margin-right: 91.66666667%;\n }\n .g-lg-0,\n .gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n .gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n .gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n .gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n .gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n .gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n .gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n .gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n .gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n .gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n .gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n .gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-right: 0;\n }\n .offset-xl-1 {\n margin-right: 8.33333333%;\n }\n .offset-xl-2 {\n margin-right: 16.66666667%;\n }\n .offset-xl-3 {\n margin-right: 25%;\n }\n .offset-xl-4 {\n margin-right: 33.33333333%;\n }\n .offset-xl-5 {\n margin-right: 41.66666667%;\n }\n .offset-xl-6 {\n margin-right: 50%;\n }\n .offset-xl-7 {\n margin-right: 58.33333333%;\n }\n .offset-xl-8 {\n margin-right: 66.66666667%;\n }\n .offset-xl-9 {\n margin-right: 75%;\n }\n .offset-xl-10 {\n margin-right: 83.33333333%;\n }\n .offset-xl-11 {\n margin-right: 91.66666667%;\n }\n .g-xl-0,\n .gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n .gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n .gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n .gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n .gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n .gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n .gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n .gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n .gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xl-4,\n .gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xl-5,\n .gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n .gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-right: 0;\n }\n .offset-xxl-1 {\n margin-right: 8.33333333%;\n }\n .offset-xxl-2 {\n margin-right: 16.66666667%;\n }\n .offset-xxl-3 {\n margin-right: 25%;\n }\n .offset-xxl-4 {\n margin-right: 33.33333333%;\n }\n .offset-xxl-5 {\n margin-right: 41.66666667%;\n }\n .offset-xxl-6 {\n margin-right: 50%;\n }\n .offset-xxl-7 {\n margin-right: 58.33333333%;\n }\n .offset-xxl-8 {\n margin-right: 66.66666667%;\n }\n .offset-xxl-9 {\n margin-right: 75%;\n }\n .offset-xxl-10 {\n margin-right: 83.33333333%;\n }\n .offset-xxl-11 {\n margin-right: 91.66666667%;\n }\n .g-xxl-0,\n .gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n .gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n .gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n .gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n .gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n .gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n .gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n .gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n .gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xxl-4,\n .gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xxl-5,\n .gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n .gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-inline-grid {\n display: inline-grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n}\n\n.mx-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n}\n\n.mx-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n}\n\n.mx-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n}\n\n.mx-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n}\n\n.mx-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n}\n\n.mx-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-left: 0 !important;\n}\n\n.me-1 {\n margin-left: 0.25rem !important;\n}\n\n.me-2 {\n margin-left: 0.5rem !important;\n}\n\n.me-3 {\n margin-left: 1rem !important;\n}\n\n.me-4 {\n margin-left: 1.5rem !important;\n}\n\n.me-5 {\n margin-left: 3rem !important;\n}\n\n.me-auto {\n margin-left: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-right: 0 !important;\n}\n\n.ms-1 {\n margin-right: 0.25rem !important;\n}\n\n.ms-2 {\n margin-right: 0.5rem !important;\n}\n\n.ms-3 {\n margin-right: 1rem !important;\n}\n\n.ms-4 {\n margin-right: 1.5rem !important;\n}\n\n.ms-5 {\n margin-right: 3rem !important;\n}\n\n.ms-auto {\n margin-right: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n}\n\n.px-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n}\n\n.px-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n}\n\n.px-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n}\n\n.px-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n}\n\n.px-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-left: 0 !important;\n}\n\n.pe-1 {\n padding-left: 0.25rem !important;\n}\n\n.pe-2 {\n padding-left: 0.5rem !important;\n}\n\n.pe-3 {\n padding-left: 1rem !important;\n}\n\n.pe-4 {\n padding-left: 1.5rem !important;\n}\n\n.pe-5 {\n padding-left: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-right: 0 !important;\n}\n\n.ps-1 {\n padding-right: 0.25rem !important;\n}\n\n.ps-2 {\n padding-right: 0.5rem !important;\n}\n\n.ps-3 {\n padding-right: 1rem !important;\n}\n\n.ps-4 {\n padding-right: 1.5rem !important;\n}\n\n.ps-5 {\n padding-right: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-grid {\n display: grid !important;\n }\n .d-sm-inline-grid {\n display: inline-grid !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n .d-sm-none {\n display: none !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n .order-sm-first {\n order: -1 !important;\n }\n .order-sm-0 {\n order: 0 !important;\n }\n .order-sm-1 {\n order: 1 !important;\n }\n .order-sm-2 {\n order: 2 !important;\n }\n .order-sm-3 {\n order: 3 !important;\n }\n .order-sm-4 {\n order: 4 !important;\n }\n .order-sm-5 {\n order: 5 !important;\n }\n .order-sm-last {\n order: 6 !important;\n }\n .m-sm-0 {\n margin: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mx-sm-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-sm-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-sm-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-sm-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-sm-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-sm-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-sm-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n .mt-sm-auto {\n margin-top: auto !important;\n }\n .me-sm-0 {\n margin-left: 0 !important;\n }\n .me-sm-1 {\n margin-left: 0.25rem !important;\n }\n .me-sm-2 {\n margin-left: 0.5rem !important;\n }\n .me-sm-3 {\n margin-left: 1rem !important;\n }\n .me-sm-4 {\n margin-left: 1.5rem !important;\n }\n .me-sm-5 {\n margin-left: 3rem !important;\n }\n .me-sm-auto {\n margin-left: auto !important;\n }\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n .ms-sm-0 {\n margin-right: 0 !important;\n }\n .ms-sm-1 {\n margin-right: 0.25rem !important;\n }\n .ms-sm-2 {\n margin-right: 0.5rem !important;\n }\n .ms-sm-3 {\n margin-right: 1rem !important;\n }\n .ms-sm-4 {\n margin-right: 1.5rem !important;\n }\n .ms-sm-5 {\n margin-right: 3rem !important;\n }\n .ms-sm-auto {\n margin-right: auto !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .px-sm-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-sm-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-sm-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-sm-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-sm-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-sm-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n .pe-sm-0 {\n padding-left: 0 !important;\n }\n .pe-sm-1 {\n padding-left: 0.25rem !important;\n }\n .pe-sm-2 {\n padding-left: 0.5rem !important;\n }\n .pe-sm-3 {\n padding-left: 1rem !important;\n }\n .pe-sm-4 {\n padding-left: 1.5rem !important;\n }\n .pe-sm-5 {\n padding-left: 3rem !important;\n }\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n .ps-sm-0 {\n padding-right: 0 !important;\n }\n .ps-sm-1 {\n padding-right: 0.25rem !important;\n }\n .ps-sm-2 {\n padding-right: 0.5rem !important;\n }\n .ps-sm-3 {\n padding-right: 1rem !important;\n }\n .ps-sm-4 {\n padding-right: 1.5rem !important;\n }\n .ps-sm-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-grid {\n display: grid !important;\n }\n .d-md-inline-grid {\n display: inline-grid !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n .d-md-none {\n display: none !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n .order-md-first {\n order: -1 !important;\n }\n .order-md-0 {\n order: 0 !important;\n }\n .order-md-1 {\n order: 1 !important;\n }\n .order-md-2 {\n order: 2 !important;\n }\n .order-md-3 {\n order: 3 !important;\n }\n .order-md-4 {\n order: 4 !important;\n }\n .order-md-5 {\n order: 5 !important;\n }\n .order-md-last {\n order: 6 !important;\n }\n .m-md-0 {\n margin: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mx-md-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-md-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-md-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-md-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-md-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-md-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-md-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-md-0 {\n margin-top: 0 !important;\n }\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n .mt-md-auto {\n margin-top: auto !important;\n }\n .me-md-0 {\n margin-left: 0 !important;\n }\n .me-md-1 {\n margin-left: 0.25rem !important;\n }\n .me-md-2 {\n margin-left: 0.5rem !important;\n }\n .me-md-3 {\n margin-left: 1rem !important;\n }\n .me-md-4 {\n margin-left: 1.5rem !important;\n }\n .me-md-5 {\n margin-left: 3rem !important;\n }\n .me-md-auto {\n margin-left: auto !important;\n }\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n .ms-md-0 {\n margin-right: 0 !important;\n }\n .ms-md-1 {\n margin-right: 0.25rem !important;\n }\n .ms-md-2 {\n margin-right: 0.5rem !important;\n }\n .ms-md-3 {\n margin-right: 1rem !important;\n }\n .ms-md-4 {\n margin-right: 1.5rem !important;\n }\n .ms-md-5 {\n margin-right: 3rem !important;\n }\n .ms-md-auto {\n margin-right: auto !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .px-md-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-md-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-md-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-md-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-md-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-md-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-md-0 {\n padding-top: 0 !important;\n }\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n .pe-md-0 {\n padding-left: 0 !important;\n }\n .pe-md-1 {\n padding-left: 0.25rem !important;\n }\n .pe-md-2 {\n padding-left: 0.5rem !important;\n }\n .pe-md-3 {\n padding-left: 1rem !important;\n }\n .pe-md-4 {\n padding-left: 1.5rem !important;\n }\n .pe-md-5 {\n padding-left: 3rem !important;\n }\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n .ps-md-0 {\n padding-right: 0 !important;\n }\n .ps-md-1 {\n padding-right: 0.25rem !important;\n }\n .ps-md-2 {\n padding-right: 0.5rem !important;\n }\n .ps-md-3 {\n padding-right: 1rem !important;\n }\n .ps-md-4 {\n padding-right: 1.5rem !important;\n }\n .ps-md-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-grid {\n display: grid !important;\n }\n .d-lg-inline-grid {\n display: inline-grid !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n .d-lg-none {\n display: none !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n .order-lg-first {\n order: -1 !important;\n }\n .order-lg-0 {\n order: 0 !important;\n }\n .order-lg-1 {\n order: 1 !important;\n }\n .order-lg-2 {\n order: 2 !important;\n }\n .order-lg-3 {\n order: 3 !important;\n }\n .order-lg-4 {\n order: 4 !important;\n }\n .order-lg-5 {\n order: 5 !important;\n }\n .order-lg-last {\n order: 6 !important;\n }\n .m-lg-0 {\n margin: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mx-lg-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-lg-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-lg-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-lg-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-lg-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-lg-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-lg-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n .mt-lg-auto {\n margin-top: auto !important;\n }\n .me-lg-0 {\n margin-left: 0 !important;\n }\n .me-lg-1 {\n margin-left: 0.25rem !important;\n }\n .me-lg-2 {\n margin-left: 0.5rem !important;\n }\n .me-lg-3 {\n margin-left: 1rem !important;\n }\n .me-lg-4 {\n margin-left: 1.5rem !important;\n }\n .me-lg-5 {\n margin-left: 3rem !important;\n }\n .me-lg-auto {\n margin-left: auto !important;\n }\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n .ms-lg-0 {\n margin-right: 0 !important;\n }\n .ms-lg-1 {\n margin-right: 0.25rem !important;\n }\n .ms-lg-2 {\n margin-right: 0.5rem !important;\n }\n .ms-lg-3 {\n margin-right: 1rem !important;\n }\n .ms-lg-4 {\n margin-right: 1.5rem !important;\n }\n .ms-lg-5 {\n margin-right: 3rem !important;\n }\n .ms-lg-auto {\n margin-right: auto !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .px-lg-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-lg-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-lg-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-lg-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-lg-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-lg-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n .pe-lg-0 {\n padding-left: 0 !important;\n }\n .pe-lg-1 {\n padding-left: 0.25rem !important;\n }\n .pe-lg-2 {\n padding-left: 0.5rem !important;\n }\n .pe-lg-3 {\n padding-left: 1rem !important;\n }\n .pe-lg-4 {\n padding-left: 1.5rem !important;\n }\n .pe-lg-5 {\n padding-left: 3rem !important;\n }\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n .ps-lg-0 {\n padding-right: 0 !important;\n }\n .ps-lg-1 {\n padding-right: 0.25rem !important;\n }\n .ps-lg-2 {\n padding-right: 0.5rem !important;\n }\n .ps-lg-3 {\n padding-right: 1rem !important;\n }\n .ps-lg-4 {\n padding-right: 1.5rem !important;\n }\n .ps-lg-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-grid {\n display: grid !important;\n }\n .d-xl-inline-grid {\n display: inline-grid !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n .d-xl-none {\n display: none !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n .order-xl-first {\n order: -1 !important;\n }\n .order-xl-0 {\n order: 0 !important;\n }\n .order-xl-1 {\n order: 1 !important;\n }\n .order-xl-2 {\n order: 2 !important;\n }\n .order-xl-3 {\n order: 3 !important;\n }\n .order-xl-4 {\n order: 4 !important;\n }\n .order-xl-5 {\n order: 5 !important;\n }\n .order-xl-last {\n order: 6 !important;\n }\n .m-xl-0 {\n margin: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mx-xl-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-xl-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-xl-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-xl-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-xl-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-xl-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-xl-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n .mt-xl-auto {\n margin-top: auto !important;\n }\n .me-xl-0 {\n margin-left: 0 !important;\n }\n .me-xl-1 {\n margin-left: 0.25rem !important;\n }\n .me-xl-2 {\n margin-left: 0.5rem !important;\n }\n .me-xl-3 {\n margin-left: 1rem !important;\n }\n .me-xl-4 {\n margin-left: 1.5rem !important;\n }\n .me-xl-5 {\n margin-left: 3rem !important;\n }\n .me-xl-auto {\n margin-left: auto !important;\n }\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n .ms-xl-0 {\n margin-right: 0 !important;\n }\n .ms-xl-1 {\n margin-right: 0.25rem !important;\n }\n .ms-xl-2 {\n margin-right: 0.5rem !important;\n }\n .ms-xl-3 {\n margin-right: 1rem !important;\n }\n .ms-xl-4 {\n margin-right: 1.5rem !important;\n }\n .ms-xl-5 {\n margin-right: 3rem !important;\n }\n .ms-xl-auto {\n margin-right: auto !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .px-xl-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-xl-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-xl-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-xl-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-xl-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-xl-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n .pe-xl-0 {\n padding-left: 0 !important;\n }\n .pe-xl-1 {\n padding-left: 0.25rem !important;\n }\n .pe-xl-2 {\n padding-left: 0.5rem !important;\n }\n .pe-xl-3 {\n padding-left: 1rem !important;\n }\n .pe-xl-4 {\n padding-left: 1.5rem !important;\n }\n .pe-xl-5 {\n padding-left: 3rem !important;\n }\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xl-0 {\n padding-right: 0 !important;\n }\n .ps-xl-1 {\n padding-right: 0.25rem !important;\n }\n .ps-xl-2 {\n padding-right: 0.5rem !important;\n }\n .ps-xl-3 {\n padding-right: 1rem !important;\n }\n .ps-xl-4 {\n padding-right: 1.5rem !important;\n }\n .ps-xl-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n .d-xxl-block {\n display: block !important;\n }\n .d-xxl-grid {\n display: grid !important;\n }\n .d-xxl-inline-grid {\n display: inline-grid !important;\n }\n .d-xxl-table {\n display: table !important;\n }\n .d-xxl-table-row {\n display: table-row !important;\n }\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n .d-xxl-flex {\n display: flex !important;\n }\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n .d-xxl-none {\n display: none !important;\n }\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xxl-row {\n flex-direction: row !important;\n }\n .flex-xxl-column {\n flex-direction: column !important;\n }\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n .align-items-xxl-center {\n align-items: center !important;\n }\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n .align-content-xxl-center {\n align-content: center !important;\n }\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n .align-self-xxl-center {\n align-self: center !important;\n }\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n .order-xxl-first {\n order: -1 !important;\n }\n .order-xxl-0 {\n order: 0 !important;\n }\n .order-xxl-1 {\n order: 1 !important;\n }\n .order-xxl-2 {\n order: 2 !important;\n }\n .order-xxl-3 {\n order: 3 !important;\n }\n .order-xxl-4 {\n order: 4 !important;\n }\n .order-xxl-5 {\n order: 5 !important;\n }\n .order-xxl-last {\n order: 6 !important;\n }\n .m-xxl-0 {\n margin: 0 !important;\n }\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n .m-xxl-3 {\n margin: 1rem !important;\n }\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n .m-xxl-5 {\n margin: 3rem !important;\n }\n .m-xxl-auto {\n margin: auto !important;\n }\n .mx-xxl-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-xxl-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-xxl-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-xxl-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-xxl-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-xxl-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-xxl-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n .me-xxl-0 {\n margin-left: 0 !important;\n }\n .me-xxl-1 {\n margin-left: 0.25rem !important;\n }\n .me-xxl-2 {\n margin-left: 0.5rem !important;\n }\n .me-xxl-3 {\n margin-left: 1rem !important;\n }\n .me-xxl-4 {\n margin-left: 1.5rem !important;\n }\n .me-xxl-5 {\n margin-left: 3rem !important;\n }\n .me-xxl-auto {\n margin-left: auto !important;\n }\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n .ms-xxl-0 {\n margin-right: 0 !important;\n }\n .ms-xxl-1 {\n margin-right: 0.25rem !important;\n }\n .ms-xxl-2 {\n margin-right: 0.5rem !important;\n }\n .ms-xxl-3 {\n margin-right: 1rem !important;\n }\n .ms-xxl-4 {\n margin-right: 1.5rem !important;\n }\n .ms-xxl-5 {\n margin-right: 3rem !important;\n }\n .ms-xxl-auto {\n margin-right: auto !important;\n }\n .p-xxl-0 {\n padding: 0 !important;\n }\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n .p-xxl-3 {\n padding: 1rem !important;\n }\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n .p-xxl-5 {\n padding: 3rem !important;\n }\n .px-xxl-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-xxl-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-xxl-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-xxl-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-xxl-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-xxl-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n .pe-xxl-0 {\n padding-left: 0 !important;\n }\n .pe-xxl-1 {\n padding-left: 0.25rem !important;\n }\n .pe-xxl-2 {\n padding-left: 0.5rem !important;\n }\n .pe-xxl-3 {\n padding-left: 1rem !important;\n }\n .pe-xxl-4 {\n padding-left: 1.5rem !important;\n }\n .pe-xxl-5 {\n padding-left: 3rem !important;\n }\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xxl-0 {\n padding-right: 0 !important;\n }\n .ps-xxl-1 {\n padding-right: 0.25rem !important;\n }\n .ps-xxl-2 {\n padding-right: 0.5rem !important;\n }\n .ps-xxl-3 {\n padding-right: 1rem !important;\n }\n .ps-xxl-4 {\n padding-right: 1.5rem !important;\n }\n .ps-xxl-5 {\n padding-right: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-grid {\n display: grid !important;\n }\n .d-print-inline-grid {\n display: inline-grid !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n .d-print-none {\n display: none !important;\n }\n}\n/*# sourceMappingURL=bootstrap-grid.rtl.css.map */","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-right: auto;\n margin-left: auto;\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Row\n//\n// Rows contain your columns.\n\n:root {\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n // TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed\n margin-top: calc(-1 * var(--#{$prefix}gutter-y)); // stylelint-disable-line function-disallowed-list\n margin-right: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n margin-left: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready() {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// number of columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: percentage(divide(1, $count));\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is an invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix: \"\", $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // Use custom CSS variable name if present, otherwise default to `class`\n $css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (e.g. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]} \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-reboot.css b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-reboot.css new file mode 100644 index 000000000..630541092 --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-reboot.css @@ -0,0 +1,597 @@ +/*! + * Bootstrap Reboot v5.3.3 (https://getbootstrap.com/) + * Copyright 2011-2024 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +:root, +[data-bs-theme=light] { + --bs-blue: #0d6efd; + --bs-indigo: #6610f2; + --bs-purple: #6f42c1; + --bs-pink: #d63384; + --bs-red: #dc3545; + --bs-orange: #fd7e14; + --bs-yellow: #ffc107; + --bs-green: #198754; + --bs-teal: #20c997; + --bs-cyan: #0dcaf0; + --bs-black: #000; + --bs-white: #fff; + --bs-gray: #6c757d; + --bs-gray-dark: #343a40; + --bs-gray-100: #f8f9fa; + --bs-gray-200: #e9ecef; + --bs-gray-300: #dee2e6; + --bs-gray-400: #ced4da; + --bs-gray-500: #adb5bd; + --bs-gray-600: #6c757d; + --bs-gray-700: #495057; + --bs-gray-800: #343a40; + --bs-gray-900: #212529; + --bs-primary: #0d6efd; + --bs-secondary: #6c757d; + --bs-success: #198754; + --bs-info: #0dcaf0; + --bs-warning: #ffc107; + --bs-danger: #dc3545; + --bs-light: #f8f9fa; + --bs-dark: #212529; + --bs-primary-rgb: 13, 110, 253; + --bs-secondary-rgb: 108, 117, 125; + --bs-success-rgb: 25, 135, 84; + --bs-info-rgb: 13, 202, 240; + --bs-warning-rgb: 255, 193, 7; + --bs-danger-rgb: 220, 53, 69; + --bs-light-rgb: 248, 249, 250; + --bs-dark-rgb: 33, 37, 41; + --bs-primary-text-emphasis: #052c65; + --bs-secondary-text-emphasis: #2b2f32; + --bs-success-text-emphasis: #0a3622; + --bs-info-text-emphasis: #055160; + --bs-warning-text-emphasis: #664d03; + --bs-danger-text-emphasis: #58151c; + --bs-light-text-emphasis: #495057; + --bs-dark-text-emphasis: #495057; + --bs-primary-bg-subtle: #cfe2ff; + --bs-secondary-bg-subtle: #e2e3e5; + --bs-success-bg-subtle: #d1e7dd; + --bs-info-bg-subtle: #cff4fc; + --bs-warning-bg-subtle: #fff3cd; + --bs-danger-bg-subtle: #f8d7da; + --bs-light-bg-subtle: #fcfcfd; + --bs-dark-bg-subtle: #ced4da; + --bs-primary-border-subtle: #9ec5fe; + --bs-secondary-border-subtle: #c4c8cb; + --bs-success-border-subtle: #a3cfbb; + --bs-info-border-subtle: #9eeaf9; + --bs-warning-border-subtle: #ffe69c; + --bs-danger-border-subtle: #f1aeb5; + --bs-light-border-subtle: #e9ecef; + --bs-dark-border-subtle: #adb5bd; + --bs-white-rgb: 255, 255, 255; + --bs-black-rgb: 0, 0, 0; + --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); + --bs-body-font-family: var(--bs-font-sans-serif); + --bs-body-font-size: 1rem; + --bs-body-font-weight: 400; + --bs-body-line-height: 1.5; + --bs-body-color: #212529; + --bs-body-color-rgb: 33, 37, 41; + --bs-body-bg: #fff; + --bs-body-bg-rgb: 255, 255, 255; + --bs-emphasis-color: #000; + --bs-emphasis-color-rgb: 0, 0, 0; + --bs-secondary-color: rgba(33, 37, 41, 0.75); + --bs-secondary-color-rgb: 33, 37, 41; + --bs-secondary-bg: #e9ecef; + --bs-secondary-bg-rgb: 233, 236, 239; + --bs-tertiary-color: rgba(33, 37, 41, 0.5); + --bs-tertiary-color-rgb: 33, 37, 41; + --bs-tertiary-bg: #f8f9fa; + --bs-tertiary-bg-rgb: 248, 249, 250; + --bs-heading-color: inherit; + --bs-link-color: #0d6efd; + --bs-link-color-rgb: 13, 110, 253; + --bs-link-decoration: underline; + --bs-link-hover-color: #0a58ca; + --bs-link-hover-color-rgb: 10, 88, 202; + --bs-code-color: #d63384; + --bs-highlight-color: #212529; + --bs-highlight-bg: #fff3cd; + --bs-border-width: 1px; + --bs-border-style: solid; + --bs-border-color: #dee2e6; + --bs-border-color-translucent: rgba(0, 0, 0, 0.175); + --bs-border-radius: 0.375rem; + --bs-border-radius-sm: 0.25rem; + --bs-border-radius-lg: 0.5rem; + --bs-border-radius-xl: 1rem; + --bs-border-radius-xxl: 2rem; + --bs-border-radius-2xl: var(--bs-border-radius-xxl); + --bs-border-radius-pill: 50rem; + --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); + --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); + --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175); + --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075); + --bs-focus-ring-width: 0.25rem; + --bs-focus-ring-opacity: 0.25; + --bs-focus-ring-color: rgba(13, 110, 253, 0.25); + --bs-form-valid-color: #198754; + --bs-form-valid-border-color: #198754; + --bs-form-invalid-color: #dc3545; + --bs-form-invalid-border-color: #dc3545; +} + +[data-bs-theme=dark] { + color-scheme: dark; + --bs-body-color: #dee2e6; + --bs-body-color-rgb: 222, 226, 230; + --bs-body-bg: #212529; + --bs-body-bg-rgb: 33, 37, 41; + --bs-emphasis-color: #fff; + --bs-emphasis-color-rgb: 255, 255, 255; + --bs-secondary-color: rgba(222, 226, 230, 0.75); + --bs-secondary-color-rgb: 222, 226, 230; + --bs-secondary-bg: #343a40; + --bs-secondary-bg-rgb: 52, 58, 64; + --bs-tertiary-color: rgba(222, 226, 230, 0.5); + --bs-tertiary-color-rgb: 222, 226, 230; + --bs-tertiary-bg: #2b3035; + --bs-tertiary-bg-rgb: 43, 48, 53; + --bs-primary-text-emphasis: #6ea8fe; + --bs-secondary-text-emphasis: #a7acb1; + --bs-success-text-emphasis: #75b798; + --bs-info-text-emphasis: #6edff6; + --bs-warning-text-emphasis: #ffda6a; + --bs-danger-text-emphasis: #ea868f; + --bs-light-text-emphasis: #f8f9fa; + --bs-dark-text-emphasis: #dee2e6; + --bs-primary-bg-subtle: #031633; + --bs-secondary-bg-subtle: #161719; + --bs-success-bg-subtle: #051b11; + --bs-info-bg-subtle: #032830; + --bs-warning-bg-subtle: #332701; + --bs-danger-bg-subtle: #2c0b0e; + --bs-light-bg-subtle: #343a40; + --bs-dark-bg-subtle: #1a1d20; + --bs-primary-border-subtle: #084298; + --bs-secondary-border-subtle: #41464b; + --bs-success-border-subtle: #0f5132; + --bs-info-border-subtle: #087990; + --bs-warning-border-subtle: #997404; + --bs-danger-border-subtle: #842029; + --bs-light-border-subtle: #495057; + --bs-dark-border-subtle: #343a40; + --bs-heading-color: inherit; + --bs-link-color: #6ea8fe; + --bs-link-hover-color: #8bb9fe; + --bs-link-color-rgb: 110, 168, 254; + --bs-link-hover-color-rgb: 139, 185, 254; + --bs-code-color: #e685b5; + --bs-highlight-color: #dee2e6; + --bs-highlight-bg: #664d03; + --bs-border-color: #495057; + --bs-border-color-translucent: rgba(255, 255, 255, 0.15); + --bs-form-valid-color: #75b798; + --bs-form-valid-border-color: #75b798; + --bs-form-invalid-color: #ea868f; + --bs-form-invalid-border-color: #ea868f; +} + +*, +*::before, +*::after { + box-sizing: border-box; +} + +@media (prefers-reduced-motion: no-preference) { + :root { + scroll-behavior: smooth; + } +} + +body { + margin: 0; + font-family: var(--bs-body-font-family); + font-size: var(--bs-body-font-size); + font-weight: var(--bs-body-font-weight); + line-height: var(--bs-body-line-height); + color: var(--bs-body-color); + text-align: var(--bs-body-text-align); + background-color: var(--bs-body-bg); + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +hr { + margin: 1rem 0; + color: inherit; + border: 0; + border-top: var(--bs-border-width) solid; + opacity: 0.25; +} + +h6, h5, h4, h3, h2, h1 { + margin-top: 0; + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; + color: var(--bs-heading-color); +} + +h1 { + font-size: calc(1.375rem + 1.5vw); +} +@media (min-width: 1200px) { + h1 { + font-size: 2.5rem; + } +} + +h2 { + font-size: calc(1.325rem + 0.9vw); +} +@media (min-width: 1200px) { + h2 { + font-size: 2rem; + } +} + +h3 { + font-size: calc(1.3rem + 0.6vw); +} +@media (min-width: 1200px) { + h3 { + font-size: 1.75rem; + } +} + +h4 { + font-size: calc(1.275rem + 0.3vw); +} +@media (min-width: 1200px) { + h4 { + font-size: 1.5rem; + } +} + +h5 { + font-size: 1.25rem; +} + +h6 { + font-size: 1rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +abbr[title] { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + -webkit-text-decoration-skip-ink: none; + text-decoration-skip-ink: none; +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +ol, +ul { + padding-left: 2rem; +} + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +dt { + font-weight: 700; +} + +dd { + margin-bottom: 0.5rem; + margin-left: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +b, +strong { + font-weight: bolder; +} + +small { + font-size: 0.875em; +} + +mark { + padding: 0.1875em; + color: var(--bs-highlight-color); + background-color: var(--bs-highlight-bg); +} + +sub, +sup { + position: relative; + font-size: 0.75em; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +a { + color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)); + text-decoration: underline; +} +a:hover { + --bs-link-color-rgb: var(--bs-link-hover-color-rgb); +} + +a:not([href]):not([class]), a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none; +} + +pre, +code, +kbd, +samp { + font-family: var(--bs-font-monospace); + font-size: 1em; +} + +pre { + display: block; + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + font-size: 0.875em; +} +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +code { + font-size: 0.875em; + color: var(--bs-code-color); + word-wrap: break-word; +} +a > code { + color: inherit; +} + +kbd { + padding: 0.1875rem 0.375rem; + font-size: 0.875em; + color: var(--bs-body-bg); + background-color: var(--bs-body-color); + border-radius: 0.25rem; +} +kbd kbd { + padding: 0; + font-size: 1em; +} + +figure { + margin: 0 0 1rem; +} + +img, +svg { + vertical-align: middle; +} + +table { + caption-side: bottom; + border-collapse: collapse; +} + +caption { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + color: var(--bs-secondary-color); + text-align: left; +} + +th { + text-align: inherit; + text-align: -webkit-match-parent; +} + +thead, +tbody, +tfoot, +tr, +td, +th { + border-color: inherit; + border-style: solid; + border-width: 0; +} + +label { + display: inline-block; +} + +button { + border-radius: 0; +} + +button:focus:not(:focus-visible) { + outline: 0; +} + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +button, +select { + text-transform: none; +} + +[role=button] { + cursor: pointer; +} + +select { + word-wrap: normal; +} +select:disabled { + opacity: 1; +} + +[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator { + display: none !important; +} + +button, +[type=button], +[type=reset], +[type=submit] { + -webkit-appearance: button; +} +button:not(:disabled), +[type=button]:not(:disabled), +[type=reset]:not(:disabled), +[type=submit]:not(:disabled) { + cursor: pointer; +} + +::-moz-focus-inner { + padding: 0; + border-style: none; +} + +textarea { + resize: vertical; +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + float: left; + width: 100%; + padding: 0; + margin-bottom: 0.5rem; + font-size: calc(1.275rem + 0.3vw); + line-height: inherit; +} +@media (min-width: 1200px) { + legend { + font-size: 1.5rem; + } +} +legend + * { + clear: left; +} + +::-webkit-datetime-edit-fields-wrapper, +::-webkit-datetime-edit-text, +::-webkit-datetime-edit-minute, +::-webkit-datetime-edit-hour-field, +::-webkit-datetime-edit-day-field, +::-webkit-datetime-edit-month-field, +::-webkit-datetime-edit-year-field { + padding: 0; +} + +::-webkit-inner-spin-button { + height: auto; +} + +[type=search] { + -webkit-appearance: textfield; + outline-offset: -2px; +} + +/* rtl:raw: +[type="tel"], +[type="url"], +[type="email"], +[type="number"] { + direction: ltr; +} +*/ +::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-color-swatch-wrapper { + padding: 0; +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +::file-selector-button { + font: inherit; + -webkit-appearance: button; +} + +output { + display: inline-block; +} + +iframe { + border: 0; +} + +summary { + display: list-item; + cursor: pointer; +} + +progress { + vertical-align: baseline; +} + +[hidden] { + display: none !important; +} + +/*# sourceMappingURL=bootstrap-reboot.css.map */ \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-reboot.css.map b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-reboot.css.map new file mode 100644 index 000000000..5fe522b6d --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Content/bootstrap-reboot.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_root.scss","../../scss/vendor/_rfs.scss","bootstrap-reboot.css","../../scss/mixins/_color-mode.scss","../../scss/_reboot.scss","../../scss/_variables.scss","../../scss/mixins/_border-radius.scss"],"names":[],"mappings":"AACE;;;;EAAA;ACDF;;EASI,kBAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA,kBAAA;EAAA,iBAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA,mBAAA;EAAA,kBAAA;EAAA,kBAAA;EAAA,gBAAA;EAAA,gBAAA;EAAA,kBAAA;EAAA,uBAAA;EAIA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAIA,qBAAA;EAAA,uBAAA;EAAA,qBAAA;EAAA,kBAAA;EAAA,qBAAA;EAAA,oBAAA;EAAA,mBAAA;EAAA,kBAAA;EAIA,8BAAA;EAAA,iCAAA;EAAA,6BAAA;EAAA,2BAAA;EAAA,6BAAA;EAAA,4BAAA;EAAA,6BAAA;EAAA,yBAAA;EAIA,mCAAA;EAAA,qCAAA;EAAA,mCAAA;EAAA,gCAAA;EAAA,mCAAA;EAAA,kCAAA;EAAA,iCAAA;EAAA,gCAAA;EAIA,+BAAA;EAAA,iCAAA;EAAA,+BAAA;EAAA,4BAAA;EAAA,+BAAA;EAAA,8BAAA;EAAA,6BAAA;EAAA,4BAAA;EAIA,mCAAA;EAAA,qCAAA;EAAA,mCAAA;EAAA,gCAAA;EAAA,mCAAA;EAAA,kCAAA;EAAA,iCAAA;EAAA,gCAAA;EAGF,6BAAA;EACA,uBAAA;EAMA,qNAAA;EACA,yGAAA;EACA,yFAAA;EAOA,gDAAA;EC2OI,yBALI;EDpOR,0BAAA;EACA,0BAAA;EAKA,wBAAA;EACA,+BAAA;EACA,kBAAA;EACA,+BAAA;EAEA,yBAAA;EACA,gCAAA;EAEA,4CAAA;EACA,oCAAA;EACA,0BAAA;EACA,oCAAA;EAEA,0CAAA;EACA,mCAAA;EACA,yBAAA;EACA,mCAAA;EAGA,2BAAA;EAEA,wBAAA;EACA,iCAAA;EACA,+BAAA;EAEA,8BAAA;EACA,sCAAA;EAMA,wBAAA;EACA,6BAAA;EACA,0BAAA;EAGA,sBAAA;EACA,wBAAA;EACA,0BAAA;EACA,mDAAA;EAEA,4BAAA;EACA,8BAAA;EACA,6BAAA;EACA,2BAAA;EACA,4BAAA;EACA,mDAAA;EACA,8BAAA;EAGA,kDAAA;EACA,2DAAA;EACA,oDAAA;EACA,2DAAA;EAIA,8BAAA;EACA,6BAAA;EACA,+CAAA;EAIA,8BAAA;EACA,qCAAA;EACA,gCAAA;EACA,uCAAA;AEHF;;AC7GI;EHsHA,kBAAA;EAGA,wBAAA;EACA,kCAAA;EACA,qBAAA;EACA,4BAAA;EAEA,yBAAA;EACA,sCAAA;EAEA,+CAAA;EACA,uCAAA;EACA,0BAAA;EACA,iCAAA;EAEA,6CAAA;EACA,sCAAA;EACA,yBAAA;EACA,gCAAA;EAGE,mCAAA;EAAA,qCAAA;EAAA,mCAAA;EAAA,gCAAA;EAAA,mCAAA;EAAA,kCAAA;EAAA,iCAAA;EAAA,gCAAA;EAIA,+BAAA;EAAA,iCAAA;EAAA,+BAAA;EAAA,4BAAA;EAAA,+BAAA;EAAA,8BAAA;EAAA,6BAAA;EAAA,4BAAA;EAIA,mCAAA;EAAA,qCAAA;EAAA,mCAAA;EAAA,gCAAA;EAAA,mCAAA;EAAA,kCAAA;EAAA,iCAAA;EAAA,gCAAA;EAGF,2BAAA;EAEA,wBAAA;EACA,8BAAA;EACA,kCAAA;EACA,wCAAA;EAEA,wBAAA;EACA,6BAAA;EACA,0BAAA;EAEA,0BAAA;EACA,wDAAA;EAEA,8BAAA;EACA,qCAAA;EACA,gCAAA;EACA,uCAAA;AEHJ;;AErKA;;;EAGE,sBAAA;AFwKF;;AEzJI;EANJ;IAOM,uBAAA;EF6JJ;AACF;;AEhJA;EACE,SAAA;EACA,uCAAA;EH6OI,mCALI;EGtOR,uCAAA;EACA,uCAAA;EACA,2BAAA;EACA,qCAAA;EACA,mCAAA;EACA,8BAAA;EACA,6CAAA;AFmJF;;AE1IA;EACE,cAAA;EACA,cCmnB4B;EDlnB5B,SAAA;EACA,wCAAA;EACA,aCynB4B;AH5e9B;;AEnIA;EACE,aAAA;EACA,qBCwjB4B;EDrjB5B,gBCwjB4B;EDvjB5B,gBCwjB4B;EDvjB5B,8BAAA;AFoIF;;AEjIA;EHuMQ,iCAAA;AClER;AD1FI;EG3CJ;IH8MQ,iBAAA;ECrEN;AACF;;AErIA;EHkMQ,iCAAA;ACzDR;ADnGI;EGtCJ;IHyMQ,eAAA;EC5DN;AACF;;AEzIA;EH6LQ,+BAAA;AChDR;AD5GI;EGjCJ;IHoMQ,kBAAA;ECnDN;AACF;;AE7IA;EHwLQ,iCAAA;ACvCR;ADrHI;EG5BJ;IH+LQ,iBAAA;EC1CN;AACF;;AEjJA;EH+KM,kBALI;ACrBV;;AEhJA;EH0KM,eALI;ACjBV;;AEzIA;EACE,aAAA;EACA,mBCwV0B;AH5M5B;;AElIA;EACE,yCAAA;EAAA,iCAAA;EACA,YAAA;EACA,sCAAA;EAAA,8BAAA;AFqIF;;AE/HA;EACE,mBAAA;EACA,kBAAA;EACA,oBAAA;AFkIF;;AE5HA;;EAEE,kBAAA;AF+HF;;AE5HA;;;EAGE,aAAA;EACA,mBAAA;AF+HF;;AE5HA;;;;EAIE,gBAAA;AF+HF;;AE5HA;EACE,gBC6b4B;AH9T9B;;AE1HA;EACE,qBAAA;EACA,cAAA;AF6HF;;AEvHA;EACE,gBAAA;AF0HF;;AElHA;;EAEE,mBCsa4B;AHjT9B;;AE7GA;EH6EM,kBALI;ACyCV;;AE1GA;EACE,iBCqf4B;EDpf5B,gCAAA;EACA,wCAAA;AF6GF;;AEpGA;;EAEE,kBAAA;EHwDI,iBALI;EGjDR,cAAA;EACA,wBAAA;AFuGF;;AEpGA;EAAM,eAAA;AFwGN;;AEvGA;EAAM,WAAA;AF2GN;;AEtGA;EACE,gEAAA;EACA,0BCgNwC;AHvG1C;AEvGE;EACE,mDAAA;AFyGJ;;AE9FE;EAEE,cAAA;EACA,qBAAA;AFgGJ;;AEzFA;;;;EAIE,qCCgV4B;EJlUxB,cALI;ACoFV;;AErFA;EACE,cAAA;EACA,aAAA;EACA,mBAAA;EACA,cAAA;EHEI,kBALI;AC4FV;AEpFE;EHHI,kBALI;EGUN,cAAA;EACA,kBAAA;AFsFJ;;AElFA;EHVM,kBALI;EGiBR,2BAAA;EACA,qBAAA;AFqFF;AElFE;EACE,cAAA;AFoFJ;;AEhFA;EACE,2BAAA;EHtBI,kBALI;EG6BR,wBCy5CkC;EDx5ClC,sCCy5CkC;EC9rDhC,sBAAA;AJyXJ;AEjFE;EACE,UAAA;EH7BE,cALI;ACsHV;;AEzEA;EACE,gBAAA;AF4EF;;AEtEA;;EAEE,sBAAA;AFyEF;;AEjEA;EACE,oBAAA;EACA,yBAAA;AFoEF;;AEjEA;EACE,mBC4X4B;ED3X5B,sBC2X4B;ED1X5B,gCC4Z4B;ED3Z5B,gBAAA;AFoEF;;AE7DA;EAEE,mBAAA;EACA,gCAAA;AF+DF;;AE5DA;;;;;;EAME,qBAAA;EACA,mBAAA;EACA,eAAA;AF+DF;;AEvDA;EACE,qBAAA;AF0DF;;AEpDA;EAEE,gBAAA;AFsDF;;AE9CA;EACE,UAAA;AFiDF;;AE5CA;;;;;EAKE,SAAA;EACA,oBAAA;EH5HI,kBALI;EGmIR,oBAAA;AF+CF;;AE3CA;;EAEE,oBAAA;AF8CF;;AEzCA;EACE,eAAA;AF4CF;;AEzCA;EAGE,iBAAA;AF0CF;AEvCE;EACE,UAAA;AFyCJ;;AElCA;EACE,wBAAA;AFqCF;;AE7BA;;;;EAIE,0BAAA;AFgCF;AE7BI;;;;EACE,eAAA;AFkCN;;AE3BA;EACE,UAAA;EACA,kBAAA;AF8BF;;AEzBA;EACE,gBAAA;AF4BF;;AElBA;EACE,YAAA;EACA,UAAA;EACA,SAAA;EACA,SAAA;AFqBF;;AEbA;EACE,WAAA;EACA,WAAA;EACA,UAAA;EACA,qBCmN4B;EJpatB,iCAAA;EGoNN,oBAAA;AFeF;AD/XI;EGyWJ;IHtMQ,iBAAA;ECgON;AACF;AElBE;EACE,WAAA;AFoBJ;;AEbA;;;;;;;EAOE,UAAA;AFgBF;;AEbA;EACE,YAAA;AFgBF;;AEPA;EACE,6BAAA;EACA,oBAAA;AFUF;;AEFA;;;;;;;CAAA;AAWA;EACE,wBAAA;AFEF;;AEGA;EACE,UAAA;AFAF;;AEOA;EACE,aAAA;EACA,0BAAA;AFJF;;AEEA;EACE,aAAA;EACA,0BAAA;AFJF;;AESA;EACE,qBAAA;AFNF;;AEWA;EACE,SAAA;AFRF;;AEeA;EACE,kBAAA;EACA,eAAA;AFZF;;AEoBA;EACE,wBAAA;AFjBF;;AEyBA;EACE,wBAAA;AFtBF","file":"bootstrap-reboot.css","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n",":root,\n[data-bs-theme=\"light\"] {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n @each $color, $value in $theme-colors-text {\n --#{$prefix}#{$color}-text-emphasis: #{$value};\n }\n\n @each $color, $value in $theme-colors-bg-subtle {\n --#{$prefix}#{$color}-bg-subtle: #{$value};\n }\n\n @each $color, $value in $theme-colors-border-subtle {\n --#{$prefix}#{$color}-border-subtle: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{inspect($font-family-base)};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n\n --#{$prefix}body-color: #{$body-color};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg: #{$body-bg};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg)};\n // scss-docs-end root-body-variables\n\n --#{$prefix}heading-color: #{$headings-color};\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color)};\n --#{$prefix}link-decoration: #{$link-decoration};\n\n --#{$prefix}link-hover-color: #{$link-hover-color};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color)};\n\n @if $link-hover-decoration != null {\n --#{$prefix}link-hover-decoration: #{$link-hover-decoration};\n }\n\n --#{$prefix}code-color: #{$code-color};\n --#{$prefix}highlight-color: #{$mark-color};\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-xxl: #{$border-radius-xxl};\n --#{$prefix}border-radius-2xl: var(--#{$prefix}border-radius-xxl); // Deprecated in v5.3.0 for consistency\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}box-shadow: #{$box-shadow};\n --#{$prefix}box-shadow-sm: #{$box-shadow-sm};\n --#{$prefix}box-shadow-lg: #{$box-shadow-lg};\n --#{$prefix}box-shadow-inset: #{$box-shadow-inset};\n\n // Focus styles\n // scss-docs-start root-focus-variables\n --#{$prefix}focus-ring-width: #{$focus-ring-width};\n --#{$prefix}focus-ring-opacity: #{$focus-ring-opacity};\n --#{$prefix}focus-ring-color: #{$focus-ring-color};\n // scss-docs-end root-focus-variables\n\n // scss-docs-start root-form-validation-variables\n --#{$prefix}form-valid-color: #{$form-valid-color};\n --#{$prefix}form-valid-border-color: #{$form-valid-border-color};\n --#{$prefix}form-invalid-color: #{$form-invalid-color};\n --#{$prefix}form-invalid-border-color: #{$form-invalid-border-color};\n // scss-docs-end root-form-validation-variables\n}\n\n@if $enable-dark-mode {\n @include color-mode(dark, true) {\n color-scheme: dark;\n\n // scss-docs-start root-dark-mode-vars\n --#{$prefix}body-color: #{$body-color-dark};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color-dark)};\n --#{$prefix}body-bg: #{$body-bg-dark};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color-dark};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color-dark)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color-dark};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color-dark)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg-dark};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg-dark)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color-dark};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color-dark)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg-dark};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg-dark)};\n\n @each $color, $value in $theme-colors-text-dark {\n --#{$prefix}#{$color}-text-emphasis: #{$value};\n }\n\n @each $color, $value in $theme-colors-bg-subtle-dark {\n --#{$prefix}#{$color}-bg-subtle: #{$value};\n }\n\n @each $color, $value in $theme-colors-border-subtle-dark {\n --#{$prefix}#{$color}-border-subtle: #{$value};\n }\n\n --#{$prefix}heading-color: #{$headings-color-dark};\n\n --#{$prefix}link-color: #{$link-color-dark};\n --#{$prefix}link-hover-color: #{$link-hover-color-dark};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color-dark)};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color-dark)};\n\n --#{$prefix}code-color: #{$code-color-dark};\n --#{$prefix}highlight-color: #{$mark-color-dark};\n --#{$prefix}highlight-bg: #{$mark-bg-dark};\n\n --#{$prefix}border-color: #{$border-color-dark};\n --#{$prefix}border-color-translucent: #{$border-color-translucent-dark};\n\n --#{$prefix}form-valid-color: #{$form-valid-color-dark};\n --#{$prefix}form-valid-border-color: #{$form-valid-border-color-dark};\n --#{$prefix}form-invalid-color: #{$form-invalid-color-dark};\n --#{$prefix}form-invalid-border-color: #{$form-invalid-border-color-dark};\n // scss-docs-end root-dark-mode-vars\n }\n}\n","// stylelint-disable scss/dimension-no-non-numeric-values\n\n// SCSS RFS mixin\n//\n// Automated responsive values for font sizes, paddings, margins and much more\n//\n// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)\n\n// Configuration\n\n// Base value\n$rfs-base-value: 1.25rem !default;\n$rfs-unit: rem !default;\n\n@if $rfs-unit != rem and $rfs-unit != px {\n @error \"`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.\";\n}\n\n// Breakpoint at where values start decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n}\n\n// Resize values based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != number or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Mode. Possibilities: \"min-media-query\", \"max-media-query\"\n$rfs-mode: min-media-query !default;\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-rfs to false\n$enable-rfs: true !default;\n\n// Cache $rfs-base-value unit\n$rfs-base-value-unit: unit($rfs-base-value);\n\n@function divide($dividend, $divisor, $precision: 10) {\n $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);\n $dividend: abs($dividend);\n $divisor: abs($divisor);\n @if $dividend == 0 {\n @return 0;\n }\n @if $divisor == 0 {\n @error \"Cannot divide by 0\";\n }\n $remainder: $dividend;\n $result: 0;\n $factor: 10;\n @while ($remainder > 0 and $precision >= 0) {\n $quotient: 0;\n @while ($remainder >= $divisor) {\n $remainder: $remainder - $divisor;\n $quotient: $quotient + 1;\n }\n $result: $result * 10 + $quotient;\n $factor: $factor * .1;\n $remainder: $remainder * 10;\n $precision: $precision - 1;\n @if ($precision < 0 and $remainder >= $divisor * 5) {\n $result: $result + 1;\n }\n }\n $result: $result * $factor * $sign;\n $dividend-unit: unit($dividend);\n $divisor-unit: unit($divisor);\n $unit-map: (\n \"px\": 1px,\n \"rem\": 1rem,\n \"em\": 1em,\n \"%\": 1%\n );\n @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {\n $result: $result * map-get($unit-map, $dividend-unit);\n }\n @return $result;\n}\n\n// Remove px-unit from $rfs-base-value for calculations\n@if $rfs-base-value-unit == px {\n $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);\n}\n@else if $rfs-base-value-unit == rem {\n $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == px {\n $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));\n}\n\n// Calculate the media query value\n$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});\n$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);\n$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);\n\n// Internal mixin used to determine which media query needs to be used\n@mixin _rfs-media-query {\n @if $rfs-two-dimensional {\n @if $rfs-mode == max-media-query {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {\n @content;\n }\n }\n}\n\n// Internal mixin that adds disable classes to the selector if needed.\n@mixin _rfs-rule {\n @if $rfs-class == disable and $rfs-mode == max-media-query {\n // Adding an extra class increases specificity, which prevents the media query to override the property\n &,\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @else if $rfs-class == enable and $rfs-mode == min-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Internal mixin that adds enable classes to the selector if needed.\n@mixin _rfs-media-query-rule {\n\n @if $rfs-class == enable {\n @if $rfs-mode == min-media-query {\n @content;\n }\n\n @include _rfs-media-query () {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n }\n @else {\n @if $rfs-class == disable and $rfs-mode == min-media-query {\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @include _rfs-media-query () {\n @content;\n }\n }\n}\n\n// Helper function to get the formatted non-responsive value\n@function rfs-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: \"\";\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + \" 0\";\n }\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n @if $unit == px {\n // Convert to rem if needed\n $val: $val + \" \" + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);\n }\n @else if $unit == rem {\n // Convert to px if needed\n $val: $val + \" \" + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);\n } @else {\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n $val: $val + \" \" + $value;\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// Helper function to get the responsive value calculated by RFS\n@function rfs-fluid-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: \"\";\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + \" 0\";\n } @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $unit or $unit != px and $unit != rem {\n $val: $val + \" \" + $value;\n } @else {\n // Remove unit from $value for calculations\n $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));\n\n // Only add the media query if the value is greater than the minimum value\n @if abs($value) <= $rfs-base-value or not $enable-rfs {\n $val: $val + \" \" + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);\n }\n @else {\n // Calculate the minimum value\n $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);\n\n // Calculate difference between $value and the minimum value\n $value-diff: abs($value) - $value-min;\n\n // Base value formatting\n $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);\n\n // Use negative value if needed\n $min-width: if($value < 0, -$min-width, $min-width);\n\n // Use `vmin` if two-dimensional is enabled\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};\n\n // Return the calculated value\n $val: $val + \" calc(\" + $min-width + if($value < 0, \" - \", \" + \") + $variable-width + \")\";\n }\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// RFS mixin\n@mixin rfs($values, $property: font-size) {\n @if $values != null {\n $val: rfs-value($values);\n $fluid-val: rfs-fluid-value($values);\n\n // Do not print the media query if responsive & non-responsive values are the same\n @if $val == $fluid-val {\n #{$property}: $val;\n }\n @else {\n @include _rfs-rule () {\n #{$property}: if($rfs-mode == max-media-query, $val, $fluid-val);\n\n // Include safari iframe resize fix if needed\n min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);\n }\n\n @include _rfs-media-query-rule () {\n #{$property}: if($rfs-mode == max-media-query, $fluid-val, $val);\n }\n }\n }\n}\n\n// Shorthand helper mixins\n@mixin font-size($value) {\n @include rfs($value);\n}\n\n@mixin padding($value) {\n @include rfs($value, padding);\n}\n\n@mixin padding-top($value) {\n @include rfs($value, padding-top);\n}\n\n@mixin padding-right($value) {\n @include rfs($value, padding-right);\n}\n\n@mixin padding-bottom($value) {\n @include rfs($value, padding-bottom);\n}\n\n@mixin padding-left($value) {\n @include rfs($value, padding-left);\n}\n\n@mixin margin($value) {\n @include rfs($value, margin);\n}\n\n@mixin margin-top($value) {\n @include rfs($value, margin-top);\n}\n\n@mixin margin-right($value) {\n @include rfs($value, margin-right);\n}\n\n@mixin margin-bottom($value) {\n @include rfs($value, margin-bottom);\n}\n\n@mixin margin-left($value) {\n @include rfs($value, margin-left);\n}\n","/*!\n * Bootstrap Reboot v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root,\n[data-bs-theme=light] {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-primary-text-emphasis: #052c65;\n --bs-secondary-text-emphasis: #2b2f32;\n --bs-success-text-emphasis: #0a3622;\n --bs-info-text-emphasis: #055160;\n --bs-warning-text-emphasis: #664d03;\n --bs-danger-text-emphasis: #58151c;\n --bs-light-text-emphasis: #495057;\n --bs-dark-text-emphasis: #495057;\n --bs-primary-bg-subtle: #cfe2ff;\n --bs-secondary-bg-subtle: #e2e3e5;\n --bs-success-bg-subtle: #d1e7dd;\n --bs-info-bg-subtle: #cff4fc;\n --bs-warning-bg-subtle: #fff3cd;\n --bs-danger-bg-subtle: #f8d7da;\n --bs-light-bg-subtle: #fcfcfd;\n --bs-dark-bg-subtle: #ced4da;\n --bs-primary-border-subtle: #9ec5fe;\n --bs-secondary-border-subtle: #c4c8cb;\n --bs-success-border-subtle: #a3cfbb;\n --bs-info-border-subtle: #9eeaf9;\n --bs-warning-border-subtle: #ffe69c;\n --bs-danger-border-subtle: #f1aeb5;\n --bs-light-border-subtle: #e9ecef;\n --bs-dark-border-subtle: #adb5bd;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg: #fff;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-emphasis-color: #000;\n --bs-emphasis-color-rgb: 0, 0, 0;\n --bs-secondary-color: rgba(33, 37, 41, 0.75);\n --bs-secondary-color-rgb: 33, 37, 41;\n --bs-secondary-bg: #e9ecef;\n --bs-secondary-bg-rgb: 233, 236, 239;\n --bs-tertiary-color: rgba(33, 37, 41, 0.5);\n --bs-tertiary-color-rgb: 33, 37, 41;\n --bs-tertiary-bg: #f8f9fa;\n --bs-tertiary-bg-rgb: 248, 249, 250;\n --bs-heading-color: inherit;\n --bs-link-color: #0d6efd;\n --bs-link-color-rgb: 13, 110, 253;\n --bs-link-decoration: underline;\n --bs-link-hover-color: #0a58ca;\n --bs-link-hover-color-rgb: 10, 88, 202;\n --bs-code-color: #d63384;\n --bs-highlight-color: #212529;\n --bs-highlight-bg: #fff3cd;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-xxl: 2rem;\n --bs-border-radius-2xl: var(--bs-border-radius-xxl);\n --bs-border-radius-pill: 50rem;\n --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);\n --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);\n --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);\n --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);\n --bs-focus-ring-width: 0.25rem;\n --bs-focus-ring-opacity: 0.25;\n --bs-focus-ring-color: rgba(13, 110, 253, 0.25);\n --bs-form-valid-color: #198754;\n --bs-form-valid-border-color: #198754;\n --bs-form-invalid-color: #dc3545;\n --bs-form-invalid-border-color: #dc3545;\n}\n\n[data-bs-theme=dark] {\n color-scheme: dark;\n --bs-body-color: #dee2e6;\n --bs-body-color-rgb: 222, 226, 230;\n --bs-body-bg: #212529;\n --bs-body-bg-rgb: 33, 37, 41;\n --bs-emphasis-color: #fff;\n --bs-emphasis-color-rgb: 255, 255, 255;\n --bs-secondary-color: rgba(222, 226, 230, 0.75);\n --bs-secondary-color-rgb: 222, 226, 230;\n --bs-secondary-bg: #343a40;\n --bs-secondary-bg-rgb: 52, 58, 64;\n --bs-tertiary-color: rgba(222, 226, 230, 0.5);\n --bs-tertiary-color-rgb: 222, 226, 230;\n --bs-tertiary-bg: #2b3035;\n --bs-tertiary-bg-rgb: 43, 48, 53;\n --bs-primary-text-emphasis: #6ea8fe;\n --bs-secondary-text-emphasis: #a7acb1;\n --bs-success-text-emphasis: #75b798;\n --bs-info-text-emphasis: #6edff6;\n --bs-warning-text-emphasis: #ffda6a;\n --bs-danger-text-emphasis: #ea868f;\n --bs-light-text-emphasis: #f8f9fa;\n --bs-dark-text-emphasis: #dee2e6;\n --bs-primary-bg-subtle: #031633;\n --bs-secondary-bg-subtle: #161719;\n --bs-success-bg-subtle: #051b11;\n --bs-info-bg-subtle: #032830;\n --bs-warning-bg-subtle: #332701;\n --bs-danger-bg-subtle: #2c0b0e;\n --bs-light-bg-subtle: #343a40;\n --bs-dark-bg-subtle: #1a1d20;\n --bs-primary-border-subtle: #084298;\n --bs-secondary-border-subtle: #41464b;\n --bs-success-border-subtle: #0f5132;\n --bs-info-border-subtle: #087990;\n --bs-warning-border-subtle: #997404;\n --bs-danger-border-subtle: #842029;\n --bs-light-border-subtle: #495057;\n --bs-dark-border-subtle: #343a40;\n --bs-heading-color: inherit;\n --bs-link-color: #6ea8fe;\n --bs-link-hover-color: #8bb9fe;\n --bs-link-color-rgb: 110, 168, 254;\n --bs-link-hover-color-rgb: 139, 185, 254;\n --bs-code-color: #e685b5;\n --bs-highlight-color: #dee2e6;\n --bs-highlight-bg: #664d03;\n --bs-border-color: #495057;\n --bs-border-color-translucent: rgba(255, 255, 255, 0.15);\n --bs-form-valid-color: #75b798;\n --bs-form-valid-border-color: #75b798;\n --bs-form-invalid-color: #ea868f;\n --bs-form-invalid-border-color: #ea868f;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n@media (prefers-reduced-motion: no-preference) {\n :root {\n scroll-behavior: smooth;\n }\n}\n\nbody {\n margin: 0;\n font-family: var(--bs-body-font-family);\n font-size: var(--bs-body-font-size);\n font-weight: var(--bs-body-font-weight);\n line-height: var(--bs-body-line-height);\n color: var(--bs-body-color);\n text-align: var(--bs-body-text-align);\n background-color: var(--bs-body-bg);\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\nhr {\n margin: 1rem 0;\n color: inherit;\n border: 0;\n border-top: var(--bs-border-width) solid;\n opacity: 0.25;\n}\n\nh6, h5, h4, h3, h2, h1 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n font-weight: 500;\n line-height: 1.2;\n color: var(--bs-heading-color);\n}\n\nh1 {\n font-size: calc(1.375rem + 1.5vw);\n}\n@media (min-width: 1200px) {\n h1 {\n font-size: 2.5rem;\n }\n}\n\nh2 {\n font-size: calc(1.325rem + 0.9vw);\n}\n@media (min-width: 1200px) {\n h2 {\n font-size: 2rem;\n }\n}\n\nh3 {\n font-size: calc(1.3rem + 0.6vw);\n}\n@media (min-width: 1200px) {\n h3 {\n font-size: 1.75rem;\n }\n}\n\nh4 {\n font-size: calc(1.275rem + 0.3vw);\n}\n@media (min-width: 1200px) {\n h4 {\n font-size: 1.5rem;\n }\n}\n\nh5 {\n font-size: 1.25rem;\n}\n\nh6 {\n font-size: 1rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title] {\n text-decoration: underline dotted;\n cursor: help;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: 0.5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 0.875em;\n}\n\nmark {\n padding: 0.1875em;\n color: var(--bs-highlight-color);\n background-color: var(--bs-highlight-bg);\n}\n\nsub,\nsup {\n position: relative;\n font-size: 0.75em;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\na {\n color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));\n text-decoration: underline;\n}\na:hover {\n --bs-link-color-rgb: var(--bs-link-hover-color-rgb);\n}\n\na:not([href]):not([class]), a:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: var(--bs-font-monospace);\n font-size: 1em;\n}\n\npre {\n display: block;\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n font-size: 0.875em;\n}\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\ncode {\n font-size: 0.875em;\n color: var(--bs-code-color);\n word-wrap: break-word;\n}\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.1875rem 0.375rem;\n font-size: 0.875em;\n color: var(--bs-body-bg);\n background-color: var(--bs-body-color);\n border-radius: 0.25rem;\n}\nkbd kbd {\n padding: 0;\n font-size: 1em;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n color: var(--bs-secondary-color);\n text-align: left;\n}\n\nth {\n text-align: inherit;\n text-align: -webkit-match-parent;\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\nlabel {\n display: inline-block;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\n[role=button] {\n cursor: pointer;\n}\n\nselect {\n word-wrap: normal;\n}\nselect:disabled {\n opacity: 1;\n}\n\n[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {\n display: none !important;\n}\n\nbutton,\n[type=button],\n[type=reset],\n[type=submit] {\n -webkit-appearance: button;\n}\nbutton:not(:disabled),\n[type=button]:not(:disabled),\n[type=reset]:not(:disabled),\n[type=submit]:not(:disabled) {\n cursor: pointer;\n}\n\n::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ntextarea {\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n float: left;\n width: 100%;\n padding: 0;\n margin-bottom: 0.5rem;\n font-size: calc(1.275rem + 0.3vw);\n line-height: inherit;\n}\n@media (min-width: 1200px) {\n legend {\n font-size: 1.5rem;\n }\n}\nlegend + * {\n clear: left;\n}\n\n::-webkit-datetime-edit-fields-wrapper,\n::-webkit-datetime-edit-text,\n::-webkit-datetime-edit-minute,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-year-field {\n padding: 0;\n}\n\n::-webkit-inner-spin-button {\n height: auto;\n}\n\n[type=search] {\n -webkit-appearance: textfield;\n outline-offset: -2px;\n}\n\n/* rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-color-swatch-wrapper {\n padding: 0;\n}\n\n::file-selector-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\niframe {\n border: 0;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[hidden] {\n display: none !important;\n}\n\n/*# sourceMappingURL=bootstrap-reboot.css.map */\n","// scss-docs-start color-mode-mixin\n@mixin color-mode($mode: light, $root: false) {\n @if $color-mode-type == \"media-query\" {\n @if $root == true {\n @media (prefers-color-scheme: $mode) {\n :root {\n @content;\n }\n }\n } @else {\n @media (prefers-color-scheme: $mode) {\n @content;\n }\n }\n } @else {\n [data-bs-theme=\"#{$mode}\"] {\n @content;\n }\n }\n}\n// scss-docs-end color-mode-mixin\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n @if $font-size-root != null {\n @include font-size(var(--#{$prefix}root-font-size));\n }\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\n// scss-docs-start reboot-body-rules\nbody {\n margin: 0; // 1\n font-family: var(--#{$prefix}body-font-family);\n @include font-size(var(--#{$prefix}body-font-size));\n font-weight: var(--#{$prefix}body-font-weight);\n line-height: var(--#{$prefix}body-line-height);\n color: var(--#{$prefix}body-color);\n text-align: var(--#{$prefix}body-text-align);\n background-color: var(--#{$prefix}body-bg); // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n// scss-docs-end reboot-body-rules\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n border: 0;\n border-top: $hr-border-width solid $hr-border-color;\n opacity: $hr-opacity;\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: var(--#{$prefix}heading-color);\n}\n\nh1 {\n @extend %heading;\n @include font-size($h1-font-size);\n}\n\nh2 {\n @extend %heading;\n @include font-size($h2-font-size);\n}\n\nh3 {\n @extend %heading;\n @include font-size($h3-font-size);\n}\n\nh4 {\n @extend %heading;\n @include font-size($h4-font-size);\n}\n\nh5 {\n @extend %heading;\n @include font-size($h5-font-size);\n}\n\nh6 {\n @extend %heading;\n @include font-size($h6-font-size);\n}\n\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 2. Add explicit cursor to indicate changed behavior.\n// 3. Prevent the text-decoration to be skipped.\n\nabbr[title] {\n text-decoration: underline dotted; // 1\n cursor: help; // 2\n text-decoration-skip-ink: none; // 3\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n color: var(--#{$prefix}highlight-color);\n background-color: var(--#{$prefix}highlight-bg);\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: rgba(var(--#{$prefix}link-color-rgb), var(--#{$prefix}link-opacity, 1));\n text-decoration: $link-decoration;\n\n &:hover {\n --#{$prefix}link-color-rgb: var(--#{$prefix}link-hover-color-rgb);\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: var(--#{$prefix}code-color);\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\n\n// Forms\n//\n// 1. Allow labels to use `margin` for spacing.\n\nlabel {\n display: inline-block; // 1\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n// See https://github.com/twbs/bootstrap/issues/24093\n\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\n// 1. Remove the margin in Firefox and Safari\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // 1\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\n// Remove the inheritance of text transform in Firefox\nbutton,\nselect {\n text-transform: none;\n}\n// Set the cursor for non-` + + + + + + + + + +<%--

--%> + + +
+
+ + +

Tabellen & Datensätze

+ + + +      + + + + + + + + + + + + +
+ + + + +
+ + + + + diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/OnDocAPIHome.aspx b/API_NetFramework/obj/Debug/Package/PackageTmp/OnDocAPIHome.aspx new file mode 100644 index 000000000..469a7267f --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/OnDocAPIHome.aspx @@ -0,0 +1,261 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OnDocAPIHome.aspx.cs" Inherits="OnDocAPI_NetFramework.DemoSeite" %> + + + + + Application Dashboard + + + +
+
+ + + + +
+
OnDoc-API-Übersicht
+
+ +
+
+

Aktuelle Zeit

+

+
+ +

+
+ +
+

Version

+

+ +

+
+ +
+

API Uptime

+

+ +

+
+
+ + +
+

Schnellzugriff

+
+ +
+
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Scripts/bootstrap.bundle.js b/API_NetFramework/obj/Debug/Package/PackageTmp/Scripts/bootstrap.bundle.js new file mode 100644 index 000000000..6294dff3d --- /dev/null +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Scripts/bootstrap.bundle.js @@ -0,0 +1,6314 @@ +/*! + * Bootstrap v5.3.3 (https://getbootstrap.com/) + * Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : + typeof define === 'function' && define.amd ? define(factory) : + (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.bootstrap = factory()); +})(this, (function () { 'use strict'; + + /** + * -------------------------------------------------------------------------- + * Bootstrap dom/data.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + /** + * Constants + */ + + const elementMap = new Map(); + const Data = { + set(element, key, instance) { + if (!elementMap.has(element)) { + elementMap.set(element, new Map()); + } + const instanceMap = elementMap.get(element); + + // make it clear we only want one instance per element + // can be removed later when multiple key/instances are fine to be used + if (!instanceMap.has(key) && instanceMap.size !== 0) { + // eslint-disable-next-line no-console + console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(instanceMap.keys())[0]}.`); + return; + } + instanceMap.set(key, instance); + }, + get(element, key) { + if (elementMap.has(element)) { + return elementMap.get(element).get(key) || null; + } + return null; + }, + remove(element, key) { + if (!elementMap.has(element)) { + return; + } + const instanceMap = elementMap.get(element); + instanceMap.delete(key); + + // free up element references if there are no instances left for an element + if (instanceMap.size === 0) { + elementMap.delete(element); + } + } + }; + + /** + * -------------------------------------------------------------------------- + * Bootstrap util/index.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + const MAX_UID = 1000000; + const MILLISECONDS_MULTIPLIER = 1000; + const TRANSITION_END = 'transitionend'; + + /** + * Properly escape IDs selectors to handle weird IDs + * @param {string} selector + * @returns {string} + */ + const parseSelector = selector => { + if (selector && window.CSS && window.CSS.escape) { + // document.querySelector needs escaping to handle IDs (html5+) containing for instance / + selector = selector.replace(/#([^\s"#']+)/g, (match, id) => `#${CSS.escape(id)}`); + } + return selector; + }; + + // Shout-out Angus Croll (https://goo.gl/pxwQGp) + const toType = object => { + if (object === null || object === undefined) { + return `${object}`; + } + return Object.prototype.toString.call(object).match(/\s([a-z]+)/i)[1].toLowerCase(); + }; + + /** + * Public Util API + */ + + const getUID = prefix => { + do { + prefix += Math.floor(Math.random() * MAX_UID); + } while (document.getElementById(prefix)); + return prefix; + }; + const getTransitionDurationFromElement = element => { + if (!element) { + return 0; + } + + // Get transition-duration of the element + let { + transitionDuration, + transitionDelay + } = window.getComputedStyle(element); + const floatTransitionDuration = Number.parseFloat(transitionDuration); + const floatTransitionDelay = Number.parseFloat(transitionDelay); + + // Return 0 if element or transition duration is not found + if (!floatTransitionDuration && !floatTransitionDelay) { + return 0; + } + + // If multiple durations are defined, take the first + transitionDuration = transitionDuration.split(',')[0]; + transitionDelay = transitionDelay.split(',')[0]; + return (Number.parseFloat(transitionDuration) + Number.parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER; + }; + const triggerTransitionEnd = element => { + element.dispatchEvent(new Event(TRANSITION_END)); + }; + const isElement$1 = object => { + if (!object || typeof object !== 'object') { + return false; + } + if (typeof object.jquery !== 'undefined') { + object = object[0]; + } + return typeof object.nodeType !== 'undefined'; + }; + const getElement = object => { + // it's a jQuery object or a node element + if (isElement$1(object)) { + return object.jquery ? object[0] : object; + } + if (typeof object === 'string' && object.length > 0) { + return document.querySelector(parseSelector(object)); + } + return null; + }; + const isVisible = element => { + if (!isElement$1(element) || element.getClientRects().length === 0) { + return false; + } + const elementIsVisible = getComputedStyle(element).getPropertyValue('visibility') === 'visible'; + // Handle `details` element as its content may falsie appear visible when it is closed + const closedDetails = element.closest('details:not([open])'); + if (!closedDetails) { + return elementIsVisible; + } + if (closedDetails !== element) { + const summary = element.closest('summary'); + if (summary && summary.parentNode !== closedDetails) { + return false; + } + if (summary === null) { + return false; + } + } + return elementIsVisible; + }; + const isDisabled = element => { + if (!element || element.nodeType !== Node.ELEMENT_NODE) { + return true; + } + if (element.classList.contains('disabled')) { + return true; + } + if (typeof element.disabled !== 'undefined') { + return element.disabled; + } + return element.hasAttribute('disabled') && element.getAttribute('disabled') !== 'false'; + }; + const findShadowRoot = element => { + if (!document.documentElement.attachShadow) { + return null; + } + + // Can find the shadow root otherwise it'll return the document + if (typeof element.getRootNode === 'function') { + const root = element.getRootNode(); + return root instanceof ShadowRoot ? root : null; + } + if (element instanceof ShadowRoot) { + return element; + } + + // when we don't find a shadow root + if (!element.parentNode) { + return null; + } + return findShadowRoot(element.parentNode); + }; + const noop = () => {}; + + /** + * Trick to restart an element's animation + * + * @param {HTMLElement} element + * @return void + * + * @see https://www.charistheo.io/blog/2021/02/restart-a-css-animation-with-javascript/#restarting-a-css-animation + */ + const reflow = element => { + element.offsetHeight; // eslint-disable-line no-unused-expressions + }; + const getjQuery = () => { + if (window.jQuery && !document.body.hasAttribute('data-bs-no-jquery')) { + return window.jQuery; + } + return null; + }; + const DOMContentLoadedCallbacks = []; + const onDOMContentLoaded = callback => { + if (document.readyState === 'loading') { + // add listener on the first call when the document is in loading state + if (!DOMContentLoadedCallbacks.length) { + document.addEventListener('DOMContentLoaded', () => { + for (const callback of DOMContentLoadedCallbacks) { + callback(); + } + }); + } + DOMContentLoadedCallbacks.push(callback); + } else { + callback(); + } + }; + const isRTL = () => document.documentElement.dir === 'rtl'; + const defineJQueryPlugin = plugin => { + onDOMContentLoaded(() => { + const $ = getjQuery(); + /* istanbul ignore if */ + if ($) { + const name = plugin.NAME; + const JQUERY_NO_CONFLICT = $.fn[name]; + $.fn[name] = plugin.jQueryInterface; + $.fn[name].Constructor = plugin; + $.fn[name].noConflict = () => { + $.fn[name] = JQUERY_NO_CONFLICT; + return plugin.jQueryInterface; + }; + } + }); + }; + const execute = (possibleCallback, args = [], defaultValue = possibleCallback) => { + return typeof possibleCallback === 'function' ? possibleCallback(...args) : defaultValue; + }; + const executeAfterTransition = (callback, transitionElement, waitForTransition = true) => { + if (!waitForTransition) { + execute(callback); + return; + } + const durationPadding = 5; + const emulatedDuration = getTransitionDurationFromElement(transitionElement) + durationPadding; + let called = false; + const handler = ({ + target + }) => { + if (target !== transitionElement) { + return; + } + called = true; + transitionElement.removeEventListener(TRANSITION_END, handler); + execute(callback); + }; + transitionElement.addEventListener(TRANSITION_END, handler); + setTimeout(() => { + if (!called) { + triggerTransitionEnd(transitionElement); + } + }, emulatedDuration); + }; + + /** + * Return the previous/next element of a list. + * + * @param {array} list The list of elements + * @param activeElement The active element + * @param shouldGetNext Choose to get next or previous element + * @param isCycleAllowed + * @return {Element|elem} The proper element + */ + const getNextActiveElement = (list, activeElement, shouldGetNext, isCycleAllowed) => { + const listLength = list.length; + let index = list.indexOf(activeElement); + + // if the element does not exist in the list return an element + // depending on the direction and if cycle is allowed + if (index === -1) { + return !shouldGetNext && isCycleAllowed ? list[listLength - 1] : list[0]; + } + index += shouldGetNext ? 1 : -1; + if (isCycleAllowed) { + index = (index + listLength) % listLength; + } + return list[Math.max(0, Math.min(index, listLength - 1))]; + }; + + /** + * -------------------------------------------------------------------------- + * Bootstrap dom/event-handler.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const namespaceRegex = /[^.]*(?=\..*)\.|.*/; + const stripNameRegex = /\..*/; + const stripUidRegex = /::\d+$/; + const eventRegistry = {}; // Events storage + let uidEvent = 1; + const customEvents = { + mouseenter: 'mouseover', + mouseleave: 'mouseout' + }; + const nativeEvents = new Set(['click', 'dblclick', 'mouseup', 'mousedown', 'contextmenu', 'mousewheel', 'DOMMouseScroll', 'mouseover', 'mouseout', 'mousemove', 'selectstart', 'selectend', 'keydown', 'keypress', 'keyup', 'orientationchange', 'touchstart', 'touchmove', 'touchend', 'touchcancel', 'pointerdown', 'pointermove', 'pointerup', 'pointerleave', 'pointercancel', 'gesturestart', 'gesturechange', 'gestureend', 'focus', 'blur', 'change', 'reset', 'select', 'submit', 'focusin', 'focusout', 'load', 'unload', 'beforeunload', 'resize', 'move', 'DOMContentLoaded', 'readystatechange', 'error', 'abort', 'scroll']); + + /** + * Private methods + */ + + function makeEventUid(element, uid) { + return uid && `${uid}::${uidEvent++}` || element.uidEvent || uidEvent++; + } + function getElementEvents(element) { + const uid = makeEventUid(element); + element.uidEvent = uid; + eventRegistry[uid] = eventRegistry[uid] || {}; + return eventRegistry[uid]; + } + function bootstrapHandler(element, fn) { + return function handler(event) { + hydrateObj(event, { + delegateTarget: element + }); + if (handler.oneOff) { + EventHandler.off(element, event.type, fn); + } + return fn.apply(element, [event]); + }; + } + function bootstrapDelegationHandler(element, selector, fn) { + return function handler(event) { + const domElements = element.querySelectorAll(selector); + for (let { + target + } = event; target && target !== this; target = target.parentNode) { + for (const domElement of domElements) { + if (domElement !== target) { + continue; + } + hydrateObj(event, { + delegateTarget: target + }); + if (handler.oneOff) { + EventHandler.off(element, event.type, selector, fn); + } + return fn.apply(target, [event]); + } + } + }; + } + function findHandler(events, callable, delegationSelector = null) { + return Object.values(events).find(event => event.callable === callable && event.delegationSelector === delegationSelector); + } + function normalizeParameters(originalTypeEvent, handler, delegationFunction) { + const isDelegated = typeof handler === 'string'; + // TODO: tooltip passes `false` instead of selector, so we need to check + const callable = isDelegated ? delegationFunction : handler || delegationFunction; + let typeEvent = getTypeEvent(originalTypeEvent); + if (!nativeEvents.has(typeEvent)) { + typeEvent = originalTypeEvent; + } + return [isDelegated, callable, typeEvent]; + } + function addHandler(element, originalTypeEvent, handler, delegationFunction, oneOff) { + if (typeof originalTypeEvent !== 'string' || !element) { + return; + } + let [isDelegated, callable, typeEvent] = normalizeParameters(originalTypeEvent, handler, delegationFunction); + + // in case of mouseenter or mouseleave wrap the handler within a function that checks for its DOM position + // this prevents the handler from being dispatched the same way as mouseover or mouseout does + if (originalTypeEvent in customEvents) { + const wrapFunction = fn => { + return function (event) { + if (!event.relatedTarget || event.relatedTarget !== event.delegateTarget && !event.delegateTarget.contains(event.relatedTarget)) { + return fn.call(this, event); + } + }; + }; + callable = wrapFunction(callable); + } + const events = getElementEvents(element); + const handlers = events[typeEvent] || (events[typeEvent] = {}); + const previousFunction = findHandler(handlers, callable, isDelegated ? handler : null); + if (previousFunction) { + previousFunction.oneOff = previousFunction.oneOff && oneOff; + return; + } + const uid = makeEventUid(callable, originalTypeEvent.replace(namespaceRegex, '')); + const fn = isDelegated ? bootstrapDelegationHandler(element, handler, callable) : bootstrapHandler(element, callable); + fn.delegationSelector = isDelegated ? handler : null; + fn.callable = callable; + fn.oneOff = oneOff; + fn.uidEvent = uid; + handlers[uid] = fn; + element.addEventListener(typeEvent, fn, isDelegated); + } + function removeHandler(element, events, typeEvent, handler, delegationSelector) { + const fn = findHandler(events[typeEvent], handler, delegationSelector); + if (!fn) { + return; + } + element.removeEventListener(typeEvent, fn, Boolean(delegationSelector)); + delete events[typeEvent][fn.uidEvent]; + } + function removeNamespacedHandlers(element, events, typeEvent, namespace) { + const storeElementEvent = events[typeEvent] || {}; + for (const [handlerKey, event] of Object.entries(storeElementEvent)) { + if (handlerKey.includes(namespace)) { + removeHandler(element, events, typeEvent, event.callable, event.delegationSelector); + } + } + } + function getTypeEvent(event) { + // allow to get the native events from namespaced events ('click.bs.button' --> 'click') + event = event.replace(stripNameRegex, ''); + return customEvents[event] || event; + } + const EventHandler = { + on(element, event, handler, delegationFunction) { + addHandler(element, event, handler, delegationFunction, false); + }, + one(element, event, handler, delegationFunction) { + addHandler(element, event, handler, delegationFunction, true); + }, + off(element, originalTypeEvent, handler, delegationFunction) { + if (typeof originalTypeEvent !== 'string' || !element) { + return; + } + const [isDelegated, callable, typeEvent] = normalizeParameters(originalTypeEvent, handler, delegationFunction); + const inNamespace = typeEvent !== originalTypeEvent; + const events = getElementEvents(element); + const storeElementEvent = events[typeEvent] || {}; + const isNamespace = originalTypeEvent.startsWith('.'); + if (typeof callable !== 'undefined') { + // Simplest case: handler is passed, remove that listener ONLY. + if (!Object.keys(storeElementEvent).length) { + return; + } + removeHandler(element, events, typeEvent, callable, isDelegated ? handler : null); + return; + } + if (isNamespace) { + for (const elementEvent of Object.keys(events)) { + removeNamespacedHandlers(element, events, elementEvent, originalTypeEvent.slice(1)); + } + } + for (const [keyHandlers, event] of Object.entries(storeElementEvent)) { + const handlerKey = keyHandlers.replace(stripUidRegex, ''); + if (!inNamespace || originalTypeEvent.includes(handlerKey)) { + removeHandler(element, events, typeEvent, event.callable, event.delegationSelector); + } + } + }, + trigger(element, event, args) { + if (typeof event !== 'string' || !element) { + return null; + } + const $ = getjQuery(); + const typeEvent = getTypeEvent(event); + const inNamespace = event !== typeEvent; + let jQueryEvent = null; + let bubbles = true; + let nativeDispatch = true; + let defaultPrevented = false; + if (inNamespace && $) { + jQueryEvent = $.Event(event, args); + $(element).trigger(jQueryEvent); + bubbles = !jQueryEvent.isPropagationStopped(); + nativeDispatch = !jQueryEvent.isImmediatePropagationStopped(); + defaultPrevented = jQueryEvent.isDefaultPrevented(); + } + const evt = hydrateObj(new Event(event, { + bubbles, + cancelable: true + }), args); + if (defaultPrevented) { + evt.preventDefault(); + } + if (nativeDispatch) { + element.dispatchEvent(evt); + } + if (evt.defaultPrevented && jQueryEvent) { + jQueryEvent.preventDefault(); + } + return evt; + } + }; + function hydrateObj(obj, meta = {}) { + for (const [key, value] of Object.entries(meta)) { + try { + obj[key] = value; + } catch (_unused) { + Object.defineProperty(obj, key, { + configurable: true, + get() { + return value; + } + }); + } + } + return obj; + } + + /** + * -------------------------------------------------------------------------- + * Bootstrap dom/manipulator.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + function normalizeData(value) { + if (value === 'true') { + return true; + } + if (value === 'false') { + return false; + } + if (value === Number(value).toString()) { + return Number(value); + } + if (value === '' || value === 'null') { + return null; + } + if (typeof value !== 'string') { + return value; + } + try { + return JSON.parse(decodeURIComponent(value)); + } catch (_unused) { + return value; + } + } + function normalizeDataKey(key) { + return key.replace(/[A-Z]/g, chr => `-${chr.toLowerCase()}`); + } + const Manipulator = { + setDataAttribute(element, key, value) { + element.setAttribute(`data-bs-${normalizeDataKey(key)}`, value); + }, + removeDataAttribute(element, key) { + element.removeAttribute(`data-bs-${normalizeDataKey(key)}`); + }, + getDataAttributes(element) { + if (!element) { + return {}; + } + const attributes = {}; + const bsKeys = Object.keys(element.dataset).filter(key => key.startsWith('bs') && !key.startsWith('bsConfig')); + for (const key of bsKeys) { + let pureKey = key.replace(/^bs/, ''); + pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1, pureKey.length); + attributes[pureKey] = normalizeData(element.dataset[key]); + } + return attributes; + }, + getDataAttribute(element, key) { + return normalizeData(element.getAttribute(`data-bs-${normalizeDataKey(key)}`)); + } + }; + + /** + * -------------------------------------------------------------------------- + * Bootstrap util/config.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Class definition + */ + + class Config { + // Getters + static get Default() { + return {}; + } + static get DefaultType() { + return {}; + } + static get NAME() { + throw new Error('You have to implement the static method "NAME", for each component!'); + } + _getConfig(config) { + config = this._mergeConfigObj(config); + config = this._configAfterMerge(config); + this._typeCheckConfig(config); + return config; + } + _configAfterMerge(config) { + return config; + } + _mergeConfigObj(config, element) { + const jsonConfig = isElement$1(element) ? Manipulator.getDataAttribute(element, 'config') : {}; // try to parse + + return { + ...this.constructor.Default, + ...(typeof jsonConfig === 'object' ? jsonConfig : {}), + ...(isElement$1(element) ? Manipulator.getDataAttributes(element) : {}), + ...(typeof config === 'object' ? config : {}) + }; + } + _typeCheckConfig(config, configTypes = this.constructor.DefaultType) { + for (const [property, expectedTypes] of Object.entries(configTypes)) { + const value = config[property]; + const valueType = isElement$1(value) ? 'element' : toType(value); + if (!new RegExp(expectedTypes).test(valueType)) { + throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option "${property}" provided type "${valueType}" but expected type "${expectedTypes}".`); + } + } + } + } + + /** + * -------------------------------------------------------------------------- + * Bootstrap base-component.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const VERSION = '5.3.3'; + + /** + * Class definition + */ + + class BaseComponent extends Config { + constructor(element, config) { + super(); + element = getElement(element); + if (!element) { + return; + } + this._element = element; + this._config = this._getConfig(config); + Data.set(this._element, this.constructor.DATA_KEY, this); + } + + // Public + dispose() { + Data.remove(this._element, this.constructor.DATA_KEY); + EventHandler.off(this._element, this.constructor.EVENT_KEY); + for (const propertyName of Object.getOwnPropertyNames(this)) { + this[propertyName] = null; + } + } + _queueCallback(callback, element, isAnimated = true) { + executeAfterTransition(callback, element, isAnimated); + } + _getConfig(config) { + config = this._mergeConfigObj(config, this._element); + config = this._configAfterMerge(config); + this._typeCheckConfig(config); + return config; + } + + // Static + static getInstance(element) { + return Data.get(getElement(element), this.DATA_KEY); + } + static getOrCreateInstance(element, config = {}) { + return this.getInstance(element) || new this(element, typeof config === 'object' ? config : null); + } + static get VERSION() { + return VERSION; + } + static get DATA_KEY() { + return `bs.${this.NAME}`; + } + static get EVENT_KEY() { + return `.${this.DATA_KEY}`; + } + static eventName(name) { + return `${name}${this.EVENT_KEY}`; + } + } + + /** + * -------------------------------------------------------------------------- + * Bootstrap dom/selector-engine.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + const getSelector = element => { + let selector = element.getAttribute('data-bs-target'); + if (!selector || selector === '#') { + let hrefAttribute = element.getAttribute('href'); + + // The only valid content that could double as a selector are IDs or classes, + // so everything starting with `#` or `.`. If a "real" URL is used as the selector, + // `document.querySelector` will rightfully complain it is invalid. + // See https://github.com/twbs/bootstrap/issues/32273 + if (!hrefAttribute || !hrefAttribute.includes('#') && !hrefAttribute.startsWith('.')) { + return null; + } + + // Just in case some CMS puts out a full URL with the anchor appended + if (hrefAttribute.includes('#') && !hrefAttribute.startsWith('#')) { + hrefAttribute = `#${hrefAttribute.split('#')[1]}`; + } + selector = hrefAttribute && hrefAttribute !== '#' ? hrefAttribute.trim() : null; + } + return selector ? selector.split(',').map(sel => parseSelector(sel)).join(',') : null; + }; + const SelectorEngine = { + find(selector, element = document.documentElement) { + return [].concat(...Element.prototype.querySelectorAll.call(element, selector)); + }, + findOne(selector, element = document.documentElement) { + return Element.prototype.querySelector.call(element, selector); + }, + children(element, selector) { + return [].concat(...element.children).filter(child => child.matches(selector)); + }, + parents(element, selector) { + const parents = []; + let ancestor = element.parentNode.closest(selector); + while (ancestor) { + parents.push(ancestor); + ancestor = ancestor.parentNode.closest(selector); + } + return parents; + }, + prev(element, selector) { + let previous = element.previousElementSibling; + while (previous) { + if (previous.matches(selector)) { + return [previous]; + } + previous = previous.previousElementSibling; + } + return []; + }, + // TODO: this is now unused; remove later along with prev() + next(element, selector) { + let next = element.nextElementSibling; + while (next) { + if (next.matches(selector)) { + return [next]; + } + next = next.nextElementSibling; + } + return []; + }, + focusableChildren(element) { + const focusables = ['a', 'button', 'input', 'textarea', 'select', 'details', '[tabindex]', '[contenteditable="true"]'].map(selector => `${selector}:not([tabindex^="-"])`).join(','); + return this.find(focusables, element).filter(el => !isDisabled(el) && isVisible(el)); + }, + getSelectorFromElement(element) { + const selector = getSelector(element); + if (selector) { + return SelectorEngine.findOne(selector) ? selector : null; + } + return null; + }, + getElementFromSelector(element) { + const selector = getSelector(element); + return selector ? SelectorEngine.findOne(selector) : null; + }, + getMultipleElementsFromSelector(element) { + const selector = getSelector(element); + return selector ? SelectorEngine.find(selector) : []; + } + }; + + /** + * -------------------------------------------------------------------------- + * Bootstrap util/component-functions.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + const enableDismissTrigger = (component, method = 'hide') => { + const clickEvent = `click.dismiss${component.EVENT_KEY}`; + const name = component.NAME; + EventHandler.on(document, clickEvent, `[data-bs-dismiss="${name}"]`, function (event) { + if (['A', 'AREA'].includes(this.tagName)) { + event.preventDefault(); + } + if (isDisabled(this)) { + return; + } + const target = SelectorEngine.getElementFromSelector(this) || this.closest(`.${name}`); + const instance = component.getOrCreateInstance(target); + + // Method argument is left, for Alert and only, as it doesn't implement the 'hide' method + instance[method](); + }); + }; + + /** + * -------------------------------------------------------------------------- + * Bootstrap alert.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const NAME$f = 'alert'; + const DATA_KEY$a = 'bs.alert'; + const EVENT_KEY$b = `.${DATA_KEY$a}`; + const EVENT_CLOSE = `close${EVENT_KEY$b}`; + const EVENT_CLOSED = `closed${EVENT_KEY$b}`; + const CLASS_NAME_FADE$5 = 'fade'; + const CLASS_NAME_SHOW$8 = 'show'; + + /** + * Class definition + */ + + class Alert extends BaseComponent { + // Getters + static get NAME() { + return NAME$f; + } + + // Public + close() { + const closeEvent = EventHandler.trigger(this._element, EVENT_CLOSE); + if (closeEvent.defaultPrevented) { + return; + } + this._element.classList.remove(CLASS_NAME_SHOW$8); + const isAnimated = this._element.classList.contains(CLASS_NAME_FADE$5); + this._queueCallback(() => this._destroyElement(), this._element, isAnimated); + } + + // Private + _destroyElement() { + this._element.remove(); + EventHandler.trigger(this._element, EVENT_CLOSED); + this.dispose(); + } + + // Static + static jQueryInterface(config) { + return this.each(function () { + const data = Alert.getOrCreateInstance(this); + if (typeof config !== 'string') { + return; + } + if (data[config] === undefined || config.startsWith('_') || config === 'constructor') { + throw new TypeError(`No method named "${config}"`); + } + data[config](this); + }); + } + } + + /** + * Data API implementation + */ + + enableDismissTrigger(Alert, 'close'); + + /** + * jQuery + */ + + defineJQueryPlugin(Alert); + + /** + * -------------------------------------------------------------------------- + * Bootstrap button.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const NAME$e = 'button'; + const DATA_KEY$9 = 'bs.button'; + const EVENT_KEY$a = `.${DATA_KEY$9}`; + const DATA_API_KEY$6 = '.data-api'; + const CLASS_NAME_ACTIVE$3 = 'active'; + const SELECTOR_DATA_TOGGLE$5 = '[data-bs-toggle="button"]'; + const EVENT_CLICK_DATA_API$6 = `click${EVENT_KEY$a}${DATA_API_KEY$6}`; + + /** + * Class definition + */ + + class Button extends BaseComponent { + // Getters + static get NAME() { + return NAME$e; + } + + // Public + toggle() { + // Toggle class and sync the `aria-pressed` attribute with the return value of the `.toggle()` method + this._element.setAttribute('aria-pressed', this._element.classList.toggle(CLASS_NAME_ACTIVE$3)); + } + + // Static + static jQueryInterface(config) { + return this.each(function () { + const data = Button.getOrCreateInstance(this); + if (config === 'toggle') { + data[config](); + } + }); + } + } + + /** + * Data API implementation + */ + + EventHandler.on(document, EVENT_CLICK_DATA_API$6, SELECTOR_DATA_TOGGLE$5, event => { + event.preventDefault(); + const button = event.target.closest(SELECTOR_DATA_TOGGLE$5); + const data = Button.getOrCreateInstance(button); + data.toggle(); + }); + + /** + * jQuery + */ + + defineJQueryPlugin(Button); + + /** + * -------------------------------------------------------------------------- + * Bootstrap util/swipe.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const NAME$d = 'swipe'; + const EVENT_KEY$9 = '.bs.swipe'; + const EVENT_TOUCHSTART = `touchstart${EVENT_KEY$9}`; + const EVENT_TOUCHMOVE = `touchmove${EVENT_KEY$9}`; + const EVENT_TOUCHEND = `touchend${EVENT_KEY$9}`; + const EVENT_POINTERDOWN = `pointerdown${EVENT_KEY$9}`; + const EVENT_POINTERUP = `pointerup${EVENT_KEY$9}`; + const POINTER_TYPE_TOUCH = 'touch'; + const POINTER_TYPE_PEN = 'pen'; + const CLASS_NAME_POINTER_EVENT = 'pointer-event'; + const SWIPE_THRESHOLD = 40; + const Default$c = { + endCallback: null, + leftCallback: null, + rightCallback: null + }; + const DefaultType$c = { + endCallback: '(function|null)', + leftCallback: '(function|null)', + rightCallback: '(function|null)' + }; + + /** + * Class definition + */ + + class Swipe extends Config { + constructor(element, config) { + super(); + this._element = element; + if (!element || !Swipe.isSupported()) { + return; + } + this._config = this._getConfig(config); + this._deltaX = 0; + this._supportPointerEvents = Boolean(window.PointerEvent); + this._initEvents(); + } + + // Getters + static get Default() { + return Default$c; + } + static get DefaultType() { + return DefaultType$c; + } + static get NAME() { + return NAME$d; + } + + // Public + dispose() { + EventHandler.off(this._element, EVENT_KEY$9); + } + + // Private + _start(event) { + if (!this._supportPointerEvents) { + this._deltaX = event.touches[0].clientX; + return; + } + if (this._eventIsPointerPenTouch(event)) { + this._deltaX = event.clientX; + } + } + _end(event) { + if (this._eventIsPointerPenTouch(event)) { + this._deltaX = event.clientX - this._deltaX; + } + this._handleSwipe(); + execute(this._config.endCallback); + } + _move(event) { + this._deltaX = event.touches && event.touches.length > 1 ? 0 : event.touches[0].clientX - this._deltaX; + } + _handleSwipe() { + const absDeltaX = Math.abs(this._deltaX); + if (absDeltaX <= SWIPE_THRESHOLD) { + return; + } + const direction = absDeltaX / this._deltaX; + this._deltaX = 0; + if (!direction) { + return; + } + execute(direction > 0 ? this._config.rightCallback : this._config.leftCallback); + } + _initEvents() { + if (this._supportPointerEvents) { + EventHandler.on(this._element, EVENT_POINTERDOWN, event => this._start(event)); + EventHandler.on(this._element, EVENT_POINTERUP, event => this._end(event)); + this._element.classList.add(CLASS_NAME_POINTER_EVENT); + } else { + EventHandler.on(this._element, EVENT_TOUCHSTART, event => this._start(event)); + EventHandler.on(this._element, EVENT_TOUCHMOVE, event => this._move(event)); + EventHandler.on(this._element, EVENT_TOUCHEND, event => this._end(event)); + } + } + _eventIsPointerPenTouch(event) { + return this._supportPointerEvents && (event.pointerType === POINTER_TYPE_PEN || event.pointerType === POINTER_TYPE_TOUCH); + } + + // Static + static isSupported() { + return 'ontouchstart' in document.documentElement || navigator.maxTouchPoints > 0; + } + } + + /** + * -------------------------------------------------------------------------- + * Bootstrap carousel.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const NAME$c = 'carousel'; + const DATA_KEY$8 = 'bs.carousel'; + const EVENT_KEY$8 = `.${DATA_KEY$8}`; + const DATA_API_KEY$5 = '.data-api'; + const ARROW_LEFT_KEY$1 = 'ArrowLeft'; + const ARROW_RIGHT_KEY$1 = 'ArrowRight'; + const TOUCHEVENT_COMPAT_WAIT = 500; // Time for mouse compat events to fire after touch + + const ORDER_NEXT = 'next'; + const ORDER_PREV = 'prev'; + const DIRECTION_LEFT = 'left'; + const DIRECTION_RIGHT = 'right'; + const EVENT_SLIDE = `slide${EVENT_KEY$8}`; + const EVENT_SLID = `slid${EVENT_KEY$8}`; + const EVENT_KEYDOWN$1 = `keydown${EVENT_KEY$8}`; + const EVENT_MOUSEENTER$1 = `mouseenter${EVENT_KEY$8}`; + const EVENT_MOUSELEAVE$1 = `mouseleave${EVENT_KEY$8}`; + const EVENT_DRAG_START = `dragstart${EVENT_KEY$8}`; + const EVENT_LOAD_DATA_API$3 = `load${EVENT_KEY$8}${DATA_API_KEY$5}`; + const EVENT_CLICK_DATA_API$5 = `click${EVENT_KEY$8}${DATA_API_KEY$5}`; + const CLASS_NAME_CAROUSEL = 'carousel'; + const CLASS_NAME_ACTIVE$2 = 'active'; + const CLASS_NAME_SLIDE = 'slide'; + const CLASS_NAME_END = 'carousel-item-end'; + const CLASS_NAME_START = 'carousel-item-start'; + const CLASS_NAME_NEXT = 'carousel-item-next'; + const CLASS_NAME_PREV = 'carousel-item-prev'; + const SELECTOR_ACTIVE = '.active'; + const SELECTOR_ITEM = '.carousel-item'; + const SELECTOR_ACTIVE_ITEM = SELECTOR_ACTIVE + SELECTOR_ITEM; + const SELECTOR_ITEM_IMG = '.carousel-item img'; + const SELECTOR_INDICATORS = '.carousel-indicators'; + const SELECTOR_DATA_SLIDE = '[data-bs-slide], [data-bs-slide-to]'; + const SELECTOR_DATA_RIDE = '[data-bs-ride="carousel"]'; + const KEY_TO_DIRECTION = { + [ARROW_LEFT_KEY$1]: DIRECTION_RIGHT, + [ARROW_RIGHT_KEY$1]: DIRECTION_LEFT + }; + const Default$b = { + interval: 5000, + keyboard: true, + pause: 'hover', + ride: false, + touch: true, + wrap: true + }; + const DefaultType$b = { + interval: '(number|boolean)', + // TODO:v6 remove boolean support + keyboard: 'boolean', + pause: '(string|boolean)', + ride: '(boolean|string)', + touch: 'boolean', + wrap: 'boolean' + }; + + /** + * Class definition + */ + + class Carousel extends BaseComponent { + constructor(element, config) { + super(element, config); + this._interval = null; + this._activeElement = null; + this._isSliding = false; + this.touchTimeout = null; + this._swipeHelper = null; + this._indicatorsElement = SelectorEngine.findOne(SELECTOR_INDICATORS, this._element); + this._addEventListeners(); + if (this._config.ride === CLASS_NAME_CAROUSEL) { + this.cycle(); + } + } + + // Getters + static get Default() { + return Default$b; + } + static get DefaultType() { + return DefaultType$b; + } + static get NAME() { + return NAME$c; + } + + // Public + next() { + this._slide(ORDER_NEXT); + } + nextWhenVisible() { + // FIXME TODO use `document.visibilityState` + // Don't call next when the page isn't visible + // or the carousel or its parent isn't visible + if (!document.hidden && isVisible(this._element)) { + this.next(); + } + } + prev() { + this._slide(ORDER_PREV); + } + pause() { + if (this._isSliding) { + triggerTransitionEnd(this._element); + } + this._clearInterval(); + } + cycle() { + this._clearInterval(); + this._updateInterval(); + this._interval = setInterval(() => this.nextWhenVisible(), this._config.interval); + } + _maybeEnableCycle() { + if (!this._config.ride) { + return; + } + if (this._isSliding) { + EventHandler.one(this._element, EVENT_SLID, () => this.cycle()); + return; + } + this.cycle(); + } + to(index) { + const items = this._getItems(); + if (index > items.length - 1 || index < 0) { + return; + } + if (this._isSliding) { + EventHandler.one(this._element, EVENT_SLID, () => this.to(index)); + return; + } + const activeIndex = this._getItemIndex(this._getActive()); + if (activeIndex === index) { + return; + } + const order = index > activeIndex ? ORDER_NEXT : ORDER_PREV; + this._slide(order, items[index]); + } + dispose() { + if (this._swipeHelper) { + this._swipeHelper.dispose(); + } + super.dispose(); + } + + // Private + _configAfterMerge(config) { + config.defaultInterval = config.interval; + return config; + } + _addEventListeners() { + if (this._config.keyboard) { + EventHandler.on(this._element, EVENT_KEYDOWN$1, event => this._keydown(event)); + } + if (this._config.pause === 'hover') { + EventHandler.on(this._element, EVENT_MOUSEENTER$1, () => this.pause()); + EventHandler.on(this._element, EVENT_MOUSELEAVE$1, () => this._maybeEnableCycle()); + } + if (this._config.touch && Swipe.isSupported()) { + this._addTouchEventListeners(); + } + } + _addTouchEventListeners() { + for (const img of SelectorEngine.find(SELECTOR_ITEM_IMG, this._element)) { + EventHandler.on(img, EVENT_DRAG_START, event => event.preventDefault()); + } + const endCallBack = () => { + if (this._config.pause !== 'hover') { + return; + } + + // If it's a touch-enabled device, mouseenter/leave are fired as + // part of the mouse compatibility events on first tap - the carousel + // would stop cycling until user tapped out of it; + // here, we listen for touchend, explicitly pause the carousel + // (as if it's the second time we tap on it, mouseenter compat event + // is NOT fired) and after a timeout (to allow for mouse compatibility + // events to fire) we explicitly restart cycling + + this.pause(); + if (this.touchTimeout) { + clearTimeout(this.touchTimeout); + } + this.touchTimeout = setTimeout(() => this._maybeEnableCycle(), TOUCHEVENT_COMPAT_WAIT + this._config.interval); + }; + const swipeConfig = { + leftCallback: () => this._slide(this._directionToOrder(DIRECTION_LEFT)), + rightCallback: () => this._slide(this._directionToOrder(DIRECTION_RIGHT)), + endCallback: endCallBack + }; + this._swipeHelper = new Swipe(this._element, swipeConfig); + } + _keydown(event) { + if (/input|textarea/i.test(event.target.tagName)) { + return; + } + const direction = KEY_TO_DIRECTION[event.key]; + if (direction) { + event.preventDefault(); + this._slide(this._directionToOrder(direction)); + } + } + _getItemIndex(element) { + return this._getItems().indexOf(element); + } + _setActiveIndicatorElement(index) { + if (!this._indicatorsElement) { + return; + } + const activeIndicator = SelectorEngine.findOne(SELECTOR_ACTIVE, this._indicatorsElement); + activeIndicator.classList.remove(CLASS_NAME_ACTIVE$2); + activeIndicator.removeAttribute('aria-current'); + const newActiveIndicator = SelectorEngine.findOne(`[data-bs-slide-to="${index}"]`, this._indicatorsElement); + if (newActiveIndicator) { + newActiveIndicator.classList.add(CLASS_NAME_ACTIVE$2); + newActiveIndicator.setAttribute('aria-current', 'true'); + } + } + _updateInterval() { + const element = this._activeElement || this._getActive(); + if (!element) { + return; + } + const elementInterval = Number.parseInt(element.getAttribute('data-bs-interval'), 10); + this._config.interval = elementInterval || this._config.defaultInterval; + } + _slide(order, element = null) { + if (this._isSliding) { + return; + } + const activeElement = this._getActive(); + const isNext = order === ORDER_NEXT; + const nextElement = element || getNextActiveElement(this._getItems(), activeElement, isNext, this._config.wrap); + if (nextElement === activeElement) { + return; + } + const nextElementIndex = this._getItemIndex(nextElement); + const triggerEvent = eventName => { + return EventHandler.trigger(this._element, eventName, { + relatedTarget: nextElement, + direction: this._orderToDirection(order), + from: this._getItemIndex(activeElement), + to: nextElementIndex + }); + }; + const slideEvent = triggerEvent(EVENT_SLIDE); + if (slideEvent.defaultPrevented) { + return; + } + if (!activeElement || !nextElement) { + // Some weirdness is happening, so we bail + // TODO: change tests that use empty divs to avoid this check + return; + } + const isCycling = Boolean(this._interval); + this.pause(); + this._isSliding = true; + this._setActiveIndicatorElement(nextElementIndex); + this._activeElement = nextElement; + const directionalClassName = isNext ? CLASS_NAME_START : CLASS_NAME_END; + const orderClassName = isNext ? CLASS_NAME_NEXT : CLASS_NAME_PREV; + nextElement.classList.add(orderClassName); + reflow(nextElement); + activeElement.classList.add(directionalClassName); + nextElement.classList.add(directionalClassName); + const completeCallBack = () => { + nextElement.classList.remove(directionalClassName, orderClassName); + nextElement.classList.add(CLASS_NAME_ACTIVE$2); + activeElement.classList.remove(CLASS_NAME_ACTIVE$2, orderClassName, directionalClassName); + this._isSliding = false; + triggerEvent(EVENT_SLID); + }; + this._queueCallback(completeCallBack, activeElement, this._isAnimated()); + if (isCycling) { + this.cycle(); + } + } + _isAnimated() { + return this._element.classList.contains(CLASS_NAME_SLIDE); + } + _getActive() { + return SelectorEngine.findOne(SELECTOR_ACTIVE_ITEM, this._element); + } + _getItems() { + return SelectorEngine.find(SELECTOR_ITEM, this._element); + } + _clearInterval() { + if (this._interval) { + clearInterval(this._interval); + this._interval = null; + } + } + _directionToOrder(direction) { + if (isRTL()) { + return direction === DIRECTION_LEFT ? ORDER_PREV : ORDER_NEXT; + } + return direction === DIRECTION_LEFT ? ORDER_NEXT : ORDER_PREV; + } + _orderToDirection(order) { + if (isRTL()) { + return order === ORDER_PREV ? DIRECTION_LEFT : DIRECTION_RIGHT; + } + return order === ORDER_PREV ? DIRECTION_RIGHT : DIRECTION_LEFT; + } + + // Static + static jQueryInterface(config) { + return this.each(function () { + const data = Carousel.getOrCreateInstance(this, config); + if (typeof config === 'number') { + data.to(config); + return; + } + if (typeof config === 'string') { + if (data[config] === undefined || config.startsWith('_') || config === 'constructor') { + throw new TypeError(`No method named "${config}"`); + } + data[config](); + } + }); + } + } + + /** + * Data API implementation + */ + + EventHandler.on(document, EVENT_CLICK_DATA_API$5, SELECTOR_DATA_SLIDE, function (event) { + const target = SelectorEngine.getElementFromSelector(this); + if (!target || !target.classList.contains(CLASS_NAME_CAROUSEL)) { + return; + } + event.preventDefault(); + const carousel = Carousel.getOrCreateInstance(target); + const slideIndex = this.getAttribute('data-bs-slide-to'); + if (slideIndex) { + carousel.to(slideIndex); + carousel._maybeEnableCycle(); + return; + } + if (Manipulator.getDataAttribute(this, 'slide') === 'next') { + carousel.next(); + carousel._maybeEnableCycle(); + return; + } + carousel.prev(); + carousel._maybeEnableCycle(); + }); + EventHandler.on(window, EVENT_LOAD_DATA_API$3, () => { + const carousels = SelectorEngine.find(SELECTOR_DATA_RIDE); + for (const carousel of carousels) { + Carousel.getOrCreateInstance(carousel); + } + }); + + /** + * jQuery + */ + + defineJQueryPlugin(Carousel); + + /** + * -------------------------------------------------------------------------- + * Bootstrap collapse.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const NAME$b = 'collapse'; + const DATA_KEY$7 = 'bs.collapse'; + const EVENT_KEY$7 = `.${DATA_KEY$7}`; + const DATA_API_KEY$4 = '.data-api'; + const EVENT_SHOW$6 = `show${EVENT_KEY$7}`; + const EVENT_SHOWN$6 = `shown${EVENT_KEY$7}`; + const EVENT_HIDE$6 = `hide${EVENT_KEY$7}`; + const EVENT_HIDDEN$6 = `hidden${EVENT_KEY$7}`; + const EVENT_CLICK_DATA_API$4 = `click${EVENT_KEY$7}${DATA_API_KEY$4}`; + const CLASS_NAME_SHOW$7 = 'show'; + const CLASS_NAME_COLLAPSE = 'collapse'; + const CLASS_NAME_COLLAPSING = 'collapsing'; + const CLASS_NAME_COLLAPSED = 'collapsed'; + const CLASS_NAME_DEEPER_CHILDREN = `:scope .${CLASS_NAME_COLLAPSE} .${CLASS_NAME_COLLAPSE}`; + const CLASS_NAME_HORIZONTAL = 'collapse-horizontal'; + const WIDTH = 'width'; + const HEIGHT = 'height'; + const SELECTOR_ACTIVES = '.collapse.show, .collapse.collapsing'; + const SELECTOR_DATA_TOGGLE$4 = '[data-bs-toggle="collapse"]'; + const Default$a = { + parent: null, + toggle: true + }; + const DefaultType$a = { + parent: '(null|element)', + toggle: 'boolean' + }; + + /** + * Class definition + */ + + class Collapse extends BaseComponent { + constructor(element, config) { + super(element, config); + this._isTransitioning = false; + this._triggerArray = []; + const toggleList = SelectorEngine.find(SELECTOR_DATA_TOGGLE$4); + for (const elem of toggleList) { + const selector = SelectorEngine.getSelectorFromElement(elem); + const filterElement = SelectorEngine.find(selector).filter(foundElement => foundElement === this._element); + if (selector !== null && filterElement.length) { + this._triggerArray.push(elem); + } + } + this._initializeChildren(); + if (!this._config.parent) { + this._addAriaAndCollapsedClass(this._triggerArray, this._isShown()); + } + if (this._config.toggle) { + this.toggle(); + } + } + + // Getters + static get Default() { + return Default$a; + } + static get DefaultType() { + return DefaultType$a; + } + static get NAME() { + return NAME$b; + } + + // Public + toggle() { + if (this._isShown()) { + this.hide(); + } else { + this.show(); + } + } + show() { + if (this._isTransitioning || this._isShown()) { + return; + } + let activeChildren = []; + + // find active children + if (this._config.parent) { + activeChildren = this._getFirstLevelChildren(SELECTOR_ACTIVES).filter(element => element !== this._element).map(element => Collapse.getOrCreateInstance(element, { + toggle: false + })); + } + if (activeChildren.length && activeChildren[0]._isTransitioning) { + return; + } + const startEvent = EventHandler.trigger(this._element, EVENT_SHOW$6); + if (startEvent.defaultPrevented) { + return; + } + for (const activeInstance of activeChildren) { + activeInstance.hide(); + } + const dimension = this._getDimension(); + this._element.classList.remove(CLASS_NAME_COLLAPSE); + this._element.classList.add(CLASS_NAME_COLLAPSING); + this._element.style[dimension] = 0; + this._addAriaAndCollapsedClass(this._triggerArray, true); + this._isTransitioning = true; + const complete = () => { + this._isTransitioning = false; + this._element.classList.remove(CLASS_NAME_COLLAPSING); + this._element.classList.add(CLASS_NAME_COLLAPSE, CLASS_NAME_SHOW$7); + this._element.style[dimension] = ''; + EventHandler.trigger(this._element, EVENT_SHOWN$6); + }; + const capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1); + const scrollSize = `scroll${capitalizedDimension}`; + this._queueCallback(complete, this._element, true); + this._element.style[dimension] = `${this._element[scrollSize]}px`; + } + hide() { + if (this._isTransitioning || !this._isShown()) { + return; + } + const startEvent = EventHandler.trigger(this._element, EVENT_HIDE$6); + if (startEvent.defaultPrevented) { + return; + } + const dimension = this._getDimension(); + this._element.style[dimension] = `${this._element.getBoundingClientRect()[dimension]}px`; + reflow(this._element); + this._element.classList.add(CLASS_NAME_COLLAPSING); + this._element.classList.remove(CLASS_NAME_COLLAPSE, CLASS_NAME_SHOW$7); + for (const trigger of this._triggerArray) { + const element = SelectorEngine.getElementFromSelector(trigger); + if (element && !this._isShown(element)) { + this._addAriaAndCollapsedClass([trigger], false); + } + } + this._isTransitioning = true; + const complete = () => { + this._isTransitioning = false; + this._element.classList.remove(CLASS_NAME_COLLAPSING); + this._element.classList.add(CLASS_NAME_COLLAPSE); + EventHandler.trigger(this._element, EVENT_HIDDEN$6); + }; + this._element.style[dimension] = ''; + this._queueCallback(complete, this._element, true); + } + _isShown(element = this._element) { + return element.classList.contains(CLASS_NAME_SHOW$7); + } + + // Private + _configAfterMerge(config) { + config.toggle = Boolean(config.toggle); // Coerce string values + config.parent = getElement(config.parent); + return config; + } + _getDimension() { + return this._element.classList.contains(CLASS_NAME_HORIZONTAL) ? WIDTH : HEIGHT; + } + _initializeChildren() { + if (!this._config.parent) { + return; + } + const children = this._getFirstLevelChildren(SELECTOR_DATA_TOGGLE$4); + for (const element of children) { + const selected = SelectorEngine.getElementFromSelector(element); + if (selected) { + this._addAriaAndCollapsedClass([element], this._isShown(selected)); + } + } + } + _getFirstLevelChildren(selector) { + const children = SelectorEngine.find(CLASS_NAME_DEEPER_CHILDREN, this._config.parent); + // remove children if greater depth + return SelectorEngine.find(selector, this._config.parent).filter(element => !children.includes(element)); + } + _addAriaAndCollapsedClass(triggerArray, isOpen) { + if (!triggerArray.length) { + return; + } + for (const element of triggerArray) { + element.classList.toggle(CLASS_NAME_COLLAPSED, !isOpen); + element.setAttribute('aria-expanded', isOpen); + } + } + + // Static + static jQueryInterface(config) { + const _config = {}; + if (typeof config === 'string' && /show|hide/.test(config)) { + _config.toggle = false; + } + return this.each(function () { + const data = Collapse.getOrCreateInstance(this, _config); + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError(`No method named "${config}"`); + } + data[config](); + } + }); + } + } + + /** + * Data API implementation + */ + + EventHandler.on(document, EVENT_CLICK_DATA_API$4, SELECTOR_DATA_TOGGLE$4, function (event) { + // preventDefault only for elements (which change the URL) not inside the collapsible element + if (event.target.tagName === 'A' || event.delegateTarget && event.delegateTarget.tagName === 'A') { + event.preventDefault(); + } + for (const element of SelectorEngine.getMultipleElementsFromSelector(this)) { + Collapse.getOrCreateInstance(element, { + toggle: false + }).toggle(); + } + }); + + /** + * jQuery + */ + + defineJQueryPlugin(Collapse); + + var top = 'top'; + var bottom = 'bottom'; + var right = 'right'; + var left = 'left'; + var auto = 'auto'; + var basePlacements = [top, bottom, right, left]; + var start = 'start'; + var end = 'end'; + var clippingParents = 'clippingParents'; + var viewport = 'viewport'; + var popper = 'popper'; + var reference = 'reference'; + var variationPlacements = /*#__PURE__*/basePlacements.reduce(function (acc, placement) { + return acc.concat([placement + "-" + start, placement + "-" + end]); + }, []); + var placements = /*#__PURE__*/[].concat(basePlacements, [auto]).reduce(function (acc, placement) { + return acc.concat([placement, placement + "-" + start, placement + "-" + end]); + }, []); // modifiers that need to read the DOM + + var beforeRead = 'beforeRead'; + var read = 'read'; + var afterRead = 'afterRead'; // pure-logic modifiers + + var beforeMain = 'beforeMain'; + var main = 'main'; + var afterMain = 'afterMain'; // modifier with the purpose to write to the DOM (or write into a framework state) + + var beforeWrite = 'beforeWrite'; + var write = 'write'; + var afterWrite = 'afterWrite'; + var modifierPhases = [beforeRead, read, afterRead, beforeMain, main, afterMain, beforeWrite, write, afterWrite]; + + function getNodeName(element) { + return element ? (element.nodeName || '').toLowerCase() : null; + } + + function getWindow(node) { + if (node == null) { + return window; + } + + if (node.toString() !== '[object Window]') { + var ownerDocument = node.ownerDocument; + return ownerDocument ? ownerDocument.defaultView || window : window; + } + + return node; + } + + function isElement(node) { + var OwnElement = getWindow(node).Element; + return node instanceof OwnElement || node instanceof Element; + } + + function isHTMLElement(node) { + var OwnElement = getWindow(node).HTMLElement; + return node instanceof OwnElement || node instanceof HTMLElement; + } + + function isShadowRoot(node) { + // IE 11 has no ShadowRoot + if (typeof ShadowRoot === 'undefined') { + return false; + } + + var OwnElement = getWindow(node).ShadowRoot; + return node instanceof OwnElement || node instanceof ShadowRoot; + } + + // and applies them to the HTMLElements such as popper and arrow + + function applyStyles(_ref) { + var state = _ref.state; + Object.keys(state.elements).forEach(function (name) { + var style = state.styles[name] || {}; + var attributes = state.attributes[name] || {}; + var element = state.elements[name]; // arrow is optional + virtual elements + + if (!isHTMLElement(element) || !getNodeName(element)) { + return; + } // Flow doesn't support to extend this property, but it's the most + // effective way to apply styles to an HTMLElement + // $FlowFixMe[cannot-write] + + + Object.assign(element.style, style); + Object.keys(attributes).forEach(function (name) { + var value = attributes[name]; + + if (value === false) { + element.removeAttribute(name); + } else { + element.setAttribute(name, value === true ? '' : value); + } + }); + }); + } + + function effect$2(_ref2) { + var state = _ref2.state; + var initialStyles = { + popper: { + position: state.options.strategy, + left: '0', + top: '0', + margin: '0' + }, + arrow: { + position: 'absolute' + }, + reference: {} + }; + Object.assign(state.elements.popper.style, initialStyles.popper); + state.styles = initialStyles; + + if (state.elements.arrow) { + Object.assign(state.elements.arrow.style, initialStyles.arrow); + } + + return function () { + Object.keys(state.elements).forEach(function (name) { + var element = state.elements[name]; + var attributes = state.attributes[name] || {}; + var styleProperties = Object.keys(state.styles.hasOwnProperty(name) ? state.styles[name] : initialStyles[name]); // Set all values to an empty string to unset them + + var style = styleProperties.reduce(function (style, property) { + style[property] = ''; + return style; + }, {}); // arrow is optional + virtual elements + + if (!isHTMLElement(element) || !getNodeName(element)) { + return; + } + + Object.assign(element.style, style); + Object.keys(attributes).forEach(function (attribute) { + element.removeAttribute(attribute); + }); + }); + }; + } // eslint-disable-next-line import/no-unused-modules + + + const applyStyles$1 = { + name: 'applyStyles', + enabled: true, + phase: 'write', + fn: applyStyles, + effect: effect$2, + requires: ['computeStyles'] + }; + + function getBasePlacement(placement) { + return placement.split('-')[0]; + } + + var max = Math.max; + var min = Math.min; + var round = Math.round; + + function getUAString() { + var uaData = navigator.userAgentData; + + if (uaData != null && uaData.brands && Array.isArray(uaData.brands)) { + return uaData.brands.map(function (item) { + return item.brand + "/" + item.version; + }).join(' '); + } + + return navigator.userAgent; + } + + function isLayoutViewport() { + return !/^((?!chrome|android).)*safari/i.test(getUAString()); + } + + function getBoundingClientRect(element, includeScale, isFixedStrategy) { + if (includeScale === void 0) { + includeScale = false; + } + + if (isFixedStrategy === void 0) { + isFixedStrategy = false; + } + + var clientRect = element.getBoundingClientRect(); + var scaleX = 1; + var scaleY = 1; + + if (includeScale && isHTMLElement(element)) { + scaleX = element.offsetWidth > 0 ? round(clientRect.width) / element.offsetWidth || 1 : 1; + scaleY = element.offsetHeight > 0 ? round(clientRect.height) / element.offsetHeight || 1 : 1; + } + + var _ref = isElement(element) ? getWindow(element) : window, + visualViewport = _ref.visualViewport; + + var addVisualOffsets = !isLayoutViewport() && isFixedStrategy; + var x = (clientRect.left + (addVisualOffsets && visualViewport ? visualViewport.offsetLeft : 0)) / scaleX; + var y = (clientRect.top + (addVisualOffsets && visualViewport ? visualViewport.offsetTop : 0)) / scaleY; + var width = clientRect.width / scaleX; + var height = clientRect.height / scaleY; + return { + width: width, + height: height, + top: y, + right: x + width, + bottom: y + height, + left: x, + x: x, + y: y + }; + } + + // means it doesn't take into account transforms. + + function getLayoutRect(element) { + var clientRect = getBoundingClientRect(element); // Use the clientRect sizes if it's not been transformed. + // Fixes https://github.com/popperjs/popper-core/issues/1223 + + var width = element.offsetWidth; + var height = element.offsetHeight; + + if (Math.abs(clientRect.width - width) <= 1) { + width = clientRect.width; + } + + if (Math.abs(clientRect.height - height) <= 1) { + height = clientRect.height; + } + + return { + x: element.offsetLeft, + y: element.offsetTop, + width: width, + height: height + }; + } + + function contains(parent, child) { + var rootNode = child.getRootNode && child.getRootNode(); // First, attempt with faster native method + + if (parent.contains(child)) { + return true; + } // then fallback to custom implementation with Shadow DOM support + else if (rootNode && isShadowRoot(rootNode)) { + var next = child; + + do { + if (next && parent.isSameNode(next)) { + return true; + } // $FlowFixMe[prop-missing]: need a better way to handle this... + + + next = next.parentNode || next.host; + } while (next); + } // Give up, the result is false + + + return false; + } + + function getComputedStyle$1(element) { + return getWindow(element).getComputedStyle(element); + } + + function isTableElement(element) { + return ['table', 'td', 'th'].indexOf(getNodeName(element)) >= 0; + } + + function getDocumentElement(element) { + // $FlowFixMe[incompatible-return]: assume body is always available + return ((isElement(element) ? element.ownerDocument : // $FlowFixMe[prop-missing] + element.document) || window.document).documentElement; + } + + function getParentNode(element) { + if (getNodeName(element) === 'html') { + return element; + } + + return (// this is a quicker (but less type safe) way to save quite some bytes from the bundle + // $FlowFixMe[incompatible-return] + // $FlowFixMe[prop-missing] + element.assignedSlot || // step into the shadow DOM of the parent of a slotted node + element.parentNode || ( // DOM Element detected + isShadowRoot(element) ? element.host : null) || // ShadowRoot detected + // $FlowFixMe[incompatible-call]: HTMLElement is a Node + getDocumentElement(element) // fallback + + ); + } + + function getTrueOffsetParent(element) { + if (!isHTMLElement(element) || // https://github.com/popperjs/popper-core/issues/837 + getComputedStyle$1(element).position === 'fixed') { + return null; + } + + return element.offsetParent; + } // `.offsetParent` reports `null` for fixed elements, while absolute elements + // return the containing block + + + function getContainingBlock(element) { + var isFirefox = /firefox/i.test(getUAString()); + var isIE = /Trident/i.test(getUAString()); + + if (isIE && isHTMLElement(element)) { + // In IE 9, 10 and 11 fixed elements containing block is always established by the viewport + var elementCss = getComputedStyle$1(element); + + if (elementCss.position === 'fixed') { + return null; + } + } + + var currentNode = getParentNode(element); + + if (isShadowRoot(currentNode)) { + currentNode = currentNode.host; + } + + while (isHTMLElement(currentNode) && ['html', 'body'].indexOf(getNodeName(currentNode)) < 0) { + var css = getComputedStyle$1(currentNode); // This is non-exhaustive but covers the most common CSS properties that + // create a containing block. + // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block + + if (css.transform !== 'none' || css.perspective !== 'none' || css.contain === 'paint' || ['transform', 'perspective'].indexOf(css.willChange) !== -1 || isFirefox && css.willChange === 'filter' || isFirefox && css.filter && css.filter !== 'none') { + return currentNode; + } else { + currentNode = currentNode.parentNode; + } + } + + return null; + } // Gets the closest ancestor positioned element. Handles some edge cases, + // such as table ancestors and cross browser bugs. + + + function getOffsetParent(element) { + var window = getWindow(element); + var offsetParent = getTrueOffsetParent(element); + + while (offsetParent && isTableElement(offsetParent) && getComputedStyle$1(offsetParent).position === 'static') { + offsetParent = getTrueOffsetParent(offsetParent); + } + + if (offsetParent && (getNodeName(offsetParent) === 'html' || getNodeName(offsetParent) === 'body' && getComputedStyle$1(offsetParent).position === 'static')) { + return window; + } + + return offsetParent || getContainingBlock(element) || window; + } + + function getMainAxisFromPlacement(placement) { + return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y'; + } + + function within(min$1, value, max$1) { + return max(min$1, min(value, max$1)); + } + function withinMaxClamp(min, value, max) { + var v = within(min, value, max); + return v > max ? max : v; + } + + function getFreshSideObject() { + return { + top: 0, + right: 0, + bottom: 0, + left: 0 + }; + } + + function mergePaddingObject(paddingObject) { + return Object.assign({}, getFreshSideObject(), paddingObject); + } + + function expandToHashMap(value, keys) { + return keys.reduce(function (hashMap, key) { + hashMap[key] = value; + return hashMap; + }, {}); + } + + var toPaddingObject = function toPaddingObject(padding, state) { + padding = typeof padding === 'function' ? padding(Object.assign({}, state.rects, { + placement: state.placement + })) : padding; + return mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements)); + }; + + function arrow(_ref) { + var _state$modifiersData$; + + var state = _ref.state, + name = _ref.name, + options = _ref.options; + var arrowElement = state.elements.arrow; + var popperOffsets = state.modifiersData.popperOffsets; + var basePlacement = getBasePlacement(state.placement); + var axis = getMainAxisFromPlacement(basePlacement); + var isVertical = [left, right].indexOf(basePlacement) >= 0; + var len = isVertical ? 'height' : 'width'; + + if (!arrowElement || !popperOffsets) { + return; + } + + var paddingObject = toPaddingObject(options.padding, state); + var arrowRect = getLayoutRect(arrowElement); + var minProp = axis === 'y' ? top : left; + var maxProp = axis === 'y' ? bottom : right; + var endDiff = state.rects.reference[len] + state.rects.reference[axis] - popperOffsets[axis] - state.rects.popper[len]; + var startDiff = popperOffsets[axis] - state.rects.reference[axis]; + var arrowOffsetParent = getOffsetParent(arrowElement); + var clientSize = arrowOffsetParent ? axis === 'y' ? arrowOffsetParent.clientHeight || 0 : arrowOffsetParent.clientWidth || 0 : 0; + var centerToReference = endDiff / 2 - startDiff / 2; // Make sure the arrow doesn't overflow the popper if the center point is + // outside of the popper bounds + + var min = paddingObject[minProp]; + var max = clientSize - arrowRect[len] - paddingObject[maxProp]; + var center = clientSize / 2 - arrowRect[len] / 2 + centerToReference; + var offset = within(min, center, max); // Prevents breaking syntax highlighting... + + var axisProp = axis; + state.modifiersData[name] = (_state$modifiersData$ = {}, _state$modifiersData$[axisProp] = offset, _state$modifiersData$.centerOffset = offset - center, _state$modifiersData$); + } + + function effect$1(_ref2) { + var state = _ref2.state, + options = _ref2.options; + var _options$element = options.element, + arrowElement = _options$element === void 0 ? '[data-popper-arrow]' : _options$element; + + if (arrowElement == null) { + return; + } // CSS selector + + + if (typeof arrowElement === 'string') { + arrowElement = state.elements.popper.querySelector(arrowElement); + + if (!arrowElement) { + return; + } + } + + if (!contains(state.elements.popper, arrowElement)) { + return; + } + + state.elements.arrow = arrowElement; + } // eslint-disable-next-line import/no-unused-modules + + + const arrow$1 = { + name: 'arrow', + enabled: true, + phase: 'main', + fn: arrow, + effect: effect$1, + requires: ['popperOffsets'], + requiresIfExists: ['preventOverflow'] + }; + + function getVariation(placement) { + return placement.split('-')[1]; + } + + var unsetSides = { + top: 'auto', + right: 'auto', + bottom: 'auto', + left: 'auto' + }; // Round the offsets to the nearest suitable subpixel based on the DPR. + // Zooming can change the DPR, but it seems to report a value that will + // cleanly divide the values into the appropriate subpixels. + + function roundOffsetsByDPR(_ref, win) { + var x = _ref.x, + y = _ref.y; + var dpr = win.devicePixelRatio || 1; + return { + x: round(x * dpr) / dpr || 0, + y: round(y * dpr) / dpr || 0 + }; + } + + function mapToStyles(_ref2) { + var _Object$assign2; + + var popper = _ref2.popper, + popperRect = _ref2.popperRect, + placement = _ref2.placement, + variation = _ref2.variation, + offsets = _ref2.offsets, + position = _ref2.position, + gpuAcceleration = _ref2.gpuAcceleration, + adaptive = _ref2.adaptive, + roundOffsets = _ref2.roundOffsets, + isFixed = _ref2.isFixed; + var _offsets$x = offsets.x, + x = _offsets$x === void 0 ? 0 : _offsets$x, + _offsets$y = offsets.y, + y = _offsets$y === void 0 ? 0 : _offsets$y; + + var _ref3 = typeof roundOffsets === 'function' ? roundOffsets({ + x: x, + y: y + }) : { + x: x, + y: y + }; + + x = _ref3.x; + y = _ref3.y; + var hasX = offsets.hasOwnProperty('x'); + var hasY = offsets.hasOwnProperty('y'); + var sideX = left; + var sideY = top; + var win = window; + + if (adaptive) { + var offsetParent = getOffsetParent(popper); + var heightProp = 'clientHeight'; + var widthProp = 'clientWidth'; + + if (offsetParent === getWindow(popper)) { + offsetParent = getDocumentElement(popper); + + if (getComputedStyle$1(offsetParent).position !== 'static' && position === 'absolute') { + heightProp = 'scrollHeight'; + widthProp = 'scrollWidth'; + } + } // $FlowFixMe[incompatible-cast]: force type refinement, we compare offsetParent with window above, but Flow doesn't detect it + + + offsetParent = offsetParent; + + if (placement === top || (placement === left || placement === right) && variation === end) { + sideY = bottom; + var offsetY = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.height : // $FlowFixMe[prop-missing] + offsetParent[heightProp]; + y -= offsetY - popperRect.height; + y *= gpuAcceleration ? 1 : -1; + } + + if (placement === left || (placement === top || placement === bottom) && variation === end) { + sideX = right; + var offsetX = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.width : // $FlowFixMe[prop-missing] + offsetParent[widthProp]; + x -= offsetX - popperRect.width; + x *= gpuAcceleration ? 1 : -1; + } + } + + var commonStyles = Object.assign({ + position: position + }, adaptive && unsetSides); + + var _ref4 = roundOffsets === true ? roundOffsetsByDPR({ + x: x, + y: y + }, getWindow(popper)) : { + x: x, + y: y + }; + + x = _ref4.x; + y = _ref4.y; + + if (gpuAcceleration) { + var _Object$assign; + + return Object.assign({}, commonStyles, (_Object$assign = {}, _Object$assign[sideY] = hasY ? '0' : '', _Object$assign[sideX] = hasX ? '0' : '', _Object$assign.transform = (win.devicePixelRatio || 1) <= 1 ? "translate(" + x + "px, " + y + "px)" : "translate3d(" + x + "px, " + y + "px, 0)", _Object$assign)); + } + + return Object.assign({}, commonStyles, (_Object$assign2 = {}, _Object$assign2[sideY] = hasY ? y + "px" : '', _Object$assign2[sideX] = hasX ? x + "px" : '', _Object$assign2.transform = '', _Object$assign2)); + } + + function computeStyles(_ref5) { + var state = _ref5.state, + options = _ref5.options; + var _options$gpuAccelerat = options.gpuAcceleration, + gpuAcceleration = _options$gpuAccelerat === void 0 ? true : _options$gpuAccelerat, + _options$adaptive = options.adaptive, + adaptive = _options$adaptive === void 0 ? true : _options$adaptive, + _options$roundOffsets = options.roundOffsets, + roundOffsets = _options$roundOffsets === void 0 ? true : _options$roundOffsets; + var commonStyles = { + placement: getBasePlacement(state.placement), + variation: getVariation(state.placement), + popper: state.elements.popper, + popperRect: state.rects.popper, + gpuAcceleration: gpuAcceleration, + isFixed: state.options.strategy === 'fixed' + }; + + if (state.modifiersData.popperOffsets != null) { + state.styles.popper = Object.assign({}, state.styles.popper, mapToStyles(Object.assign({}, commonStyles, { + offsets: state.modifiersData.popperOffsets, + position: state.options.strategy, + adaptive: adaptive, + roundOffsets: roundOffsets + }))); + } + + if (state.modifiersData.arrow != null) { + state.styles.arrow = Object.assign({}, state.styles.arrow, mapToStyles(Object.assign({}, commonStyles, { + offsets: state.modifiersData.arrow, + position: 'absolute', + adaptive: false, + roundOffsets: roundOffsets + }))); + } + + state.attributes.popper = Object.assign({}, state.attributes.popper, { + 'data-popper-placement': state.placement + }); + } // eslint-disable-next-line import/no-unused-modules + + + const computeStyles$1 = { + name: 'computeStyles', + enabled: true, + phase: 'beforeWrite', + fn: computeStyles, + data: {} + }; + + var passive = { + passive: true + }; + + function effect(_ref) { + var state = _ref.state, + instance = _ref.instance, + options = _ref.options; + var _options$scroll = options.scroll, + scroll = _options$scroll === void 0 ? true : _options$scroll, + _options$resize = options.resize, + resize = _options$resize === void 0 ? true : _options$resize; + var window = getWindow(state.elements.popper); + var scrollParents = [].concat(state.scrollParents.reference, state.scrollParents.popper); + + if (scroll) { + scrollParents.forEach(function (scrollParent) { + scrollParent.addEventListener('scroll', instance.update, passive); + }); + } + + if (resize) { + window.addEventListener('resize', instance.update, passive); + } + + return function () { + if (scroll) { + scrollParents.forEach(function (scrollParent) { + scrollParent.removeEventListener('scroll', instance.update, passive); + }); + } + + if (resize) { + window.removeEventListener('resize', instance.update, passive); + } + }; + } // eslint-disable-next-line import/no-unused-modules + + + const eventListeners = { + name: 'eventListeners', + enabled: true, + phase: 'write', + fn: function fn() {}, + effect: effect, + data: {} + }; + + var hash$1 = { + left: 'right', + right: 'left', + bottom: 'top', + top: 'bottom' + }; + function getOppositePlacement(placement) { + return placement.replace(/left|right|bottom|top/g, function (matched) { + return hash$1[matched]; + }); + } + + var hash = { + start: 'end', + end: 'start' + }; + function getOppositeVariationPlacement(placement) { + return placement.replace(/start|end/g, function (matched) { + return hash[matched]; + }); + } + + function getWindowScroll(node) { + var win = getWindow(node); + var scrollLeft = win.pageXOffset; + var scrollTop = win.pageYOffset; + return { + scrollLeft: scrollLeft, + scrollTop: scrollTop + }; + } + + function getWindowScrollBarX(element) { + // If has a CSS width greater than the viewport, then this will be + // incorrect for RTL. + // Popper 1 is broken in this case and never had a bug report so let's assume + // it's not an issue. I don't think anyone ever specifies width on + // anyway. + // Browsers where the left scrollbar doesn't cause an issue report `0` for + // this (e.g. Edge 2019, IE11, Safari) + return getBoundingClientRect(getDocumentElement(element)).left + getWindowScroll(element).scrollLeft; + } + + function getViewportRect(element, strategy) { + var win = getWindow(element); + var html = getDocumentElement(element); + var visualViewport = win.visualViewport; + var width = html.clientWidth; + var height = html.clientHeight; + var x = 0; + var y = 0; + + if (visualViewport) { + width = visualViewport.width; + height = visualViewport.height; + var layoutViewport = isLayoutViewport(); + + if (layoutViewport || !layoutViewport && strategy === 'fixed') { + x = visualViewport.offsetLeft; + y = visualViewport.offsetTop; + } + } + + return { + width: width, + height: height, + x: x + getWindowScrollBarX(element), + y: y + }; + } + + // of the `` and `` rect bounds if horizontally scrollable + + function getDocumentRect(element) { + var _element$ownerDocumen; + + var html = getDocumentElement(element); + var winScroll = getWindowScroll(element); + var body = (_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body; + var width = max(html.scrollWidth, html.clientWidth, body ? body.scrollWidth : 0, body ? body.clientWidth : 0); + var height = max(html.scrollHeight, html.clientHeight, body ? body.scrollHeight : 0, body ? body.clientHeight : 0); + var x = -winScroll.scrollLeft + getWindowScrollBarX(element); + var y = -winScroll.scrollTop; + + if (getComputedStyle$1(body || html).direction === 'rtl') { + x += max(html.clientWidth, body ? body.clientWidth : 0) - width; + } + + return { + width: width, + height: height, + x: x, + y: y + }; + } + + function isScrollParent(element) { + // Firefox wants us to check `-x` and `-y` variations as well + var _getComputedStyle = getComputedStyle$1(element), + overflow = _getComputedStyle.overflow, + overflowX = _getComputedStyle.overflowX, + overflowY = _getComputedStyle.overflowY; + + return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX); + } + + function getScrollParent(node) { + if (['html', 'body', '#document'].indexOf(getNodeName(node)) >= 0) { + // $FlowFixMe[incompatible-return]: assume body is always available + return node.ownerDocument.body; + } + + if (isHTMLElement(node) && isScrollParent(node)) { + return node; + } + + return getScrollParent(getParentNode(node)); + } + + /* + given a DOM element, return the list of all scroll parents, up the list of ancesors + until we get to the top window object. This list is what we attach scroll listeners + to, because if any of these parent elements scroll, we'll need to re-calculate the + reference element's position. + */ + + function listScrollParents(element, list) { + var _element$ownerDocumen; + + if (list === void 0) { + list = []; + } + + var scrollParent = getScrollParent(element); + var isBody = scrollParent === ((_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body); + var win = getWindow(scrollParent); + var target = isBody ? [win].concat(win.visualViewport || [], isScrollParent(scrollParent) ? scrollParent : []) : scrollParent; + var updatedList = list.concat(target); + return isBody ? updatedList : // $FlowFixMe[incompatible-call]: isBody tells us target will be an HTMLElement here + updatedList.concat(listScrollParents(getParentNode(target))); + } + + function rectToClientRect(rect) { + return Object.assign({}, rect, { + left: rect.x, + top: rect.y, + right: rect.x + rect.width, + bottom: rect.y + rect.height + }); + } + + function getInnerBoundingClientRect(element, strategy) { + var rect = getBoundingClientRect(element, false, strategy === 'fixed'); + rect.top = rect.top + element.clientTop; + rect.left = rect.left + element.clientLeft; + rect.bottom = rect.top + element.clientHeight; + rect.right = rect.left + element.clientWidth; + rect.width = element.clientWidth; + rect.height = element.clientHeight; + rect.x = rect.left; + rect.y = rect.top; + return rect; + } + + function getClientRectFromMixedType(element, clippingParent, strategy) { + return clippingParent === viewport ? rectToClientRect(getViewportRect(element, strategy)) : isElement(clippingParent) ? getInnerBoundingClientRect(clippingParent, strategy) : rectToClientRect(getDocumentRect(getDocumentElement(element))); + } // A "clipping parent" is an overflowable container with the characteristic of + // clipping (or hiding) overflowing elements with a position different from + // `initial` + + + function getClippingParents(element) { + var clippingParents = listScrollParents(getParentNode(element)); + var canEscapeClipping = ['absolute', 'fixed'].indexOf(getComputedStyle$1(element).position) >= 0; + var clipperElement = canEscapeClipping && isHTMLElement(element) ? getOffsetParent(element) : element; + + if (!isElement(clipperElement)) { + return []; + } // $FlowFixMe[incompatible-return]: https://github.com/facebook/flow/issues/1414 + + + return clippingParents.filter(function (clippingParent) { + return isElement(clippingParent) && contains(clippingParent, clipperElement) && getNodeName(clippingParent) !== 'body'; + }); + } // Gets the maximum area that the element is visible in due to any number of + // clipping parents + + + function getClippingRect(element, boundary, rootBoundary, strategy) { + var mainClippingParents = boundary === 'clippingParents' ? getClippingParents(element) : [].concat(boundary); + var clippingParents = [].concat(mainClippingParents, [rootBoundary]); + var firstClippingParent = clippingParents[0]; + var clippingRect = clippingParents.reduce(function (accRect, clippingParent) { + var rect = getClientRectFromMixedType(element, clippingParent, strategy); + accRect.top = max(rect.top, accRect.top); + accRect.right = min(rect.right, accRect.right); + accRect.bottom = min(rect.bottom, accRect.bottom); + accRect.left = max(rect.left, accRect.left); + return accRect; + }, getClientRectFromMixedType(element, firstClippingParent, strategy)); + clippingRect.width = clippingRect.right - clippingRect.left; + clippingRect.height = clippingRect.bottom - clippingRect.top; + clippingRect.x = clippingRect.left; + clippingRect.y = clippingRect.top; + return clippingRect; + } + + function computeOffsets(_ref) { + var reference = _ref.reference, + element = _ref.element, + placement = _ref.placement; + var basePlacement = placement ? getBasePlacement(placement) : null; + var variation = placement ? getVariation(placement) : null; + var commonX = reference.x + reference.width / 2 - element.width / 2; + var commonY = reference.y + reference.height / 2 - element.height / 2; + var offsets; + + switch (basePlacement) { + case top: + offsets = { + x: commonX, + y: reference.y - element.height + }; + break; + + case bottom: + offsets = { + x: commonX, + y: reference.y + reference.height + }; + break; + + case right: + offsets = { + x: reference.x + reference.width, + y: commonY + }; + break; + + case left: + offsets = { + x: reference.x - element.width, + y: commonY + }; + break; + + default: + offsets = { + x: reference.x, + y: reference.y + }; + } + + var mainAxis = basePlacement ? getMainAxisFromPlacement(basePlacement) : null; + + if (mainAxis != null) { + var len = mainAxis === 'y' ? 'height' : 'width'; + + switch (variation) { + case start: + offsets[mainAxis] = offsets[mainAxis] - (reference[len] / 2 - element[len] / 2); + break; + + case end: + offsets[mainAxis] = offsets[mainAxis] + (reference[len] / 2 - element[len] / 2); + break; + } + } + + return offsets; + } + + function detectOverflow(state, options) { + if (options === void 0) { + options = {}; + } + + var _options = options, + _options$placement = _options.placement, + placement = _options$placement === void 0 ? state.placement : _options$placement, + _options$strategy = _options.strategy, + strategy = _options$strategy === void 0 ? state.strategy : _options$strategy, + _options$boundary = _options.boundary, + boundary = _options$boundary === void 0 ? clippingParents : _options$boundary, + _options$rootBoundary = _options.rootBoundary, + rootBoundary = _options$rootBoundary === void 0 ? viewport : _options$rootBoundary, + _options$elementConte = _options.elementContext, + elementContext = _options$elementConte === void 0 ? popper : _options$elementConte, + _options$altBoundary = _options.altBoundary, + altBoundary = _options$altBoundary === void 0 ? false : _options$altBoundary, + _options$padding = _options.padding, + padding = _options$padding === void 0 ? 0 : _options$padding; + var paddingObject = mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements)); + var altContext = elementContext === popper ? reference : popper; + var popperRect = state.rects.popper; + var element = state.elements[altBoundary ? altContext : elementContext]; + var clippingClientRect = getClippingRect(isElement(element) ? element : element.contextElement || getDocumentElement(state.elements.popper), boundary, rootBoundary, strategy); + var referenceClientRect = getBoundingClientRect(state.elements.reference); + var popperOffsets = computeOffsets({ + reference: referenceClientRect, + element: popperRect, + strategy: 'absolute', + placement: placement + }); + var popperClientRect = rectToClientRect(Object.assign({}, popperRect, popperOffsets)); + var elementClientRect = elementContext === popper ? popperClientRect : referenceClientRect; // positive = overflowing the clipping rect + // 0 or negative = within the clipping rect + + var overflowOffsets = { + top: clippingClientRect.top - elementClientRect.top + paddingObject.top, + bottom: elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom, + left: clippingClientRect.left - elementClientRect.left + paddingObject.left, + right: elementClientRect.right - clippingClientRect.right + paddingObject.right + }; + var offsetData = state.modifiersData.offset; // Offsets can be applied only to the popper element + + if (elementContext === popper && offsetData) { + var offset = offsetData[placement]; + Object.keys(overflowOffsets).forEach(function (key) { + var multiply = [right, bottom].indexOf(key) >= 0 ? 1 : -1; + var axis = [top, bottom].indexOf(key) >= 0 ? 'y' : 'x'; + overflowOffsets[key] += offset[axis] * multiply; + }); + } + + return overflowOffsets; + } + + function computeAutoPlacement(state, options) { + if (options === void 0) { + options = {}; + } + + var _options = options, + placement = _options.placement, + boundary = _options.boundary, + rootBoundary = _options.rootBoundary, + padding = _options.padding, + flipVariations = _options.flipVariations, + _options$allowedAutoP = _options.allowedAutoPlacements, + allowedAutoPlacements = _options$allowedAutoP === void 0 ? placements : _options$allowedAutoP; + var variation = getVariation(placement); + var placements$1 = variation ? flipVariations ? variationPlacements : variationPlacements.filter(function (placement) { + return getVariation(placement) === variation; + }) : basePlacements; + var allowedPlacements = placements$1.filter(function (placement) { + return allowedAutoPlacements.indexOf(placement) >= 0; + }); + + if (allowedPlacements.length === 0) { + allowedPlacements = placements$1; + } // $FlowFixMe[incompatible-type]: Flow seems to have problems with two array unions... + + + var overflows = allowedPlacements.reduce(function (acc, placement) { + acc[placement] = detectOverflow(state, { + placement: placement, + boundary: boundary, + rootBoundary: rootBoundary, + padding: padding + })[getBasePlacement(placement)]; + return acc; + }, {}); + return Object.keys(overflows).sort(function (a, b) { + return overflows[a] - overflows[b]; + }); + } + + function getExpandedFallbackPlacements(placement) { + if (getBasePlacement(placement) === auto) { + return []; + } + + var oppositePlacement = getOppositePlacement(placement); + return [getOppositeVariationPlacement(placement), oppositePlacement, getOppositeVariationPlacement(oppositePlacement)]; + } + + function flip(_ref) { + var state = _ref.state, + options = _ref.options, + name = _ref.name; + + if (state.modifiersData[name]._skip) { + return; + } + + var _options$mainAxis = options.mainAxis, + checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis, + _options$altAxis = options.altAxis, + checkAltAxis = _options$altAxis === void 0 ? true : _options$altAxis, + specifiedFallbackPlacements = options.fallbackPlacements, + padding = options.padding, + boundary = options.boundary, + rootBoundary = options.rootBoundary, + altBoundary = options.altBoundary, + _options$flipVariatio = options.flipVariations, + flipVariations = _options$flipVariatio === void 0 ? true : _options$flipVariatio, + allowedAutoPlacements = options.allowedAutoPlacements; + var preferredPlacement = state.options.placement; + var basePlacement = getBasePlacement(preferredPlacement); + var isBasePlacement = basePlacement === preferredPlacement; + var fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipVariations ? [getOppositePlacement(preferredPlacement)] : getExpandedFallbackPlacements(preferredPlacement)); + var placements = [preferredPlacement].concat(fallbackPlacements).reduce(function (acc, placement) { + return acc.concat(getBasePlacement(placement) === auto ? computeAutoPlacement(state, { + placement: placement, + boundary: boundary, + rootBoundary: rootBoundary, + padding: padding, + flipVariations: flipVariations, + allowedAutoPlacements: allowedAutoPlacements + }) : placement); + }, []); + var referenceRect = state.rects.reference; + var popperRect = state.rects.popper; + var checksMap = new Map(); + var makeFallbackChecks = true; + var firstFittingPlacement = placements[0]; + + for (var i = 0; i < placements.length; i++) { + var placement = placements[i]; + + var _basePlacement = getBasePlacement(placement); + + var isStartVariation = getVariation(placement) === start; + var isVertical = [top, bottom].indexOf(_basePlacement) >= 0; + var len = isVertical ? 'width' : 'height'; + var overflow = detectOverflow(state, { + placement: placement, + boundary: boundary, + rootBoundary: rootBoundary, + altBoundary: altBoundary, + padding: padding + }); + var mainVariationSide = isVertical ? isStartVariation ? right : left : isStartVariation ? bottom : top; + + if (referenceRect[len] > popperRect[len]) { + mainVariationSide = getOppositePlacement(mainVariationSide); + } + + var altVariationSide = getOppositePlacement(mainVariationSide); + var checks = []; + + if (checkMainAxis) { + checks.push(overflow[_basePlacement] <= 0); + } + + if (checkAltAxis) { + checks.push(overflow[mainVariationSide] <= 0, overflow[altVariationSide] <= 0); + } + + if (checks.every(function (check) { + return check; + })) { + firstFittingPlacement = placement; + makeFallbackChecks = false; + break; + } + + checksMap.set(placement, checks); + } + + if (makeFallbackChecks) { + // `2` may be desired in some cases – research later + var numberOfChecks = flipVariations ? 3 : 1; + + var _loop = function _loop(_i) { + var fittingPlacement = placements.find(function (placement) { + var checks = checksMap.get(placement); + + if (checks) { + return checks.slice(0, _i).every(function (check) { + return check; + }); + } + }); + + if (fittingPlacement) { + firstFittingPlacement = fittingPlacement; + return "break"; + } + }; + + for (var _i = numberOfChecks; _i > 0; _i--) { + var _ret = _loop(_i); + + if (_ret === "break") break; + } + } + + if (state.placement !== firstFittingPlacement) { + state.modifiersData[name]._skip = true; + state.placement = firstFittingPlacement; + state.reset = true; + } + } // eslint-disable-next-line import/no-unused-modules + + + const flip$1 = { + name: 'flip', + enabled: true, + phase: 'main', + fn: flip, + requiresIfExists: ['offset'], + data: { + _skip: false + } + }; + + function getSideOffsets(overflow, rect, preventedOffsets) { + if (preventedOffsets === void 0) { + preventedOffsets = { + x: 0, + y: 0 + }; + } + + return { + top: overflow.top - rect.height - preventedOffsets.y, + right: overflow.right - rect.width + preventedOffsets.x, + bottom: overflow.bottom - rect.height + preventedOffsets.y, + left: overflow.left - rect.width - preventedOffsets.x + }; + } + + function isAnySideFullyClipped(overflow) { + return [top, right, bottom, left].some(function (side) { + return overflow[side] >= 0; + }); + } + + function hide(_ref) { + var state = _ref.state, + name = _ref.name; + var referenceRect = state.rects.reference; + var popperRect = state.rects.popper; + var preventedOffsets = state.modifiersData.preventOverflow; + var referenceOverflow = detectOverflow(state, { + elementContext: 'reference' + }); + var popperAltOverflow = detectOverflow(state, { + altBoundary: true + }); + var referenceClippingOffsets = getSideOffsets(referenceOverflow, referenceRect); + var popperEscapeOffsets = getSideOffsets(popperAltOverflow, popperRect, preventedOffsets); + var isReferenceHidden = isAnySideFullyClipped(referenceClippingOffsets); + var hasPopperEscaped = isAnySideFullyClipped(popperEscapeOffsets); + state.modifiersData[name] = { + referenceClippingOffsets: referenceClippingOffsets, + popperEscapeOffsets: popperEscapeOffsets, + isReferenceHidden: isReferenceHidden, + hasPopperEscaped: hasPopperEscaped + }; + state.attributes.popper = Object.assign({}, state.attributes.popper, { + 'data-popper-reference-hidden': isReferenceHidden, + 'data-popper-escaped': hasPopperEscaped + }); + } // eslint-disable-next-line import/no-unused-modules + + + const hide$1 = { + name: 'hide', + enabled: true, + phase: 'main', + requiresIfExists: ['preventOverflow'], + fn: hide + }; + + function distanceAndSkiddingToXY(placement, rects, offset) { + var basePlacement = getBasePlacement(placement); + var invertDistance = [left, top].indexOf(basePlacement) >= 0 ? -1 : 1; + + var _ref = typeof offset === 'function' ? offset(Object.assign({}, rects, { + placement: placement + })) : offset, + skidding = _ref[0], + distance = _ref[1]; + + skidding = skidding || 0; + distance = (distance || 0) * invertDistance; + return [left, right].indexOf(basePlacement) >= 0 ? { + x: distance, + y: skidding + } : { + x: skidding, + y: distance + }; + } + + function offset(_ref2) { + var state = _ref2.state, + options = _ref2.options, + name = _ref2.name; + var _options$offset = options.offset, + offset = _options$offset === void 0 ? [0, 0] : _options$offset; + var data = placements.reduce(function (acc, placement) { + acc[placement] = distanceAndSkiddingToXY(placement, state.rects, offset); + return acc; + }, {}); + var _data$state$placement = data[state.placement], + x = _data$state$placement.x, + y = _data$state$placement.y; + + if (state.modifiersData.popperOffsets != null) { + state.modifiersData.popperOffsets.x += x; + state.modifiersData.popperOffsets.y += y; + } + + state.modifiersData[name] = data; + } // eslint-disable-next-line import/no-unused-modules + + + const offset$1 = { + name: 'offset', + enabled: true, + phase: 'main', + requires: ['popperOffsets'], + fn: offset + }; + + function popperOffsets(_ref) { + var state = _ref.state, + name = _ref.name; + // Offsets are the actual position the popper needs to have to be + // properly positioned near its reference element + // This is the most basic placement, and will be adjusted by + // the modifiers in the next step + state.modifiersData[name] = computeOffsets({ + reference: state.rects.reference, + element: state.rects.popper, + strategy: 'absolute', + placement: state.placement + }); + } // eslint-disable-next-line import/no-unused-modules + + + const popperOffsets$1 = { + name: 'popperOffsets', + enabled: true, + phase: 'read', + fn: popperOffsets, + data: {} + }; + + function getAltAxis(axis) { + return axis === 'x' ? 'y' : 'x'; + } + + function preventOverflow(_ref) { + var state = _ref.state, + options = _ref.options, + name = _ref.name; + var _options$mainAxis = options.mainAxis, + checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis, + _options$altAxis = options.altAxis, + checkAltAxis = _options$altAxis === void 0 ? false : _options$altAxis, + boundary = options.boundary, + rootBoundary = options.rootBoundary, + altBoundary = options.altBoundary, + padding = options.padding, + _options$tether = options.tether, + tether = _options$tether === void 0 ? true : _options$tether, + _options$tetherOffset = options.tetherOffset, + tetherOffset = _options$tetherOffset === void 0 ? 0 : _options$tetherOffset; + var overflow = detectOverflow(state, { + boundary: boundary, + rootBoundary: rootBoundary, + padding: padding, + altBoundary: altBoundary + }); + var basePlacement = getBasePlacement(state.placement); + var variation = getVariation(state.placement); + var isBasePlacement = !variation; + var mainAxis = getMainAxisFromPlacement(basePlacement); + var altAxis = getAltAxis(mainAxis); + var popperOffsets = state.modifiersData.popperOffsets; + var referenceRect = state.rects.reference; + var popperRect = state.rects.popper; + var tetherOffsetValue = typeof tetherOffset === 'function' ? tetherOffset(Object.assign({}, state.rects, { + placement: state.placement + })) : tetherOffset; + var normalizedTetherOffsetValue = typeof tetherOffsetValue === 'number' ? { + mainAxis: tetherOffsetValue, + altAxis: tetherOffsetValue + } : Object.assign({ + mainAxis: 0, + altAxis: 0 + }, tetherOffsetValue); + var offsetModifierState = state.modifiersData.offset ? state.modifiersData.offset[state.placement] : null; + var data = { + x: 0, + y: 0 + }; + + if (!popperOffsets) { + return; + } + + if (checkMainAxis) { + var _offsetModifierState$; + + var mainSide = mainAxis === 'y' ? top : left; + var altSide = mainAxis === 'y' ? bottom : right; + var len = mainAxis === 'y' ? 'height' : 'width'; + var offset = popperOffsets[mainAxis]; + var min$1 = offset + overflow[mainSide]; + var max$1 = offset - overflow[altSide]; + var additive = tether ? -popperRect[len] / 2 : 0; + var minLen = variation === start ? referenceRect[len] : popperRect[len]; + var maxLen = variation === start ? -popperRect[len] : -referenceRect[len]; // We need to include the arrow in the calculation so the arrow doesn't go + // outside the reference bounds + + var arrowElement = state.elements.arrow; + var arrowRect = tether && arrowElement ? getLayoutRect(arrowElement) : { + width: 0, + height: 0 + }; + var arrowPaddingObject = state.modifiersData['arrow#persistent'] ? state.modifiersData['arrow#persistent'].padding : getFreshSideObject(); + var arrowPaddingMin = arrowPaddingObject[mainSide]; + var arrowPaddingMax = arrowPaddingObject[altSide]; // If the reference length is smaller than the arrow length, we don't want + // to include its full size in the calculation. If the reference is small + // and near the edge of a boundary, the popper can overflow even if the + // reference is not overflowing as well (e.g. virtual elements with no + // width or height) + + var arrowLen = within(0, referenceRect[len], arrowRect[len]); + var minOffset = isBasePlacement ? referenceRect[len] / 2 - additive - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis : minLen - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis; + var maxOffset = isBasePlacement ? -referenceRect[len] / 2 + additive + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis : maxLen + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis; + var arrowOffsetParent = state.elements.arrow && getOffsetParent(state.elements.arrow); + var clientOffset = arrowOffsetParent ? mainAxis === 'y' ? arrowOffsetParent.clientTop || 0 : arrowOffsetParent.clientLeft || 0 : 0; + var offsetModifierValue = (_offsetModifierState$ = offsetModifierState == null ? void 0 : offsetModifierState[mainAxis]) != null ? _offsetModifierState$ : 0; + var tetherMin = offset + minOffset - offsetModifierValue - clientOffset; + var tetherMax = offset + maxOffset - offsetModifierValue; + var preventedOffset = within(tether ? min(min$1, tetherMin) : min$1, offset, tether ? max(max$1, tetherMax) : max$1); + popperOffsets[mainAxis] = preventedOffset; + data[mainAxis] = preventedOffset - offset; + } + + if (checkAltAxis) { + var _offsetModifierState$2; + + var _mainSide = mainAxis === 'x' ? top : left; + + var _altSide = mainAxis === 'x' ? bottom : right; + + var _offset = popperOffsets[altAxis]; + + var _len = altAxis === 'y' ? 'height' : 'width'; + + var _min = _offset + overflow[_mainSide]; + + var _max = _offset - overflow[_altSide]; + + var isOriginSide = [top, left].indexOf(basePlacement) !== -1; + + var _offsetModifierValue = (_offsetModifierState$2 = offsetModifierState == null ? void 0 : offsetModifierState[altAxis]) != null ? _offsetModifierState$2 : 0; + + var _tetherMin = isOriginSide ? _min : _offset - referenceRect[_len] - popperRect[_len] - _offsetModifierValue + normalizedTetherOffsetValue.altAxis; + + var _tetherMax = isOriginSide ? _offset + referenceRect[_len] + popperRect[_len] - _offsetModifierValue - normalizedTetherOffsetValue.altAxis : _max; + + var _preventedOffset = tether && isOriginSide ? withinMaxClamp(_tetherMin, _offset, _tetherMax) : within(tether ? _tetherMin : _min, _offset, tether ? _tetherMax : _max); + + popperOffsets[altAxis] = _preventedOffset; + data[altAxis] = _preventedOffset - _offset; + } + + state.modifiersData[name] = data; + } // eslint-disable-next-line import/no-unused-modules + + + const preventOverflow$1 = { + name: 'preventOverflow', + enabled: true, + phase: 'main', + fn: preventOverflow, + requiresIfExists: ['offset'] + }; + + function getHTMLElementScroll(element) { + return { + scrollLeft: element.scrollLeft, + scrollTop: element.scrollTop + }; + } + + function getNodeScroll(node) { + if (node === getWindow(node) || !isHTMLElement(node)) { + return getWindowScroll(node); + } else { + return getHTMLElementScroll(node); + } + } + + function isElementScaled(element) { + var rect = element.getBoundingClientRect(); + var scaleX = round(rect.width) / element.offsetWidth || 1; + var scaleY = round(rect.height) / element.offsetHeight || 1; + return scaleX !== 1 || scaleY !== 1; + } // Returns the composite rect of an element relative to its offsetParent. + // Composite means it takes into account transforms as well as layout. + + + function getCompositeRect(elementOrVirtualElement, offsetParent, isFixed) { + if (isFixed === void 0) { + isFixed = false; + } + + var isOffsetParentAnElement = isHTMLElement(offsetParent); + var offsetParentIsScaled = isHTMLElement(offsetParent) && isElementScaled(offsetParent); + var documentElement = getDocumentElement(offsetParent); + var rect = getBoundingClientRect(elementOrVirtualElement, offsetParentIsScaled, isFixed); + var scroll = { + scrollLeft: 0, + scrollTop: 0 + }; + var offsets = { + x: 0, + y: 0 + }; + + if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) { + if (getNodeName(offsetParent) !== 'body' || // https://github.com/popperjs/popper-core/issues/1078 + isScrollParent(documentElement)) { + scroll = getNodeScroll(offsetParent); + } + + if (isHTMLElement(offsetParent)) { + offsets = getBoundingClientRect(offsetParent, true); + offsets.x += offsetParent.clientLeft; + offsets.y += offsetParent.clientTop; + } else if (documentElement) { + offsets.x = getWindowScrollBarX(documentElement); + } + } + + return { + x: rect.left + scroll.scrollLeft - offsets.x, + y: rect.top + scroll.scrollTop - offsets.y, + width: rect.width, + height: rect.height + }; + } + + function order(modifiers) { + var map = new Map(); + var visited = new Set(); + var result = []; + modifiers.forEach(function (modifier) { + map.set(modifier.name, modifier); + }); // On visiting object, check for its dependencies and visit them recursively + + function sort(modifier) { + visited.add(modifier.name); + var requires = [].concat(modifier.requires || [], modifier.requiresIfExists || []); + requires.forEach(function (dep) { + if (!visited.has(dep)) { + var depModifier = map.get(dep); + + if (depModifier) { + sort(depModifier); + } + } + }); + result.push(modifier); + } + + modifiers.forEach(function (modifier) { + if (!visited.has(modifier.name)) { + // check for visited object + sort(modifier); + } + }); + return result; + } + + function orderModifiers(modifiers) { + // order based on dependencies + var orderedModifiers = order(modifiers); // order based on phase + + return modifierPhases.reduce(function (acc, phase) { + return acc.concat(orderedModifiers.filter(function (modifier) { + return modifier.phase === phase; + })); + }, []); + } + + function debounce(fn) { + var pending; + return function () { + if (!pending) { + pending = new Promise(function (resolve) { + Promise.resolve().then(function () { + pending = undefined; + resolve(fn()); + }); + }); + } + + return pending; + }; + } + + function mergeByName(modifiers) { + var merged = modifiers.reduce(function (merged, current) { + var existing = merged[current.name]; + merged[current.name] = existing ? Object.assign({}, existing, current, { + options: Object.assign({}, existing.options, current.options), + data: Object.assign({}, existing.data, current.data) + }) : current; + return merged; + }, {}); // IE11 does not support Object.values + + return Object.keys(merged).map(function (key) { + return merged[key]; + }); + } + + var DEFAULT_OPTIONS = { + placement: 'bottom', + modifiers: [], + strategy: 'absolute' + }; + + function areValidElements() { + for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { + args[_key] = arguments[_key]; + } + + return !args.some(function (element) { + return !(element && typeof element.getBoundingClientRect === 'function'); + }); + } + + function popperGenerator(generatorOptions) { + if (generatorOptions === void 0) { + generatorOptions = {}; + } + + var _generatorOptions = generatorOptions, + _generatorOptions$def = _generatorOptions.defaultModifiers, + defaultModifiers = _generatorOptions$def === void 0 ? [] : _generatorOptions$def, + _generatorOptions$def2 = _generatorOptions.defaultOptions, + defaultOptions = _generatorOptions$def2 === void 0 ? DEFAULT_OPTIONS : _generatorOptions$def2; + return function createPopper(reference, popper, options) { + if (options === void 0) { + options = defaultOptions; + } + + var state = { + placement: 'bottom', + orderedModifiers: [], + options: Object.assign({}, DEFAULT_OPTIONS, defaultOptions), + modifiersData: {}, + elements: { + reference: reference, + popper: popper + }, + attributes: {}, + styles: {} + }; + var effectCleanupFns = []; + var isDestroyed = false; + var instance = { + state: state, + setOptions: function setOptions(setOptionsAction) { + var options = typeof setOptionsAction === 'function' ? setOptionsAction(state.options) : setOptionsAction; + cleanupModifierEffects(); + state.options = Object.assign({}, defaultOptions, state.options, options); + state.scrollParents = { + reference: isElement(reference) ? listScrollParents(reference) : reference.contextElement ? listScrollParents(reference.contextElement) : [], + popper: listScrollParents(popper) + }; // Orders the modifiers based on their dependencies and `phase` + // properties + + var orderedModifiers = orderModifiers(mergeByName([].concat(defaultModifiers, state.options.modifiers))); // Strip out disabled modifiers + + state.orderedModifiers = orderedModifiers.filter(function (m) { + return m.enabled; + }); + runModifierEffects(); + return instance.update(); + }, + // Sync update – it will always be executed, even if not necessary. This + // is useful for low frequency updates where sync behavior simplifies the + // logic. + // For high frequency updates (e.g. `resize` and `scroll` events), always + // prefer the async Popper#update method + forceUpdate: function forceUpdate() { + if (isDestroyed) { + return; + } + + var _state$elements = state.elements, + reference = _state$elements.reference, + popper = _state$elements.popper; // Don't proceed if `reference` or `popper` are not valid elements + // anymore + + if (!areValidElements(reference, popper)) { + return; + } // Store the reference and popper rects to be read by modifiers + + + state.rects = { + reference: getCompositeRect(reference, getOffsetParent(popper), state.options.strategy === 'fixed'), + popper: getLayoutRect(popper) + }; // Modifiers have the ability to reset the current update cycle. The + // most common use case for this is the `flip` modifier changing the + // placement, which then needs to re-run all the modifiers, because the + // logic was previously ran for the previous placement and is therefore + // stale/incorrect + + state.reset = false; + state.placement = state.options.placement; // On each update cycle, the `modifiersData` property for each modifier + // is filled with the initial data specified by the modifier. This means + // it doesn't persist and is fresh on each update. + // To ensure persistent data, use `${name}#persistent` + + state.orderedModifiers.forEach(function (modifier) { + return state.modifiersData[modifier.name] = Object.assign({}, modifier.data); + }); + + for (var index = 0; index < state.orderedModifiers.length; index++) { + if (state.reset === true) { + state.reset = false; + index = -1; + continue; + } + + var _state$orderedModifie = state.orderedModifiers[index], + fn = _state$orderedModifie.fn, + _state$orderedModifie2 = _state$orderedModifie.options, + _options = _state$orderedModifie2 === void 0 ? {} : _state$orderedModifie2, + name = _state$orderedModifie.name; + + if (typeof fn === 'function') { + state = fn({ + state: state, + options: _options, + name: name, + instance: instance + }) || state; + } + } + }, + // Async and optimistically optimized update – it will not be executed if + // not necessary (debounced to run at most once-per-tick) + update: debounce(function () { + return new Promise(function (resolve) { + instance.forceUpdate(); + resolve(state); + }); + }), + destroy: function destroy() { + cleanupModifierEffects(); + isDestroyed = true; + } + }; + + if (!areValidElements(reference, popper)) { + return instance; + } + + instance.setOptions(options).then(function (state) { + if (!isDestroyed && options.onFirstUpdate) { + options.onFirstUpdate(state); + } + }); // Modifiers have the ability to execute arbitrary code before the first + // update cycle runs. They will be executed in the same order as the update + // cycle. This is useful when a modifier adds some persistent data that + // other modifiers need to use, but the modifier is run after the dependent + // one. + + function runModifierEffects() { + state.orderedModifiers.forEach(function (_ref) { + var name = _ref.name, + _ref$options = _ref.options, + options = _ref$options === void 0 ? {} : _ref$options, + effect = _ref.effect; + + if (typeof effect === 'function') { + var cleanupFn = effect({ + state: state, + name: name, + instance: instance, + options: options + }); + + var noopFn = function noopFn() {}; + + effectCleanupFns.push(cleanupFn || noopFn); + } + }); + } + + function cleanupModifierEffects() { + effectCleanupFns.forEach(function (fn) { + return fn(); + }); + effectCleanupFns = []; + } + + return instance; + }; + } + var createPopper$2 = /*#__PURE__*/popperGenerator(); // eslint-disable-next-line import/no-unused-modules + + var defaultModifiers$1 = [eventListeners, popperOffsets$1, computeStyles$1, applyStyles$1]; + var createPopper$1 = /*#__PURE__*/popperGenerator({ + defaultModifiers: defaultModifiers$1 + }); // eslint-disable-next-line import/no-unused-modules + + var defaultModifiers = [eventListeners, popperOffsets$1, computeStyles$1, applyStyles$1, offset$1, flip$1, preventOverflow$1, arrow$1, hide$1]; + var createPopper = /*#__PURE__*/popperGenerator({ + defaultModifiers: defaultModifiers + }); // eslint-disable-next-line import/no-unused-modules + + const Popper = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({ + __proto__: null, + afterMain, + afterRead, + afterWrite, + applyStyles: applyStyles$1, + arrow: arrow$1, + auto, + basePlacements, + beforeMain, + beforeRead, + beforeWrite, + bottom, + clippingParents, + computeStyles: computeStyles$1, + createPopper, + createPopperBase: createPopper$2, + createPopperLite: createPopper$1, + detectOverflow, + end, + eventListeners, + flip: flip$1, + hide: hide$1, + left, + main, + modifierPhases, + offset: offset$1, + placements, + popper, + popperGenerator, + popperOffsets: popperOffsets$1, + preventOverflow: preventOverflow$1, + read, + reference, + right, + start, + top, + variationPlacements, + viewport, + write + }, Symbol.toStringTag, { value: 'Module' })); + + /** + * -------------------------------------------------------------------------- + * Bootstrap dropdown.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const NAME$a = 'dropdown'; + const DATA_KEY$6 = 'bs.dropdown'; + const EVENT_KEY$6 = `.${DATA_KEY$6}`; + const DATA_API_KEY$3 = '.data-api'; + const ESCAPE_KEY$2 = 'Escape'; + const TAB_KEY$1 = 'Tab'; + const ARROW_UP_KEY$1 = 'ArrowUp'; + const ARROW_DOWN_KEY$1 = 'ArrowDown'; + const RIGHT_MOUSE_BUTTON = 2; // MouseEvent.button value for the secondary button, usually the right button + + const EVENT_HIDE$5 = `hide${EVENT_KEY$6}`; + const EVENT_HIDDEN$5 = `hidden${EVENT_KEY$6}`; + const EVENT_SHOW$5 = `show${EVENT_KEY$6}`; + const EVENT_SHOWN$5 = `shown${EVENT_KEY$6}`; + const EVENT_CLICK_DATA_API$3 = `click${EVENT_KEY$6}${DATA_API_KEY$3}`; + const EVENT_KEYDOWN_DATA_API = `keydown${EVENT_KEY$6}${DATA_API_KEY$3}`; + const EVENT_KEYUP_DATA_API = `keyup${EVENT_KEY$6}${DATA_API_KEY$3}`; + const CLASS_NAME_SHOW$6 = 'show'; + const CLASS_NAME_DROPUP = 'dropup'; + const CLASS_NAME_DROPEND = 'dropend'; + const CLASS_NAME_DROPSTART = 'dropstart'; + const CLASS_NAME_DROPUP_CENTER = 'dropup-center'; + const CLASS_NAME_DROPDOWN_CENTER = 'dropdown-center'; + const SELECTOR_DATA_TOGGLE$3 = '[data-bs-toggle="dropdown"]:not(.disabled):not(:disabled)'; + const SELECTOR_DATA_TOGGLE_SHOWN = `${SELECTOR_DATA_TOGGLE$3}.${CLASS_NAME_SHOW$6}`; + const SELECTOR_MENU = '.dropdown-menu'; + const SELECTOR_NAVBAR = '.navbar'; + const SELECTOR_NAVBAR_NAV = '.navbar-nav'; + const SELECTOR_VISIBLE_ITEMS = '.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)'; + const PLACEMENT_TOP = isRTL() ? 'top-end' : 'top-start'; + const PLACEMENT_TOPEND = isRTL() ? 'top-start' : 'top-end'; + const PLACEMENT_BOTTOM = isRTL() ? 'bottom-end' : 'bottom-start'; + const PLACEMENT_BOTTOMEND = isRTL() ? 'bottom-start' : 'bottom-end'; + const PLACEMENT_RIGHT = isRTL() ? 'left-start' : 'right-start'; + const PLACEMENT_LEFT = isRTL() ? 'right-start' : 'left-start'; + const PLACEMENT_TOPCENTER = 'top'; + const PLACEMENT_BOTTOMCENTER = 'bottom'; + const Default$9 = { + autoClose: true, + boundary: 'clippingParents', + display: 'dynamic', + offset: [0, 2], + popperConfig: null, + reference: 'toggle' + }; + const DefaultType$9 = { + autoClose: '(boolean|string)', + boundary: '(string|element)', + display: 'string', + offset: '(array|string|function)', + popperConfig: '(null|object|function)', + reference: '(string|element|object)' + }; + + /** + * Class definition + */ + + class Dropdown extends BaseComponent { + constructor(element, config) { + super(element, config); + this._popper = null; + this._parent = this._element.parentNode; // dropdown wrapper + // TODO: v6 revert #37011 & change markup https://getbootstrap.com/docs/5.3/forms/input-group/ + this._menu = SelectorEngine.next(this._element, SELECTOR_MENU)[0] || SelectorEngine.prev(this._element, SELECTOR_MENU)[0] || SelectorEngine.findOne(SELECTOR_MENU, this._parent); + this._inNavbar = this._detectNavbar(); + } + + // Getters + static get Default() { + return Default$9; + } + static get DefaultType() { + return DefaultType$9; + } + static get NAME() { + return NAME$a; + } + + // Public + toggle() { + return this._isShown() ? this.hide() : this.show(); + } + show() { + if (isDisabled(this._element) || this._isShown()) { + return; + } + const relatedTarget = { + relatedTarget: this._element + }; + const showEvent = EventHandler.trigger(this._element, EVENT_SHOW$5, relatedTarget); + if (showEvent.defaultPrevented) { + return; + } + this._createPopper(); + + // If this is a touch-enabled device we add extra + // empty mouseover listeners to the body's immediate children; + // only needed because of broken event delegation on iOS + // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html + if ('ontouchstart' in document.documentElement && !this._parent.closest(SELECTOR_NAVBAR_NAV)) { + for (const element of [].concat(...document.body.children)) { + EventHandler.on(element, 'mouseover', noop); + } + } + this._element.focus(); + this._element.setAttribute('aria-expanded', true); + this._menu.classList.add(CLASS_NAME_SHOW$6); + this._element.classList.add(CLASS_NAME_SHOW$6); + EventHandler.trigger(this._element, EVENT_SHOWN$5, relatedTarget); + } + hide() { + if (isDisabled(this._element) || !this._isShown()) { + return; + } + const relatedTarget = { + relatedTarget: this._element + }; + this._completeHide(relatedTarget); + } + dispose() { + if (this._popper) { + this._popper.destroy(); + } + super.dispose(); + } + update() { + this._inNavbar = this._detectNavbar(); + if (this._popper) { + this._popper.update(); + } + } + + // Private + _completeHide(relatedTarget) { + const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE$5, relatedTarget); + if (hideEvent.defaultPrevented) { + return; + } + + // If this is a touch-enabled device we remove the extra + // empty mouseover listeners we added for iOS support + if ('ontouchstart' in document.documentElement) { + for (const element of [].concat(...document.body.children)) { + EventHandler.off(element, 'mouseover', noop); + } + } + if (this._popper) { + this._popper.destroy(); + } + this._menu.classList.remove(CLASS_NAME_SHOW$6); + this._element.classList.remove(CLASS_NAME_SHOW$6); + this._element.setAttribute('aria-expanded', 'false'); + Manipulator.removeDataAttribute(this._menu, 'popper'); + EventHandler.trigger(this._element, EVENT_HIDDEN$5, relatedTarget); + } + _getConfig(config) { + config = super._getConfig(config); + if (typeof config.reference === 'object' && !isElement$1(config.reference) && typeof config.reference.getBoundingClientRect !== 'function') { + // Popper virtual elements require a getBoundingClientRect method + throw new TypeError(`${NAME$a.toUpperCase()}: Option "reference" provided type "object" without a required "getBoundingClientRect" method.`); + } + return config; + } + _createPopper() { + if (typeof Popper === 'undefined') { + throw new TypeError('Bootstrap\'s dropdowns require Popper (https://popper.js.org)'); + } + let referenceElement = this._element; + if (this._config.reference === 'parent') { + referenceElement = this._parent; + } else if (isElement$1(this._config.reference)) { + referenceElement = getElement(this._config.reference); + } else if (typeof this._config.reference === 'object') { + referenceElement = this._config.reference; + } + const popperConfig = this._getPopperConfig(); + this._popper = createPopper(referenceElement, this._menu, popperConfig); + } + _isShown() { + return this._menu.classList.contains(CLASS_NAME_SHOW$6); + } + _getPlacement() { + const parentDropdown = this._parent; + if (parentDropdown.classList.contains(CLASS_NAME_DROPEND)) { + return PLACEMENT_RIGHT; + } + if (parentDropdown.classList.contains(CLASS_NAME_DROPSTART)) { + return PLACEMENT_LEFT; + } + if (parentDropdown.classList.contains(CLASS_NAME_DROPUP_CENTER)) { + return PLACEMENT_TOPCENTER; + } + if (parentDropdown.classList.contains(CLASS_NAME_DROPDOWN_CENTER)) { + return PLACEMENT_BOTTOMCENTER; + } + + // We need to trim the value because custom properties can also include spaces + const isEnd = getComputedStyle(this._menu).getPropertyValue('--bs-position').trim() === 'end'; + if (parentDropdown.classList.contains(CLASS_NAME_DROPUP)) { + return isEnd ? PLACEMENT_TOPEND : PLACEMENT_TOP; + } + return isEnd ? PLACEMENT_BOTTOMEND : PLACEMENT_BOTTOM; + } + _detectNavbar() { + return this._element.closest(SELECTOR_NAVBAR) !== null; + } + _getOffset() { + const { + offset + } = this._config; + if (typeof offset === 'string') { + return offset.split(',').map(value => Number.parseInt(value, 10)); + } + if (typeof offset === 'function') { + return popperData => offset(popperData, this._element); + } + return offset; + } + _getPopperConfig() { + const defaultBsPopperConfig = { + placement: this._getPlacement(), + modifiers: [{ + name: 'preventOverflow', + options: { + boundary: this._config.boundary + } + }, { + name: 'offset', + options: { + offset: this._getOffset() + } + }] + }; + + // Disable Popper if we have a static display or Dropdown is in Navbar + if (this._inNavbar || this._config.display === 'static') { + Manipulator.setDataAttribute(this._menu, 'popper', 'static'); // TODO: v6 remove + defaultBsPopperConfig.modifiers = [{ + name: 'applyStyles', + enabled: false + }]; + } + return { + ...defaultBsPopperConfig, + ...execute(this._config.popperConfig, [defaultBsPopperConfig]) + }; + } + _selectMenuItem({ + key, + target + }) { + const items = SelectorEngine.find(SELECTOR_VISIBLE_ITEMS, this._menu).filter(element => isVisible(element)); + if (!items.length) { + return; + } + + // if target isn't included in items (e.g. when expanding the dropdown) + // allow cycling to get the last item in case key equals ARROW_UP_KEY + getNextActiveElement(items, target, key === ARROW_DOWN_KEY$1, !items.includes(target)).focus(); + } + + // Static + static jQueryInterface(config) { + return this.each(function () { + const data = Dropdown.getOrCreateInstance(this, config); + if (typeof config !== 'string') { + return; + } + if (typeof data[config] === 'undefined') { + throw new TypeError(`No method named "${config}"`); + } + data[config](); + }); + } + static clearMenus(event) { + if (event.button === RIGHT_MOUSE_BUTTON || event.type === 'keyup' && event.key !== TAB_KEY$1) { + return; + } + const openToggles = SelectorEngine.find(SELECTOR_DATA_TOGGLE_SHOWN); + for (const toggle of openToggles) { + const context = Dropdown.getInstance(toggle); + if (!context || context._config.autoClose === false) { + continue; + } + const composedPath = event.composedPath(); + const isMenuTarget = composedPath.includes(context._menu); + if (composedPath.includes(context._element) || context._config.autoClose === 'inside' && !isMenuTarget || context._config.autoClose === 'outside' && isMenuTarget) { + continue; + } + + // Tab navigation through the dropdown menu or events from contained inputs shouldn't close the menu + if (context._menu.contains(event.target) && (event.type === 'keyup' && event.key === TAB_KEY$1 || /input|select|option|textarea|form/i.test(event.target.tagName))) { + continue; + } + const relatedTarget = { + relatedTarget: context._element + }; + if (event.type === 'click') { + relatedTarget.clickEvent = event; + } + context._completeHide(relatedTarget); + } + } + static dataApiKeydownHandler(event) { + // If not an UP | DOWN | ESCAPE key => not a dropdown command + // If input/textarea && if key is other than ESCAPE => not a dropdown command + + const isInput = /input|textarea/i.test(event.target.tagName); + const isEscapeEvent = event.key === ESCAPE_KEY$2; + const isUpOrDownEvent = [ARROW_UP_KEY$1, ARROW_DOWN_KEY$1].includes(event.key); + if (!isUpOrDownEvent && !isEscapeEvent) { + return; + } + if (isInput && !isEscapeEvent) { + return; + } + event.preventDefault(); + + // TODO: v6 revert #37011 & change markup https://getbootstrap.com/docs/5.3/forms/input-group/ + const getToggleButton = this.matches(SELECTOR_DATA_TOGGLE$3) ? this : SelectorEngine.prev(this, SELECTOR_DATA_TOGGLE$3)[0] || SelectorEngine.next(this, SELECTOR_DATA_TOGGLE$3)[0] || SelectorEngine.findOne(SELECTOR_DATA_TOGGLE$3, event.delegateTarget.parentNode); + const instance = Dropdown.getOrCreateInstance(getToggleButton); + if (isUpOrDownEvent) { + event.stopPropagation(); + instance.show(); + instance._selectMenuItem(event); + return; + } + if (instance._isShown()) { + // else is escape and we check if it is shown + event.stopPropagation(); + instance.hide(); + getToggleButton.focus(); + } + } + } + + /** + * Data API implementation + */ + + EventHandler.on(document, EVENT_KEYDOWN_DATA_API, SELECTOR_DATA_TOGGLE$3, Dropdown.dataApiKeydownHandler); + EventHandler.on(document, EVENT_KEYDOWN_DATA_API, SELECTOR_MENU, Dropdown.dataApiKeydownHandler); + EventHandler.on(document, EVENT_CLICK_DATA_API$3, Dropdown.clearMenus); + EventHandler.on(document, EVENT_KEYUP_DATA_API, Dropdown.clearMenus); + EventHandler.on(document, EVENT_CLICK_DATA_API$3, SELECTOR_DATA_TOGGLE$3, function (event) { + event.preventDefault(); + Dropdown.getOrCreateInstance(this).toggle(); + }); + + /** + * jQuery + */ + + defineJQueryPlugin(Dropdown); + + /** + * -------------------------------------------------------------------------- + * Bootstrap util/backdrop.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const NAME$9 = 'backdrop'; + const CLASS_NAME_FADE$4 = 'fade'; + const CLASS_NAME_SHOW$5 = 'show'; + const EVENT_MOUSEDOWN = `mousedown.bs.${NAME$9}`; + const Default$8 = { + className: 'modal-backdrop', + clickCallback: null, + isAnimated: false, + isVisible: true, + // if false, we use the backdrop helper without adding any element to the dom + rootElement: 'body' // give the choice to place backdrop under different elements + }; + const DefaultType$8 = { + className: 'string', + clickCallback: '(function|null)', + isAnimated: 'boolean', + isVisible: 'boolean', + rootElement: '(element|string)' + }; + + /** + * Class definition + */ + + class Backdrop extends Config { + constructor(config) { + super(); + this._config = this._getConfig(config); + this._isAppended = false; + this._element = null; + } + + // Getters + static get Default() { + return Default$8; + } + static get DefaultType() { + return DefaultType$8; + } + static get NAME() { + return NAME$9; + } + + // Public + show(callback) { + if (!this._config.isVisible) { + execute(callback); + return; + } + this._append(); + const element = this._getElement(); + if (this._config.isAnimated) { + reflow(element); + } + element.classList.add(CLASS_NAME_SHOW$5); + this._emulateAnimation(() => { + execute(callback); + }); + } + hide(callback) { + if (!this._config.isVisible) { + execute(callback); + return; + } + this._getElement().classList.remove(CLASS_NAME_SHOW$5); + this._emulateAnimation(() => { + this.dispose(); + execute(callback); + }); + } + dispose() { + if (!this._isAppended) { + return; + } + EventHandler.off(this._element, EVENT_MOUSEDOWN); + this._element.remove(); + this._isAppended = false; + } + + // Private + _getElement() { + if (!this._element) { + const backdrop = document.createElement('div'); + backdrop.className = this._config.className; + if (this._config.isAnimated) { + backdrop.classList.add(CLASS_NAME_FADE$4); + } + this._element = backdrop; + } + return this._element; + } + _configAfterMerge(config) { + // use getElement() with the default "body" to get a fresh Element on each instantiation + config.rootElement = getElement(config.rootElement); + return config; + } + _append() { + if (this._isAppended) { + return; + } + const element = this._getElement(); + this._config.rootElement.append(element); + EventHandler.on(element, EVENT_MOUSEDOWN, () => { + execute(this._config.clickCallback); + }); + this._isAppended = true; + } + _emulateAnimation(callback) { + executeAfterTransition(callback, this._getElement(), this._config.isAnimated); + } + } + + /** + * -------------------------------------------------------------------------- + * Bootstrap util/focustrap.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const NAME$8 = 'focustrap'; + const DATA_KEY$5 = 'bs.focustrap'; + const EVENT_KEY$5 = `.${DATA_KEY$5}`; + const EVENT_FOCUSIN$2 = `focusin${EVENT_KEY$5}`; + const EVENT_KEYDOWN_TAB = `keydown.tab${EVENT_KEY$5}`; + const TAB_KEY = 'Tab'; + const TAB_NAV_FORWARD = 'forward'; + const TAB_NAV_BACKWARD = 'backward'; + const Default$7 = { + autofocus: true, + trapElement: null // The element to trap focus inside of + }; + const DefaultType$7 = { + autofocus: 'boolean', + trapElement: 'element' + }; + + /** + * Class definition + */ + + class FocusTrap extends Config { + constructor(config) { + super(); + this._config = this._getConfig(config); + this._isActive = false; + this._lastTabNavDirection = null; + } + + // Getters + static get Default() { + return Default$7; + } + static get DefaultType() { + return DefaultType$7; + } + static get NAME() { + return NAME$8; + } + + // Public + activate() { + if (this._isActive) { + return; + } + if (this._config.autofocus) { + this._config.trapElement.focus(); + } + EventHandler.off(document, EVENT_KEY$5); // guard against infinite focus loop + EventHandler.on(document, EVENT_FOCUSIN$2, event => this._handleFocusin(event)); + EventHandler.on(document, EVENT_KEYDOWN_TAB, event => this._handleKeydown(event)); + this._isActive = true; + } + deactivate() { + if (!this._isActive) { + return; + } + this._isActive = false; + EventHandler.off(document, EVENT_KEY$5); + } + + // Private + _handleFocusin(event) { + const { + trapElement + } = this._config; + if (event.target === document || event.target === trapElement || trapElement.contains(event.target)) { + return; + } + const elements = SelectorEngine.focusableChildren(trapElement); + if (elements.length === 0) { + trapElement.focus(); + } else if (this._lastTabNavDirection === TAB_NAV_BACKWARD) { + elements[elements.length - 1].focus(); + } else { + elements[0].focus(); + } + } + _handleKeydown(event) { + if (event.key !== TAB_KEY) { + return; + } + this._lastTabNavDirection = event.shiftKey ? TAB_NAV_BACKWARD : TAB_NAV_FORWARD; + } + } + + /** + * -------------------------------------------------------------------------- + * Bootstrap util/scrollBar.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const SELECTOR_FIXED_CONTENT = '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top'; + const SELECTOR_STICKY_CONTENT = '.sticky-top'; + const PROPERTY_PADDING = 'padding-right'; + const PROPERTY_MARGIN = 'margin-right'; + + /** + * Class definition + */ + + class ScrollBarHelper { + constructor() { + this._element = document.body; + } + + // Public + getWidth() { + // https://developer.mozilla.org/en-US/docs/Web/API/Window/innerWidth#usage_notes + const documentWidth = document.documentElement.clientWidth; + return Math.abs(window.innerWidth - documentWidth); + } + hide() { + const width = this.getWidth(); + this._disableOverFlow(); + // give padding to element to balance the hidden scrollbar width + this._setElementAttributes(this._element, PROPERTY_PADDING, calculatedValue => calculatedValue + width); + // trick: We adjust positive paddingRight and negative marginRight to sticky-top elements to keep showing fullwidth + this._setElementAttributes(SELECTOR_FIXED_CONTENT, PROPERTY_PADDING, calculatedValue => calculatedValue + width); + this._setElementAttributes(SELECTOR_STICKY_CONTENT, PROPERTY_MARGIN, calculatedValue => calculatedValue - width); + } + reset() { + this._resetElementAttributes(this._element, 'overflow'); + this._resetElementAttributes(this._element, PROPERTY_PADDING); + this._resetElementAttributes(SELECTOR_FIXED_CONTENT, PROPERTY_PADDING); + this._resetElementAttributes(SELECTOR_STICKY_CONTENT, PROPERTY_MARGIN); + } + isOverflowing() { + return this.getWidth() > 0; + } + + // Private + _disableOverFlow() { + this._saveInitialAttribute(this._element, 'overflow'); + this._element.style.overflow = 'hidden'; + } + _setElementAttributes(selector, styleProperty, callback) { + const scrollbarWidth = this.getWidth(); + const manipulationCallBack = element => { + if (element !== this._element && window.innerWidth > element.clientWidth + scrollbarWidth) { + return; + } + this._saveInitialAttribute(element, styleProperty); + const calculatedValue = window.getComputedStyle(element).getPropertyValue(styleProperty); + element.style.setProperty(styleProperty, `${callback(Number.parseFloat(calculatedValue))}px`); + }; + this._applyManipulationCallback(selector, manipulationCallBack); + } + _saveInitialAttribute(element, styleProperty) { + const actualValue = element.style.getPropertyValue(styleProperty); + if (actualValue) { + Manipulator.setDataAttribute(element, styleProperty, actualValue); + } + } + _resetElementAttributes(selector, styleProperty) { + const manipulationCallBack = element => { + const value = Manipulator.getDataAttribute(element, styleProperty); + // We only want to remove the property if the value is `null`; the value can also be zero + if (value === null) { + element.style.removeProperty(styleProperty); + return; + } + Manipulator.removeDataAttribute(element, styleProperty); + element.style.setProperty(styleProperty, value); + }; + this._applyManipulationCallback(selector, manipulationCallBack); + } + _applyManipulationCallback(selector, callBack) { + if (isElement$1(selector)) { + callBack(selector); + return; + } + for (const sel of SelectorEngine.find(selector, this._element)) { + callBack(sel); + } + } + } + + /** + * -------------------------------------------------------------------------- + * Bootstrap modal.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const NAME$7 = 'modal'; + const DATA_KEY$4 = 'bs.modal'; + const EVENT_KEY$4 = `.${DATA_KEY$4}`; + const DATA_API_KEY$2 = '.data-api'; + const ESCAPE_KEY$1 = 'Escape'; + const EVENT_HIDE$4 = `hide${EVENT_KEY$4}`; + const EVENT_HIDE_PREVENTED$1 = `hidePrevented${EVENT_KEY$4}`; + const EVENT_HIDDEN$4 = `hidden${EVENT_KEY$4}`; + const EVENT_SHOW$4 = `show${EVENT_KEY$4}`; + const EVENT_SHOWN$4 = `shown${EVENT_KEY$4}`; + const EVENT_RESIZE$1 = `resize${EVENT_KEY$4}`; + const EVENT_CLICK_DISMISS = `click.dismiss${EVENT_KEY$4}`; + const EVENT_MOUSEDOWN_DISMISS = `mousedown.dismiss${EVENT_KEY$4}`; + const EVENT_KEYDOWN_DISMISS$1 = `keydown.dismiss${EVENT_KEY$4}`; + const EVENT_CLICK_DATA_API$2 = `click${EVENT_KEY$4}${DATA_API_KEY$2}`; + const CLASS_NAME_OPEN = 'modal-open'; + const CLASS_NAME_FADE$3 = 'fade'; + const CLASS_NAME_SHOW$4 = 'show'; + const CLASS_NAME_STATIC = 'modal-static'; + const OPEN_SELECTOR$1 = '.modal.show'; + const SELECTOR_DIALOG = '.modal-dialog'; + const SELECTOR_MODAL_BODY = '.modal-body'; + const SELECTOR_DATA_TOGGLE$2 = '[data-bs-toggle="modal"]'; + const Default$6 = { + backdrop: true, + focus: true, + keyboard: true + }; + const DefaultType$6 = { + backdrop: '(boolean|string)', + focus: 'boolean', + keyboard: 'boolean' + }; + + /** + * Class definition + */ + + class Modal extends BaseComponent { + constructor(element, config) { + super(element, config); + this._dialog = SelectorEngine.findOne(SELECTOR_DIALOG, this._element); + this._backdrop = this._initializeBackDrop(); + this._focustrap = this._initializeFocusTrap(); + this._isShown = false; + this._isTransitioning = false; + this._scrollBar = new ScrollBarHelper(); + this._addEventListeners(); + } + + // Getters + static get Default() { + return Default$6; + } + static get DefaultType() { + return DefaultType$6; + } + static get NAME() { + return NAME$7; + } + + // Public + toggle(relatedTarget) { + return this._isShown ? this.hide() : this.show(relatedTarget); + } + show(relatedTarget) { + if (this._isShown || this._isTransitioning) { + return; + } + const showEvent = EventHandler.trigger(this._element, EVENT_SHOW$4, { + relatedTarget + }); + if (showEvent.defaultPrevented) { + return; + } + this._isShown = true; + this._isTransitioning = true; + this._scrollBar.hide(); + document.body.classList.add(CLASS_NAME_OPEN); + this._adjustDialog(); + this._backdrop.show(() => this._showElement(relatedTarget)); + } + hide() { + if (!this._isShown || this._isTransitioning) { + return; + } + const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE$4); + if (hideEvent.defaultPrevented) { + return; + } + this._isShown = false; + this._isTransitioning = true; + this._focustrap.deactivate(); + this._element.classList.remove(CLASS_NAME_SHOW$4); + this._queueCallback(() => this._hideModal(), this._element, this._isAnimated()); + } + dispose() { + EventHandler.off(window, EVENT_KEY$4); + EventHandler.off(this._dialog, EVENT_KEY$4); + this._backdrop.dispose(); + this._focustrap.deactivate(); + super.dispose(); + } + handleUpdate() { + this._adjustDialog(); + } + + // Private + _initializeBackDrop() { + return new Backdrop({ + isVisible: Boolean(this._config.backdrop), + // 'static' option will be translated to true, and booleans will keep their value, + isAnimated: this._isAnimated() + }); + } + _initializeFocusTrap() { + return new FocusTrap({ + trapElement: this._element + }); + } + _showElement(relatedTarget) { + // try to append dynamic modal + if (!document.body.contains(this._element)) { + document.body.append(this._element); + } + this._element.style.display = 'block'; + this._element.removeAttribute('aria-hidden'); + this._element.setAttribute('aria-modal', true); + this._element.setAttribute('role', 'dialog'); + this._element.scrollTop = 0; + const modalBody = SelectorEngine.findOne(SELECTOR_MODAL_BODY, this._dialog); + if (modalBody) { + modalBody.scrollTop = 0; + } + reflow(this._element); + this._element.classList.add(CLASS_NAME_SHOW$4); + const transitionComplete = () => { + if (this._config.focus) { + this._focustrap.activate(); + } + this._isTransitioning = false; + EventHandler.trigger(this._element, EVENT_SHOWN$4, { + relatedTarget + }); + }; + this._queueCallback(transitionComplete, this._dialog, this._isAnimated()); + } + _addEventListeners() { + EventHandler.on(this._element, EVENT_KEYDOWN_DISMISS$1, event => { + if (event.key !== ESCAPE_KEY$1) { + return; + } + if (this._config.keyboard) { + this.hide(); + return; + } + this._triggerBackdropTransition(); + }); + EventHandler.on(window, EVENT_RESIZE$1, () => { + if (this._isShown && !this._isTransitioning) { + this._adjustDialog(); + } + }); + EventHandler.on(this._element, EVENT_MOUSEDOWN_DISMISS, event => { + // a bad trick to segregate clicks that may start inside dialog but end outside, and avoid listen to scrollbar clicks + EventHandler.one(this._element, EVENT_CLICK_DISMISS, event2 => { + if (this._element !== event.target || this._element !== event2.target) { + return; + } + if (this._config.backdrop === 'static') { + this._triggerBackdropTransition(); + return; + } + if (this._config.backdrop) { + this.hide(); + } + }); + }); + } + _hideModal() { + this._element.style.display = 'none'; + this._element.setAttribute('aria-hidden', true); + this._element.removeAttribute('aria-modal'); + this._element.removeAttribute('role'); + this._isTransitioning = false; + this._backdrop.hide(() => { + document.body.classList.remove(CLASS_NAME_OPEN); + this._resetAdjustments(); + this._scrollBar.reset(); + EventHandler.trigger(this._element, EVENT_HIDDEN$4); + }); + } + _isAnimated() { + return this._element.classList.contains(CLASS_NAME_FADE$3); + } + _triggerBackdropTransition() { + const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE_PREVENTED$1); + if (hideEvent.defaultPrevented) { + return; + } + const isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight; + const initialOverflowY = this._element.style.overflowY; + // return if the following background transition hasn't yet completed + if (initialOverflowY === 'hidden' || this._element.classList.contains(CLASS_NAME_STATIC)) { + return; + } + if (!isModalOverflowing) { + this._element.style.overflowY = 'hidden'; + } + this._element.classList.add(CLASS_NAME_STATIC); + this._queueCallback(() => { + this._element.classList.remove(CLASS_NAME_STATIC); + this._queueCallback(() => { + this._element.style.overflowY = initialOverflowY; + }, this._dialog); + }, this._dialog); + this._element.focus(); + } + + /** + * The following methods are used to handle overflowing modals + */ + + _adjustDialog() { + const isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight; + const scrollbarWidth = this._scrollBar.getWidth(); + const isBodyOverflowing = scrollbarWidth > 0; + if (isBodyOverflowing && !isModalOverflowing) { + const property = isRTL() ? 'paddingLeft' : 'paddingRight'; + this._element.style[property] = `${scrollbarWidth}px`; + } + if (!isBodyOverflowing && isModalOverflowing) { + const property = isRTL() ? 'paddingRight' : 'paddingLeft'; + this._element.style[property] = `${scrollbarWidth}px`; + } + } + _resetAdjustments() { + this._element.style.paddingLeft = ''; + this._element.style.paddingRight = ''; + } + + // Static + static jQueryInterface(config, relatedTarget) { + return this.each(function () { + const data = Modal.getOrCreateInstance(this, config); + if (typeof config !== 'string') { + return; + } + if (typeof data[config] === 'undefined') { + throw new TypeError(`No method named "${config}"`); + } + data[config](relatedTarget); + }); + } + } + + /** + * Data API implementation + */ + + EventHandler.on(document, EVENT_CLICK_DATA_API$2, SELECTOR_DATA_TOGGLE$2, function (event) { + const target = SelectorEngine.getElementFromSelector(this); + if (['A', 'AREA'].includes(this.tagName)) { + event.preventDefault(); + } + EventHandler.one(target, EVENT_SHOW$4, showEvent => { + if (showEvent.defaultPrevented) { + // only register focus restorer if modal will actually get shown + return; + } + EventHandler.one(target, EVENT_HIDDEN$4, () => { + if (isVisible(this)) { + this.focus(); + } + }); + }); + + // avoid conflict when clicking modal toggler while another one is open + const alreadyOpen = SelectorEngine.findOne(OPEN_SELECTOR$1); + if (alreadyOpen) { + Modal.getInstance(alreadyOpen).hide(); + } + const data = Modal.getOrCreateInstance(target); + data.toggle(this); + }); + enableDismissTrigger(Modal); + + /** + * jQuery + */ + + defineJQueryPlugin(Modal); + + /** + * -------------------------------------------------------------------------- + * Bootstrap offcanvas.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const NAME$6 = 'offcanvas'; + const DATA_KEY$3 = 'bs.offcanvas'; + const EVENT_KEY$3 = `.${DATA_KEY$3}`; + const DATA_API_KEY$1 = '.data-api'; + const EVENT_LOAD_DATA_API$2 = `load${EVENT_KEY$3}${DATA_API_KEY$1}`; + const ESCAPE_KEY = 'Escape'; + const CLASS_NAME_SHOW$3 = 'show'; + const CLASS_NAME_SHOWING$1 = 'showing'; + const CLASS_NAME_HIDING = 'hiding'; + const CLASS_NAME_BACKDROP = 'offcanvas-backdrop'; + const OPEN_SELECTOR = '.offcanvas.show'; + const EVENT_SHOW$3 = `show${EVENT_KEY$3}`; + const EVENT_SHOWN$3 = `shown${EVENT_KEY$3}`; + const EVENT_HIDE$3 = `hide${EVENT_KEY$3}`; + const EVENT_HIDE_PREVENTED = `hidePrevented${EVENT_KEY$3}`; + const EVENT_HIDDEN$3 = `hidden${EVENT_KEY$3}`; + const EVENT_RESIZE = `resize${EVENT_KEY$3}`; + const EVENT_CLICK_DATA_API$1 = `click${EVENT_KEY$3}${DATA_API_KEY$1}`; + const EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY$3}`; + const SELECTOR_DATA_TOGGLE$1 = '[data-bs-toggle="offcanvas"]'; + const Default$5 = { + backdrop: true, + keyboard: true, + scroll: false + }; + const DefaultType$5 = { + backdrop: '(boolean|string)', + keyboard: 'boolean', + scroll: 'boolean' + }; + + /** + * Class definition + */ + + class Offcanvas extends BaseComponent { + constructor(element, config) { + super(element, config); + this._isShown = false; + this._backdrop = this._initializeBackDrop(); + this._focustrap = this._initializeFocusTrap(); + this._addEventListeners(); + } + + // Getters + static get Default() { + return Default$5; + } + static get DefaultType() { + return DefaultType$5; + } + static get NAME() { + return NAME$6; + } + + // Public + toggle(relatedTarget) { + return this._isShown ? this.hide() : this.show(relatedTarget); + } + show(relatedTarget) { + if (this._isShown) { + return; + } + const showEvent = EventHandler.trigger(this._element, EVENT_SHOW$3, { + relatedTarget + }); + if (showEvent.defaultPrevented) { + return; + } + this._isShown = true; + this._backdrop.show(); + if (!this._config.scroll) { + new ScrollBarHelper().hide(); + } + this._element.setAttribute('aria-modal', true); + this._element.setAttribute('role', 'dialog'); + this._element.classList.add(CLASS_NAME_SHOWING$1); + const completeCallBack = () => { + if (!this._config.scroll || this._config.backdrop) { + this._focustrap.activate(); + } + this._element.classList.add(CLASS_NAME_SHOW$3); + this._element.classList.remove(CLASS_NAME_SHOWING$1); + EventHandler.trigger(this._element, EVENT_SHOWN$3, { + relatedTarget + }); + }; + this._queueCallback(completeCallBack, this._element, true); + } + hide() { + if (!this._isShown) { + return; + } + const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE$3); + if (hideEvent.defaultPrevented) { + return; + } + this._focustrap.deactivate(); + this._element.blur(); + this._isShown = false; + this._element.classList.add(CLASS_NAME_HIDING); + this._backdrop.hide(); + const completeCallback = () => { + this._element.classList.remove(CLASS_NAME_SHOW$3, CLASS_NAME_HIDING); + this._element.removeAttribute('aria-modal'); + this._element.removeAttribute('role'); + if (!this._config.scroll) { + new ScrollBarHelper().reset(); + } + EventHandler.trigger(this._element, EVENT_HIDDEN$3); + }; + this._queueCallback(completeCallback, this._element, true); + } + dispose() { + this._backdrop.dispose(); + this._focustrap.deactivate(); + super.dispose(); + } + + // Private + _initializeBackDrop() { + const clickCallback = () => { + if (this._config.backdrop === 'static') { + EventHandler.trigger(this._element, EVENT_HIDE_PREVENTED); + return; + } + this.hide(); + }; + + // 'static' option will be translated to true, and booleans will keep their value + const isVisible = Boolean(this._config.backdrop); + return new Backdrop({ + className: CLASS_NAME_BACKDROP, + isVisible, + isAnimated: true, + rootElement: this._element.parentNode, + clickCallback: isVisible ? clickCallback : null + }); + } + _initializeFocusTrap() { + return new FocusTrap({ + trapElement: this._element + }); + } + _addEventListeners() { + EventHandler.on(this._element, EVENT_KEYDOWN_DISMISS, event => { + if (event.key !== ESCAPE_KEY) { + return; + } + if (this._config.keyboard) { + this.hide(); + return; + } + EventHandler.trigger(this._element, EVENT_HIDE_PREVENTED); + }); + } + + // Static + static jQueryInterface(config) { + return this.each(function () { + const data = Offcanvas.getOrCreateInstance(this, config); + if (typeof config !== 'string') { + return; + } + if (data[config] === undefined || config.startsWith('_') || config === 'constructor') { + throw new TypeError(`No method named "${config}"`); + } + data[config](this); + }); + } + } + + /** + * Data API implementation + */ + + EventHandler.on(document, EVENT_CLICK_DATA_API$1, SELECTOR_DATA_TOGGLE$1, function (event) { + const target = SelectorEngine.getElementFromSelector(this); + if (['A', 'AREA'].includes(this.tagName)) { + event.preventDefault(); + } + if (isDisabled(this)) { + return; + } + EventHandler.one(target, EVENT_HIDDEN$3, () => { + // focus on trigger when it is closed + if (isVisible(this)) { + this.focus(); + } + }); + + // avoid conflict when clicking a toggler of an offcanvas, while another is open + const alreadyOpen = SelectorEngine.findOne(OPEN_SELECTOR); + if (alreadyOpen && alreadyOpen !== target) { + Offcanvas.getInstance(alreadyOpen).hide(); + } + const data = Offcanvas.getOrCreateInstance(target); + data.toggle(this); + }); + EventHandler.on(window, EVENT_LOAD_DATA_API$2, () => { + for (const selector of SelectorEngine.find(OPEN_SELECTOR)) { + Offcanvas.getOrCreateInstance(selector).show(); + } + }); + EventHandler.on(window, EVENT_RESIZE, () => { + for (const element of SelectorEngine.find('[aria-modal][class*=show][class*=offcanvas-]')) { + if (getComputedStyle(element).position !== 'fixed') { + Offcanvas.getOrCreateInstance(element).hide(); + } + } + }); + enableDismissTrigger(Offcanvas); + + /** + * jQuery + */ + + defineJQueryPlugin(Offcanvas); + + /** + * -------------------------------------------------------------------------- + * Bootstrap util/sanitizer.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + // js-docs-start allow-list + const ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i; + const DefaultAllowlist = { + // Global attributes allowed on any supplied element below. + '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN], + a: ['target', 'href', 'title', 'rel'], + area: [], + b: [], + br: [], + col: [], + code: [], + dd: [], + div: [], + dl: [], + dt: [], + em: [], + hr: [], + h1: [], + h2: [], + h3: [], + h4: [], + h5: [], + h6: [], + i: [], + img: ['src', 'srcset', 'alt', 'title', 'width', 'height'], + li: [], + ol: [], + p: [], + pre: [], + s: [], + small: [], + span: [], + sub: [], + sup: [], + strong: [], + u: [], + ul: [] + }; + // js-docs-end allow-list + + const uriAttributes = new Set(['background', 'cite', 'href', 'itemtype', 'longdesc', 'poster', 'src', 'xlink:href']); + + /** + * A pattern that recognizes URLs that are safe wrt. XSS in URL navigation + * contexts. + * + * Shout-out to Angular https://github.com/angular/angular/blob/15.2.8/packages/core/src/sanitization/url_sanitizer.ts#L38 + */ + // eslint-disable-next-line unicorn/better-regex + const SAFE_URL_PATTERN = /^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i; + const allowedAttribute = (attribute, allowedAttributeList) => { + const attributeName = attribute.nodeName.toLowerCase(); + if (allowedAttributeList.includes(attributeName)) { + if (uriAttributes.has(attributeName)) { + return Boolean(SAFE_URL_PATTERN.test(attribute.nodeValue)); + } + return true; + } + + // Check if a regular expression validates the attribute. + return allowedAttributeList.filter(attributeRegex => attributeRegex instanceof RegExp).some(regex => regex.test(attributeName)); + }; + function sanitizeHtml(unsafeHtml, allowList, sanitizeFunction) { + if (!unsafeHtml.length) { + return unsafeHtml; + } + if (sanitizeFunction && typeof sanitizeFunction === 'function') { + return sanitizeFunction(unsafeHtml); + } + const domParser = new window.DOMParser(); + const createdDocument = domParser.parseFromString(unsafeHtml, 'text/html'); + const elements = [].concat(...createdDocument.body.querySelectorAll('*')); + for (const element of elements) { + const elementName = element.nodeName.toLowerCase(); + if (!Object.keys(allowList).includes(elementName)) { + element.remove(); + continue; + } + const attributeList = [].concat(...element.attributes); + const allowedAttributes = [].concat(allowList['*'] || [], allowList[elementName] || []); + for (const attribute of attributeList) { + if (!allowedAttribute(attribute, allowedAttributes)) { + element.removeAttribute(attribute.nodeName); + } + } + } + return createdDocument.body.innerHTML; + } + + /** + * -------------------------------------------------------------------------- + * Bootstrap util/template-factory.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const NAME$5 = 'TemplateFactory'; + const Default$4 = { + allowList: DefaultAllowlist, + content: {}, + // { selector : text , selector2 : text2 , } + extraClass: '', + html: false, + sanitize: true, + sanitizeFn: null, + template: '
' + }; + const DefaultType$4 = { + allowList: 'object', + content: 'object', + extraClass: '(string|function)', + html: 'boolean', + sanitize: 'boolean', + sanitizeFn: '(null|function)', + template: 'string' + }; + const DefaultContentType = { + entry: '(string|element|function|null)', + selector: '(string|element)' + }; + + /** + * Class definition + */ + + class TemplateFactory extends Config { + constructor(config) { + super(); + this._config = this._getConfig(config); + } + + // Getters + static get Default() { + return Default$4; + } + static get DefaultType() { + return DefaultType$4; + } + static get NAME() { + return NAME$5; + } + + // Public + getContent() { + return Object.values(this._config.content).map(config => this._resolvePossibleFunction(config)).filter(Boolean); + } + hasContent() { + return this.getContent().length > 0; + } + changeContent(content) { + this._checkContent(content); + this._config.content = { + ...this._config.content, + ...content + }; + return this; + } + toHtml() { + const templateWrapper = document.createElement('div'); + templateWrapper.innerHTML = this._maybeSanitize(this._config.template); + for (const [selector, text] of Object.entries(this._config.content)) { + this._setContent(templateWrapper, text, selector); + } + const template = templateWrapper.children[0]; + const extraClass = this._resolvePossibleFunction(this._config.extraClass); + if (extraClass) { + template.classList.add(...extraClass.split(' ')); + } + return template; + } + + // Private + _typeCheckConfig(config) { + super._typeCheckConfig(config); + this._checkContent(config.content); + } + _checkContent(arg) { + for (const [selector, content] of Object.entries(arg)) { + super._typeCheckConfig({ + selector, + entry: content + }, DefaultContentType); + } + } + _setContent(template, content, selector) { + const templateElement = SelectorEngine.findOne(selector, template); + if (!templateElement) { + return; + } + content = this._resolvePossibleFunction(content); + if (!content) { + templateElement.remove(); + return; + } + if (isElement$1(content)) { + this._putElementInTemplate(getElement(content), templateElement); + return; + } + if (this._config.html) { + templateElement.innerHTML = this._maybeSanitize(content); + return; + } + templateElement.textContent = content; + } + _maybeSanitize(arg) { + return this._config.sanitize ? sanitizeHtml(arg, this._config.allowList, this._config.sanitizeFn) : arg; + } + _resolvePossibleFunction(arg) { + return execute(arg, [this]); + } + _putElementInTemplate(element, templateElement) { + if (this._config.html) { + templateElement.innerHTML = ''; + templateElement.append(element); + return; + } + templateElement.textContent = element.textContent; + } + } + + /** + * -------------------------------------------------------------------------- + * Bootstrap tooltip.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const NAME$4 = 'tooltip'; + const DISALLOWED_ATTRIBUTES = new Set(['sanitize', 'allowList', 'sanitizeFn']); + const CLASS_NAME_FADE$2 = 'fade'; + const CLASS_NAME_MODAL = 'modal'; + const CLASS_NAME_SHOW$2 = 'show'; + const SELECTOR_TOOLTIP_INNER = '.tooltip-inner'; + const SELECTOR_MODAL = `.${CLASS_NAME_MODAL}`; + const EVENT_MODAL_HIDE = 'hide.bs.modal'; + const TRIGGER_HOVER = 'hover'; + const TRIGGER_FOCUS = 'focus'; + const TRIGGER_CLICK = 'click'; + const TRIGGER_MANUAL = 'manual'; + const EVENT_HIDE$2 = 'hide'; + const EVENT_HIDDEN$2 = 'hidden'; + const EVENT_SHOW$2 = 'show'; + const EVENT_SHOWN$2 = 'shown'; + const EVENT_INSERTED = 'inserted'; + const EVENT_CLICK$1 = 'click'; + const EVENT_FOCUSIN$1 = 'focusin'; + const EVENT_FOCUSOUT$1 = 'focusout'; + const EVENT_MOUSEENTER = 'mouseenter'; + const EVENT_MOUSELEAVE = 'mouseleave'; + const AttachmentMap = { + AUTO: 'auto', + TOP: 'top', + RIGHT: isRTL() ? 'left' : 'right', + BOTTOM: 'bottom', + LEFT: isRTL() ? 'right' : 'left' + }; + const Default$3 = { + allowList: DefaultAllowlist, + animation: true, + boundary: 'clippingParents', + container: false, + customClass: '', + delay: 0, + fallbackPlacements: ['top', 'right', 'bottom', 'left'], + html: false, + offset: [0, 6], + placement: 'top', + popperConfig: null, + sanitize: true, + sanitizeFn: null, + selector: false, + template: '', + title: '', + trigger: 'hover focus' + }; + const DefaultType$3 = { + allowList: 'object', + animation: 'boolean', + boundary: '(string|element)', + container: '(string|element|boolean)', + customClass: '(string|function)', + delay: '(number|object)', + fallbackPlacements: 'array', + html: 'boolean', + offset: '(array|string|function)', + placement: '(string|function)', + popperConfig: '(null|object|function)', + sanitize: 'boolean', + sanitizeFn: '(null|function)', + selector: '(string|boolean)', + template: 'string', + title: '(string|element|function)', + trigger: 'string' + }; + + /** + * Class definition + */ + + class Tooltip extends BaseComponent { + constructor(element, config) { + if (typeof Popper === 'undefined') { + throw new TypeError('Bootstrap\'s tooltips require Popper (https://popper.js.org)'); + } + super(element, config); + + // Private + this._isEnabled = true; + this._timeout = 0; + this._isHovered = null; + this._activeTrigger = {}; + this._popper = null; + this._templateFactory = null; + this._newContent = null; + + // Protected + this.tip = null; + this._setListeners(); + if (!this._config.selector) { + this._fixTitle(); + } + } + + // Getters + static get Default() { + return Default$3; + } + static get DefaultType() { + return DefaultType$3; + } + static get NAME() { + return NAME$4; + } + + // Public + enable() { + this._isEnabled = true; + } + disable() { + this._isEnabled = false; + } + toggleEnabled() { + this._isEnabled = !this._isEnabled; + } + toggle() { + if (!this._isEnabled) { + return; + } + this._activeTrigger.click = !this._activeTrigger.click; + if (this._isShown()) { + this._leave(); + return; + } + this._enter(); + } + dispose() { + clearTimeout(this._timeout); + EventHandler.off(this._element.closest(SELECTOR_MODAL), EVENT_MODAL_HIDE, this._hideModalHandler); + if (this._element.getAttribute('data-bs-original-title')) { + this._element.setAttribute('title', this._element.getAttribute('data-bs-original-title')); + } + this._disposePopper(); + super.dispose(); + } + show() { + if (this._element.style.display === 'none') { + throw new Error('Please use show on visible elements'); + } + if (!(this._isWithContent() && this._isEnabled)) { + return; + } + const showEvent = EventHandler.trigger(this._element, this.constructor.eventName(EVENT_SHOW$2)); + const shadowRoot = findShadowRoot(this._element); + const isInTheDom = (shadowRoot || this._element.ownerDocument.documentElement).contains(this._element); + if (showEvent.defaultPrevented || !isInTheDom) { + return; + } + + // TODO: v6 remove this or make it optional + this._disposePopper(); + const tip = this._getTipElement(); + this._element.setAttribute('aria-describedby', tip.getAttribute('id')); + const { + container + } = this._config; + if (!this._element.ownerDocument.documentElement.contains(this.tip)) { + container.append(tip); + EventHandler.trigger(this._element, this.constructor.eventName(EVENT_INSERTED)); + } + this._popper = this._createPopper(tip); + tip.classList.add(CLASS_NAME_SHOW$2); + + // If this is a touch-enabled device we add extra + // empty mouseover listeners to the body's immediate children; + // only needed because of broken event delegation on iOS + // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html + if ('ontouchstart' in document.documentElement) { + for (const element of [].concat(...document.body.children)) { + EventHandler.on(element, 'mouseover', noop); + } + } + const complete = () => { + EventHandler.trigger(this._element, this.constructor.eventName(EVENT_SHOWN$2)); + if (this._isHovered === false) { + this._leave(); + } + this._isHovered = false; + }; + this._queueCallback(complete, this.tip, this._isAnimated()); + } + hide() { + if (!this._isShown()) { + return; + } + const hideEvent = EventHandler.trigger(this._element, this.constructor.eventName(EVENT_HIDE$2)); + if (hideEvent.defaultPrevented) { + return; + } + const tip = this._getTipElement(); + tip.classList.remove(CLASS_NAME_SHOW$2); + + // If this is a touch-enabled device we remove the extra + // empty mouseover listeners we added for iOS support + if ('ontouchstart' in document.documentElement) { + for (const element of [].concat(...document.body.children)) { + EventHandler.off(element, 'mouseover', noop); + } + } + this._activeTrigger[TRIGGER_CLICK] = false; + this._activeTrigger[TRIGGER_FOCUS] = false; + this._activeTrigger[TRIGGER_HOVER] = false; + this._isHovered = null; // it is a trick to support manual triggering + + const complete = () => { + if (this._isWithActiveTrigger()) { + return; + } + if (!this._isHovered) { + this._disposePopper(); + } + this._element.removeAttribute('aria-describedby'); + EventHandler.trigger(this._element, this.constructor.eventName(EVENT_HIDDEN$2)); + }; + this._queueCallback(complete, this.tip, this._isAnimated()); + } + update() { + if (this._popper) { + this._popper.update(); + } + } + + // Protected + _isWithContent() { + return Boolean(this._getTitle()); + } + _getTipElement() { + if (!this.tip) { + this.tip = this._createTipElement(this._newContent || this._getContentForTemplate()); + } + return this.tip; + } + _createTipElement(content) { + const tip = this._getTemplateFactory(content).toHtml(); + + // TODO: remove this check in v6 + if (!tip) { + return null; + } + tip.classList.remove(CLASS_NAME_FADE$2, CLASS_NAME_SHOW$2); + // TODO: v6 the following can be achieved with CSS only + tip.classList.add(`bs-${this.constructor.NAME}-auto`); + const tipId = getUID(this.constructor.NAME).toString(); + tip.setAttribute('id', tipId); + if (this._isAnimated()) { + tip.classList.add(CLASS_NAME_FADE$2); + } + return tip; + } + setContent(content) { + this._newContent = content; + if (this._isShown()) { + this._disposePopper(); + this.show(); + } + } + _getTemplateFactory(content) { + if (this._templateFactory) { + this._templateFactory.changeContent(content); + } else { + this._templateFactory = new TemplateFactory({ + ...this._config, + // the `content` var has to be after `this._config` + // to override config.content in case of popover + content, + extraClass: this._resolvePossibleFunction(this._config.customClass) + }); + } + return this._templateFactory; + } + _getContentForTemplate() { + return { + [SELECTOR_TOOLTIP_INNER]: this._getTitle() + }; + } + _getTitle() { + return this._resolvePossibleFunction(this._config.title) || this._element.getAttribute('data-bs-original-title'); + } + + // Private + _initializeOnDelegatedTarget(event) { + return this.constructor.getOrCreateInstance(event.delegateTarget, this._getDelegateConfig()); + } + _isAnimated() { + return this._config.animation || this.tip && this.tip.classList.contains(CLASS_NAME_FADE$2); + } + _isShown() { + return this.tip && this.tip.classList.contains(CLASS_NAME_SHOW$2); + } + _createPopper(tip) { + const placement = execute(this._config.placement, [this, tip, this._element]); + const attachment = AttachmentMap[placement.toUpperCase()]; + return createPopper(this._element, tip, this._getPopperConfig(attachment)); + } + _getOffset() { + const { + offset + } = this._config; + if (typeof offset === 'string') { + return offset.split(',').map(value => Number.parseInt(value, 10)); + } + if (typeof offset === 'function') { + return popperData => offset(popperData, this._element); + } + return offset; + } + _resolvePossibleFunction(arg) { + return execute(arg, [this._element]); + } + _getPopperConfig(attachment) { + const defaultBsPopperConfig = { + placement: attachment, + modifiers: [{ + name: 'flip', + options: { + fallbackPlacements: this._config.fallbackPlacements + } + }, { + name: 'offset', + options: { + offset: this._getOffset() + } + }, { + name: 'preventOverflow', + options: { + boundary: this._config.boundary + } + }, { + name: 'arrow', + options: { + element: `.${this.constructor.NAME}-arrow` + } + }, { + name: 'preSetPlacement', + enabled: true, + phase: 'beforeMain', + fn: data => { + // Pre-set Popper's placement attribute in order to read the arrow sizes properly. + // Otherwise, Popper mixes up the width and height dimensions since the initial arrow style is for top placement + this._getTipElement().setAttribute('data-popper-placement', data.state.placement); + } + }] + }; + return { + ...defaultBsPopperConfig, + ...execute(this._config.popperConfig, [defaultBsPopperConfig]) + }; + } + _setListeners() { + const triggers = this._config.trigger.split(' '); + for (const trigger of triggers) { + if (trigger === 'click') { + EventHandler.on(this._element, this.constructor.eventName(EVENT_CLICK$1), this._config.selector, event => { + const context = this._initializeOnDelegatedTarget(event); + context.toggle(); + }); + } else if (trigger !== TRIGGER_MANUAL) { + const eventIn = trigger === TRIGGER_HOVER ? this.constructor.eventName(EVENT_MOUSEENTER) : this.constructor.eventName(EVENT_FOCUSIN$1); + const eventOut = trigger === TRIGGER_HOVER ? this.constructor.eventName(EVENT_MOUSELEAVE) : this.constructor.eventName(EVENT_FOCUSOUT$1); + EventHandler.on(this._element, eventIn, this._config.selector, event => { + const context = this._initializeOnDelegatedTarget(event); + context._activeTrigger[event.type === 'focusin' ? TRIGGER_FOCUS : TRIGGER_HOVER] = true; + context._enter(); + }); + EventHandler.on(this._element, eventOut, this._config.selector, event => { + const context = this._initializeOnDelegatedTarget(event); + context._activeTrigger[event.type === 'focusout' ? TRIGGER_FOCUS : TRIGGER_HOVER] = context._element.contains(event.relatedTarget); + context._leave(); + }); + } + } + this._hideModalHandler = () => { + if (this._element) { + this.hide(); + } + }; + EventHandler.on(this._element.closest(SELECTOR_MODAL), EVENT_MODAL_HIDE, this._hideModalHandler); + } + _fixTitle() { + const title = this._element.getAttribute('title'); + if (!title) { + return; + } + if (!this._element.getAttribute('aria-label') && !this._element.textContent.trim()) { + this._element.setAttribute('aria-label', title); + } + this._element.setAttribute('data-bs-original-title', title); // DO NOT USE IT. Is only for backwards compatibility + this._element.removeAttribute('title'); + } + _enter() { + if (this._isShown() || this._isHovered) { + this._isHovered = true; + return; + } + this._isHovered = true; + this._setTimeout(() => { + if (this._isHovered) { + this.show(); + } + }, this._config.delay.show); + } + _leave() { + if (this._isWithActiveTrigger()) { + return; + } + this._isHovered = false; + this._setTimeout(() => { + if (!this._isHovered) { + this.hide(); + } + }, this._config.delay.hide); + } + _setTimeout(handler, timeout) { + clearTimeout(this._timeout); + this._timeout = setTimeout(handler, timeout); + } + _isWithActiveTrigger() { + return Object.values(this._activeTrigger).includes(true); + } + _getConfig(config) { + const dataAttributes = Manipulator.getDataAttributes(this._element); + for (const dataAttribute of Object.keys(dataAttributes)) { + if (DISALLOWED_ATTRIBUTES.has(dataAttribute)) { + delete dataAttributes[dataAttribute]; + } + } + config = { + ...dataAttributes, + ...(typeof config === 'object' && config ? config : {}) + }; + config = this._mergeConfigObj(config); + config = this._configAfterMerge(config); + this._typeCheckConfig(config); + return config; + } + _configAfterMerge(config) { + config.container = config.container === false ? document.body : getElement(config.container); + if (typeof config.delay === 'number') { + config.delay = { + show: config.delay, + hide: config.delay + }; + } + if (typeof config.title === 'number') { + config.title = config.title.toString(); + } + if (typeof config.content === 'number') { + config.content = config.content.toString(); + } + return config; + } + _getDelegateConfig() { + const config = {}; + for (const [key, value] of Object.entries(this._config)) { + if (this.constructor.Default[key] !== value) { + config[key] = value; + } + } + config.selector = false; + config.trigger = 'manual'; + + // In the future can be replaced with: + // const keysWithDifferentValues = Object.entries(this._config).filter(entry => this.constructor.Default[entry[0]] !== this._config[entry[0]]) + // `Object.fromEntries(keysWithDifferentValues)` + return config; + } + _disposePopper() { + if (this._popper) { + this._popper.destroy(); + this._popper = null; + } + if (this.tip) { + this.tip.remove(); + this.tip = null; + } + } + + // Static + static jQueryInterface(config) { + return this.each(function () { + const data = Tooltip.getOrCreateInstance(this, config); + if (typeof config !== 'string') { + return; + } + if (typeof data[config] === 'undefined') { + throw new TypeError(`No method named "${config}"`); + } + data[config](); + }); + } + } + + /** + * jQuery + */ + + defineJQueryPlugin(Tooltip); + + /** + * -------------------------------------------------------------------------- + * Bootstrap popover.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const NAME$3 = 'popover'; + const SELECTOR_TITLE = '.popover-header'; + const SELECTOR_CONTENT = '.popover-body'; + const Default$2 = { + ...Tooltip.Default, + content: '', + offset: [0, 8], + placement: 'right', + template: '', + trigger: 'click' + }; + const DefaultType$2 = { + ...Tooltip.DefaultType, + content: '(null|string|element|function)' + }; + + /** + * Class definition + */ + + class Popover extends Tooltip { + // Getters + static get Default() { + return Default$2; + } + static get DefaultType() { + return DefaultType$2; + } + static get NAME() { + return NAME$3; + } + + // Overrides + _isWithContent() { + return this._getTitle() || this._getContent(); + } + + // Private + _getContentForTemplate() { + return { + [SELECTOR_TITLE]: this._getTitle(), + [SELECTOR_CONTENT]: this._getContent() + }; + } + _getContent() { + return this._resolvePossibleFunction(this._config.content); + } + + // Static + static jQueryInterface(config) { + return this.each(function () { + const data = Popover.getOrCreateInstance(this, config); + if (typeof config !== 'string') { + return; + } + if (typeof data[config] === 'undefined') { + throw new TypeError(`No method named "${config}"`); + } + data[config](); + }); + } + } + + /** + * jQuery + */ + + defineJQueryPlugin(Popover); + + /** + * -------------------------------------------------------------------------- + * Bootstrap scrollspy.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + * -------------------------------------------------------------------------- + */ + + + /** + * Constants + */ + + const NAME$2 = 'scrollspy'; + const DATA_KEY$2 = 'bs.scrollspy'; + const EVENT_KEY$2 = `.${DATA_KEY$2}`; + const DATA_API_KEY = '.data-api'; + const EVENT_ACTIVATE = `activate${EVENT_KEY$2}`; + const EVENT_CLICK = `click${EVENT_KEY$2}`; + const EVENT_LOAD_DATA_API$1 = `load${EVENT_KEY$2}${DATA_API_KEY}`; + const CLASS_NAME_DROPDOWN_ITEM = 'dropdown-item'; + const CLASS_NAME_ACTIVE$1 = 'active'; + const SELECTOR_DATA_SPY = '[data-bs-spy="scroll"]'; + const SELECTOR_TARGET_LINKS = '[href]'; + const SELECTOR_NAV_LIST_GROUP = '.nav, .list-group'; + const SELECTOR_NAV_LINKS = '.nav-link'; + const SELECTOR_NAV_ITEMS = '.nav-item'; + const SELECTOR_LIST_ITEMS = '.list-group-item'; + const SELECTOR_LINK_ITEMS = `${SELECTOR_NAV_LINKS}, ${SELECTOR_NAV_ITEMS} > ${SELECTOR_NAV_LINKS}, ${SELECTOR_LIST_ITEMS}`; + const SELECTOR_DROPDOWN = '.dropdown'; + const SELECTOR_DROPDOWN_TOGGLE$1 = '.dropdown-toggle'; + const Default$1 = { + offset: null, + // TODO: v6 @deprecated, keep it for backwards compatibility reasons + rootMargin: '0px 0px -25%', + smoothScroll: false, + target: null, + threshold: [0.1, 0.5, 1] + }; + const DefaultType$1 = { + offset: '(number|null)', + // TODO v6 @deprecated, keep it for backwards compatibility reasons + rootMargin: 'string', + smoothScroll: 'boolean', + target: 'element', + threshold: 'array' + }; + + /** + * Class definition + */ + + class ScrollSpy extends BaseComponent { + constructor(element, config) { + super(element, config); + + // this._element is the observablesContainer and config.target the menu links wrapper + this._targetLinks = new Map(); + this._observableSections = new Map(); + this._rootElement = getComputedStyle(this._element).overflowY === 'visible' ? null : this._element; + this._activeTarget = null; + this._observer = null; + this._previousScrollData = { + visibleEntryTop: 0, + parentScrollTop: 0 + }; + this.refresh(); // initialize + } + + // Getters + static get Default() { + return Default$1; + } + static get DefaultType() { + return DefaultType$1; + } + static get NAME() { + return NAME$2; + } + + // Public + refresh() { + this._initializeTargetsAndObservables(); + this._maybeEnableSmoothScroll(); + if (this._observer) { + this._observer.disconnect(); + } else { + this._observer = this._getNewObserver(); + } + for (const section of this._observableSections.values()) { + this._observer.observe(section); + } + } + dispose() { + this._observer.disconnect(); + super.dispose(); + } + + // Private + _configAfterMerge(config) { + // TODO: on v6 target should be given explicitly & remove the {target: 'ss-target'} case + config.target = getElement(config.target) || document.body; + + // TODO: v6 Only for backwards compatibility reasons. Use rootMargin only + config.rootMargin = config.offset ? `${config.offset}px 0px -30%` : config.rootMargin; + if (typeof config.threshold === 'string') { + config.threshold = config.threshold.split(',').map(value => Number.parseFloat(value)); + } + return config; + } + _maybeEnableSmoothScroll() { + if (!this._config.smoothScroll) { + return; + } + + // unregister any previous listeners + EventHandler.off(this._config.target, EVENT_CLICK); + EventHandler.on(this._config.target, EVENT_CLICK, SELECTOR_TARGET_LINKS, event => { + const observableSection = this._observableSections.get(event.target.hash); + if (observableSection) { + event.preventDefault(); + const root = this._rootElement || window; + const height = observableSection.offsetTop - this._element.offsetTop; + if (root.scrollTo) { + root.scrollTo({ + top: height, + behavior: 'smooth' + }); + return; + } + + // Chrome 60 doesn't support `scrollTo` + root.scrollTop = height; + } + }); + } + _getNewObserver() { + const options = { + root: this._rootElement, + threshold: this._config.threshold, + rootMargin: this._config.rootMargin + }; + return new IntersectionObserver(entries => this._observerCallback(entries), options); + } + + // The logic of selection + _observerCallback(entries) { + const targetElement = entry => this._targetLinks.get(`#${entry.target.id}`); + const activate = entry => { + this._previousScrollData.visibleEntryTop = entry.target.offsetTop; + this._process(targetElement(entry)); + }; + const parentScrollTop = (this._rootElement || document.documentElement).scrollTop; + const userScrollsDown = parentScrollTop >= this._previousScrollData.parentScrollTop; + this._previousScrollData.parentScrollTop = parentScrollTop; + for (const entry of entries) { + if (!entry.isIntersecting) { + this._activeTarget = null; + this._clearActiveClass(targetElement(entry)); + continue; + } + const entryIsLowerThanPrevious = entry.target.offsetTop >= this._previousScrollData.visibleEntryTop; + // if we are scrolling down, pick the bigger offsetTop + if (userScrollsDown && entryIsLowerThanPrevious) { + activate(entry); + // if parent isn't scrolled, let's keep the first visible item, breaking the iteration + if (!parentScrollTop) { + return; + } + continue; + } + + // if we are scrolling up, pick the smallest offsetTop + if (!userScrollsDown && !entryIsLowerThanPrevious) { + activate(entry); + } + } + } + _initializeTargetsAndObservables() { + this._targetLinks = new Map(); + this._observableSections = new Map(); + const targetLinks = SelectorEngine.find(SELECTOR_TARGET_LINKS, this._config.target); + for (const anchor of targetLinks) { + // ensure that the anchor has an id and is not disabled + if (!anchor.hash || isDisabled(anchor)) { + continue; + } + const observableSection = SelectorEngine.findOne(decodeURI(anchor.hash), this._element); + + // ensure that the observableSection exists & is visible + if (isVisible(observableSection)) { + this._targetLinks.set(decodeURI(anchor.hash), anchor); + this._observableSections.set(anchor.hash, observableSection); + } + } + } + _process(target) { + if (this._activeTarget === target) { + return; + } + this._clearActiveClass(this._config.target); + this._activeTarget = target; + target.classList.add(CLASS_NAME_ACTIVE$1); + this._activateParents(target); + EventHandler.trigger(this._element, EVENT_ACTIVATE, { + relatedTarget: target + }); + } + _activateParents(target) { + // Activate dropdown parents + if (target.classList.contains(CLASS_NAME_DROPDOWN_ITEM)) { + SelectorEngine.findOne(SELECTOR_DROPDOWN_TOGGLE$1, target.closest(SELECTOR_DROPDOWN)).classList.add(CLASS_NAME_ACTIVE$1); + return; + } + for (const listGroup of SelectorEngine.parents(target, SELECTOR_NAV_LIST_GROUP)) { + // Set triggered links parents as active + // With both