diff --git a/Client/Client.csproj b/Client/Client.csproj index 8d9e796d..36b38bec 100644 --- a/Client/Client.csproj +++ b/Client/Client.csproj @@ -202,6 +202,7 @@ + diff --git a/Client/Client.csproj.user b/Client/Client.csproj.user index 9ff1ca1d..4078f8ed 100644 --- a/Client/Client.csproj.user +++ b/Client/Client.csproj.user @@ -1,7 +1,7 @@  - shodoc:%3fpartnernr=1000210&vorlagenr=125&interaktion=NO&showdoc=YES&funktion=Createdoc + E:\Software-Projekte\OnDoc\EDK_Dateien\3bv.edk publish\ diff --git a/Client/Klassen/EDKFile.cs b/Client/Klassen/EDKFile.cs new file mode 100644 index 00000000..d1c9126f --- /dev/null +++ b/Client/Klassen/EDKFile.cs @@ -0,0 +1,137 @@ +using Microsoft.Office.Interop.Excel; +using Newtonsoft.Json.Linq; +using Syncfusion.Windows.Forms.Tools.Win32API; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Web.UI.WebControls; +using System.Xml; +using System.Xml.Linq; +using System.Xml.Serialization; + + +namespace OnDoc.Klassen +{ + public enum EDK_ActionType + { + AnzeigePartnerdossier = 1, + DokumentAnzeige = 2, + DokumentErstellung = 3, + DokumentBearbeitung = 4, + Statusmutation = 5, + HostDokumentAnzeige = 6, + UVMDokumentanzeige = 7, + ZVDokumentanzeige = 8, + DokLoeschung = 9, + AusHyperlink = 10 + } + + public class EDK_Parameters + { + private string name { get; set; } + private string value { get; set; } + + public EDK_Parameters(string name, string value) + { + this.name = name; + this.value = value; + } + } + + public class EDK_Dokumentwerte + { + private string name { get; set; } + private string value { get; set; } + + public EDK_Dokumentwerte (string name, string value) + { + this.name=name; + this.value=value; + } + } + + + public static class EDK_Data + { + public static EDK_ActionType action { get; set; } + public static string creatortg { get; set; } + public static string source { get; set; } + public static bool executed { get; set; } + public static bool toexecute { get; set; } + public static List parameters { get; set; } + public static List dokumentwerte { get; set; } + + + + public static void Load_EDK_File(string filename) + { + //XmlSerializer serializer = new XmlSerializer(typeof(Action)); + //using (StringReader reader = new StringReader(filename)) + //{ + // var test = (Action)serializer.Deserialize(reader); + //} + + + var doc = new XmlDocument(); + try + { + doc.Load(filename); + } + catch (Exception ex) + { + + } + + // read header elements + action = (EDK_ActionType)Enum.Parse(typeof(EDK_ActionType), doc.SelectSingleNode("action/actionId").InnerText, true); + creatortg = doc.SelectSingleNode("action/creatorTg").InnerText; + source = doc.SelectSingleNode("action/sourceApplication").InnerText; + + XmlElement RootNode = doc.DocumentElement; + XmlNodeList nodeList = RootNode.ChildNodes; + XmlNodeList dokwerte = RootNode.LastChild.ChildNodes; + List Params = new List(); + List Dokwerte = new List(); + if (nodeList.Count > 0) + { + string value; + string name; + var loopTo = nodeList.Count - 1; + for (int i = 0; i < nodeList.Count - 1; i++) + { + value = nodeList.Item(i).InnerText; + name = nodeList.Item(i).LocalName; + Params.Add(new EDK_Parameters(name, value)); + } + } + parameters = Params; + + if (dokwerte.Count > 0) + { + for (int i = 0; i < dokwerte.Count - 1; i++) + { + XmlNodeList XNode = dokwerte[i].ChildNodes; + string value; + string name; + value = XNode[1].InnerText; + name = XNode[0].InnerText; + Dokwerte.Add(new EDK_Dokumentwerte(name, value)); + } + dokumentwerte = Dokwerte; + + if (parameters.Count > 0) + { + executed = false; + toexecute = true; + } + + } + } + + } + +} + diff --git a/Client/Klassen/clsAppParams.cs b/Client/Klassen/clsAppParams.cs index 22f57cb0..aad0c4ad 100644 --- a/Client/Klassen/clsAppParams.cs +++ b/Client/Klassen/clsAppParams.cs @@ -38,10 +38,9 @@ namespace OnDoc.Klassen StaticValues.UserID = "Stefan Hutter"; } - - } + public static class ExternalCall { public static bool executed { get; set; } = false; diff --git a/Client/Program.cs b/Client/Program.cs index dab947bb..6ef87263 100644 --- a/Client/Program.cs +++ b/Client/Program.cs @@ -17,6 +17,10 @@ namespace OnDoc { internal static class Program { + + /// Args + /// shodoc:?partnernr=1000210&vorlagenr=125&interaktion=NO&showdoc=YES&funktion=Createdoc + /// E:\Software-Projekte\OnDoc\EDK_Dateien\3bv.edk /// /// Der Haupteinstiegspunkt für die Anwendung. /// @@ -32,13 +36,27 @@ namespace OnDoc ExternalCall.sourceparam = ""; if (args.Length > 0) { - AppParams.init(); - //MessageBox.Show(AppParams.tempdir); - string destfile = AppParams.tempdir + "tmpfile.tmp"; - using (StreamWriter outputfile = new StreamWriter(destfile)) + if (args[0].ToString().ToUpper().Substring(args[0].ToString().Length - 4, 4) == ".EDK") + { + EDK_Data.Load_EDK_File(args[0]); + } + else { - outputfile.WriteLine(Uri.UnescapeDataString(args[0])); - outputfile.Close(); + if (args[0].ToString().ToUpper().IndexOf("PARTNERNR") > 0) + { + AppParams.init(); + //MessageBox.Show(AppParams.tempdir); + string destfile = AppParams.tempdir + "tmpfile.tmp"; + using (StreamWriter outputfile = new StreamWriter(destfile)) + { + outputfile.WriteLine(Uri.UnescapeDataString(args[0])); + outputfile.Close(); + } + } + else + { + MessageBox.Show("Die Übergabeparemeter '" + args[0].ToString()+"' sind ungültig","Aufruffehler",MessageBoxButtons.OK, MessageBoxIcon.Error); + } } } diff --git a/Client/Start.Designer.cs b/Client/Start.Designer.cs index 3dcf59b1..fe774c76 100644 --- a/Client/Start.Designer.cs +++ b/Client/Start.Designer.cs @@ -104,11 +104,13 @@ // // timer1 // + this.timer1.Enabled = true; this.timer1.Interval = 3000; this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // // dokList1 // + this.dokList1.datafilter = ""; this.dokList1.docartnr = 0; this.dokList1.Dock = System.Windows.Forms.DockStyle.Fill; this.dokList1.Location = new System.Drawing.Point(2, 2); @@ -116,6 +118,7 @@ this.dokList1.Name = "dokList1"; this.dokList1.partnernr = 0; this.dokList1.profilnr = 0; + this.dokList1.selected_cellvalue = null; this.dokList1.selected_dokumentid = null; this.dokList1.Size = new System.Drawing.Size(1584, 796); this.dokList1.TabIndex = 4; diff --git a/Client/Start.cs b/Client/Start.cs index 0182ee1c..aa0d3f73 100644 --- a/Client/Start.cs +++ b/Client/Start.cs @@ -107,10 +107,7 @@ namespace OnDoc public void External_Call() { - timer1.Start(); - - } private void Start_Load(object sender, EventArgs e) @@ -118,20 +115,16 @@ namespace OnDoc if (ExternalCall.sourceparam.Trim().ToString() !="" && ExternalCall.executed == false) { - External_Call(); } + if (EDK_Data.toexecute == true) + { + exec_edk(); + } //partnerTree1.mitarbeiternr = AppParams.CurrentMitarbieter; } - //private void rbcomboboxprofil_DropDownItemClicked(object sender, RibbonItemEventArgs e) - //{ - // Logging.Logging.Debug("rbcomboboxprofil_DropDownItemClicked", "start.cs", ""); - // //partnerTree1.Refresh(-1, AppParams.CurrentMitarbieter, Convert.ToInt32(e.Item.Tag.ToString())); - // //MessageBox.Show(e.Item.Tag.ToString()); - //} - - private void dokList1_Load(object sender, EventArgs e) + private void dokList1_Load(object sender, EventArgs e) { } @@ -177,5 +170,13 @@ namespace OnDoc } } + + private void exec_edk() + { + if (EDK_Data.action == EDK_ActionType.DokumentErstellung) + { + + } + } } } diff --git a/Client/Start.resx b/Client/Start.resx index 5aefc7b3..ebd69972 100644 --- a/Client/Start.resx +++ b/Client/Start.resx @@ -153,13 +153,13 @@ iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vgAADr4B6kKxwAAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC + vAAADrwBlbxySQAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vgAADr4B6kKxwAAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC + vAAADrwBlbxySQAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC diff --git a/Client/UIControls/DokList.Designer.cs b/Client/UIControls/DokList.Designer.cs index ba34ecd6..2559d083 100644 --- a/Client/UIControls/DokList.Designer.cs +++ b/Client/UIControls/DokList.Designer.cs @@ -39,6 +39,7 @@ this.barcodeDemoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.vertragPDFDEMOToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.zellenwertInZwischenablageKopierenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.druckenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel(); this.tsrbvorschau = new System.Windows.Forms.ToolStripComboBox(); @@ -79,9 +80,11 @@ this.RibbonPanelDoklist = new System.Windows.Forms.RibbonPanel(); this.RibbonButtonRefresh = new System.Windows.Forms.RibbonButton(); this.RibbonTabAdmin = new System.Windows.Forms.RibbonTab(); + this.ribbonPanel1 = new System.Windows.Forms.RibbonPanel(); + this.RibbonButtonDokumenttyp = new System.Windows.Forms.RibbonButton(); + this.RibbonButtonVorlagen = new System.Windows.Forms.RibbonButton(); this.pdfConfig1 = new Syncfusion.Pdf.PdfConfig(); this.RibbonButtonCreateNewDoc = new System.Windows.Forms.RibbonButton(); - this.druckenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); ((System.ComponentModel.ISupportInitialize)(this.sfDataGrid1)).BeginInit(); this.ctxMenuDokList.SuspendLayout(); this.toolStrip1.SuspendLayout(); @@ -124,7 +127,7 @@ this.zellenwertInZwischenablageKopierenToolStripMenuItem, this.druckenToolStripMenuItem}); this.ctxMenuDokList.Name = "ctxMenuDokList"; - this.ctxMenuDokList.Size = new System.Drawing.Size(280, 202); + this.ctxMenuDokList.Size = new System.Drawing.Size(280, 180); // // dokumentAnzeigenToolStripMenuItem // @@ -180,6 +183,13 @@ this.zellenwertInZwischenablageKopierenToolStripMenuItem.Text = "Zellenwert in Zwischenablage kopieren"; this.zellenwertInZwischenablageKopierenToolStripMenuItem.Click += new System.EventHandler(this.zellenwertInZwischenablageKopierenToolStripMenuItem_Click); // + // druckenToolStripMenuItem + // + this.druckenToolStripMenuItem.Name = "druckenToolStripMenuItem"; + this.druckenToolStripMenuItem.Size = new System.Drawing.Size(279, 22); + this.druckenToolStripMenuItem.Text = "Drucken"; + this.druckenToolStripMenuItem.Click += new System.EventHandler(this.druckenToolStripMenuItem_Click); + // // toolStrip1 // this.toolStrip1.Dock = System.Windows.Forms.DockStyle.Bottom; @@ -570,8 +580,34 @@ // RibbonTabAdmin // this.RibbonTabAdmin.Name = "RibbonTabAdmin"; + this.RibbonTabAdmin.Panels.Add(this.ribbonPanel1); this.RibbonTabAdmin.Text = "Administration"; // + // ribbonPanel1 + // + this.ribbonPanel1.ButtonMoreVisible = false; + this.ribbonPanel1.FlowsTo = System.Windows.Forms.RibbonPanelFlowDirection.Right; + this.ribbonPanel1.Items.Add(this.RibbonButtonDokumenttyp); + this.ribbonPanel1.Items.Add(this.RibbonButtonVorlagen); + this.ribbonPanel1.Name = "ribbonPanel1"; + this.ribbonPanel1.Text = "ribbonPanel1"; + // + // RibbonButtonDokumenttyp + // + this.RibbonButtonDokumenttyp.Image = ((System.Drawing.Image)(resources.GetObject("RibbonButtonDokumenttyp.Image"))); + this.RibbonButtonDokumenttyp.LargeImage = ((System.Drawing.Image)(resources.GetObject("RibbonButtonDokumenttyp.LargeImage"))); + this.RibbonButtonDokumenttyp.Name = "RibbonButtonDokumenttyp"; + this.RibbonButtonDokumenttyp.SmallImage = ((System.Drawing.Image)(resources.GetObject("RibbonButtonDokumenttyp.SmallImage"))); + this.RibbonButtonDokumenttyp.Text = "Dokumenttyp"; + // + // RibbonButtonVorlagen + // + this.RibbonButtonVorlagen.Image = ((System.Drawing.Image)(resources.GetObject("RibbonButtonVorlagen.Image"))); + this.RibbonButtonVorlagen.LargeImage = ((System.Drawing.Image)(resources.GetObject("RibbonButtonVorlagen.LargeImage"))); + this.RibbonButtonVorlagen.Name = "RibbonButtonVorlagen"; + this.RibbonButtonVorlagen.SmallImage = ((System.Drawing.Image)(resources.GetObject("RibbonButtonVorlagen.SmallImage"))); + this.RibbonButtonVorlagen.Text = "Vorlagen"; + // // RibbonButtonCreateNewDoc // this.RibbonButtonCreateNewDoc.Image = global::OnDoc.Properties.Resources.NewDoc_32x32_32; @@ -581,13 +617,6 @@ this.RibbonButtonCreateNewDoc.Text = "Dokument"; this.RibbonButtonCreateNewDoc.Click += new System.EventHandler(this.RibbonButtonCreateNewDoc_Click); // - // druckenToolStripMenuItem - // - this.druckenToolStripMenuItem.Name = "druckenToolStripMenuItem"; - this.druckenToolStripMenuItem.Size = new System.Drawing.Size(279, 22); - this.druckenToolStripMenuItem.Text = "Drucken"; - this.druckenToolStripMenuItem.Click += new System.EventHandler(this.druckenToolStripMenuItem_Click); - // // DokList // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); @@ -666,5 +695,8 @@ private System.Windows.Forms.RibbonButton RibbonButtonCreateNewDoc; private System.Windows.Forms.ToolStripMenuItem zellenwertInZwischenablageKopierenToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem druckenToolStripMenuItem; + private System.Windows.Forms.RibbonPanel ribbonPanel1; + private System.Windows.Forms.RibbonButton RibbonButtonDokumenttyp; + private System.Windows.Forms.RibbonButton RibbonButtonVorlagen; } } diff --git a/Client/UIControls/DokList.resx b/Client/UIControls/DokList.resx index e51a4a91..5acbe036 100644 --- a/Client/UIControls/DokList.resx +++ b/Client/UIControls/DokList.resx @@ -357,6 +357,42 @@ HwlkxKJc0Gw7nIj2L2EcX4yAJ6eqqQ6ginIFDHpjsMzbMP7BjK8bLriJWZ1D0M1P4agrjHWWr3enUgBo QiD04bcGdOrb0KE7TKwVpx+1YdxpQrrw7/UUgJpoEU9+nE0mQB5XAEJR2bUh4De6MJTcWL7XngAAAABJ RU5ErkJggg== + + + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wgAADsIBFShKgAAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wgAADsIBFShKgAAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wgAADsIBFShKgAAAABNJREFUOE9jGAWjYBSMAjBgYAAABBAAAadEfGMAAAAASUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wgAADsIBFShKgAAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wgAADsIBFShKgAAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wgAADsIBFShKgAAAABNJREFUOE9jGAWjYBSMAjBgYAAABBAAAadEfGMAAAAASUVORK5CYII= diff --git a/Client/bin/Debug/OnDoc.exe b/Client/bin/Debug/OnDoc.exe index 25d9edb5..dffb4f07 100644 Binary files a/Client/bin/Debug/OnDoc.exe and b/Client/bin/Debug/OnDoc.exe differ diff --git a/Client/bin/Debug/OnDoc.pdb b/Client/bin/Debug/OnDoc.pdb index 3ca41260..0a1fe2de 100644 Binary files a/Client/bin/Debug/OnDoc.pdb and b/Client/bin/Debug/OnDoc.pdb differ diff --git a/Client/bin/Debug/de-DE/OnDoc.resources.dll b/Client/bin/Debug/de-DE/OnDoc.resources.dll index eed97061..9b869d50 100644 Binary files a/Client/bin/Debug/de-DE/OnDoc.resources.dll and b/Client/bin/Debug/de-DE/OnDoc.resources.dll differ diff --git a/Client/bin/Debug/log.txt b/Client/bin/Debug/log.txt index d3994ceb..c6ac707f 100644 --- a/Client/bin/Debug/log.txt +++ b/Client/bin/Debug/log.txt @@ -15024,3 +15024,51 @@ 2024-07-18 14:20:25.8347|DEBUG|EDOKA| 2024-07-18 14:20:43.4065|DEBUG|EDOKA| 2024-07-18 14:20:49.6416|DEBUG|EDOKA| +2024-07-18 16:21:30.1833|DEBUG|EDOKA|Start +2024-07-19 08:49:28.9877|DEBUG|EDOKA|Start +2024-07-19 08:49:29.0498|DEBUG|EDOKA| +2024-07-19 08:49:29.0498|DEBUG|EDOKA| +2024-07-19 08:49:29.0498|DEBUG|EDOKA| +2024-07-19 08:49:29.0498|DEBUG|EDOKA| +2024-07-19 08:49:29.1374|DEBUG|EDOKA|Start - Ende +2024-07-19 08:55:30.0277|DEBUG|EDOKA|Start +2024-07-19 08:55:30.0888|DEBUG|EDOKA| +2024-07-19 08:55:30.0888|DEBUG|EDOKA| +2024-07-19 08:55:30.0888|DEBUG|EDOKA| +2024-07-19 08:55:30.0988|DEBUG|EDOKA| +2024-07-19 08:55:30.1667|DEBUG|EDOKA|Start - Ende +2024-07-19 08:59:10.9075|DEBUG|EDOKA|Start +2024-07-19 08:59:10.9662|DEBUG|EDOKA| +2024-07-19 08:59:10.9662|DEBUG|EDOKA| +2024-07-19 08:59:10.9662|DEBUG|EDOKA| +2024-07-19 08:59:10.9742|DEBUG|EDOKA| +2024-07-19 08:59:11.0447|DEBUG|EDOKA|Start - Ende +2024-07-19 08:59:17.4100|DEBUG|EDOKA| +2024-07-19 08:59:17.4470|DEBUG|EDOKA| +2024-07-19 08:59:17.7993|DEBUG|EDOKA| +2024-07-19 08:59:17.8429|DEBUG|EDOKA| +2024-07-19 08:59:17.8919|DEBUG|EDOKA| +2024-07-19 08:59:17.8949|DEBUG|EDOKA| +2024-07-19 08:59:17.8949|DEBUG|EDOKA| +2024-07-19 08:59:17.8949|DEBUG|EDOKA| +2024-07-19 08:59:17.9109|DEBUG|EDOKA| +2024-07-19 08:59:17.9109|DEBUG|EDOKA| +2024-07-19 08:59:17.9399|DEBUG|EDOKA| +2024-07-19 09:00:14.1483|DEBUG|EDOKA|Start +2024-07-19 09:00:14.2080|DEBUG|EDOKA| +2024-07-19 09:00:14.2080|DEBUG|EDOKA| +2024-07-19 09:00:14.2080|DEBUG|EDOKA| +2024-07-19 09:00:14.2080|DEBUG|EDOKA| +2024-07-19 09:00:14.2875|DEBUG|EDOKA|Start - Ende +2024-07-19 09:06:21.2757|DEBUG|EDOKA|Start +2024-07-19 09:06:21.3356|DEBUG|EDOKA| +2024-07-19 09:06:21.3356|DEBUG|EDOKA| +2024-07-19 09:06:21.3356|DEBUG|EDOKA| +2024-07-19 09:06:21.3526|DEBUG|EDOKA| +2024-07-19 09:06:21.4201|DEBUG|EDOKA|Start - Ende +2024-07-19 09:49:57.9494|DEBUG|EDOKA|Start +2024-07-19 09:49:58.0085|DEBUG|EDOKA| +2024-07-19 09:49:58.0085|DEBUG|EDOKA| +2024-07-19 09:49:58.0085|DEBUG|EDOKA| +2024-07-19 09:49:58.0085|DEBUG|EDOKA| +2024-07-19 09:49:58.0888|DEBUG|EDOKA|Start - Ende diff --git a/Client/obj/Debug/Client.csproj.AssemblyReference.cache b/Client/obj/Debug/Client.csproj.AssemblyReference.cache index b79c0571..98010c94 100644 Binary files a/Client/obj/Debug/Client.csproj.AssemblyReference.cache and b/Client/obj/Debug/Client.csproj.AssemblyReference.cache differ diff --git a/Client/obj/Debug/Client.csproj.CoreCompileInputs.cache b/Client/obj/Debug/Client.csproj.CoreCompileInputs.cache index d0fa9730..9379e69a 100644 --- a/Client/obj/Debug/Client.csproj.CoreCompileInputs.cache +++ b/Client/obj/Debug/Client.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -0e96e841bafed15f8dc556cd5af78ed568f09a88caaf8ca805fb32c56e392722 +c15d02835333e1b836eea7ced198ac5906af7cbb62c10ba6322f7413272a50d2 diff --git a/Client/obj/Debug/Client.csproj.GenerateResource.cache b/Client/obj/Debug/Client.csproj.GenerateResource.cache index ea9f18e6..d7c3af7b 100644 Binary files a/Client/obj/Debug/Client.csproj.GenerateResource.cache and b/Client/obj/Debug/Client.csproj.GenerateResource.cache differ diff --git a/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache index 7e71be26..00d57866 100644 Binary files a/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Client/obj/Debug/OnDoc.Start.resources b/Client/obj/Debug/OnDoc.Start.resources index 8415c300..bdbabe9b 100644 Binary files a/Client/obj/Debug/OnDoc.Start.resources and b/Client/obj/Debug/OnDoc.Start.resources differ diff --git a/Client/obj/Debug/OnDoc.UICintrols.DokList.resources b/Client/obj/Debug/OnDoc.UICintrols.DokList.resources index 89ebf1bf..145c6f4f 100644 Binary files a/Client/obj/Debug/OnDoc.UICintrols.DokList.resources and b/Client/obj/Debug/OnDoc.UICintrols.DokList.resources differ diff --git a/Client/obj/Debug/OnDoc.exe b/Client/obj/Debug/OnDoc.exe index 25d9edb5..dffb4f07 100644 Binary files a/Client/obj/Debug/OnDoc.exe and b/Client/obj/Debug/OnDoc.exe differ diff --git a/Client/obj/Debug/OnDoc.pdb b/Client/obj/Debug/OnDoc.pdb index 3ca41260..0a1fe2de 100644 Binary files a/Client/obj/Debug/OnDoc.pdb and b/Client/obj/Debug/OnDoc.pdb differ diff --git a/Client/obj/Debug/de-DE/OnDoc.resources.dll b/Client/obj/Debug/de-DE/OnDoc.resources.dll index eed97061..9b869d50 100644 Binary files a/Client/obj/Debug/de-DE/OnDoc.resources.dll and b/Client/obj/Debug/de-DE/OnDoc.resources.dll differ diff --git a/Database/VSdoc/index.html_rename b/Database/VSdoc/index.html_rename new file mode 100644 index 00000000..6528d109 --- /dev/null +++ b/Database/VSdoc/index.html_rename @@ -0,0 +1,14 @@ + + + + Default page + + + + + +
+ Go to default page +
+ + \ No newline at end of file diff --git a/Database/VSdoc/search--.html_rename b/Database/VSdoc/search--.html_rename new file mode 100644 index 00000000..f6b969d1 --- /dev/null +++ b/Database/VSdoc/search--.html_rename @@ -0,0 +1,91 @@ + + + + + + + Search + + + + + + + + + + + + +
+ + + +
+
+ +
+

+ Search results for +

+ +
+
+ +
+
+ + +
+ + + + + diff --git a/Database/VSdoc/search--/s_0.js b/Database/VSdoc/search--/s_0.js index 3f690840..b1d97d1f 100644 --- a/Database/VSdoc/search--/s_0.js +++ b/Database/VSdoc/search--/s_0.js @@ -1 +1 @@ -search_result['0']=["topic_0000000000000000.html","edoka_dms Namespace",""]; \ No newline at end of file +search_result['0']=["index.html","Default page",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_1.js b/Database/VSdoc/search--/s_1.js index 64c5d0a1..b3ebedf0 100644 --- a/Database/VSdoc/search--/s_1.js +++ b/Database/VSdoc/search--/s_1.js @@ -1 +1 @@ -search_result['1']=["topic_0000000000000001.html","clsConnectionProvider Class",""]; \ No newline at end of file +search_result['1']=["search--.html","Search",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_10.js b/Database/VSdoc/search--/s_10.js index c9ab6841..bb40f588 100644 --- a/Database/VSdoc/search--/s_10.js +++ b/Database/VSdoc/search--/s_10.js @@ -1 +1 @@ -search_result['10']=["topic_0000000000000004.html","clsConnectionProvider.Dispose (Boolean) Method",""]; \ No newline at end of file +search_result['10']=["topic_0000000000000003.html","clsConnectionProvider.Dispose Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_100.js b/Database/VSdoc/search--/s_100.js index 2e66d748..69f33b93 100644 --- a/Database/VSdoc/search--/s_100.js +++ b/Database/VSdoc/search--/s_100.js @@ -1 +1 @@ -search_result['100']=["topic_000000000000004D.html","clsDokument.iMa_eingangsarchivierung Property",""]; \ No newline at end of file +search_result['100']=["topic_000000000000004B.html","clsDokument.bEingangsarchiviert Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_101.js b/Database/VSdoc/search--/s_101.js index 8c305a31..69d3c87d 100644 --- a/Database/VSdoc/search--/s_101.js +++ b/Database/VSdoc/search--/s_101.js @@ -1 +1 @@ -search_result['101']=["topic_000000000000004E.html","clsDokument.iStatus_edoka_batch_ausgang Property",""]; \ No newline at end of file +search_result['101']=["topic_000000000000004C.html","clsDokument.daDatum_eingangsarchivierung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_102.js b/Database/VSdoc/search--/s_102.js index acc063f0..1746e6a2 100644 --- a/Database/VSdoc/search--/s_102.js +++ b/Database/VSdoc/search--/s_102.js @@ -1 +1 @@ -search_result['102']=["topic_000000000000004F.html","clsDokument.iStatus_edoka_batch_eingang Property",""]; \ No newline at end of file +search_result['102']=["topic_000000000000004D.html","clsDokument.iMa_eingangsarchivierung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_103.js b/Database/VSdoc/search--/s_103.js index 05548331..025f170d 100644 --- a/Database/VSdoc/search--/s_103.js +++ b/Database/VSdoc/search--/s_103.js @@ -1 +1 @@ -search_result['103']=["topic_0000000000000050.html","clsDokument.sLoeschgrund Property",""]; \ No newline at end of file +search_result['103']=["topic_000000000000004E.html","clsDokument.iStatus_edoka_batch_ausgang Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_104.js b/Database/VSdoc/search--/s_104.js index 99bb3f50..6de2294e 100644 --- a/Database/VSdoc/search--/s_104.js +++ b/Database/VSdoc/search--/s_104.js @@ -1 +1 @@ -search_result['104']=["topic_0000000000000051.html","clsDokument.iColdstatus Property",""]; \ No newline at end of file +search_result['104']=["topic_000000000000004F.html","clsDokument.iStatus_edoka_batch_eingang Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_105.js b/Database/VSdoc/search--/s_105.js index 6fd5fd0f..482d4954 100644 --- a/Database/VSdoc/search--/s_105.js +++ b/Database/VSdoc/search--/s_105.js @@ -1 +1 @@ -search_result['105']=["topic_0000000000000052.html","clsDokument.sVersandadresse Property",""]; \ No newline at end of file +search_result['105']=["topic_0000000000000050.html","clsDokument.sLoeschgrund Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_106.js b/Database/VSdoc/search--/s_106.js index 57fca381..616e0ae2 100644 --- a/Database/VSdoc/search--/s_106.js +++ b/Database/VSdoc/search--/s_106.js @@ -1 +1 @@ -search_result['106']=["topic_0000000000000053.html","clsDokument.iBarcodenr Property",""]; \ No newline at end of file +search_result['106']=["topic_0000000000000051.html","clsDokument.iColdstatus Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_107.js b/Database/VSdoc/search--/s_107.js index f322a4f2..a355faf9 100644 --- a/Database/VSdoc/search--/s_107.js +++ b/Database/VSdoc/search--/s_107.js @@ -1 +1 @@ -search_result['107']=["topic_0000000000000054.html","clsDokument.sColddokumentid Property",""]; \ No newline at end of file +search_result['107']=["topic_0000000000000052.html","clsDokument.sVersandadresse Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_108.js b/Database/VSdoc/search--/s_108.js index 447998c5..a76a7d41 100644 --- a/Database/VSdoc/search--/s_108.js +++ b/Database/VSdoc/search--/s_108.js @@ -1 +1 @@ -search_result['108']=["topic_0000000000000055.html","clsDokument.bAmsdokument Property",""]; \ No newline at end of file +search_result['108']=["topic_0000000000000053.html","clsDokument.iBarcodenr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_109.js b/Database/VSdoc/search--/s_109.js index b909a09d..b7149ebe 100644 --- a/Database/VSdoc/search--/s_109.js +++ b/Database/VSdoc/search--/s_109.js @@ -1 +1 @@ -search_result['109']=["topic_0000000000000056.html","clsDokument.iVerantwortlich Property",""]; \ No newline at end of file +search_result['109']=["topic_0000000000000054.html","clsDokument.sColddokumentid Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_11.js b/Database/VSdoc/search--/s_11.js index 1efab145..e08aa602 100644 --- a/Database/VSdoc/search--/s_11.js +++ b/Database/VSdoc/search--/s_11.js @@ -1 +1 @@ -search_result['11']=["topic_0000000000000004_overloads--.html","clsConnectionProvider.Dispose Method",""]; \ No newline at end of file +search_result['11']=["topic_0000000000000003_overloads--.html","clsConnectionProvider.Dispose Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_110.js b/Database/VSdoc/search--/s_110.js index f0316707..c7328229 100644 --- a/Database/VSdoc/search--/s_110.js +++ b/Database/VSdoc/search--/s_110.js @@ -1 +1 @@ -search_result['110']=["topic_0000000000000057.html","clsDokument.iZustaendiger Property",""]; \ No newline at end of file +search_result['110']=["topic_0000000000000055.html","clsDokument.bAmsdokument Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_111.js b/Database/VSdoc/search--/s_111.js index 68443f83..6f3bb97b 100644 --- a/Database/VSdoc/search--/s_111.js +++ b/Database/VSdoc/search--/s_111.js @@ -1 +1 @@ -search_result['111']=["topic_0000000000000058.html","clsDokument.iUnterschriftlinks Property",""]; \ No newline at end of file +search_result['111']=["topic_0000000000000056.html","clsDokument.iVerantwortlich Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_112.js b/Database/VSdoc/search--/s_112.js index 2d624341..2f9382bb 100644 --- a/Database/VSdoc/search--/s_112.js +++ b/Database/VSdoc/search--/s_112.js @@ -1 +1 @@ -search_result['112']=["topic_0000000000000059.html","clsDokument.iUnterschriftrechts Property",""]; \ No newline at end of file +search_result['112']=["topic_0000000000000057.html","clsDokument.iZustaendiger Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_113.js b/Database/VSdoc/search--/s_113.js index c4278ac8..bded11f9 100644 --- a/Database/VSdoc/search--/s_113.js +++ b/Database/VSdoc/search--/s_113.js @@ -1 +1 @@ -search_result['113']=["topic_000000000000005A.html","clsDokument.iPostzustellung Property",""]; \ No newline at end of file +search_result['113']=["topic_0000000000000058.html","clsDokument.iUnterschriftlinks Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_114.js b/Database/VSdoc/search--/s_114.js index ace537ab..38900f07 100644 --- a/Database/VSdoc/search--/s_114.js +++ b/Database/VSdoc/search--/s_114.js @@ -1 +1 @@ -search_result['114']=["topic_000000000000005B.html","clsDokument.bAktiv Property",""]; \ No newline at end of file +search_result['114']=["topic_0000000000000059.html","clsDokument.iUnterschriftrechts Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_115.js b/Database/VSdoc/search--/s_115.js index 958ae16b..086081a9 100644 --- a/Database/VSdoc/search--/s_115.js +++ b/Database/VSdoc/search--/s_115.js @@ -1 +1 @@ -search_result['115']=["topic_000000000000005C.html","clsDokument.iStatusnr Property",""]; \ No newline at end of file +search_result['115']=["topic_000000000000005A.html","clsDokument.iPostzustellung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_116.js b/Database/VSdoc/search--/s_116.js index ef2d4672..45b669cf 100644 --- a/Database/VSdoc/search--/s_116.js +++ b/Database/VSdoc/search--/s_116.js @@ -1 +1 @@ -search_result['116']=["topic_000000000000005D.html","clsDokument.bZustaendig_kube Property",""]; \ No newline at end of file +search_result['116']=["topic_000000000000005B.html","clsDokument.bAktiv Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_117.js b/Database/VSdoc/search--/s_117.js index bd3b12c8..74438db2 100644 --- a/Database/VSdoc/search--/s_117.js +++ b/Database/VSdoc/search--/s_117.js @@ -1 +1 @@ -search_result['117']=["topic_000000000000005E.html","clsDokument.sZustelladresse Property",""]; \ No newline at end of file +search_result['117']=["topic_000000000000005C.html","clsDokument.iStatusnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_118.js b/Database/VSdoc/search--/s_118.js index c0f7e319..0a4ab554 100644 --- a/Database/VSdoc/search--/s_118.js +++ b/Database/VSdoc/search--/s_118.js @@ -1 +1 @@ -search_result['118']=["topic_000000000000005F.html","clsDokument.bVertraulich Property",""]; \ No newline at end of file +search_result['118']=["topic_000000000000005D.html","clsDokument.bZustaendig_kube Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_119.js b/Database/VSdoc/search--/s_119.js index 851245ef..348377bd 100644 --- a/Database/VSdoc/search--/s_119.js +++ b/Database/VSdoc/search--/s_119.js @@ -1 +1 @@ -search_result['119']=["topic_0000000000000060.html","clsDokument.daErstellungsdatum Property",""]; \ No newline at end of file +search_result['119']=["topic_000000000000005E.html","clsDokument.sZustelladresse Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_12.js b/Database/VSdoc/search--/s_12.js index 5700e8c5..5c77250d 100644 --- a/Database/VSdoc/search--/s_12.js +++ b/Database/VSdoc/search--/s_12.js @@ -1 +1 @@ -search_result['12']=["topic_0000000000000005.html","clsConnectionProvider.OpenConnection Method",""]; \ No newline at end of file +search_result['12']=["topic_0000000000000004.html","clsConnectionProvider.Dispose (Boolean) Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_120.js b/Database/VSdoc/search--/s_120.js index fe903a00..81015069 100644 --- a/Database/VSdoc/search--/s_120.js +++ b/Database/VSdoc/search--/s_120.js @@ -1 +1 @@ -search_result['120']=["topic_0000000000000061.html","clsDokument.daArchivierungsdatum Property",""]; \ No newline at end of file +search_result['120']=["topic_000000000000005F.html","clsDokument.bVertraulich Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_121.js b/Database/VSdoc/search--/s_121.js index 20be37d4..48e8f2ab 100644 --- a/Database/VSdoc/search--/s_121.js +++ b/Database/VSdoc/search--/s_121.js @@ -1 +1 @@ -search_result['121']=["topic_0000000000000062.html","clsDokument.daTermin Property",""]; \ No newline at end of file +search_result['121']=["topic_0000000000000060.html","clsDokument.daErstellungsdatum Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_122.js b/Database/VSdoc/search--/s_122.js index 46e3700d..4494ab0f 100644 --- a/Database/VSdoc/search--/s_122.js +++ b/Database/VSdoc/search--/s_122.js @@ -1 +1 @@ -search_result['122']=["topic_0000000000000063.html","clsDokument.iMutiererteam Property",""]; \ No newline at end of file +search_result['122']=["topic_0000000000000061.html","clsDokument.daArchivierungsdatum Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_123.js b/Database/VSdoc/search--/s_123.js index 659d7de3..51a2ef6e 100644 --- a/Database/VSdoc/search--/s_123.js +++ b/Database/VSdoc/search--/s_123.js @@ -1 +1 @@ -search_result['123']=["topic_0000000000000064.html","clsDokument.sAnredezustelladresse Property",""]; \ No newline at end of file +search_result['123']=["topic_0000000000000062.html","clsDokument.daTermin Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_124.js b/Database/VSdoc/search--/s_124.js index 0fb97274..17acf928 100644 --- a/Database/VSdoc/search--/s_124.js +++ b/Database/VSdoc/search--/s_124.js @@ -1 +1 @@ -search_result['124']=["topic_0000000000000065.html","clsDokument.iDokdurchkubeweitergegeben Property",""]; \ No newline at end of file +search_result['124']=["topic_0000000000000063.html","clsDokument.iMutiererteam Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_125.js b/Database/VSdoc/search--/s_125.js index 8284f9de..54c922bd 100644 --- a/Database/VSdoc/search--/s_125.js +++ b/Database/VSdoc/search--/s_125.js @@ -1 +1 @@ -search_result['125']=["topic_0000000000000066.html","clsDokument.iBck Property",""]; \ No newline at end of file +search_result['125']=["topic_0000000000000064.html","clsDokument.sAnredezustelladresse Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_126.js b/Database/VSdoc/search--/s_126.js index cb80247d..f14cb5c3 100644 --- a/Database/VSdoc/search--/s_126.js +++ b/Database/VSdoc/search--/s_126.js @@ -1 +1 @@ -search_result['126']=["topic_0000000000000067.html","clsDokument.iBearbeitungszeit_in_minuten Property",""]; \ No newline at end of file +search_result['126']=["topic_0000000000000065.html","clsDokument.iDokdurchkubeweitergegeben Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_127.js b/Database/VSdoc/search--/s_127.js index 879e710a..03b97305 100644 --- a/Database/VSdoc/search--/s_127.js +++ b/Database/VSdoc/search--/s_127.js @@ -1 +1 @@ -search_result['127']=["topic_0000000000000068.html","clsDokument.iMonierung_in_tagen Property",""]; \ No newline at end of file +search_result['127']=["topic_0000000000000066.html","clsDokument.iBck Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_128.js b/Database/VSdoc/search--/s_128.js index 63a14dec..05427883 100644 --- a/Database/VSdoc/search--/s_128.js +++ b/Database/VSdoc/search--/s_128.js @@ -1 +1 @@ -search_result['128']=["topic_0000000000000069.html","clsDokument.iAufbewahrung_elektronisch Property",""]; \ No newline at end of file +search_result['128']=["topic_0000000000000067.html","clsDokument.iBearbeitungszeit_in_minuten Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_129.js b/Database/VSdoc/search--/s_129.js index b30c74a5..2b91559d 100644 --- a/Database/VSdoc/search--/s_129.js +++ b/Database/VSdoc/search--/s_129.js @@ -1 +1 @@ -search_result['129']=["topic_000000000000006A.html","clsDokument.iAufbewahrung_phaysisch Property",""]; \ No newline at end of file +search_result['129']=["topic_0000000000000068.html","clsDokument.iMonierung_in_tagen Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_13.js b/Database/VSdoc/search--/s_13.js index 3ec75ef5..d6e5f07f 100644 --- a/Database/VSdoc/search--/s_13.js +++ b/Database/VSdoc/search--/s_13.js @@ -1 +1 @@ -search_result['13']=["topic_0000000000000006.html","clsConnectionProvider.BeginTransaction Method",""]; \ No newline at end of file +search_result['13']=["topic_0000000000000004_overloads--.html","clsConnectionProvider.Dispose Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_130.js b/Database/VSdoc/search--/s_130.js index d45907b6..43ff60f5 100644 --- a/Database/VSdoc/search--/s_130.js +++ b/Database/VSdoc/search--/s_130.js @@ -1 +1 @@ -search_result['130']=["topic_000000000000006B.html","clsDokument.iIn_edoka_datenbank Property",""]; \ No newline at end of file +search_result['130']=["topic_0000000000000069.html","clsDokument.iAufbewahrung_elektronisch Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_131.js b/Database/VSdoc/search--/s_131.js index b5224800..c927f76f 100644 --- a/Database/VSdoc/search--/s_131.js +++ b/Database/VSdoc/search--/s_131.js @@ -1 +1 @@ -search_result['131']=["topic_000000000000006C.html","clsDokument.iBearbeitung_nach_abschluss Property",""]; \ No newline at end of file +search_result['131']=["topic_000000000000006A.html","clsDokument.iAufbewahrung_phaysisch Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_132.js b/Database/VSdoc/search--/s_132.js index 8b04ea39..6be9c72f 100644 --- a/Database/VSdoc/search--/s_132.js +++ b/Database/VSdoc/search--/s_132.js @@ -1 +1 @@ -search_result['132']=["topic_000000000000006D.html","clsDokument.sColdfolder Property",""]; \ No newline at end of file +search_result['132']=["topic_000000000000006B.html","clsDokument.iIn_edoka_datenbank Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_133.js b/Database/VSdoc/search--/s_133.js index 298dbf75..c54f8668 100644 --- a/Database/VSdoc/search--/s_133.js +++ b/Database/VSdoc/search--/s_133.js @@ -1 +1 @@ -search_result['133']=["topic_000000000000006E.html","clsDokument.sColdschema Property",""]; \ No newline at end of file +search_result['133']=["topic_000000000000006C.html","clsDokument.iBearbeitung_nach_abschluss Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_134.js b/Database/VSdoc/search--/s_134.js index ce1e198f..0179e05c 100644 --- a/Database/VSdoc/search--/s_134.js +++ b/Database/VSdoc/search--/s_134.js @@ -1 +1 @@ -search_result['134']=["topic_000000000000006F.html","clsDokument.daErinnerungam Property",""]; \ No newline at end of file +search_result['134']=["topic_000000000000006D.html","clsDokument.sColdfolder Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_135.js b/Database/VSdoc/search--/s_135.js index 0e874005..260e0347 100644 --- a/Database/VSdoc/search--/s_135.js +++ b/Database/VSdoc/search--/s_135.js @@ -1 +1 @@ -search_result['135']=["topic_0000000000000070.html","clsDokument.sFANummer1 Property",""]; \ No newline at end of file +search_result['135']=["topic_000000000000006E.html","clsDokument.sColdschema Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_136.js b/Database/VSdoc/search--/s_136.js index f8316d0f..980efe0d 100644 --- a/Database/VSdoc/search--/s_136.js +++ b/Database/VSdoc/search--/s_136.js @@ -1 +1 @@ -search_result['136']=["topic_0000000000000071.html","clsDokument.sFANummer2 Property",""]; \ No newline at end of file +search_result['136']=["topic_000000000000006F.html","clsDokument.daErinnerungam Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_137.js b/Database/VSdoc/search--/s_137.js index 3ef4a1b4..614fa4ea 100644 --- a/Database/VSdoc/search--/s_137.js +++ b/Database/VSdoc/search--/s_137.js @@ -1 +1 @@ -search_result['137']=["topic_0000000000000072.html","clsDokument.bFapartnerwechsel Property",""]; \ No newline at end of file +search_result['137']=["topic_0000000000000070.html","clsDokument.sFANummer1 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_138.js b/Database/VSdoc/search--/s_138.js index 77a2c231..6cd9830c 100644 --- a/Database/VSdoc/search--/s_138.js +++ b/Database/VSdoc/search--/s_138.js @@ -1 +1 @@ -search_result['138']=["topic_0000000000000073.html","clsDokument.bFAStatuswechsel Property",""]; \ No newline at end of file +search_result['138']=["topic_0000000000000071.html","clsDokument.sFANummer2 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_139.js b/Database/VSdoc/search--/s_139.js index 292cfb4f..50425cbd 100644 --- a/Database/VSdoc/search--/s_139.js +++ b/Database/VSdoc/search--/s_139.js @@ -1 +1 @@ -search_result['139']=["topic_0000000000000074.html","clsDokument.bFAVerantwortlicherwechsel Property",""]; \ No newline at end of file +search_result['139']=["topic_0000000000000072.html","clsDokument.bFapartnerwechsel Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_14.js b/Database/VSdoc/search--/s_14.js index d46da706..cf8bba0b 100644 --- a/Database/VSdoc/search--/s_14.js +++ b/Database/VSdoc/search--/s_14.js @@ -1 +1 @@ -search_result['14']=["topic_0000000000000007.html","clsConnectionProvider.CommitTransaction Method",""]; \ No newline at end of file +search_result['14']=["topic_0000000000000005.html","clsConnectionProvider.OpenConnection Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_140.js b/Database/VSdoc/search--/s_140.js index 29324268..1609c364 100644 --- a/Database/VSdoc/search--/s_140.js +++ b/Database/VSdoc/search--/s_140.js @@ -1 +1 @@ -search_result['140']=["topic_0000000000000075.html","clsDokument.sBedRDokumentid Property",""]; \ No newline at end of file +search_result['140']=["topic_0000000000000073.html","clsDokument.bFAStatuswechsel Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_141.js b/Database/VSdoc/search--/s_141.js index 81db78cc..8bd6f802 100644 --- a/Database/VSdoc/search--/s_141.js +++ b/Database/VSdoc/search--/s_141.js @@ -1 +1 @@ -search_result['141']=["topic_0000000000000076.html","clsDokument.bBedRRetourniert Property",""]; \ No newline at end of file +search_result['141']=["topic_0000000000000074.html","clsDokument.bFAVerantwortlicherwechsel Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_142.js b/Database/VSdoc/search--/s_142.js index 97e5f604..915e25b6 100644 --- a/Database/VSdoc/search--/s_142.js +++ b/Database/VSdoc/search--/s_142.js @@ -1 +1 @@ -search_result['142']=["topic_0000000000000077.html","clsDokument.iBRVernichtungnachTagen Property",""]; \ No newline at end of file +search_result['142']=["topic_0000000000000075.html","clsDokument.sBedRDokumentid Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_143.js b/Database/VSdoc/search--/s_143.js index eedd6bf2..fe26ca7b 100644 --- a/Database/VSdoc/search--/s_143.js +++ b/Database/VSdoc/search--/s_143.js @@ -1 +1 @@ -search_result['143']=["topic_0000000000000078.html","clsDokument.bOfficedokumentgeloescht Property",""]; \ No newline at end of file +search_result['143']=["topic_0000000000000076.html","clsDokument.bBedRRetourniert Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_144.js b/Database/VSdoc/search--/s_144.js index fba21c88..03e88117 100644 --- a/Database/VSdoc/search--/s_144.js +++ b/Database/VSdoc/search--/s_144.js @@ -1 +1 @@ -search_result['144']=["topic_0000000000000079.html","clsDokument.sFanummer3 Property",""]; \ No newline at end of file +search_result['144']=["topic_0000000000000077.html","clsDokument.iBRVernichtungnachTagen Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_145.js b/Database/VSdoc/search--/s_145.js index f249a4be..cdb2886b 100644 --- a/Database/VSdoc/search--/s_145.js +++ b/Database/VSdoc/search--/s_145.js @@ -1 +1 @@ -search_result['145']=["topic_000000000000007A.html","clsDokument.sVvnr Property",""]; \ No newline at end of file +search_result['145']=["topic_0000000000000078.html","clsDokument.bOfficedokumentgeloescht Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_146.js b/Database/VSdoc/search--/s_146.js index d8762208..8336cb71 100644 --- a/Database/VSdoc/search--/s_146.js +++ b/Database/VSdoc/search--/s_146.js @@ -1 +1 @@ -search_result['146']=["topic_000000000000007B.html","clsDokument.iAnzeigeStatus Property",""]; \ No newline at end of file +search_result['146']=["topic_0000000000000079.html","clsDokument.sFanummer3 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_147.js b/Database/VSdoc/search--/s_147.js index 7b2b71b6..6ad0b8f9 100644 --- a/Database/VSdoc/search--/s_147.js +++ b/Database/VSdoc/search--/s_147.js @@ -1 +1 @@ -search_result['147']=["topic_000000000000007C.html","clsDokument.bBl_scan Property",""]; \ No newline at end of file +search_result['147']=["topic_000000000000007A.html","clsDokument.sVvnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_148.js b/Database/VSdoc/search--/s_148.js index 70bb4f28..7aa6989b 100644 --- a/Database/VSdoc/search--/s_148.js +++ b/Database/VSdoc/search--/s_148.js @@ -1 +1 @@ -search_result['148']=["topic_000000000000007D.html","clsDokument.bBldossier Property",""]; \ No newline at end of file +search_result['148']=["topic_000000000000007B.html","clsDokument.iAnzeigeStatus Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_149.js b/Database/VSdoc/search--/s_149.js index 45bdc7ff..10246f49 100644 --- a/Database/VSdoc/search--/s_149.js +++ b/Database/VSdoc/search--/s_149.js @@ -1 +1 @@ -search_result['149']=["topic_000000000000007E.html","clsDokument.iNoEdit Property",""]; \ No newline at end of file +search_result['149']=["topic_000000000000007C.html","clsDokument.bBl_scan Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_15.js b/Database/VSdoc/search--/s_15.js index 96e969ba..400a2f35 100644 --- a/Database/VSdoc/search--/s_15.js +++ b/Database/VSdoc/search--/s_15.js @@ -1 +1 @@ -search_result['15']=["topic_0000000000000008.html","clsConnectionProvider.RollbackTransaction Method",""]; \ No newline at end of file +search_result['15']=["topic_0000000000000006.html","clsConnectionProvider.BeginTransaction Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_150.js b/Database/VSdoc/search--/s_150.js index 025701a5..949706ca 100644 --- a/Database/VSdoc/search--/s_150.js +++ b/Database/VSdoc/search--/s_150.js @@ -1 +1 @@ -search_result['150']=["topic_000000000000007F.html","clsDokument_status Class",""]; \ No newline at end of file +search_result['150']=["topic_000000000000007D.html","clsDokument.bBldossier Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_151.js b/Database/VSdoc/search--/s_151.js index 92be3a49..f88934c3 100644 --- a/Database/VSdoc/search--/s_151.js +++ b/Database/VSdoc/search--/s_151.js @@ -1 +1 @@ -search_result['151']=["topic_000000000000007F_attached_props--.html","clsDokument_status Attached Properties",""]; \ No newline at end of file +search_result['151']=["topic_000000000000007E.html","clsDokument.iNoEdit Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_152.js b/Database/VSdoc/search--/s_152.js index 8d6295aa..4d4128da 100644 --- a/Database/VSdoc/search--/s_152.js +++ b/Database/VSdoc/search--/s_152.js @@ -1 +1 @@ -search_result['152']=["topic_000000000000007F_events--.html","clsDokument_status Events",""]; \ No newline at end of file +search_result['152']=["topic_000000000000007F.html","clsDokument_status Class",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_153.js b/Database/VSdoc/search--/s_153.js index e2181391..082c7fb5 100644 --- a/Database/VSdoc/search--/s_153.js +++ b/Database/VSdoc/search--/s_153.js @@ -1 +1 @@ -search_result['153']=["topic_000000000000007F_methods--.html","clsDokument_status Methods",""]; \ No newline at end of file +search_result['153']=["topic_000000000000007F_attached_props--.html","clsDokument_status Attached Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_154.js b/Database/VSdoc/search--/s_154.js index fdca9ada..72555de8 100644 --- a/Database/VSdoc/search--/s_154.js +++ b/Database/VSdoc/search--/s_154.js @@ -1 +1 @@ -search_result['154']=["topic_000000000000007F_props--.html","clsDokument_status Properties",""]; \ No newline at end of file +search_result['154']=["topic_000000000000007F_events--.html","clsDokument_status Events",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_155.js b/Database/VSdoc/search--/s_155.js index bd7082f4..021a3650 100644 --- a/Database/VSdoc/search--/s_155.js +++ b/Database/VSdoc/search--/s_155.js @@ -1 +1 @@ -search_result['155']=["topic_000000000000007F_vars--.html","clsDokument_status Fields",""]; \ No newline at end of file +search_result['155']=["topic_000000000000007F_methods--.html","clsDokument_status Methods",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_156.js b/Database/VSdoc/search--/s_156.js index b9859c98..f861e9b9 100644 --- a/Database/VSdoc/search--/s_156.js +++ b/Database/VSdoc/search--/s_156.js @@ -1 +1 @@ -search_result['156']=["topic_0000000000000080.html","clsDokument_status Constructor",""]; \ No newline at end of file +search_result['156']=["topic_000000000000007F_props--.html","clsDokument_status Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_157.js b/Database/VSdoc/search--/s_157.js index 2be26ea8..a7343653 100644 --- a/Database/VSdoc/search--/s_157.js +++ b/Database/VSdoc/search--/s_157.js @@ -1 +1 @@ -search_result['157']=["topic_0000000000000081.html","clsDokument_status.Insert Method",""]; \ No newline at end of file +search_result['157']=["topic_000000000000007F_vars--.html","clsDokument_status Fields",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_158.js b/Database/VSdoc/search--/s_158.js index 0e224dfe..2f14e5e7 100644 --- a/Database/VSdoc/search--/s_158.js +++ b/Database/VSdoc/search--/s_158.js @@ -1 +1 @@ -search_result['158']=["topic_0000000000000082.html","clsDokument_status.Update Method",""]; \ No newline at end of file +search_result['158']=["topic_0000000000000080.html","clsDokument_status Constructor",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_159.js b/Database/VSdoc/search--/s_159.js index 3ff62b56..ba7c9232 100644 --- a/Database/VSdoc/search--/s_159.js +++ b/Database/VSdoc/search--/s_159.js @@ -1 +1 @@ -search_result['159']=["topic_0000000000000083.html","clsDokument_status.Delete Method",""]; \ No newline at end of file +search_result['159']=["topic_0000000000000081.html","clsDokument_status.Insert Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_16.js b/Database/VSdoc/search--/s_16.js index b41a700c..8c410679 100644 --- a/Database/VSdoc/search--/s_16.js +++ b/Database/VSdoc/search--/s_16.js @@ -1 +1 @@ -search_result['16']=["topic_0000000000000009.html","clsConnectionProvider.SaveTransaction Method",""]; \ No newline at end of file +search_result['16']=["topic_0000000000000007.html","clsConnectionProvider.CommitTransaction Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_160.js b/Database/VSdoc/search--/s_160.js index a0beebed..56ab4c11 100644 --- a/Database/VSdoc/search--/s_160.js +++ b/Database/VSdoc/search--/s_160.js @@ -1 +1 @@ -search_result['160']=["topic_0000000000000084.html","clsDokument_status.SelectOne Method",""]; \ No newline at end of file +search_result['160']=["topic_0000000000000082.html","clsDokument_status.Update Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_161.js b/Database/VSdoc/search--/s_161.js index 4664b9a8..ad04d64e 100644 --- a/Database/VSdoc/search--/s_161.js +++ b/Database/VSdoc/search--/s_161.js @@ -1 +1 @@ -search_result['161']=["topic_0000000000000085.html","clsDokument_status.SelectAll Method",""]; \ No newline at end of file +search_result['161']=["topic_0000000000000083.html","clsDokument_status.Delete Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_162.js b/Database/VSdoc/search--/s_162.js index 7b8a3cbd..5fd589e5 100644 --- a/Database/VSdoc/search--/s_162.js +++ b/Database/VSdoc/search--/s_162.js @@ -1 +1 @@ -search_result['162']=["topic_0000000000000086.html","clsDokument_status.iDokument_statusnr Property",""]; \ No newline at end of file +search_result['162']=["topic_0000000000000084.html","clsDokument_status.SelectOne Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_163.js b/Database/VSdoc/search--/s_163.js index ce3b965c..2f2c7d0a 100644 --- a/Database/VSdoc/search--/s_163.js +++ b/Database/VSdoc/search--/s_163.js @@ -1 +1 @@ -search_result['163']=["topic_0000000000000087.html","clsDokument_status.sDokumenitid Property",""]; \ No newline at end of file +search_result['163']=["topic_0000000000000085.html","clsDokument_status.SelectAll Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_164.js b/Database/VSdoc/search--/s_164.js index 4930681f..328dfa93 100644 --- a/Database/VSdoc/search--/s_164.js +++ b/Database/VSdoc/search--/s_164.js @@ -1 +1 @@ -search_result['164']=["topic_0000000000000088.html","clsDokument_status.iStatus_bezeichnungnr Property",""]; \ No newline at end of file +search_result['164']=["topic_0000000000000086.html","clsDokument_status.iDokument_statusnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_165.js b/Database/VSdoc/search--/s_165.js index 83872ffa..ada5c32f 100644 --- a/Database/VSdoc/search--/s_165.js +++ b/Database/VSdoc/search--/s_165.js @@ -1 +1 @@ -search_result['165']=["topic_0000000000000089.html","clsDokument_status.sBezeichnung Property",""]; \ No newline at end of file +search_result['165']=["topic_0000000000000087.html","clsDokument_status.sDokumenitid Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_166.js b/Database/VSdoc/search--/s_166.js index 87c67b5b..de66ac2d 100644 --- a/Database/VSdoc/search--/s_166.js +++ b/Database/VSdoc/search--/s_166.js @@ -1 +1 @@ -search_result['166']=["topic_000000000000008A.html","clsDokument_status.sReihenfolge Property",""]; \ No newline at end of file +search_result['166']=["topic_0000000000000088.html","clsDokument_status.iStatus_bezeichnungnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_167.js b/Database/VSdoc/search--/s_167.js index d227b13e..52dd85df 100644 --- a/Database/VSdoc/search--/s_167.js +++ b/Database/VSdoc/search--/s_167.js @@ -1 +1 @@ -search_result['167']=["topic_000000000000008B.html","clsDokument_status.bFolgestatus_durch_anderen_verantwortlichen Property",""]; \ No newline at end of file +search_result['167']=["topic_0000000000000089.html","clsDokument_status.sBezeichnung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_168.js b/Database/VSdoc/search--/s_168.js index cb4c86d3..9a2b3a4d 100644 --- a/Database/VSdoc/search--/s_168.js +++ b/Database/VSdoc/search--/s_168.js @@ -1 +1 @@ -search_result['168']=["topic_000000000000008C.html","clsDokument_status.bDokument_bearbeitung_moeglich Property",""]; \ No newline at end of file +search_result['168']=["topic_000000000000008A.html","clsDokument_status.sReihenfolge Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_169.js b/Database/VSdoc/search--/s_169.js index 364e93b5..1fd20c5f 100644 --- a/Database/VSdoc/search--/s_169.js +++ b/Database/VSdoc/search--/s_169.js @@ -1 +1 @@ -search_result['169']=["topic_000000000000008D.html","clsDokument_status.iErledigung_ab Property",""]; \ No newline at end of file +search_result['169']=["topic_000000000000008B.html","clsDokument_status.bFolgestatus_durch_anderen_verantwortlichen Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_17.js b/Database/VSdoc/search--/s_17.js index 575287b6..731975f0 100644 --- a/Database/VSdoc/search--/s_17.js +++ b/Database/VSdoc/search--/s_17.js @@ -1 +1 @@ -search_result['17']=["topic_000000000000000A.html","clsConnectionProvider.CloseConnection Method",""]; \ No newline at end of file +search_result['17']=["topic_0000000000000008.html","clsConnectionProvider.RollbackTransaction Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_170.js b/Database/VSdoc/search--/s_170.js index beb12d33..15302629 100644 --- a/Database/VSdoc/search--/s_170.js +++ b/Database/VSdoc/search--/s_170.js @@ -1 +1 @@ -search_result['170']=["topic_000000000000008E.html","clsDokument_status.bDokument_ausgangsarchivierung Property",""]; \ No newline at end of file +search_result['170']=["topic_000000000000008C.html","clsDokument_status.bDokument_bearbeitung_moeglich Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_171.js b/Database/VSdoc/search--/s_171.js index 701c2af9..57b7be64 100644 --- a/Database/VSdoc/search--/s_171.js +++ b/Database/VSdoc/search--/s_171.js @@ -1 +1 @@ -search_result['171']=["topic_000000000000008F.html","clsDokument_status.bDokument_bearbeitung_abgeschlossen Property",""]; \ No newline at end of file +search_result['171']=["topic_000000000000008D.html","clsDokument_status.iErledigung_ab Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_172.js b/Database/VSdoc/search--/s_172.js index 3b61b127..51083cca 100644 --- a/Database/VSdoc/search--/s_172.js +++ b/Database/VSdoc/search--/s_172.js @@ -1 +1 @@ -search_result['172']=["topic_0000000000000090.html","clsDokument_status.bAktiv Property",""]; \ No newline at end of file +search_result['172']=["topic_000000000000008E.html","clsDokument_status.bDokument_ausgangsarchivierung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_173.js b/Database/VSdoc/search--/s_173.js index e027bf4c..8aeb62b0 100644 --- a/Database/VSdoc/search--/s_173.js +++ b/Database/VSdoc/search--/s_173.js @@ -1 +1 @@ -search_result['173']=["topic_0000000000000091.html","clsDokument_status.daErstellt_am Property",""]; \ No newline at end of file +search_result['173']=["topic_000000000000008F.html","clsDokument_status.bDokument_bearbeitung_abgeschlossen Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_174.js b/Database/VSdoc/search--/s_174.js index 59527547..0d841998 100644 --- a/Database/VSdoc/search--/s_174.js +++ b/Database/VSdoc/search--/s_174.js @@ -1 +1 @@ -search_result['174']=["topic_0000000000000092.html","clsDokument_status.iMutierer Property",""]; \ No newline at end of file +search_result['174']=["topic_0000000000000090.html","clsDokument_status.bAktiv Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_175.js b/Database/VSdoc/search--/s_175.js index 0140809c..292e1732 100644 --- a/Database/VSdoc/search--/s_175.js +++ b/Database/VSdoc/search--/s_175.js @@ -1 +1 @@ -search_result['175']=["topic_0000000000000093.html","clsDokumentstatus Class",""]; \ No newline at end of file +search_result['175']=["topic_0000000000000091.html","clsDokument_status.daErstellt_am Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_176.js b/Database/VSdoc/search--/s_176.js index 887a951f..5ac3621b 100644 --- a/Database/VSdoc/search--/s_176.js +++ b/Database/VSdoc/search--/s_176.js @@ -1 +1 @@ -search_result['176']=["topic_0000000000000093_attached_props--.html","clsDokumentstatus Attached Properties",""]; \ No newline at end of file +search_result['176']=["topic_0000000000000092.html","clsDokument_status.iMutierer Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_177.js b/Database/VSdoc/search--/s_177.js index 12f02619..c9af9639 100644 --- a/Database/VSdoc/search--/s_177.js +++ b/Database/VSdoc/search--/s_177.js @@ -1 +1 @@ -search_result['177']=["topic_0000000000000093_events--.html","clsDokumentstatus Events",""]; \ No newline at end of file +search_result['177']=["topic_0000000000000093.html","clsDokumentstatus Class",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_178.js b/Database/VSdoc/search--/s_178.js index 8b80a203..0014c869 100644 --- a/Database/VSdoc/search--/s_178.js +++ b/Database/VSdoc/search--/s_178.js @@ -1 +1 @@ -search_result['178']=["topic_0000000000000093_methods--.html","clsDokumentstatus Methods",""]; \ No newline at end of file +search_result['178']=["topic_0000000000000093_attached_props--.html","clsDokumentstatus Attached Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_179.js b/Database/VSdoc/search--/s_179.js index f26757c5..c6e07d68 100644 --- a/Database/VSdoc/search--/s_179.js +++ b/Database/VSdoc/search--/s_179.js @@ -1 +1 @@ -search_result['179']=["topic_0000000000000093_props--.html","clsDokumentstatus Properties",""]; \ No newline at end of file +search_result['179']=["topic_0000000000000093_events--.html","clsDokumentstatus Events",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_18.js b/Database/VSdoc/search--/s_18.js index b34edf27..128bc7b1 100644 --- a/Database/VSdoc/search--/s_18.js +++ b/Database/VSdoc/search--/s_18.js @@ -1 +1 @@ -search_result['18']=["topic_000000000000000B.html","clsConnectionProvider.stCurrentTransaction Property",""]; \ No newline at end of file +search_result['18']=["topic_0000000000000009.html","clsConnectionProvider.SaveTransaction Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_180.js b/Database/VSdoc/search--/s_180.js index 064ffaf6..075a24de 100644 --- a/Database/VSdoc/search--/s_180.js +++ b/Database/VSdoc/search--/s_180.js @@ -1 +1 @@ -search_result['180']=["topic_0000000000000093_vars--.html","clsDokumentstatus Fields",""]; \ No newline at end of file +search_result['180']=["topic_0000000000000093_methods--.html","clsDokumentstatus Methods",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_181.js b/Database/VSdoc/search--/s_181.js index 9dc6fe4f..5729d9e9 100644 --- a/Database/VSdoc/search--/s_181.js +++ b/Database/VSdoc/search--/s_181.js @@ -1 +1 @@ -search_result['181']=["topic_0000000000000094.html","clsDokumentstatus Constructor",""]; \ No newline at end of file +search_result['181']=["topic_0000000000000093_props--.html","clsDokumentstatus Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_182.js b/Database/VSdoc/search--/s_182.js index 39956a74..dcd01b0b 100644 --- a/Database/VSdoc/search--/s_182.js +++ b/Database/VSdoc/search--/s_182.js @@ -1 +1 @@ -search_result['182']=["topic_0000000000000095.html","clsDokumentstatus.Insert Method",""]; \ No newline at end of file +search_result['182']=["topic_0000000000000093_vars--.html","clsDokumentstatus Fields",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_183.js b/Database/VSdoc/search--/s_183.js index df0c5292..f0e983ce 100644 --- a/Database/VSdoc/search--/s_183.js +++ b/Database/VSdoc/search--/s_183.js @@ -1 +1 @@ -search_result['183']=["topic_0000000000000096.html","clsDokumentstatus.Update Method",""]; \ No newline at end of file +search_result['183']=["topic_0000000000000094.html","clsDokumentstatus Constructor",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_184.js b/Database/VSdoc/search--/s_184.js index cb3e87ee..d3c850da 100644 --- a/Database/VSdoc/search--/s_184.js +++ b/Database/VSdoc/search--/s_184.js @@ -1 +1 @@ -search_result['184']=["topic_0000000000000097.html","clsDokumentstatus.Delete Method",""]; \ No newline at end of file +search_result['184']=["topic_0000000000000095.html","clsDokumentstatus.Insert Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_185.js b/Database/VSdoc/search--/s_185.js index 9488f8c0..c5a52c4a 100644 --- a/Database/VSdoc/search--/s_185.js +++ b/Database/VSdoc/search--/s_185.js @@ -1 +1 @@ -search_result['185']=["topic_0000000000000098.html","clsDokumentstatus.SelectOne Method",""]; \ No newline at end of file +search_result['185']=["topic_0000000000000096.html","clsDokumentstatus.Update Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_186.js b/Database/VSdoc/search--/s_186.js index 28451927..26b7ee9d 100644 --- a/Database/VSdoc/search--/s_186.js +++ b/Database/VSdoc/search--/s_186.js @@ -1 +1 @@ -search_result['186']=["topic_0000000000000099.html","clsDokumentstatus.SelectAll Method",""]; \ No newline at end of file +search_result['186']=["topic_0000000000000097.html","clsDokumentstatus.Delete Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_187.js b/Database/VSdoc/search--/s_187.js index 623630f5..d3d97465 100644 --- a/Database/VSdoc/search--/s_187.js +++ b/Database/VSdoc/search--/s_187.js @@ -1 +1 @@ -search_result['187']=["topic_000000000000009A.html","clsDokumentstatus.iDokumentstatusnr Property",""]; \ No newline at end of file +search_result['187']=["topic_0000000000000098.html","clsDokumentstatus.SelectOne Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_188.js b/Database/VSdoc/search--/s_188.js index b0fa10ca..b63a61d4 100644 --- a/Database/VSdoc/search--/s_188.js +++ b/Database/VSdoc/search--/s_188.js @@ -1 +1 @@ -search_result['188']=["topic_000000000000009B.html","clsDokumentstatus.iDokumenttypnr Property",""]; \ No newline at end of file +search_result['188']=["topic_0000000000000099.html","clsDokumentstatus.SelectAll Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_189.js b/Database/VSdoc/search--/s_189.js index 00f7ce20..1b46fe4b 100644 --- a/Database/VSdoc/search--/s_189.js +++ b/Database/VSdoc/search--/s_189.js @@ -1 +1 @@ -search_result['189']=["topic_000000000000009C.html","clsDokumentstatus.iStatustypnr Property",""]; \ No newline at end of file +search_result['189']=["topic_000000000000009A.html","clsDokumentstatus.iDokumentstatusnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_19.js b/Database/VSdoc/search--/s_19.js index aec01a3e..6c726318 100644 --- a/Database/VSdoc/search--/s_19.js +++ b/Database/VSdoc/search--/s_19.js @@ -1 +1 @@ -search_result['19']=["topic_000000000000000C.html","clsConnectionProvider.bIsTransactionPending Property",""]; \ No newline at end of file +search_result['19']=["topic_000000000000000A.html","clsConnectionProvider.CloseConnection Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_190.js b/Database/VSdoc/search--/s_190.js index df39fcd5..d6bbc20f 100644 --- a/Database/VSdoc/search--/s_190.js +++ b/Database/VSdoc/search--/s_190.js @@ -1 +1 @@ -search_result['190']=["topic_000000000000009D.html","clsDokumentstatus.iStatus_bezeichnungnr Property",""]; \ No newline at end of file +search_result['190']=["topic_000000000000009B.html","clsDokumentstatus.iDokumenttypnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_191.js b/Database/VSdoc/search--/s_191.js index 64c0cead..9baf8b63 100644 --- a/Database/VSdoc/search--/s_191.js +++ b/Database/VSdoc/search--/s_191.js @@ -1 +1 @@ -search_result['191']=["topic_000000000000009E.html","clsDokumentstatus.iReihenfolge Property",""]; \ No newline at end of file +search_result['191']=["topic_000000000000009C.html","clsDokumentstatus.iStatustypnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_192.js b/Database/VSdoc/search--/s_192.js index 33118f3c..a7947e5b 100644 --- a/Database/VSdoc/search--/s_192.js +++ b/Database/VSdoc/search--/s_192.js @@ -1 +1 @@ -search_result['192']=["topic_000000000000009F.html","clsDokumentstatus.bFolgestatus_durch_anderen_verantwortlichen Property",""]; \ No newline at end of file +search_result['192']=["topic_000000000000009D.html","clsDokumentstatus.iStatus_bezeichnungnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_193.js b/Database/VSdoc/search--/s_193.js index dd417f71..71843913 100644 --- a/Database/VSdoc/search--/s_193.js +++ b/Database/VSdoc/search--/s_193.js @@ -1 +1 @@ -search_result['193']=["topic_00000000000000A0.html","clsDokumentstatus.bDokumentbearbeitung_moeglich Property",""]; \ No newline at end of file +search_result['193']=["topic_000000000000009E.html","clsDokumentstatus.iReihenfolge Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_194.js b/Database/VSdoc/search--/s_194.js index 34091b2d..d8ab914c 100644 --- a/Database/VSdoc/search--/s_194.js +++ b/Database/VSdoc/search--/s_194.js @@ -1 +1 @@ -search_result['194']=["topic_00000000000000A1.html","clsDokumentstatus.iErledigung_ab Property",""]; \ No newline at end of file +search_result['194']=["topic_000000000000009F.html","clsDokumentstatus.bFolgestatus_durch_anderen_verantwortlichen Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_195.js b/Database/VSdoc/search--/s_195.js index 871eb011..c6eccd27 100644 --- a/Database/VSdoc/search--/s_195.js +++ b/Database/VSdoc/search--/s_195.js @@ -1 +1 @@ -search_result['195']=["topic_00000000000000A2.html","clsDokumentstatus.bDokument_ausgangsarchivieren Property",""]; \ No newline at end of file +search_result['195']=["topic_00000000000000A0.html","clsDokumentstatus.bDokumentbearbeitung_moeglich Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_196.js b/Database/VSdoc/search--/s_196.js index 2560d4f0..f196f5c8 100644 --- a/Database/VSdoc/search--/s_196.js +++ b/Database/VSdoc/search--/s_196.js @@ -1 +1 @@ -search_result['196']=["topic_00000000000000A3.html","clsDokumentstatus.bDokument_bearbeitung_abgeschlossen Property",""]; \ No newline at end of file +search_result['196']=["topic_00000000000000A1.html","clsDokumentstatus.iErledigung_ab Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_197.js b/Database/VSdoc/search--/s_197.js index 27f69be4..e3dea3f8 100644 --- a/Database/VSdoc/search--/s_197.js +++ b/Database/VSdoc/search--/s_197.js @@ -1 +1 @@ -search_result['197']=["topic_00000000000000A4.html","clsDokumentstatus.iMandantnr Property",""]; \ No newline at end of file +search_result['197']=["topic_00000000000000A2.html","clsDokumentstatus.bDokument_ausgangsarchivieren Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_198.js b/Database/VSdoc/search--/s_198.js index 01130b21..9ff3c1a7 100644 --- a/Database/VSdoc/search--/s_198.js +++ b/Database/VSdoc/search--/s_198.js @@ -1 +1 @@ -search_result['198']=["topic_00000000000000A5.html","clsDokumentstatus.bAktiv Property",""]; \ No newline at end of file +search_result['198']=["topic_00000000000000A3.html","clsDokumentstatus.bDokument_bearbeitung_abgeschlossen Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_199.js b/Database/VSdoc/search--/s_199.js index e4806c5b..55815dba 100644 --- a/Database/VSdoc/search--/s_199.js +++ b/Database/VSdoc/search--/s_199.js @@ -1 +1 @@ -search_result['199']=["topic_00000000000000A6.html","clsDokumentstatus.daErstellt_am Property",""]; \ No newline at end of file +search_result['199']=["topic_00000000000000A4.html","clsDokumentstatus.iMandantnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_2.js b/Database/VSdoc/search--/s_2.js index d320209e..f2b5e499 100644 --- a/Database/VSdoc/search--/s_2.js +++ b/Database/VSdoc/search--/s_2.js @@ -1 +1 @@ -search_result['2']=["topic_0000000000000001_attached_props--.html","clsConnectionProvider Attached Properties",""]; \ No newline at end of file +search_result['2']=["topic_0000000000000000.html","edoka_dms Namespace",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_20.js b/Database/VSdoc/search--/s_20.js index d5a9fb3d..e17de2ce 100644 --- a/Database/VSdoc/search--/s_20.js +++ b/Database/VSdoc/search--/s_20.js @@ -1 +1 @@ -search_result['20']=["topic_000000000000000D.html","clsConnectionProvider.scoDBConnection Property",""]; \ No newline at end of file +search_result['20']=["topic_000000000000000B.html","clsConnectionProvider.stCurrentTransaction Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_200.js b/Database/VSdoc/search--/s_200.js index 1eaea6c7..f9d4097e 100644 --- a/Database/VSdoc/search--/s_200.js +++ b/Database/VSdoc/search--/s_200.js @@ -1 +1 @@ -search_result['200']=["topic_00000000000000A7.html","clsDokumentstatus.daMutiert_am Property",""]; \ No newline at end of file +search_result['200']=["topic_00000000000000A5.html","clsDokumentstatus.bAktiv Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_201.js b/Database/VSdoc/search--/s_201.js index e2a61212..c6c2674e 100644 --- a/Database/VSdoc/search--/s_201.js +++ b/Database/VSdoc/search--/s_201.js @@ -1 +1 @@ -search_result['201']=["topic_00000000000000A8.html","clsDokumentstatus.iMutierer Property",""]; \ No newline at end of file +search_result['201']=["topic_00000000000000A6.html","clsDokumentstatus.daErstellt_am Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_202.js b/Database/VSdoc/search--/s_202.js index 55ecfe6e..a9d7d172 100644 --- a/Database/VSdoc/search--/s_202.js +++ b/Database/VSdoc/search--/s_202.js @@ -1 +1 @@ -search_result['202']=["topic_00000000000000A9.html","clsDokumentstatus.iStatustyp Property",""]; \ No newline at end of file +search_result['202']=["topic_00000000000000A7.html","clsDokumentstatus.daMutiert_am Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_203.js b/Database/VSdoc/search--/s_203.js index 1f31a623..53f49b41 100644 --- a/Database/VSdoc/search--/s_203.js +++ b/Database/VSdoc/search--/s_203.js @@ -1 +1 @@ -search_result['203']=["topic_00000000000000AA.html","clsDokumenttyp Class",""]; \ No newline at end of file +search_result['203']=["topic_00000000000000A8.html","clsDokumentstatus.iMutierer Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_204.js b/Database/VSdoc/search--/s_204.js index 857b7e51..1344fc4c 100644 --- a/Database/VSdoc/search--/s_204.js +++ b/Database/VSdoc/search--/s_204.js @@ -1 +1 @@ -search_result['204']=["topic_00000000000000AA_attached_props--.html","clsDokumenttyp Attached Properties",""]; \ No newline at end of file +search_result['204']=["topic_00000000000000A9.html","clsDokumentstatus.iStatustyp Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_205.js b/Database/VSdoc/search--/s_205.js index 11bd36a0..2a003897 100644 --- a/Database/VSdoc/search--/s_205.js +++ b/Database/VSdoc/search--/s_205.js @@ -1 +1 @@ -search_result['205']=["topic_00000000000000AA_events--.html","clsDokumenttyp Events",""]; \ No newline at end of file +search_result['205']=["topic_00000000000000AA.html","clsDokumenttyp Class",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_206.js b/Database/VSdoc/search--/s_206.js index 34bfab95..a6fbde2f 100644 --- a/Database/VSdoc/search--/s_206.js +++ b/Database/VSdoc/search--/s_206.js @@ -1 +1 @@ -search_result['206']=["topic_00000000000000AA_methods--.html","clsDokumenttyp Methods",""]; \ No newline at end of file +search_result['206']=["topic_00000000000000AA_attached_props--.html","clsDokumenttyp Attached Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_207.js b/Database/VSdoc/search--/s_207.js index 27e86a98..53d6f1c0 100644 --- a/Database/VSdoc/search--/s_207.js +++ b/Database/VSdoc/search--/s_207.js @@ -1 +1 @@ -search_result['207']=["topic_00000000000000AA_props--.html","clsDokumenttyp Properties",""]; \ No newline at end of file +search_result['207']=["topic_00000000000000AA_events--.html","clsDokumenttyp Events",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_208.js b/Database/VSdoc/search--/s_208.js index 18caa613..0e6d9f75 100644 --- a/Database/VSdoc/search--/s_208.js +++ b/Database/VSdoc/search--/s_208.js @@ -1 +1 @@ -search_result['208']=["topic_00000000000000AA_vars--.html","clsDokumenttyp Fields",""]; \ No newline at end of file +search_result['208']=["topic_00000000000000AA_methods--.html","clsDokumenttyp Methods",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_209.js b/Database/VSdoc/search--/s_209.js index 7f3d16f5..ec2a85d4 100644 --- a/Database/VSdoc/search--/s_209.js +++ b/Database/VSdoc/search--/s_209.js @@ -1 +1 @@ -search_result['209']=["topic_00000000000000AB.html","clsDokumenttyp Constructor",""]; \ No newline at end of file +search_result['209']=["topic_00000000000000AA_props--.html","clsDokumenttyp Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_21.js b/Database/VSdoc/search--/s_21.js index 810cda5a..a55f94cc 100644 --- a/Database/VSdoc/search--/s_21.js +++ b/Database/VSdoc/search--/s_21.js @@ -1 +1 @@ -search_result['21']=["topic_000000000000000E.html","clsConnectionProvider.sConnectionString Property",""]; \ No newline at end of file +search_result['21']=["topic_000000000000000C.html","clsConnectionProvider.bIsTransactionPending Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_210.js b/Database/VSdoc/search--/s_210.js index 3dcd06ac..d93eb68b 100644 --- a/Database/VSdoc/search--/s_210.js +++ b/Database/VSdoc/search--/s_210.js @@ -1 +1 @@ -search_result['210']=["topic_00000000000000AC.html","clsDokumenttyp.Insert Method",""]; \ No newline at end of file +search_result['210']=["topic_00000000000000AA_vars--.html","clsDokumenttyp Fields",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_211.js b/Database/VSdoc/search--/s_211.js index cb00edc5..63434b5c 100644 --- a/Database/VSdoc/search--/s_211.js +++ b/Database/VSdoc/search--/s_211.js @@ -1 +1 @@ -search_result['211']=["topic_00000000000000AD.html","clsDokumenttyp.Update Method",""]; \ No newline at end of file +search_result['211']=["topic_00000000000000AB.html","clsDokumenttyp Constructor",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_212.js b/Database/VSdoc/search--/s_212.js index 9e82cb9c..ea40e393 100644 --- a/Database/VSdoc/search--/s_212.js +++ b/Database/VSdoc/search--/s_212.js @@ -1 +1 @@ -search_result['212']=["topic_00000000000000AE.html","clsDokumenttyp.Delete Method",""]; \ No newline at end of file +search_result['212']=["topic_00000000000000AC.html","clsDokumenttyp.Insert Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_213.js b/Database/VSdoc/search--/s_213.js index 3624cabc..e680efa2 100644 --- a/Database/VSdoc/search--/s_213.js +++ b/Database/VSdoc/search--/s_213.js @@ -1 +1 @@ -search_result['213']=["topic_00000000000000AF.html","clsDokumenttyp.SelectOne Method",""]; \ No newline at end of file +search_result['213']=["topic_00000000000000AD.html","clsDokumenttyp.Update Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_214.js b/Database/VSdoc/search--/s_214.js index 7c9a918b..6f2e5e05 100644 --- a/Database/VSdoc/search--/s_214.js +++ b/Database/VSdoc/search--/s_214.js @@ -1 +1 @@ -search_result['214']=["topic_00000000000000B0.html","clsDokumenttyp.SelectAll Method",""]; \ No newline at end of file +search_result['214']=["topic_00000000000000AE.html","clsDokumenttyp.Delete Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_215.js b/Database/VSdoc/search--/s_215.js index 7cea70c2..8ad3821a 100644 --- a/Database/VSdoc/search--/s_215.js +++ b/Database/VSdoc/search--/s_215.js @@ -1 +1 @@ -search_result['215']=["topic_00000000000000B1.html","clsDokumenttyp.iDokumenttypnr Property",""]; \ No newline at end of file +search_result['215']=["topic_00000000000000AF.html","clsDokumenttyp.SelectOne Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_216.js b/Database/VSdoc/search--/s_216.js index e4d4c04e..ab432c26 100644 --- a/Database/VSdoc/search--/s_216.js +++ b/Database/VSdoc/search--/s_216.js @@ -1 +1 @@ -search_result['216']=["topic_00000000000000B2.html","clsDokumenttyp.sBezeichnung Property",""]; \ No newline at end of file +search_result['216']=["topic_00000000000000B0.html","clsDokumenttyp.SelectAll Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_217.js b/Database/VSdoc/search--/s_217.js index 70d83309..faba331a 100644 --- a/Database/VSdoc/search--/s_217.js +++ b/Database/VSdoc/search--/s_217.js @@ -1 +1 @@ -search_result['217']=["topic_00000000000000B3.html","clsDokumenttyp.sBeschreibung Property",""]; \ No newline at end of file +search_result['217']=["topic_00000000000000B1.html","clsDokumenttyp.iDokumenttypnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_218.js b/Database/VSdoc/search--/s_218.js index 830654e6..049a8668 100644 --- a/Database/VSdoc/search--/s_218.js +++ b/Database/VSdoc/search--/s_218.js @@ -1 +1 @@ -search_result['218']=["topic_00000000000000B4.html","clsDokumenttyp.bZu_vercolden Property",""]; \ No newline at end of file +search_result['218']=["topic_00000000000000B2.html","clsDokumenttyp.sBezeichnung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_219.js b/Database/VSdoc/search--/s_219.js index 278668c2..ee00fe82 100644 --- a/Database/VSdoc/search--/s_219.js +++ b/Database/VSdoc/search--/s_219.js @@ -1 +1 @@ -search_result['219']=["topic_00000000000000B5.html","clsDokumenttyp.bZu_retournieren Property",""]; \ No newline at end of file +search_result['219']=["topic_00000000000000B3.html","clsDokumenttyp.sBeschreibung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_22.js b/Database/VSdoc/search--/s_22.js index f4dbc35a..c28c9a9f 100644 --- a/Database/VSdoc/search--/s_22.js +++ b/Database/VSdoc/search--/s_22.js @@ -1 +1 @@ -search_result['22']=["topic_000000000000000F.html","LLBLError Enumeration",""]; \ No newline at end of file +search_result['22']=["topic_000000000000000D.html","clsConnectionProvider.scoDBConnection Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_220.js b/Database/VSdoc/search--/s_220.js index f27774cd..21a76b44 100644 --- a/Database/VSdoc/search--/s_220.js +++ b/Database/VSdoc/search--/s_220.js @@ -1 +1 @@ -search_result['220']=["topic_00000000000000B6.html","clsDokumenttyp.bEingang_ersetzt_ausgang Property",""]; \ No newline at end of file +search_result['220']=["topic_00000000000000B4.html","clsDokumenttyp.bZu_vercolden Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_221.js b/Database/VSdoc/search--/s_221.js index 8c9db6fc..672fa6c1 100644 --- a/Database/VSdoc/search--/s_221.js +++ b/Database/VSdoc/search--/s_221.js @@ -1 +1 @@ -search_result['221']=["topic_00000000000000B7.html","clsDokumenttyp.bWird_importiert Property",""]; \ No newline at end of file +search_result['221']=["topic_00000000000000B5.html","clsDokumenttyp.bZu_retournieren Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_222.js b/Database/VSdoc/search--/s_222.js index aeb735b6..66179c73 100644 --- a/Database/VSdoc/search--/s_222.js +++ b/Database/VSdoc/search--/s_222.js @@ -1 +1 @@ -search_result['222']=["topic_00000000000000B8.html","clsDokumenttyp.iAnzahl_tage Property",""]; \ No newline at end of file +search_result['222']=["topic_00000000000000B6.html","clsDokumenttyp.bEingang_ersetzt_ausgang Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_223.js b/Database/VSdoc/search--/s_223.js index b459af10..cb8cfb8e 100644 --- a/Database/VSdoc/search--/s_223.js +++ b/Database/VSdoc/search--/s_223.js @@ -1 +1 @@ -search_result['223']=["topic_00000000000000B9.html","clsDokumenttyp.iDbearbeitungszeit Property",""]; \ No newline at end of file +search_result['223']=["topic_00000000000000B7.html","clsDokumenttyp.bWird_importiert Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_224.js b/Database/VSdoc/search--/s_224.js index 0b3cff53..2088953c 100644 --- a/Database/VSdoc/search--/s_224.js +++ b/Database/VSdoc/search--/s_224.js @@ -1 +1 @@ -search_result['224']=["topic_00000000000000BA.html","clsDokumenttyp.iTage_mutation Property",""]; \ No newline at end of file +search_result['224']=["topic_00000000000000B8.html","clsDokumenttyp.iAnzahl_tage Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_225.js b/Database/VSdoc/search--/s_225.js index 3faa4373..4fb45ae4 100644 --- a/Database/VSdoc/search--/s_225.js +++ b/Database/VSdoc/search--/s_225.js @@ -1 +1 @@ -search_result['225']=["topic_00000000000000BB.html","clsDokumenttyp.bPartnersaldierung_statusalt Property",""]; \ No newline at end of file +search_result['225']=["topic_00000000000000B9.html","clsDokumenttyp.iDbearbeitungszeit Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_226.js b/Database/VSdoc/search--/s_226.js index e80f3db1..7777593b 100644 --- a/Database/VSdoc/search--/s_226.js +++ b/Database/VSdoc/search--/s_226.js @@ -1 +1 @@ -search_result['226']=["topic_00000000000000BC.html","clsDokumenttyp.bWird_nicht_geloescht Property",""]; \ No newline at end of file +search_result['226']=["topic_00000000000000BA.html","clsDokumenttyp.iTage_mutation Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_227.js b/Database/VSdoc/search--/s_227.js index b339ff1d..894092ce 100644 --- a/Database/VSdoc/search--/s_227.js +++ b/Database/VSdoc/search--/s_227.js @@ -1 +1 @@ -search_result['227']=["topic_00000000000000BD.html","clsDokumenttyp.bVertrauliches_dokument Property",""]; \ No newline at end of file +search_result['227']=["topic_00000000000000BB.html","clsDokumenttyp.bPartnersaldierung_statusalt Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_228.js b/Database/VSdoc/search--/s_228.js index 4075bf64..061dd6bd 100644 --- a/Database/VSdoc/search--/s_228.js +++ b/Database/VSdoc/search--/s_228.js @@ -1 +1 @@ -search_result['228']=["topic_00000000000000BE.html","clsDokumenttyp.bUnterschrift_links Property",""]; \ No newline at end of file +search_result['228']=["topic_00000000000000BC.html","clsDokumenttyp.bWird_nicht_geloescht Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_229.js b/Database/VSdoc/search--/s_229.js index 7c174083..2fddefd1 100644 --- a/Database/VSdoc/search--/s_229.js +++ b/Database/VSdoc/search--/s_229.js @@ -1 +1 @@ -search_result['229']=["topic_00000000000000BF.html","clsDokumenttyp.bUnterschrift_rechts Property",""]; \ No newline at end of file +search_result['229']=["topic_00000000000000BD.html","clsDokumenttyp.bVertrauliches_dokument Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_23.js b/Database/VSdoc/search--/s_23.js index 2177812b..bb85d70a 100644 --- a/Database/VSdoc/search--/s_23.js +++ b/Database/VSdoc/search--/s_23.js @@ -1 +1 @@ -search_result['23']=["topic_0000000000000011.html","ICommonDBAccess Interface",""]; \ No newline at end of file +search_result['23']=["topic_000000000000000E.html","clsConnectionProvider.sConnectionString Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_230.js b/Database/VSdoc/search--/s_230.js index 12256df4..d34456a8 100644 --- a/Database/VSdoc/search--/s_230.js +++ b/Database/VSdoc/search--/s_230.js @@ -1 +1 @@ -search_result['230']=["topic_00000000000000C0.html","clsDokumenttyp.iMonate_bis_zur_archivierung Property",""]; \ No newline at end of file +search_result['230']=["topic_00000000000000BE.html","clsDokumenttyp.bUnterschrift_links Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_231.js b/Database/VSdoc/search--/s_231.js index 8c9a0b30..294fb5c2 100644 --- a/Database/VSdoc/search--/s_231.js +++ b/Database/VSdoc/search--/s_231.js @@ -1 +1 @@ -search_result['231']=["topic_00000000000000C1.html","clsDokumenttyp.iAufbewahrungsfrist_elektronisch Property",""]; \ No newline at end of file +search_result['231']=["topic_00000000000000BF.html","clsDokumenttyp.bUnterschrift_rechts Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_232.js b/Database/VSdoc/search--/s_232.js index 167deefe..0844fb9e 100644 --- a/Database/VSdoc/search--/s_232.js +++ b/Database/VSdoc/search--/s_232.js @@ -1 +1 @@ -search_result['232']=["topic_00000000000000C2.html","clsDokumenttyp.iAufbewahrungsfrist_physisch Property",""]; \ No newline at end of file +search_result['232']=["topic_00000000000000C0.html","clsDokumenttyp.iMonate_bis_zur_archivierung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_233.js b/Database/VSdoc/search--/s_233.js index b879efe2..8f01c777 100644 --- a/Database/VSdoc/search--/s_233.js +++ b/Database/VSdoc/search--/s_233.js @@ -1 +1 @@ -search_result['233']=["topic_00000000000000C3.html","clsDokumenttyp.iMandantnr Property",""]; \ No newline at end of file +search_result['233']=["topic_00000000000000C1.html","clsDokumenttyp.iAufbewahrungsfrist_elektronisch Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_234.js b/Database/VSdoc/search--/s_234.js index 0ed21848..178e10ad 100644 --- a/Database/VSdoc/search--/s_234.js +++ b/Database/VSdoc/search--/s_234.js @@ -1 +1 @@ -search_result['234']=["topic_00000000000000C4.html","clsDokumenttyp.bAktiv Property",""]; \ No newline at end of file +search_result['234']=["topic_00000000000000C2.html","clsDokumenttyp.iAufbewahrungsfrist_physisch Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_235.js b/Database/VSdoc/search--/s_235.js index 077d446f..f5b1abe8 100644 --- a/Database/VSdoc/search--/s_235.js +++ b/Database/VSdoc/search--/s_235.js @@ -1 +1 @@ -search_result['235']=["topic_00000000000000C5.html","clsDokumenttyp.daErstellt_am Property",""]; \ No newline at end of file +search_result['235']=["topic_00000000000000C3.html","clsDokumenttyp.iMandantnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_236.js b/Database/VSdoc/search--/s_236.js index 9336dcae..76709d0b 100644 --- a/Database/VSdoc/search--/s_236.js +++ b/Database/VSdoc/search--/s_236.js @@ -1 +1 @@ -search_result['236']=["topic_00000000000000C6.html","clsDokumenttyp.daMutiert_am Property",""]; \ No newline at end of file +search_result['236']=["topic_00000000000000C4.html","clsDokumenttyp.bAktiv Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_237.js b/Database/VSdoc/search--/s_237.js index a9a504bd..fb8126fb 100644 --- a/Database/VSdoc/search--/s_237.js +++ b/Database/VSdoc/search--/s_237.js @@ -1 +1 @@ -search_result['237']=["topic_00000000000000C7.html","clsDokumenttyp.iMutierer Property",""]; \ No newline at end of file +search_result['237']=["topic_00000000000000C5.html","clsDokumenttyp.daErstellt_am Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_238.js b/Database/VSdoc/search--/s_238.js index 57640346..5d593ddb 100644 --- a/Database/VSdoc/search--/s_238.js +++ b/Database/VSdoc/search--/s_238.js @@ -1 +1 @@ -search_result['238']=["topic_00000000000000C8.html","clsDokumenttyp.iOffice_vorlagenr Property",""]; \ No newline at end of file +search_result['238']=["topic_00000000000000C6.html","clsDokumenttyp.daMutiert_am Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_239.js b/Database/VSdoc/search--/s_239.js index 6b59052d..509ecf89 100644 --- a/Database/VSdoc/search--/s_239.js +++ b/Database/VSdoc/search--/s_239.js @@ -1 +1 @@ -search_result['239']=["topic_00000000000000C9.html","clsDokumenttyp.iDokumentart_kundendossier Property",""]; \ No newline at end of file +search_result['239']=["topic_00000000000000C7.html","clsDokumenttyp.iMutierer Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_24.js b/Database/VSdoc/search--/s_24.js index 4c73d240..405ae9f3 100644 --- a/Database/VSdoc/search--/s_24.js +++ b/Database/VSdoc/search--/s_24.js @@ -1 +1 @@ -search_result['24']=["topic_0000000000000011_attached_props--.html","ICommonDBAccess Attached Properties",""]; \ No newline at end of file +search_result['24']=["topic_000000000000000F.html","LLBLError Enumeration",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_240.js b/Database/VSdoc/search--/s_240.js index ed1b38ff..3023f275 100644 --- a/Database/VSdoc/search--/s_240.js +++ b/Database/VSdoc/search--/s_240.js @@ -1 +1 @@ -search_result['240']=["topic_00000000000000CA.html","clsDokumenttyp.iDokumentart_neuerstellung Property",""]; \ No newline at end of file +search_result['240']=["topic_00000000000000C8.html","clsDokumenttyp.iOffice_vorlagenr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_241.js b/Database/VSdoc/search--/s_241.js index 29ddf17a..248bae55 100644 --- a/Database/VSdoc/search--/s_241.js +++ b/Database/VSdoc/search--/s_241.js @@ -1 +1 @@ -search_result['241']=["topic_00000000000000CB.html","clsDokumenttyp.iDokumentart_retournierung Property",""]; \ No newline at end of file +search_result['241']=["topic_00000000000000C9.html","clsDokumenttyp.iDokumentart_kundendossier Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_242.js b/Database/VSdoc/search--/s_242.js index 2f3e4137..a6904111 100644 --- a/Database/VSdoc/search--/s_242.js +++ b/Database/VSdoc/search--/s_242.js @@ -1 +1 @@ -search_result['242']=["topic_00000000000000CC.html","clsDokumenttyp.iDokumentart_coldausgang Property",""]; \ No newline at end of file +search_result['242']=["topic_00000000000000CA.html","clsDokumenttyp.iDokumentart_neuerstellung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_243.js b/Database/VSdoc/search--/s_243.js index 9115f9e3..ec19f44a 100644 --- a/Database/VSdoc/search--/s_243.js +++ b/Database/VSdoc/search--/s_243.js @@ -1 +1 @@ -search_result['243']=["topic_00000000000000CD.html","clsDokumenttyp.iDokumentart_coldeingang Property",""]; \ No newline at end of file +search_result['243']=["topic_00000000000000CB.html","clsDokumenttyp.iDokumentart_retournierung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_244.js b/Database/VSdoc/search--/s_244.js index aa340737..5674dc8c 100644 --- a/Database/VSdoc/search--/s_244.js +++ b/Database/VSdoc/search--/s_244.js @@ -1 +1 @@ -search_result['244']=["topic_00000000000000CE.html","clsDokumenttyp.iDokumentart_host Property",""]; \ No newline at end of file +search_result['244']=["topic_00000000000000CC.html","clsDokumenttyp.iDokumentart_coldausgang Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_245.js b/Database/VSdoc/search--/s_245.js index ce9f9bdd..c42cb904 100644 --- a/Database/VSdoc/search--/s_245.js +++ b/Database/VSdoc/search--/s_245.js @@ -1 +1 @@ -search_result['245']=["topic_00000000000000CF.html","clsDokumenttyp.iDokumentart_weitere Property",""]; \ No newline at end of file +search_result['245']=["topic_00000000000000CD.html","clsDokumenttyp.iDokumentart_coldeingang Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_246.js b/Database/VSdoc/search--/s_246.js index 3189b1e8..ff0a77df 100644 --- a/Database/VSdoc/search--/s_246.js +++ b/Database/VSdoc/search--/s_246.js @@ -1 +1 @@ -search_result['246']=["topic_00000000000000D0.html","clsDokumenttyp.iDokumentart_nativ Property",""]; \ No newline at end of file +search_result['246']=["topic_00000000000000CE.html","clsDokumenttyp.iDokumentart_host Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_247.js b/Database/VSdoc/search--/s_247.js index dbcb587c..9f452095 100644 --- a/Database/VSdoc/search--/s_247.js +++ b/Database/VSdoc/search--/s_247.js @@ -1 +1 @@ -search_result['247']=["topic_00000000000000D1.html","clsDokumenttyp.iProzessnr Property",""]; \ No newline at end of file +search_result['247']=["topic_00000000000000CF.html","clsDokumenttyp.iDokumentart_weitere Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_248.js b/Database/VSdoc/search--/s_248.js index 0ea7db82..dd4d65d6 100644 --- a/Database/VSdoc/search--/s_248.js +++ b/Database/VSdoc/search--/s_248.js @@ -1 +1 @@ -search_result['248']=["topic_00000000000000D2.html","clsDokumenttyp.iProzessnr1 Property",""]; \ No newline at end of file +search_result['248']=["topic_00000000000000D0.html","clsDokumenttyp.iDokumentart_nativ Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_249.js b/Database/VSdoc/search--/s_249.js index fa7935f5..3b3d9dc4 100644 --- a/Database/VSdoc/search--/s_249.js +++ b/Database/VSdoc/search--/s_249.js @@ -1 +1 @@ -search_result['249']=["topic_00000000000000D3.html","clsDokumenttyp.bAmsdokument Property",""]; \ No newline at end of file +search_result['249']=["topic_00000000000000D1.html","clsDokumenttyp.iProzessnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_25.js b/Database/VSdoc/search--/s_25.js index d59206c0..76257625 100644 --- a/Database/VSdoc/search--/s_25.js +++ b/Database/VSdoc/search--/s_25.js @@ -1 +1 @@ -search_result['25']=["topic_0000000000000011_events--.html","ICommonDBAccess Events",""]; \ No newline at end of file +search_result['25']=["topic_0000000000000011.html","ICommonDBAccess Interface",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_250.js b/Database/VSdoc/search--/s_250.js index 51ec2838..a5fdbfd3 100644 --- a/Database/VSdoc/search--/s_250.js +++ b/Database/VSdoc/search--/s_250.js @@ -1 +1 @@ -search_result['250']=["topic_00000000000000D4.html","clsDokumenttyp.bHostdokument Property",""]; \ No newline at end of file +search_result['250']=["topic_00000000000000D2.html","clsDokumenttyp.iProzessnr1 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_251.js b/Database/VSdoc/search--/s_251.js index 80c9d597..859b5e5d 100644 --- a/Database/VSdoc/search--/s_251.js +++ b/Database/VSdoc/search--/s_251.js @@ -1 +1 @@ -search_result['251']=["topic_00000000000000D5.html","clsDokumenttyp.sHostdokumenttyp Property",""]; \ No newline at end of file +search_result['251']=["topic_00000000000000D3.html","clsDokumenttyp.bAmsdokument Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_252.js b/Database/VSdoc/search--/s_252.js index ef5c9d81..2641411c 100644 --- a/Database/VSdoc/search--/s_252.js +++ b/Database/VSdoc/search--/s_252.js @@ -1 +1 @@ -search_result['252']=["topic_00000000000000D6.html","clsDokumenttyp.iCold_folder Property",""]; \ No newline at end of file +search_result['252']=["topic_00000000000000D4.html","clsDokumenttyp.bHostdokument Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_253.js b/Database/VSdoc/search--/s_253.js index 4a21999b..262fa2a3 100644 --- a/Database/VSdoc/search--/s_253.js +++ b/Database/VSdoc/search--/s_253.js @@ -1 +1 @@ -search_result['253']=["topic_00000000000000D7.html","clsDokumenttyp.iPhysisches_archiv Property",""]; \ No newline at end of file +search_result['253']=["topic_00000000000000D5.html","clsDokumenttyp.sHostdokumenttyp Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_254.js b/Database/VSdoc/search--/s_254.js index a7525091..16cdad25 100644 --- a/Database/VSdoc/search--/s_254.js +++ b/Database/VSdoc/search--/s_254.js @@ -1 +1 @@ -search_result['254']=["topic_00000000000000D8.html","clsDokumenttyp.iDokumentstatus Property",""]; \ No newline at end of file +search_result['254']=["topic_00000000000000D6.html","clsDokumenttyp.iCold_folder Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_255.js b/Database/VSdoc/search--/s_255.js index e3f52397..2bf4d79b 100644 --- a/Database/VSdoc/search--/s_255.js +++ b/Database/VSdoc/search--/s_255.js @@ -1 +1 @@ -search_result['255']=["topic_00000000000000D9.html","clsDokumenttyp.bDokument_wird_erstellt Property",""]; \ No newline at end of file +search_result['255']=["topic_00000000000000D7.html","clsDokumenttyp.iPhysisches_archiv Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_256.js b/Database/VSdoc/search--/s_256.js index db24d925..d63ca0c4 100644 --- a/Database/VSdoc/search--/s_256.js +++ b/Database/VSdoc/search--/s_256.js @@ -1 +1 @@ -search_result['256']=["topic_00000000000000DA.html","clsDokumenttyp.bDokument_wird_retourniert Property",""]; \ No newline at end of file +search_result['256']=["topic_00000000000000D8.html","clsDokumenttyp.iDokumentstatus Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_257.js b/Database/VSdoc/search--/s_257.js index 96f3aa5c..e7aa4984 100644 --- a/Database/VSdoc/search--/s_257.js +++ b/Database/VSdoc/search--/s_257.js @@ -1 +1 @@ -search_result['257']=["topic_00000000000000DB.html","clsDokumenttyp.bCold_ersetzen Property",""]; \ No newline at end of file +search_result['257']=["topic_00000000000000D9.html","clsDokumenttyp.bDokument_wird_erstellt Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_258.js b/Database/VSdoc/search--/s_258.js index 72250186..9dd26111 100644 --- a/Database/VSdoc/search--/s_258.js +++ b/Database/VSdoc/search--/s_258.js @@ -1 +1 @@ -search_result['258']=["topic_00000000000000DC.html","clsDokumenttyp.bEmail_versand Property",""]; \ No newline at end of file +search_result['258']=["topic_00000000000000DA.html","clsDokumenttyp.bDokument_wird_retourniert Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_259.js b/Database/VSdoc/search--/s_259.js index 8dfcda88..3f22cbe4 100644 --- a/Database/VSdoc/search--/s_259.js +++ b/Database/VSdoc/search--/s_259.js @@ -1 +1 @@ -search_result['259']=["topic_00000000000000DD.html","clsDokumenttyp.bFunktionen_zuweisen Property",""]; \ No newline at end of file +search_result['259']=["topic_00000000000000DB.html","clsDokumenttyp.bCold_ersetzen Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_26.js b/Database/VSdoc/search--/s_26.js index 582cab89..6f988502 100644 --- a/Database/VSdoc/search--/s_26.js +++ b/Database/VSdoc/search--/s_26.js @@ -1 +1 @@ -search_result['26']=["topic_0000000000000011_methods--.html","ICommonDBAccess Methods",""]; \ No newline at end of file +search_result['26']=["topic_0000000000000011_attached_props--.html","ICommonDBAccess Attached Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_260.js b/Database/VSdoc/search--/s_260.js index 1a27a9a5..97359e5e 100644 --- a/Database/VSdoc/search--/s_260.js +++ b/Database/VSdoc/search--/s_260.js @@ -1 +1 @@ -search_result['260']=["topic_00000000000000DE.html","clsDokumenttyp.iDokumentstatus_barcode Property",""]; \ No newline at end of file +search_result['260']=["topic_00000000000000DC.html","clsDokumenttyp.bEmail_versand Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_261.js b/Database/VSdoc/search--/s_261.js index fd721761..16c7018d 100644 --- a/Database/VSdoc/search--/s_261.js +++ b/Database/VSdoc/search--/s_261.js @@ -1 +1 @@ -search_result['261']=["topic_00000000000000DF.html","clsDokumenttyp.bNurnative Property",""]; \ No newline at end of file +search_result['261']=["topic_00000000000000DD.html","clsDokumenttyp.bFunktionen_zuweisen Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_262.js b/Database/VSdoc/search--/s_262.js index a032f90a..80a82215 100644 --- a/Database/VSdoc/search--/s_262.js +++ b/Database/VSdoc/search--/s_262.js @@ -1 +1 @@ -search_result['262']=["topic_00000000000000E0.html","clsDokumenttyp.iOwner Property",""]; \ No newline at end of file +search_result['262']=["topic_00000000000000DE.html","clsDokumenttyp.iDokumentstatus_barcode Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_263.js b/Database/VSdoc/search--/s_263.js index d3080994..d514f13e 100644 --- a/Database/VSdoc/search--/s_263.js +++ b/Database/VSdoc/search--/s_263.js @@ -1 +1 @@ -search_result['263']=["topic_00000000000000E1.html","clsDokumenttyp.bVertrag Property",""]; \ No newline at end of file +search_result['263']=["topic_00000000000000DF.html","clsDokumenttyp.bNurnative Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_264.js b/Database/VSdoc/search--/s_264.js index 0b1097b7..c9f4884a 100644 --- a/Database/VSdoc/search--/s_264.js +++ b/Database/VSdoc/search--/s_264.js @@ -1 +1 @@ -search_result['264']=["topic_00000000000000E2.html","clsDokumenttyp.iObjektbezeichnungnr Property",""]; \ No newline at end of file +search_result['264']=["topic_00000000000000E0.html","clsDokumenttyp.iOwner Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_265.js b/Database/VSdoc/search--/s_265.js index ded2d045..d3d3b826 100644 --- a/Database/VSdoc/search--/s_265.js +++ b/Database/VSdoc/search--/s_265.js @@ -1 +1 @@ -search_result['265']=["topic_00000000000000E3.html","clsDokumenttyp.bBedingtretournierbar Property",""]; \ No newline at end of file +search_result['265']=["topic_00000000000000E1.html","clsDokumenttyp.bVertrag Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_266.js b/Database/VSdoc/search--/s_266.js index 9008406f..070b545d 100644 --- a/Database/VSdoc/search--/s_266.js +++ b/Database/VSdoc/search--/s_266.js @@ -1 +1 @@ -search_result['266']=["topic_00000000000000E4.html","clsDokumenttyp.iDoktypbedingteretournierung Property",""]; \ No newline at end of file +search_result['266']=["topic_00000000000000E2.html","clsDokumenttyp.iObjektbezeichnungnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_267.js b/Database/VSdoc/search--/s_267.js index f2128725..02089853 100644 --- a/Database/VSdoc/search--/s_267.js +++ b/Database/VSdoc/search--/s_267.js @@ -1 +1 @@ -search_result['267']=["topic_00000000000000E5.html","clsDokumenttyp.iTagebisvernichtungbedingteretournierung Property",""]; \ No newline at end of file +search_result['267']=["topic_00000000000000E3.html","clsDokumenttyp.bBedingtretournierbar Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_268.js b/Database/VSdoc/search--/s_268.js index beb972d3..ed02ee87 100644 --- a/Database/VSdoc/search--/s_268.js +++ b/Database/VSdoc/search--/s_268.js @@ -1 +1 @@ -search_result['268']=["topic_00000000000000E6.html","clsDokumenttyp.bAnzeigeZurDokumenterstellung Property",""]; \ No newline at end of file +search_result['268']=["topic_00000000000000E4.html","clsDokumenttyp.iDoktypbedingteretournierung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_269.js b/Database/VSdoc/search--/s_269.js index 83e2a934..dfe32f97 100644 --- a/Database/VSdoc/search--/s_269.js +++ b/Database/VSdoc/search--/s_269.js @@ -1 +1 @@ -search_result['269']=["topic_00000000000000E7.html","clsDokumenttyp.bKundenDokument Property",""]; \ No newline at end of file +search_result['269']=["topic_00000000000000E5.html","clsDokumenttyp.iTagebisvernichtungbedingteretournierung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_27.js b/Database/VSdoc/search--/s_27.js index d671c055..956e6eed 100644 --- a/Database/VSdoc/search--/s_27.js +++ b/Database/VSdoc/search--/s_27.js @@ -1 +1 @@ -search_result['27']=["topic_0000000000000011_props--.html","ICommonDBAccess Properties",""]; \ No newline at end of file +search_result['27']=["topic_0000000000000011_events--.html","ICommonDBAccess Events",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_270.js b/Database/VSdoc/search--/s_270.js index 977366c3..9f73ad18 100644 --- a/Database/VSdoc/search--/s_270.js +++ b/Database/VSdoc/search--/s_270.js @@ -1 +1 @@ -search_result['270']=["topic_00000000000000E8.html","clsDokumenttyp.bSb Property",""]; \ No newline at end of file +search_result['270']=["topic_00000000000000E6.html","clsDokumenttyp.bAnzeigeZurDokumenterstellung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_271.js b/Database/VSdoc/search--/s_271.js index ab73eae3..18c7826b 100644 --- a/Database/VSdoc/search--/s_271.js +++ b/Database/VSdoc/search--/s_271.js @@ -1 +1 @@ -search_result['271']=["topic_00000000000000E9.html","clsDokumenttyp.bSbimport Property",""]; \ No newline at end of file +search_result['271']=["topic_00000000000000E7.html","clsDokumenttyp.bKundenDokument Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_272.js b/Database/VSdoc/search--/s_272.js index df1b5a62..b42ce0a9 100644 --- a/Database/VSdoc/search--/s_272.js +++ b/Database/VSdoc/search--/s_272.js @@ -1 +1 @@ -search_result['272']=["topic_00000000000000EA.html","clsDokumenttyp.bSbedituser Property",""]; \ No newline at end of file +search_result['272']=["topic_00000000000000E8.html","clsDokumenttyp.bSb Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_273.js b/Database/VSdoc/search--/s_273.js index 73bcac6a..ce3a840d 100644 --- a/Database/VSdoc/search--/s_273.js +++ b/Database/VSdoc/search--/s_273.js @@ -1 +1 @@ -search_result['273']=["topic_00000000000000EB.html","clsDokumenttyp.bSbnur Property",""]; \ No newline at end of file +search_result['273']=["topic_00000000000000E9.html","clsDokumenttyp.bSbimport Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_274.js b/Database/VSdoc/search--/s_274.js index 2f633d8b..5478db8d 100644 --- a/Database/VSdoc/search--/s_274.js +++ b/Database/VSdoc/search--/s_274.js @@ -1 +1 @@ -search_result['274']=["topic_00000000000000EC.html","clsDokumenttyp.bBezeichnungmut Property",""]; \ No newline at end of file +search_result['274']=["topic_00000000000000EA.html","clsDokumenttyp.bSbedituser Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_275.js b/Database/VSdoc/search--/s_275.js index 12ee03be..368940f8 100644 --- a/Database/VSdoc/search--/s_275.js +++ b/Database/VSdoc/search--/s_275.js @@ -1 +1 @@ -search_result['275']=["topic_00000000000000ED.html","clsDokumenttyp.bIstFarbigArchiviert Property",""]; \ No newline at end of file +search_result['275']=["topic_00000000000000EB.html","clsDokumenttyp.bSbnur Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_276.js b/Database/VSdoc/search--/s_276.js index 84063e08..049e3a95 100644 --- a/Database/VSdoc/search--/s_276.js +++ b/Database/VSdoc/search--/s_276.js @@ -1 +1 @@ -search_result['276']=["topic_00000000000000EE.html","clsDokumenttyp.bIntern Property",""]; \ No newline at end of file +search_result['276']=["topic_00000000000000EC.html","clsDokumenttyp.bBezeichnungmut Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_277.js b/Database/VSdoc/search--/s_277.js index 3c56aa50..fa44bab4 100644 --- a/Database/VSdoc/search--/s_277.js +++ b/Database/VSdoc/search--/s_277.js @@ -1 +1 @@ -search_result['277']=["topic_00000000000000EF.html","clsDokumenttyp.bElDokImport Property",""]; \ No newline at end of file +search_result['277']=["topic_00000000000000ED.html","clsDokumenttyp.bIstFarbigArchiviert Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_278.js b/Database/VSdoc/search--/s_278.js index cabf24da..3f08469f 100644 --- a/Database/VSdoc/search--/s_278.js +++ b/Database/VSdoc/search--/s_278.js @@ -1 +1 @@ -search_result['278']=["topic_00000000000000F0.html","clsDokumenttyp.sFachverantwortung Property",""]; \ No newline at end of file +search_result['278']=["topic_00000000000000EE.html","clsDokumenttyp.bIntern Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_279.js b/Database/VSdoc/search--/s_279.js index d0962958..07b87483 100644 --- a/Database/VSdoc/search--/s_279.js +++ b/Database/VSdoc/search--/s_279.js @@ -1 +1 @@ -search_result['279']=["topic_00000000000000F1.html","clsKey_tabelle Class",""]; \ No newline at end of file +search_result['279']=["topic_00000000000000EF.html","clsDokumenttyp.bElDokImport Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_28.js b/Database/VSdoc/search--/s_28.js index 9fa049ad..1d78a556 100644 --- a/Database/VSdoc/search--/s_28.js +++ b/Database/VSdoc/search--/s_28.js @@ -1 +1 @@ -search_result['28']=["topic_0000000000000011_vars--.html","ICommonDBAccess Fields",""]; \ No newline at end of file +search_result['28']=["topic_0000000000000011_methods--.html","ICommonDBAccess Methods",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_280.js b/Database/VSdoc/search--/s_280.js index 6b46b105..d392302b 100644 --- a/Database/VSdoc/search--/s_280.js +++ b/Database/VSdoc/search--/s_280.js @@ -1 +1 @@ -search_result['280']=["topic_00000000000000F1_attached_props--.html","clsKey_tabelle Attached Properties",""]; \ No newline at end of file +search_result['280']=["topic_00000000000000F0.html","clsDokumenttyp.sFachverantwortung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_281.js b/Database/VSdoc/search--/s_281.js index b410d132..bea5af22 100644 --- a/Database/VSdoc/search--/s_281.js +++ b/Database/VSdoc/search--/s_281.js @@ -1 +1 @@ -search_result['281']=["topic_00000000000000F1_events--.html","clsKey_tabelle Events",""]; \ No newline at end of file +search_result['281']=["topic_00000000000000F1.html","clsKey_tabelle Class",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_282.js b/Database/VSdoc/search--/s_282.js index 4200608f..07421c3b 100644 --- a/Database/VSdoc/search--/s_282.js +++ b/Database/VSdoc/search--/s_282.js @@ -1 +1 @@ -search_result['282']=["topic_00000000000000F1_methods--.html","clsKey_tabelle Methods",""]; \ No newline at end of file +search_result['282']=["topic_00000000000000F1_attached_props--.html","clsKey_tabelle Attached Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_283.js b/Database/VSdoc/search--/s_283.js index dabe3833..42812418 100644 --- a/Database/VSdoc/search--/s_283.js +++ b/Database/VSdoc/search--/s_283.js @@ -1 +1 @@ -search_result['283']=["topic_00000000000000F1_props--.html","clsKey_tabelle Properties",""]; \ No newline at end of file +search_result['283']=["topic_00000000000000F1_events--.html","clsKey_tabelle Events",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_284.js b/Database/VSdoc/search--/s_284.js index d362b275..305c33a6 100644 --- a/Database/VSdoc/search--/s_284.js +++ b/Database/VSdoc/search--/s_284.js @@ -1 +1 @@ -search_result['284']=["topic_00000000000000F1_vars--.html","clsKey_tabelle Fields",""]; \ No newline at end of file +search_result['284']=["topic_00000000000000F1_methods--.html","clsKey_tabelle Methods",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_285.js b/Database/VSdoc/search--/s_285.js index 425578b9..7dfbbadb 100644 --- a/Database/VSdoc/search--/s_285.js +++ b/Database/VSdoc/search--/s_285.js @@ -1 +1 @@ -search_result['285']=["topic_00000000000000F2.html","clsKey_tabelle Constructor",""]; \ No newline at end of file +search_result['285']=["topic_00000000000000F1_props--.html","clsKey_tabelle Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_286.js b/Database/VSdoc/search--/s_286.js index 763f545a..98dda077 100644 --- a/Database/VSdoc/search--/s_286.js +++ b/Database/VSdoc/search--/s_286.js @@ -1 +1 @@ -search_result['286']=["topic_00000000000000F3.html","clsKey_tabelle.Insert Method",""]; \ No newline at end of file +search_result['286']=["topic_00000000000000F1_vars--.html","clsKey_tabelle Fields",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_287.js b/Database/VSdoc/search--/s_287.js index 15b1d79c..188e0edc 100644 --- a/Database/VSdoc/search--/s_287.js +++ b/Database/VSdoc/search--/s_287.js @@ -1 +1 @@ -search_result['287']=["topic_00000000000000F4.html","clsKey_tabelle.Update Method",""]; \ No newline at end of file +search_result['287']=["topic_00000000000000F2.html","clsKey_tabelle Constructor",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_288.js b/Database/VSdoc/search--/s_288.js index 2b5e02c2..c27bbe4d 100644 --- a/Database/VSdoc/search--/s_288.js +++ b/Database/VSdoc/search--/s_288.js @@ -1 +1 @@ -search_result['288']=["topic_00000000000000F5.html","clsKey_tabelle.Delete Method",""]; \ No newline at end of file +search_result['288']=["topic_00000000000000F3.html","clsKey_tabelle.Insert Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_289.js b/Database/VSdoc/search--/s_289.js index 4feb46cd..ce096202 100644 --- a/Database/VSdoc/search--/s_289.js +++ b/Database/VSdoc/search--/s_289.js @@ -1 +1 @@ -search_result['289']=["topic_00000000000000F6.html","clsKey_tabelle.SelectOne Method",""]; \ No newline at end of file +search_result['289']=["topic_00000000000000F4.html","clsKey_tabelle.Update Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_29.js b/Database/VSdoc/search--/s_29.js index b1d0b114..000b8b8d 100644 --- a/Database/VSdoc/search--/s_29.js +++ b/Database/VSdoc/search--/s_29.js @@ -1 +1 @@ -search_result['29']=["topic_0000000000000012.html","ICommonDBAccess.Insert Method",""]; \ No newline at end of file +search_result['29']=["topic_0000000000000011_props--.html","ICommonDBAccess Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_290.js b/Database/VSdoc/search--/s_290.js index 8a6d17ef..93d14585 100644 --- a/Database/VSdoc/search--/s_290.js +++ b/Database/VSdoc/search--/s_290.js @@ -1 +1 @@ -search_result['290']=["topic_00000000000000F7.html","clsKey_tabelle.SelectAll Method",""]; \ No newline at end of file +search_result['290']=["topic_00000000000000F5.html","clsKey_tabelle.Delete Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_291.js b/Database/VSdoc/search--/s_291.js index 8654126e..980eb5ef 100644 --- a/Database/VSdoc/search--/s_291.js +++ b/Database/VSdoc/search--/s_291.js @@ -1 +1 @@ -search_result['291']=["topic_00000000000000F8.html","clsKey_tabelle.iKeynr Property",""]; \ No newline at end of file +search_result['291']=["topic_00000000000000F6.html","clsKey_tabelle.SelectOne Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_292.js b/Database/VSdoc/search--/s_292.js index be5c716f..d46c8a2b 100644 --- a/Database/VSdoc/search--/s_292.js +++ b/Database/VSdoc/search--/s_292.js @@ -1 +1 @@ -search_result['292']=["topic_00000000000000F9.html","clsKey_tabelle.sBeschreibung Property",""]; \ No newline at end of file +search_result['292']=["topic_00000000000000F7.html","clsKey_tabelle.SelectAll Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_293.js b/Database/VSdoc/search--/s_293.js index 2d98a90d..2c7642ed 100644 --- a/Database/VSdoc/search--/s_293.js +++ b/Database/VSdoc/search--/s_293.js @@ -1 +1 @@ -search_result['293']=["topic_00000000000000FA.html","clsKey_tabelle.iKey_wert Property",""]; \ No newline at end of file +search_result['293']=["topic_00000000000000F8.html","clsKey_tabelle.iKeynr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_294.js b/Database/VSdoc/search--/s_294.js index 88ac2ce8..d58d8ef0 100644 --- a/Database/VSdoc/search--/s_294.js +++ b/Database/VSdoc/search--/s_294.js @@ -1 +1 @@ -search_result['294']=["topic_00000000000000FB.html","clsKey_tabelle.iMandantnr Property",""]; \ No newline at end of file +search_result['294']=["topic_00000000000000F9.html","clsKey_tabelle.sBeschreibung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_295.js b/Database/VSdoc/search--/s_295.js index 681be8a9..ab5a205a 100644 --- a/Database/VSdoc/search--/s_295.js +++ b/Database/VSdoc/search--/s_295.js @@ -1 +1 @@ -search_result['295']=["topic_00000000000000FC.html","clsKey_tabelle.bAktiv Property",""]; \ No newline at end of file +search_result['295']=["topic_00000000000000FA.html","clsKey_tabelle.iKey_wert Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_296.js b/Database/VSdoc/search--/s_296.js index e52dac92..2b50c02b 100644 --- a/Database/VSdoc/search--/s_296.js +++ b/Database/VSdoc/search--/s_296.js @@ -1 +1 @@ -search_result['296']=["topic_00000000000000FD.html","clsKey_tabelle.daErstellt_am Property",""]; \ No newline at end of file +search_result['296']=["topic_00000000000000FB.html","clsKey_tabelle.iMandantnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_297.js b/Database/VSdoc/search--/s_297.js index 3dc9a6a2..a53e76c4 100644 --- a/Database/VSdoc/search--/s_297.js +++ b/Database/VSdoc/search--/s_297.js @@ -1 +1 @@ -search_result['297']=["topic_00000000000000FE.html","clsKey_tabelle.daMutiert_am Property",""]; \ No newline at end of file +search_result['297']=["topic_00000000000000FC.html","clsKey_tabelle.bAktiv Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_298.js b/Database/VSdoc/search--/s_298.js index cb4463e8..a818df8d 100644 --- a/Database/VSdoc/search--/s_298.js +++ b/Database/VSdoc/search--/s_298.js @@ -1 +1 @@ -search_result['298']=["topic_00000000000000FF.html","clsKey_tabelle.iMutierer Property",""]; \ No newline at end of file +search_result['298']=["topic_00000000000000FD.html","clsKey_tabelle.daErstellt_am Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_299.js b/Database/VSdoc/search--/s_299.js index 2ea3fa65..00bf8d0a 100644 --- a/Database/VSdoc/search--/s_299.js +++ b/Database/VSdoc/search--/s_299.js @@ -1 +1 @@ -search_result['299']=["topic_0000000000000100.html","clsMitarbeiter Class",""]; \ No newline at end of file +search_result['299']=["topic_00000000000000FE.html","clsKey_tabelle.daMutiert_am Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_3.js b/Database/VSdoc/search--/s_3.js index c5f06620..dbd3a77b 100644 --- a/Database/VSdoc/search--/s_3.js +++ b/Database/VSdoc/search--/s_3.js @@ -1 +1 @@ -search_result['3']=["topic_0000000000000001_events--.html","clsConnectionProvider Events",""]; \ No newline at end of file +search_result['3']=["topic_0000000000000001.html","clsConnectionProvider Class",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_30.js b/Database/VSdoc/search--/s_30.js index 07a9af90..bb512954 100644 --- a/Database/VSdoc/search--/s_30.js +++ b/Database/VSdoc/search--/s_30.js @@ -1 +1 @@ -search_result['30']=["topic_0000000000000013.html","ICommonDBAccess.Update Method",""]; \ No newline at end of file +search_result['30']=["topic_0000000000000011_vars--.html","ICommonDBAccess Fields",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_300.js b/Database/VSdoc/search--/s_300.js index 1649dee0..136cac9e 100644 --- a/Database/VSdoc/search--/s_300.js +++ b/Database/VSdoc/search--/s_300.js @@ -1 +1 @@ -search_result['300']=["topic_0000000000000100_attached_props--.html","clsMitarbeiter Attached Properties",""]; \ No newline at end of file +search_result['300']=["topic_00000000000000FF.html","clsKey_tabelle.iMutierer Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_301.js b/Database/VSdoc/search--/s_301.js index 8318ac76..02452303 100644 --- a/Database/VSdoc/search--/s_301.js +++ b/Database/VSdoc/search--/s_301.js @@ -1 +1 @@ -search_result['301']=["topic_0000000000000100_events--.html","clsMitarbeiter Events",""]; \ No newline at end of file +search_result['301']=["topic_0000000000000100.html","clsMitarbeiter Class",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_302.js b/Database/VSdoc/search--/s_302.js index fcf2f878..16b47bab 100644 --- a/Database/VSdoc/search--/s_302.js +++ b/Database/VSdoc/search--/s_302.js @@ -1 +1 @@ -search_result['302']=["topic_0000000000000100_methods--.html","clsMitarbeiter Methods",""]; \ No newline at end of file +search_result['302']=["topic_0000000000000100_attached_props--.html","clsMitarbeiter Attached Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_303.js b/Database/VSdoc/search--/s_303.js index 4a2a52d5..9740a6ae 100644 --- a/Database/VSdoc/search--/s_303.js +++ b/Database/VSdoc/search--/s_303.js @@ -1 +1 @@ -search_result['303']=["topic_0000000000000100_props--.html","clsMitarbeiter Properties",""]; \ No newline at end of file +search_result['303']=["topic_0000000000000100_events--.html","clsMitarbeiter Events",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_304.js b/Database/VSdoc/search--/s_304.js index a3776fe3..a07f7a19 100644 --- a/Database/VSdoc/search--/s_304.js +++ b/Database/VSdoc/search--/s_304.js @@ -1 +1 @@ -search_result['304']=["topic_0000000000000100_vars--.html","clsMitarbeiter Fields",""]; \ No newline at end of file +search_result['304']=["topic_0000000000000100_methods--.html","clsMitarbeiter Methods",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_305.js b/Database/VSdoc/search--/s_305.js index 6832a97c..1e95eb3a 100644 --- a/Database/VSdoc/search--/s_305.js +++ b/Database/VSdoc/search--/s_305.js @@ -1 +1 @@ -search_result['305']=["topic_0000000000000101.html","clsMitarbeiter Constructor",""]; \ No newline at end of file +search_result['305']=["topic_0000000000000100_props--.html","clsMitarbeiter Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_306.js b/Database/VSdoc/search--/s_306.js index ccc24fde..9d3633d9 100644 --- a/Database/VSdoc/search--/s_306.js +++ b/Database/VSdoc/search--/s_306.js @@ -1 +1 @@ -search_result['306']=["topic_0000000000000102.html","clsMitarbeiter.Insert Method",""]; \ No newline at end of file +search_result['306']=["topic_0000000000000100_vars--.html","clsMitarbeiter Fields",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_307.js b/Database/VSdoc/search--/s_307.js index 4b192503..98c36bd8 100644 --- a/Database/VSdoc/search--/s_307.js +++ b/Database/VSdoc/search--/s_307.js @@ -1 +1 @@ -search_result['307']=["topic_0000000000000103.html","clsMitarbeiter.Update Method",""]; \ No newline at end of file +search_result['307']=["topic_0000000000000101.html","clsMitarbeiter Constructor",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_308.js b/Database/VSdoc/search--/s_308.js index cac71144..7af4daef 100644 --- a/Database/VSdoc/search--/s_308.js +++ b/Database/VSdoc/search--/s_308.js @@ -1 +1 @@ -search_result['308']=["topic_0000000000000104.html","clsMitarbeiter.Delete Method",""]; \ No newline at end of file +search_result['308']=["topic_0000000000000102.html","clsMitarbeiter.Insert Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_309.js b/Database/VSdoc/search--/s_309.js index c919c926..c4707f28 100644 --- a/Database/VSdoc/search--/s_309.js +++ b/Database/VSdoc/search--/s_309.js @@ -1 +1 @@ -search_result['309']=["topic_0000000000000105.html","clsMitarbeiter.SelectOne Method",""]; \ No newline at end of file +search_result['309']=["topic_0000000000000103.html","clsMitarbeiter.Update Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_31.js b/Database/VSdoc/search--/s_31.js index dbee1340..4613c245 100644 --- a/Database/VSdoc/search--/s_31.js +++ b/Database/VSdoc/search--/s_31.js @@ -1 +1 @@ -search_result['31']=["topic_0000000000000014.html","ICommonDBAccess.Delete Method",""]; \ No newline at end of file +search_result['31']=["topic_0000000000000012.html","ICommonDBAccess.Insert Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_310.js b/Database/VSdoc/search--/s_310.js index 23051b9a..cf65edd6 100644 --- a/Database/VSdoc/search--/s_310.js +++ b/Database/VSdoc/search--/s_310.js @@ -1 +1 @@ -search_result['310']=["topic_0000000000000106.html","clsMitarbeiter.SelectAll Method",""]; \ No newline at end of file +search_result['310']=["topic_0000000000000104.html","clsMitarbeiter.Delete Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_311.js b/Database/VSdoc/search--/s_311.js index 708db1e3..03d02648 100644 --- a/Database/VSdoc/search--/s_311.js +++ b/Database/VSdoc/search--/s_311.js @@ -1 +1 @@ -search_result['311']=["topic_0000000000000107.html","clsMitarbeiter.iMitarbeiternr Property",""]; \ No newline at end of file +search_result['311']=["topic_0000000000000105.html","clsMitarbeiter.SelectOne Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_312.js b/Database/VSdoc/search--/s_312.js index b837eb38..9c6e4252 100644 --- a/Database/VSdoc/search--/s_312.js +++ b/Database/VSdoc/search--/s_312.js @@ -1 +1 @@ -search_result['312']=["topic_0000000000000108.html","clsMitarbeiter.sVorname Property",""]; \ No newline at end of file +search_result['312']=["topic_0000000000000106.html","clsMitarbeiter.SelectAll Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_313.js b/Database/VSdoc/search--/s_313.js index 33f79b8e..84d9d2df 100644 --- a/Database/VSdoc/search--/s_313.js +++ b/Database/VSdoc/search--/s_313.js @@ -1 +1 @@ -search_result['313']=["topic_0000000000000109.html","clsMitarbeiter.sName Property",""]; \ No newline at end of file +search_result['313']=["topic_0000000000000107.html","clsMitarbeiter.iMitarbeiternr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_314.js b/Database/VSdoc/search--/s_314.js index fc2222c6..003d28dd 100644 --- a/Database/VSdoc/search--/s_314.js +++ b/Database/VSdoc/search--/s_314.js @@ -1 +1 @@ -search_result['314']=["topic_000000000000010A.html","clsMitarbeiter.sKurzzeichen Property",""]; \ No newline at end of file +search_result['314']=["topic_0000000000000108.html","clsMitarbeiter.sVorname Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_315.js b/Database/VSdoc/search--/s_315.js index 08a9cd08..5d53307b 100644 --- a/Database/VSdoc/search--/s_315.js +++ b/Database/VSdoc/search--/s_315.js @@ -1 +1 @@ -search_result['315']=["topic_000000000000010B.html","clsMitarbeiter.sAnrede Property",""]; \ No newline at end of file +search_result['315']=["topic_0000000000000109.html","clsMitarbeiter.sName Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_316.js b/Database/VSdoc/search--/s_316.js index a1d5253f..c9679947 100644 --- a/Database/VSdoc/search--/s_316.js +++ b/Database/VSdoc/search--/s_316.js @@ -1 +1 @@ -search_result['316']=["topic_000000000000010C.html","clsMitarbeiter.sTgnummer Property",""]; \ No newline at end of file +search_result['316']=["topic_000000000000010A.html","clsMitarbeiter.sKurzzeichen Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_317.js b/Database/VSdoc/search--/s_317.js index 80ca5f4c..f35ba381 100644 --- a/Database/VSdoc/search--/s_317.js +++ b/Database/VSdoc/search--/s_317.js @@ -1 +1 @@ -search_result['317']=["topic_000000000000010D.html","clsMitarbeiter.sEmail Property",""]; \ No newline at end of file +search_result['317']=["topic_000000000000010B.html","clsMitarbeiter.sAnrede Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_318.js b/Database/VSdoc/search--/s_318.js index 5c43c4bd..e781fb02 100644 --- a/Database/VSdoc/search--/s_318.js +++ b/Database/VSdoc/search--/s_318.js @@ -1 +1 @@ -search_result['318']=["topic_000000000000010E.html","clsMitarbeiter.sFax Property",""]; \ No newline at end of file +search_result['318']=["topic_000000000000010C.html","clsMitarbeiter.sTgnummer Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_319.js b/Database/VSdoc/search--/s_319.js index a8384581..74e08616 100644 --- a/Database/VSdoc/search--/s_319.js +++ b/Database/VSdoc/search--/s_319.js @@ -1 +1 @@ -search_result['319']=["topic_000000000000010F.html","clsMitarbeiter.sTelefon Property",""]; \ No newline at end of file +search_result['319']=["topic_000000000000010D.html","clsMitarbeiter.sEmail Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_32.js b/Database/VSdoc/search--/s_32.js index 46923810..b9983d10 100644 --- a/Database/VSdoc/search--/s_32.js +++ b/Database/VSdoc/search--/s_32.js @@ -1 +1 @@ -search_result['32']=["topic_0000000000000015.html","ICommonDBAccess.SelectOne Method",""]; \ No newline at end of file +search_result['32']=["topic_0000000000000013.html","ICommonDBAccess.Update Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_320.js b/Database/VSdoc/search--/s_320.js index aa54d27d..9727c461 100644 --- a/Database/VSdoc/search--/s_320.js +++ b/Database/VSdoc/search--/s_320.js @@ -1 +1 @@ -search_result['320']=["topic_0000000000000110.html","clsMitarbeiter.sUnterschrift_text Property",""]; \ No newline at end of file +search_result['320']=["topic_000000000000010E.html","clsMitarbeiter.sFax Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_321.js b/Database/VSdoc/search--/s_321.js index 9e9eee03..6d9f0d64 100644 --- a/Database/VSdoc/search--/s_321.js +++ b/Database/VSdoc/search--/s_321.js @@ -1 +1 @@ -search_result['321']=["topic_0000000000000111.html","clsMitarbeiter.iFunktionnr Property",""]; \ No newline at end of file +search_result['321']=["topic_000000000000010F.html","clsMitarbeiter.sTelefon Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_322.js b/Database/VSdoc/search--/s_322.js index eae92f2a..2861c98e 100644 --- a/Database/VSdoc/search--/s_322.js +++ b/Database/VSdoc/search--/s_322.js @@ -1 +1 @@ -search_result['322']=["topic_0000000000000112.html","clsMitarbeiter.iSprache Property",""]; \ No newline at end of file +search_result['322']=["topic_0000000000000110.html","clsMitarbeiter.sUnterschrift_text Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_323.js b/Database/VSdoc/search--/s_323.js index 5bde4f8c..3cba7c2b 100644 --- a/Database/VSdoc/search--/s_323.js +++ b/Database/VSdoc/search--/s_323.js @@ -1 +1 @@ -search_result['323']=["topic_0000000000000113.html","clsMitarbeiter.iFuermandant Property",""]; \ No newline at end of file +search_result['323']=["topic_0000000000000111.html","clsMitarbeiter.iFunktionnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_324.js b/Database/VSdoc/search--/s_324.js index 905c1eea..eb6bfc6a 100644 --- a/Database/VSdoc/search--/s_324.js +++ b/Database/VSdoc/search--/s_324.js @@ -1 +1 @@ -search_result['324']=["topic_0000000000000114.html","clsMitarbeiter.bShowtip Property",""]; \ No newline at end of file +search_result['324']=["topic_0000000000000112.html","clsMitarbeiter.iSprache Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_325.js b/Database/VSdoc/search--/s_325.js index 44b47c76..0b47c30e 100644 --- a/Database/VSdoc/search--/s_325.js +++ b/Database/VSdoc/search--/s_325.js @@ -1 +1 @@ -search_result['325']=["topic_0000000000000115.html","clsMitarbeiter.iPartnernr Property",""]; \ No newline at end of file +search_result['325']=["topic_0000000000000113.html","clsMitarbeiter.iFuermandant Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_326.js b/Database/VSdoc/search--/s_326.js index fac212d8..43036545 100644 --- a/Database/VSdoc/search--/s_326.js +++ b/Database/VSdoc/search--/s_326.js @@ -1 +1 @@ -search_result['326']=["topic_0000000000000116.html","clsMitarbeiter.iMandantnr Property",""]; \ No newline at end of file +search_result['326']=["topic_0000000000000114.html","clsMitarbeiter.bShowtip Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_327.js b/Database/VSdoc/search--/s_327.js index 90e920d1..7b775809 100644 --- a/Database/VSdoc/search--/s_327.js +++ b/Database/VSdoc/search--/s_327.js @@ -1 +1 @@ -search_result['327']=["topic_0000000000000117.html","clsMitarbeiter.bAktiv Property",""]; \ No newline at end of file +search_result['327']=["topic_0000000000000115.html","clsMitarbeiter.iPartnernr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_328.js b/Database/VSdoc/search--/s_328.js index 55b34acd..e359d73d 100644 --- a/Database/VSdoc/search--/s_328.js +++ b/Database/VSdoc/search--/s_328.js @@ -1 +1 @@ -search_result['328']=["topic_0000000000000118.html","clsMitarbeiter.daErstellt_am Property",""]; \ No newline at end of file +search_result['328']=["topic_0000000000000116.html","clsMitarbeiter.iMandantnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_329.js b/Database/VSdoc/search--/s_329.js index ab5cfc1b..74454701 100644 --- a/Database/VSdoc/search--/s_329.js +++ b/Database/VSdoc/search--/s_329.js @@ -1 +1 @@ -search_result['329']=["topic_0000000000000119.html","clsMitarbeiter.daMutiert_am Property",""]; \ No newline at end of file +search_result['329']=["topic_0000000000000117.html","clsMitarbeiter.bAktiv Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_33.js b/Database/VSdoc/search--/s_33.js index f8ad72f9..bcfbbd46 100644 --- a/Database/VSdoc/search--/s_33.js +++ b/Database/VSdoc/search--/s_33.js @@ -1 +1 @@ -search_result['33']=["topic_0000000000000016.html","ICommonDBAccess.SelectAll Method",""]; \ No newline at end of file +search_result['33']=["topic_0000000000000014.html","ICommonDBAccess.Delete Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_330.js b/Database/VSdoc/search--/s_330.js index c9fabd81..6c305da9 100644 --- a/Database/VSdoc/search--/s_330.js +++ b/Database/VSdoc/search--/s_330.js @@ -1 +1 @@ -search_result['330']=["topic_000000000000011A.html","clsMitarbeiter.iMutierer Property",""]; \ No newline at end of file +search_result['330']=["topic_0000000000000118.html","clsMitarbeiter.daErstellt_am Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_331.js b/Database/VSdoc/search--/s_331.js index 2b7a5a15..a4f553b7 100644 --- a/Database/VSdoc/search--/s_331.js +++ b/Database/VSdoc/search--/s_331.js @@ -1 +1 @@ -search_result['331']=["topic_000000000000011B.html","clsMitarbeiter.bMailempfang Property",""]; \ No newline at end of file +search_result['331']=["topic_0000000000000119.html","clsMitarbeiter.daMutiert_am Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_332.js b/Database/VSdoc/search--/s_332.js index 4561b7ff..1dba04d5 100644 --- a/Database/VSdoc/search--/s_332.js +++ b/Database/VSdoc/search--/s_332.js @@ -1 +1 @@ -search_result['332']=["topic_000000000000011C.html","clsMitarbeiter.bEdokaMesasge Property",""]; \ No newline at end of file +search_result['332']=["topic_000000000000011A.html","clsMitarbeiter.iMutierer Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_333.js b/Database/VSdoc/search--/s_333.js index 8ddcc3bc..52e9dab8 100644 --- a/Database/VSdoc/search--/s_333.js +++ b/Database/VSdoc/search--/s_333.js @@ -1 +1 @@ -search_result['333']=["topic_000000000000011D.html","clsMitarbeiter.sFunktion Property",""]; \ No newline at end of file +search_result['333']=["topic_000000000000011B.html","clsMitarbeiter.bMailempfang Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_334.js b/Database/VSdoc/search--/s_334.js index 2ff0e728..a68be28e 100644 --- a/Database/VSdoc/search--/s_334.js +++ b/Database/VSdoc/search--/s_334.js @@ -1 +1 @@ -search_result['334']=["topic_000000000000011E.html","clsMitarbeiter.bMailDirektVersenden Property",""]; \ No newline at end of file +search_result['334']=["topic_000000000000011C.html","clsMitarbeiter.bEdokaMesasge Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_335.js b/Database/VSdoc/search--/s_335.js index 8061f0cf..36532f57 100644 --- a/Database/VSdoc/search--/s_335.js +++ b/Database/VSdoc/search--/s_335.js @@ -1 +1 @@ -search_result['335']=["topic_000000000000011F.html","clsMitarbeiter.sRang Property",""]; \ No newline at end of file +search_result['335']=["topic_000000000000011D.html","clsMitarbeiter.sFunktion Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_336.js b/Database/VSdoc/search--/s_336.js index 876327ba..70a3905f 100644 --- a/Database/VSdoc/search--/s_336.js +++ b/Database/VSdoc/search--/s_336.js @@ -1 +1 @@ -search_result['336']=["topic_0000000000000120.html","clsMitarbeiter.bMailDokumentrueckgang Property",""]; \ No newline at end of file +search_result['336']=["topic_000000000000011E.html","clsMitarbeiter.bMailDirektVersenden Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_337.js b/Database/VSdoc/search--/s_337.js index 140f2edc..7241b507 100644 --- a/Database/VSdoc/search--/s_337.js +++ b/Database/VSdoc/search--/s_337.js @@ -1 +1 @@ -search_result['337']=["topic_0000000000000121.html","clsMitarbeiter.iKlassifizierung Property",""]; \ No newline at end of file +search_result['337']=["topic_000000000000011F.html","clsMitarbeiter.sRang Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_338.js b/Database/VSdoc/search--/s_338.js index e36c291b..f4d3db9c 100644 --- a/Database/VSdoc/search--/s_338.js +++ b/Database/VSdoc/search--/s_338.js @@ -1 +1 @@ -search_result['338']=["topic_0000000000000122.html","clsMitarbeiter.bEdoka_mail Property",""]; \ No newline at end of file +search_result['338']=["topic_0000000000000120.html","clsMitarbeiter.bMailDokumentrueckgang Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_339.js b/Database/VSdoc/search--/s_339.js index 12f2e510..2f3ac5b1 100644 --- a/Database/VSdoc/search--/s_339.js +++ b/Database/VSdoc/search--/s_339.js @@ -1 +1 @@ -search_result['339']=["topic_0000000000000123.html","clsMitarbeiter.bJournalisierung Property",""]; \ No newline at end of file +search_result['339']=["topic_0000000000000121.html","clsMitarbeiter.iKlassifizierung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_34.js b/Database/VSdoc/search--/s_34.js index c08d284e..f29540a8 100644 --- a/Database/VSdoc/search--/s_34.js +++ b/Database/VSdoc/search--/s_34.js @@ -1 +1 @@ -search_result['34']=["topic_0000000000000017.html","clsDBInteractionBase Class",""]; \ No newline at end of file +search_result['34']=["topic_0000000000000015.html","ICommonDBAccess.SelectOne Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_340.js b/Database/VSdoc/search--/s_340.js index 5ff908f6..7ef0d61e 100644 --- a/Database/VSdoc/search--/s_340.js +++ b/Database/VSdoc/search--/s_340.js @@ -1 +1 @@ -search_result['340']=["topic_0000000000000124.html","clsMitarbeiter.bGebMeldung Property",""]; \ No newline at end of file +search_result['340']=["topic_0000000000000122.html","clsMitarbeiter.bEdoka_mail Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_341.js b/Database/VSdoc/search--/s_341.js index ee1201e3..deb99a78 100644 --- a/Database/VSdoc/search--/s_341.js +++ b/Database/VSdoc/search--/s_341.js @@ -1 +1 @@ -search_result['341']=["topic_0000000000000125.html","clsMitarbeiter.sMail_1 Property",""]; \ No newline at end of file +search_result['341']=["topic_0000000000000123.html","clsMitarbeiter.bJournalisierung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_342.js b/Database/VSdoc/search--/s_342.js index 4ebdc016..1732215a 100644 --- a/Database/VSdoc/search--/s_342.js +++ b/Database/VSdoc/search--/s_342.js @@ -1 +1 @@ -search_result['342']=["topic_0000000000000126.html","clsMitarbeiter.daValidto Property",""]; \ No newline at end of file +search_result['342']=["topic_0000000000000124.html","clsMitarbeiter.bGebMeldung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_343.js b/Database/VSdoc/search--/s_343.js index 3b29de73..41ee5742 100644 --- a/Database/VSdoc/search--/s_343.js +++ b/Database/VSdoc/search--/s_343.js @@ -1 +1 @@ -search_result['343']=["topic_0000000000000127.html","clsMyKey_Tabelle Class",""]; \ No newline at end of file +search_result['343']=["topic_0000000000000125.html","clsMitarbeiter.sMail_1 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_344.js b/Database/VSdoc/search--/s_344.js index 07552f03..375bbbf6 100644 --- a/Database/VSdoc/search--/s_344.js +++ b/Database/VSdoc/search--/s_344.js @@ -1 +1 @@ -search_result['344']=["topic_0000000000000127_attached_props--.html","clsMyKey_Tabelle Attached Properties",""]; \ No newline at end of file +search_result['344']=["topic_0000000000000126.html","clsMitarbeiter.daValidto Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_345.js b/Database/VSdoc/search--/s_345.js index 558c9a6e..3ce4ee17 100644 --- a/Database/VSdoc/search--/s_345.js +++ b/Database/VSdoc/search--/s_345.js @@ -1 +1 @@ -search_result['345']=["topic_0000000000000127_events--.html","clsMyKey_Tabelle Events",""]; \ No newline at end of file +search_result['345']=["topic_0000000000000127.html","clsMyKey_Tabelle Class",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_346.js b/Database/VSdoc/search--/s_346.js index cec01909..8c589b27 100644 --- a/Database/VSdoc/search--/s_346.js +++ b/Database/VSdoc/search--/s_346.js @@ -1 +1 @@ -search_result['346']=["topic_0000000000000127_methods--.html","clsMyKey_Tabelle Methods",""]; \ No newline at end of file +search_result['346']=["topic_0000000000000127_attached_props--.html","clsMyKey_Tabelle Attached Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_347.js b/Database/VSdoc/search--/s_347.js index f3147464..68ba5924 100644 --- a/Database/VSdoc/search--/s_347.js +++ b/Database/VSdoc/search--/s_347.js @@ -1 +1 @@ -search_result['347']=["topic_0000000000000127_props--.html","clsMyKey_Tabelle Properties",""]; \ No newline at end of file +search_result['347']=["topic_0000000000000127_events--.html","clsMyKey_Tabelle Events",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_348.js b/Database/VSdoc/search--/s_348.js index 4e81da0f..fdc30f7e 100644 --- a/Database/VSdoc/search--/s_348.js +++ b/Database/VSdoc/search--/s_348.js @@ -1 +1 @@ -search_result['348']=["topic_0000000000000127_vars--.html","clsMyKey_Tabelle Fields",""]; \ No newline at end of file +search_result['348']=["topic_0000000000000127_methods--.html","clsMyKey_Tabelle Methods",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_349.js b/Database/VSdoc/search--/s_349.js index 3d4379cd..348b62da 100644 --- a/Database/VSdoc/search--/s_349.js +++ b/Database/VSdoc/search--/s_349.js @@ -1 +1 @@ -search_result['349']=["topic_0000000000000128.html","connectionstring Field",""]; \ No newline at end of file +search_result['349']=["topic_0000000000000127_props--.html","clsMyKey_Tabelle Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_35.js b/Database/VSdoc/search--/s_35.js index 67e78639..e772d56e 100644 --- a/Database/VSdoc/search--/s_35.js +++ b/Database/VSdoc/search--/s_35.js @@ -1 +1 @@ -search_result['35']=["topic_0000000000000017_attached_props--.html","clsDBInteractionBase Attached Properties",""]; \ No newline at end of file +search_result['35']=["topic_0000000000000016.html","ICommonDBAccess.SelectAll Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_350.js b/Database/VSdoc/search--/s_350.js index c9325ded..4f1bf817 100644 --- a/Database/VSdoc/search--/s_350.js +++ b/Database/VSdoc/search--/s_350.js @@ -1 +1 @@ -search_result['350']=["topic_0000000000000129.html","clsMyKey_Tabelle.get_dbkey Method",""]; \ No newline at end of file +search_result['350']=["topic_0000000000000127_vars--.html","clsMyKey_Tabelle Fields",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_351.js b/Database/VSdoc/search--/s_351.js index 96a554d8..fb28382d 100644 --- a/Database/VSdoc/search--/s_351.js +++ b/Database/VSdoc/search--/s_351.js @@ -1 +1 @@ -search_result['351']=["topic_000000000000012A.html","clsPartner Class",""]; \ No newline at end of file +search_result['351']=["topic_0000000000000128.html","connectionstring Field",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_352.js b/Database/VSdoc/search--/s_352.js index c4c5b868..692cb6f8 100644 --- a/Database/VSdoc/search--/s_352.js +++ b/Database/VSdoc/search--/s_352.js @@ -1 +1 @@ -search_result['352']=["topic_000000000000012A_attached_props--.html","clsPartner Attached Properties",""]; \ No newline at end of file +search_result['352']=["topic_0000000000000129.html","clsMyKey_Tabelle.get_dbkey Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_353.js b/Database/VSdoc/search--/s_353.js index becb1481..6608fc92 100644 --- a/Database/VSdoc/search--/s_353.js +++ b/Database/VSdoc/search--/s_353.js @@ -1 +1 @@ -search_result['353']=["topic_000000000000012A_events--.html","clsPartner Events",""]; \ No newline at end of file +search_result['353']=["topic_000000000000012A.html","clsPartner Class",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_354.js b/Database/VSdoc/search--/s_354.js index 1cef47bd..2ee960a9 100644 --- a/Database/VSdoc/search--/s_354.js +++ b/Database/VSdoc/search--/s_354.js @@ -1 +1 @@ -search_result['354']=["topic_000000000000012A_methods--.html","clsPartner Methods",""]; \ No newline at end of file +search_result['354']=["topic_000000000000012A_attached_props--.html","clsPartner Attached Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_355.js b/Database/VSdoc/search--/s_355.js index 52b43994..7a212f18 100644 --- a/Database/VSdoc/search--/s_355.js +++ b/Database/VSdoc/search--/s_355.js @@ -1 +1 @@ -search_result['355']=["topic_000000000000012A_props--.html","clsPartner Properties",""]; \ No newline at end of file +search_result['355']=["topic_000000000000012A_events--.html","clsPartner Events",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_356.js b/Database/VSdoc/search--/s_356.js index 86c96381..a86505f4 100644 --- a/Database/VSdoc/search--/s_356.js +++ b/Database/VSdoc/search--/s_356.js @@ -1 +1 @@ -search_result['356']=["topic_000000000000012A_vars--.html","clsPartner Fields",""]; \ No newline at end of file +search_result['356']=["topic_000000000000012A_methods--.html","clsPartner Methods",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_357.js b/Database/VSdoc/search--/s_357.js index 62cbb75c..b4000b2c 100644 --- a/Database/VSdoc/search--/s_357.js +++ b/Database/VSdoc/search--/s_357.js @@ -1 +1 @@ -search_result['357']=["topic_000000000000012B.html","clsPartner Constructor",""]; \ No newline at end of file +search_result['357']=["topic_000000000000012A_props--.html","clsPartner Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_358.js b/Database/VSdoc/search--/s_358.js index d5b7405e..18aa349d 100644 --- a/Database/VSdoc/search--/s_358.js +++ b/Database/VSdoc/search--/s_358.js @@ -1 +1 @@ -search_result['358']=["topic_000000000000012C.html","clsPartner.Insert Method",""]; \ No newline at end of file +search_result['358']=["topic_000000000000012A_vars--.html","clsPartner Fields",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_359.js b/Database/VSdoc/search--/s_359.js index 257fc01d..50cd8239 100644 --- a/Database/VSdoc/search--/s_359.js +++ b/Database/VSdoc/search--/s_359.js @@ -1 +1 @@ -search_result['359']=["topic_000000000000012D.html","clsPartner.Update Method",""]; \ No newline at end of file +search_result['359']=["topic_000000000000012B.html","clsPartner Constructor",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_36.js b/Database/VSdoc/search--/s_36.js index 7270acfd..67f1c991 100644 --- a/Database/VSdoc/search--/s_36.js +++ b/Database/VSdoc/search--/s_36.js @@ -1 +1 @@ -search_result['36']=["topic_0000000000000017_events--.html","clsDBInteractionBase Events",""]; \ No newline at end of file +search_result['36']=["topic_0000000000000017.html","clsDBInteractionBase Class",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_360.js b/Database/VSdoc/search--/s_360.js index d0e01f08..e45769ce 100644 --- a/Database/VSdoc/search--/s_360.js +++ b/Database/VSdoc/search--/s_360.js @@ -1 +1 @@ -search_result['360']=["topic_000000000000012E.html","clsPartner.Delete Method",""]; \ No newline at end of file +search_result['360']=["topic_000000000000012C.html","clsPartner.Insert Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_361.js b/Database/VSdoc/search--/s_361.js index 245790bc..09eb05c8 100644 --- a/Database/VSdoc/search--/s_361.js +++ b/Database/VSdoc/search--/s_361.js @@ -1 +1 @@ -search_result['361']=["topic_000000000000012F.html","clsPartner.SelectOne Method",""]; \ No newline at end of file +search_result['361']=["topic_000000000000012D.html","clsPartner.Update Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_362.js b/Database/VSdoc/search--/s_362.js index 8a9c9867..a1e39ad2 100644 --- a/Database/VSdoc/search--/s_362.js +++ b/Database/VSdoc/search--/s_362.js @@ -1 +1 @@ -search_result['362']=["topic_0000000000000130.html","clsPartner.SelectAll Method",""]; \ No newline at end of file +search_result['362']=["topic_000000000000012E.html","clsPartner.Delete Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_363.js b/Database/VSdoc/search--/s_363.js index ff962fe3..6d4fda47 100644 --- a/Database/VSdoc/search--/s_363.js +++ b/Database/VSdoc/search--/s_363.js @@ -1 +1 @@ -search_result['363']=["topic_0000000000000131.html","clsPartner.sIDMSG00 Property",""]; \ No newline at end of file +search_result['363']=["topic_000000000000012F.html","clsPartner.SelectOne Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_364.js b/Database/VSdoc/search--/s_364.js index 58fb5a7d..bd6a344a 100644 --- a/Database/VSdoc/search--/s_364.js +++ b/Database/VSdoc/search--/s_364.js @@ -1 +1 @@ -search_result['364']=["topic_0000000000000132.html","clsPartner.sDMMSG00 Property",""]; \ No newline at end of file +search_result['364']=["topic_0000000000000130.html","clsPartner.SelectAll Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_365.js b/Database/VSdoc/search--/s_365.js index d392f07a..342434fc 100644 --- a/Database/VSdoc/search--/s_365.js +++ b/Database/VSdoc/search--/s_365.js @@ -1 +1 @@ -search_result['365']=["topic_0000000000000133.html","clsPartner.sZTMSG00 Property",""]; \ No newline at end of file +search_result['365']=["topic_0000000000000131.html","clsPartner.sIDMSG00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_366.js b/Database/VSdoc/search--/s_366.js index 5433bc29..b975b5eb 100644 --- a/Database/VSdoc/search--/s_366.js +++ b/Database/VSdoc/search--/s_366.js @@ -1 +1 @@ -search_result['366']=["topic_0000000000000134.html","clsPartner.sBEPGM00 Property",""]; \ No newline at end of file +search_result['366']=["topic_0000000000000132.html","clsPartner.sDMMSG00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_367.js b/Database/VSdoc/search--/s_367.js index 1c0c1136..6e59b2ad 100644 --- a/Database/VSdoc/search--/s_367.js +++ b/Database/VSdoc/search--/s_367.js @@ -1 +1 @@ -search_result['367']=["topic_0000000000000135.html","clsPartner.sCDBNK00 Property",""]; \ No newline at end of file +search_result['367']=["topic_0000000000000133.html","clsPartner.sZTMSG00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_368.js b/Database/VSdoc/search--/s_368.js index 49eaae85..7a95d58e 100644 --- a/Database/VSdoc/search--/s_368.js +++ b/Database/VSdoc/search--/s_368.js @@ -1 +1 @@ -search_result['368']=["topic_0000000000000136.html","clsPartner.iNRPAR00 Property",""]; \ No newline at end of file +search_result['368']=["topic_0000000000000134.html","clsPartner.sBEPGM00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_369.js b/Database/VSdoc/search--/s_369.js index 9c81d87d..8f68329e 100644 --- a/Database/VSdoc/search--/s_369.js +++ b/Database/VSdoc/search--/s_369.js @@ -1 +1 @@ -search_result['369']=["topic_0000000000000137.html","clsPartner.sBKPAR00 Property",""]; \ No newline at end of file +search_result['369']=["topic_0000000000000135.html","clsPartner.sCDBNK00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_37.js b/Database/VSdoc/search--/s_37.js index a57117c2..72d8b385 100644 --- a/Database/VSdoc/search--/s_37.js +++ b/Database/VSdoc/search--/s_37.js @@ -1 +1 @@ -search_result['37']=["topic_0000000000000017_methods--.html","clsDBInteractionBase Methods",""]; \ No newline at end of file +search_result['37']=["topic_0000000000000017_attached_props--.html","clsDBInteractionBase Attached Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_370.js b/Database/VSdoc/search--/s_370.js index bd1fa939..2402e829 100644 --- a/Database/VSdoc/search--/s_370.js +++ b/Database/VSdoc/search--/s_370.js @@ -1 +1 @@ -search_result['370']=["topic_0000000000000138.html","clsPartner.iNRFOG012 Property",""]; \ No newline at end of file +search_result['370']=["topic_0000000000000136.html","clsPartner.iNRPAR00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_371.js b/Database/VSdoc/search--/s_371.js index 8bcd28a9..fced46f9 100644 --- a/Database/VSdoc/search--/s_371.js +++ b/Database/VSdoc/search--/s_371.js @@ -1 +1 @@ -search_result['371']=["topic_0000000000000139.html","clsPartner.sBEBAN012 Property",""]; \ No newline at end of file +search_result['371']=["topic_0000000000000137.html","clsPartner.sBKPAR00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_372.js b/Database/VSdoc/search--/s_372.js index 9dd334ad..bf7430ca 100644 --- a/Database/VSdoc/search--/s_372.js +++ b/Database/VSdoc/search--/s_372.js @@ -1 +1 @@ -search_result['372']=["topic_000000000000013A.html","clsPartner.sNRFOG022 Property",""]; \ No newline at end of file +search_result['372']=["topic_0000000000000138.html","clsPartner.iNRFOG012 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_373.js b/Database/VSdoc/search--/s_373.js index ee2772c7..66f34639 100644 --- a/Database/VSdoc/search--/s_373.js +++ b/Database/VSdoc/search--/s_373.js @@ -1 +1 @@ -search_result['373']=["topic_000000000000013B.html","clsPartner.sBEBAN022 Property",""]; \ No newline at end of file +search_result['373']=["topic_0000000000000139.html","clsPartner.sBEBAN012 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_374.js b/Database/VSdoc/search--/s_374.js index a7a37823..ff3e4cb3 100644 --- a/Database/VSdoc/search--/s_374.js +++ b/Database/VSdoc/search--/s_374.js @@ -1 +1 @@ -search_result['374']=["topic_000000000000013C.html","clsPartner.sTXADZ012 Property",""]; \ No newline at end of file +search_result['374']=["topic_000000000000013A.html","clsPartner.sNRFOG022 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_375.js b/Database/VSdoc/search--/s_375.js index 6c8d7cb8..0a177697 100644 --- a/Database/VSdoc/search--/s_375.js +++ b/Database/VSdoc/search--/s_375.js @@ -1 +1 @@ -search_result['375']=["topic_000000000000013D.html","clsPartner.sTXADZ022 Property",""]; \ No newline at end of file +search_result['375']=["topic_000000000000013B.html","clsPartner.sBEBAN022 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_376.js b/Database/VSdoc/search--/s_376.js index 3ecda2ff..8622bf91 100644 --- a/Database/VSdoc/search--/s_376.js +++ b/Database/VSdoc/search--/s_376.js @@ -1 +1 @@ -search_result['376']=["topic_000000000000013E.html","clsPartner.sTXADZ032 Property",""]; \ No newline at end of file +search_result['376']=["topic_000000000000013C.html","clsPartner.sTXADZ012 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_377.js b/Database/VSdoc/search--/s_377.js index 61c7d027..c4bd7396 100644 --- a/Database/VSdoc/search--/s_377.js +++ b/Database/VSdoc/search--/s_377.js @@ -1 +1 @@ -search_result['377']=["topic_000000000000013F.html","clsPartner.sTXADZ042 Property",""]; \ No newline at end of file +search_result['377']=["topic_000000000000013D.html","clsPartner.sTXADZ022 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_378.js b/Database/VSdoc/search--/s_378.js index 97c08d5a..6b416fea 100644 --- a/Database/VSdoc/search--/s_378.js +++ b/Database/VSdoc/search--/s_378.js @@ -1 +1 @@ -search_result['378']=["topic_0000000000000140.html","clsPartner.sTXADZ052 Property",""]; \ No newline at end of file +search_result['378']=["topic_000000000000013E.html","clsPartner.sTXADZ032 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_379.js b/Database/VSdoc/search--/s_379.js index f198890e..1f270657 100644 --- a/Database/VSdoc/search--/s_379.js +++ b/Database/VSdoc/search--/s_379.js @@ -1 +1 @@ -search_result['379']=["topic_0000000000000141.html","clsPartner.sTXADZ062 Property",""]; \ No newline at end of file +search_result['379']=["topic_000000000000013F.html","clsPartner.sTXADZ042 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_38.js b/Database/VSdoc/search--/s_38.js index fdafcc93..c0e9fe01 100644 --- a/Database/VSdoc/search--/s_38.js +++ b/Database/VSdoc/search--/s_38.js @@ -1 +1 @@ -search_result['38']=["topic_0000000000000017_props--.html","clsDBInteractionBase Properties",""]; \ No newline at end of file +search_result['38']=["topic_0000000000000017_events--.html","clsDBInteractionBase Events",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_380.js b/Database/VSdoc/search--/s_380.js index 8d92c44e..55bce3ba 100644 --- a/Database/VSdoc/search--/s_380.js +++ b/Database/VSdoc/search--/s_380.js @@ -1 +1 @@ -search_result['380']=["topic_0000000000000142.html","clsPartner.sTXADZ072 Property",""]; \ No newline at end of file +search_result['380']=["topic_0000000000000140.html","clsPartner.sTXADZ052 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_381.js b/Database/VSdoc/search--/s_381.js index 2924cbe5..839b409e 100644 --- a/Database/VSdoc/search--/s_381.js +++ b/Database/VSdoc/search--/s_381.js @@ -1 +1 @@ -search_result['381']=["topic_0000000000000143.html","clsPartner.sNRPARAD Property",""]; \ No newline at end of file +search_result['381']=["topic_0000000000000141.html","clsPartner.sTXADZ062 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_382.js b/Database/VSdoc/search--/s_382.js index 2aabfa08..c9a695e9 100644 --- a/Database/VSdoc/search--/s_382.js +++ b/Database/VSdoc/search--/s_382.js @@ -1 +1 @@ -search_result['382']=["topic_0000000000000144.html","clsPartner.sNRADR00 Property",""]; \ No newline at end of file +search_result['382']=["topic_0000000000000142.html","clsPartner.sTXADZ072 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_383.js b/Database/VSdoc/search--/s_383.js index b841eb65..e63a2281 100644 --- a/Database/VSdoc/search--/s_383.js +++ b/Database/VSdoc/search--/s_383.js @@ -1 +1 @@ -search_result['383']=["topic_0000000000000145.html","clsPartner.sNRFOG011 Property",""]; \ No newline at end of file +search_result['383']=["topic_0000000000000143.html","clsPartner.sNRPARAD Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_384.js b/Database/VSdoc/search--/s_384.js index f699edd0..ff35ac43 100644 --- a/Database/VSdoc/search--/s_384.js +++ b/Database/VSdoc/search--/s_384.js @@ -1 +1 @@ -search_result['384']=["topic_0000000000000146.html","clsPartner.sBEBAN011 Property",""]; \ No newline at end of file +search_result['384']=["topic_0000000000000144.html","clsPartner.sNRADR00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_385.js b/Database/VSdoc/search--/s_385.js index 140e9549..649e9fe8 100644 --- a/Database/VSdoc/search--/s_385.js +++ b/Database/VSdoc/search--/s_385.js @@ -1 +1 @@ -search_result['385']=["topic_0000000000000147.html","clsPartner.sNRFOG21 Property",""]; \ No newline at end of file +search_result['385']=["topic_0000000000000145.html","clsPartner.sNRFOG011 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_386.js b/Database/VSdoc/search--/s_386.js index 25f9c51c..a2d3edba 100644 --- a/Database/VSdoc/search--/s_386.js +++ b/Database/VSdoc/search--/s_386.js @@ -1 +1 @@ -search_result['386']=["topic_0000000000000148.html","clsPartner.sBEBAN21 Property",""]; \ No newline at end of file +search_result['386']=["topic_0000000000000146.html","clsPartner.sBEBAN011 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_387.js b/Database/VSdoc/search--/s_387.js index 005d2246..b26bbe78 100644 --- a/Database/VSdoc/search--/s_387.js +++ b/Database/VSdoc/search--/s_387.js @@ -1 +1 @@ -search_result['387']=["topic_0000000000000149.html","clsPartner.sTXADZ011 Property",""]; \ No newline at end of file +search_result['387']=["topic_0000000000000147.html","clsPartner.sNRFOG21 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_388.js b/Database/VSdoc/search--/s_388.js index 4b6303bc..ea3f3f4c 100644 --- a/Database/VSdoc/search--/s_388.js +++ b/Database/VSdoc/search--/s_388.js @@ -1 +1 @@ -search_result['388']=["topic_000000000000014A.html","clsPartner.sTXADZ021 Property",""]; \ No newline at end of file +search_result['388']=["topic_0000000000000148.html","clsPartner.sBEBAN21 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_389.js b/Database/VSdoc/search--/s_389.js index 89781415..23c50d21 100644 --- a/Database/VSdoc/search--/s_389.js +++ b/Database/VSdoc/search--/s_389.js @@ -1 +1 @@ -search_result['389']=["topic_000000000000014B.html","clsPartner.sTXADZ031 Property",""]; \ No newline at end of file +search_result['389']=["topic_0000000000000149.html","clsPartner.sTXADZ011 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_39.js b/Database/VSdoc/search--/s_39.js index cdeb47a7..d886a47b 100644 --- a/Database/VSdoc/search--/s_39.js +++ b/Database/VSdoc/search--/s_39.js @@ -1 +1 @@ -search_result['39']=["topic_0000000000000017_vars--.html","clsDBInteractionBase Fields",""]; \ No newline at end of file +search_result['39']=["topic_0000000000000017_methods--.html","clsDBInteractionBase Methods",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_390.js b/Database/VSdoc/search--/s_390.js index 73e19489..c344a01c 100644 --- a/Database/VSdoc/search--/s_390.js +++ b/Database/VSdoc/search--/s_390.js @@ -1 +1 @@ -search_result['390']=["topic_000000000000014C.html","clsPartner.sTXADZ041 Property",""]; \ No newline at end of file +search_result['390']=["topic_000000000000014A.html","clsPartner.sTXADZ021 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_391.js b/Database/VSdoc/search--/s_391.js index 8a159749..90fcedb8 100644 --- a/Database/VSdoc/search--/s_391.js +++ b/Database/VSdoc/search--/s_391.js @@ -1 +1 @@ -search_result['391']=["topic_000000000000014D.html","clsPartner.sTXADZ051 Property",""]; \ No newline at end of file +search_result['391']=["topic_000000000000014B.html","clsPartner.sTXADZ031 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_392.js b/Database/VSdoc/search--/s_392.js index d1fe80ef..0aac6b77 100644 --- a/Database/VSdoc/search--/s_392.js +++ b/Database/VSdoc/search--/s_392.js @@ -1 +1 @@ -search_result['392']=["topic_000000000000014E.html","clsPartner.sTXADZ061 Property",""]; \ No newline at end of file +search_result['392']=["topic_000000000000014C.html","clsPartner.sTXADZ041 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_393.js b/Database/VSdoc/search--/s_393.js index d0a5f0f1..66f2901a 100644 --- a/Database/VSdoc/search--/s_393.js +++ b/Database/VSdoc/search--/s_393.js @@ -1 +1 @@ -search_result['393']=["topic_000000000000014F.html","clsPartner.sTXADZ071 Property",""]; \ No newline at end of file +search_result['393']=["topic_000000000000014D.html","clsPartner.sTXADZ051 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_394.js b/Database/VSdoc/search--/s_394.js index ff524dba..bcf085ec 100644 --- a/Database/VSdoc/search--/s_394.js +++ b/Database/VSdoc/search--/s_394.js @@ -1 +1 @@ -search_result['394']=["topic_0000000000000150.html","clsPartner.sCDBAL00 Property",""]; \ No newline at end of file +search_result['394']=["topic_000000000000014E.html","clsPartner.sTXADZ061 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_395.js b/Database/VSdoc/search--/s_395.js index 42c403ec..11dbd46e 100644 --- a/Database/VSdoc/search--/s_395.js +++ b/Database/VSdoc/search--/s_395.js @@ -1 +1 @@ -search_result['395']=["topic_0000000000000151.html","clsPartner.sCDVIG00 Property",""]; \ No newline at end of file +search_result['395']=["topic_000000000000014F.html","clsPartner.sTXADZ071 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_396.js b/Database/VSdoc/search--/s_396.js index 6dc5cb29..419fa621 100644 --- a/Database/VSdoc/search--/s_396.js +++ b/Database/VSdoc/search--/s_396.js @@ -1 +1 @@ -search_result['396']=["topic_0000000000000152.html","clsPartner.sSAVRS00 Property",""]; \ No newline at end of file +search_result['396']=["topic_0000000000000150.html","clsPartner.sCDBAL00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_397.js b/Database/VSdoc/search--/s_397.js index 3e3ec2cb..145d5487 100644 --- a/Database/VSdoc/search--/s_397.js +++ b/Database/VSdoc/search--/s_397.js @@ -1 +1 @@ -search_result['397']=["topic_0000000000000153.html","clsPartner.sTSMUT00 Property",""]; \ No newline at end of file +search_result['397']=["topic_0000000000000151.html","clsPartner.sCDVIG00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_398.js b/Database/VSdoc/search--/s_398.js index ce01729d..6ed4a2cb 100644 --- a/Database/VSdoc/search--/s_398.js +++ b/Database/VSdoc/search--/s_398.js @@ -1 +1 @@ -search_result['398']=["topic_0000000000000154.html","clsPartner.sVDMUTER Property",""]; \ No newline at end of file +search_result['398']=["topic_0000000000000152.html","clsPartner.sSAVRS00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_399.js b/Database/VSdoc/search--/s_399.js index 1bba03d0..2b4609d3 100644 --- a/Database/VSdoc/search--/s_399.js +++ b/Database/VSdoc/search--/s_399.js @@ -1 +1 @@ -search_result['399']=["topic_0000000000000155.html","clsPartner.sTXRes00 Property",""]; \ No newline at end of file +search_result['399']=["topic_0000000000000153.html","clsPartner.sTSMUT00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_4.js b/Database/VSdoc/search--/s_4.js index 6b31e30b..85e550a5 100644 --- a/Database/VSdoc/search--/s_4.js +++ b/Database/VSdoc/search--/s_4.js @@ -1 +1 @@ -search_result['4']=["topic_0000000000000001_methods--.html","clsConnectionProvider Methods",""]; \ No newline at end of file +search_result['4']=["topic_0000000000000001_attached_props--.html","clsConnectionProvider Attached Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_40.js b/Database/VSdoc/search--/s_40.js index c6578900..5f86f403 100644 --- a/Database/VSdoc/search--/s_40.js +++ b/Database/VSdoc/search--/s_40.js @@ -1 +1 @@ -search_result['40']=["topic_0000000000000018.html","m_scoMainConnection Field",""]; \ No newline at end of file +search_result['40']=["topic_0000000000000017_props--.html","clsDBInteractionBase Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_400.js b/Database/VSdoc/search--/s_400.js index 7e3a8cee..9c58313e 100644 --- a/Database/VSdoc/search--/s_400.js +++ b/Database/VSdoc/search--/s_400.js @@ -1 +1 @@ -search_result['400']=["topic_0000000000000156.html","clsPartner.bSaldiert Property",""]; \ No newline at end of file +search_result['400']=["topic_0000000000000154.html","clsPartner.sVDMUTER Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_401.js b/Database/VSdoc/search--/s_401.js index 45948932..ec27604e 100644 --- a/Database/VSdoc/search--/s_401.js +++ b/Database/VSdoc/search--/s_401.js @@ -1 +1 @@ -search_result['401']=["topic_0000000000000157.html","clsPartner.iAZEPL00 Property",""]; \ No newline at end of file +search_result['401']=["topic_0000000000000155.html","clsPartner.sTXRes00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_402.js b/Database/VSdoc/search--/s_402.js index adf8c961..bec6cfb3 100644 --- a/Database/VSdoc/search--/s_402.js +++ b/Database/VSdoc/search--/s_402.js @@ -1 +1 @@ -search_result['402']=["topic_0000000000000158.html","clsPartner.bCDVSA00 Property",""]; \ No newline at end of file +search_result['402']=["topic_0000000000000156.html","clsPartner.bSaldiert Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_403.js b/Database/VSdoc/search--/s_403.js index f839690f..7776f1f5 100644 --- a/Database/VSdoc/search--/s_403.js +++ b/Database/VSdoc/search--/s_403.js @@ -1 +1 @@ -search_result['403']=["topic_0000000000000159.html","clsPartner.daValidto Property",""]; \ No newline at end of file +search_result['403']=["topic_0000000000000157.html","clsPartner.iAZEPL00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_404.js b/Database/VSdoc/search--/s_404.js index f59088d6..be0e0b8b 100644 --- a/Database/VSdoc/search--/s_404.js +++ b/Database/VSdoc/search--/s_404.js @@ -1 +1 @@ -search_result['404']=["topic_000000000000015A.html","clsPartner.iNRDOM00 Property",""]; \ No newline at end of file +search_result['404']=["topic_0000000000000158.html","clsPartner.bCDVSA00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_405.js b/Database/VSdoc/search--/s_405.js index 92bc4a2a..3696e329 100644 --- a/Database/VSdoc/search--/s_405.js +++ b/Database/VSdoc/search--/s_405.js @@ -1 +1 @@ -search_result['405']=["topic_000000000000015B.html","clsPartner.iNRNAT01 Property",""]; \ No newline at end of file +search_result['405']=["topic_0000000000000159.html","clsPartner.daValidto Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_406.js b/Database/VSdoc/search--/s_406.js index b7d9e87f..453ec1d9 100644 --- a/Database/VSdoc/search--/s_406.js +++ b/Database/VSdoc/search--/s_406.js @@ -1 +1 @@ -search_result['406']=["topic_000000000000015C.html","clsPartner.daGebGruendDat Property",""]; \ No newline at end of file +search_result['406']=["topic_000000000000015A.html","clsPartner.iNRDOM00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_407.js b/Database/VSdoc/search--/s_407.js index ecf47ce0..6f62b7e5 100644 --- a/Database/VSdoc/search--/s_407.js +++ b/Database/VSdoc/search--/s_407.js @@ -1 +1 @@ -search_result['407']=["topic_000000000000015D.html","clsPartner.sCDNOG01 Property",""]; \ No newline at end of file +search_result['407']=["topic_000000000000015B.html","clsPartner.iNRNAT01 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_408.js b/Database/VSdoc/search--/s_408.js index 8352a7a8..b0c18c6d 100644 --- a/Database/VSdoc/search--/s_408.js +++ b/Database/VSdoc/search--/s_408.js @@ -1 +1 @@ -search_result['408']=["topic_000000000000015E.html","clsPartner.sCDPAW00 Property",""]; \ No newline at end of file +search_result['408']=["topic_000000000000015C.html","clsPartner.daGebGruendDat Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_409.js b/Database/VSdoc/search--/s_409.js index 92bbf99c..44339e1d 100644 --- a/Database/VSdoc/search--/s_409.js +++ b/Database/VSdoc/search--/s_409.js @@ -1 +1 @@ -search_result['409']=["topic_000000000000015F.html","clsPartner.iNRBEU01 Property",""]; \ No newline at end of file +search_result['409']=["topic_000000000000015D.html","clsPartner.sCDNOG01 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_41.js b/Database/VSdoc/search--/s_41.js index 125512f3..2f4f3e4c 100644 --- a/Database/VSdoc/search--/s_41.js +++ b/Database/VSdoc/search--/s_41.js @@ -1 +1 @@ -search_result['41']=["topic_0000000000000019.html","m_iRowsAffected Field",""]; \ No newline at end of file +search_result['41']=["topic_0000000000000017_vars--.html","clsDBInteractionBase Fields",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_410.js b/Database/VSdoc/search--/s_410.js index 031d7c66..b1d22f66 100644 --- a/Database/VSdoc/search--/s_410.js +++ b/Database/VSdoc/search--/s_410.js @@ -1 +1 @@ -search_result['410']=["topic_0000000000000160.html","clsPartner.iNRBEU02 Property",""]; \ No newline at end of file +search_result['410']=["topic_000000000000015E.html","clsPartner.sCDPAW00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_411.js b/Database/VSdoc/search--/s_411.js index dd1fee5a..a2644ebe 100644 --- a/Database/VSdoc/search--/s_411.js +++ b/Database/VSdoc/search--/s_411.js @@ -1 +1 @@ -search_result['411']=["topic_0000000000000161.html","clsPartner.sKurzname_Stamm Property",""]; \ No newline at end of file +search_result['411']=["topic_000000000000015F.html","clsPartner.iNRBEU01 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_412.js b/Database/VSdoc/search--/s_412.js index ea3e321b..5af48ebb 100644 --- a/Database/VSdoc/search--/s_412.js +++ b/Database/VSdoc/search--/s_412.js @@ -1 +1 @@ -search_result['412']=["topic_0000000000000162.html","clsPartner.bIsPerson Property",""]; \ No newline at end of file +search_result['412']=["topic_0000000000000160.html","clsPartner.iNRBEU02 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_413.js b/Database/VSdoc/search--/s_413.js index 0a7eb67e..d4c199a1 100644 --- a/Database/VSdoc/search--/s_413.js +++ b/Database/VSdoc/search--/s_413.js @@ -1 +1 @@ -search_result['413']=["topic_0000000000000163.html","clsPartner.bBoersenkotiert Property",""]; \ No newline at end of file +search_result['413']=["topic_0000000000000161.html","clsPartner.sKurzname_Stamm Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_414.js b/Database/VSdoc/search--/s_414.js index 0b4eb0cc..89f62aeb 100644 --- a/Database/VSdoc/search--/s_414.js +++ b/Database/VSdoc/search--/s_414.js @@ -1 +1 @@ -search_result['414']=["topic_0000000000000164.html","clsPartner.iLegal_form_id Property",""]; \ No newline at end of file +search_result['414']=["topic_0000000000000162.html","clsPartner.bIsPerson Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_415.js b/Database/VSdoc/search--/s_415.js index 6b461b5c..8047dd60 100644 --- a/Database/VSdoc/search--/s_415.js +++ b/Database/VSdoc/search--/s_415.js @@ -1 +1 @@ -search_result['415']=["topic_0000000000000165.html","clsPartner.iSector_id Property",""]; \ No newline at end of file +search_result['415']=["topic_0000000000000163.html","clsPartner.bBoersenkotiert Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_416.js b/Database/VSdoc/search--/s_416.js index 075b0960..c3b8d087 100644 --- a/Database/VSdoc/search--/s_416.js +++ b/Database/VSdoc/search--/s_416.js @@ -1 +1 @@ -search_result['416']=["topic_0000000000000166.html","clsPartner.iRate_intl_id Property",""]; \ No newline at end of file +search_result['416']=["topic_0000000000000164.html","clsPartner.iLegal_form_id Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_417.js b/Database/VSdoc/search--/s_417.js index b29266f5..cd7e0857 100644 --- a/Database/VSdoc/search--/s_417.js +++ b/Database/VSdoc/search--/s_417.js @@ -1 +1 @@ -search_result['417']=["topic_0000000000000167.html","clsPartner.daRate_intl_date Property",""]; \ No newline at end of file +search_result['417']=["topic_0000000000000165.html","clsPartner.iSector_id Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_418.js b/Database/VSdoc/search--/s_418.js index c5d945eb..044720d1 100644 --- a/Database/VSdoc/search--/s_418.js +++ b/Database/VSdoc/search--/s_418.js @@ -1 +1 @@ -search_result['418']=["topic_0000000000000168.html","clsPartner.sName_formated Property",""]; \ No newline at end of file +search_result['418']=["topic_0000000000000166.html","clsPartner.iRate_intl_id Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_419.js b/Database/VSdoc/search--/s_419.js index 6814304d..1551de63 100644 --- a/Database/VSdoc/search--/s_419.js +++ b/Database/VSdoc/search--/s_419.js @@ -1 +1 @@ -search_result['419']=["topic_0000000000000169.html","EDOKA_Database Namespace",""]; \ No newline at end of file +search_result['419']=["topic_0000000000000167.html","clsPartner.daRate_intl_date Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_42.js b/Database/VSdoc/search--/s_42.js index 91b961ac..60dec841 100644 --- a/Database/VSdoc/search--/s_42.js +++ b/Database/VSdoc/search--/s_42.js @@ -1 +1 @@ -search_result['42']=["topic_000000000000001A.html","m_iErrorCode Field",""]; \ No newline at end of file +search_result['42']=["topic_0000000000000018.html","m_scoMainConnection Field",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_420.js b/Database/VSdoc/search--/s_420.js index 14dd54dc..2152d702 100644 --- a/Database/VSdoc/search--/s_420.js +++ b/Database/VSdoc/search--/s_420.js @@ -1 +1 @@ -search_result['420']=["topic_000000000000016A.html","EDOKA_DB Class",""]; \ No newline at end of file +search_result['420']=["topic_0000000000000168.html","clsPartner.sName_formated Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_421.js b/Database/VSdoc/search--/s_421.js index 136a4a5f..be501d1a 100644 --- a/Database/VSdoc/search--/s_421.js +++ b/Database/VSdoc/search--/s_421.js @@ -1 +1 @@ -search_result['421']=["topic_000000000000016A_attached_props--.html","EDOKA_DB Attached Properties",""]; \ No newline at end of file +search_result['421']=["topic_0000000000000169.html","Database Namespace",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_422.js b/Database/VSdoc/search--/s_422.js index e99ae6ac..37855c5f 100644 --- a/Database/VSdoc/search--/s_422.js +++ b/Database/VSdoc/search--/s_422.js @@ -1 +1 @@ -search_result['422']=["topic_000000000000016A_events--.html","EDOKA_DB Events",""]; \ No newline at end of file +search_result['422']=["topic_000000000000016A.html","DB Class",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_423.js b/Database/VSdoc/search--/s_423.js index c25357ee..dc934f90 100644 --- a/Database/VSdoc/search--/s_423.js +++ b/Database/VSdoc/search--/s_423.js @@ -1 +1 @@ -search_result['423']=["topic_000000000000016A_methods--.html","EDOKA_DB Methods",""]; \ No newline at end of file +search_result['423']=["topic_000000000000016A_attached_props--.html","DB Attached Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_424.js b/Database/VSdoc/search--/s_424.js index b9623c3d..7347bebe 100644 --- a/Database/VSdoc/search--/s_424.js +++ b/Database/VSdoc/search--/s_424.js @@ -1 +1 @@ -search_result['424']=["topic_000000000000016A_props--.html","EDOKA_DB Properties",""]; \ No newline at end of file +search_result['424']=["topic_000000000000016A_events--.html","DB Events",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_425.js b/Database/VSdoc/search--/s_425.js index 7253686d..5abda99e 100644 --- a/Database/VSdoc/search--/s_425.js +++ b/Database/VSdoc/search--/s_425.js @@ -1 +1 @@ -search_result['425']=["topic_000000000000016A_vars--.html","EDOKA_DB Fields",""]; \ No newline at end of file +search_result['425']=["topic_000000000000016A_methods--.html","DB Methods",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_426.js b/Database/VSdoc/search--/s_426.js index 48d38bf0..e5938e25 100644 --- a/Database/VSdoc/search--/s_426.js +++ b/Database/VSdoc/search--/s_426.js @@ -1 +1 @@ -search_result['426']=["topic_000000000000016B.html","connectionstring Field",""]; \ No newline at end of file +search_result['426']=["topic_000000000000016A_props--.html","DB Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_427.js b/Database/VSdoc/search--/s_427.js index 24e148f2..00814b7c 100644 --- a/Database/VSdoc/search--/s_427.js +++ b/Database/VSdoc/search--/s_427.js @@ -1 +1 @@ -search_result['427']=["topic_000000000000016C.html","dsdaten Field",""]; \ No newline at end of file +search_result['427']=["topic_000000000000016A_vars--.html","DB Fields",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_428.js b/Database/VSdoc/search--/s_428.js index 1c1ae1da..ec0f1645 100644 --- a/Database/VSdoc/search--/s_428.js +++ b/Database/VSdoc/search--/s_428.js @@ -1 +1 @@ -search_result['428']=["topic_000000000000016D.html","EDOKA_DB(String) Constructor",""]; \ No newline at end of file +search_result['428']=["topic_000000000000016B.html","connectionstring Field",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_429.js b/Database/VSdoc/search--/s_429.js index 1f717c22..49ae9369 100644 --- a/Database/VSdoc/search--/s_429.js +++ b/Database/VSdoc/search--/s_429.js @@ -1 +1 @@ -search_result['429']=["topic_000000000000016D_overloads--.html","EDOKA_DB Constructor",""]; \ No newline at end of file +search_result['429']=["topic_000000000000016C.html","dsdaten Field",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_43.js b/Database/VSdoc/search--/s_43.js index a4b91919..6f2e0036 100644 --- a/Database/VSdoc/search--/s_43.js +++ b/Database/VSdoc/search--/s_43.js @@ -1 +1 @@ -search_result['43']=["topic_000000000000001B.html","m_bMainConnectionIsCreatedLocal Field",""]; \ No newline at end of file +search_result['43']=["topic_0000000000000019.html","m_iRowsAffected Field",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_430.js b/Database/VSdoc/search--/s_430.js index 9d0d6526..1c72de77 100644 --- a/Database/VSdoc/search--/s_430.js +++ b/Database/VSdoc/search--/s_430.js @@ -1 +1 @@ -search_result['430']=["topic_000000000000016E.html","EDOKA_DB Constructor",""]; \ No newline at end of file +search_result['430']=["topic_000000000000016D.html","DB(String) Constructor",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_431.js b/Database/VSdoc/search--/s_431.js index 320e721e..f4df1bce 100644 --- a/Database/VSdoc/search--/s_431.js +++ b/Database/VSdoc/search--/s_431.js @@ -1 +1 @@ -search_result['431']=["topic_000000000000016E_overloads--.html","EDOKA_DB Constructor",""]; \ No newline at end of file +search_result['431']=["topic_000000000000016D_overloads--.html","DB Constructor",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_432.js b/Database/VSdoc/search--/s_432.js index 3a0319ca..119e3daa 100644 --- a/Database/VSdoc/search--/s_432.js +++ b/Database/VSdoc/search--/s_432.js @@ -1 +1 @@ -search_result['432']=["topic_000000000000016F.html","EDOKA_DB.add_parameter Method",""]; \ No newline at end of file +search_result['432']=["topic_000000000000016E.html","DB Constructor",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_433.js b/Database/VSdoc/search--/s_433.js index 5e98f76c..3f754718 100644 --- a/Database/VSdoc/search--/s_433.js +++ b/Database/VSdoc/search--/s_433.js @@ -1 +1 @@ -search_result['433']=["topic_0000000000000170.html","EDOKA_DB.clear_parameter Method",""]; \ No newline at end of file +search_result['433']=["topic_000000000000016E_overloads--.html","DB Constructor",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_434.js b/Database/VSdoc/search--/s_434.js index dbce9051..2ddbb7ea 100644 --- a/Database/VSdoc/search--/s_434.js +++ b/Database/VSdoc/search--/s_434.js @@ -1 +1 @@ -search_result['434']=["topic_0000000000000171.html","EDOKA_DB.Get_Tabledata Method",""]; \ No newline at end of file +search_result['434']=["topic_000000000000016F.html","DB.add_parameter Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_435.js b/Database/VSdoc/search--/s_435.js index c3dad0fa..45313cab 100644 --- a/Database/VSdoc/search--/s_435.js +++ b/Database/VSdoc/search--/s_435.js @@ -1 +1 @@ -search_result['435']=["topic_0000000000000172.html","EDOKA_DB.Exec_SQL Method",""]; \ No newline at end of file +search_result['435']=["topic_0000000000000170.html","DB.clear_parameter Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_436.js b/Database/VSdoc/search--/s_436.js index ef3ce98e..8ea709f3 100644 --- a/Database/VSdoc/search--/s_436.js +++ b/Database/VSdoc/search--/s_436.js @@ -1 +1 @@ -search_result['436']=["topic_0000000000000173.html","EDOKA_DB.Update_Data Method",""]; \ No newline at end of file +search_result['436']=["topic_0000000000000171.html","DB.Get_Tabledata Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_437.js b/Database/VSdoc/search--/s_437.js index 7cf5211e..c52d1ebb 100644 --- a/Database/VSdoc/search--/s_437.js +++ b/Database/VSdoc/search--/s_437.js @@ -1 +1 @@ -search_result['437']=["topic_0000000000000174.html","EDOKA_DB.get_dbkey Method",""]; \ No newline at end of file +search_result['437']=["topic_0000000000000172.html","DB.Exec_SQL Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_438.js b/Database/VSdoc/search--/s_438.js index c43485d8..10082d83 100644 --- a/Database/VSdoc/search--/s_438.js +++ b/Database/VSdoc/search--/s_438.js @@ -1 +1 @@ -search_result['438']=["topic_0000000000000175.html","EDOKA_DB.Get_Mitarbeiternr Method",""]; \ No newline at end of file +search_result['438']=["topic_0000000000000173.html","DB.Update_Data Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_439.js b/Database/VSdoc/search--/s_439.js index adf406a4..79f68422 100644 --- a/Database/VSdoc/search--/s_439.js +++ b/Database/VSdoc/search--/s_439.js @@ -1 +1 @@ -search_result['439']=["topic_0000000000000176.html","EDOKA_DB.Get_Vorlage_By_DokumentID Method",""]; \ No newline at end of file +search_result['439']=["topic_0000000000000174.html","DB.get_dbkey Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_44.js b/Database/VSdoc/search--/s_44.js index 8c8fe861..1cbdb70f 100644 --- a/Database/VSdoc/search--/s_44.js +++ b/Database/VSdoc/search--/s_44.js @@ -1 +1 @@ -search_result['44']=["topic_000000000000001C.html","m_cpMainConnectionProvider Field",""]; \ No newline at end of file +search_result['44']=["topic_000000000000001A.html","m_iErrorCode Field",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_440.js b/Database/VSdoc/search--/s_440.js index 5e662340..b590aa2c 100644 --- a/Database/VSdoc/search--/s_440.js +++ b/Database/VSdoc/search--/s_440.js @@ -1 +1 @@ -search_result['440']=["topic_0000000000000177.html","EDOKA_DB.get_vorlage_to_file Method",""]; \ No newline at end of file +search_result['440']=["topic_0000000000000175.html","DB.Get_Mitarbeiternr Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_441.js b/Database/VSdoc/search--/s_441.js index 10459ebb..81d2896e 100644 --- a/Database/VSdoc/search--/s_441.js +++ b/Database/VSdoc/search--/s_441.js @@ -1 +1 @@ -search_result['441']=["topic_0000000000000178.html","EDOKA_DB.Get_ApplicationType_from_Vorlage Method",""]; \ No newline at end of file +search_result['441']=["topic_0000000000000176.html","DB.Get_Vorlage_By_DokumentID Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_442.js b/Database/VSdoc/search--/s_442.js index 4331ebe2..2cf0afbf 100644 --- a/Database/VSdoc/search--/s_442.js +++ b/Database/VSdoc/search--/s_442.js @@ -1 +1 @@ -search_result['442']=["topic_0000000000000179.html","EDOKA_DB.Create_EDOKA_Doc Method",""]; \ No newline at end of file +search_result['442']=["topic_0000000000000177.html","DB.get_vorlage_to_file Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_443.js b/Database/VSdoc/search--/s_443.js index 54a9df4b..5221b22d 100644 --- a/Database/VSdoc/search--/s_443.js +++ b/Database/VSdoc/search--/s_443.js @@ -1 +1 @@ -search_result['443']=["topic_000000000000017A.html","EDOKA_DB.COLD_Index_Sichern Method",""]; \ No newline at end of file +search_result['443']=["topic_0000000000000178.html","DB.Get_ApplicationType_from_Vorlage Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_444.js b/Database/VSdoc/search--/s_444.js index dec12fcd..5074e12b 100644 --- a/Database/VSdoc/search--/s_444.js +++ b/Database/VSdoc/search--/s_444.js @@ -1 +1 @@ -search_result['444']=["topic_000000000000017B.html","EDOKA_DB.Status_Erstellen Method",""]; \ No newline at end of file +search_result['444']=["topic_0000000000000179.html","DB.Create_EDOKA_Doc Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_445.js b/Database/VSdoc/search--/s_445.js index 11b525b7..bcb4582f 100644 --- a/Database/VSdoc/search--/s_445.js +++ b/Database/VSdoc/search--/s_445.js @@ -1 +1 @@ -search_result['445']=["topic_000000000000017C.html","EDOKA_DB.Get_Partnerstruktur Method",""]; \ No newline at end of file +search_result['445']=["topic_000000000000017A.html","DB.COLD_Index_Sichern Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_446.js b/Database/VSdoc/search--/s_446.js index 2112a1b8..bf28fffa 100644 --- a/Database/VSdoc/search--/s_446.js +++ b/Database/VSdoc/search--/s_446.js @@ -1 +1 @@ -search_result['446']=["topic_000000000000017D.html","EDOKA_DB.Get_Dokumente Method",""]; \ No newline at end of file +search_result['446']=["topic_000000000000017B.html","DB.Status_Erstellen Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_447.js b/Database/VSdoc/search--/s_447.js index 39e1e671..8685fe10 100644 --- a/Database/VSdoc/search--/s_447.js +++ b/Database/VSdoc/search--/s_447.js @@ -1 +1 @@ -search_result['447']=["topic_000000000000017E.html","EDOKA_DB.GetDocumentAsBase64 Method",""]; \ No newline at end of file +search_result['447']=["topic_000000000000017C.html","DB.Get_Partnerstruktur Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_448.js b/Database/VSdoc/search--/s_448.js index 60938fc0..6b0d079a 100644 --- a/Database/VSdoc/search--/s_448.js +++ b/Database/VSdoc/search--/s_448.js @@ -1 +1 @@ -search_result['448']=["topic_000000000000017F.html","EDOKA_DB.Save_To_DB Method",""]; \ No newline at end of file +search_result['448']=["topic_000000000000017D.html","DB.Get_Dokumente Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_449.js b/Database/VSdoc/search--/s_449.js index 3ee68729..3f2ed9c3 100644 --- a/Database/VSdoc/search--/s_449.js +++ b/Database/VSdoc/search--/s_449.js @@ -1 +1 @@ -search_result['449']=["topic_0000000000000180.html","EDOKA_DB.Get_DokumentWertList Method",""]; \ No newline at end of file +search_result['449']=["topic_000000000000017E.html","DB.GetDocumentAsBase64 Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_45.js b/Database/VSdoc/search--/s_45.js index a2c27953..4f88ef8a 100644 --- a/Database/VSdoc/search--/s_45.js +++ b/Database/VSdoc/search--/s_45.js @@ -1 +1 @@ -search_result['45']=["topic_000000000000001D.html","clsDBInteractionBase Constructor",""]; \ No newline at end of file +search_result['45']=["topic_000000000000001B.html","m_bMainConnectionIsCreatedLocal Field",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_450.js b/Database/VSdoc/search--/s_450.js index 1dc10aff..12f50f5d 100644 --- a/Database/VSdoc/search--/s_450.js +++ b/Database/VSdoc/search--/s_450.js @@ -1 +1 @@ -search_result['450']=["topic_0000000000000181.html","EDOKA_DB.BuildAllFieldsSQL Method",""]; \ No newline at end of file +search_result['450']=["topic_000000000000017F.html","DB.Save_To_DB Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_451.js b/Database/VSdoc/search--/s_451.js index a3e42be0..8f478f15 100644 --- a/Database/VSdoc/search--/s_451.js +++ b/Database/VSdoc/search--/s_451.js @@ -1 +1 @@ -search_result['451']=["topic_0000000000000182.html","EDOKA_DB.BuildInsertSQL Method",""]; \ No newline at end of file +search_result['451']=["topic_0000000000000180.html","DB.Get_DokumentWertList Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_452.js b/Database/VSdoc/search--/s_452.js index 9189c710..bce530f7 100644 --- a/Database/VSdoc/search--/s_452.js +++ b/Database/VSdoc/search--/s_452.js @@ -1 +1 @@ -search_result['452']=["topic_0000000000000183.html","EDOKA_DB.InsertParameter Method",""]; \ No newline at end of file +search_result['452']=["topic_0000000000000181.html","DB.BuildAllFieldsSQL Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_453.js b/Database/VSdoc/search--/s_453.js index aad15f2b..625f6c4b 100644 --- a/Database/VSdoc/search--/s_453.js +++ b/Database/VSdoc/search--/s_453.js @@ -1 +1 @@ -search_result['453']=["topic_0000000000000184.html","EDOKA_DB.CreateInsertCommand Method",""]; \ No newline at end of file +search_result['453']=["topic_0000000000000182.html","DB.BuildInsertSQL Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_454.js b/Database/VSdoc/search--/s_454.js index f6295049..e1e19a66 100644 --- a/Database/VSdoc/search--/s_454.js +++ b/Database/VSdoc/search--/s_454.js @@ -1 +1 @@ -search_result['454']=["topic_0000000000000185.html","EDOKA_DB.InsertDataRow Method",""]; \ No newline at end of file +search_result['454']=["topic_0000000000000183.html","DB.InsertParameter Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_455.js b/Database/VSdoc/search--/s_455.js index 33aab5cb..843b8672 100644 --- a/Database/VSdoc/search--/s_455.js +++ b/Database/VSdoc/search--/s_455.js @@ -1 +1 @@ -search_result['455']=["topic_0000000000000186.html","EDOKA_Database Reference ",""]; \ No newline at end of file +search_result['455']=["topic_0000000000000184.html","DB.CreateInsertCommand Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_456.js b/Database/VSdoc/search--/s_456.js new file mode 100644 index 00000000..9ee01c67 --- /dev/null +++ b/Database/VSdoc/search--/s_456.js @@ -0,0 +1 @@ +search_result['456']=["topic_0000000000000185.html","DB.InsertDataRow Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_457.js b/Database/VSdoc/search--/s_457.js new file mode 100644 index 00000000..9193d02a --- /dev/null +++ b/Database/VSdoc/search--/s_457.js @@ -0,0 +1 @@ +search_result['457']=["topic_0000000000000186.html","Database Reference ",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_46.js b/Database/VSdoc/search--/s_46.js index e3a776c4..8fc0f86f 100644 --- a/Database/VSdoc/search--/s_46.js +++ b/Database/VSdoc/search--/s_46.js @@ -1 +1 @@ -search_result['46']=["topic_000000000000001E.html","clsDBInteractionBase.Dispose Method","Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen."]; \ No newline at end of file +search_result['46']=["topic_000000000000001C.html","m_cpMainConnectionProvider Field",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_47.js b/Database/VSdoc/search--/s_47.js index d2f0334e..659576be 100644 --- a/Database/VSdoc/search--/s_47.js +++ b/Database/VSdoc/search--/s_47.js @@ -1 +1 @@ -search_result['47']=["topic_000000000000001E_overloads--.html","clsDBInteractionBase.Dispose Method","Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen."]; \ No newline at end of file +search_result['47']=["topic_000000000000001D.html","clsDBInteractionBase Constructor",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_48.js b/Database/VSdoc/search--/s_48.js index 430871cf..aa62868a 100644 --- a/Database/VSdoc/search--/s_48.js +++ b/Database/VSdoc/search--/s_48.js @@ -1 +1 @@ -search_result['48']=["topic_000000000000001F.html","clsDBInteractionBase.Dispose (Boolean) Method",""]; \ No newline at end of file +search_result['48']=["topic_000000000000001E.html","clsDBInteractionBase.Dispose Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_49.js b/Database/VSdoc/search--/s_49.js index abd401b7..29b0a50f 100644 --- a/Database/VSdoc/search--/s_49.js +++ b/Database/VSdoc/search--/s_49.js @@ -1 +1 @@ -search_result['49']=["topic_000000000000001F_overloads--.html","clsDBInteractionBase.Dispose Method",""]; \ No newline at end of file +search_result['49']=["topic_000000000000001E_overloads--.html","clsDBInteractionBase.Dispose Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_5.js b/Database/VSdoc/search--/s_5.js index 675d64bb..545b7a85 100644 --- a/Database/VSdoc/search--/s_5.js +++ b/Database/VSdoc/search--/s_5.js @@ -1 +1 @@ -search_result['5']=["topic_0000000000000001_props--.html","clsConnectionProvider Properties",""]; \ No newline at end of file +search_result['5']=["topic_0000000000000001_events--.html","clsConnectionProvider Events",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_50.js b/Database/VSdoc/search--/s_50.js index 318a4f6c..aed76770 100644 --- a/Database/VSdoc/search--/s_50.js +++ b/Database/VSdoc/search--/s_50.js @@ -1 +1 @@ -search_result['50']=["topic_0000000000000020.html","clsDBInteractionBase.Insert Method",""]; \ No newline at end of file +search_result['50']=["topic_000000000000001F.html","clsDBInteractionBase.Dispose (Boolean) Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_51.js b/Database/VSdoc/search--/s_51.js index 943ccbbe..97754af3 100644 --- a/Database/VSdoc/search--/s_51.js +++ b/Database/VSdoc/search--/s_51.js @@ -1 +1 @@ -search_result['51']=["topic_0000000000000021.html","clsDBInteractionBase.Delete Method",""]; \ No newline at end of file +search_result['51']=["topic_000000000000001F_overloads--.html","clsDBInteractionBase.Dispose Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_52.js b/Database/VSdoc/search--/s_52.js index d80b671d..90540ed7 100644 --- a/Database/VSdoc/search--/s_52.js +++ b/Database/VSdoc/search--/s_52.js @@ -1 +1 @@ -search_result['52']=["topic_0000000000000022.html","clsDBInteractionBase.Update Method",""]; \ No newline at end of file +search_result['52']=["topic_0000000000000020.html","clsDBInteractionBase.Insert Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_53.js b/Database/VSdoc/search--/s_53.js index 4a9e785c..cec7066e 100644 --- a/Database/VSdoc/search--/s_53.js +++ b/Database/VSdoc/search--/s_53.js @@ -1 +1 @@ -search_result['53']=["topic_0000000000000023.html","clsDBInteractionBase.SelectOne Method",""]; \ No newline at end of file +search_result['53']=["topic_0000000000000021.html","clsDBInteractionBase.Delete Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_54.js b/Database/VSdoc/search--/s_54.js index ca874520..116a03d7 100644 --- a/Database/VSdoc/search--/s_54.js +++ b/Database/VSdoc/search--/s_54.js @@ -1 +1 @@ -search_result['54']=["topic_0000000000000024.html","clsDBInteractionBase.SelectAll Method",""]; \ No newline at end of file +search_result['54']=["topic_0000000000000022.html","clsDBInteractionBase.Update Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_55.js b/Database/VSdoc/search--/s_55.js index 6ca98931..f8d3c832 100644 --- a/Database/VSdoc/search--/s_55.js +++ b/Database/VSdoc/search--/s_55.js @@ -1 +1 @@ -search_result['55']=["topic_0000000000000025.html","clsDBInteractionBase.cpMainConnectionProvider Property",""]; \ No newline at end of file +search_result['55']=["topic_0000000000000023.html","clsDBInteractionBase.SelectOne Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_56.js b/Database/VSdoc/search--/s_56.js index efb4a53f..81f3bd54 100644 --- a/Database/VSdoc/search--/s_56.js +++ b/Database/VSdoc/search--/s_56.js @@ -1 +1 @@ -search_result['56']=["topic_0000000000000026.html","clsDBInteractionBase.iErrorCode Property",""]; \ No newline at end of file +search_result['56']=["topic_0000000000000024.html","clsDBInteractionBase.SelectAll Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_57.js b/Database/VSdoc/search--/s_57.js index 081cbd94..ce32ddc1 100644 --- a/Database/VSdoc/search--/s_57.js +++ b/Database/VSdoc/search--/s_57.js @@ -1 +1 @@ -search_result['57']=["topic_0000000000000027.html","clsDBInteractionBase.sConnectionString Property",""]; \ No newline at end of file +search_result['57']=["topic_0000000000000025.html","clsDBInteractionBase.cpMainConnectionProvider Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_58.js b/Database/VSdoc/search--/s_58.js index b7925f72..44fd7ec5 100644 --- a/Database/VSdoc/search--/s_58.js +++ b/Database/VSdoc/search--/s_58.js @@ -1 +1 @@ -search_result['58']=["topic_0000000000000028.html","clsDBInteractionBase.iRowsAffected Property",""]; \ No newline at end of file +search_result['58']=["topic_0000000000000026.html","clsDBInteractionBase.iErrorCode Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_59.js b/Database/VSdoc/search--/s_59.js index bc26d203..5b094ba1 100644 --- a/Database/VSdoc/search--/s_59.js +++ b/Database/VSdoc/search--/s_59.js @@ -1 +1 @@ -search_result['59']=["topic_0000000000000029.html","clsDokument Class",""]; \ No newline at end of file +search_result['59']=["topic_0000000000000027.html","clsDBInteractionBase.sConnectionString Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_6.js b/Database/VSdoc/search--/s_6.js index d855b40a..911950c2 100644 --- a/Database/VSdoc/search--/s_6.js +++ b/Database/VSdoc/search--/s_6.js @@ -1 +1 @@ -search_result['6']=["topic_0000000000000001_vars--.html","clsConnectionProvider Fields",""]; \ No newline at end of file +search_result['6']=["topic_0000000000000001_methods--.html","clsConnectionProvider Methods",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_60.js b/Database/VSdoc/search--/s_60.js index ea7ca8be..2ca1274c 100644 --- a/Database/VSdoc/search--/s_60.js +++ b/Database/VSdoc/search--/s_60.js @@ -1 +1 @@ -search_result['60']=["topic_0000000000000029_attached_props--.html","clsDokument Attached Properties",""]; \ No newline at end of file +search_result['60']=["topic_0000000000000028.html","clsDBInteractionBase.iRowsAffected Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_61.js b/Database/VSdoc/search--/s_61.js index 1c0cb559..5277df43 100644 --- a/Database/VSdoc/search--/s_61.js +++ b/Database/VSdoc/search--/s_61.js @@ -1 +1 @@ -search_result['61']=["topic_0000000000000029_events--.html","clsDokument Events",""]; \ No newline at end of file +search_result['61']=["topic_0000000000000029.html","clsDokument Class",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_62.js b/Database/VSdoc/search--/s_62.js index 11d9e68b..ba51ace1 100644 --- a/Database/VSdoc/search--/s_62.js +++ b/Database/VSdoc/search--/s_62.js @@ -1 +1 @@ -search_result['62']=["topic_0000000000000029_methods--.html","clsDokument Methods",""]; \ No newline at end of file +search_result['62']=["topic_0000000000000029_attached_props--.html","clsDokument Attached Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_63.js b/Database/VSdoc/search--/s_63.js index 80a2b0f7..b3373ba2 100644 --- a/Database/VSdoc/search--/s_63.js +++ b/Database/VSdoc/search--/s_63.js @@ -1 +1 @@ -search_result['63']=["topic_0000000000000029_props--.html","clsDokument Properties",""]; \ No newline at end of file +search_result['63']=["topic_0000000000000029_events--.html","clsDokument Events",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_64.js b/Database/VSdoc/search--/s_64.js index 440c796b..ba5c13f9 100644 --- a/Database/VSdoc/search--/s_64.js +++ b/Database/VSdoc/search--/s_64.js @@ -1 +1 @@ -search_result['64']=["topic_0000000000000029_vars--.html","clsDokument Fields",""]; \ No newline at end of file +search_result['64']=["topic_0000000000000029_methods--.html","clsDokument Methods",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_65.js b/Database/VSdoc/search--/s_65.js index 192821b1..d5180181 100644 --- a/Database/VSdoc/search--/s_65.js +++ b/Database/VSdoc/search--/s_65.js @@ -1 +1 @@ -search_result['65']=["topic_000000000000002A.html","clsDokument Constructor",""]; \ No newline at end of file +search_result['65']=["topic_0000000000000029_props--.html","clsDokument Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_66.js b/Database/VSdoc/search--/s_66.js index 0929e70e..e8c18ada 100644 --- a/Database/VSdoc/search--/s_66.js +++ b/Database/VSdoc/search--/s_66.js @@ -1 +1 @@ -search_result['66']=["topic_000000000000002B.html","clsDokument.Insert Method",""]; \ No newline at end of file +search_result['66']=["topic_0000000000000029_vars--.html","clsDokument Fields",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_67.js b/Database/VSdoc/search--/s_67.js index d73cc449..e6b28e50 100644 --- a/Database/VSdoc/search--/s_67.js +++ b/Database/VSdoc/search--/s_67.js @@ -1 +1 @@ -search_result['67']=["topic_000000000000002C.html","clsDokument.Update Method",""]; \ No newline at end of file +search_result['67']=["topic_000000000000002A.html","clsDokument Constructor",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_68.js b/Database/VSdoc/search--/s_68.js index 20830f62..1022c13e 100644 --- a/Database/VSdoc/search--/s_68.js +++ b/Database/VSdoc/search--/s_68.js @@ -1 +1 @@ -search_result['68']=["topic_000000000000002D.html","clsDokument.Delete Method",""]; \ No newline at end of file +search_result['68']=["topic_000000000000002B.html","clsDokument.Insert Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_69.js b/Database/VSdoc/search--/s_69.js index 0ebac8cd..e7175865 100644 --- a/Database/VSdoc/search--/s_69.js +++ b/Database/VSdoc/search--/s_69.js @@ -1 +1 @@ -search_result['69']=["topic_000000000000002E.html","clsDokument.SelectOne Method",""]; \ No newline at end of file +search_result['69']=["topic_000000000000002C.html","clsDokument.Update Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_7.js b/Database/VSdoc/search--/s_7.js index 12af3c48..56042a48 100644 --- a/Database/VSdoc/search--/s_7.js +++ b/Database/VSdoc/search--/s_7.js @@ -1 +1 @@ -search_result['7']=["topic_0000000000000002.html","clsConnectionProvider Constructor",""]; \ No newline at end of file +search_result['7']=["topic_0000000000000001_props--.html","clsConnectionProvider Properties",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_70.js b/Database/VSdoc/search--/s_70.js index d0c38a1c..ca74b342 100644 --- a/Database/VSdoc/search--/s_70.js +++ b/Database/VSdoc/search--/s_70.js @@ -1 +1 @@ -search_result['70']=["topic_000000000000002F.html","clsDokument.SelectAll Method",""]; \ No newline at end of file +search_result['70']=["topic_000000000000002D.html","clsDokument.Delete Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_71.js b/Database/VSdoc/search--/s_71.js index ed85a46a..898ec0b8 100644 --- a/Database/VSdoc/search--/s_71.js +++ b/Database/VSdoc/search--/s_71.js @@ -1 +1 @@ -search_result['71']=["topic_0000000000000030.html","clsDokument.sDokumentid Property",""]; \ No newline at end of file +search_result['71']=["topic_000000000000002E.html","clsDokument.SelectOne Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_72.js b/Database/VSdoc/search--/s_72.js index 0b5fb667..937223de 100644 --- a/Database/VSdoc/search--/s_72.js +++ b/Database/VSdoc/search--/s_72.js @@ -1 +1 @@ -search_result['72']=["topic_0000000000000031.html","clsDokument.iMitarbeiternr Property",""]; \ No newline at end of file +search_result['72']=["topic_000000000000002F.html","clsDokument.SelectAll Method",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_73.js b/Database/VSdoc/search--/s_73.js index 510184e3..d21a3ee0 100644 --- a/Database/VSdoc/search--/s_73.js +++ b/Database/VSdoc/search--/s_73.js @@ -1 +1 @@ -search_result['73']=["topic_0000000000000032.html","clsDokument.iMitarbeiternr1 Property",""]; \ No newline at end of file +search_result['73']=["topic_0000000000000030.html","clsDokument.sDokumentid Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_74.js b/Database/VSdoc/search--/s_74.js index 5c0dd2ff..71d9a621 100644 --- a/Database/VSdoc/search--/s_74.js +++ b/Database/VSdoc/search--/s_74.js @@ -1 +1 @@ -search_result['74']=["topic_0000000000000033.html","clsDokument.iNrpar00 Property",""]; \ No newline at end of file +search_result['74']=["topic_0000000000000031.html","clsDokument.iMitarbeiternr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_75.js b/Database/VSdoc/search--/s_75.js index d77a0d37..53266d5d 100644 --- a/Database/VSdoc/search--/s_75.js +++ b/Database/VSdoc/search--/s_75.js @@ -1 +1 @@ -search_result['75']=["topic_0000000000000034.html","clsDokument.sDokumentidn Property",""]; \ No newline at end of file +search_result['75']=["topic_0000000000000032.html","clsDokument.iMitarbeiternr1 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_76.js b/Database/VSdoc/search--/s_76.js index 4dd27ffc..4cf78b26 100644 --- a/Database/VSdoc/search--/s_76.js +++ b/Database/VSdoc/search--/s_76.js @@ -1 +1 @@ -search_result['76']=["topic_0000000000000035.html","clsDokument.sDokumentname Property",""]; \ No newline at end of file +search_result['76']=["topic_0000000000000033.html","clsDokument.iNrpar00 Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_77.js b/Database/VSdoc/search--/s_77.js index 1be9a9bd..d834bab0 100644 --- a/Database/VSdoc/search--/s_77.js +++ b/Database/VSdoc/search--/s_77.js @@ -1 +1 @@ -search_result['77']=["topic_0000000000000036.html","clsDokument.iErsteller Property",""]; \ No newline at end of file +search_result['77']=["topic_0000000000000034.html","clsDokument.sDokumentidn Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_78.js b/Database/VSdoc/search--/s_78.js index e0d79205..7c38c0b0 100644 --- a/Database/VSdoc/search--/s_78.js +++ b/Database/VSdoc/search--/s_78.js @@ -1 +1 @@ -search_result['78']=["topic_0000000000000037.html","clsDokument.iErstellerteam Property",""]; \ No newline at end of file +search_result['78']=["topic_0000000000000035.html","clsDokument.sDokumentname Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_79.js b/Database/VSdoc/search--/s_79.js index 3c49bfc4..021e1c4d 100644 --- a/Database/VSdoc/search--/s_79.js +++ b/Database/VSdoc/search--/s_79.js @@ -1 +1 @@ -search_result['79']=["topic_0000000000000038.html","clsDokument.daErstelltam Property",""]; \ No newline at end of file +search_result['79']=["topic_0000000000000036.html","clsDokument.iErsteller Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_8.js b/Database/VSdoc/search--/s_8.js index b273c9de..b93a14d6 100644 --- a/Database/VSdoc/search--/s_8.js +++ b/Database/VSdoc/search--/s_8.js @@ -1 +1 @@ -search_result['8']=["topic_0000000000000003.html","clsConnectionProvider.Dispose Method","Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen."]; \ No newline at end of file +search_result['8']=["topic_0000000000000001_vars--.html","clsConnectionProvider Fields",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_80.js b/Database/VSdoc/search--/s_80.js index 6cad0464..151ca5fb 100644 --- a/Database/VSdoc/search--/s_80.js +++ b/Database/VSdoc/search--/s_80.js @@ -1 +1 @@ -search_result['80']=["topic_0000000000000039.html","clsDokument.iMutierer Property",""]; \ No newline at end of file +search_result['80']=["topic_0000000000000037.html","clsDokument.iErstellerteam Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_81.js b/Database/VSdoc/search--/s_81.js index 527dda83..8dcdc8a4 100644 --- a/Database/VSdoc/search--/s_81.js +++ b/Database/VSdoc/search--/s_81.js @@ -1 +1 @@ -search_result['81']=["topic_000000000000003A.html","clsDokument.iMutierertieam Property",""]; \ No newline at end of file +search_result['81']=["topic_0000000000000038.html","clsDokument.daErstelltam Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_82.js b/Database/VSdoc/search--/s_82.js index f13d7f90..7f285d43 100644 --- a/Database/VSdoc/search--/s_82.js +++ b/Database/VSdoc/search--/s_82.js @@ -1 +1 @@ -search_result['82']=["topic_000000000000003B.html","clsDokument.daMutiertam Property",""]; \ No newline at end of file +search_result['82']=["topic_0000000000000039.html","clsDokument.iMutierer Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_83.js b/Database/VSdoc/search--/s_83.js index e5136327..a5882ec3 100644 --- a/Database/VSdoc/search--/s_83.js +++ b/Database/VSdoc/search--/s_83.js @@ -1 +1 @@ -search_result['83']=["topic_000000000000003C.html","clsDokument.sSpeicherort Property",""]; \ No newline at end of file +search_result['83']=["topic_000000000000003A.html","clsDokument.iMutierertieam Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_84.js b/Database/VSdoc/search--/s_84.js index 20b4b5b0..2bea4773 100644 --- a/Database/VSdoc/search--/s_84.js +++ b/Database/VSdoc/search--/s_84.js @@ -1 +1 @@ -search_result['84']=["topic_000000000000003D.html","clsDokument.bGesperrt Property",""]; \ No newline at end of file +search_result['84']=["topic_000000000000003B.html","clsDokument.daMutiertam Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_85.js b/Database/VSdoc/search--/s_85.js index a68b8b1a..6db7e287 100644 --- a/Database/VSdoc/search--/s_85.js +++ b/Database/VSdoc/search--/s_85.js @@ -1 +1 @@ -search_result['85']=["topic_000000000000003E.html","clsDokument.iGesperrt_durch Property",""]; \ No newline at end of file +search_result['85']=["topic_000000000000003C.html","clsDokument.sSpeicherort Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_86.js b/Database/VSdoc/search--/s_86.js index 06fd4e77..19c9c66d 100644 --- a/Database/VSdoc/search--/s_86.js +++ b/Database/VSdoc/search--/s_86.js @@ -1 +1 @@ -search_result['86']=["topic_000000000000003F.html","clsDokument.daGesperrtam Property",""]; \ No newline at end of file +search_result['86']=["topic_000000000000003D.html","clsDokument.bGesperrt Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_87.js b/Database/VSdoc/search--/s_87.js index d76bb0cf..a91e33d1 100644 --- a/Database/VSdoc/search--/s_87.js +++ b/Database/VSdoc/search--/s_87.js @@ -1 +1 @@ -search_result['87']=["topic_0000000000000040.html","clsDokument.sBezeichnung Property",""]; \ No newline at end of file +search_result['87']=["topic_000000000000003E.html","clsDokument.iGesperrt_durch Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_88.js b/Database/VSdoc/search--/s_88.js index 8d91feb6..1764f7be 100644 --- a/Database/VSdoc/search--/s_88.js +++ b/Database/VSdoc/search--/s_88.js @@ -1 +1 @@ -search_result['88']=["topic_0000000000000041.html","clsDokument.sBemerkung Property",""]; \ No newline at end of file +search_result['88']=["topic_000000000000003F.html","clsDokument.daGesperrtam Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_89.js b/Database/VSdoc/search--/s_89.js index 0a144e64..fdb9016a 100644 --- a/Database/VSdoc/search--/s_89.js +++ b/Database/VSdoc/search--/s_89.js @@ -1 +1 @@ -search_result['89']=["topic_0000000000000042.html","clsDokument.bAuserstuebernahme Property",""]; \ No newline at end of file +search_result['89']=["topic_0000000000000040.html","clsDokument.sBezeichnung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_9.js b/Database/VSdoc/search--/s_9.js index e2afad69..62691a83 100644 --- a/Database/VSdoc/search--/s_9.js +++ b/Database/VSdoc/search--/s_9.js @@ -1 +1 @@ -search_result['9']=["topic_0000000000000003_overloads--.html","clsConnectionProvider.Dispose Method","Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen."]; \ No newline at end of file +search_result['9']=["topic_0000000000000002.html","clsConnectionProvider Constructor",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_90.js b/Database/VSdoc/search--/s_90.js index 450b5924..f25554b3 100644 --- a/Database/VSdoc/search--/s_90.js +++ b/Database/VSdoc/search--/s_90.js @@ -1 +1 @@ -search_result['90']=["topic_0000000000000043.html","clsDokument.iDokumenttypnr Property",""]; \ No newline at end of file +search_result['90']=["topic_0000000000000041.html","clsDokument.sBemerkung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_91.js b/Database/VSdoc/search--/s_91.js index 93240925..3414a274 100644 --- a/Database/VSdoc/search--/s_91.js +++ b/Database/VSdoc/search--/s_91.js @@ -1 +1 @@ -search_result['91']=["topic_0000000000000044.html","clsDokument.bUnvollstaendig Property",""]; \ No newline at end of file +search_result['91']=["topic_0000000000000042.html","clsDokument.bAuserstuebernahme Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_92.js b/Database/VSdoc/search--/s_92.js index f8499cf5..e50123b4 100644 --- a/Database/VSdoc/search--/s_92.js +++ b/Database/VSdoc/search--/s_92.js @@ -1 +1 @@ -search_result['92']=["topic_0000000000000045.html","clsDokument.sBemerkunguvm Property",""]; \ No newline at end of file +search_result['92']=["topic_0000000000000043.html","clsDokument.iDokumenttypnr Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_93.js b/Database/VSdoc/search--/s_93.js index dbe2502b..8aa09bbe 100644 --- a/Database/VSdoc/search--/s_93.js +++ b/Database/VSdoc/search--/s_93.js @@ -1 +1 @@ -search_result['93']=["topic_0000000000000046.html","clsDokument.bBereit_zur_archivierung Property",""]; \ No newline at end of file +search_result['93']=["topic_0000000000000044.html","clsDokument.bUnvollstaendig Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_94.js b/Database/VSdoc/search--/s_94.js index 6ebe08f1..19aa96df 100644 --- a/Database/VSdoc/search--/s_94.js +++ b/Database/VSdoc/search--/s_94.js @@ -1 +1 @@ -search_result['94']=["topic_0000000000000047.html","clsDokument.bAusgangsarchiviert Property",""]; \ No newline at end of file +search_result['94']=["topic_0000000000000045.html","clsDokument.sBemerkunguvm Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_95.js b/Database/VSdoc/search--/s_95.js index 414927e8..3960e231 100644 --- a/Database/VSdoc/search--/s_95.js +++ b/Database/VSdoc/search--/s_95.js @@ -1 +1 @@ -search_result['95']=["topic_0000000000000048.html","clsDokument.daDatum_ausgangsarchivierung Property",""]; \ No newline at end of file +search_result['95']=["topic_0000000000000046.html","clsDokument.bBereit_zur_archivierung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_96.js b/Database/VSdoc/search--/s_96.js index d2ec807b..0c80e514 100644 --- a/Database/VSdoc/search--/s_96.js +++ b/Database/VSdoc/search--/s_96.js @@ -1 +1 @@ -search_result['96']=["topic_0000000000000049.html","clsDokument.iMa_ausgangsarchivierung Property",""]; \ No newline at end of file +search_result['96']=["topic_0000000000000047.html","clsDokument.bAusgangsarchiviert Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_97.js b/Database/VSdoc/search--/s_97.js index d844d2a0..0131b59e 100644 --- a/Database/VSdoc/search--/s_97.js +++ b/Database/VSdoc/search--/s_97.js @@ -1 +1 @@ -search_result['97']=["topic_000000000000004A.html","clsDokument.bZu_retournieren Property",""]; \ No newline at end of file +search_result['97']=["topic_0000000000000048.html","clsDokument.daDatum_ausgangsarchivierung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_98.js b/Database/VSdoc/search--/s_98.js index 0c475798..cb814a7a 100644 --- a/Database/VSdoc/search--/s_98.js +++ b/Database/VSdoc/search--/s_98.js @@ -1 +1 @@ -search_result['98']=["topic_000000000000004B.html","clsDokument.bEingangsarchiviert Property",""]; \ No newline at end of file +search_result['98']=["topic_0000000000000049.html","clsDokument.iMa_ausgangsarchivierung Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_99.js b/Database/VSdoc/search--/s_99.js index 657e74bd..2d9a2006 100644 --- a/Database/VSdoc/search--/s_99.js +++ b/Database/VSdoc/search--/s_99.js @@ -1 +1 @@ -search_result['99']=["topic_000000000000004C.html","clsDokument.daDatum_eingangsarchivierung Property",""]; \ No newline at end of file +search_result['99']=["topic_000000000000004A.html","clsDokument.bZu_retournieren Property",""]; \ No newline at end of file diff --git a/Database/VSdoc/search--/s_all.js b/Database/VSdoc/search--/s_all.js index 571792af..8533561b 100644 --- a/Database/VSdoc/search--/s_all.js +++ b/Database/VSdoc/search--/s_all.js @@ -1,456 +1,458 @@ -_s['0']=["topic_0000000000000000.html","edoka_dms Namespace",""]; -_s['1']=["topic_0000000000000001.html","clsConnectionProvider Class",""]; -_s['2']=["topic_0000000000000001_attached_props--.html","clsConnectionProvider Attached Properties",""]; -_s['3']=["topic_0000000000000001_events--.html","clsConnectionProvider Events",""]; -_s['4']=["topic_0000000000000001_methods--.html","clsConnectionProvider Methods",""]; -_s['5']=["topic_0000000000000001_props--.html","clsConnectionProvider Properties",""]; -_s['6']=["topic_0000000000000001_vars--.html","clsConnectionProvider Fields",""]; -_s['7']=["topic_0000000000000002.html","clsConnectionProvider Constructor",""]; -_s['8']=["topic_0000000000000003.html","clsConnectionProvider.Dispose Method","Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen."]; -_s['9']=["topic_0000000000000003_overloads--.html","clsConnectionProvider.Dispose Method","Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen."]; -_s['10']=["topic_0000000000000004.html","clsConnectionProvider.Dispose (Boolean) Method",""]; -_s['11']=["topic_0000000000000004_overloads--.html","clsConnectionProvider.Dispose Method",""]; -_s['12']=["topic_0000000000000005.html","clsConnectionProvider.OpenConnection Method",""]; -_s['13']=["topic_0000000000000006.html","clsConnectionProvider.BeginTransaction Method",""]; -_s['14']=["topic_0000000000000007.html","clsConnectionProvider.CommitTransaction Method",""]; -_s['15']=["topic_0000000000000008.html","clsConnectionProvider.RollbackTransaction Method",""]; -_s['16']=["topic_0000000000000009.html","clsConnectionProvider.SaveTransaction Method",""]; -_s['17']=["topic_000000000000000A.html","clsConnectionProvider.CloseConnection Method",""]; -_s['18']=["topic_000000000000000B.html","clsConnectionProvider.stCurrentTransaction Property",""]; -_s['19']=["topic_000000000000000C.html","clsConnectionProvider.bIsTransactionPending Property",""]; -_s['20']=["topic_000000000000000D.html","clsConnectionProvider.scoDBConnection Property",""]; -_s['21']=["topic_000000000000000E.html","clsConnectionProvider.sConnectionString Property",""]; -_s['22']=["topic_000000000000000F.html","LLBLError Enumeration",""]; -_s['23']=["topic_0000000000000011.html","ICommonDBAccess Interface",""]; -_s['24']=["topic_0000000000000011_attached_props--.html","ICommonDBAccess Attached Properties",""]; -_s['25']=["topic_0000000000000011_events--.html","ICommonDBAccess Events",""]; -_s['26']=["topic_0000000000000011_methods--.html","ICommonDBAccess Methods",""]; -_s['27']=["topic_0000000000000011_props--.html","ICommonDBAccess Properties",""]; -_s['28']=["topic_0000000000000011_vars--.html","ICommonDBAccess Fields",""]; -_s['29']=["topic_0000000000000012.html","ICommonDBAccess.Insert Method",""]; -_s['30']=["topic_0000000000000013.html","ICommonDBAccess.Update Method",""]; -_s['31']=["topic_0000000000000014.html","ICommonDBAccess.Delete Method",""]; -_s['32']=["topic_0000000000000015.html","ICommonDBAccess.SelectOne Method",""]; -_s['33']=["topic_0000000000000016.html","ICommonDBAccess.SelectAll Method",""]; -_s['34']=["topic_0000000000000017.html","clsDBInteractionBase Class",""]; -_s['35']=["topic_0000000000000017_attached_props--.html","clsDBInteractionBase Attached Properties",""]; -_s['36']=["topic_0000000000000017_events--.html","clsDBInteractionBase Events",""]; -_s['37']=["topic_0000000000000017_methods--.html","clsDBInteractionBase Methods",""]; -_s['38']=["topic_0000000000000017_props--.html","clsDBInteractionBase Properties",""]; -_s['39']=["topic_0000000000000017_vars--.html","clsDBInteractionBase Fields",""]; -_s['40']=["topic_0000000000000018.html","m_scoMainConnection Field",""]; -_s['41']=["topic_0000000000000019.html","m_iRowsAffected Field",""]; -_s['42']=["topic_000000000000001A.html","m_iErrorCode Field",""]; -_s['43']=["topic_000000000000001B.html","m_bMainConnectionIsCreatedLocal Field",""]; -_s['44']=["topic_000000000000001C.html","m_cpMainConnectionProvider Field",""]; -_s['45']=["topic_000000000000001D.html","clsDBInteractionBase Constructor",""]; -_s['46']=["topic_000000000000001E.html","clsDBInteractionBase.Dispose Method","Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen."]; -_s['47']=["topic_000000000000001E_overloads--.html","clsDBInteractionBase.Dispose Method","Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen."]; -_s['48']=["topic_000000000000001F.html","clsDBInteractionBase.Dispose (Boolean) Method",""]; -_s['49']=["topic_000000000000001F_overloads--.html","clsDBInteractionBase.Dispose Method",""]; -_s['50']=["topic_0000000000000020.html","clsDBInteractionBase.Insert Method",""]; -_s['51']=["topic_0000000000000021.html","clsDBInteractionBase.Delete Method",""]; -_s['52']=["topic_0000000000000022.html","clsDBInteractionBase.Update Method",""]; -_s['53']=["topic_0000000000000023.html","clsDBInteractionBase.SelectOne Method",""]; -_s['54']=["topic_0000000000000024.html","clsDBInteractionBase.SelectAll Method",""]; -_s['55']=["topic_0000000000000025.html","clsDBInteractionBase.cpMainConnectionProvider Property",""]; -_s['56']=["topic_0000000000000026.html","clsDBInteractionBase.iErrorCode Property",""]; -_s['57']=["topic_0000000000000027.html","clsDBInteractionBase.sConnectionString Property",""]; -_s['58']=["topic_0000000000000028.html","clsDBInteractionBase.iRowsAffected Property",""]; -_s['59']=["topic_0000000000000029.html","clsDokument Class",""]; -_s['60']=["topic_0000000000000029_attached_props--.html","clsDokument Attached Properties",""]; -_s['61']=["topic_0000000000000029_events--.html","clsDokument Events",""]; -_s['62']=["topic_0000000000000029_methods--.html","clsDokument Methods",""]; -_s['63']=["topic_0000000000000029_props--.html","clsDokument Properties",""]; -_s['64']=["topic_0000000000000029_vars--.html","clsDokument Fields",""]; -_s['65']=["topic_000000000000002A.html","clsDokument Constructor",""]; -_s['66']=["topic_000000000000002B.html","clsDokument.Insert Method",""]; -_s['67']=["topic_000000000000002C.html","clsDokument.Update Method",""]; -_s['68']=["topic_000000000000002D.html","clsDokument.Delete Method",""]; -_s['69']=["topic_000000000000002E.html","clsDokument.SelectOne Method",""]; -_s['70']=["topic_000000000000002F.html","clsDokument.SelectAll Method",""]; -_s['71']=["topic_0000000000000030.html","clsDokument.sDokumentid Property",""]; -_s['72']=["topic_0000000000000031.html","clsDokument.iMitarbeiternr Property",""]; -_s['73']=["topic_0000000000000032.html","clsDokument.iMitarbeiternr1 Property",""]; -_s['74']=["topic_0000000000000033.html","clsDokument.iNrpar00 Property",""]; -_s['75']=["topic_0000000000000034.html","clsDokument.sDokumentidn Property",""]; -_s['76']=["topic_0000000000000035.html","clsDokument.sDokumentname Property",""]; -_s['77']=["topic_0000000000000036.html","clsDokument.iErsteller Property",""]; -_s['78']=["topic_0000000000000037.html","clsDokument.iErstellerteam Property",""]; -_s['79']=["topic_0000000000000038.html","clsDokument.daErstelltam Property",""]; -_s['80']=["topic_0000000000000039.html","clsDokument.iMutierer Property",""]; -_s['81']=["topic_000000000000003A.html","clsDokument.iMutierertieam Property",""]; -_s['82']=["topic_000000000000003B.html","clsDokument.daMutiertam Property",""]; -_s['83']=["topic_000000000000003C.html","clsDokument.sSpeicherort Property",""]; -_s['84']=["topic_000000000000003D.html","clsDokument.bGesperrt Property",""]; -_s['85']=["topic_000000000000003E.html","clsDokument.iGesperrt_durch Property",""]; -_s['86']=["topic_000000000000003F.html","clsDokument.daGesperrtam Property",""]; -_s['87']=["topic_0000000000000040.html","clsDokument.sBezeichnung Property",""]; -_s['88']=["topic_0000000000000041.html","clsDokument.sBemerkung Property",""]; -_s['89']=["topic_0000000000000042.html","clsDokument.bAuserstuebernahme Property",""]; -_s['90']=["topic_0000000000000043.html","clsDokument.iDokumenttypnr Property",""]; -_s['91']=["topic_0000000000000044.html","clsDokument.bUnvollstaendig Property",""]; -_s['92']=["topic_0000000000000045.html","clsDokument.sBemerkunguvm Property",""]; -_s['93']=["topic_0000000000000046.html","clsDokument.bBereit_zur_archivierung Property",""]; -_s['94']=["topic_0000000000000047.html","clsDokument.bAusgangsarchiviert Property",""]; -_s['95']=["topic_0000000000000048.html","clsDokument.daDatum_ausgangsarchivierung Property",""]; -_s['96']=["topic_0000000000000049.html","clsDokument.iMa_ausgangsarchivierung Property",""]; -_s['97']=["topic_000000000000004A.html","clsDokument.bZu_retournieren Property",""]; -_s['98']=["topic_000000000000004B.html","clsDokument.bEingangsarchiviert Property",""]; -_s['99']=["topic_000000000000004C.html","clsDokument.daDatum_eingangsarchivierung Property",""]; -_s['100']=["topic_000000000000004D.html","clsDokument.iMa_eingangsarchivierung Property",""]; -_s['101']=["topic_000000000000004E.html","clsDokument.iStatus_edoka_batch_ausgang Property",""]; -_s['102']=["topic_000000000000004F.html","clsDokument.iStatus_edoka_batch_eingang Property",""]; -_s['103']=["topic_0000000000000050.html","clsDokument.sLoeschgrund Property",""]; -_s['104']=["topic_0000000000000051.html","clsDokument.iColdstatus Property",""]; -_s['105']=["topic_0000000000000052.html","clsDokument.sVersandadresse Property",""]; -_s['106']=["topic_0000000000000053.html","clsDokument.iBarcodenr Property",""]; -_s['107']=["topic_0000000000000054.html","clsDokument.sColddokumentid Property",""]; -_s['108']=["topic_0000000000000055.html","clsDokument.bAmsdokument Property",""]; -_s['109']=["topic_0000000000000056.html","clsDokument.iVerantwortlich Property",""]; -_s['110']=["topic_0000000000000057.html","clsDokument.iZustaendiger Property",""]; -_s['111']=["topic_0000000000000058.html","clsDokument.iUnterschriftlinks Property",""]; -_s['112']=["topic_0000000000000059.html","clsDokument.iUnterschriftrechts Property",""]; -_s['113']=["topic_000000000000005A.html","clsDokument.iPostzustellung Property",""]; -_s['114']=["topic_000000000000005B.html","clsDokument.bAktiv Property",""]; -_s['115']=["topic_000000000000005C.html","clsDokument.iStatusnr Property",""]; -_s['116']=["topic_000000000000005D.html","clsDokument.bZustaendig_kube Property",""]; -_s['117']=["topic_000000000000005E.html","clsDokument.sZustelladresse Property",""]; -_s['118']=["topic_000000000000005F.html","clsDokument.bVertraulich Property",""]; -_s['119']=["topic_0000000000000060.html","clsDokument.daErstellungsdatum Property",""]; -_s['120']=["topic_0000000000000061.html","clsDokument.daArchivierungsdatum Property",""]; -_s['121']=["topic_0000000000000062.html","clsDokument.daTermin Property",""]; -_s['122']=["topic_0000000000000063.html","clsDokument.iMutiererteam Property",""]; -_s['123']=["topic_0000000000000064.html","clsDokument.sAnredezustelladresse Property",""]; -_s['124']=["topic_0000000000000065.html","clsDokument.iDokdurchkubeweitergegeben Property",""]; -_s['125']=["topic_0000000000000066.html","clsDokument.iBck Property",""]; -_s['126']=["topic_0000000000000067.html","clsDokument.iBearbeitungszeit_in_minuten Property",""]; -_s['127']=["topic_0000000000000068.html","clsDokument.iMonierung_in_tagen Property",""]; -_s['128']=["topic_0000000000000069.html","clsDokument.iAufbewahrung_elektronisch Property",""]; -_s['129']=["topic_000000000000006A.html","clsDokument.iAufbewahrung_phaysisch Property",""]; -_s['130']=["topic_000000000000006B.html","clsDokument.iIn_edoka_datenbank Property",""]; -_s['131']=["topic_000000000000006C.html","clsDokument.iBearbeitung_nach_abschluss Property",""]; -_s['132']=["topic_000000000000006D.html","clsDokument.sColdfolder Property",""]; -_s['133']=["topic_000000000000006E.html","clsDokument.sColdschema Property",""]; -_s['134']=["topic_000000000000006F.html","clsDokument.daErinnerungam Property",""]; -_s['135']=["topic_0000000000000070.html","clsDokument.sFANummer1 Property",""]; -_s['136']=["topic_0000000000000071.html","clsDokument.sFANummer2 Property",""]; -_s['137']=["topic_0000000000000072.html","clsDokument.bFapartnerwechsel Property",""]; -_s['138']=["topic_0000000000000073.html","clsDokument.bFAStatuswechsel Property",""]; -_s['139']=["topic_0000000000000074.html","clsDokument.bFAVerantwortlicherwechsel Property",""]; -_s['140']=["topic_0000000000000075.html","clsDokument.sBedRDokumentid Property",""]; -_s['141']=["topic_0000000000000076.html","clsDokument.bBedRRetourniert Property",""]; -_s['142']=["topic_0000000000000077.html","clsDokument.iBRVernichtungnachTagen Property",""]; -_s['143']=["topic_0000000000000078.html","clsDokument.bOfficedokumentgeloescht Property",""]; -_s['144']=["topic_0000000000000079.html","clsDokument.sFanummer3 Property",""]; -_s['145']=["topic_000000000000007A.html","clsDokument.sVvnr Property",""]; -_s['146']=["topic_000000000000007B.html","clsDokument.iAnzeigeStatus Property",""]; -_s['147']=["topic_000000000000007C.html","clsDokument.bBl_scan Property",""]; -_s['148']=["topic_000000000000007D.html","clsDokument.bBldossier Property",""]; -_s['149']=["topic_000000000000007E.html","clsDokument.iNoEdit Property",""]; -_s['150']=["topic_000000000000007F.html","clsDokument_status Class",""]; -_s['151']=["topic_000000000000007F_attached_props--.html","clsDokument_status Attached Properties",""]; -_s['152']=["topic_000000000000007F_events--.html","clsDokument_status Events",""]; -_s['153']=["topic_000000000000007F_methods--.html","clsDokument_status Methods",""]; -_s['154']=["topic_000000000000007F_props--.html","clsDokument_status Properties",""]; -_s['155']=["topic_000000000000007F_vars--.html","clsDokument_status Fields",""]; -_s['156']=["topic_0000000000000080.html","clsDokument_status Constructor",""]; -_s['157']=["topic_0000000000000081.html","clsDokument_status.Insert Method",""]; -_s['158']=["topic_0000000000000082.html","clsDokument_status.Update Method",""]; -_s['159']=["topic_0000000000000083.html","clsDokument_status.Delete Method",""]; -_s['160']=["topic_0000000000000084.html","clsDokument_status.SelectOne Method",""]; -_s['161']=["topic_0000000000000085.html","clsDokument_status.SelectAll Method",""]; -_s['162']=["topic_0000000000000086.html","clsDokument_status.iDokument_statusnr Property",""]; -_s['163']=["topic_0000000000000087.html","clsDokument_status.sDokumenitid Property",""]; -_s['164']=["topic_0000000000000088.html","clsDokument_status.iStatus_bezeichnungnr Property",""]; -_s['165']=["topic_0000000000000089.html","clsDokument_status.sBezeichnung Property",""]; -_s['166']=["topic_000000000000008A.html","clsDokument_status.sReihenfolge Property",""]; -_s['167']=["topic_000000000000008B.html","clsDokument_status.bFolgestatus_durch_anderen_verantwortlichen Property",""]; -_s['168']=["topic_000000000000008C.html","clsDokument_status.bDokument_bearbeitung_moeglich Property",""]; -_s['169']=["topic_000000000000008D.html","clsDokument_status.iErledigung_ab Property",""]; -_s['170']=["topic_000000000000008E.html","clsDokument_status.bDokument_ausgangsarchivierung Property",""]; -_s['171']=["topic_000000000000008F.html","clsDokument_status.bDokument_bearbeitung_abgeschlossen Property",""]; -_s['172']=["topic_0000000000000090.html","clsDokument_status.bAktiv Property",""]; -_s['173']=["topic_0000000000000091.html","clsDokument_status.daErstellt_am Property",""]; -_s['174']=["topic_0000000000000092.html","clsDokument_status.iMutierer Property",""]; -_s['175']=["topic_0000000000000093.html","clsDokumentstatus Class",""]; -_s['176']=["topic_0000000000000093_attached_props--.html","clsDokumentstatus Attached Properties",""]; -_s['177']=["topic_0000000000000093_events--.html","clsDokumentstatus Events",""]; -_s['178']=["topic_0000000000000093_methods--.html","clsDokumentstatus Methods",""]; -_s['179']=["topic_0000000000000093_props--.html","clsDokumentstatus Properties",""]; -_s['180']=["topic_0000000000000093_vars--.html","clsDokumentstatus Fields",""]; -_s['181']=["topic_0000000000000094.html","clsDokumentstatus Constructor",""]; -_s['182']=["topic_0000000000000095.html","clsDokumentstatus.Insert Method",""]; -_s['183']=["topic_0000000000000096.html","clsDokumentstatus.Update Method",""]; -_s['184']=["topic_0000000000000097.html","clsDokumentstatus.Delete Method",""]; -_s['185']=["topic_0000000000000098.html","clsDokumentstatus.SelectOne Method",""]; -_s['186']=["topic_0000000000000099.html","clsDokumentstatus.SelectAll Method",""]; -_s['187']=["topic_000000000000009A.html","clsDokumentstatus.iDokumentstatusnr Property",""]; -_s['188']=["topic_000000000000009B.html","clsDokumentstatus.iDokumenttypnr Property",""]; -_s['189']=["topic_000000000000009C.html","clsDokumentstatus.iStatustypnr Property",""]; -_s['190']=["topic_000000000000009D.html","clsDokumentstatus.iStatus_bezeichnungnr Property",""]; -_s['191']=["topic_000000000000009E.html","clsDokumentstatus.iReihenfolge Property",""]; -_s['192']=["topic_000000000000009F.html","clsDokumentstatus.bFolgestatus_durch_anderen_verantwortlichen Property",""]; -_s['193']=["topic_00000000000000A0.html","clsDokumentstatus.bDokumentbearbeitung_moeglich Property",""]; -_s['194']=["topic_00000000000000A1.html","clsDokumentstatus.iErledigung_ab Property",""]; -_s['195']=["topic_00000000000000A2.html","clsDokumentstatus.bDokument_ausgangsarchivieren Property",""]; -_s['196']=["topic_00000000000000A3.html","clsDokumentstatus.bDokument_bearbeitung_abgeschlossen Property",""]; -_s['197']=["topic_00000000000000A4.html","clsDokumentstatus.iMandantnr Property",""]; -_s['198']=["topic_00000000000000A5.html","clsDokumentstatus.bAktiv Property",""]; -_s['199']=["topic_00000000000000A6.html","clsDokumentstatus.daErstellt_am Property",""]; -_s['200']=["topic_00000000000000A7.html","clsDokumentstatus.daMutiert_am Property",""]; -_s['201']=["topic_00000000000000A8.html","clsDokumentstatus.iMutierer Property",""]; -_s['202']=["topic_00000000000000A9.html","clsDokumentstatus.iStatustyp Property",""]; -_s['203']=["topic_00000000000000AA.html","clsDokumenttyp Class",""]; -_s['204']=["topic_00000000000000AA_attached_props--.html","clsDokumenttyp Attached Properties",""]; -_s['205']=["topic_00000000000000AA_events--.html","clsDokumenttyp Events",""]; -_s['206']=["topic_00000000000000AA_methods--.html","clsDokumenttyp Methods",""]; -_s['207']=["topic_00000000000000AA_props--.html","clsDokumenttyp Properties",""]; -_s['208']=["topic_00000000000000AA_vars--.html","clsDokumenttyp Fields",""]; -_s['209']=["topic_00000000000000AB.html","clsDokumenttyp Constructor",""]; -_s['210']=["topic_00000000000000AC.html","clsDokumenttyp.Insert Method",""]; -_s['211']=["topic_00000000000000AD.html","clsDokumenttyp.Update Method",""]; -_s['212']=["topic_00000000000000AE.html","clsDokumenttyp.Delete Method",""]; -_s['213']=["topic_00000000000000AF.html","clsDokumenttyp.SelectOne Method",""]; -_s['214']=["topic_00000000000000B0.html","clsDokumenttyp.SelectAll Method",""]; -_s['215']=["topic_00000000000000B1.html","clsDokumenttyp.iDokumenttypnr Property",""]; -_s['216']=["topic_00000000000000B2.html","clsDokumenttyp.sBezeichnung Property",""]; -_s['217']=["topic_00000000000000B3.html","clsDokumenttyp.sBeschreibung Property",""]; -_s['218']=["topic_00000000000000B4.html","clsDokumenttyp.bZu_vercolden Property",""]; -_s['219']=["topic_00000000000000B5.html","clsDokumenttyp.bZu_retournieren Property",""]; -_s['220']=["topic_00000000000000B6.html","clsDokumenttyp.bEingang_ersetzt_ausgang Property",""]; -_s['221']=["topic_00000000000000B7.html","clsDokumenttyp.bWird_importiert Property",""]; -_s['222']=["topic_00000000000000B8.html","clsDokumenttyp.iAnzahl_tage Property",""]; -_s['223']=["topic_00000000000000B9.html","clsDokumenttyp.iDbearbeitungszeit Property",""]; -_s['224']=["topic_00000000000000BA.html","clsDokumenttyp.iTage_mutation Property",""]; -_s['225']=["topic_00000000000000BB.html","clsDokumenttyp.bPartnersaldierung_statusalt Property",""]; -_s['226']=["topic_00000000000000BC.html","clsDokumenttyp.bWird_nicht_geloescht Property",""]; -_s['227']=["topic_00000000000000BD.html","clsDokumenttyp.bVertrauliches_dokument Property",""]; -_s['228']=["topic_00000000000000BE.html","clsDokumenttyp.bUnterschrift_links Property",""]; -_s['229']=["topic_00000000000000BF.html","clsDokumenttyp.bUnterschrift_rechts Property",""]; -_s['230']=["topic_00000000000000C0.html","clsDokumenttyp.iMonate_bis_zur_archivierung Property",""]; -_s['231']=["topic_00000000000000C1.html","clsDokumenttyp.iAufbewahrungsfrist_elektronisch Property",""]; -_s['232']=["topic_00000000000000C2.html","clsDokumenttyp.iAufbewahrungsfrist_physisch Property",""]; -_s['233']=["topic_00000000000000C3.html","clsDokumenttyp.iMandantnr Property",""]; -_s['234']=["topic_00000000000000C4.html","clsDokumenttyp.bAktiv Property",""]; -_s['235']=["topic_00000000000000C5.html","clsDokumenttyp.daErstellt_am Property",""]; -_s['236']=["topic_00000000000000C6.html","clsDokumenttyp.daMutiert_am Property",""]; -_s['237']=["topic_00000000000000C7.html","clsDokumenttyp.iMutierer Property",""]; -_s['238']=["topic_00000000000000C8.html","clsDokumenttyp.iOffice_vorlagenr Property",""]; -_s['239']=["topic_00000000000000C9.html","clsDokumenttyp.iDokumentart_kundendossier Property",""]; -_s['240']=["topic_00000000000000CA.html","clsDokumenttyp.iDokumentart_neuerstellung Property",""]; -_s['241']=["topic_00000000000000CB.html","clsDokumenttyp.iDokumentart_retournierung Property",""]; -_s['242']=["topic_00000000000000CC.html","clsDokumenttyp.iDokumentart_coldausgang Property",""]; -_s['243']=["topic_00000000000000CD.html","clsDokumenttyp.iDokumentart_coldeingang Property",""]; -_s['244']=["topic_00000000000000CE.html","clsDokumenttyp.iDokumentart_host Property",""]; -_s['245']=["topic_00000000000000CF.html","clsDokumenttyp.iDokumentart_weitere Property",""]; -_s['246']=["topic_00000000000000D0.html","clsDokumenttyp.iDokumentart_nativ Property",""]; -_s['247']=["topic_00000000000000D1.html","clsDokumenttyp.iProzessnr Property",""]; -_s['248']=["topic_00000000000000D2.html","clsDokumenttyp.iProzessnr1 Property",""]; -_s['249']=["topic_00000000000000D3.html","clsDokumenttyp.bAmsdokument Property",""]; -_s['250']=["topic_00000000000000D4.html","clsDokumenttyp.bHostdokument Property",""]; -_s['251']=["topic_00000000000000D5.html","clsDokumenttyp.sHostdokumenttyp Property",""]; -_s['252']=["topic_00000000000000D6.html","clsDokumenttyp.iCold_folder Property",""]; -_s['253']=["topic_00000000000000D7.html","clsDokumenttyp.iPhysisches_archiv Property",""]; -_s['254']=["topic_00000000000000D8.html","clsDokumenttyp.iDokumentstatus Property",""]; -_s['255']=["topic_00000000000000D9.html","clsDokumenttyp.bDokument_wird_erstellt Property",""]; -_s['256']=["topic_00000000000000DA.html","clsDokumenttyp.bDokument_wird_retourniert Property",""]; -_s['257']=["topic_00000000000000DB.html","clsDokumenttyp.bCold_ersetzen Property",""]; -_s['258']=["topic_00000000000000DC.html","clsDokumenttyp.bEmail_versand Property",""]; -_s['259']=["topic_00000000000000DD.html","clsDokumenttyp.bFunktionen_zuweisen Property",""]; -_s['260']=["topic_00000000000000DE.html","clsDokumenttyp.iDokumentstatus_barcode Property",""]; -_s['261']=["topic_00000000000000DF.html","clsDokumenttyp.bNurnative Property",""]; -_s['262']=["topic_00000000000000E0.html","clsDokumenttyp.iOwner Property",""]; -_s['263']=["topic_00000000000000E1.html","clsDokumenttyp.bVertrag Property",""]; -_s['264']=["topic_00000000000000E2.html","clsDokumenttyp.iObjektbezeichnungnr Property",""]; -_s['265']=["topic_00000000000000E3.html","clsDokumenttyp.bBedingtretournierbar Property",""]; -_s['266']=["topic_00000000000000E4.html","clsDokumenttyp.iDoktypbedingteretournierung Property",""]; -_s['267']=["topic_00000000000000E5.html","clsDokumenttyp.iTagebisvernichtungbedingteretournierung Property",""]; -_s['268']=["topic_00000000000000E6.html","clsDokumenttyp.bAnzeigeZurDokumenterstellung Property",""]; -_s['269']=["topic_00000000000000E7.html","clsDokumenttyp.bKundenDokument Property",""]; -_s['270']=["topic_00000000000000E8.html","clsDokumenttyp.bSb Property",""]; -_s['271']=["topic_00000000000000E9.html","clsDokumenttyp.bSbimport Property",""]; -_s['272']=["topic_00000000000000EA.html","clsDokumenttyp.bSbedituser Property",""]; -_s['273']=["topic_00000000000000EB.html","clsDokumenttyp.bSbnur Property",""]; -_s['274']=["topic_00000000000000EC.html","clsDokumenttyp.bBezeichnungmut Property",""]; -_s['275']=["topic_00000000000000ED.html","clsDokumenttyp.bIstFarbigArchiviert Property",""]; -_s['276']=["topic_00000000000000EE.html","clsDokumenttyp.bIntern Property",""]; -_s['277']=["topic_00000000000000EF.html","clsDokumenttyp.bElDokImport Property",""]; -_s['278']=["topic_00000000000000F0.html","clsDokumenttyp.sFachverantwortung Property",""]; -_s['279']=["topic_00000000000000F1.html","clsKey_tabelle Class",""]; -_s['280']=["topic_00000000000000F1_attached_props--.html","clsKey_tabelle Attached Properties",""]; -_s['281']=["topic_00000000000000F1_events--.html","clsKey_tabelle Events",""]; -_s['282']=["topic_00000000000000F1_methods--.html","clsKey_tabelle Methods",""]; -_s['283']=["topic_00000000000000F1_props--.html","clsKey_tabelle Properties",""]; -_s['284']=["topic_00000000000000F1_vars--.html","clsKey_tabelle Fields",""]; -_s['285']=["topic_00000000000000F2.html","clsKey_tabelle Constructor",""]; -_s['286']=["topic_00000000000000F3.html","clsKey_tabelle.Insert Method",""]; -_s['287']=["topic_00000000000000F4.html","clsKey_tabelle.Update Method",""]; -_s['288']=["topic_00000000000000F5.html","clsKey_tabelle.Delete Method",""]; -_s['289']=["topic_00000000000000F6.html","clsKey_tabelle.SelectOne Method",""]; -_s['290']=["topic_00000000000000F7.html","clsKey_tabelle.SelectAll Method",""]; -_s['291']=["topic_00000000000000F8.html","clsKey_tabelle.iKeynr Property",""]; -_s['292']=["topic_00000000000000F9.html","clsKey_tabelle.sBeschreibung Property",""]; -_s['293']=["topic_00000000000000FA.html","clsKey_tabelle.iKey_wert Property",""]; -_s['294']=["topic_00000000000000FB.html","clsKey_tabelle.iMandantnr Property",""]; -_s['295']=["topic_00000000000000FC.html","clsKey_tabelle.bAktiv Property",""]; -_s['296']=["topic_00000000000000FD.html","clsKey_tabelle.daErstellt_am Property",""]; -_s['297']=["topic_00000000000000FE.html","clsKey_tabelle.daMutiert_am Property",""]; -_s['298']=["topic_00000000000000FF.html","clsKey_tabelle.iMutierer Property",""]; -_s['299']=["topic_0000000000000100.html","clsMitarbeiter Class",""]; -_s['300']=["topic_0000000000000100_attached_props--.html","clsMitarbeiter Attached Properties",""]; -_s['301']=["topic_0000000000000100_events--.html","clsMitarbeiter Events",""]; -_s['302']=["topic_0000000000000100_methods--.html","clsMitarbeiter Methods",""]; -_s['303']=["topic_0000000000000100_props--.html","clsMitarbeiter Properties",""]; -_s['304']=["topic_0000000000000100_vars--.html","clsMitarbeiter Fields",""]; -_s['305']=["topic_0000000000000101.html","clsMitarbeiter Constructor",""]; -_s['306']=["topic_0000000000000102.html","clsMitarbeiter.Insert Method",""]; -_s['307']=["topic_0000000000000103.html","clsMitarbeiter.Update Method",""]; -_s['308']=["topic_0000000000000104.html","clsMitarbeiter.Delete Method",""]; -_s['309']=["topic_0000000000000105.html","clsMitarbeiter.SelectOne Method",""]; -_s['310']=["topic_0000000000000106.html","clsMitarbeiter.SelectAll Method",""]; -_s['311']=["topic_0000000000000107.html","clsMitarbeiter.iMitarbeiternr Property",""]; -_s['312']=["topic_0000000000000108.html","clsMitarbeiter.sVorname Property",""]; -_s['313']=["topic_0000000000000109.html","clsMitarbeiter.sName Property",""]; -_s['314']=["topic_000000000000010A.html","clsMitarbeiter.sKurzzeichen Property",""]; -_s['315']=["topic_000000000000010B.html","clsMitarbeiter.sAnrede Property",""]; -_s['316']=["topic_000000000000010C.html","clsMitarbeiter.sTgnummer Property",""]; -_s['317']=["topic_000000000000010D.html","clsMitarbeiter.sEmail Property",""]; -_s['318']=["topic_000000000000010E.html","clsMitarbeiter.sFax Property",""]; -_s['319']=["topic_000000000000010F.html","clsMitarbeiter.sTelefon Property",""]; -_s['320']=["topic_0000000000000110.html","clsMitarbeiter.sUnterschrift_text Property",""]; -_s['321']=["topic_0000000000000111.html","clsMitarbeiter.iFunktionnr Property",""]; -_s['322']=["topic_0000000000000112.html","clsMitarbeiter.iSprache Property",""]; -_s['323']=["topic_0000000000000113.html","clsMitarbeiter.iFuermandant Property",""]; -_s['324']=["topic_0000000000000114.html","clsMitarbeiter.bShowtip Property",""]; -_s['325']=["topic_0000000000000115.html","clsMitarbeiter.iPartnernr Property",""]; -_s['326']=["topic_0000000000000116.html","clsMitarbeiter.iMandantnr Property",""]; -_s['327']=["topic_0000000000000117.html","clsMitarbeiter.bAktiv Property",""]; -_s['328']=["topic_0000000000000118.html","clsMitarbeiter.daErstellt_am Property",""]; -_s['329']=["topic_0000000000000119.html","clsMitarbeiter.daMutiert_am Property",""]; -_s['330']=["topic_000000000000011A.html","clsMitarbeiter.iMutierer Property",""]; -_s['331']=["topic_000000000000011B.html","clsMitarbeiter.bMailempfang Property",""]; -_s['332']=["topic_000000000000011C.html","clsMitarbeiter.bEdokaMesasge Property",""]; -_s['333']=["topic_000000000000011D.html","clsMitarbeiter.sFunktion Property",""]; -_s['334']=["topic_000000000000011E.html","clsMitarbeiter.bMailDirektVersenden Property",""]; -_s['335']=["topic_000000000000011F.html","clsMitarbeiter.sRang Property",""]; -_s['336']=["topic_0000000000000120.html","clsMitarbeiter.bMailDokumentrueckgang Property",""]; -_s['337']=["topic_0000000000000121.html","clsMitarbeiter.iKlassifizierung Property",""]; -_s['338']=["topic_0000000000000122.html","clsMitarbeiter.bEdoka_mail Property",""]; -_s['339']=["topic_0000000000000123.html","clsMitarbeiter.bJournalisierung Property",""]; -_s['340']=["topic_0000000000000124.html","clsMitarbeiter.bGebMeldung Property",""]; -_s['341']=["topic_0000000000000125.html","clsMitarbeiter.sMail_1 Property",""]; -_s['342']=["topic_0000000000000126.html","clsMitarbeiter.daValidto Property",""]; -_s['343']=["topic_0000000000000127.html","clsMyKey_Tabelle Class",""]; -_s['344']=["topic_0000000000000127_attached_props--.html","clsMyKey_Tabelle Attached Properties",""]; -_s['345']=["topic_0000000000000127_events--.html","clsMyKey_Tabelle Events",""]; -_s['346']=["topic_0000000000000127_methods--.html","clsMyKey_Tabelle Methods",""]; -_s['347']=["topic_0000000000000127_props--.html","clsMyKey_Tabelle Properties",""]; -_s['348']=["topic_0000000000000127_vars--.html","clsMyKey_Tabelle Fields",""]; -_s['349']=["topic_0000000000000128.html","connectionstring Field",""]; -_s['350']=["topic_0000000000000129.html","clsMyKey_Tabelle.get_dbkey Method",""]; -_s['351']=["topic_000000000000012A.html","clsPartner Class",""]; -_s['352']=["topic_000000000000012A_attached_props--.html","clsPartner Attached Properties",""]; -_s['353']=["topic_000000000000012A_events--.html","clsPartner Events",""]; -_s['354']=["topic_000000000000012A_methods--.html","clsPartner Methods",""]; -_s['355']=["topic_000000000000012A_props--.html","clsPartner Properties",""]; -_s['356']=["topic_000000000000012A_vars--.html","clsPartner Fields",""]; -_s['357']=["topic_000000000000012B.html","clsPartner Constructor",""]; -_s['358']=["topic_000000000000012C.html","clsPartner.Insert Method",""]; -_s['359']=["topic_000000000000012D.html","clsPartner.Update Method",""]; -_s['360']=["topic_000000000000012E.html","clsPartner.Delete Method",""]; -_s['361']=["topic_000000000000012F.html","clsPartner.SelectOne Method",""]; -_s['362']=["topic_0000000000000130.html","clsPartner.SelectAll Method",""]; -_s['363']=["topic_0000000000000131.html","clsPartner.sIDMSG00 Property",""]; -_s['364']=["topic_0000000000000132.html","clsPartner.sDMMSG00 Property",""]; -_s['365']=["topic_0000000000000133.html","clsPartner.sZTMSG00 Property",""]; -_s['366']=["topic_0000000000000134.html","clsPartner.sBEPGM00 Property",""]; -_s['367']=["topic_0000000000000135.html","clsPartner.sCDBNK00 Property",""]; -_s['368']=["topic_0000000000000136.html","clsPartner.iNRPAR00 Property",""]; -_s['369']=["topic_0000000000000137.html","clsPartner.sBKPAR00 Property",""]; -_s['370']=["topic_0000000000000138.html","clsPartner.iNRFOG012 Property",""]; -_s['371']=["topic_0000000000000139.html","clsPartner.sBEBAN012 Property",""]; -_s['372']=["topic_000000000000013A.html","clsPartner.sNRFOG022 Property",""]; -_s['373']=["topic_000000000000013B.html","clsPartner.sBEBAN022 Property",""]; -_s['374']=["topic_000000000000013C.html","clsPartner.sTXADZ012 Property",""]; -_s['375']=["topic_000000000000013D.html","clsPartner.sTXADZ022 Property",""]; -_s['376']=["topic_000000000000013E.html","clsPartner.sTXADZ032 Property",""]; -_s['377']=["topic_000000000000013F.html","clsPartner.sTXADZ042 Property",""]; -_s['378']=["topic_0000000000000140.html","clsPartner.sTXADZ052 Property",""]; -_s['379']=["topic_0000000000000141.html","clsPartner.sTXADZ062 Property",""]; -_s['380']=["topic_0000000000000142.html","clsPartner.sTXADZ072 Property",""]; -_s['381']=["topic_0000000000000143.html","clsPartner.sNRPARAD Property",""]; -_s['382']=["topic_0000000000000144.html","clsPartner.sNRADR00 Property",""]; -_s['383']=["topic_0000000000000145.html","clsPartner.sNRFOG011 Property",""]; -_s['384']=["topic_0000000000000146.html","clsPartner.sBEBAN011 Property",""]; -_s['385']=["topic_0000000000000147.html","clsPartner.sNRFOG21 Property",""]; -_s['386']=["topic_0000000000000148.html","clsPartner.sBEBAN21 Property",""]; -_s['387']=["topic_0000000000000149.html","clsPartner.sTXADZ011 Property",""]; -_s['388']=["topic_000000000000014A.html","clsPartner.sTXADZ021 Property",""]; -_s['389']=["topic_000000000000014B.html","clsPartner.sTXADZ031 Property",""]; -_s['390']=["topic_000000000000014C.html","clsPartner.sTXADZ041 Property",""]; -_s['391']=["topic_000000000000014D.html","clsPartner.sTXADZ051 Property",""]; -_s['392']=["topic_000000000000014E.html","clsPartner.sTXADZ061 Property",""]; -_s['393']=["topic_000000000000014F.html","clsPartner.sTXADZ071 Property",""]; -_s['394']=["topic_0000000000000150.html","clsPartner.sCDBAL00 Property",""]; -_s['395']=["topic_0000000000000151.html","clsPartner.sCDVIG00 Property",""]; -_s['396']=["topic_0000000000000152.html","clsPartner.sSAVRS00 Property",""]; -_s['397']=["topic_0000000000000153.html","clsPartner.sTSMUT00 Property",""]; -_s['398']=["topic_0000000000000154.html","clsPartner.sVDMUTER Property",""]; -_s['399']=["topic_0000000000000155.html","clsPartner.sTXRes00 Property",""]; -_s['400']=["topic_0000000000000156.html","clsPartner.bSaldiert Property",""]; -_s['401']=["topic_0000000000000157.html","clsPartner.iAZEPL00 Property",""]; -_s['402']=["topic_0000000000000158.html","clsPartner.bCDVSA00 Property",""]; -_s['403']=["topic_0000000000000159.html","clsPartner.daValidto Property",""]; -_s['404']=["topic_000000000000015A.html","clsPartner.iNRDOM00 Property",""]; -_s['405']=["topic_000000000000015B.html","clsPartner.iNRNAT01 Property",""]; -_s['406']=["topic_000000000000015C.html","clsPartner.daGebGruendDat Property",""]; -_s['407']=["topic_000000000000015D.html","clsPartner.sCDNOG01 Property",""]; -_s['408']=["topic_000000000000015E.html","clsPartner.sCDPAW00 Property",""]; -_s['409']=["topic_000000000000015F.html","clsPartner.iNRBEU01 Property",""]; -_s['410']=["topic_0000000000000160.html","clsPartner.iNRBEU02 Property",""]; -_s['411']=["topic_0000000000000161.html","clsPartner.sKurzname_Stamm Property",""]; -_s['412']=["topic_0000000000000162.html","clsPartner.bIsPerson Property",""]; -_s['413']=["topic_0000000000000163.html","clsPartner.bBoersenkotiert Property",""]; -_s['414']=["topic_0000000000000164.html","clsPartner.iLegal_form_id Property",""]; -_s['415']=["topic_0000000000000165.html","clsPartner.iSector_id Property",""]; -_s['416']=["topic_0000000000000166.html","clsPartner.iRate_intl_id Property",""]; -_s['417']=["topic_0000000000000167.html","clsPartner.daRate_intl_date Property",""]; -_s['418']=["topic_0000000000000168.html","clsPartner.sName_formated Property",""]; -_s['419']=["topic_0000000000000169.html","EDOKA_Database Namespace",""]; -_s['420']=["topic_000000000000016A.html","EDOKA_DB Class",""]; -_s['421']=["topic_000000000000016A_attached_props--.html","EDOKA_DB Attached Properties",""]; -_s['422']=["topic_000000000000016A_events--.html","EDOKA_DB Events",""]; -_s['423']=["topic_000000000000016A_methods--.html","EDOKA_DB Methods",""]; -_s['424']=["topic_000000000000016A_props--.html","EDOKA_DB Properties",""]; -_s['425']=["topic_000000000000016A_vars--.html","EDOKA_DB Fields",""]; -_s['426']=["topic_000000000000016B.html","connectionstring Field",""]; -_s['427']=["topic_000000000000016C.html","dsdaten Field",""]; -_s['428']=["topic_000000000000016D.html","EDOKA_DB(String) Constructor",""]; -_s['429']=["topic_000000000000016D_overloads--.html","EDOKA_DB Constructor",""]; -_s['430']=["topic_000000000000016E.html","EDOKA_DB Constructor",""]; -_s['431']=["topic_000000000000016E_overloads--.html","EDOKA_DB Constructor",""]; -_s['432']=["topic_000000000000016F.html","EDOKA_DB.add_parameter Method",""]; -_s['433']=["topic_0000000000000170.html","EDOKA_DB.clear_parameter Method",""]; -_s['434']=["topic_0000000000000171.html","EDOKA_DB.Get_Tabledata Method",""]; -_s['435']=["topic_0000000000000172.html","EDOKA_DB.Exec_SQL Method",""]; -_s['436']=["topic_0000000000000173.html","EDOKA_DB.Update_Data Method",""]; -_s['437']=["topic_0000000000000174.html","EDOKA_DB.get_dbkey Method",""]; -_s['438']=["topic_0000000000000175.html","EDOKA_DB.Get_Mitarbeiternr Method",""]; -_s['439']=["topic_0000000000000176.html","EDOKA_DB.Get_Vorlage_By_DokumentID Method",""]; -_s['440']=["topic_0000000000000177.html","EDOKA_DB.get_vorlage_to_file Method",""]; -_s['441']=["topic_0000000000000178.html","EDOKA_DB.Get_ApplicationType_from_Vorlage Method",""]; -_s['442']=["topic_0000000000000179.html","EDOKA_DB.Create_EDOKA_Doc Method",""]; -_s['443']=["topic_000000000000017A.html","EDOKA_DB.COLD_Index_Sichern Method",""]; -_s['444']=["topic_000000000000017B.html","EDOKA_DB.Status_Erstellen Method",""]; -_s['445']=["topic_000000000000017C.html","EDOKA_DB.Get_Partnerstruktur Method",""]; -_s['446']=["topic_000000000000017D.html","EDOKA_DB.Get_Dokumente Method",""]; -_s['447']=["topic_000000000000017E.html","EDOKA_DB.GetDocumentAsBase64 Method",""]; -_s['448']=["topic_000000000000017F.html","EDOKA_DB.Save_To_DB Method",""]; -_s['449']=["topic_0000000000000180.html","EDOKA_DB.Get_DokumentWertList Method",""]; -_s['450']=["topic_0000000000000181.html","EDOKA_DB.BuildAllFieldsSQL Method",""]; -_s['451']=["topic_0000000000000182.html","EDOKA_DB.BuildInsertSQL Method",""]; -_s['452']=["topic_0000000000000183.html","EDOKA_DB.InsertParameter Method",""]; -_s['453']=["topic_0000000000000184.html","EDOKA_DB.CreateInsertCommand Method",""]; -_s['454']=["topic_0000000000000185.html","EDOKA_DB.InsertDataRow Method",""]; -_s['455']=["topic_0000000000000186.html","EDOKA_Database Reference ",""]; +_s['0']=["index.html","Default page",""]; +_s['1']=["search--.html","Search",""]; +_s['2']=["topic_0000000000000000.html","edoka_dms Namespace",""]; +_s['3']=["topic_0000000000000001.html","clsConnectionProvider Class",""]; +_s['4']=["topic_0000000000000001_attached_props--.html","clsConnectionProvider Attached Properties",""]; +_s['5']=["topic_0000000000000001_events--.html","clsConnectionProvider Events",""]; +_s['6']=["topic_0000000000000001_methods--.html","clsConnectionProvider Methods",""]; +_s['7']=["topic_0000000000000001_props--.html","clsConnectionProvider Properties",""]; +_s['8']=["topic_0000000000000001_vars--.html","clsConnectionProvider Fields",""]; +_s['9']=["topic_0000000000000002.html","clsConnectionProvider Constructor",""]; +_s['10']=["topic_0000000000000003.html","clsConnectionProvider.Dispose Method",""]; +_s['11']=["topic_0000000000000003_overloads--.html","clsConnectionProvider.Dispose Method",""]; +_s['12']=["topic_0000000000000004.html","clsConnectionProvider.Dispose (Boolean) Method",""]; +_s['13']=["topic_0000000000000004_overloads--.html","clsConnectionProvider.Dispose Method",""]; +_s['14']=["topic_0000000000000005.html","clsConnectionProvider.OpenConnection Method",""]; +_s['15']=["topic_0000000000000006.html","clsConnectionProvider.BeginTransaction Method",""]; +_s['16']=["topic_0000000000000007.html","clsConnectionProvider.CommitTransaction Method",""]; +_s['17']=["topic_0000000000000008.html","clsConnectionProvider.RollbackTransaction Method",""]; +_s['18']=["topic_0000000000000009.html","clsConnectionProvider.SaveTransaction Method",""]; +_s['19']=["topic_000000000000000A.html","clsConnectionProvider.CloseConnection Method",""]; +_s['20']=["topic_000000000000000B.html","clsConnectionProvider.stCurrentTransaction Property",""]; +_s['21']=["topic_000000000000000C.html","clsConnectionProvider.bIsTransactionPending Property",""]; +_s['22']=["topic_000000000000000D.html","clsConnectionProvider.scoDBConnection Property",""]; +_s['23']=["topic_000000000000000E.html","clsConnectionProvider.sConnectionString Property",""]; +_s['24']=["topic_000000000000000F.html","LLBLError Enumeration",""]; +_s['25']=["topic_0000000000000011.html","ICommonDBAccess Interface",""]; +_s['26']=["topic_0000000000000011_attached_props--.html","ICommonDBAccess Attached Properties",""]; +_s['27']=["topic_0000000000000011_events--.html","ICommonDBAccess Events",""]; +_s['28']=["topic_0000000000000011_methods--.html","ICommonDBAccess Methods",""]; +_s['29']=["topic_0000000000000011_props--.html","ICommonDBAccess Properties",""]; +_s['30']=["topic_0000000000000011_vars--.html","ICommonDBAccess Fields",""]; +_s['31']=["topic_0000000000000012.html","ICommonDBAccess.Insert Method",""]; +_s['32']=["topic_0000000000000013.html","ICommonDBAccess.Update Method",""]; +_s['33']=["topic_0000000000000014.html","ICommonDBAccess.Delete Method",""]; +_s['34']=["topic_0000000000000015.html","ICommonDBAccess.SelectOne Method",""]; +_s['35']=["topic_0000000000000016.html","ICommonDBAccess.SelectAll Method",""]; +_s['36']=["topic_0000000000000017.html","clsDBInteractionBase Class",""]; +_s['37']=["topic_0000000000000017_attached_props--.html","clsDBInteractionBase Attached Properties",""]; +_s['38']=["topic_0000000000000017_events--.html","clsDBInteractionBase Events",""]; +_s['39']=["topic_0000000000000017_methods--.html","clsDBInteractionBase Methods",""]; +_s['40']=["topic_0000000000000017_props--.html","clsDBInteractionBase Properties",""]; +_s['41']=["topic_0000000000000017_vars--.html","clsDBInteractionBase Fields",""]; +_s['42']=["topic_0000000000000018.html","m_scoMainConnection Field",""]; +_s['43']=["topic_0000000000000019.html","m_iRowsAffected Field",""]; +_s['44']=["topic_000000000000001A.html","m_iErrorCode Field",""]; +_s['45']=["topic_000000000000001B.html","m_bMainConnectionIsCreatedLocal Field",""]; +_s['46']=["topic_000000000000001C.html","m_cpMainConnectionProvider Field",""]; +_s['47']=["topic_000000000000001D.html","clsDBInteractionBase Constructor",""]; +_s['48']=["topic_000000000000001E.html","clsDBInteractionBase.Dispose Method",""]; +_s['49']=["topic_000000000000001E_overloads--.html","clsDBInteractionBase.Dispose Method",""]; +_s['50']=["topic_000000000000001F.html","clsDBInteractionBase.Dispose (Boolean) Method",""]; +_s['51']=["topic_000000000000001F_overloads--.html","clsDBInteractionBase.Dispose Method",""]; +_s['52']=["topic_0000000000000020.html","clsDBInteractionBase.Insert Method",""]; +_s['53']=["topic_0000000000000021.html","clsDBInteractionBase.Delete Method",""]; +_s['54']=["topic_0000000000000022.html","clsDBInteractionBase.Update Method",""]; +_s['55']=["topic_0000000000000023.html","clsDBInteractionBase.SelectOne Method",""]; +_s['56']=["topic_0000000000000024.html","clsDBInteractionBase.SelectAll Method",""]; +_s['57']=["topic_0000000000000025.html","clsDBInteractionBase.cpMainConnectionProvider Property",""]; +_s['58']=["topic_0000000000000026.html","clsDBInteractionBase.iErrorCode Property",""]; +_s['59']=["topic_0000000000000027.html","clsDBInteractionBase.sConnectionString Property",""]; +_s['60']=["topic_0000000000000028.html","clsDBInteractionBase.iRowsAffected Property",""]; +_s['61']=["topic_0000000000000029.html","clsDokument Class",""]; +_s['62']=["topic_0000000000000029_attached_props--.html","clsDokument Attached Properties",""]; +_s['63']=["topic_0000000000000029_events--.html","clsDokument Events",""]; +_s['64']=["topic_0000000000000029_methods--.html","clsDokument Methods",""]; +_s['65']=["topic_0000000000000029_props--.html","clsDokument Properties",""]; +_s['66']=["topic_0000000000000029_vars--.html","clsDokument Fields",""]; +_s['67']=["topic_000000000000002A.html","clsDokument Constructor",""]; +_s['68']=["topic_000000000000002B.html","clsDokument.Insert Method",""]; +_s['69']=["topic_000000000000002C.html","clsDokument.Update Method",""]; +_s['70']=["topic_000000000000002D.html","clsDokument.Delete Method",""]; +_s['71']=["topic_000000000000002E.html","clsDokument.SelectOne Method",""]; +_s['72']=["topic_000000000000002F.html","clsDokument.SelectAll Method",""]; +_s['73']=["topic_0000000000000030.html","clsDokument.sDokumentid Property",""]; +_s['74']=["topic_0000000000000031.html","clsDokument.iMitarbeiternr Property",""]; +_s['75']=["topic_0000000000000032.html","clsDokument.iMitarbeiternr1 Property",""]; +_s['76']=["topic_0000000000000033.html","clsDokument.iNrpar00 Property",""]; +_s['77']=["topic_0000000000000034.html","clsDokument.sDokumentidn Property",""]; +_s['78']=["topic_0000000000000035.html","clsDokument.sDokumentname Property",""]; +_s['79']=["topic_0000000000000036.html","clsDokument.iErsteller Property",""]; +_s['80']=["topic_0000000000000037.html","clsDokument.iErstellerteam Property",""]; +_s['81']=["topic_0000000000000038.html","clsDokument.daErstelltam Property",""]; +_s['82']=["topic_0000000000000039.html","clsDokument.iMutierer Property",""]; +_s['83']=["topic_000000000000003A.html","clsDokument.iMutierertieam Property",""]; +_s['84']=["topic_000000000000003B.html","clsDokument.daMutiertam Property",""]; +_s['85']=["topic_000000000000003C.html","clsDokument.sSpeicherort Property",""]; +_s['86']=["topic_000000000000003D.html","clsDokument.bGesperrt Property",""]; +_s['87']=["topic_000000000000003E.html","clsDokument.iGesperrt_durch Property",""]; +_s['88']=["topic_000000000000003F.html","clsDokument.daGesperrtam Property",""]; +_s['89']=["topic_0000000000000040.html","clsDokument.sBezeichnung Property",""]; +_s['90']=["topic_0000000000000041.html","clsDokument.sBemerkung Property",""]; +_s['91']=["topic_0000000000000042.html","clsDokument.bAuserstuebernahme Property",""]; +_s['92']=["topic_0000000000000043.html","clsDokument.iDokumenttypnr Property",""]; +_s['93']=["topic_0000000000000044.html","clsDokument.bUnvollstaendig Property",""]; +_s['94']=["topic_0000000000000045.html","clsDokument.sBemerkunguvm Property",""]; +_s['95']=["topic_0000000000000046.html","clsDokument.bBereit_zur_archivierung Property",""]; +_s['96']=["topic_0000000000000047.html","clsDokument.bAusgangsarchiviert Property",""]; +_s['97']=["topic_0000000000000048.html","clsDokument.daDatum_ausgangsarchivierung Property",""]; +_s['98']=["topic_0000000000000049.html","clsDokument.iMa_ausgangsarchivierung Property",""]; +_s['99']=["topic_000000000000004A.html","clsDokument.bZu_retournieren Property",""]; +_s['100']=["topic_000000000000004B.html","clsDokument.bEingangsarchiviert Property",""]; +_s['101']=["topic_000000000000004C.html","clsDokument.daDatum_eingangsarchivierung Property",""]; +_s['102']=["topic_000000000000004D.html","clsDokument.iMa_eingangsarchivierung Property",""]; +_s['103']=["topic_000000000000004E.html","clsDokument.iStatus_edoka_batch_ausgang Property",""]; +_s['104']=["topic_000000000000004F.html","clsDokument.iStatus_edoka_batch_eingang Property",""]; +_s['105']=["topic_0000000000000050.html","clsDokument.sLoeschgrund Property",""]; +_s['106']=["topic_0000000000000051.html","clsDokument.iColdstatus Property",""]; +_s['107']=["topic_0000000000000052.html","clsDokument.sVersandadresse Property",""]; +_s['108']=["topic_0000000000000053.html","clsDokument.iBarcodenr Property",""]; +_s['109']=["topic_0000000000000054.html","clsDokument.sColddokumentid Property",""]; +_s['110']=["topic_0000000000000055.html","clsDokument.bAmsdokument Property",""]; +_s['111']=["topic_0000000000000056.html","clsDokument.iVerantwortlich Property",""]; +_s['112']=["topic_0000000000000057.html","clsDokument.iZustaendiger Property",""]; +_s['113']=["topic_0000000000000058.html","clsDokument.iUnterschriftlinks Property",""]; +_s['114']=["topic_0000000000000059.html","clsDokument.iUnterschriftrechts Property",""]; +_s['115']=["topic_000000000000005A.html","clsDokument.iPostzustellung Property",""]; +_s['116']=["topic_000000000000005B.html","clsDokument.bAktiv Property",""]; +_s['117']=["topic_000000000000005C.html","clsDokument.iStatusnr Property",""]; +_s['118']=["topic_000000000000005D.html","clsDokument.bZustaendig_kube Property",""]; +_s['119']=["topic_000000000000005E.html","clsDokument.sZustelladresse Property",""]; +_s['120']=["topic_000000000000005F.html","clsDokument.bVertraulich Property",""]; +_s['121']=["topic_0000000000000060.html","clsDokument.daErstellungsdatum Property",""]; +_s['122']=["topic_0000000000000061.html","clsDokument.daArchivierungsdatum Property",""]; +_s['123']=["topic_0000000000000062.html","clsDokument.daTermin Property",""]; +_s['124']=["topic_0000000000000063.html","clsDokument.iMutiererteam Property",""]; +_s['125']=["topic_0000000000000064.html","clsDokument.sAnredezustelladresse Property",""]; +_s['126']=["topic_0000000000000065.html","clsDokument.iDokdurchkubeweitergegeben Property",""]; +_s['127']=["topic_0000000000000066.html","clsDokument.iBck Property",""]; +_s['128']=["topic_0000000000000067.html","clsDokument.iBearbeitungszeit_in_minuten Property",""]; +_s['129']=["topic_0000000000000068.html","clsDokument.iMonierung_in_tagen Property",""]; +_s['130']=["topic_0000000000000069.html","clsDokument.iAufbewahrung_elektronisch Property",""]; +_s['131']=["topic_000000000000006A.html","clsDokument.iAufbewahrung_phaysisch Property",""]; +_s['132']=["topic_000000000000006B.html","clsDokument.iIn_edoka_datenbank Property",""]; +_s['133']=["topic_000000000000006C.html","clsDokument.iBearbeitung_nach_abschluss Property",""]; +_s['134']=["topic_000000000000006D.html","clsDokument.sColdfolder Property",""]; +_s['135']=["topic_000000000000006E.html","clsDokument.sColdschema Property",""]; +_s['136']=["topic_000000000000006F.html","clsDokument.daErinnerungam Property",""]; +_s['137']=["topic_0000000000000070.html","clsDokument.sFANummer1 Property",""]; +_s['138']=["topic_0000000000000071.html","clsDokument.sFANummer2 Property",""]; +_s['139']=["topic_0000000000000072.html","clsDokument.bFapartnerwechsel Property",""]; +_s['140']=["topic_0000000000000073.html","clsDokument.bFAStatuswechsel Property",""]; +_s['141']=["topic_0000000000000074.html","clsDokument.bFAVerantwortlicherwechsel Property",""]; +_s['142']=["topic_0000000000000075.html","clsDokument.sBedRDokumentid Property",""]; +_s['143']=["topic_0000000000000076.html","clsDokument.bBedRRetourniert Property",""]; +_s['144']=["topic_0000000000000077.html","clsDokument.iBRVernichtungnachTagen Property",""]; +_s['145']=["topic_0000000000000078.html","clsDokument.bOfficedokumentgeloescht Property",""]; +_s['146']=["topic_0000000000000079.html","clsDokument.sFanummer3 Property",""]; +_s['147']=["topic_000000000000007A.html","clsDokument.sVvnr Property",""]; +_s['148']=["topic_000000000000007B.html","clsDokument.iAnzeigeStatus Property",""]; +_s['149']=["topic_000000000000007C.html","clsDokument.bBl_scan Property",""]; +_s['150']=["topic_000000000000007D.html","clsDokument.bBldossier Property",""]; +_s['151']=["topic_000000000000007E.html","clsDokument.iNoEdit Property",""]; +_s['152']=["topic_000000000000007F.html","clsDokument_status Class",""]; +_s['153']=["topic_000000000000007F_attached_props--.html","clsDokument_status Attached Properties",""]; +_s['154']=["topic_000000000000007F_events--.html","clsDokument_status Events",""]; +_s['155']=["topic_000000000000007F_methods--.html","clsDokument_status Methods",""]; +_s['156']=["topic_000000000000007F_props--.html","clsDokument_status Properties",""]; +_s['157']=["topic_000000000000007F_vars--.html","clsDokument_status Fields",""]; +_s['158']=["topic_0000000000000080.html","clsDokument_status Constructor",""]; +_s['159']=["topic_0000000000000081.html","clsDokument_status.Insert Method",""]; +_s['160']=["topic_0000000000000082.html","clsDokument_status.Update Method",""]; +_s['161']=["topic_0000000000000083.html","clsDokument_status.Delete Method",""]; +_s['162']=["topic_0000000000000084.html","clsDokument_status.SelectOne Method",""]; +_s['163']=["topic_0000000000000085.html","clsDokument_status.SelectAll Method",""]; +_s['164']=["topic_0000000000000086.html","clsDokument_status.iDokument_statusnr Property",""]; +_s['165']=["topic_0000000000000087.html","clsDokument_status.sDokumenitid Property",""]; +_s['166']=["topic_0000000000000088.html","clsDokument_status.iStatus_bezeichnungnr Property",""]; +_s['167']=["topic_0000000000000089.html","clsDokument_status.sBezeichnung Property",""]; +_s['168']=["topic_000000000000008A.html","clsDokument_status.sReihenfolge Property",""]; +_s['169']=["topic_000000000000008B.html","clsDokument_status.bFolgestatus_durch_anderen_verantwortlichen Property",""]; +_s['170']=["topic_000000000000008C.html","clsDokument_status.bDokument_bearbeitung_moeglich Property",""]; +_s['171']=["topic_000000000000008D.html","clsDokument_status.iErledigung_ab Property",""]; +_s['172']=["topic_000000000000008E.html","clsDokument_status.bDokument_ausgangsarchivierung Property",""]; +_s['173']=["topic_000000000000008F.html","clsDokument_status.bDokument_bearbeitung_abgeschlossen Property",""]; +_s['174']=["topic_0000000000000090.html","clsDokument_status.bAktiv Property",""]; +_s['175']=["topic_0000000000000091.html","clsDokument_status.daErstellt_am Property",""]; +_s['176']=["topic_0000000000000092.html","clsDokument_status.iMutierer Property",""]; +_s['177']=["topic_0000000000000093.html","clsDokumentstatus Class",""]; +_s['178']=["topic_0000000000000093_attached_props--.html","clsDokumentstatus Attached Properties",""]; +_s['179']=["topic_0000000000000093_events--.html","clsDokumentstatus Events",""]; +_s['180']=["topic_0000000000000093_methods--.html","clsDokumentstatus Methods",""]; +_s['181']=["topic_0000000000000093_props--.html","clsDokumentstatus Properties",""]; +_s['182']=["topic_0000000000000093_vars--.html","clsDokumentstatus Fields",""]; +_s['183']=["topic_0000000000000094.html","clsDokumentstatus Constructor",""]; +_s['184']=["topic_0000000000000095.html","clsDokumentstatus.Insert Method",""]; +_s['185']=["topic_0000000000000096.html","clsDokumentstatus.Update Method",""]; +_s['186']=["topic_0000000000000097.html","clsDokumentstatus.Delete Method",""]; +_s['187']=["topic_0000000000000098.html","clsDokumentstatus.SelectOne Method",""]; +_s['188']=["topic_0000000000000099.html","clsDokumentstatus.SelectAll Method",""]; +_s['189']=["topic_000000000000009A.html","clsDokumentstatus.iDokumentstatusnr Property",""]; +_s['190']=["topic_000000000000009B.html","clsDokumentstatus.iDokumenttypnr Property",""]; +_s['191']=["topic_000000000000009C.html","clsDokumentstatus.iStatustypnr Property",""]; +_s['192']=["topic_000000000000009D.html","clsDokumentstatus.iStatus_bezeichnungnr Property",""]; +_s['193']=["topic_000000000000009E.html","clsDokumentstatus.iReihenfolge Property",""]; +_s['194']=["topic_000000000000009F.html","clsDokumentstatus.bFolgestatus_durch_anderen_verantwortlichen Property",""]; +_s['195']=["topic_00000000000000A0.html","clsDokumentstatus.bDokumentbearbeitung_moeglich Property",""]; +_s['196']=["topic_00000000000000A1.html","clsDokumentstatus.iErledigung_ab Property",""]; +_s['197']=["topic_00000000000000A2.html","clsDokumentstatus.bDokument_ausgangsarchivieren Property",""]; +_s['198']=["topic_00000000000000A3.html","clsDokumentstatus.bDokument_bearbeitung_abgeschlossen Property",""]; +_s['199']=["topic_00000000000000A4.html","clsDokumentstatus.iMandantnr Property",""]; +_s['200']=["topic_00000000000000A5.html","clsDokumentstatus.bAktiv Property",""]; +_s['201']=["topic_00000000000000A6.html","clsDokumentstatus.daErstellt_am Property",""]; +_s['202']=["topic_00000000000000A7.html","clsDokumentstatus.daMutiert_am Property",""]; +_s['203']=["topic_00000000000000A8.html","clsDokumentstatus.iMutierer Property",""]; +_s['204']=["topic_00000000000000A9.html","clsDokumentstatus.iStatustyp Property",""]; +_s['205']=["topic_00000000000000AA.html","clsDokumenttyp Class",""]; +_s['206']=["topic_00000000000000AA_attached_props--.html","clsDokumenttyp Attached Properties",""]; +_s['207']=["topic_00000000000000AA_events--.html","clsDokumenttyp Events",""]; +_s['208']=["topic_00000000000000AA_methods--.html","clsDokumenttyp Methods",""]; +_s['209']=["topic_00000000000000AA_props--.html","clsDokumenttyp Properties",""]; +_s['210']=["topic_00000000000000AA_vars--.html","clsDokumenttyp Fields",""]; +_s['211']=["topic_00000000000000AB.html","clsDokumenttyp Constructor",""]; +_s['212']=["topic_00000000000000AC.html","clsDokumenttyp.Insert Method",""]; +_s['213']=["topic_00000000000000AD.html","clsDokumenttyp.Update Method",""]; +_s['214']=["topic_00000000000000AE.html","clsDokumenttyp.Delete Method",""]; +_s['215']=["topic_00000000000000AF.html","clsDokumenttyp.SelectOne Method",""]; +_s['216']=["topic_00000000000000B0.html","clsDokumenttyp.SelectAll Method",""]; +_s['217']=["topic_00000000000000B1.html","clsDokumenttyp.iDokumenttypnr Property",""]; +_s['218']=["topic_00000000000000B2.html","clsDokumenttyp.sBezeichnung Property",""]; +_s['219']=["topic_00000000000000B3.html","clsDokumenttyp.sBeschreibung Property",""]; +_s['220']=["topic_00000000000000B4.html","clsDokumenttyp.bZu_vercolden Property",""]; +_s['221']=["topic_00000000000000B5.html","clsDokumenttyp.bZu_retournieren Property",""]; +_s['222']=["topic_00000000000000B6.html","clsDokumenttyp.bEingang_ersetzt_ausgang Property",""]; +_s['223']=["topic_00000000000000B7.html","clsDokumenttyp.bWird_importiert Property",""]; +_s['224']=["topic_00000000000000B8.html","clsDokumenttyp.iAnzahl_tage Property",""]; +_s['225']=["topic_00000000000000B9.html","clsDokumenttyp.iDbearbeitungszeit Property",""]; +_s['226']=["topic_00000000000000BA.html","clsDokumenttyp.iTage_mutation Property",""]; +_s['227']=["topic_00000000000000BB.html","clsDokumenttyp.bPartnersaldierung_statusalt Property",""]; +_s['228']=["topic_00000000000000BC.html","clsDokumenttyp.bWird_nicht_geloescht Property",""]; +_s['229']=["topic_00000000000000BD.html","clsDokumenttyp.bVertrauliches_dokument Property",""]; +_s['230']=["topic_00000000000000BE.html","clsDokumenttyp.bUnterschrift_links Property",""]; +_s['231']=["topic_00000000000000BF.html","clsDokumenttyp.bUnterschrift_rechts Property",""]; +_s['232']=["topic_00000000000000C0.html","clsDokumenttyp.iMonate_bis_zur_archivierung Property",""]; +_s['233']=["topic_00000000000000C1.html","clsDokumenttyp.iAufbewahrungsfrist_elektronisch Property",""]; +_s['234']=["topic_00000000000000C2.html","clsDokumenttyp.iAufbewahrungsfrist_physisch Property",""]; +_s['235']=["topic_00000000000000C3.html","clsDokumenttyp.iMandantnr Property",""]; +_s['236']=["topic_00000000000000C4.html","clsDokumenttyp.bAktiv Property",""]; +_s['237']=["topic_00000000000000C5.html","clsDokumenttyp.daErstellt_am Property",""]; +_s['238']=["topic_00000000000000C6.html","clsDokumenttyp.daMutiert_am Property",""]; +_s['239']=["topic_00000000000000C7.html","clsDokumenttyp.iMutierer Property",""]; +_s['240']=["topic_00000000000000C8.html","clsDokumenttyp.iOffice_vorlagenr Property",""]; +_s['241']=["topic_00000000000000C9.html","clsDokumenttyp.iDokumentart_kundendossier Property",""]; +_s['242']=["topic_00000000000000CA.html","clsDokumenttyp.iDokumentart_neuerstellung Property",""]; +_s['243']=["topic_00000000000000CB.html","clsDokumenttyp.iDokumentart_retournierung Property",""]; +_s['244']=["topic_00000000000000CC.html","clsDokumenttyp.iDokumentart_coldausgang Property",""]; +_s['245']=["topic_00000000000000CD.html","clsDokumenttyp.iDokumentart_coldeingang Property",""]; +_s['246']=["topic_00000000000000CE.html","clsDokumenttyp.iDokumentart_host Property",""]; +_s['247']=["topic_00000000000000CF.html","clsDokumenttyp.iDokumentart_weitere Property",""]; +_s['248']=["topic_00000000000000D0.html","clsDokumenttyp.iDokumentart_nativ Property",""]; +_s['249']=["topic_00000000000000D1.html","clsDokumenttyp.iProzessnr Property",""]; +_s['250']=["topic_00000000000000D2.html","clsDokumenttyp.iProzessnr1 Property",""]; +_s['251']=["topic_00000000000000D3.html","clsDokumenttyp.bAmsdokument Property",""]; +_s['252']=["topic_00000000000000D4.html","clsDokumenttyp.bHostdokument Property",""]; +_s['253']=["topic_00000000000000D5.html","clsDokumenttyp.sHostdokumenttyp Property",""]; +_s['254']=["topic_00000000000000D6.html","clsDokumenttyp.iCold_folder Property",""]; +_s['255']=["topic_00000000000000D7.html","clsDokumenttyp.iPhysisches_archiv Property",""]; +_s['256']=["topic_00000000000000D8.html","clsDokumenttyp.iDokumentstatus Property",""]; +_s['257']=["topic_00000000000000D9.html","clsDokumenttyp.bDokument_wird_erstellt Property",""]; +_s['258']=["topic_00000000000000DA.html","clsDokumenttyp.bDokument_wird_retourniert Property",""]; +_s['259']=["topic_00000000000000DB.html","clsDokumenttyp.bCold_ersetzen Property",""]; +_s['260']=["topic_00000000000000DC.html","clsDokumenttyp.bEmail_versand Property",""]; +_s['261']=["topic_00000000000000DD.html","clsDokumenttyp.bFunktionen_zuweisen Property",""]; +_s['262']=["topic_00000000000000DE.html","clsDokumenttyp.iDokumentstatus_barcode Property",""]; +_s['263']=["topic_00000000000000DF.html","clsDokumenttyp.bNurnative Property",""]; +_s['264']=["topic_00000000000000E0.html","clsDokumenttyp.iOwner Property",""]; +_s['265']=["topic_00000000000000E1.html","clsDokumenttyp.bVertrag Property",""]; +_s['266']=["topic_00000000000000E2.html","clsDokumenttyp.iObjektbezeichnungnr Property",""]; +_s['267']=["topic_00000000000000E3.html","clsDokumenttyp.bBedingtretournierbar Property",""]; +_s['268']=["topic_00000000000000E4.html","clsDokumenttyp.iDoktypbedingteretournierung Property",""]; +_s['269']=["topic_00000000000000E5.html","clsDokumenttyp.iTagebisvernichtungbedingteretournierung Property",""]; +_s['270']=["topic_00000000000000E6.html","clsDokumenttyp.bAnzeigeZurDokumenterstellung Property",""]; +_s['271']=["topic_00000000000000E7.html","clsDokumenttyp.bKundenDokument Property",""]; +_s['272']=["topic_00000000000000E8.html","clsDokumenttyp.bSb Property",""]; +_s['273']=["topic_00000000000000E9.html","clsDokumenttyp.bSbimport Property",""]; +_s['274']=["topic_00000000000000EA.html","clsDokumenttyp.bSbedituser Property",""]; +_s['275']=["topic_00000000000000EB.html","clsDokumenttyp.bSbnur Property",""]; +_s['276']=["topic_00000000000000EC.html","clsDokumenttyp.bBezeichnungmut Property",""]; +_s['277']=["topic_00000000000000ED.html","clsDokumenttyp.bIstFarbigArchiviert Property",""]; +_s['278']=["topic_00000000000000EE.html","clsDokumenttyp.bIntern Property",""]; +_s['279']=["topic_00000000000000EF.html","clsDokumenttyp.bElDokImport Property",""]; +_s['280']=["topic_00000000000000F0.html","clsDokumenttyp.sFachverantwortung Property",""]; +_s['281']=["topic_00000000000000F1.html","clsKey_tabelle Class",""]; +_s['282']=["topic_00000000000000F1_attached_props--.html","clsKey_tabelle Attached Properties",""]; +_s['283']=["topic_00000000000000F1_events--.html","clsKey_tabelle Events",""]; +_s['284']=["topic_00000000000000F1_methods--.html","clsKey_tabelle Methods",""]; +_s['285']=["topic_00000000000000F1_props--.html","clsKey_tabelle Properties",""]; +_s['286']=["topic_00000000000000F1_vars--.html","clsKey_tabelle Fields",""]; +_s['287']=["topic_00000000000000F2.html","clsKey_tabelle Constructor",""]; +_s['288']=["topic_00000000000000F3.html","clsKey_tabelle.Insert Method",""]; +_s['289']=["topic_00000000000000F4.html","clsKey_tabelle.Update Method",""]; +_s['290']=["topic_00000000000000F5.html","clsKey_tabelle.Delete Method",""]; +_s['291']=["topic_00000000000000F6.html","clsKey_tabelle.SelectOne Method",""]; +_s['292']=["topic_00000000000000F7.html","clsKey_tabelle.SelectAll Method",""]; +_s['293']=["topic_00000000000000F8.html","clsKey_tabelle.iKeynr Property",""]; +_s['294']=["topic_00000000000000F9.html","clsKey_tabelle.sBeschreibung Property",""]; +_s['295']=["topic_00000000000000FA.html","clsKey_tabelle.iKey_wert Property",""]; +_s['296']=["topic_00000000000000FB.html","clsKey_tabelle.iMandantnr Property",""]; +_s['297']=["topic_00000000000000FC.html","clsKey_tabelle.bAktiv Property",""]; +_s['298']=["topic_00000000000000FD.html","clsKey_tabelle.daErstellt_am Property",""]; +_s['299']=["topic_00000000000000FE.html","clsKey_tabelle.daMutiert_am Property",""]; +_s['300']=["topic_00000000000000FF.html","clsKey_tabelle.iMutierer Property",""]; +_s['301']=["topic_0000000000000100.html","clsMitarbeiter Class",""]; +_s['302']=["topic_0000000000000100_attached_props--.html","clsMitarbeiter Attached Properties",""]; +_s['303']=["topic_0000000000000100_events--.html","clsMitarbeiter Events",""]; +_s['304']=["topic_0000000000000100_methods--.html","clsMitarbeiter Methods",""]; +_s['305']=["topic_0000000000000100_props--.html","clsMitarbeiter Properties",""]; +_s['306']=["topic_0000000000000100_vars--.html","clsMitarbeiter Fields",""]; +_s['307']=["topic_0000000000000101.html","clsMitarbeiter Constructor",""]; +_s['308']=["topic_0000000000000102.html","clsMitarbeiter.Insert Method",""]; +_s['309']=["topic_0000000000000103.html","clsMitarbeiter.Update Method",""]; +_s['310']=["topic_0000000000000104.html","clsMitarbeiter.Delete Method",""]; +_s['311']=["topic_0000000000000105.html","clsMitarbeiter.SelectOne Method",""]; +_s['312']=["topic_0000000000000106.html","clsMitarbeiter.SelectAll Method",""]; +_s['313']=["topic_0000000000000107.html","clsMitarbeiter.iMitarbeiternr Property",""]; +_s['314']=["topic_0000000000000108.html","clsMitarbeiter.sVorname Property",""]; +_s['315']=["topic_0000000000000109.html","clsMitarbeiter.sName Property",""]; +_s['316']=["topic_000000000000010A.html","clsMitarbeiter.sKurzzeichen Property",""]; +_s['317']=["topic_000000000000010B.html","clsMitarbeiter.sAnrede Property",""]; +_s['318']=["topic_000000000000010C.html","clsMitarbeiter.sTgnummer Property",""]; +_s['319']=["topic_000000000000010D.html","clsMitarbeiter.sEmail Property",""]; +_s['320']=["topic_000000000000010E.html","clsMitarbeiter.sFax Property",""]; +_s['321']=["topic_000000000000010F.html","clsMitarbeiter.sTelefon Property",""]; +_s['322']=["topic_0000000000000110.html","clsMitarbeiter.sUnterschrift_text Property",""]; +_s['323']=["topic_0000000000000111.html","clsMitarbeiter.iFunktionnr Property",""]; +_s['324']=["topic_0000000000000112.html","clsMitarbeiter.iSprache Property",""]; +_s['325']=["topic_0000000000000113.html","clsMitarbeiter.iFuermandant Property",""]; +_s['326']=["topic_0000000000000114.html","clsMitarbeiter.bShowtip Property",""]; +_s['327']=["topic_0000000000000115.html","clsMitarbeiter.iPartnernr Property",""]; +_s['328']=["topic_0000000000000116.html","clsMitarbeiter.iMandantnr Property",""]; +_s['329']=["topic_0000000000000117.html","clsMitarbeiter.bAktiv Property",""]; +_s['330']=["topic_0000000000000118.html","clsMitarbeiter.daErstellt_am Property",""]; +_s['331']=["topic_0000000000000119.html","clsMitarbeiter.daMutiert_am Property",""]; +_s['332']=["topic_000000000000011A.html","clsMitarbeiter.iMutierer Property",""]; +_s['333']=["topic_000000000000011B.html","clsMitarbeiter.bMailempfang Property",""]; +_s['334']=["topic_000000000000011C.html","clsMitarbeiter.bEdokaMesasge Property",""]; +_s['335']=["topic_000000000000011D.html","clsMitarbeiter.sFunktion Property",""]; +_s['336']=["topic_000000000000011E.html","clsMitarbeiter.bMailDirektVersenden Property",""]; +_s['337']=["topic_000000000000011F.html","clsMitarbeiter.sRang Property",""]; +_s['338']=["topic_0000000000000120.html","clsMitarbeiter.bMailDokumentrueckgang Property",""]; +_s['339']=["topic_0000000000000121.html","clsMitarbeiter.iKlassifizierung Property",""]; +_s['340']=["topic_0000000000000122.html","clsMitarbeiter.bEdoka_mail Property",""]; +_s['341']=["topic_0000000000000123.html","clsMitarbeiter.bJournalisierung Property",""]; +_s['342']=["topic_0000000000000124.html","clsMitarbeiter.bGebMeldung Property",""]; +_s['343']=["topic_0000000000000125.html","clsMitarbeiter.sMail_1 Property",""]; +_s['344']=["topic_0000000000000126.html","clsMitarbeiter.daValidto Property",""]; +_s['345']=["topic_0000000000000127.html","clsMyKey_Tabelle Class",""]; +_s['346']=["topic_0000000000000127_attached_props--.html","clsMyKey_Tabelle Attached Properties",""]; +_s['347']=["topic_0000000000000127_events--.html","clsMyKey_Tabelle Events",""]; +_s['348']=["topic_0000000000000127_methods--.html","clsMyKey_Tabelle Methods",""]; +_s['349']=["topic_0000000000000127_props--.html","clsMyKey_Tabelle Properties",""]; +_s['350']=["topic_0000000000000127_vars--.html","clsMyKey_Tabelle Fields",""]; +_s['351']=["topic_0000000000000128.html","connectionstring Field",""]; +_s['352']=["topic_0000000000000129.html","clsMyKey_Tabelle.get_dbkey Method",""]; +_s['353']=["topic_000000000000012A.html","clsPartner Class",""]; +_s['354']=["topic_000000000000012A_attached_props--.html","clsPartner Attached Properties",""]; +_s['355']=["topic_000000000000012A_events--.html","clsPartner Events",""]; +_s['356']=["topic_000000000000012A_methods--.html","clsPartner Methods",""]; +_s['357']=["topic_000000000000012A_props--.html","clsPartner Properties",""]; +_s['358']=["topic_000000000000012A_vars--.html","clsPartner Fields",""]; +_s['359']=["topic_000000000000012B.html","clsPartner Constructor",""]; +_s['360']=["topic_000000000000012C.html","clsPartner.Insert Method",""]; +_s['361']=["topic_000000000000012D.html","clsPartner.Update Method",""]; +_s['362']=["topic_000000000000012E.html","clsPartner.Delete Method",""]; +_s['363']=["topic_000000000000012F.html","clsPartner.SelectOne Method",""]; +_s['364']=["topic_0000000000000130.html","clsPartner.SelectAll Method",""]; +_s['365']=["topic_0000000000000131.html","clsPartner.sIDMSG00 Property",""]; +_s['366']=["topic_0000000000000132.html","clsPartner.sDMMSG00 Property",""]; +_s['367']=["topic_0000000000000133.html","clsPartner.sZTMSG00 Property",""]; +_s['368']=["topic_0000000000000134.html","clsPartner.sBEPGM00 Property",""]; +_s['369']=["topic_0000000000000135.html","clsPartner.sCDBNK00 Property",""]; +_s['370']=["topic_0000000000000136.html","clsPartner.iNRPAR00 Property",""]; +_s['371']=["topic_0000000000000137.html","clsPartner.sBKPAR00 Property",""]; +_s['372']=["topic_0000000000000138.html","clsPartner.iNRFOG012 Property",""]; +_s['373']=["topic_0000000000000139.html","clsPartner.sBEBAN012 Property",""]; +_s['374']=["topic_000000000000013A.html","clsPartner.sNRFOG022 Property",""]; +_s['375']=["topic_000000000000013B.html","clsPartner.sBEBAN022 Property",""]; +_s['376']=["topic_000000000000013C.html","clsPartner.sTXADZ012 Property",""]; +_s['377']=["topic_000000000000013D.html","clsPartner.sTXADZ022 Property",""]; +_s['378']=["topic_000000000000013E.html","clsPartner.sTXADZ032 Property",""]; +_s['379']=["topic_000000000000013F.html","clsPartner.sTXADZ042 Property",""]; +_s['380']=["topic_0000000000000140.html","clsPartner.sTXADZ052 Property",""]; +_s['381']=["topic_0000000000000141.html","clsPartner.sTXADZ062 Property",""]; +_s['382']=["topic_0000000000000142.html","clsPartner.sTXADZ072 Property",""]; +_s['383']=["topic_0000000000000143.html","clsPartner.sNRPARAD Property",""]; +_s['384']=["topic_0000000000000144.html","clsPartner.sNRADR00 Property",""]; +_s['385']=["topic_0000000000000145.html","clsPartner.sNRFOG011 Property",""]; +_s['386']=["topic_0000000000000146.html","clsPartner.sBEBAN011 Property",""]; +_s['387']=["topic_0000000000000147.html","clsPartner.sNRFOG21 Property",""]; +_s['388']=["topic_0000000000000148.html","clsPartner.sBEBAN21 Property",""]; +_s['389']=["topic_0000000000000149.html","clsPartner.sTXADZ011 Property",""]; +_s['390']=["topic_000000000000014A.html","clsPartner.sTXADZ021 Property",""]; +_s['391']=["topic_000000000000014B.html","clsPartner.sTXADZ031 Property",""]; +_s['392']=["topic_000000000000014C.html","clsPartner.sTXADZ041 Property",""]; +_s['393']=["topic_000000000000014D.html","clsPartner.sTXADZ051 Property",""]; +_s['394']=["topic_000000000000014E.html","clsPartner.sTXADZ061 Property",""]; +_s['395']=["topic_000000000000014F.html","clsPartner.sTXADZ071 Property",""]; +_s['396']=["topic_0000000000000150.html","clsPartner.sCDBAL00 Property",""]; +_s['397']=["topic_0000000000000151.html","clsPartner.sCDVIG00 Property",""]; +_s['398']=["topic_0000000000000152.html","clsPartner.sSAVRS00 Property",""]; +_s['399']=["topic_0000000000000153.html","clsPartner.sTSMUT00 Property",""]; +_s['400']=["topic_0000000000000154.html","clsPartner.sVDMUTER Property",""]; +_s['401']=["topic_0000000000000155.html","clsPartner.sTXRes00 Property",""]; +_s['402']=["topic_0000000000000156.html","clsPartner.bSaldiert Property",""]; +_s['403']=["topic_0000000000000157.html","clsPartner.iAZEPL00 Property",""]; +_s['404']=["topic_0000000000000158.html","clsPartner.bCDVSA00 Property",""]; +_s['405']=["topic_0000000000000159.html","clsPartner.daValidto Property",""]; +_s['406']=["topic_000000000000015A.html","clsPartner.iNRDOM00 Property",""]; +_s['407']=["topic_000000000000015B.html","clsPartner.iNRNAT01 Property",""]; +_s['408']=["topic_000000000000015C.html","clsPartner.daGebGruendDat Property",""]; +_s['409']=["topic_000000000000015D.html","clsPartner.sCDNOG01 Property",""]; +_s['410']=["topic_000000000000015E.html","clsPartner.sCDPAW00 Property",""]; +_s['411']=["topic_000000000000015F.html","clsPartner.iNRBEU01 Property",""]; +_s['412']=["topic_0000000000000160.html","clsPartner.iNRBEU02 Property",""]; +_s['413']=["topic_0000000000000161.html","clsPartner.sKurzname_Stamm Property",""]; +_s['414']=["topic_0000000000000162.html","clsPartner.bIsPerson Property",""]; +_s['415']=["topic_0000000000000163.html","clsPartner.bBoersenkotiert Property",""]; +_s['416']=["topic_0000000000000164.html","clsPartner.iLegal_form_id Property",""]; +_s['417']=["topic_0000000000000165.html","clsPartner.iSector_id Property",""]; +_s['418']=["topic_0000000000000166.html","clsPartner.iRate_intl_id Property",""]; +_s['419']=["topic_0000000000000167.html","clsPartner.daRate_intl_date Property",""]; +_s['420']=["topic_0000000000000168.html","clsPartner.sName_formated Property",""]; +_s['421']=["topic_0000000000000169.html","Database Namespace",""]; +_s['422']=["topic_000000000000016A.html","DB Class",""]; +_s['423']=["topic_000000000000016A_attached_props--.html","DB Attached Properties",""]; +_s['424']=["topic_000000000000016A_events--.html","DB Events",""]; +_s['425']=["topic_000000000000016A_methods--.html","DB Methods",""]; +_s['426']=["topic_000000000000016A_props--.html","DB Properties",""]; +_s['427']=["topic_000000000000016A_vars--.html","DB Fields",""]; +_s['428']=["topic_000000000000016B.html","connectionstring Field",""]; +_s['429']=["topic_000000000000016C.html","dsdaten Field",""]; +_s['430']=["topic_000000000000016D.html","DB(String) Constructor",""]; +_s['431']=["topic_000000000000016D_overloads--.html","DB Constructor",""]; +_s['432']=["topic_000000000000016E.html","DB Constructor",""]; +_s['433']=["topic_000000000000016E_overloads--.html","DB Constructor",""]; +_s['434']=["topic_000000000000016F.html","DB.add_parameter Method",""]; +_s['435']=["topic_0000000000000170.html","DB.clear_parameter Method",""]; +_s['436']=["topic_0000000000000171.html","DB.Get_Tabledata Method",""]; +_s['437']=["topic_0000000000000172.html","DB.Exec_SQL Method",""]; +_s['438']=["topic_0000000000000173.html","DB.Update_Data Method",""]; +_s['439']=["topic_0000000000000174.html","DB.get_dbkey Method",""]; +_s['440']=["topic_0000000000000175.html","DB.Get_Mitarbeiternr Method",""]; +_s['441']=["topic_0000000000000176.html","DB.Get_Vorlage_By_DokumentID Method",""]; +_s['442']=["topic_0000000000000177.html","DB.get_vorlage_to_file Method",""]; +_s['443']=["topic_0000000000000178.html","DB.Get_ApplicationType_from_Vorlage Method",""]; +_s['444']=["topic_0000000000000179.html","DB.Create_EDOKA_Doc Method",""]; +_s['445']=["topic_000000000000017A.html","DB.COLD_Index_Sichern Method",""]; +_s['446']=["topic_000000000000017B.html","DB.Status_Erstellen Method",""]; +_s['447']=["topic_000000000000017C.html","DB.Get_Partnerstruktur Method",""]; +_s['448']=["topic_000000000000017D.html","DB.Get_Dokumente Method",""]; +_s['449']=["topic_000000000000017E.html","DB.GetDocumentAsBase64 Method",""]; +_s['450']=["topic_000000000000017F.html","DB.Save_To_DB Method",""]; +_s['451']=["topic_0000000000000180.html","DB.Get_DokumentWertList Method",""]; +_s['452']=["topic_0000000000000181.html","DB.BuildAllFieldsSQL Method",""]; +_s['453']=["topic_0000000000000182.html","DB.BuildInsertSQL Method",""]; +_s['454']=["topic_0000000000000183.html","DB.InsertParameter Method",""]; +_s['455']=["topic_0000000000000184.html","DB.CreateInsertCommand Method",""]; +_s['456']=["topic_0000000000000185.html","DB.InsertDataRow Method",""]; +_s['457']=["topic_0000000000000186.html","Database Reference ",""]; diff --git a/Database/VSdoc/search--/search_index.js b/Database/VSdoc/search--/search_index.js index 19ce593d..988c5756 100644 --- a/Database/VSdoc/search--/search_index.js +++ b/Database/VSdoc/search--/search_index.js @@ -1,4 +1,4 @@  var qterms = []; - var nurls = 456; - var index = {"edoka_dms":"[[0,1002],[34,10],[279,5],[343,5],[150,4],[203,4],[299,4],[175,4],[59,4],[351,4],[1,3],[271,2],[270,2],[269,2],[268,2],[267,2],[264,2],[265,2],[272,2],[263,2],[262,2],[261,2],[260,2],[259,2],[258,2],[257,2],[266,2],[273,2],[276,2],[275,2],[307,2],[306,2],[305,2],[298,2],[297,2],[296,2],[295,2],[294,2],[293,2],[274,2],[292,2],[290,2],[289,2],[288,2],[287,2],[286,2],[285,2],[278,2],[277,2],[256,2],[291,2],[255,2],[252,2],[253,2],[227,2],[226,2],[225,2],[224,2],[223,2],[222,2],[221,2],[220,2],[219,2],[228,2],[218,2],[216,2],[215,2],[214,2],[213,2],[212,2],[211,2],[210,2],[418,2],[202,2],[217,2],[229,2],[230,2],[231,2],[308,2],[251,2],[250,2],[249,2],[248,2],[247,2],[246,2],[245,2],[244,2],[243,2],[242,2],[241,2],[240,2],[239,2],[238,2],[237,2],[236,2],[235,2],[234,2],[233,2],[232,2],[254,2],[309,2],[312,2],[311,2],[392,2],[391,2],[390,2],[389,2],[388,2],[387,2],[386,2],[385,2],[384,2],[393,2],[383,2],[381,2],[380,2],[379,2],[378,2],[377,2],[376,2],[375,2],[374,2],[373,2],[382,2],[394,2],[395,2],[396,2],[417,2],[416,2],[415,2],[414,2],[413,2],[412,2],[411,2],[410,2],[409,2],[408,2],[407,2],[406,2],[405,2],[404,2],[403,2],[402,2],[401,2],[400,2],[399,2],[398,2],[397,2],[372,2],[310,2],[371,2],[369,2],[331,2],[330,2],[329,2],[328,2],[327,2],[326,2],[325,2],[324,2],[323,2],[332,2],[322,2],[320,2],[319,2],[318,2],[317,2],[316,2],[315,2],[314,2],[313,2],[201,2],[321,2],[333,2],[334,2],[335,2],[368,2],[367,2],[366,2],[365,2],[364,2],[363,2],[362,2],[361,2],[360,2],[359,2],[358,2],[357,2],[350,2],[349,2],[342,2],[341,2],[340,2],[339,2],[338,2],[337,2],[336,2],[370,2],[200,2],[209,2],[198,2],[91,2],[90,2],[89,2],[88,2],[87,2],[86,2],[85,2],[84,2],[92,2],[83,2],[81,2],[80,2],[79,2],[78,2],[77,2],[76,2],[75,2],[74,2],[82,2],[93,2],[94,2],[95,2],[114,2],[113,2],[112,2],[111,2],[110,2],[109,2],[108,2],[107,2],[106,2],[105,2],[104,2],[103,2],[199,2],[101,2],[100,2],[99,2],[98,2],[97,2],[96,2],[73,2],[72,2],[71,2],[70,2],[32,2],[31,2],[30,2],[29,2],[23,2],[22,2],[21,2],[20,2],[19,2],[18,2],[17,2],[16,2],[15,2],[14,2],[13,2],[12,2],[10,2],[8,2],[7,2],[33,2],[115,2],[40,2],[42,2],[69,2],[68,2],[67,2],[66,2],[65,2],[58,2],[57,2],[56,2],[55,2],[54,2],[53,2],[52,2],[51,2],[50,2],[48,2],[46,2],[45,2],[44,2],[43,2],[41,2],[116,2],[102,2],[118,2],[162,2],[190,2],[191,2],[192,2],[193,2],[194,2],[161,2],[160,2],[159,2],[158,2],[157,2],[156,2],[181,2],[149,2],[148,2],[163,2],[164,2],[189,2],[188,2],[183,2],[184,2],[174,2],[185,2],[173,2],[172,2],[171,2],[147,2],[170,2],[168,2],[167,2],[166,2],[165,2],[186,2],[187,2],[117,2],[169,2],[146,2],[182,2],[144,2],[129,2],[128,2],[127,2],[126,2],[125,2],[145,2],[130,2],[123,2],[195,2],[196,2],[197,2],[121,2],[120,2],[119,2],[122,2],[131,2],[124,2],[133,2],[134,2],[135,2],[136,2],[137,2],[138,2],[141,2],[139,2],[132,2],[143,2],[140,2],[142,2],[2,1],[204,1],[36,1],[3,1],[37,1],[38,1],[35,1],[4,1],[9,1],[6,1],[205,1],[207,1],[11,1],[208,1],[28,1],[27,1],[26,1],[25,1],[24,1],[5,1],[206,1],[355,1],[180,1],[155,1],[154,1],[153,1],[152,1],[151,1],[304,1],[303,1],[302,1],[301,1],[300,1],[280,1],[281,1],[282,1],[283,1],[284,1],[344,1],[345,1],[346,1],[347,1],[179,1],[178,1],[177,1],[176,1],[47,1],[49,1],[60,1],[39,1],[61,1],[63,1],[64,1],[356,1],[354,1],[353,1],[352,1],[348,1],[62,1],[455,1]]","namespace":"[[0,1002],[419,1002],[296,2],[295,2],[294,2],[293,2],[292,2],[291,2],[290,2],[289,2],[288,2],[287,2],[286,2],[285,2],[278,2],[277,2],[276,2],[275,2],[274,2],[273,2],[272,2],[271,2],[270,2],[269,2],[279,2],[268,2],[297,2],[299,2],[327,2],[326,2],[325,2],[324,2],[323,2],[322,2],[321,2],[320,2],[319,2],[318,2],[317,2],[316,2],[315,2],[314,2],[313,2],[312,2],[311,2],[310,2],[309,2],[308,2],[307,2],[306,2],[305,2],[298,2],[267,2],[266,2],[265,2],[237,2],[236,2],[235,2],[234,2],[233,2],[232,2],[231,2],[230,2],[229,2],[228,2],[238,2],[453,2],[225,2],[224,2],[223,2],[222,2],[221,2],[220,2],[219,2],[218,2],[217,2],[216,2],[226,2],[239,2],[240,2],[241,2],[264,2],[263,2],[262,2],[261,2],[260,2],[259,2],[258,2],[257,2],[256,2],[255,2],[254,2],[253,2],[252,2],[251,2],[250,2],[249,2],[248,2],[247,2],[246,2],[245,2],[244,2],[243,2],[242,2],[328,2],[329,2],[330,2],[331,2],[417,2],[416,2],[415,2],[414,2],[413,2],[412,2],[411,2],[410,2],[409,2],[408,2],[418,2],[407,2],[405,2],[404,2],[403,2],[402,2],[401,2],[400,2],[399,2],[398,2],[397,2],[396,2],[406,2],[420,2],[426,2],[427,2],[452,2],[451,2],[450,2],[449,2],[448,2],[447,2],[446,2],[445,2],[444,2],[443,2],[442,2],[441,2],[440,2],[439,2],[438,2],[437,2],[436,2],[435,2],[434,2],[433,2],[432,2],[430,2],[428,2],[395,2],[394,2],[393,2],[392,2],[364,2],[363,2],[362,2],[361,2],[360,2],[359,2],[358,2],[357,2],[351,2],[350,2],[349,2],[343,2],[342,2],[341,2],[340,2],[339,2],[338,2],[337,2],[336,2],[335,2],[334,2],[333,2],[332,2],[365,2],[215,2],[366,2],[368,2],[391,2],[390,2],[389,2],[388,2],[387,2],[386,2],[385,2],[384,2],[383,2],[382,2],[381,2],[380,2],[379,2],[378,2],[377,2],[376,2],[375,2],[374,2],[373,2],[372,2],[371,2],[370,2],[369,2],[367,2],[214,2],[227,2],[212,2],[95,2],[94,2],[93,2],[92,2],[91,2],[90,2],[89,2],[88,2],[87,2],[86,2],[85,2],[84,2],[83,2],[82,2],[81,2],[80,2],[79,2],[78,2],[77,2],[76,2],[75,2],[96,2],[74,2],[97,2],[99,2],[120,2],[119,2],[118,2],[117,2],[116,2],[115,2],[114,2],[113,2],[112,2],[111,2],[110,2],[109,2],[108,2],[107,2],[106,2],[105,2],[104,2],[103,2],[213,2],[101,2],[100,2],[98,2],[121,2],[73,2],[71,2],[33,2],[32,2],[31,2],[30,2],[29,2],[23,2],[22,2],[21,2],[20,2],[19,2],[18,2],[17,2],[16,2],[15,2],[14,2],[13,2],[12,2],[10,2],[8,2],[7,2],[1,2],[34,2],[72,2],[40,2],[42,2],[70,2],[69,2],[68,2],[67,2],[66,2],[65,2],[59,2],[58,2],[57,2],[56,2],[55,2],[54,2],[53,2],[52,2],[51,2],[50,2],[48,2],[46,2],[45,2],[44,2],[43,2],[41,2],[122,2],[102,2],[124,2],[181,2],[175,2],[174,2],[173,2],[172,2],[123,2],[171,2],[170,2],[169,2],[182,2],[168,2],[166,2],[165,2],[164,2],[163,2],[162,2],[161,2],[160,2],[159,2],[158,2],[167,2],[183,2],[184,2],[185,2],[211,2],[210,2],[209,2],[203,2],[202,2],[201,2],[200,2],[199,2],[198,2],[197,2],[196,2],[195,2],[194,2],[193,2],[192,2],[191,2],[190,2],[189,2],[188,2],[187,2],[186,2],[157,2],[156,2],[454,2],[146,2],[144,2],[143,2],[132,2],[142,2],[141,2],[140,2],[131,2],[130,2],[129,2],[128,2],[139,2],[138,2],[137,2],[145,2],[147,2],[125,2],[127,2],[126,2],[133,2],[136,2],[135,2],[134,2],[148,2],[149,2],[150,2],[424,1],[422,1],[27,1],[26,1],[425,1],[421,1],[423,1],[153,1],[24,1],[2,1],[3,1],[4,1],[5,1],[6,1],[9,1],[208,1],[11,1],[25,1],[207,1],[205,1],[204,1],[304,1],[303,1],[431,1],[302,1],[429,1],[301,1],[206,1],[28,1],[38,1],[35,1],[346,1],[347,1],[348,1],[282,1],[281,1],[280,1],[64,1],[352,1],[354,1],[355,1],[356,1],[151,1],[155,1],[154,1],[353,1],[63,1],[345,1],[61,1],[36,1],[37,1],[152,1],[39,1],[47,1],[49,1],[180,1],[179,1],[178,1],[177,1],[176,1],[284,1],[283,1],[344,1],[60,1],[300,1],[62,1]]","syntaxhighlighter":"[[0,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[455,1]]","all":"[[0,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[455,1]]","logo":"[[0,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[455,1]]","document":"[[0,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[455,1]]","write":"[[0,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[455,1]]","getcsscustomproperty":"[[0,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[455,1]]","headertopcustomlinehtml":"[[0,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[455,1]]","edoka_database":"[[455,1004],[419,1003],[420,4],[426,3],[427,3],[428,3],[430,3],[432,3],[433,3],[434,3],[435,3],[436,3],[437,3],[438,3],[439,3],[454,3],[441,3],[442,3],[443,3],[444,3],[445,3],[446,3],[447,3],[440,3],[448,3],[453,3],[449,3],[450,3],[451,3],[452,3],[421,2],[422,2],[424,2],[425,2],[429,2],[431,2],[423,2],[289,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[288,1],[278,1],[286,1],[285,1],[284,1],[283,1],[282,1],[281,1],[280,1],[279,1],[297,1],[287,1],[298,1],[309,1],[300,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[314,1],[313,1],[312,1],[299,1],[311,1],[277,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[310,1],[276,1],[266,1],[274,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[249,1],[239,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[238,1],[250,1],[251,1],[252,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[321,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[256,1],[255,1],[254,1],[253,1],[275,1],[322,1],[333,1],[324,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[395,1],[385,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[384,1],[374,1],[396,1],[398,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[412,1],[411,1],[410,1],[397,1],[409,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[408,1],[373,1],[372,1],[371,1],[345,1],[344,1],[343,1],[342,1],[228,1],[340,1],[339,1],[338,1],[337,1],[346,1],[336,1],[334,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[335,1],[347,1],[348,1],[349,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[323,1],[341,1],[227,1],[225,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[226,1],[112,1],[114,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[196,1],[184,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[172,1],[183,1],[197,1],[198,1],[199,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[171,1],[113,1],[170,1],[168,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[139,1],[127,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[126,1],[140,1],[141,1],[142,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[169,1],[0,1]]","reference":"[[455,1003],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[0,1]]","search":"[[0,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[455,1]]","cancel":"[[0,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[455,1]]","assembly":"[[0,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[314,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[298,1],[288,1],[315,1],[317,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[316,1],[328,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[327,1],[287,1],[286,1],[285,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[255,1],[245,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[244,1],[256,1],[257,1],[258,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[338,1],[339,1],[340,1],[341,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[412,1],[426,1],[411,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[410,1],[427,1],[428,1],[430,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[400,1],[234,1],[399,1],[397,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[372,1],[362,1],[360,1],[359,1],[358,1],[357,1],[351,1],[350,1],[349,1],[343,1],[342,1],[361,1],[373,1],[374,1],[375,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[398,1],[453,1],[233,1],[231,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[94,1],[84,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[83,1],[73,1],[95,1],[97,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[110,1],[109,1],[96,1],[108,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[107,1],[72,1],[71,1],[70,1],[32,1],[31,1],[30,1],[29,1],[23,1],[22,1],[21,1],[20,1],[19,1],[33,1],[18,1],[16,1],[15,1],[14,1],[13,1],[12,1],[10,1],[8,1],[7,1],[1,1],[17,1],[34,1],[40,1],[41,1],[69,1],[68,1],[67,1],[66,1],[65,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[48,1],[46,1],[45,1],[44,1],[43,1],[42,1],[118,1],[119,1],[120,1],[121,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[201,1],[191,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[190,1],[202,1],[203,1],[209,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[175,1],[232,1],[174,1],[172,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[142,1],[132,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[131,1],[143,1],[144,1],[145,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[150,1],[149,1],[148,1],[147,1],[146,1],[173,1],[454,1]]","database":"[[0,2],[313,2],[312,2],[311,2],[310,2],[309,2],[308,2],[307,2],[306,2],[305,2],[314,2],[299,2],[297,2],[296,2],[295,2],[294,2],[293,2],[292,2],[291,2],[290,2],[289,2],[298,2],[288,2],[315,2],[317,2],[337,2],[336,2],[335,2],[334,2],[333,2],[332,2],[331,2],[330,2],[329,2],[316,2],[328,2],[326,2],[325,2],[324,2],[323,2],[322,2],[321,2],[320,2],[319,2],[318,2],[327,2],[287,2],[286,2],[285,2],[254,2],[253,2],[252,2],[251,2],[250,2],[249,2],[248,2],[247,2],[246,2],[255,2],[245,2],[243,2],[242,2],[241,2],[240,2],[239,2],[238,2],[237,2],[236,2],[235,2],[244,2],[256,2],[257,2],[258,2],[279,2],[278,2],[277,2],[276,2],[275,2],[274,2],[273,2],[272,2],[271,2],[270,2],[269,2],[268,2],[267,2],[266,2],[265,2],[264,2],[263,2],[262,2],[261,2],[260,2],[259,2],[338,2],[339,2],[340,2],[341,2],[420,2],[419,2],[418,2],[417,2],[416,2],[415,2],[414,2],[413,2],[412,2],[426,2],[411,2],[409,2],[408,2],[407,2],[406,2],[405,2],[404,2],[403,2],[402,2],[401,2],[410,2],[427,2],[428,2],[430,2],[452,2],[451,2],[450,2],[449,2],[448,2],[447,2],[446,2],[445,2],[444,2],[443,2],[442,2],[441,2],[440,2],[439,2],[438,2],[437,2],[436,2],[435,2],[434,2],[433,2],[432,2],[400,2],[234,2],[399,2],[397,2],[371,2],[370,2],[369,2],[368,2],[367,2],[366,2],[365,2],[364,2],[363,2],[372,2],[362,2],[360,2],[359,2],[358,2],[357,2],[351,2],[350,2],[349,2],[343,2],[342,2],[361,2],[373,2],[374,2],[375,2],[396,2],[395,2],[394,2],[393,2],[392,2],[391,2],[390,2],[389,2],[388,2],[387,2],[386,2],[385,2],[384,2],[383,2],[382,2],[381,2],[380,2],[379,2],[378,2],[377,2],[376,2],[398,2],[453,2],[233,2],[231,2],[93,2],[92,2],[91,2],[90,2],[89,2],[88,2],[87,2],[86,2],[85,2],[94,2],[84,2],[82,2],[81,2],[80,2],[79,2],[78,2],[77,2],[76,2],[75,2],[74,2],[83,2],[73,2],[95,2],[97,2],[117,2],[116,2],[115,2],[114,2],[113,2],[112,2],[111,2],[110,2],[109,2],[96,2],[108,2],[106,2],[105,2],[104,2],[103,2],[102,2],[101,2],[100,2],[99,2],[98,2],[107,2],[72,2],[71,2],[70,2],[32,2],[31,2],[30,2],[29,2],[23,2],[22,2],[21,2],[20,2],[19,2],[33,2],[18,2],[16,2],[15,2],[14,2],[13,2],[12,2],[10,2],[8,2],[7,2],[1,2],[17,2],[34,2],[40,2],[41,2],[69,2],[68,2],[67,2],[66,2],[65,2],[59,2],[58,2],[57,2],[56,2],[55,2],[54,2],[53,2],[52,2],[51,2],[50,2],[48,2],[46,2],[45,2],[44,2],[43,2],[42,2],[118,2],[119,2],[120,2],[121,2],[200,2],[199,2],[198,2],[197,2],[196,2],[195,2],[194,2],[193,2],[192,2],[201,2],[191,2],[189,2],[188,2],[187,2],[186,2],[185,2],[184,2],[183,2],[182,2],[181,2],[190,2],[202,2],[203,2],[209,2],[230,2],[229,2],[228,2],[227,2],[226,2],[225,2],[224,2],[223,2],[222,2],[221,2],[220,2],[219,2],[218,2],[217,2],[216,2],[215,2],[214,2],[213,2],[212,2],[211,2],[210,2],[175,2],[232,2],[174,2],[172,2],[141,2],[140,2],[139,2],[138,2],[137,2],[136,2],[135,2],[134,2],[133,2],[142,2],[132,2],[130,2],[129,2],[128,2],[127,2],[126,2],[125,2],[124,2],[123,2],[122,2],[131,2],[143,2],[144,2],[145,2],[171,2],[170,2],[169,2],[168,2],[167,2],[166,2],[165,2],[164,2],[163,2],[162,2],[161,2],[160,2],[159,2],[158,2],[157,2],[156,2],[150,2],[149,2],[148,2],[147,2],[146,2],[173,2],[454,2]]","in":"[[0,3],[296,3],[295,3],[294,3],[293,3],[292,3],[291,3],[290,3],[289,3],[288,3],[287,3],[297,3],[286,3],[279,3],[278,3],[277,3],[276,3],[275,3],[274,3],[273,3],[272,3],[271,3],[270,3],[285,3],[298,3],[299,3],[305,3],[328,3],[327,3],[326,3],[325,3],[324,3],[323,3],[322,3],[321,3],[320,3],[319,3],[318,3],[317,3],[316,3],[315,3],[314,3],[313,3],[312,3],[311,3],[310,3],[309,3],[308,3],[307,3],[306,3],[269,3],[268,3],[267,3],[266,3],[238,3],[237,3],[236,3],[235,3],[234,3],[233,3],[232,3],[231,3],[230,3],[229,3],[228,3],[454,3],[226,3],[225,3],[224,3],[223,3],[222,3],[221,3],[220,3],[219,3],[218,3],[217,3],[216,3],[239,3],[329,3],[240,3],[242,3],[265,3],[264,3],[263,3],[262,3],[261,3],[260,3],[259,3],[258,3],[257,3],[256,3],[255,3],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[248,3],[247,3],[246,3],[245,3],[244,3],[243,3],[241,3],[330,3],[331,3],[332,3],[419,3],[418,3],[417,3],[416,3],[415,3],[414,3],[413,3],[412,3],[411,3],[410,3],[409,3],[408,3],[407,3],[406,3],[405,3],[404,3],[403,3],[402,3],[401,3],[400,3],[399,3],[398,3],[397,3],[420,3],[396,3],[426,3],[428,3],[453,3],[452,3],[451,3],[450,3],[449,3],[448,3],[447,3],[446,3],[445,3],[444,3],[443,3],[442,3],[441,3],[440,3],[439,3],[438,3],[437,3],[436,3],[435,3],[434,3],[433,3],[432,3],[430,3],[427,3],[215,3],[395,3],[393,3],[365,3],[364,3],[363,3],[362,3],[361,3],[360,3],[359,3],[358,3],[357,3],[351,3],[350,3],[349,3],[343,3],[342,3],[341,3],[340,3],[339,3],[338,3],[337,3],[336,3],[335,3],[334,3],[333,3],[366,3],[394,3],[367,3],[369,3],[392,3],[391,3],[390,3],[389,3],[388,3],[387,3],[386,3],[385,3],[384,3],[383,3],[382,3],[381,3],[380,3],[379,3],[378,3],[377,3],[376,3],[375,3],[374,3],[373,3],[372,3],[371,3],[370,3],[368,3],[214,3],[227,3],[212,3],[96,3],[95,3],[94,3],[93,3],[92,3],[91,3],[90,3],[89,3],[88,3],[87,3],[86,3],[85,3],[84,3],[83,3],[82,3],[81,3],[80,3],[79,3],[78,3],[77,3],[76,3],[97,3],[75,3],[98,3],[100,3],[121,3],[120,3],[119,3],[118,3],[117,3],[116,3],[115,3],[114,3],[113,3],[112,3],[111,3],[110,3],[109,3],[108,3],[107,3],[106,3],[105,3],[104,3],[103,3],[213,3],[101,3],[99,3],[122,3],[74,3],[72,3],[34,3],[33,3],[32,3],[31,3],[30,3],[29,3],[23,3],[21,3],[20,3],[19,3],[18,3],[17,3],[16,3],[15,3],[14,3],[13,3],[12,3],[10,3],[8,3],[7,3],[1,3],[40,3],[73,3],[41,3],[43,3],[71,3],[70,3],[69,3],[68,3],[67,3],[66,3],[65,3],[59,3],[58,3],[57,3],[56,3],[55,3],[54,3],[53,3],[52,3],[51,3],[50,3],[48,3],[46,3],[45,3],[44,3],[42,3],[123,3],[102,3],[125,3],[168,3],[167,3],[166,3],[165,3],[164,3],[163,3],[162,3],[161,3],[160,3],[159,3],[158,3],[157,3],[156,3],[197,3],[192,3],[198,3],[150,3],[169,3],[170,3],[171,3],[172,3],[193,3],[194,3],[195,3],[190,3],[189,3],[188,3],[187,3],[186,3],[149,3],[185,3],[196,3],[183,3],[182,3],[181,3],[175,3],[174,3],[173,3],[124,3],[184,3],[148,3],[191,3],[200,3],[141,3],[140,3],[139,3],[199,3],[137,3],[136,3],[135,3],[134,3],[133,3],[211,3],[132,3],[131,3],[130,3],[129,3],[128,3],[127,3],[126,3],[142,3],[143,3],[138,3],[145,3],[144,3],[210,3],[203,3],[209,3],[201,3],[147,3],[146,3],[202,3],[22,2],[204,1],[5,1],[205,1],[429,1],[206,1],[2,1],[3,1],[4,1],[28,1],[27,1],[11,1],[421,1],[422,1],[423,1],[424,1],[208,1],[9,1],[425,1],[26,1],[25,1],[24,1],[6,1],[207,1],[431,1],[62,1],[36,1],[354,1],[353,1],[352,1],[281,1],[282,1],[283,1],[348,1],[347,1],[346,1],[345,1],[344,1],[284,1],[300,1],[301,1],[302,1],[303,1],[304,1],[355,1],[356,1],[280,1],[151,1],[37,1],[38,1],[39,1],[47,1],[49,1],[180,1],[179,1],[178,1],[35,1],[177,1],[60,1],[61,1],[63,1],[64,1],[155,1],[154,1],[153,1],[152,1],[176,1],[455,1]]","dll":"[[0,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[314,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[298,1],[288,1],[315,1],[317,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[316,1],[328,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[327,1],[287,1],[286,1],[285,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[255,1],[245,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[244,1],[256,1],[257,1],[258,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[338,1],[339,1],[340,1],[341,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[412,1],[426,1],[411,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[410,1],[427,1],[428,1],[430,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[400,1],[234,1],[399,1],[397,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[372,1],[362,1],[360,1],[359,1],[358,1],[357,1],[351,1],[350,1],[349,1],[343,1],[342,1],[361,1],[373,1],[374,1],[375,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[398,1],[453,1],[233,1],[231,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[94,1],[84,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[83,1],[73,1],[95,1],[97,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[110,1],[109,1],[96,1],[108,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[107,1],[72,1],[71,1],[70,1],[32,1],[31,1],[30,1],[29,1],[23,1],[22,1],[21,1],[20,1],[19,1],[33,1],[18,1],[16,1],[15,1],[14,1],[13,1],[12,1],[10,1],[8,1],[7,1],[1,1],[17,1],[34,1],[40,1],[41,1],[69,1],[68,1],[67,1],[66,1],[65,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[48,1],[46,1],[45,1],[44,1],[43,1],[42,1],[118,1],[119,1],[120,1],[121,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[201,1],[191,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[190,1],[202,1],[203,1],[209,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[175,1],[232,1],[174,1],[172,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[142,1],[132,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[131,1],[143,1],[144,1],[145,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[150,1],[149,1],[148,1],[147,1],[146,1],[173,1],[454,1]]","classes":"[[0,1],[419,1]]","name":"[[203,5],[351,5],[299,5],[279,5],[432,5],[175,5],[34,5],[150,5],[59,5],[1,4],[420,4],[343,4],[0,3],[178,2],[282,2],[346,2],[206,2],[354,2],[4,2],[153,2],[302,2],[423,2],[62,2],[37,2],[419,1],[356,1],[303,1],[355,1],[425,1],[5,1],[348,1],[347,1],[429,1],[431,1],[9,1],[304,1],[47,1],[283,1],[284,1],[49,1],[38,1],[63,1],[64,1],[154,1],[155,1],[11,1],[26,1],[180,1],[23,1],[207,1],[208,1],[22,1],[39,1],[179,1],[455,1]]","description":"[[175,5],[351,5],[150,5],[34,5],[59,5],[279,5],[203,5],[299,5],[420,4],[343,4],[1,4],[0,3],[178,2],[206,2],[153,2],[346,2],[302,2],[62,2],[354,2],[37,2],[423,2],[4,2],[282,2],[348,1],[355,1],[304,1],[356,1],[419,1],[303,1],[425,1],[429,1],[284,1],[347,1],[180,1],[208,1],[5,1],[9,1],[11,1],[22,1],[23,1],[26,1],[38,1],[39,1],[47,1],[49,1],[63,1],[64,1],[154,1],[155,1],[179,1],[431,1],[207,1],[283,1],[455,1]]","clsconnectionprovider":"[[1,1008],[7,1006],[2,1004],[3,1004],[4,1004],[5,1004],[6,1004],[11,1003],[18,1003],[17,1003],[16,1003],[15,1003],[14,1003],[10,1003],[12,1003],[21,1003],[19,1003],[9,1003],[8,1003],[13,1003],[20,1003],[55,6],[44,5],[0,1]]","clsdbinteractionbase":"[[34,1008],[45,1006],[35,1004],[36,1004],[37,1004],[38,1004],[39,1004],[52,1003],[58,1003],[57,1003],[56,1003],[55,1003],[54,1003],[53,1003],[51,1003],[50,1003],[48,1003],[47,1003],[46,1003],[49,1003],[203,16],[279,16],[351,16],[59,16],[175,16],[299,16],[150,16],[343,12],[155,5],[208,5],[180,5],[356,5],[64,5],[304,5],[348,5],[284,5],[283,4],[303,4],[347,4],[207,4],[63,4],[179,4],[154,4],[355,4],[178,2],[282,2],[153,2],[302,2],[62,2],[206,2],[354,2],[346,2],[40,1],[44,1],[42,1],[43,1],[41,1],[0,1]]","clsdokument":"[[59,1008],[65,1006],[60,1004],[61,1004],[62,1004],[63,1004],[64,1004],[103,1003],[125,1003],[124,1003],[123,1003],[122,1003],[121,1003],[120,1003],[119,1003],[118,1003],[114,1003],[116,1003],[115,1003],[126,1003],[113,1003],[112,1003],[111,1003],[110,1003],[109,1003],[117,1003],[127,1003],[131,1003],[129,1003],[147,1003],[146,1003],[145,1003],[144,1003],[143,1003],[142,1003],[141,1003],[140,1003],[128,1003],[139,1003],[137,1003],[136,1003],[135,1003],[134,1003],[133,1003],[132,1003],[108,1003],[130,1003],[138,1003],[107,1003],[149,1003],[105,1003],[82,1003],[81,1003],[80,1003],[79,1003],[78,1003],[77,1003],[76,1003],[75,1003],[74,1003],[73,1003],[72,1003],[71,1003],[70,1003],[69,1003],[68,1003],[67,1003],[66,1003],[83,1003],[106,1003],[84,1003],[86,1003],[104,1003],[148,1003],[102,1003],[101,1003],[100,1003],[99,1003],[98,1003],[97,1003],[85,1003],[96,1003],[94,1003],[93,1003],[92,1003],[91,1003],[90,1003],[89,1003],[88,1003],[87,1003],[95,1003],[34,1],[0,1]]","clsdokument_status":"[[150,1008],[156,1006],[151,1004],[152,1004],[153,1004],[154,1004],[155,1004],[161,1003],[172,1003],[171,1003],[170,1003],[169,1003],[168,1003],[167,1003],[166,1003],[165,1003],[174,1003],[163,1003],[162,1003],[173,1003],[160,1003],[159,1003],[158,1003],[157,1003],[164,1003],[34,1],[0,1]]","clsdokumentstatus":"[[175,1008],[181,1006],[176,1004],[177,1004],[178,1004],[179,1004],[180,1004],[193,1003],[194,1003],[195,1003],[196,1003],[187,1003],[198,1003],[199,1003],[192,1003],[200,1003],[197,1003],[191,1003],[202,1003],[189,1003],[188,1003],[201,1003],[186,1003],[185,1003],[184,1003],[183,1003],[182,1003],[190,1003],[34,1],[0,1]]","clsdokumenttyp":"[[203,1008],[209,1006],[204,1004],[205,1004],[206,1004],[207,1004],[208,1004],[239,1003],[258,1003],[257,1003],[256,1003],[255,1003],[254,1003],[253,1003],[252,1003],[248,1003],[250,1003],[249,1003],[259,1003],[247,1003],[246,1003],[245,1003],[251,1003],[260,1003],[264,1003],[262,1003],[276,1003],[275,1003],[274,1003],[273,1003],[272,1003],[271,1003],[261,1003],[270,1003],[268,1003],[267,1003],[266,1003],[265,1003],[244,1003],[263,1003],[269,1003],[243,1003],[278,1003],[241,1003],[210,1003],[211,1003],[212,1003],[213,1003],[214,1003],[215,1003],[216,1003],[217,1003],[218,1003],[219,1003],[220,1003],[221,1003],[222,1003],[223,1003],[242,1003],[224,1003],[226,1003],[240,1003],[277,1003],[238,1003],[237,1003],[236,1003],[235,1003],[225,1003],[234,1003],[232,1003],[231,1003],[230,1003],[229,1003],[228,1003],[227,1003],[233,1003],[34,1],[0,1]]","clskey_tabelle":"[[279,1008],[285,1006],[280,1004],[281,1004],[282,1004],[283,1004],[284,1004],[289,1003],[295,1003],[294,1003],[293,1003],[292,1003],[291,1003],[287,1003],[298,1003],[288,1003],[296,1003],[286,1003],[290,1003],[297,1003],[343,18],[347,8],[346,5],[34,1],[0,1]]","clsmitarbeiter":"[[299,1008],[305,1006],[300,1004],[301,1004],[302,1004],[303,1004],[304,1004],[319,1003],[325,1003],[326,1003],[327,1003],[328,1003],[329,1003],[330,1003],[331,1003],[332,1003],[336,1003],[334,1003],[335,1003],[324,1003],[337,1003],[338,1003],[339,1003],[340,1003],[333,1003],[323,1003],[342,1003],[321,1003],[306,1003],[307,1003],[308,1003],[309,1003],[310,1003],[311,1003],[322,1003],[312,1003],[314,1003],[315,1003],[316,1003],[317,1003],[318,1003],[341,1003],[320,1003],[313,1003],[34,1],[0,1]]","clsmykey_tabelle":"[[343,1007],[344,1004],[345,1004],[346,1004],[347,1004],[348,1004],[350,1003],[0,1],[279,1],[349,1]]","clspartner":"[[351,1008],[357,1006],[352,1004],[353,1004],[354,1004],[355,1004],[356,1004],[383,1003],[400,1003],[399,1003],[398,1003],[397,1003],[396,1003],[395,1003],[391,1003],[393,1003],[392,1003],[401,1003],[390,1003],[389,1003],[394,1003],[402,1003],[406,1003],[404,1003],[405,1003],[388,1003],[407,1003],[408,1003],[409,1003],[410,1003],[411,1003],[412,1003],[413,1003],[414,1003],[415,1003],[416,1003],[403,1003],[387,1003],[418,1003],[385,1003],[358,1003],[359,1003],[360,1003],[361,1003],[362,1003],[363,1003],[364,1003],[365,1003],[366,1003],[367,1003],[368,1003],[369,1003],[386,1003],[370,1003],[372,1003],[373,1003],[374,1003],[375,1003],[376,1003],[377,1003],[378,1003],[379,1003],[380,1003],[381,1003],[382,1003],[417,1003],[384,1003],[371,1003],[34,1],[0,1]]","top":"[[175,5],[203,5],[150,5],[279,5],[299,5],[351,5],[34,5],[59,5],[343,4],[420,4],[1,4],[0,3],[302,2],[346,2],[354,2],[282,2],[423,2],[178,2],[206,2],[4,2],[153,2],[62,2],[37,2],[154,1],[5,1],[419,1],[356,1],[355,1],[23,1],[26,1],[348,1],[347,1],[38,1],[303,1],[155,1],[39,1],[284,1],[283,1],[63,1],[64,1],[208,1],[207,1],[425,1],[180,1],[179,1],[304,1],[455,1]]","interfaces":"[[0,1]]","icommondbaccess":"[[23,1006],[24,1004],[25,1004],[26,1004],[27,1004],[28,1004],[29,1003],[30,1003],[31,1003],[32,1003],[33,1003],[34,4],[0,1]]","enumerations":"[[0,1]]","llblerror":"[[22,1002],[0,1]]","applies":"[[0,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[315,1],[305,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[299,1],[289,1],[316,1],[318,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[317,1],[329,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[328,1],[288,1],[287,1],[286,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[256,1],[246,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[245,1],[257,1],[258,1],[259,1],[285,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[339,1],[235,1],[340,1],[342,1],[426,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[427,1],[412,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[411,1],[401,1],[428,1],[432,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[430,1],[443,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[442,1],[400,1],[399,1],[398,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[373,1],[363,1],[361,1],[360,1],[359,1],[358,1],[357,1],[351,1],[350,1],[349,1],[343,1],[362,1],[374,1],[375,1],[376,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[341,1],[234,1],[233,1],[232,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[95,1],[85,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[84,1],[74,1],[96,1],[98,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[110,1],[97,1],[109,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[108,1],[73,1],[72,1],[71,1],[33,1],[32,1],[31,1],[30,1],[29,1],[23,1],[21,1],[20,1],[19,1],[34,1],[18,1],[16,1],[15,1],[14,1],[13,1],[12,1],[10,1],[8,1],[7,1],[1,1],[17,1],[40,1],[41,1],[42,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[48,1],[46,1],[45,1],[44,1],[43,1],[119,1],[120,1],[121,1],[122,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[202,1],[192,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[191,1],[203,1],[209,1],[210,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[181,1],[453,1],[175,1],[173,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[143,1],[133,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[132,1],[144,1],[145,1],[146,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[150,1],[149,1],[148,1],[147,1],[174,1],[454,1]]","to":"[[0,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[315,1],[305,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[299,1],[289,1],[316,1],[318,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[317,1],[329,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[328,1],[288,1],[287,1],[286,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[256,1],[246,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[245,1],[257,1],[258,1],[259,1],[285,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[339,1],[235,1],[340,1],[342,1],[426,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[427,1],[412,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[411,1],[401,1],[428,1],[432,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[430,1],[443,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[442,1],[400,1],[399,1],[398,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[373,1],[363,1],[361,1],[360,1],[359,1],[358,1],[357,1],[351,1],[350,1],[349,1],[343,1],[362,1],[374,1],[375,1],[376,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[341,1],[234,1],[233,1],[232,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[95,1],[85,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[84,1],[74,1],[96,1],[98,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[110,1],[97,1],[109,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[108,1],[73,1],[72,1],[71,1],[33,1],[32,1],[31,1],[30,1],[29,1],[23,1],[21,1],[20,1],[19,1],[34,1],[18,1],[16,1],[15,1],[14,1],[13,1],[12,1],[10,1],[8,1],[7,1],[1,1],[17,1],[40,1],[41,1],[42,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[48,1],[46,1],[45,1],[44,1],[43,1],[119,1],[120,1],[121,1],[122,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[202,1],[192,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[191,1],[203,1],[209,1],[210,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[181,1],[453,1],[175,1],[173,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[143,1],[133,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[132,1],[144,1],[145,1],[146,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[150,1],[149,1],[148,1],[147,1],[174,1],[454,1]]","net":"[[0,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[315,1],[305,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[299,1],[289,1],[316,1],[318,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[317,1],[329,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[328,1],[288,1],[287,1],[286,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[256,1],[246,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[245,1],[257,1],[258,1],[259,1],[285,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[339,1],[235,1],[340,1],[342,1],[426,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[427,1],[412,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[411,1],[401,1],[428,1],[432,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[430,1],[443,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[442,1],[400,1],[399,1],[398,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[373,1],[363,1],[361,1],[360,1],[359,1],[358,1],[357,1],[351,1],[350,1],[349,1],[343,1],[362,1],[374,1],[375,1],[376,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[341,1],[234,1],[233,1],[232,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[95,1],[85,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[84,1],[74,1],[96,1],[98,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[110,1],[97,1],[109,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[108,1],[73,1],[72,1],[71,1],[33,1],[32,1],[31,1],[30,1],[29,1],[23,1],[21,1],[20,1],[19,1],[34,1],[18,1],[16,1],[15,1],[14,1],[13,1],[12,1],[10,1],[8,1],[7,1],[1,1],[17,1],[40,1],[41,1],[42,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[48,1],[46,1],[45,1],[44,1],[43,1],[119,1],[120,1],[121,1],[122,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[202,1],[192,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[191,1],[203,1],[209,1],[210,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[181,1],[453,1],[175,1],[173,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[143,1],[133,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[132,1],[144,1],[145,1],[146,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[150,1],[149,1],[148,1],[147,1],[174,1],[454,1]]","frameworksupported":"[[0,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[315,1],[305,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[299,1],[289,1],[316,1],[318,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[317,1],[329,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[328,1],[288,1],[287,1],[286,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[256,1],[246,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[245,1],[257,1],[258,1],[259,1],[285,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[339,1],[235,1],[340,1],[342,1],[426,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[427,1],[412,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[411,1],[401,1],[428,1],[432,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[430,1],[443,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[442,1],[400,1],[399,1],[398,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[373,1],[363,1],[361,1],[360,1],[359,1],[358,1],[357,1],[351,1],[350,1],[349,1],[343,1],[362,1],[374,1],[375,1],[376,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[341,1],[234,1],[233,1],[232,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[95,1],[85,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[84,1],[74,1],[96,1],[98,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[110,1],[97,1],[109,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[108,1],[73,1],[72,1],[71,1],[33,1],[32,1],[31,1],[30,1],[29,1],[23,1],[21,1],[20,1],[19,1],[34,1],[18,1],[16,1],[15,1],[14,1],[13,1],[12,1],[10,1],[8,1],[7,1],[1,1],[17,1],[40,1],[41,1],[42,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[48,1],[46,1],[45,1],[44,1],[43,1],[119,1],[120,1],[121,1],[122,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[202,1],[192,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[191,1],[203,1],[209,1],[210,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[181,1],[453,1],[175,1],[173,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[143,1],[133,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[132,1],[144,1],[145,1],[146,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[150,1],[149,1],[148,1],[147,1],[174,1],[454,1]]","4":"[[0,10],[314,10],[313,10],[312,10],[311,10],[310,10],[309,10],[308,10],[307,10],[306,10],[315,10],[305,10],[298,10],[297,10],[296,10],[295,10],[294,10],[293,10],[292,10],[291,10],[290,10],[299,10],[289,10],[316,10],[318,10],[338,10],[337,10],[336,10],[335,10],[334,10],[333,10],[332,10],[331,10],[330,10],[317,10],[329,10],[327,10],[326,10],[325,10],[324,10],[323,10],[322,10],[321,10],[320,10],[319,10],[328,10],[288,10],[287,10],[286,10],[255,10],[254,10],[253,10],[252,10],[251,10],[250,10],[249,10],[248,10],[247,10],[256,10],[246,10],[244,10],[243,10],[242,10],[241,10],[240,10],[239,10],[238,10],[237,10],[236,10],[245,10],[257,10],[258,10],[259,10],[285,10],[279,10],[278,10],[277,10],[276,10],[275,10],[274,10],[273,10],[272,10],[271,10],[270,10],[269,10],[268,10],[267,10],[266,10],[265,10],[264,10],[263,10],[262,10],[261,10],[260,10],[339,10],[235,10],[340,10],[342,10],[426,10],[420,10],[419,10],[418,10],[417,10],[416,10],[415,10],[414,10],[413,10],[427,10],[412,10],[410,10],[409,10],[408,10],[407,10],[406,10],[405,10],[404,10],[403,10],[402,10],[411,10],[401,10],[428,10],[432,10],[452,10],[451,10],[450,10],[449,10],[448,10],[447,10],[446,10],[445,10],[444,10],[430,10],[443,10],[441,10],[440,10],[439,10],[438,10],[437,10],[436,10],[435,10],[434,10],[433,10],[442,10],[400,10],[399,10],[398,10],[372,10],[371,10],[370,10],[369,10],[368,10],[367,10],[366,10],[365,10],[364,10],[373,10],[363,10],[361,10],[360,10],[359,10],[358,10],[357,10],[351,10],[350,10],[349,10],[343,10],[362,10],[374,10],[375,10],[376,10],[397,10],[396,10],[395,10],[394,10],[393,10],[392,10],[391,10],[390,10],[389,10],[388,10],[387,10],[386,10],[385,10],[384,10],[383,10],[382,10],[381,10],[380,10],[379,10],[378,10],[377,10],[341,10],[234,10],[233,10],[232,10],[94,10],[93,10],[92,10],[91,10],[90,10],[89,10],[88,10],[87,10],[86,10],[95,10],[85,10],[83,10],[82,10],[81,10],[80,10],[79,10],[78,10],[77,10],[76,10],[75,10],[84,10],[74,10],[96,10],[98,10],[118,10],[117,10],[116,10],[115,10],[114,10],[113,10],[112,10],[111,10],[110,10],[97,10],[109,10],[107,10],[106,10],[105,10],[104,10],[103,10],[102,10],[101,10],[100,10],[99,10],[108,10],[73,10],[72,10],[71,10],[33,10],[32,10],[31,10],[30,10],[29,10],[23,10],[21,10],[20,10],[19,10],[34,10],[18,10],[16,10],[15,10],[14,10],[13,10],[12,10],[10,10],[8,10],[7,10],[1,10],[17,10],[40,10],[41,10],[42,10],[70,10],[69,10],[68,10],[67,10],[66,10],[65,10],[59,10],[58,10],[57,10],[56,10],[55,10],[54,10],[53,10],[52,10],[51,10],[50,10],[48,10],[46,10],[45,10],[44,10],[43,10],[119,10],[120,10],[121,10],[122,10],[201,10],[200,10],[199,10],[198,10],[197,10],[196,10],[195,10],[194,10],[193,10],[202,10],[192,10],[190,10],[189,10],[188,10],[187,10],[186,10],[185,10],[184,10],[183,10],[182,10],[191,10],[203,10],[209,10],[210,10],[231,10],[230,10],[229,10],[228,10],[227,10],[226,10],[225,10],[224,10],[223,10],[222,10],[221,10],[220,10],[219,10],[218,10],[217,10],[216,10],[215,10],[214,10],[213,10],[212,10],[211,10],[181,10],[453,10],[175,10],[173,10],[142,10],[141,10],[140,10],[139,10],[138,10],[137,10],[136,10],[135,10],[134,10],[143,10],[133,10],[131,10],[130,10],[129,10],[128,10],[127,10],[126,10],[125,10],[124,10],[123,10],[132,10],[144,10],[145,10],[146,10],[172,10],[171,10],[170,10],[169,10],[168,10],[167,10],[166,10],[165,10],[164,10],[163,10],[162,10],[161,10],[160,10],[159,10],[158,10],[157,10],[156,10],[150,10],[149,10],[148,10],[147,10],[174,10],[454,10]]","5":"[[0,3],[314,3],[313,3],[312,3],[311,3],[310,3],[309,3],[308,3],[307,3],[306,3],[315,3],[305,3],[298,3],[297,3],[296,3],[295,3],[294,3],[293,3],[292,3],[291,3],[290,3],[299,3],[289,3],[316,3],[318,3],[338,3],[337,3],[336,3],[335,3],[334,3],[333,3],[332,3],[331,3],[330,3],[317,3],[329,3],[327,3],[326,3],[325,3],[324,3],[323,3],[322,3],[321,3],[320,3],[319,3],[328,3],[288,3],[287,3],[286,3],[255,3],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[248,3],[247,3],[256,3],[246,3],[244,3],[243,3],[242,3],[241,3],[240,3],[239,3],[238,3],[237,3],[236,3],[245,3],[257,3],[258,3],[259,3],[285,3],[279,3],[278,3],[277,3],[276,3],[275,3],[274,3],[273,3],[272,3],[271,3],[270,3],[269,3],[268,3],[267,3],[266,3],[265,3],[264,3],[263,3],[262,3],[261,3],[260,3],[339,3],[235,3],[340,3],[342,3],[426,3],[420,3],[419,3],[418,3],[417,3],[416,3],[415,3],[414,3],[413,3],[427,3],[412,3],[410,3],[409,3],[408,3],[407,3],[406,3],[405,3],[404,3],[403,3],[402,3],[411,3],[401,3],[428,3],[432,3],[452,3],[451,3],[450,3],[449,3],[448,3],[447,3],[446,3],[445,3],[444,3],[430,3],[443,3],[441,3],[440,3],[439,3],[438,3],[437,3],[436,3],[435,3],[434,3],[433,3],[442,3],[400,3],[399,3],[398,3],[372,3],[371,3],[370,3],[369,3],[368,3],[367,3],[366,3],[365,3],[364,3],[373,3],[363,3],[361,3],[360,3],[359,3],[358,3],[357,3],[351,3],[350,3],[349,3],[343,3],[362,3],[374,3],[375,3],[376,3],[397,3],[396,3],[395,3],[394,3],[393,3],[392,3],[391,3],[390,3],[389,3],[388,3],[387,3],[386,3],[385,3],[384,3],[383,3],[382,3],[381,3],[380,3],[379,3],[378,3],[377,3],[341,3],[234,3],[233,3],[232,3],[94,3],[93,3],[92,3],[91,3],[90,3],[89,3],[88,3],[87,3],[86,3],[95,3],[85,3],[83,3],[82,3],[81,3],[80,3],[79,3],[78,3],[77,3],[76,3],[75,3],[84,3],[74,3],[96,3],[98,3],[118,3],[117,3],[116,3],[115,3],[114,3],[113,3],[112,3],[111,3],[110,3],[97,3],[109,3],[107,3],[106,3],[105,3],[104,3],[103,3],[102,3],[101,3],[100,3],[99,3],[108,3],[73,3],[72,3],[71,3],[33,3],[32,3],[31,3],[30,3],[29,3],[23,3],[21,3],[20,3],[19,3],[34,3],[18,3],[16,3],[15,3],[14,3],[13,3],[12,3],[10,3],[8,3],[7,3],[1,3],[17,3],[40,3],[41,3],[42,3],[70,3],[69,3],[68,3],[67,3],[66,3],[65,3],[59,3],[58,3],[57,3],[56,3],[55,3],[54,3],[53,3],[52,3],[51,3],[50,3],[48,3],[46,3],[45,3],[44,3],[43,3],[119,3],[120,3],[121,3],[122,3],[201,3],[200,3],[199,3],[198,3],[197,3],[196,3],[195,3],[194,3],[193,3],[202,3],[192,3],[190,3],[189,3],[188,3],[187,3],[186,3],[185,3],[184,3],[183,3],[182,3],[191,3],[203,3],[209,3],[210,3],[231,3],[230,3],[229,3],[228,3],[227,3],[226,3],[225,3],[224,3],[223,3],[222,3],[221,3],[220,3],[219,3],[218,3],[217,3],[216,3],[215,3],[214,3],[213,3],[212,3],[211,3],[181,3],[453,3],[175,3],[173,3],[142,3],[141,3],[140,3],[139,3],[138,3],[137,3],[136,3],[135,3],[134,3],[143,3],[133,3],[131,3],[130,3],[129,3],[128,3],[127,3],[126,3],[125,3],[124,3],[123,3],[132,3],[144,3],[145,3],[146,3],[172,3],[171,3],[170,3],[169,3],[168,3],[167,3],[166,3],[165,3],[164,3],[163,3],[162,3],[161,3],[160,3],[159,3],[158,3],[157,3],[156,3],[150,3],[149,3],[148,3],[147,3],[174,3],[454,3]]","1":"[[0,3],[314,3],[313,3],[312,3],[311,3],[310,3],[309,3],[308,3],[307,3],[306,3],[315,3],[305,3],[298,3],[297,3],[296,3],[295,3],[294,3],[293,3],[292,3],[291,3],[290,3],[299,3],[289,3],[316,3],[318,3],[338,3],[337,3],[336,3],[335,3],[334,3],[333,3],[332,3],[331,3],[330,3],[317,3],[329,3],[327,3],[326,3],[325,3],[324,3],[323,3],[322,3],[321,3],[320,3],[319,3],[328,3],[288,3],[287,3],[286,3],[255,3],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[248,3],[247,3],[256,3],[246,3],[244,3],[243,3],[242,3],[241,3],[240,3],[239,3],[238,3],[237,3],[236,3],[245,3],[257,3],[258,3],[259,3],[285,3],[279,3],[278,3],[277,3],[276,3],[275,3],[274,3],[273,3],[272,3],[271,3],[270,3],[269,3],[268,3],[267,3],[266,3],[265,3],[264,3],[263,3],[262,3],[261,3],[260,3],[339,3],[235,3],[340,3],[342,3],[426,3],[420,3],[419,3],[418,3],[417,3],[416,3],[415,3],[414,3],[413,3],[427,3],[412,3],[410,3],[409,3],[408,3],[407,3],[406,3],[405,3],[404,3],[403,3],[402,3],[411,3],[401,3],[428,3],[432,3],[452,3],[451,3],[450,3],[449,3],[448,3],[447,3],[446,3],[445,3],[444,3],[430,3],[443,3],[441,3],[440,3],[439,3],[438,3],[437,3],[436,3],[435,3],[434,3],[433,3],[442,3],[400,3],[399,3],[398,3],[372,3],[371,3],[370,3],[369,3],[368,3],[367,3],[366,3],[365,3],[364,3],[373,3],[363,3],[361,3],[360,3],[359,3],[358,3],[357,3],[351,3],[350,3],[349,3],[343,3],[362,3],[374,3],[375,3],[376,3],[397,3],[396,3],[395,3],[394,3],[393,3],[392,3],[391,3],[390,3],[389,3],[388,3],[387,3],[386,3],[385,3],[384,3],[383,3],[382,3],[381,3],[380,3],[379,3],[378,3],[377,3],[341,3],[234,3],[233,3],[232,3],[94,3],[93,3],[92,3],[91,3],[90,3],[89,3],[88,3],[87,3],[86,3],[95,3],[85,3],[83,3],[82,3],[81,3],[80,3],[79,3],[78,3],[77,3],[76,3],[75,3],[84,3],[74,3],[96,3],[98,3],[118,3],[117,3],[116,3],[115,3],[114,3],[113,3],[112,3],[111,3],[110,3],[97,3],[109,3],[107,3],[106,3],[105,3],[104,3],[103,3],[102,3],[101,3],[100,3],[99,3],[108,3],[73,3],[72,3],[71,3],[33,3],[32,3],[31,3],[30,3],[29,3],[23,3],[21,3],[20,3],[19,3],[34,3],[18,3],[16,3],[15,3],[14,3],[13,3],[12,3],[10,3],[8,3],[7,3],[1,3],[17,3],[40,3],[41,3],[42,3],[70,3],[69,3],[68,3],[67,3],[66,3],[65,3],[59,3],[58,3],[57,3],[56,3],[55,3],[54,3],[53,3],[52,3],[51,3],[50,3],[48,3],[46,3],[45,3],[44,3],[43,3],[119,3],[120,3],[121,3],[122,3],[201,3],[200,3],[199,3],[198,3],[197,3],[196,3],[195,3],[194,3],[193,3],[202,3],[192,3],[190,3],[189,3],[188,3],[187,3],[186,3],[185,3],[184,3],[183,3],[182,3],[191,3],[203,3],[209,3],[210,3],[231,3],[230,3],[229,3],[228,3],[227,3],[226,3],[225,3],[224,3],[223,3],[222,3],[221,3],[220,3],[219,3],[218,3],[217,3],[216,3],[215,3],[214,3],[213,3],[212,3],[211,3],[181,3],[453,3],[175,3],[173,3],[142,3],[141,3],[140,3],[139,3],[138,3],[137,3],[136,3],[135,3],[134,3],[143,3],[133,3],[131,3],[130,3],[129,3],[128,3],[127,3],[126,3],[125,3],[124,3],[123,3],[132,3],[144,3],[145,3],[146,3],[172,3],[171,3],[170,3],[169,3],[168,3],[167,3],[166,3],[165,3],[164,3],[163,3],[162,3],[161,3],[160,3],[159,3],[158,3],[157,3],[156,3],[150,3],[149,3],[148,3],[147,3],[174,3],[454,3]]","2":"[[0,3],[314,3],[313,3],[312,3],[311,3],[310,3],[309,3],[308,3],[307,3],[306,3],[315,3],[305,3],[298,3],[297,3],[296,3],[295,3],[294,3],[293,3],[292,3],[291,3],[290,3],[299,3],[289,3],[316,3],[318,3],[338,3],[337,3],[336,3],[335,3],[334,3],[333,3],[332,3],[331,3],[330,3],[317,3],[329,3],[327,3],[326,3],[325,3],[324,3],[323,3],[322,3],[321,3],[320,3],[319,3],[328,3],[288,3],[287,3],[286,3],[255,3],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[248,3],[247,3],[256,3],[246,3],[244,3],[243,3],[242,3],[241,3],[240,3],[239,3],[238,3],[237,3],[236,3],[245,3],[257,3],[258,3],[259,3],[285,3],[279,3],[278,3],[277,3],[276,3],[275,3],[274,3],[273,3],[272,3],[271,3],[270,3],[269,3],[268,3],[267,3],[266,3],[265,3],[264,3],[263,3],[262,3],[261,3],[260,3],[339,3],[235,3],[340,3],[342,3],[426,3],[420,3],[419,3],[418,3],[417,3],[416,3],[415,3],[414,3],[413,3],[427,3],[412,3],[410,3],[409,3],[408,3],[407,3],[406,3],[405,3],[404,3],[403,3],[402,3],[411,3],[401,3],[428,3],[432,3],[452,3],[451,3],[450,3],[449,3],[448,3],[447,3],[446,3],[445,3],[444,3],[430,3],[443,3],[441,3],[440,3],[439,3],[438,3],[437,3],[436,3],[435,3],[434,3],[433,3],[442,3],[400,3],[399,3],[398,3],[372,3],[371,3],[370,3],[369,3],[368,3],[367,3],[366,3],[365,3],[364,3],[373,3],[363,3],[361,3],[360,3],[359,3],[358,3],[357,3],[351,3],[350,3],[349,3],[343,3],[362,3],[374,3],[375,3],[376,3],[397,3],[396,3],[395,3],[394,3],[393,3],[392,3],[391,3],[390,3],[389,3],[388,3],[387,3],[386,3],[385,3],[384,3],[383,3],[382,3],[381,3],[380,3],[379,3],[378,3],[377,3],[341,3],[234,3],[233,3],[232,3],[94,3],[93,3],[92,3],[91,3],[90,3],[89,3],[88,3],[87,3],[86,3],[95,3],[85,3],[83,3],[82,3],[81,3],[80,3],[79,3],[78,3],[77,3],[76,3],[75,3],[84,3],[74,3],[96,3],[98,3],[118,3],[117,3],[116,3],[115,3],[114,3],[113,3],[112,3],[111,3],[110,3],[97,3],[109,3],[107,3],[106,3],[105,3],[104,3],[103,3],[102,3],[101,3],[100,3],[99,3],[108,3],[73,3],[72,3],[71,3],[33,3],[32,3],[31,3],[30,3],[29,3],[23,3],[21,3],[20,3],[19,3],[34,3],[18,3],[16,3],[15,3],[14,3],[13,3],[12,3],[10,3],[8,3],[7,3],[1,3],[17,3],[40,3],[41,3],[42,3],[70,3],[69,3],[68,3],[67,3],[66,3],[65,3],[59,3],[58,3],[57,3],[56,3],[55,3],[54,3],[53,3],[52,3],[51,3],[50,3],[48,3],[46,3],[45,3],[44,3],[43,3],[119,3],[120,3],[121,3],[122,3],[201,3],[200,3],[199,3],[198,3],[197,3],[196,3],[195,3],[194,3],[193,3],[202,3],[192,3],[190,3],[189,3],[188,3],[187,3],[186,3],[185,3],[184,3],[183,3],[182,3],[191,3],[203,3],[209,3],[210,3],[231,3],[230,3],[229,3],[228,3],[227,3],[226,3],[225,3],[224,3],[223,3],[222,3],[221,3],[220,3],[219,3],[218,3],[217,3],[216,3],[215,3],[214,3],[213,3],[212,3],[211,3],[181,3],[453,3],[175,3],[173,3],[142,3],[141,3],[140,3],[139,3],[138,3],[137,3],[136,3],[135,3],[134,3],[143,3],[133,3],[131,3],[130,3],[129,3],[128,3],[127,3],[126,3],[125,3],[124,3],[123,3],[132,3],[144,3],[145,3],[146,3],[172,3],[171,3],[170,3],[169,3],[168,3],[167,3],[166,3],[165,3],[164,3],[163,3],[162,3],[161,3],[160,3],[159,3],[158,3],[157,3],[156,3],[150,3],[149,3],[148,3],[147,3],[174,3],[454,3]]","6":"[[0,3],[314,3],[313,3],[312,3],[311,3],[310,3],[309,3],[308,3],[307,3],[306,3],[315,3],[305,3],[298,3],[297,3],[296,3],[295,3],[294,3],[293,3],[292,3],[291,3],[290,3],[299,3],[289,3],[316,3],[318,3],[338,3],[337,3],[336,3],[335,3],[334,3],[333,3],[332,3],[331,3],[330,3],[317,3],[329,3],[327,3],[326,3],[325,3],[324,3],[323,3],[322,3],[321,3],[320,3],[319,3],[328,3],[288,3],[287,3],[286,3],[255,3],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[248,3],[247,3],[256,3],[246,3],[244,3],[243,3],[242,3],[241,3],[240,3],[239,3],[238,3],[237,3],[236,3],[245,3],[257,3],[258,3],[259,3],[285,3],[279,3],[278,3],[277,3],[276,3],[275,3],[274,3],[273,3],[272,3],[271,3],[270,3],[269,3],[268,3],[267,3],[266,3],[265,3],[264,3],[263,3],[262,3],[261,3],[260,3],[339,3],[235,3],[340,3],[342,3],[426,3],[420,3],[419,3],[418,3],[417,3],[416,3],[415,3],[414,3],[413,3],[427,3],[412,3],[410,3],[409,3],[408,3],[407,3],[406,3],[405,3],[404,3],[403,3],[402,3],[411,3],[401,3],[428,3],[432,3],[452,3],[451,3],[450,3],[449,3],[448,3],[447,3],[446,3],[445,3],[444,3],[430,3],[443,3],[441,3],[440,3],[439,3],[438,3],[437,3],[436,3],[435,3],[434,3],[433,3],[442,3],[400,3],[399,3],[398,3],[372,3],[371,3],[370,3],[369,3],[368,3],[367,3],[366,3],[365,3],[364,3],[373,3],[363,3],[361,3],[360,3],[359,3],[358,3],[357,3],[351,3],[350,3],[349,3],[343,3],[362,3],[374,3],[375,3],[376,3],[397,3],[396,3],[395,3],[394,3],[393,3],[392,3],[391,3],[390,3],[389,3],[388,3],[387,3],[386,3],[385,3],[384,3],[383,3],[382,3],[381,3],[380,3],[379,3],[378,3],[377,3],[341,3],[234,3],[233,3],[232,3],[94,3],[93,3],[92,3],[91,3],[90,3],[89,3],[88,3],[87,3],[86,3],[95,3],[85,3],[83,3],[82,3],[81,3],[80,3],[79,3],[78,3],[77,3],[76,3],[75,3],[84,3],[74,3],[96,3],[98,3],[118,3],[117,3],[116,3],[115,3],[114,3],[113,3],[112,3],[111,3],[110,3],[97,3],[109,3],[107,3],[106,3],[105,3],[104,3],[103,3],[102,3],[101,3],[100,3],[99,3],[108,3],[73,3],[72,3],[71,3],[33,3],[32,3],[31,3],[30,3],[29,3],[23,3],[21,3],[20,3],[19,3],[34,3],[18,3],[16,3],[15,3],[14,3],[13,3],[12,3],[10,3],[8,3],[7,3],[1,3],[17,3],[40,3],[41,3],[42,3],[70,3],[69,3],[68,3],[67,3],[66,3],[65,3],[59,3],[58,3],[57,3],[56,3],[55,3],[54,3],[53,3],[52,3],[51,3],[50,3],[48,3],[46,3],[45,3],[44,3],[43,3],[119,3],[120,3],[121,3],[122,3],[201,3],[200,3],[199,3],[198,3],[197,3],[196,3],[195,3],[194,3],[193,3],[202,3],[192,3],[190,3],[189,3],[188,3],[187,3],[186,3],[185,3],[184,3],[183,3],[182,3],[191,3],[203,3],[209,3],[210,3],[231,3],[230,3],[229,3],[228,3],[227,3],[226,3],[225,3],[224,3],[223,3],[222,3],[221,3],[220,3],[219,3],[218,3],[217,3],[216,3],[215,3],[214,3],[213,3],[212,3],[211,3],[181,3],[453,3],[175,3],[173,3],[142,3],[141,3],[140,3],[139,3],[138,3],[137,3],[136,3],[135,3],[134,3],[143,3],[133,3],[131,3],[130,3],[129,3],[128,3],[127,3],[126,3],[125,3],[124,3],[123,3],[132,3],[144,3],[145,3],[146,3],[172,3],[171,3],[170,3],[169,3],[168,3],[167,3],[166,3],[165,3],[164,3],[163,3],[162,3],[161,3],[160,3],[159,3],[158,3],[157,3],[156,3],[150,3],[149,3],[148,3],[147,3],[174,3],[454,3]]","7":"[[0,3],[314,3],[313,3],[312,3],[311,3],[310,3],[309,3],[308,3],[307,3],[306,3],[315,3],[305,3],[298,3],[297,3],[296,3],[295,3],[294,3],[293,3],[292,3],[291,3],[290,3],[299,3],[289,3],[316,3],[318,3],[338,3],[337,3],[336,3],[335,3],[334,3],[333,3],[332,3],[331,3],[330,3],[317,3],[329,3],[327,3],[326,3],[325,3],[324,3],[323,3],[322,3],[321,3],[320,3],[319,3],[328,3],[288,3],[287,3],[286,3],[255,3],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[248,3],[247,3],[256,3],[246,3],[244,3],[243,3],[242,3],[241,3],[240,3],[239,3],[238,3],[237,3],[236,3],[245,3],[257,3],[258,3],[259,3],[285,3],[279,3],[278,3],[277,3],[276,3],[275,3],[274,3],[273,3],[272,3],[271,3],[270,3],[269,3],[268,3],[267,3],[266,3],[265,3],[264,3],[263,3],[262,3],[261,3],[260,3],[339,3],[235,3],[340,3],[342,3],[426,3],[420,3],[419,3],[418,3],[417,3],[416,3],[415,3],[414,3],[413,3],[427,3],[412,3],[410,3],[409,3],[408,3],[407,3],[406,3],[405,3],[404,3],[403,3],[402,3],[411,3],[401,3],[428,3],[432,3],[452,3],[451,3],[450,3],[449,3],[448,3],[447,3],[446,3],[445,3],[444,3],[430,3],[443,3],[441,3],[440,3],[439,3],[438,3],[437,3],[436,3],[435,3],[434,3],[433,3],[442,3],[400,3],[399,3],[398,3],[372,3],[371,3],[370,3],[369,3],[368,3],[367,3],[366,3],[365,3],[364,3],[373,3],[363,3],[361,3],[360,3],[359,3],[358,3],[357,3],[351,3],[350,3],[349,3],[343,3],[362,3],[374,3],[375,3],[376,3],[397,3],[396,3],[395,3],[394,3],[393,3],[392,3],[391,3],[390,3],[389,3],[388,3],[387,3],[386,3],[385,3],[384,3],[383,3],[382,3],[381,3],[380,3],[379,3],[378,3],[377,3],[341,3],[234,3],[233,3],[232,3],[94,3],[93,3],[92,3],[91,3],[90,3],[89,3],[88,3],[87,3],[86,3],[95,3],[85,3],[83,3],[82,3],[81,3],[80,3],[79,3],[78,3],[77,3],[76,3],[75,3],[84,3],[74,3],[96,3],[98,3],[118,3],[117,3],[116,3],[115,3],[114,3],[113,3],[112,3],[111,3],[110,3],[97,3],[109,3],[107,3],[106,3],[105,3],[104,3],[103,3],[102,3],[101,3],[100,3],[99,3],[108,3],[73,3],[72,3],[71,3],[33,3],[32,3],[31,3],[30,3],[29,3],[23,3],[21,3],[20,3],[19,3],[34,3],[18,3],[16,3],[15,3],[14,3],[13,3],[12,3],[10,3],[8,3],[7,3],[1,3],[17,3],[40,3],[41,3],[42,3],[70,3],[69,3],[68,3],[67,3],[66,3],[65,3],[59,3],[58,3],[57,3],[56,3],[55,3],[54,3],[53,3],[52,3],[51,3],[50,3],[48,3],[46,3],[45,3],[44,3],[43,3],[119,3],[120,3],[121,3],[122,3],[201,3],[200,3],[199,3],[198,3],[197,3],[196,3],[195,3],[194,3],[193,3],[202,3],[192,3],[190,3],[189,3],[188,3],[187,3],[186,3],[185,3],[184,3],[183,3],[182,3],[191,3],[203,3],[209,3],[210,3],[231,3],[230,3],[229,3],[228,3],[227,3],[226,3],[225,3],[224,3],[223,3],[222,3],[221,3],[220,3],[219,3],[218,3],[217,3],[216,3],[215,3],[214,3],[213,3],[212,3],[211,3],[181,3],[453,3],[175,3],[173,3],[142,3],[141,3],[140,3],[139,3],[138,3],[137,3],[136,3],[135,3],[134,3],[143,3],[133,3],[131,3],[130,3],[129,3],[128,3],[127,3],[126,3],[125,3],[124,3],[123,3],[132,3],[144,3],[145,3],[146,3],[172,3],[171,3],[170,3],[169,3],[168,3],[167,3],[166,3],[165,3],[164,3],[163,3],[162,3],[161,3],[160,3],[159,3],[158,3],[157,3],[156,3],[150,3],[149,3],[148,3],[147,3],[174,3],[454,3]]","8":"[[0,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[315,1],[305,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[299,1],[289,1],[316,1],[318,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[317,1],[329,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[328,1],[288,1],[287,1],[286,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[256,1],[246,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[245,1],[257,1],[258,1],[259,1],[285,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[339,1],[235,1],[340,1],[342,1],[426,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[427,1],[412,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[411,1],[401,1],[428,1],[432,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[430,1],[443,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[442,1],[400,1],[399,1],[398,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[373,1],[363,1],[361,1],[360,1],[359,1],[358,1],[357,1],[351,1],[350,1],[349,1],[343,1],[362,1],[374,1],[375,1],[376,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[341,1],[234,1],[233,1],[232,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[95,1],[85,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[84,1],[74,1],[96,1],[98,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[110,1],[97,1],[109,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[108,1],[73,1],[72,1],[71,1],[33,1],[32,1],[31,1],[30,1],[29,1],[23,1],[21,1],[20,1],[19,1],[34,1],[18,1],[16,1],[15,1],[14,1],[13,1],[12,1],[10,1],[8,1],[7,1],[1,1],[17,1],[40,1],[41,1],[42,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[48,1],[46,1],[45,1],[44,1],[43,1],[119,1],[120,1],[121,1],[122,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[202,1],[192,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[191,1],[203,1],[209,1],[210,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[181,1],[453,1],[175,1],[173,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[143,1],[133,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[132,1],[144,1],[145,1],[146,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[150,1],[149,1],[148,1],[147,1],[174,1],[454,1]]","this":"[[227,5],[267,5],[266,5],[265,5],[264,5],[263,5],[262,5],[261,5],[260,5],[259,5],[268,5],[258,5],[256,5],[255,5],[254,5],[253,5],[252,5],[251,5],[250,5],[249,5],[248,5],[257,5],[269,5],[270,5],[271,5],[292,5],[291,5],[290,5],[289,5],[288,5],[287,5],[286,5],[285,5],[409,5],[410,5],[411,5],[412,5],[413,5],[279,5],[278,5],[277,5],[276,5],[275,5],[274,5],[273,5],[272,5],[247,5],[293,5],[246,5],[244,5],[218,5],[217,5],[216,5],[215,5],[214,5],[213,5],[212,5],[211,5],[210,5],[219,5],[209,5],[415,5],[416,5],[417,5],[418,5],[203,5],[202,5],[201,5],[200,5],[199,5],[414,5],[220,5],[221,5],[222,5],[243,5],[242,5],[241,5],[240,5],[239,5],[238,5],[237,5],[236,5],[235,5],[234,5],[233,5],[232,5],[231,5],[230,5],[229,5],[228,5],[454,5],[226,5],[225,5],[224,5],[223,5],[245,5],[294,5],[295,5],[296,5],[366,5],[365,5],[364,5],[363,5],[362,5],[361,5],[360,5],[359,5],[358,5],[367,5],[357,5],[395,5],[396,5],[397,5],[398,5],[351,5],[350,5],[349,5],[399,5],[400,5],[394,5],[368,5],[369,5],[370,5],[391,5],[390,5],[389,5],[388,5],[387,5],[386,5],[385,5],[384,5],[383,5],[382,5],[381,5],[380,5],[379,5],[378,5],[377,5],[376,5],[375,5],[374,5],[373,5],[372,5],[371,5],[401,5],[402,5],[403,5],[343,5],[317,5],[316,5],[315,5],[314,5],[313,5],[312,5],[311,5],[310,5],[309,5],[308,5],[307,5],[306,5],[305,5],[404,5],[405,5],[406,5],[407,5],[408,5],[299,5],[298,5],[297,5],[318,5],[198,5],[319,5],[321,5],[342,5],[341,5],[340,5],[339,5],[338,5],[337,5],[336,5],[335,5],[334,5],[333,5],[332,5],[331,5],[330,5],[329,5],[328,5],[327,5],[326,5],[325,5],[324,5],[323,5],[322,5],[320,5],[197,5],[196,5],[195,5],[71,5],[70,5],[69,5],[68,5],[67,5],[66,5],[65,5],[430,5],[432,5],[72,5],[433,5],[58,5],[57,5],[56,5],[55,5],[54,5],[53,5],[52,5],[51,5],[50,5],[59,5],[73,5],[74,5],[75,5],[96,5],[95,5],[94,5],[93,5],[92,5],[91,5],[90,5],[89,5],[88,5],[87,5],[86,5],[85,5],[84,5],[83,5],[82,5],[81,5],[80,5],[79,5],[78,5],[77,5],[76,5],[434,5],[392,5],[48,5],[46,5],[20,5],[19,5],[18,5],[17,5],[16,5],[15,5],[14,5],[13,5],[12,5],[21,5],[447,5],[448,5],[8,5],[7,5],[449,5],[450,5],[451,5],[452,5],[453,5],[1,5],[10,5],[446,5],[23,5],[445,5],[45,5],[44,5],[43,5],[42,5],[41,5],[40,5],[436,5],[437,5],[438,5],[439,5],[440,5],[34,5],[33,5],[32,5],[31,5],[30,5],[29,5],[441,5],[442,5],[443,5],[444,5],[435,5],[98,5],[97,5],[100,5],[166,5],[165,5],[164,5],[163,5],[162,5],[161,5],[160,5],[159,5],[158,5],[157,5],[156,5],[426,5],[427,5],[428,5],[150,5],[149,5],[148,5],[99,5],[146,5],[167,5],[168,5],[169,5],[170,5],[194,5],[193,5],[192,5],[191,5],[190,5],[189,5],[188,5],[187,5],[186,5],[145,5],[185,5],[183,5],[182,5],[181,5],[420,5],[175,5],[174,5],[173,5],[172,5],[171,5],[184,5],[144,5],[147,5],[142,5],[120,5],[119,5],[118,5],[117,5],[116,5],[115,5],[114,5],[113,5],[112,5],[143,5],[111,5],[109,5],[108,5],[107,5],[106,5],[105,5],[104,5],[103,5],[102,5],[101,5],[110,5],[122,5],[121,5],[124,5],[141,5],[140,5],[139,5],[138,5],[137,5],[136,5],[135,5],[134,5],[133,5],[123,5],[132,5],[393,5],[131,5],[130,5],[129,5],[128,5],[127,5],[126,5],[125,5],[421,1],[431,1],[424,1],[425,1],[422,1],[423,1],[419,1],[429,1],[0,1],[355,1],[152,1],[151,1],[64,1],[63,1],[62,1],[61,1],[60,1],[49,1],[47,1],[39,1],[38,1],[37,1],[36,1],[35,1],[28,1],[27,1],[26,1],[25,1],[24,1],[22,1],[11,1],[9,1],[6,1],[5,1],[4,1],[3,1],[2,1],[153,1],[356,1],[154,1],[176,1],[354,1],[353,1],[352,1],[348,1],[347,1],[346,1],[345,1],[344,1],[304,1],[303,1],[302,1],[301,1],[300,1],[284,1],[283,1],[282,1],[281,1],[280,1],[208,1],[207,1],[206,1],[205,1],[204,1],[180,1],[179,1],[178,1],[177,1],[155,1],[455,1]]","article":"[[0,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[455,1]]","definition":"[[0,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[455,1]]","generated":"[[0,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[455,1]]","with":"[[0,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[455,1]]","vsdocman":"[[0,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[311,1],[299,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[298,1],[312,1],[313,1],[314,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[286,1],[340,1],[285,1],[283,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[254,1],[242,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[241,1],[255,1],[256,1],[257,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[284,1],[229,1],[341,1],[343,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[425,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[426,1],[427,1],[428,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[400,1],[342,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[228,1],[227,1],[226,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[82,1],[70,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[58,1],[69,1],[83,1],[84,1],[85,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[57,1],[111,1],[56,1],[54,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[25,1],[13,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[1,1],[12,1],[26,1],[27,1],[28,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[29,1],[55,1],[112,1],[113,1],[114,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[197,1],[185,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[184,1],[198,1],[199,1],[200,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[172,1],[171,1],[170,1],[169,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[140,1],[454,1],[141,1],[143,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[142,1],[455,1]]","class":"[[1,1006],[203,1006],[279,1006],[175,1006],[299,1006],[150,1006],[351,1006],[59,1006],[420,1006],[34,1006],[343,1006],[442,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[310,1],[449,1],[297,1],[296,1],[295,1],[294,1],[293,1],[450,1],[292,1],[291,1],[290,1],[289,1],[298,1],[311,1],[312,1],[313,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[448,1],[316,1],[315,1],[314,1],[288,1],[336,1],[287,1],[285,1],[258,1],[257,1],[256,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[259,1],[248,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[247,1],[260,1],[261,1],[262,1],[284,1],[283,1],[282,1],[281,1],[280,1],[451,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[452,1],[265,1],[264,1],[263,1],[286,1],[337,1],[338,1],[339,1],[414,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[446,1],[406,1],[415,1],[405,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[395,1],[394,1],[404,1],[416,1],[417,1],[418,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[444,1],[431,1],[430,1],[429,1],[428,1],[427,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[445,1],[393,1],[392,1],[391,1],[390,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[447,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[236,1],[342,1],[341,1],[340,1],[363,1],[443,1],[364,1],[366,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[365,1],[235,1],[232,1],[233,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[93,1],[69,1],[94,1],[96,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[95,1],[68,1],[67,1],[66,1],[36,1],[35,1],[23,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[37,1],[38,1],[39,1],[40,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[58,1],[57,1],[56,1],[55,1],[54,1],[120,1],[53,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[52,1],[121,1],[122,1],[123,1],[204,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[182,1],[181,1],[205,1],[206,1],[207,1],[208,1],[453,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[180,1],[221,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[220,1],[234,1],[179,1],[177,1],[146,1],[145,1],[144,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[147,1],[148,1],[149,1],[151,1],[176,1],[174,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[178,1],[164,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[163,1],[454,1]]","vb":"[[1,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[306,4],[305,4],[314,4],[299,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[290,4],[289,4],[298,4],[288,4],[315,4],[317,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[330,4],[329,4],[316,4],[328,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[319,4],[318,4],[327,4],[338,4],[287,4],[285,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[248,4],[247,4],[256,4],[246,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[237,4],[236,4],[245,4],[286,4],[257,4],[259,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[272,4],[271,4],[258,4],[270,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[261,4],[260,4],[269,4],[339,4],[340,4],[341,4],[426,4],[420,4],[418,4],[417,4],[416,4],[415,4],[414,4],[413,4],[412,4],[427,4],[411,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[402,4],[401,4],[410,4],[400,4],[428,4],[432,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[445,4],[444,4],[430,4],[443,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[434,4],[433,4],[442,4],[399,4],[398,4],[397,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[364,4],[363,4],[372,4],[362,4],[360,4],[359,4],[358,4],[357,4],[351,4],[350,4],[349,4],[343,4],[342,4],[361,4],[373,4],[374,4],[375,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[377,4],[376,4],[235,4],[234,4],[233,4],[232,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[88,4],[87,4],[96,4],[86,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[77,4],[76,4],[85,4],[75,4],[97,4],[99,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[112,4],[111,4],[98,4],[110,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[101,4],[100,4],[109,4],[74,4],[73,4],[72,4],[34,4],[33,4],[32,4],[31,4],[30,4],[29,4],[23,4],[21,4],[20,4],[40,4],[19,4],[17,4],[16,4],[15,4],[14,4],[13,4],[12,4],[10,4],[8,4],[7,4],[18,4],[41,4],[42,4],[43,4],[71,4],[70,4],[69,4],[68,4],[67,4],[66,4],[65,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[51,4],[50,4],[48,4],[46,4],[45,4],[44,4],[120,4],[453,4],[121,4],[123,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[195,4],[194,4],[203,4],[193,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[184,4],[183,4],[192,4],[182,4],[209,4],[211,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[224,4],[223,4],[210,4],[222,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[213,4],[212,4],[221,4],[181,4],[175,4],[174,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[136,4],[135,4],[144,4],[134,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[125,4],[124,4],[133,4],[145,4],[146,4],[147,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[157,4],[156,4],[150,4],[149,4],[148,4],[122,4],[454,4]]","c":"[[1,8],[313,8],[312,8],[311,8],[310,8],[309,8],[308,8],[307,8],[306,8],[305,8],[314,8],[299,8],[297,8],[296,8],[295,8],[294,8],[293,8],[292,8],[291,8],[290,8],[289,8],[298,8],[288,8],[315,8],[317,8],[337,8],[336,8],[335,8],[334,8],[333,8],[332,8],[331,8],[330,8],[329,8],[316,8],[328,8],[326,8],[325,8],[324,8],[323,8],[322,8],[321,8],[320,8],[319,8],[318,8],[327,8],[338,8],[287,8],[285,8],[255,8],[254,8],[253,8],[252,8],[251,8],[250,8],[249,8],[248,8],[247,8],[256,8],[246,8],[244,8],[243,8],[242,8],[241,8],[240,8],[239,8],[238,8],[237,8],[236,8],[245,8],[286,8],[257,8],[259,8],[279,8],[278,8],[277,8],[276,8],[275,8],[274,8],[273,8],[272,8],[271,8],[258,8],[270,8],[268,8],[267,8],[266,8],[265,8],[264,8],[263,8],[262,8],[261,8],[260,8],[269,8],[339,8],[340,8],[341,8],[426,8],[420,8],[418,8],[417,8],[416,8],[415,8],[414,8],[413,8],[412,8],[427,8],[411,8],[409,8],[408,8],[407,8],[406,8],[405,8],[404,8],[403,8],[402,8],[401,8],[410,8],[400,8],[428,8],[432,8],[452,8],[451,8],[450,8],[449,8],[448,8],[447,8],[446,8],[445,8],[444,8],[430,8],[443,8],[441,8],[440,8],[439,8],[438,8],[437,8],[436,8],[435,8],[434,8],[433,8],[442,8],[399,8],[398,8],[397,8],[371,8],[370,8],[369,8],[368,8],[367,8],[366,8],[365,8],[364,8],[363,8],[372,8],[362,8],[360,8],[359,8],[358,8],[357,8],[351,8],[350,8],[349,8],[343,8],[342,8],[361,8],[373,8],[374,8],[375,8],[396,8],[395,8],[394,8],[393,8],[392,8],[391,8],[390,8],[389,8],[388,8],[387,8],[386,8],[385,8],[384,8],[383,8],[382,8],[381,8],[380,8],[379,8],[378,8],[377,8],[376,8],[235,8],[234,8],[233,8],[232,8],[95,8],[94,8],[93,8],[92,8],[91,8],[90,8],[89,8],[88,8],[87,8],[96,8],[86,8],[84,8],[83,8],[82,8],[81,8],[80,8],[79,8],[78,8],[77,8],[76,8],[85,8],[75,8],[97,8],[99,8],[119,8],[118,8],[117,8],[116,8],[115,8],[114,8],[113,8],[112,8],[111,8],[98,8],[110,8],[108,8],[107,8],[106,8],[105,8],[104,8],[103,8],[102,8],[101,8],[100,8],[109,8],[74,8],[73,8],[72,8],[34,8],[33,8],[32,8],[31,8],[30,8],[29,8],[23,8],[21,8],[20,8],[40,8],[19,8],[17,8],[16,8],[15,8],[14,8],[13,8],[12,8],[10,8],[8,8],[7,8],[18,8],[41,8],[42,8],[43,8],[71,8],[70,8],[69,8],[68,8],[67,8],[66,8],[65,8],[59,8],[58,8],[57,8],[56,8],[55,8],[54,8],[53,8],[52,8],[51,8],[50,8],[48,8],[46,8],[45,8],[44,8],[120,8],[453,8],[121,8],[123,8],[202,8],[201,8],[200,8],[199,8],[198,8],[197,8],[196,8],[195,8],[194,8],[203,8],[193,8],[191,8],[190,8],[189,8],[188,8],[187,8],[186,8],[185,8],[184,8],[183,8],[192,8],[182,8],[209,8],[211,8],[231,8],[230,8],[229,8],[228,8],[227,8],[226,8],[225,8],[224,8],[223,8],[210,8],[222,8],[220,8],[219,8],[218,8],[217,8],[216,8],[215,8],[214,8],[213,8],[212,8],[221,8],[181,8],[175,8],[174,8],[143,8],[142,8],[141,8],[140,8],[139,8],[138,8],[137,8],[136,8],[135,8],[144,8],[134,8],[132,8],[131,8],[130,8],[129,8],[128,8],[127,8],[126,8],[125,8],[124,8],[133,8],[145,8],[146,8],[147,8],[173,8],[172,8],[171,8],[170,8],[169,8],[168,8],[167,8],[166,8],[165,8],[164,8],[163,8],[162,8],[161,8],[160,8],[159,8],[158,8],[157,8],[156,8],[150,8],[149,8],[148,8],[122,8],[454,8]]","f":"[[1,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[306,4],[305,4],[314,4],[299,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[290,4],[289,4],[298,4],[288,4],[315,4],[317,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[330,4],[329,4],[316,4],[328,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[319,4],[318,4],[327,4],[338,4],[287,4],[285,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[248,4],[247,4],[256,4],[246,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[237,4],[236,4],[245,4],[286,4],[257,4],[259,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[272,4],[271,4],[258,4],[270,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[261,4],[260,4],[269,4],[339,4],[340,4],[341,4],[426,4],[420,4],[418,4],[417,4],[416,4],[415,4],[414,4],[413,4],[412,4],[427,4],[411,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[402,4],[401,4],[410,4],[400,4],[428,4],[432,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[445,4],[444,4],[430,4],[443,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[434,4],[433,4],[442,4],[399,4],[398,4],[397,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[364,4],[363,4],[372,4],[362,4],[360,4],[359,4],[358,4],[357,4],[351,4],[350,4],[349,4],[343,4],[342,4],[361,4],[373,4],[374,4],[375,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[377,4],[376,4],[235,4],[234,4],[233,4],[232,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[88,4],[87,4],[96,4],[86,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[77,4],[76,4],[85,4],[75,4],[97,4],[99,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[112,4],[111,4],[98,4],[110,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[101,4],[100,4],[109,4],[74,4],[73,4],[72,4],[34,4],[33,4],[32,4],[31,4],[30,4],[29,4],[23,4],[21,4],[20,4],[40,4],[19,4],[17,4],[16,4],[15,4],[14,4],[13,4],[12,4],[10,4],[8,4],[7,4],[18,4],[41,4],[42,4],[43,4],[71,4],[70,4],[69,4],[68,4],[67,4],[66,4],[65,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[51,4],[50,4],[48,4],[46,4],[45,4],[44,4],[120,4],[453,4],[121,4],[123,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[195,4],[194,4],[203,4],[193,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[184,4],[183,4],[192,4],[182,4],[209,4],[211,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[224,4],[223,4],[210,4],[222,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[213,4],[212,4],[221,4],[181,4],[175,4],[174,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[136,4],[135,4],[144,4],[134,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[125,4],[124,4],[133,4],[145,4],[146,4],[147,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[157,4],[156,4],[150,4],[149,4],[148,4],[122,4],[454,4]]","jscript":"[[1,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[306,4],[305,4],[314,4],[299,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[290,4],[289,4],[298,4],[288,4],[315,4],[317,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[330,4],[329,4],[316,4],[328,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[319,4],[318,4],[327,4],[338,4],[287,4],[285,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[248,4],[247,4],[256,4],[246,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[237,4],[236,4],[245,4],[286,4],[257,4],[259,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[272,4],[271,4],[258,4],[270,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[261,4],[260,4],[269,4],[339,4],[340,4],[341,4],[426,4],[420,4],[418,4],[417,4],[416,4],[415,4],[414,4],[413,4],[412,4],[427,4],[411,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[402,4],[401,4],[410,4],[400,4],[428,4],[432,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[445,4],[444,4],[430,4],[443,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[434,4],[433,4],[442,4],[399,4],[398,4],[397,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[364,4],[363,4],[372,4],[362,4],[360,4],[359,4],[358,4],[357,4],[351,4],[350,4],[349,4],[343,4],[342,4],[361,4],[373,4],[374,4],[375,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[377,4],[376,4],[235,4],[234,4],[233,4],[232,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[88,4],[87,4],[96,4],[86,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[77,4],[76,4],[85,4],[75,4],[97,4],[99,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[112,4],[111,4],[98,4],[110,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[101,4],[100,4],[109,4],[74,4],[73,4],[72,4],[34,4],[33,4],[32,4],[31,4],[30,4],[29,4],[23,4],[21,4],[20,4],[40,4],[19,4],[17,4],[16,4],[15,4],[14,4],[13,4],[12,4],[10,4],[8,4],[7,4],[18,4],[41,4],[42,4],[43,4],[71,4],[70,4],[69,4],[68,4],[67,4],[66,4],[65,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[51,4],[50,4],[48,4],[46,4],[45,4],[44,4],[120,4],[453,4],[121,4],[123,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[195,4],[194,4],[203,4],[193,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[184,4],[183,4],[192,4],[182,4],[209,4],[211,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[224,4],[223,4],[210,4],[222,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[213,4],[212,4],[221,4],[181,4],[175,4],[174,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[136,4],[135,4],[144,4],[134,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[125,4],[124,4],[133,4],[145,4],[146,4],[147,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[157,4],[156,4],[150,4],[149,4],[148,4],[122,4],[454,4]]","copy":"[[1,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[306,4],[305,4],[314,4],[299,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[290,4],[289,4],[298,4],[288,4],[315,4],[317,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[330,4],[329,4],[316,4],[328,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[319,4],[318,4],[327,4],[338,4],[287,4],[285,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[248,4],[247,4],[256,4],[246,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[237,4],[236,4],[245,4],[286,4],[257,4],[259,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[272,4],[271,4],[258,4],[270,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[261,4],[260,4],[269,4],[339,4],[340,4],[341,4],[426,4],[420,4],[418,4],[417,4],[416,4],[415,4],[414,4],[413,4],[412,4],[427,4],[411,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[402,4],[401,4],[410,4],[400,4],[428,4],[432,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[445,4],[444,4],[430,4],[443,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[434,4],[433,4],[442,4],[399,4],[398,4],[397,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[364,4],[363,4],[372,4],[362,4],[360,4],[359,4],[358,4],[357,4],[351,4],[350,4],[349,4],[343,4],[342,4],[361,4],[373,4],[374,4],[375,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[377,4],[376,4],[235,4],[234,4],[233,4],[232,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[88,4],[87,4],[96,4],[86,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[77,4],[76,4],[85,4],[75,4],[97,4],[99,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[112,4],[111,4],[98,4],[110,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[101,4],[100,4],[109,4],[74,4],[73,4],[72,4],[34,4],[33,4],[32,4],[31,4],[30,4],[29,4],[23,4],[21,4],[20,4],[40,4],[19,4],[17,4],[16,4],[15,4],[14,4],[13,4],[12,4],[10,4],[8,4],[7,4],[18,4],[41,4],[42,4],[43,4],[71,4],[70,4],[69,4],[68,4],[67,4],[66,4],[65,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[51,4],[50,4],[48,4],[46,4],[45,4],[44,4],[120,4],[453,4],[121,4],[123,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[195,4],[194,4],[203,4],[193,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[184,4],[183,4],[192,4],[182,4],[209,4],[211,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[224,4],[223,4],[210,4],[222,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[213,4],[212,4],[221,4],[181,4],[175,4],[174,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[136,4],[135,4],[144,4],[134,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[125,4],[124,4],[133,4],[145,4],[146,4],[147,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[157,4],[156,4],[150,4],[149,4],[148,4],[122,4],[454,4]]","public":"[[34,6],[1,5],[276,5],[275,5],[274,5],[273,5],[272,5],[271,5],[270,5],[269,5],[268,5],[267,5],[266,5],[265,5],[264,5],[263,5],[262,5],[261,5],[277,5],[278,5],[279,5],[291,5],[318,5],[317,5],[316,5],[315,5],[314,5],[313,5],[312,5],[260,5],[311,5],[298,5],[297,5],[296,5],[295,5],[294,5],[293,5],[292,5],[299,5],[259,5],[258,5],[257,5],[234,5],[233,5],[232,5],[231,5],[230,5],[229,5],[228,5],[235,5],[227,5],[225,5],[224,5],[223,5],[222,5],[221,5],[220,5],[219,5],[226,5],[236,5],[237,5],[238,5],[256,5],[255,5],[254,5],[253,5],[252,5],[251,5],[250,5],[249,5],[248,5],[247,5],[246,5],[245,5],[244,5],[243,5],[242,5],[241,5],[240,5],[319,5],[320,5],[321,5],[322,5],[397,5],[396,5],[395,5],[394,5],[393,5],[392,5],[391,5],[398,5],[390,5],[388,5],[387,5],[386,5],[385,5],[384,5],[383,5],[382,5],[389,5],[399,5],[400,5],[401,5],[418,5],[417,5],[416,5],[415,5],[414,5],[413,5],[412,5],[411,5],[410,5],[409,5],[408,5],[407,5],[406,5],[405,5],[404,5],[403,5],[402,5],[381,5],[218,5],[380,5],[378,5],[338,5],[337,5],[336,5],[335,5],[334,5],[333,5],[332,5],[339,5],[331,5],[329,5],[328,5],[327,5],[326,5],[325,5],[324,5],[323,5],[330,5],[340,5],[341,5],[342,5],[377,5],[376,5],[375,5],[374,5],[373,5],[372,5],[371,5],[370,5],[369,5],[368,5],[367,5],[366,5],[365,5],[364,5],[363,5],[351,5],[343,5],[379,5],[217,5],[239,5],[215,5],[105,5],[106,5],[107,5],[108,5],[216,5],[110,5],[111,5],[112,5],[113,5],[114,5],[115,5],[116,5],[117,5],[118,5],[119,5],[120,5],[121,5],[135,5],[134,5],[133,5],[132,5],[131,5],[130,5],[104,5],[129,5],[127,5],[126,5],[125,5],[124,5],[123,5],[122,5],[128,5],[103,5],[102,5],[101,5],[82,5],[81,5],[80,5],[79,5],[78,5],[77,5],[83,5],[76,5],[74,5],[73,5],[72,5],[71,5],[59,5],[57,5],[75,5],[136,5],[84,5],[86,5],[100,5],[99,5],[98,5],[97,5],[96,5],[95,5],[85,5],[94,5],[92,5],[91,5],[90,5],[89,5],[88,5],[87,5],[93,5],[137,5],[109,5],[197,5],[162,5],[163,5],[164,5],[165,5],[166,5],[167,5],[168,5],[169,5],[170,5],[171,5],[172,5],[199,5],[173,5],[175,5],[198,5],[138,5],[196,5],[195,5],[194,5],[193,5],[192,5],[191,5],[190,5],[189,5],[174,5],[188,5],[200,5],[202,5],[139,5],[201,5],[140,5],[141,5],[142,5],[143,5],[144,5],[187,5],[146,5],[147,5],[148,5],[149,5],[150,5],[145,5],[203,5],[15,4],[52,4],[51,4],[50,4],[46,4],[21,4],[23,4],[20,4],[19,4],[18,4],[16,4],[45,4],[17,4],[435,4],[13,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[445,4],[444,4],[443,4],[442,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[53,4],[434,4],[433,4],[432,4],[430,4],[428,4],[427,4],[426,4],[420,4],[7,4],[8,4],[12,4],[14,4],[54,4],[290,4],[56,4],[349,4],[182,4],[181,4],[161,4],[160,4],[159,4],[158,4],[157,4],[156,4],[350,4],[310,4],[308,4],[307,4],[306,4],[305,4],[285,4],[286,4],[287,4],[288,4],[289,4],[309,4],[183,4],[357,4],[358,4],[214,4],[58,4],[213,4],[65,4],[66,4],[67,4],[68,4],[69,4],[70,4],[212,4],[211,4],[210,4],[209,4],[453,4],[186,4],[185,4],[184,4],[362,4],[361,4],[360,4],[359,4],[55,4],[454,4]]","implements":"[[1,2],[34,2],[8,1],[46,1]]","idisposable":"[[1,4],[34,4],[8,1],[46,1]]","language":"[[1,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[306,4],[305,4],[314,4],[299,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[290,4],[289,4],[298,4],[288,4],[315,4],[317,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[330,4],[329,4],[316,4],[328,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[319,4],[318,4],[327,4],[338,4],[287,4],[285,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[248,4],[247,4],[256,4],[246,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[237,4],[236,4],[245,4],[286,4],[257,4],[259,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[272,4],[271,4],[258,4],[270,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[261,4],[260,4],[269,4],[339,4],[340,4],[341,4],[426,4],[420,4],[418,4],[417,4],[416,4],[415,4],[414,4],[413,4],[412,4],[427,4],[411,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[402,4],[401,4],[410,4],[400,4],[428,4],[432,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[445,4],[444,4],[430,4],[443,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[434,4],[433,4],[442,4],[399,4],[398,4],[397,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[364,4],[363,4],[372,4],[362,4],[360,4],[359,4],[358,4],[357,4],[351,4],[350,4],[349,4],[343,4],[342,4],[361,4],[373,4],[374,4],[375,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[377,4],[376,4],[235,4],[234,4],[233,4],[232,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[88,4],[87,4],[96,4],[86,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[77,4],[76,4],[85,4],[75,4],[97,4],[99,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[112,4],[111,4],[98,4],[110,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[101,4],[100,4],[109,4],[74,4],[73,4],[72,4],[34,4],[33,4],[32,4],[31,4],[30,4],[29,4],[23,4],[21,4],[20,4],[40,4],[19,4],[17,4],[16,4],[15,4],[14,4],[13,4],[12,4],[10,4],[8,4],[7,4],[18,4],[41,4],[42,4],[43,4],[71,4],[70,4],[69,4],[68,4],[67,4],[66,4],[65,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[51,4],[50,4],[48,4],[46,4],[45,4],[44,4],[120,4],[453,4],[121,4],[123,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[195,4],[194,4],[203,4],[193,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[184,4],[183,4],[192,4],[182,4],[209,4],[211,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[224,4],[223,4],[210,4],[222,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[213,4],[212,4],[221,4],[181,4],[175,4],[174,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[136,4],[135,4],[144,4],[134,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[125,4],[124,4],[133,4],[145,4],[146,4],[147,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[157,4],[156,4],[150,4],[149,4],[148,4],[122,4],[454,4]]","is":"[[1,8],[313,8],[312,8],[311,8],[310,8],[309,8],[308,8],[307,8],[306,8],[305,8],[314,8],[299,8],[297,8],[296,8],[295,8],[294,8],[293,8],[292,8],[291,8],[290,8],[289,8],[298,8],[288,8],[315,8],[317,8],[337,8],[336,8],[335,8],[334,8],[333,8],[332,8],[331,8],[330,8],[329,8],[316,8],[328,8],[326,8],[325,8],[324,8],[323,8],[322,8],[321,8],[320,8],[319,8],[318,8],[327,8],[338,8],[287,8],[285,8],[255,8],[254,8],[253,8],[252,8],[251,8],[250,8],[249,8],[248,8],[247,8],[256,8],[246,8],[244,8],[243,8],[242,8],[241,8],[240,8],[239,8],[238,8],[237,8],[236,8],[245,8],[286,8],[257,8],[259,8],[279,8],[278,8],[277,8],[276,8],[275,8],[274,8],[273,8],[272,8],[271,8],[258,8],[270,8],[268,8],[267,8],[266,8],[265,8],[264,8],[263,8],[262,8],[261,8],[260,8],[269,8],[339,8],[340,8],[341,8],[426,8],[420,8],[418,8],[417,8],[416,8],[415,8],[414,8],[413,8],[412,8],[427,8],[411,8],[409,8],[408,8],[407,8],[406,8],[405,8],[404,8],[403,8],[402,8],[401,8],[410,8],[400,8],[428,8],[432,8],[452,8],[451,8],[450,8],[449,8],[448,8],[447,8],[446,8],[445,8],[444,8],[430,8],[443,8],[441,8],[440,8],[439,8],[438,8],[437,8],[436,8],[435,8],[434,8],[433,8],[442,8],[399,8],[398,8],[397,8],[371,8],[370,8],[369,8],[368,8],[367,8],[366,8],[365,8],[364,8],[363,8],[372,8],[362,8],[360,8],[359,8],[358,8],[357,8],[351,8],[350,8],[349,8],[343,8],[342,8],[361,8],[373,8],[374,8],[375,8],[396,8],[395,8],[394,8],[393,8],[392,8],[391,8],[390,8],[389,8],[388,8],[387,8],[386,8],[385,8],[384,8],[383,8],[382,8],[381,8],[380,8],[379,8],[378,8],[377,8],[376,8],[235,8],[234,8],[233,8],[232,8],[95,8],[94,8],[93,8],[92,8],[91,8],[90,8],[89,8],[88,8],[87,8],[96,8],[86,8],[84,8],[83,8],[82,8],[81,8],[80,8],[79,8],[78,8],[77,8],[76,8],[85,8],[75,8],[97,8],[99,8],[119,8],[118,8],[117,8],[116,8],[115,8],[114,8],[113,8],[112,8],[111,8],[98,8],[110,8],[108,8],[107,8],[106,8],[105,8],[104,8],[103,8],[102,8],[101,8],[100,8],[109,8],[74,8],[73,8],[72,8],[34,8],[33,8],[32,8],[31,8],[30,8],[29,8],[23,8],[21,8],[20,8],[40,8],[19,8],[17,8],[16,8],[15,8],[14,8],[13,8],[12,8],[10,8],[8,8],[7,8],[18,8],[41,8],[42,8],[43,8],[71,8],[70,8],[69,8],[68,8],[67,8],[66,8],[65,8],[59,8],[58,8],[57,8],[56,8],[55,8],[54,8],[53,8],[52,8],[51,8],[50,8],[48,8],[46,8],[45,8],[44,8],[120,8],[453,8],[121,8],[123,8],[202,8],[201,8],[200,8],[199,8],[198,8],[197,8],[196,8],[195,8],[194,8],[203,8],[193,8],[191,8],[190,8],[189,8],[188,8],[187,8],[186,8],[185,8],[184,8],[183,8],[192,8],[182,8],[209,8],[211,8],[231,8],[230,8],[229,8],[228,8],[227,8],[226,8],[225,8],[224,8],[223,8],[210,8],[222,8],[220,8],[219,8],[218,8],[217,8],[216,8],[215,8],[214,8],[213,8],[212,8],[221,8],[181,8],[175,8],[174,8],[143,8],[142,8],[141,8],[140,8],[139,8],[138,8],[137,8],[136,8],[135,8],[144,8],[134,8],[132,8],[131,8],[130,8],[129,8],[128,8],[127,8],[126,8],[125,8],[124,8],[133,8],[145,8],[146,8],[147,8],[173,8],[172,8],[171,8],[170,8],[169,8],[168,8],[167,8],[166,8],[165,8],[164,8],[163,8],[162,8],[161,8],[160,8],[159,8],[158,8],[157,8],[156,8],[150,8],[149,8],[148,8],[122,8],[454,8]]","not":"[[1,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[306,4],[305,4],[314,4],[299,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[290,4],[289,4],[298,4],[288,4],[315,4],[317,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[330,4],[329,4],[316,4],[328,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[319,4],[318,4],[327,4],[338,4],[287,4],[285,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[248,4],[247,4],[256,4],[246,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[237,4],[236,4],[245,4],[286,4],[257,4],[259,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[272,4],[271,4],[258,4],[270,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[261,4],[260,4],[269,4],[339,4],[340,4],[341,4],[426,4],[420,4],[418,4],[417,4],[416,4],[415,4],[414,4],[413,4],[412,4],[427,4],[411,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[402,4],[401,4],[410,4],[400,4],[428,4],[432,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[445,4],[444,4],[430,4],[443,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[434,4],[433,4],[442,4],[399,4],[398,4],[397,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[364,4],[363,4],[372,4],[362,4],[360,4],[359,4],[358,4],[357,4],[351,4],[350,4],[349,4],[343,4],[342,4],[361,4],[373,4],[374,4],[375,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[377,4],[376,4],[235,4],[234,4],[233,4],[232,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[88,4],[87,4],[96,4],[86,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[77,4],[76,4],[85,4],[75,4],[97,4],[99,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[112,4],[111,4],[98,4],[110,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[101,4],[100,4],[109,4],[74,4],[73,4],[72,4],[34,4],[33,4],[32,4],[31,4],[30,4],[29,4],[23,4],[21,4],[20,4],[40,4],[19,4],[17,4],[16,4],[15,4],[14,4],[13,4],[12,4],[10,4],[8,4],[7,4],[18,4],[41,4],[42,4],[43,4],[71,4],[70,4],[69,4],[68,4],[67,4],[66,4],[65,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[51,4],[50,4],[48,4],[46,4],[45,4],[44,4],[120,4],[453,4],[121,4],[123,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[195,4],[194,4],[203,4],[193,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[184,4],[183,4],[192,4],[182,4],[209,4],[211,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[224,4],[223,4],[210,4],[222,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[213,4],[212,4],[221,4],[181,4],[175,4],[174,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[136,4],[135,4],[144,4],[134,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[125,4],[124,4],[133,4],[145,4],[146,4],[147,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[157,4],[156,4],[150,4],[149,4],[148,4],[122,4],[454,4]]","supported":"[[1,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[306,4],[305,4],[314,4],[299,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[290,4],[289,4],[298,4],[288,4],[315,4],[317,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[330,4],[329,4],[316,4],[328,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[319,4],[318,4],[327,4],[338,4],[287,4],[285,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[248,4],[247,4],[256,4],[246,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[237,4],[236,4],[245,4],[286,4],[257,4],[259,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[272,4],[271,4],[258,4],[270,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[261,4],[260,4],[269,4],[339,4],[340,4],[341,4],[426,4],[420,4],[418,4],[417,4],[416,4],[415,4],[414,4],[413,4],[412,4],[427,4],[411,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[402,4],[401,4],[410,4],[400,4],[428,4],[432,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[445,4],[444,4],[430,4],[443,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[434,4],[433,4],[442,4],[399,4],[398,4],[397,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[364,4],[363,4],[372,4],[362,4],[360,4],[359,4],[358,4],[357,4],[351,4],[350,4],[349,4],[343,4],[342,4],[361,4],[373,4],[374,4],[375,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[377,4],[376,4],[235,4],[234,4],[233,4],[232,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[88,4],[87,4],[96,4],[86,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[77,4],[76,4],[85,4],[75,4],[97,4],[99,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[112,4],[111,4],[98,4],[110,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[101,4],[100,4],[109,4],[74,4],[73,4],[72,4],[34,4],[33,4],[32,4],[31,4],[30,4],[29,4],[23,4],[21,4],[20,4],[40,4],[19,4],[17,4],[16,4],[15,4],[14,4],[13,4],[12,4],[10,4],[8,4],[7,4],[18,4],[41,4],[42,4],[43,4],[71,4],[70,4],[69,4],[68,4],[67,4],[66,4],[65,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[51,4],[50,4],[48,4],[46,4],[45,4],[44,4],[120,4],[453,4],[121,4],[123,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[195,4],[194,4],[203,4],[193,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[184,4],[183,4],[192,4],[182,4],[209,4],[211,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[224,4],[223,4],[210,4],[222,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[213,4],[212,4],[221,4],[181,4],[175,4],[174,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[136,4],[135,4],[144,4],[134,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[125,4],[124,4],[133,4],[145,4],[146,4],[147,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[157,4],[156,4],[150,4],[149,4],[148,4],[122,4],[454,4]]","or":"[[1,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[306,4],[305,4],[314,4],[299,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[290,4],[289,4],[298,4],[288,4],[315,4],[317,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[330,4],[329,4],[316,4],[328,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[319,4],[318,4],[327,4],[338,4],[287,4],[285,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[248,4],[247,4],[256,4],[246,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[237,4],[236,4],[245,4],[286,4],[257,4],[259,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[272,4],[271,4],[258,4],[270,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[261,4],[260,4],[269,4],[339,4],[340,4],[341,4],[426,4],[420,4],[418,4],[417,4],[416,4],[415,4],[414,4],[413,4],[412,4],[427,4],[411,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[402,4],[401,4],[410,4],[400,4],[428,4],[432,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[445,4],[444,4],[430,4],[443,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[434,4],[433,4],[442,4],[399,4],[398,4],[397,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[364,4],[363,4],[372,4],[362,4],[360,4],[359,4],[358,4],[357,4],[351,4],[350,4],[349,4],[343,4],[342,4],[361,4],[373,4],[374,4],[375,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[377,4],[376,4],[235,4],[234,4],[233,4],[232,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[88,4],[87,4],[96,4],[86,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[77,4],[76,4],[85,4],[75,4],[97,4],[99,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[112,4],[111,4],[98,4],[110,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[101,4],[100,4],[109,4],[74,4],[73,4],[72,4],[34,4],[33,4],[32,4],[31,4],[30,4],[29,4],[23,4],[21,4],[20,4],[40,4],[19,4],[17,4],[16,4],[15,4],[14,4],[13,4],[12,4],[10,4],[8,4],[7,4],[18,4],[41,4],[42,4],[43,4],[71,4],[70,4],[69,4],[68,4],[67,4],[66,4],[65,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[51,4],[50,4],[48,4],[46,4],[45,4],[44,4],[120,4],[453,4],[121,4],[123,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[195,4],[194,4],[203,4],[193,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[184,4],[183,4],[192,4],[182,4],[209,4],[211,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[224,4],[223,4],[210,4],[222,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[213,4],[212,4],[221,4],[181,4],[175,4],[174,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[136,4],[135,4],[144,4],[134,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[125,4],[124,4],[133,4],[145,4],[146,4],[147,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[157,4],[156,4],[150,4],[149,4],[148,4],[122,4],[454,4]]","no":"[[1,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[306,4],[305,4],[314,4],[299,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[290,4],[289,4],[298,4],[288,4],[315,4],[317,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[330,4],[329,4],[316,4],[328,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[319,4],[318,4],[327,4],[338,4],[287,4],[285,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[248,4],[247,4],[256,4],[246,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[237,4],[236,4],[245,4],[286,4],[257,4],[259,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[272,4],[271,4],[258,4],[270,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[261,4],[260,4],[269,4],[339,4],[340,4],[341,4],[426,4],[420,4],[418,4],[417,4],[416,4],[415,4],[414,4],[413,4],[412,4],[427,4],[411,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[402,4],[401,4],[410,4],[400,4],[428,4],[432,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[445,4],[444,4],[430,4],[443,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[434,4],[433,4],[442,4],[399,4],[398,4],[397,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[364,4],[363,4],[372,4],[362,4],[360,4],[359,4],[358,4],[357,4],[351,4],[350,4],[349,4],[343,4],[342,4],[361,4],[373,4],[374,4],[375,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[377,4],[376,4],[235,4],[234,4],[233,4],[232,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[88,4],[87,4],[96,4],[86,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[77,4],[76,4],[85,4],[75,4],[97,4],[99,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[112,4],[111,4],[98,4],[110,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[101,4],[100,4],[109,4],[74,4],[73,4],[72,4],[34,4],[33,4],[32,4],[31,4],[30,4],[29,4],[23,4],[21,4],[20,4],[40,4],[19,4],[17,4],[16,4],[15,4],[14,4],[13,4],[12,4],[10,4],[8,4],[7,4],[18,4],[41,4],[42,4],[43,4],[71,4],[70,4],[69,4],[68,4],[67,4],[66,4],[65,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[51,4],[50,4],[48,4],[46,4],[45,4],[44,4],[120,4],[453,4],[121,4],[123,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[195,4],[194,4],[203,4],[193,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[184,4],[183,4],[192,4],[182,4],[209,4],[211,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[224,4],[223,4],[210,4],[222,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[213,4],[212,4],[221,4],[181,4],[175,4],[174,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[136,4],[135,4],[144,4],[134,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[125,4],[124,4],[133,4],[145,4],[146,4],[147,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[157,4],[156,4],[150,4],[149,4],[148,4],[122,4],[454,4]]","code":"[[1,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[306,4],[305,4],[314,4],[299,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[290,4],[289,4],[298,4],[288,4],[315,4],[317,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[330,4],[329,4],[316,4],[328,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[319,4],[318,4],[327,4],[338,4],[287,4],[285,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[248,4],[247,4],[256,4],[246,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[237,4],[236,4],[245,4],[286,4],[257,4],[259,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[272,4],[271,4],[258,4],[270,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[261,4],[260,4],[269,4],[339,4],[340,4],[341,4],[426,4],[420,4],[418,4],[417,4],[416,4],[415,4],[414,4],[413,4],[412,4],[427,4],[411,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[402,4],[401,4],[410,4],[400,4],[428,4],[432,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[445,4],[444,4],[430,4],[443,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[434,4],[433,4],[442,4],[399,4],[398,4],[397,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[364,4],[363,4],[372,4],[362,4],[360,4],[359,4],[358,4],[357,4],[351,4],[350,4],[349,4],[343,4],[342,4],[361,4],[373,4],[374,4],[375,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[377,4],[376,4],[235,4],[234,4],[233,4],[232,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[88,4],[87,4],[96,4],[86,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[77,4],[76,4],[85,4],[75,4],[97,4],[99,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[112,4],[111,4],[98,4],[110,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[101,4],[100,4],[109,4],[74,4],[73,4],[72,4],[34,4],[33,4],[32,4],[31,4],[30,4],[29,4],[23,4],[21,4],[20,4],[40,4],[19,4],[17,4],[16,4],[15,4],[14,4],[13,4],[12,4],[10,4],[8,4],[7,4],[18,4],[41,4],[42,4],[43,4],[71,4],[70,4],[69,4],[68,4],[67,4],[66,4],[65,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[51,4],[50,4],[48,4],[46,4],[45,4],[44,4],[120,4],[453,4],[121,4],[123,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[195,4],[194,4],[203,4],[193,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[184,4],[183,4],[192,4],[182,4],[209,4],[211,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[224,4],[223,4],[210,4],[222,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[213,4],[212,4],[221,4],[181,4],[175,4],[174,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[136,4],[135,4],[144,4],[134,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[125,4],[124,4],[133,4],[145,4],[146,4],[147,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[157,4],[156,4],[150,4],[149,4],[148,4],[122,4],[454,4]]","example":"[[1,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[306,4],[305,4],[314,4],[299,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[290,4],[289,4],[298,4],[288,4],[315,4],[317,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[330,4],[329,4],[316,4],[328,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[319,4],[318,4],[327,4],[338,4],[287,4],[285,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[248,4],[247,4],[256,4],[246,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[237,4],[236,4],[245,4],[286,4],[257,4],[259,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[272,4],[271,4],[258,4],[270,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[261,4],[260,4],[269,4],[339,4],[340,4],[341,4],[426,4],[420,4],[418,4],[417,4],[416,4],[415,4],[414,4],[413,4],[412,4],[427,4],[411,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[402,4],[401,4],[410,4],[400,4],[428,4],[432,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[445,4],[444,4],[430,4],[443,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[434,4],[433,4],[442,4],[399,4],[398,4],[397,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[364,4],[363,4],[372,4],[362,4],[360,4],[359,4],[358,4],[357,4],[351,4],[350,4],[349,4],[343,4],[342,4],[361,4],[373,4],[374,4],[375,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[377,4],[376,4],[235,4],[234,4],[233,4],[232,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[88,4],[87,4],[96,4],[86,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[77,4],[76,4],[85,4],[75,4],[97,4],[99,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[112,4],[111,4],[98,4],[110,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[101,4],[100,4],[109,4],[74,4],[73,4],[72,4],[34,4],[33,4],[32,4],[31,4],[30,4],[29,4],[23,4],[21,4],[20,4],[40,4],[19,4],[17,4],[16,4],[15,4],[14,4],[13,4],[12,4],[10,4],[8,4],[7,4],[18,4],[41,4],[42,4],[43,4],[71,4],[70,4],[69,4],[68,4],[67,4],[66,4],[65,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[51,4],[50,4],[48,4],[46,4],[45,4],[44,4],[120,4],[453,4],[121,4],[123,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[195,4],[194,4],[203,4],[193,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[184,4],[183,4],[192,4],[182,4],[209,4],[211,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[224,4],[223,4],[210,4],[222,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[213,4],[212,4],[221,4],[181,4],[175,4],[174,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[136,4],[135,4],[144,4],[134,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[125,4],[124,4],[133,4],[145,4],[146,4],[147,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[157,4],[156,4],[150,4],[149,4],[148,4],[122,4],[454,4]]","available":"[[1,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[306,4],[305,4],[314,4],[299,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[290,4],[289,4],[298,4],[288,4],[315,4],[317,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[330,4],[329,4],[316,4],[328,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[319,4],[318,4],[327,4],[338,4],[287,4],[285,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[248,4],[247,4],[256,4],[246,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[237,4],[236,4],[245,4],[286,4],[257,4],[259,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[272,4],[271,4],[258,4],[270,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[261,4],[260,4],[269,4],[339,4],[340,4],[341,4],[426,4],[420,4],[418,4],[417,4],[416,4],[415,4],[414,4],[413,4],[412,4],[427,4],[411,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[402,4],[401,4],[410,4],[400,4],[428,4],[432,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[445,4],[444,4],[430,4],[443,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[434,4],[433,4],[442,4],[399,4],[398,4],[397,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[364,4],[363,4],[372,4],[362,4],[360,4],[359,4],[358,4],[357,4],[351,4],[350,4],[349,4],[343,4],[342,4],[361,4],[373,4],[374,4],[375,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[377,4],[376,4],[235,4],[234,4],[233,4],[232,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[88,4],[87,4],[96,4],[86,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[77,4],[76,4],[85,4],[75,4],[97,4],[99,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[112,4],[111,4],[98,4],[110,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[101,4],[100,4],[109,4],[74,4],[73,4],[72,4],[34,4],[33,4],[32,4],[31,4],[30,4],[29,4],[23,4],[21,4],[20,4],[40,4],[19,4],[17,4],[16,4],[15,4],[14,4],[13,4],[12,4],[10,4],[8,4],[7,4],[18,4],[41,4],[42,4],[43,4],[71,4],[70,4],[69,4],[68,4],[67,4],[66,4],[65,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[51,4],[50,4],[48,4],[46,4],[45,4],[44,4],[120,4],[453,4],[121,4],[123,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[195,4],[194,4],[203,4],[193,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[184,4],[183,4],[192,4],[182,4],[209,4],[211,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[224,4],[223,4],[210,4],[222,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[213,4],[212,4],[221,4],[181,4],[175,4],[174,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[136,4],[135,4],[144,4],[134,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[125,4],[124,4],[133,4],[145,4],[146,4],[147,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[157,4],[156,4],[150,4],[149,4],[148,4],[122,4],[454,4]]","ref":"[[1,1],[34,1],[59,1],[150,1],[175,1],[203,1],[279,1],[299,1],[343,1],[351,1],[420,1]]","constructors":"[[1,1],[34,1],[59,1],[150,1],[175,1],[203,1],[279,1],[299,1],[351,1],[420,1]]","properties":"[[179,1003],[355,1003],[5,1003],[347,1003],[303,1003],[38,1003],[283,1003],[63,1003],[207,1003],[154,1003],[352,1002],[344,1002],[300,1002],[280,1002],[204,1002],[421,1002],[424,1002],[35,1002],[2,1002],[151,1002],[24,1002],[60,1002],[27,1002],[176,1002],[351,1],[34,1],[203,1],[59,1],[299,1],[150,1],[279,1],[175,1],[343,1],[1,1]]","bistransactionpending":"[[19,1006],[5,1],[1,1]]","sconnectionstring":"[[57,1007],[21,1006],[1,1],[347,1],[343,1],[303,1],[299,1],[283,1],[279,1],[207,1],[203,1],[175,1],[351,1],[154,1],[150,1],[63,1],[59,1],[38,1],[34,1],[5,1],[179,1],[355,1]]","scodbconnection":"[[20,1006],[5,1],[1,1]]","stcurrenttransaction":"[[18,1006],[5,1],[1,1]]","methods":"[[178,1004],[354,1004],[346,1004],[302,1004],[282,1004],[206,1004],[153,1004],[423,1004],[37,1004],[4,1004],[62,1004],[26,1003],[150,2],[59,2],[175,2],[420,2],[203,2],[279,2],[34,2],[299,2],[343,2],[351,2],[1,2],[23,1]]","begintransaction":"[[13,1006],[4,1],[1,1]]","string":"[[428,1007],[440,20],[420,20],[423,19],[437,10],[448,10],[350,10],[452,10],[432,10],[57,8],[21,6],[435,5],[439,5],[434,5],[442,5],[443,5],[438,5],[454,5],[426,5],[349,5],[449,5],[450,5],[16,5],[15,5],[13,5],[451,5],[444,5],[447,5],[1,3],[4,3],[346,1],[343,1],[429,1],[431,1]]","closeconnection":"[[17,1006],[4,1],[1,1]]","bool":"[[434,6],[17,6],[423,5],[420,5],[19,4],[159,3],[158,3],[446,3],[182,3],[183,3],[184,3],[210,3],[211,3],[212,3],[286,3],[306,3],[288,3],[157,3],[307,3],[308,3],[358,3],[359,3],[360,3],[444,3],[445,3],[287,3],[68,3],[448,3],[66,3],[31,3],[48,3],[30,3],[29,3],[16,3],[50,3],[43,3],[51,3],[14,3],[52,3],[13,3],[12,3],[10,3],[15,3],[67,3],[4,2],[1,2],[37,1],[150,1],[9,1],[153,1],[11,1],[62,1],[59,1],[175,1],[178,1],[354,1],[351,1],[346,1],[343,1],[49,1],[203,1],[206,1],[302,1],[299,1],[47,1],[279,1],[282,1],[34,1]]","committransaction":"[[14,1006],[4,1],[1,1]]","dispose":"[[46,1008],[8,1008],[10,1006],[48,1006],[9,1004],[11,1004],[49,1004],[47,1004],[279,2],[282,2],[299,2],[1,2],[302,2],[343,2],[346,2],[206,2],[203,2],[62,2],[175,2],[153,2],[150,2],[351,2],[59,2],[37,2],[34,2],[4,2],[178,2],[354,2]]","führt":"[[9,2],[47,2],[1,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[150,1],[351,1],[62,1],[59,1],[49,1],[46,1],[37,1],[34,1],[11,1],[8,1],[4,1],[153,1],[354,1]]","anwendungsspezifische":"[[9,2],[47,2],[1,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[150,1],[351,1],[62,1],[59,1],[49,1],[46,1],[37,1],[34,1],[11,1],[8,1],[4,1],[153,1],[354,1]]","aufgaben":"[[9,2],[47,2],[1,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[150,1],[351,1],[62,1],[59,1],[49,1],[46,1],[37,1],[34,1],[11,1],[8,1],[4,1],[153,1],[354,1]]","durch":"[[9,2],[47,2],[1,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[150,1],[351,1],[62,1],[59,1],[49,1],[46,1],[37,1],[34,1],[11,1],[8,1],[4,1],[153,1],[354,1]]","die":"[[1,3],[354,3],[351,3],[346,3],[343,3],[302,3],[299,3],[282,3],[279,3],[206,3],[203,3],[178,3],[175,3],[153,3],[150,3],[62,3],[59,3],[37,3],[34,3],[4,3],[47,2],[9,2],[420,2],[423,2],[49,1],[46,1],[11,1],[8,1]]","mit":"[[1,2],[354,2],[351,2],[346,2],[343,2],[302,2],[299,2],[282,2],[279,2],[206,2],[203,2],[178,2],[175,2],[153,2],[150,2],[62,2],[59,2],[47,2],[37,2],[34,2],[9,2],[4,2],[49,1],[46,1],[11,1],[8,1],[420,1],[423,1]]","der":"[[1,4],[354,4],[351,4],[346,4],[343,4],[302,4],[299,4],[282,4],[279,4],[206,4],[203,4],[178,4],[175,4],[153,4],[150,4],[62,4],[59,4],[47,4],[37,4],[34,4],[9,4],[4,4],[49,2],[46,2],[11,2],[8,2],[420,2],[423,2]]","freigabe":"[[9,2],[47,2],[1,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[150,1],[351,1],[62,1],[59,1],[49,1],[46,1],[37,1],[34,1],[11,1],[8,1],[4,1],[153,1],[354,1]]","zurückgabe":"[[9,2],[47,2],[1,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[150,1],[351,1],[62,1],[59,1],[49,1],[46,1],[37,1],[34,1],[11,1],[8,1],[4,1],[153,1],[354,1]]","oder":"[[9,2],[47,2],[1,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[150,1],[351,1],[62,1],[59,1],[49,1],[46,1],[37,1],[34,1],[11,1],[8,1],[4,1],[153,1],[354,1]]","dem":"[[1,3],[354,3],[351,3],[346,3],[343,3],[302,3],[299,3],[282,3],[279,3],[206,3],[203,3],[178,3],[175,3],[153,3],[150,3],[62,3],[59,3],[37,3],[34,3],[4,3],[47,2],[9,2],[420,2],[423,2],[49,1],[46,1],[11,1],[8,1]]","zurücksetzen":"[[9,2],[47,2],[1,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[150,1],[351,1],[62,1],[59,1],[49,1],[46,1],[37,1],[34,1],[11,1],[8,1],[4,1],[153,1],[354,1]]","von":"[[1,2],[354,2],[351,2],[346,2],[343,2],[302,2],[299,2],[282,2],[279,2],[206,2],[203,2],[178,2],[175,2],[153,2],[150,2],[62,2],[59,2],[47,2],[37,2],[34,2],[9,2],[4,2],[49,1],[46,1],[11,1],[8,1],[420,1],[423,1]]","nicht":"[[9,2],[47,2],[1,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[150,1],[351,1],[62,1],[59,1],[49,1],[46,1],[37,1],[34,1],[11,1],[8,1],[4,1],[153,1],[354,1]]","verwalteten":"[[9,2],[47,2],[1,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[150,1],[351,1],[62,1],[59,1],[49,1],[46,1],[37,1],[34,1],[11,1],[8,1],[4,1],[153,1],[354,1]]","ressourcen":"[[1,2],[354,2],[351,2],[346,2],[343,2],[302,2],[299,2],[282,2],[279,2],[206,2],[203,2],[178,2],[175,2],[153,2],[150,2],[62,2],[59,2],[47,2],[37,2],[34,2],[9,2],[4,2],[49,1],[46,1],[11,1],[8,1],[420,1],[423,1]]","zusammenhängen":"[[9,2],[47,2],[1,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[150,1],[351,1],[62,1],[59,1],[49,1],[46,1],[37,1],[34,1],[11,1],[8,1],[4,1],[153,1],[354,1]]","equals":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","object":"[[420,10],[1,9],[423,9],[351,9],[343,9],[299,9],[203,9],[175,9],[279,9],[150,9],[59,9],[34,9],[178,8],[206,8],[282,8],[62,8],[302,8],[346,8],[37,8],[354,8],[4,8],[153,8],[452,5],[444,5],[454,5]]","bestimmt":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","ob":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","das":"[[1,2],[354,2],[351,2],[346,2],[343,2],[302,2],[299,2],[282,2],[279,2],[206,2],[203,2],[178,2],[175,2],[153,2],[150,2],[62,2],[59,2],[37,2],[34,2],[4,2],[420,2],[423,2]]","angegebene":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","objekt":"[[1,4],[354,4],[351,4],[346,4],[343,4],[302,4],[299,4],[282,4],[279,4],[206,4],[203,4],[178,4],[175,4],[153,4],[150,4],[62,4],[59,4],[37,4],[34,4],[4,4],[420,4],[423,4]]","aktuellen":"[[1,3],[354,3],[351,3],[346,3],[343,3],[302,3],[299,3],[282,3],[279,3],[206,3],[203,3],[178,3],[175,3],[153,3],[150,3],[62,3],[59,3],[37,3],[34,3],[4,3],[420,3],[423,3]]","identisch":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","ist":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","inherited":"[[343,30],[150,17],[279,17],[351,17],[59,17],[203,17],[175,17],[299,17],[346,13],[347,12],[282,8],[178,8],[206,8],[153,8],[62,8],[354,8],[302,8],[1,6],[423,6],[4,6],[34,6],[37,6],[420,6],[208,5],[356,5],[348,5],[304,5],[64,5],[155,5],[284,5],[180,5],[154,4],[63,4],[283,4],[179,4],[355,4],[303,4],[207,4]]","from":"[[343,30],[150,17],[279,17],[351,17],[59,17],[203,17],[175,17],[299,17],[346,13],[347,12],[282,8],[178,8],[206,8],[153,8],[62,8],[354,8],[302,8],[1,6],[423,6],[4,6],[34,6],[37,6],[420,6],[208,5],[356,5],[348,5],[304,5],[64,5],[155,5],[284,5],[180,5],[154,4],[63,4],[283,4],[179,4],[355,4],[303,4],[207,4]]","finalize":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","gibt":"[[1,2],[354,2],[351,2],[346,2],[343,2],[302,2],[299,2],[282,2],[279,2],[206,2],[203,2],[178,2],[175,2],[153,2],[150,2],[62,2],[59,2],[37,2],[34,2],[4,2],[420,2],[423,2]]","einem":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","gelegenheit":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","zu":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","versuch":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","freizugeben":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","und":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","andere":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","bereinigungen":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","durchzuführen":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","bevor":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","es":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","garbage":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","collection":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","freigegeben":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","wird":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","gethashcode":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","fungiert":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","als":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","standardhashfunktion":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","gettype":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","ruft":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","den":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","type":"[[206,2],[302,2],[346,2],[37,2],[153,2],[282,2],[354,2],[62,2],[178,2],[4,2],[423,2],[280,1],[303,1],[284,1],[279,1],[299,1],[208,1],[300,1],[301,1],[281,1],[283,1],[343,1],[207,1],[344,1],[345,1],[347,1],[348,1],[351,1],[352,1],[353,1],[355,1],[356,1],[420,1],[421,1],[422,1],[304,1],[1,1],[203,1],[204,1],[2,1],[3,1],[5,1],[6,1],[24,1],[25,1],[26,1],[27,1],[28,1],[34,1],[35,1],[36,1],[38,1],[39,1],[205,1],[59,1],[61,1],[63,1],[64,1],[150,1],[151,1],[152,1],[154,1],[155,1],[175,1],[176,1],[177,1],[179,1],[180,1],[424,1],[60,1],[425,1]]","instanz":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","ab":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","memberwiseclone":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","erstellt":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","eine":"[[1,2],[354,2],[351,2],[346,2],[343,2],[302,2],[299,2],[282,2],[279,2],[206,2],[203,2],[178,2],[175,2],[153,2],[150,2],[62,2],[59,2],[37,2],[34,2],[4,2],[420,2],[423,2]]","flache":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","kopie":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","des":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","openconnection":"[[12,1006],[4,1],[1,1]]","rollbacktransaction":"[[15,1006],[4,1],[1,1]]","savetransaction":"[[16,1006],[4,1],[1,1]]","tostring":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","zeichenfolge":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","zurück":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","aktuelle":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","darstellt":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","extension":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","nameof":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","defined":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","by":"[[206,2],[302,2],[346,2],[37,2],[153,2],[282,2],[354,2],[62,2],[178,2],[4,2],[423,2],[280,1],[303,1],[284,1],[279,1],[299,1],[208,1],[300,1],[301,1],[281,1],[283,1],[343,1],[207,1],[344,1],[345,1],[347,1],[348,1],[351,1],[352,1],[353,1],[355,1],[356,1],[420,1],[421,1],[422,1],[304,1],[1,1],[203,1],[204,1],[2,1],[3,1],[5,1],[6,1],[24,1],[25,1],[26,1],[27,1],[28,1],[34,1],[35,1],[36,1],[38,1],[39,1],[205,1],[59,1],[61,1],[63,1],[64,1],[150,1],[151,1],[152,1],[154,1],[155,1],[175,1],[176,1],[177,1],[179,1],[180,1],[424,1],[60,1],[425,1]]","nloghelper":"[[1,1],[354,1],[351,1],[346,1],[343,1],[302,1],[299,1],[282,1],[279,1],[206,1],[203,1],[178,1],[175,1],[153,1],[150,1],[62,1],[59,1],[37,1],[34,1],[4,1],[420,1],[423,1]]","inheritance":"[[1,1],[34,1],[59,1],[150,1],[175,1],[203,1],[279,1],[299,1],[343,1],[351,1],[420,1]]","hierarchy":"[[1,1],[34,1],[59,1],[150,1],[175,1],[203,1],[279,1],[299,1],[343,1],[351,1],[420,1]]","system":"[[1,1],[34,1],[59,1],[150,1],[175,1],[203,1],[279,1],[299,1],[343,1],[351,1],[420,1]]","see":"[[1,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[299,1],[310,1],[298,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[286,1],[297,1],[285,1],[311,1],[313,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[312,1],[326,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[314,1],[325,1],[284,1],[283,1],[282,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[253,1],[241,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[240,1],[254,1],[255,1],[256,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[338,1],[339,1],[340,1],[341,1],[423,1],[422,1],[421,1],[420,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[412,1],[424,1],[411,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[410,1],[425,1],[426,1],[427,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[398,1],[228,1],[397,1],[395,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[366,1],[354,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[343,1],[342,1],[353,1],[367,1],[368,1],[369,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[396,1],[453,1],[227,1],[225,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[83,1],[71,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[70,1],[58,1],[84,1],[86,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[85,1],[99,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[98,1],[57,1],[56,1],[55,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[26,1],[14,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[13,1],[27,1],[28,1],[29,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[111,1],[112,1],[113,1],[114,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[196,1],[184,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[172,1],[183,1],[197,1],[198,1],[199,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[171,1],[226,1],[170,1],[168,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[139,1],[127,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[126,1],[140,1],[141,1],[142,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[169,1],[454,1]]","also":"[[1,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[300,1],[299,1],[310,1],[298,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[287,1],[286,1],[297,1],[285,1],[311,1],[313,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[312,1],[326,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[314,1],[325,1],[284,1],[283,1],[282,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[253,1],[241,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[240,1],[254,1],[255,1],[256,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[258,1],[257,1],[338,1],[339,1],[340,1],[341,1],[423,1],[422,1],[421,1],[420,1],[418,1],[417,1],[416,1],[415,1],[414,1],[413,1],[412,1],[424,1],[411,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[410,1],[425,1],[426,1],[427,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[398,1],[228,1],[397,1],[395,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[366,1],[354,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[343,1],[342,1],[353,1],[367,1],[368,1],[369,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[396,1],[453,1],[227,1],[225,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[83,1],[71,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[70,1],[58,1],[84,1],[86,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[85,1],[99,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[98,1],[57,1],[56,1],[55,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[26,1],[14,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[13,1],[27,1],[28,1],[29,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[111,1],[112,1],[113,1],[114,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[196,1],[184,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[173,1],[172,1],[183,1],[197,1],[198,1],[199,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[201,1],[200,1],[171,1],[226,1],[170,1],[168,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[139,1],[127,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[126,1],[140,1],[141,1],[142,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[169,1],[454,1]]","attached":"[[2,1002],[24,1002],[35,1002],[60,1002],[151,1002],[176,1002],[204,1002],[280,1002],[300,1002],[344,1002],[352,1002],[421,1002]]","the":"[[2,3],[206,3],[207,3],[208,3],[280,3],[281,3],[282,3],[283,3],[284,3],[300,3],[301,3],[302,3],[303,3],[205,3],[304,3],[345,3],[346,3],[347,3],[348,3],[352,3],[353,3],[354,3],[355,3],[356,3],[421,3],[422,3],[423,3],[344,3],[204,3],[180,3],[179,3],[3,3],[4,3],[5,3],[6,3],[24,3],[25,3],[26,3],[27,3],[28,3],[35,3],[36,3],[37,3],[38,3],[39,3],[60,3],[61,3],[62,3],[63,3],[64,3],[151,3],[152,3],[153,3],[154,3],[155,3],[176,3],[177,3],[178,3],[424,3],[425,3]]","following":"[[2,1],[206,1],[207,1],[208,1],[280,1],[281,1],[282,1],[283,1],[284,1],[300,1],[301,1],[302,1],[303,1],[205,1],[304,1],[345,1],[346,1],[347,1],[348,1],[352,1],[353,1],[354,1],[355,1],[356,1],[421,1],[422,1],[423,1],[344,1],[204,1],[180,1],[179,1],[3,1],[4,1],[5,1],[6,1],[24,1],[25,1],[26,1],[27,1],[28,1],[35,1],[36,1],[37,1],[38,1],[39,1],[60,1],[61,1],[62,1],[63,1],[64,1],[151,1],[152,1],[153,1],[154,1],[155,1],[176,1],[177,1],[178,1],[424,1],[425,1]]","tables":"[[2,1],[206,1],[207,1],[208,1],[280,1],[281,1],[282,1],[283,1],[284,1],[300,1],[301,1],[302,1],[303,1],[205,1],[304,1],[345,1],[346,1],[347,1],[348,1],[352,1],[353,1],[354,1],[355,1],[356,1],[421,1],[422,1],[423,1],[344,1],[204,1],[180,1],[179,1],[3,1],[4,1],[5,1],[6,1],[24,1],[25,1],[26,1],[27,1],[28,1],[35,1],[36,1],[37,1],[38,1],[39,1],[60,1],[61,1],[62,1],[63,1],[64,1],[151,1],[152,1],[153,1],[154,1],[155,1],[176,1],[177,1],[178,1],[424,1],[425,1]]","list":"[[2,1],[205,1],[206,1],[207,1],[208,1],[280,1],[281,1],[282,1],[283,1],[284,1],[300,1],[301,1],[302,1],[303,1],[304,1],[344,1],[345,1],[346,1],[347,1],[348,1],[352,1],[353,1],[354,1],[355,1],[356,1],[421,1],[422,1],[423,1],[424,1],[425,1],[204,1],[180,1],[179,1],[178,1],[3,1],[4,1],[5,1],[6,1],[9,1],[11,1],[24,1],[25,1],[26,1],[27,1],[28,1],[35,1],[36,1],[37,1],[429,1],[38,1],[47,1],[49,1],[60,1],[61,1],[62,1],[63,1],[64,1],[151,1],[152,1],[153,1],[154,1],[155,1],[176,1],[177,1],[39,1],[431,1]]","members":"[[2,1],[206,1],[207,1],[208,1],[280,1],[281,1],[282,1],[283,1],[284,1],[300,1],[301,1],[302,1],[303,1],[205,1],[304,1],[345,1],[346,1],[347,1],[348,1],[352,1],[353,1],[354,1],[355,1],[356,1],[421,1],[422,1],[423,1],[344,1],[204,1],[180,1],[179,1],[3,1],[4,1],[5,1],[6,1],[24,1],[25,1],[26,1],[27,1],[28,1],[35,1],[36,1],[37,1],[38,1],[39,1],[60,1],[61,1],[62,1],[63,1],[64,1],[151,1],[152,1],[153,1],[154,1],[155,1],[176,1],[177,1],[178,1],[424,1],[425,1]]","exposed":"[[2,1],[206,1],[207,1],[208,1],[280,1],[281,1],[282,1],[283,1],[284,1],[300,1],[301,1],[302,1],[303,1],[205,1],[304,1],[345,1],[346,1],[347,1],[348,1],[352,1],[353,1],[354,1],[355,1],[356,1],[421,1],[422,1],[423,1],[344,1],[204,1],[180,1],[179,1],[3,1],[4,1],[5,1],[6,1],[24,1],[25,1],[26,1],[27,1],[28,1],[35,1],[36,1],[37,1],[38,1],[39,1],[60,1],[61,1],[62,1],[63,1],[64,1],[151,1],[152,1],[153,1],[154,1],[155,1],[176,1],[177,1],[178,1],[424,1],[425,1]]","events":"[[3,1002],[25,1002],[36,1002],[61,1002],[152,1002],[177,1002],[205,1002],[281,1002],[301,1002],[345,1002],[353,1002],[422,1002]]","fields":"[[425,1003],[356,1003],[348,1003],[304,1003],[39,1003],[284,1003],[64,1003],[208,1003],[155,1003],[180,1003],[6,1002],[28,1002],[420,1],[150,1],[279,1],[59,1],[299,1],[34,1],[343,1],[351,1],[22,1],[175,1],[203,1]]","constructor":"[[7,1002],[45,1002],[65,1002],[156,1002],[181,1002],[209,1002],[285,1002],[305,1002],[357,1002],[428,1002],[429,1002],[430,1002],[431,1002]]","sub":"[[7,1],[435,1],[433,1],[432,1],[430,1],[428,1],[357,1],[305,1],[285,1],[209,1],[181,1],[156,1],[65,1],[48,1],[46,1],[45,1],[10,1],[8,1],[436,1],[452,1]]","new":"[[7,1],[45,1],[65,1],[156,1],[181,1],[209,1],[285,1],[305,1],[357,1],[427,1],[428,1],[430,1]]","function":"[[235,2],[309,2],[308,2],[307,2],[306,2],[298,2],[297,2],[296,2],[295,2],[310,2],[294,2],[292,2],[291,2],[290,2],[289,2],[288,2],[287,2],[286,2],[278,2],[293,2],[277,2],[311,2],[313,2],[331,2],[330,2],[329,2],[328,2],[327,2],[326,2],[325,2],[324,2],[312,2],[323,2],[321,2],[320,2],[319,2],[318,2],[317,2],[316,2],[315,2],[314,2],[322,2],[276,2],[275,2],[274,2],[250,2],[249,2],[248,2],[247,2],[246,2],[245,2],[244,2],[243,2],[251,2],[242,2],[240,2],[239,2],[238,2],[237,2],[236,2],[453,2],[234,2],[233,2],[241,2],[252,2],[253,2],[254,2],[273,2],[272,2],[271,2],[270,2],[269,2],[268,2],[267,2],[266,2],[265,2],[264,2],[263,2],[262,2],[261,2],[260,2],[259,2],[258,2],[257,2],[256,2],[255,2],[332,2],[232,2],[333,2],[335,2],[412,2],[411,2],[410,2],[409,2],[408,2],[407,2],[406,2],[405,2],[413,2],[404,2],[402,2],[401,2],[400,2],[399,2],[398,2],[397,2],[396,2],[395,2],[403,2],[394,2],[414,2],[416,2],[451,2],[450,2],[449,2],[448,2],[447,2],[446,2],[445,2],[444,2],[415,2],[443,2],[441,2],[440,2],[439,2],[438,2],[437,2],[434,2],[418,2],[417,2],[442,2],[393,2],[392,2],[391,2],[367,2],[366,2],[365,2],[364,2],[363,2],[362,2],[361,2],[360,2],[368,2],[359,2],[350,2],[342,2],[341,2],[340,2],[339,2],[338,2],[337,2],[336,2],[358,2],[369,2],[370,2],[371,2],[390,2],[389,2],[388,2],[387,2],[386,2],[385,2],[384,2],[383,2],[382,2],[381,2],[380,2],[379,2],[378,2],[377,2],[376,2],[375,2],[374,2],[373,2],[372,2],[334,2],[231,2],[454,2],[229,2],[107,2],[106,2],[105,2],[104,2],[103,2],[102,2],[101,2],[100,2],[99,2],[98,2],[97,2],[96,2],[95,2],[94,2],[93,2],[92,2],[91,2],[108,2],[90,2],[109,2],[111,2],[128,2],[127,2],[126,2],[125,2],[124,2],[123,2],[122,2],[121,2],[230,2],[119,2],[118,2],[117,2],[116,2],[115,2],[114,2],[113,2],[112,2],[110,2],[129,2],[89,2],[87,2],[57,2],[54,2],[53,2],[52,2],[51,2],[50,2],[33,2],[32,2],[31,2],[30,2],[29,2],[17,2],[16,2],[15,2],[14,2],[13,2],[12,2],[66,2],[88,2],[67,2],[69,2],[86,2],[85,2],[84,2],[83,2],[82,2],[81,2],[80,2],[79,2],[78,2],[77,2],[76,2],[75,2],[74,2],[73,2],[72,2],[71,2],[70,2],[68,2],[130,2],[120,2],[132,2],[200,2],[199,2],[198,2],[197,2],[196,2],[195,2],[194,2],[193,2],[131,2],[191,2],[190,2],[189,2],[188,2],[187,2],[186,2],[185,2],[184,2],[201,2],[183,2],[202,2],[211,2],[228,2],[227,2],[226,2],[225,2],[224,2],[223,2],[222,2],[221,2],[220,2],[219,2],[218,2],[217,2],[216,2],[215,2],[214,2],[213,2],[212,2],[210,2],[182,2],[192,2],[174,2],[148,2],[147,2],[145,2],[144,2],[143,2],[142,2],[141,2],[140,2],[139,2],[138,2],[137,2],[136,2],[135,2],[134,2],[133,2],[149,2],[157,2],[146,2],[162,2],[165,2],[158,2],[168,2],[164,2],[169,2],[163,2],[167,2],[161,2],[166,2],[170,2],[171,2],[172,2],[173,2],[159,2],[160,2],[285,1],[18,1],[19,1],[10,1],[20,1],[21,1],[8,1],[452,1],[305,1],[433,1],[435,1],[209,1],[156,1],[65,1],[58,1],[357,1],[56,1],[436,1],[55,1],[48,1],[46,1],[45,1],[428,1],[430,1],[432,1],[181,1],[7,1]]","method":"[[8,1002],[362,1002],[361,1002],[360,1002],[359,1002],[358,1002],[350,1002],[310,1002],[309,1002],[308,1002],[307,1002],[306,1002],[290,1002],[289,1002],[288,1002],[287,1002],[286,1002],[214,1002],[432,1002],[213,1002],[433,1002],[435,1002],[452,1002],[451,1002],[450,1002],[449,1002],[448,1002],[447,1002],[446,1002],[445,1002],[444,1002],[443,1002],[442,1002],[441,1002],[440,1002],[439,1002],[438,1002],[437,1002],[436,1002],[434,1002],[453,1002],[212,1002],[210,1002],[48,1002],[47,1002],[46,1002],[33,1002],[32,1002],[31,1002],[30,1002],[29,1002],[17,1002],[16,1002],[15,1002],[14,1002],[13,1002],[12,1002],[11,1002],[10,1002],[9,1002],[49,1002],[211,1002],[50,1002],[52,1002],[186,1002],[185,1002],[184,1002],[183,1002],[182,1002],[161,1002],[160,1002],[159,1002],[158,1002],[157,1002],[70,1002],[69,1002],[68,1002],[67,1002],[66,1002],[54,1002],[53,1002],[51,1002],[454,1002]]","_":"[[452,5],[446,5],[445,5],[434,5],[440,4],[454,3],[449,3],[448,3],[444,3],[443,3],[432,3],[451,2],[450,2],[447,2],[442,2],[441,2],[438,2],[453,2],[437,2],[435,2],[428,2],[350,2],[48,2],[17,2],[16,2],[15,2],[13,2],[10,2],[439,2],[46,1],[34,1],[8,1]]","void":"[[8,2],[435,2],[433,2],[432,2],[436,2],[452,2],[10,2],[46,2],[48,2],[57,1],[314,1],[313,1],[312,1],[311,1],[298,1],[297,1],[295,1],[315,1],[294,1],[293,1],[292,1],[291,1],[296,1],[316,1],[318,1],[278,1],[319,1],[320,1],[321,1],[322,1],[323,1],[324,1],[325,1],[326,1],[327,1],[328,1],[329,1],[330,1],[331,1],[317,1],[277,1],[275,1],[332,1],[245,1],[246,1],[247,1],[248,1],[249,1],[250,1],[251,1],[252,1],[253,1],[254,1],[255,1],[256,1],[257,1],[258,1],[276,1],[259,1],[261,1],[262,1],[263,1],[264,1],[265,1],[266,1],[267,1],[268,1],[269,1],[270,1],[271,1],[272,1],[273,1],[274,1],[260,1],[333,1],[334,1],[335,1],[390,1],[391,1],[392,1],[393,1],[394,1],[395,1],[396,1],[397,1],[398,1],[399,1],[400,1],[401,1],[402,1],[403,1],[389,1],[404,1],[406,1],[407,1],[408,1],[409,1],[410,1],[411,1],[412,1],[413,1],[414,1],[415,1],[416,1],[417,1],[418,1],[21,1],[405,1],[244,1],[388,1],[386,1],[336,1],[337,1],[338,1],[339,1],[340,1],[341,1],[342,1],[363,1],[364,1],[365,1],[366,1],[367,1],[368,1],[369,1],[387,1],[370,1],[372,1],[373,1],[374,1],[375,1],[376,1],[377,1],[378,1],[379,1],[380,1],[381,1],[382,1],[383,1],[384,1],[385,1],[371,1],[243,1],[242,1],[241,1],[105,1],[106,1],[107,1],[108,1],[109,1],[110,1],[111,1],[112,1],[113,1],[114,1],[115,1],[116,1],[117,1],[118,1],[104,1],[119,1],[121,1],[122,1],[123,1],[124,1],[125,1],[126,1],[127,1],[128,1],[129,1],[130,1],[131,1],[132,1],[133,1],[134,1],[120,1],[135,1],[103,1],[101,1],[71,1],[72,1],[73,1],[74,1],[75,1],[76,1],[77,1],[78,1],[79,1],[80,1],[81,1],[82,1],[83,1],[84,1],[102,1],[85,1],[87,1],[88,1],[89,1],[90,1],[91,1],[92,1],[93,1],[94,1],[95,1],[96,1],[97,1],[98,1],[99,1],[100,1],[86,1],[136,1],[137,1],[138,1],[198,1],[199,1],[200,1],[201,1],[202,1],[215,1],[216,1],[217,1],[218,1],[219,1],[220,1],[221,1],[222,1],[223,1],[197,1],[224,1],[226,1],[227,1],[228,1],[229,1],[230,1],[231,1],[232,1],[233,1],[234,1],[235,1],[236,1],[237,1],[238,1],[240,1],[225,1],[196,1],[195,1],[194,1],[139,1],[140,1],[141,1],[142,1],[143,1],[144,1],[145,1],[146,1],[147,1],[148,1],[149,1],[162,1],[163,1],[164,1],[165,1],[166,1],[167,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[55,1],[187,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[174,1],[239,1]]","implementsidisposable":"[[8,1],[46,1]]","overload":"[[9,1],[11,1],[47,1],[49,1],[429,1],[431,1]]","boolean":"[[10,1004],[48,1004],[434,4],[17,4],[184,2],[210,2],[211,2],[212,2],[286,2],[287,2],[288,2],[306,2],[307,2],[308,2],[358,2],[359,2],[360,2],[444,2],[445,2],[183,2],[182,2],[158,2],[446,2],[12,2],[13,2],[14,2],[15,2],[16,2],[19,2],[29,2],[30,2],[31,2],[43,2],[50,2],[51,2],[52,2],[66,2],[67,2],[68,2],[157,2],[159,2],[448,2]]","protected":"[[10,4],[40,4],[41,4],[42,4],[43,4],[44,4],[48,4]]","overridable":"[[10,1],[48,1],[50,1],[51,1],[52,1],[53,1],[54,1]]","byval":"[[452,4],[446,4],[445,4],[434,4],[440,3],[449,2],[448,2],[444,2],[443,2],[454,2],[432,2],[435,1],[13,1],[451,1],[450,1],[15,1],[16,1],[447,1],[17,1],[48,1],[428,1],[442,1],[441,1],[453,1],[439,1],[438,1],[437,1],[350,1],[10,1]]","bisdisposing":"[[10,5],[48,5]]","as":"[[434,5],[446,5],[445,5],[452,4],[440,4],[454,3],[449,3],[448,3],[444,3],[443,3],[350,2],[432,2],[453,2],[438,2],[439,2],[441,2],[437,2],[447,2],[450,2],[17,2],[16,2],[15,2],[451,2],[13,2],[442,2],[308,1],[307,1],[306,1],[298,1],[297,1],[296,1],[295,1],[292,1],[293,1],[291,1],[290,1],[289,1],[288,1],[287,1],[309,1],[294,1],[310,1],[322,1],[312,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[286,1],[311,1],[321,1],[319,1],[318,1],[317,1],[316,1],[315,1],[314,1],[313,1],[320,1],[278,1],[266,1],[276,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[256,1],[248,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[247,1],[277,1],[257,1],[259,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[258,1],[268,1],[329,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[267,1],[330,1],[342,1],[332,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[403,1],[395,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[394,1],[386,1],[404,1],[406,1],[435,1],[428,1],[427,1],[426,1],[418,1],[417,1],[416,1],[405,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[414,1],[331,1],[385,1],[383,1],[362,1],[361,1],[360,1],[359,1],[358,1],[349,1],[239,1],[363,1],[341,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[340,1],[384,1],[364,1],[366,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[365,1],[375,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[374,1],[238,1],[235,1],[236,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[103,1],[94,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[93,1],[84,1],[104,1],[106,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[105,1],[116,1],[114,1],[113,1],[112,1],[111,1],[110,1],[109,1],[108,1],[107,1],[115,1],[83,1],[82,1],[81,1],[50,1],[48,1],[44,1],[43,1],[42,1],[41,1],[40,1],[33,1],[51,1],[32,1],[30,1],[29,1],[21,1],[20,1],[19,1],[18,1],[14,1],[12,1],[31,1],[52,1],[53,1],[54,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[58,1],[57,1],[56,1],[55,1],[125,1],[237,1],[126,1],[128,1],[212,1],[211,1],[210,1],[202,1],[201,1],[200,1],[199,1],[198,1],[213,1],[197,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[196,1],[187,1],[214,1],[216,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[215,1],[226,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[225,1],[186,1],[185,1],[184,1],[146,1],[145,1],[144,1],[143,1],[142,1],[141,1],[140,1],[139,1],[147,1],[138,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[137,1],[148,1],[149,1],[157,1],[183,1],[182,1],[174,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[127,1],[10,1]]","virtual":"[[10,2],[48,2],[50,2],[51,2],[52,2],[53,2],[54,2]]","parameters":"[[10,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[453,1],[440,1],[438,1],[437,1],[435,1],[434,1],[432,1],[428,1],[350,1],[48,1],[17,1],[16,1],[15,1],[13,1],[439,1],[454,1]]","return":"[[12,1],[287,1],[288,1],[289,1],[290,1],[306,1],[307,1],[308,1],[309,1],[310,1],[350,1],[358,1],[359,1],[360,1],[361,1],[362,1],[434,1],[437,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[286,1],[445,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[444,1],[214,1],[213,1],[212,1],[53,1],[52,1],[51,1],[50,1],[33,1],[32,1],[54,1],[31,1],[29,1],[17,1],[16,1],[15,1],[14,1],[13,1],[30,1],[453,1],[66,1],[68,1],[211,1],[210,1],[186,1],[185,1],[184,1],[183,1],[67,1],[182,1],[160,1],[159,1],[158,1],[157,1],[70,1],[69,1],[161,1],[454,1]]","value":"[[432,5],[452,5],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[248,3],[247,3],[246,3],[245,3],[244,3],[243,3],[242,3],[241,3],[255,3],[235,3],[256,3],[257,3],[272,3],[271,3],[270,3],[269,3],[268,3],[267,3],[266,3],[265,3],[264,3],[263,3],[262,3],[261,3],[260,3],[259,3],[258,3],[240,3],[239,3],[238,3],[237,3],[218,3],[217,3],[216,3],[215,3],[393,3],[394,3],[219,3],[395,3],[397,3],[202,3],[201,3],[200,3],[199,3],[198,3],[396,3],[273,3],[220,3],[222,3],[236,3],[392,3],[234,3],[233,3],[232,3],[231,3],[221,3],[230,3],[228,3],[227,3],[226,3],[225,3],[224,3],[223,3],[229,3],[274,3],[276,3],[197,3],[341,3],[340,3],[339,3],[338,3],[337,3],[336,3],[342,3],[335,3],[333,3],[332,3],[331,3],[330,3],[329,3],[328,3],[334,3],[327,3],[381,3],[379,3],[372,3],[371,3],[370,3],[369,3],[368,3],[367,3],[380,3],[366,3],[364,3],[363,3],[375,3],[376,3],[377,3],[378,3],[365,3],[326,3],[325,3],[324,3],[297,3],[296,3],[295,3],[294,3],[293,3],[292,3],[298,3],[291,3],[388,3],[389,3],[390,3],[391,3],[278,3],[277,3],[387,3],[386,3],[385,3],[384,3],[323,3],[322,3],[321,3],[320,3],[319,3],[318,3],[317,3],[316,3],[315,3],[314,3],[313,3],[312,3],[311,3],[382,3],[383,3],[275,3],[196,3],[195,3],[194,3],[89,3],[90,3],[91,3],[92,3],[93,3],[94,3],[95,3],[96,3],[97,3],[98,3],[99,3],[100,3],[101,3],[102,3],[103,3],[104,3],[105,3],[106,3],[107,3],[108,3],[373,3],[110,3],[111,3],[112,3],[113,3],[114,3],[115,3],[88,3],[87,3],[86,3],[85,3],[21,3],[418,3],[417,3],[416,3],[415,3],[55,3],[414,3],[57,3],[413,3],[412,3],[411,3],[410,3],[409,3],[116,3],[408,3],[72,3],[73,3],[74,3],[75,3],[76,3],[77,3],[78,3],[79,3],[80,3],[81,3],[82,3],[83,3],[84,3],[71,3],[117,3],[109,3],[119,3],[405,3],[404,3],[403,3],[162,3],[163,3],[164,3],[165,3],[118,3],[167,3],[168,3],[169,3],[170,3],[171,3],[406,3],[172,3],[174,3],[402,3],[401,3],[400,3],[399,3],[398,3],[187,3],[188,3],[189,3],[190,3],[191,3],[192,3],[193,3],[173,3],[407,3],[166,3],[148,3],[120,3],[121,3],[122,3],[123,3],[149,3],[125,3],[126,3],[127,3],[128,3],[129,3],[130,3],[131,3],[132,3],[133,3],[124,3],[135,3],[147,3],[134,3],[146,3],[145,3],[144,3],[143,3],[374,3],[141,3],[140,3],[139,3],[138,3],[137,3],[142,3],[136,3],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[442,1],[443,1],[441,1],[440,1],[439,1],[437,1],[434,1],[427,1],[426,1],[444,1],[438,1],[12,1],[361,1],[68,1],[67,1],[66,1],[58,1],[56,1],[54,1],[53,1],[52,1],[51,1],[50,1],[44,1],[43,1],[42,1],[41,1],[40,1],[33,1],[32,1],[31,1],[30,1],[29,1],[22,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[69,1],[362,1],[70,1],[158,1],[360,1],[359,1],[358,1],[350,1],[349,1],[310,1],[309,1],[308,1],[307,1],[306,1],[290,1],[289,1],[288,1],[287,1],[286,1],[453,1],[214,1],[213,1],[212,1],[211,1],[210,1],[186,1],[185,1],[184,1],[183,1],[182,1],[161,1],[160,1],[159,1],[157,1],[454,1]]","stransactionname":"[[13,5]]","stransactiontorollback":"[[15,5]]","ssavepointname":"[[16,5]]","bcommitpendingtransaction":"[[17,5]]","property":"[[18,1005],[274,1005],[275,1005],[276,1005],[277,1005],[278,1005],[291,1005],[292,1005],[293,1005],[294,1005],[295,1005],[296,1005],[297,1005],[298,1005],[311,1005],[273,1005],[312,1005],[314,1005],[315,1005],[316,1005],[317,1005],[318,1005],[319,1005],[320,1005],[321,1005],[322,1005],[323,1005],[324,1005],[325,1005],[326,1005],[327,1005],[313,1005],[272,1005],[271,1005],[270,1005],[239,1005],[240,1005],[241,1005],[242,1005],[243,1005],[244,1005],[245,1005],[246,1005],[247,1005],[248,1005],[249,1005],[250,1005],[251,1005],[252,1005],[253,1005],[254,1005],[255,1005],[269,1005],[268,1005],[267,1005],[266,1005],[265,1005],[264,1005],[328,1005],[263,1005],[261,1005],[260,1005],[259,1005],[258,1005],[257,1005],[256,1005],[262,1005],[238,1005],[329,1005],[331,1005],[387,1005],[388,1005],[389,1005],[390,1005],[391,1005],[392,1005],[393,1005],[394,1005],[395,1005],[396,1005],[397,1005],[398,1005],[399,1005],[400,1005],[386,1005],[401,1005],[403,1005],[404,1005],[405,1005],[406,1005],[407,1005],[408,1005],[409,1005],[410,1005],[411,1005],[412,1005],[413,1005],[414,1005],[415,1005],[416,1005],[402,1005],[385,1005],[384,1005],[383,1005],[332,1005],[333,1005],[334,1005],[335,1005],[336,1005],[337,1005],[338,1005],[339,1005],[340,1005],[341,1005],[342,1005],[363,1005],[364,1005],[365,1005],[366,1005],[367,1005],[368,1005],[382,1005],[381,1005],[380,1005],[379,1005],[378,1005],[377,1005],[330,1005],[376,1005],[374,1005],[373,1005],[372,1005],[371,1005],[370,1005],[369,1005],[375,1005],[237,1005],[236,1005],[235,1005],[99,1005],[100,1005],[101,1005],[102,1005],[103,1005],[104,1005],[105,1005],[106,1005],[107,1005],[108,1005],[109,1005],[110,1005],[111,1005],[112,1005],[98,1005],[113,1005],[115,1005],[116,1005],[117,1005],[118,1005],[119,1005],[120,1005],[121,1005],[122,1005],[123,1005],[124,1005],[125,1005],[126,1005],[127,1005],[128,1005],[114,1005],[97,1005],[96,1005],[95,1005],[19,1005],[20,1005],[21,1005],[55,1005],[56,1005],[57,1005],[58,1005],[71,1005],[72,1005],[73,1005],[74,1005],[75,1005],[76,1005],[77,1005],[78,1005],[79,1005],[80,1005],[94,1005],[93,1005],[92,1005],[91,1005],[90,1005],[89,1005],[129,1005],[88,1005],[86,1005],[85,1005],[84,1005],[83,1005],[82,1005],[81,1005],[87,1005],[130,1005],[131,1005],[132,1005],[192,1005],[193,1005],[194,1005],[195,1005],[196,1005],[197,1005],[198,1005],[199,1005],[200,1005],[201,1005],[202,1005],[215,1005],[216,1005],[217,1005],[218,1005],[219,1005],[220,1005],[234,1005],[233,1005],[232,1005],[231,1005],[230,1005],[229,1005],[191,1005],[228,1005],[226,1005],[225,1005],[224,1005],[223,1005],[222,1005],[221,1005],[227,1005],[417,1005],[190,1005],[188,1005],[133,1005],[134,1005],[135,1005],[136,1005],[137,1005],[138,1005],[139,1005],[140,1005],[141,1005],[142,1005],[143,1005],[144,1005],[145,1005],[146,1005],[147,1005],[148,1005],[149,1005],[187,1005],[174,1005],[173,1005],[172,1005],[171,1005],[170,1005],[189,1005],[169,1005],[167,1005],[166,1005],[165,1005],[164,1005],[163,1005],[162,1005],[168,1005],[418,1005]]","readonly":"[[18,1],[19,1],[20,1],[56,1],[58,1]]","sqltransaction":"[[18,6]]","get":"[[18,3],[274,3],[275,3],[276,3],[277,3],[278,3],[291,3],[292,3],[293,3],[294,3],[295,3],[296,3],[297,3],[298,3],[311,3],[273,3],[312,3],[314,3],[315,3],[316,3],[317,3],[318,3],[319,3],[320,3],[321,3],[322,3],[323,3],[324,3],[325,3],[326,3],[327,3],[313,3],[328,3],[272,3],[270,3],[240,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[247,3],[248,3],[249,3],[250,3],[251,3],[252,3],[253,3],[271,3],[254,3],[256,3],[257,3],[258,3],[259,3],[260,3],[261,3],[262,3],[263,3],[264,3],[265,3],[266,3],[267,3],[268,3],[269,3],[255,3],[329,3],[330,3],[331,3],[387,3],[388,3],[389,3],[390,3],[391,3],[392,3],[393,3],[394,3],[395,3],[396,3],[397,3],[398,3],[399,3],[400,3],[386,3],[401,3],[403,3],[404,3],[405,3],[406,3],[407,3],[408,3],[409,3],[410,3],[411,3],[412,3],[413,3],[414,3],[415,3],[416,3],[402,3],[385,3],[384,3],[383,3],[332,3],[333,3],[334,3],[335,3],[336,3],[337,3],[338,3],[339,3],[340,3],[341,3],[342,3],[363,3],[364,3],[365,3],[366,3],[367,3],[368,3],[382,3],[381,3],[380,3],[379,3],[378,3],[377,3],[239,3],[376,3],[374,3],[373,3],[372,3],[371,3],[370,3],[369,3],[375,3],[238,3],[237,3],[236,3],[101,3],[102,3],[103,3],[104,3],[105,3],[106,3],[107,3],[108,3],[109,3],[110,3],[111,3],[112,3],[113,3],[114,3],[100,3],[115,3],[117,3],[118,3],[119,3],[120,3],[121,3],[122,3],[123,3],[124,3],[125,3],[126,3],[127,3],[128,3],[129,3],[130,3],[116,3],[99,3],[98,3],[97,3],[19,3],[20,3],[56,3],[57,3],[58,3],[71,3],[72,3],[73,3],[74,3],[75,3],[76,3],[77,3],[78,3],[79,3],[80,3],[81,3],[82,3],[96,3],[95,3],[94,3],[93,3],[92,3],[91,3],[131,3],[90,3],[88,3],[87,3],[86,3],[85,3],[84,3],[83,3],[89,3],[417,3],[132,3],[134,3],[194,3],[195,3],[196,3],[197,3],[198,3],[199,3],[200,3],[201,3],[202,3],[215,3],[216,3],[217,3],[218,3],[219,3],[193,3],[220,3],[222,3],[223,3],[224,3],[225,3],[226,3],[227,3],[228,3],[229,3],[230,3],[231,3],[232,3],[233,3],[234,3],[235,3],[221,3],[192,3],[191,3],[190,3],[135,3],[136,3],[137,3],[138,3],[139,3],[140,3],[141,3],[142,3],[143,3],[144,3],[145,3],[146,3],[147,3],[148,3],[149,3],[162,3],[163,3],[189,3],[188,3],[187,3],[174,3],[173,3],[172,3],[133,3],[171,3],[169,3],[168,3],[167,3],[166,3],[165,3],[164,3],[170,3],[418,3]]","sqlconnection":"[[20,6],[40,5]]","writeonly":"[[21,1],[55,1]]","set":"[[21,3],[275,3],[276,3],[277,3],[278,3],[291,3],[292,3],[293,3],[294,3],[295,3],[296,3],[297,3],[298,3],[311,3],[312,3],[274,3],[313,3],[315,3],[316,3],[317,3],[318,3],[319,3],[320,3],[321,3],[322,3],[323,3],[324,3],[325,3],[326,3],[327,3],[328,3],[314,3],[329,3],[273,3],[271,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[247,3],[248,3],[249,3],[250,3],[251,3],[252,3],[253,3],[254,3],[272,3],[255,3],[257,3],[258,3],[259,3],[260,3],[261,3],[262,3],[263,3],[264,3],[265,3],[266,3],[267,3],[268,3],[269,3],[270,3],[256,3],[240,3],[330,3],[332,3],[387,3],[388,3],[389,3],[390,3],[391,3],[392,3],[393,3],[394,3],[395,3],[396,3],[397,3],[398,3],[399,3],[400,3],[386,3],[401,3],[403,3],[404,3],[405,3],[406,3],[407,3],[408,3],[409,3],[410,3],[411,3],[412,3],[413,3],[414,3],[415,3],[416,3],[402,3],[331,3],[385,3],[383,3],[333,3],[334,3],[335,3],[336,3],[337,3],[338,3],[339,3],[340,3],[341,3],[342,3],[363,3],[364,3],[365,3],[366,3],[384,3],[367,3],[369,3],[370,3],[371,3],[372,3],[373,3],[374,3],[375,3],[376,3],[377,3],[378,3],[379,3],[380,3],[381,3],[382,3],[368,3],[417,3],[239,3],[237,3],[103,3],[104,3],[105,3],[106,3],[107,3],[108,3],[109,3],[110,3],[111,3],[112,3],[113,3],[114,3],[115,3],[116,3],[102,3],[117,3],[119,3],[120,3],[121,3],[122,3],[123,3],[124,3],[125,3],[126,3],[127,3],[128,3],[129,3],[130,3],[131,3],[132,3],[118,3],[133,3],[101,3],[99,3],[55,3],[57,3],[71,3],[72,3],[73,3],[74,3],[75,3],[76,3],[77,3],[78,3],[79,3],[80,3],[81,3],[82,3],[100,3],[83,3],[85,3],[86,3],[87,3],[88,3],[89,3],[90,3],[91,3],[92,3],[93,3],[94,3],[95,3],[96,3],[97,3],[98,3],[84,3],[238,3],[134,3],[136,3],[195,3],[196,3],[197,3],[198,3],[199,3],[200,3],[201,3],[202,3],[215,3],[216,3],[217,3],[218,3],[219,3],[220,3],[194,3],[221,3],[223,3],[224,3],[225,3],[226,3],[227,3],[228,3],[229,3],[230,3],[231,3],[232,3],[233,3],[234,3],[235,3],[236,3],[222,3],[135,3],[193,3],[191,3],[137,3],[138,3],[139,3],[140,3],[141,3],[142,3],[143,3],[144,3],[145,3],[146,3],[147,3],[148,3],[149,3],[162,3],[192,3],[163,3],[165,3],[166,3],[167,3],[168,3],[169,3],[170,3],[171,3],[172,3],[173,3],[174,3],[187,3],[188,3],[189,3],[190,3],[164,3],[418,3]]","enumeration":"[[22,1002]]","allok":"[[22,1]]","0":"[[22,1]]","interface":"[[23,1006],[24,1],[25,1],[26,1],[27,1],[28,1],[29,1],[30,1],[31,1],[32,1],[33,1]]","delete":"[[184,1006],[308,1006],[288,1006],[212,1006],[159,1006],[68,1006],[360,1006],[51,1006],[31,1006],[62,1],[351,1],[346,1],[343,1],[26,1],[302,1],[299,1],[282,1],[279,1],[34,1],[206,1],[203,1],[354,1],[178,1],[175,1],[37,1],[153,1],[150,1],[59,1],[23,1]]","insert":"[[182,1006],[306,1006],[286,1006],[210,1006],[157,1006],[66,1006],[358,1006],[50,1006],[29,1006],[62,1],[351,1],[346,1],[343,1],[26,1],[302,1],[299,1],[282,1],[279,1],[34,1],[206,1],[203,1],[354,1],[178,1],[175,1],[37,1],[153,1],[150,1],[59,1],[23,1]]","selectall":"[[186,1006],[310,1006],[290,1006],[214,1006],[161,1006],[70,1006],[362,1006],[54,1006],[33,1006],[62,1],[351,1],[346,1],[343,1],[26,1],[302,1],[299,1],[282,1],[279,1],[34,1],[206,1],[203,1],[354,1],[178,1],[175,1],[37,1],[153,1],[150,1],[59,1],[23,1]]","selectone":"[[185,1006],[309,1006],[289,1006],[213,1006],[160,1006],[69,1006],[361,1006],[53,1006],[32,1006],[62,1],[351,1],[346,1],[343,1],[26,1],[302,1],[299,1],[282,1],[279,1],[34,1],[206,1],[203,1],[354,1],[178,1],[175,1],[37,1],[153,1],[150,1],[59,1],[23,1]]","update":"[[183,1006],[307,1006],[287,1006],[211,1006],[158,1006],[67,1006],[359,1006],[52,1006],[30,1006],[62,1],[351,1],[346,1],[343,1],[26,1],[302,1],[299,1],[282,1],[279,1],[34,1],[206,1],[203,1],[354,1],[178,1],[175,1],[37,1],[153,1],[150,1],[59,1],[23,1]]","datatable":"[[434,10],[32,5],[449,5],[446,5],[445,5],[443,5],[441,5],[439,5],[362,5],[361,5],[310,5],[450,5],[290,5],[309,5],[214,5],[213,5],[186,5],[185,5],[161,5],[160,5],[70,5],[69,5],[54,5],[53,5],[33,5],[289,5],[451,5],[420,3],[423,3]]","mustinherit":"[[34,1]]","abstract":"[[34,3]]","cpmainconnectionprovider":"[[55,1006],[34,1],[347,1],[343,1],[303,1],[299,1],[283,1],[279,1],[207,1],[203,1],[179,1],[175,1],[154,1],[150,1],[63,1],[59,1],[38,1],[351,1],[355,1]]","ierrorcode":"[[56,1006],[34,1],[347,1],[343,1],[303,1],[299,1],[283,1],[279,1],[207,1],[203,1],[179,1],[175,1],[154,1],[150,1],[63,1],[59,1],[38,1],[351,1],[355,1]]","irowsaffected":"[[58,1006],[34,1],[347,1],[343,1],[303,1],[299,1],[283,1],[279,1],[207,1],[203,1],[179,1],[175,1],[154,1],[150,1],[63,1],[59,1],[38,1],[351,1],[355,1]]","m_bmainconnectioniscreatedlocal":"[[43,1006],[34,1],[348,1],[343,1],[304,1],[299,1],[284,1],[279,1],[208,1],[203,1],[180,1],[175,1],[155,1],[150,1],[64,1],[59,1],[39,1],[351,1],[356,1]]","m_cpmainconnectionprovider":"[[44,1006],[34,1],[348,1],[343,1],[304,1],[299,1],[284,1],[279,1],[208,1],[203,1],[180,1],[175,1],[155,1],[150,1],[64,1],[59,1],[39,1],[351,1],[356,1]]","m_ierrorcode":"[[42,1006],[34,1],[348,1],[343,1],[304,1],[299,1],[284,1],[279,1],[208,1],[203,1],[180,1],[175,1],[155,1],[150,1],[64,1],[59,1],[39,1],[351,1],[356,1]]","m_irowsaffected":"[[41,1006],[34,1],[348,1],[343,1],[304,1],[299,1],[284,1],[279,1],[208,1],[203,1],[180,1],[175,1],[155,1],[150,1],[64,1],[59,1],[39,1],[351,1],[356,1]]","m_scomainconnection":"[[40,1006],[34,1],[348,1],[343,1],[304,1],[299,1],[284,1],[279,1],[208,1],[203,1],[180,1],[175,1],[155,1],[150,1],[64,1],[59,1],[39,1],[351,1],[356,1]]","field":"[[40,1003],[41,1003],[42,1003],[43,1003],[44,1003],[349,1003],[426,1003],[427,1003]]","integer":"[[445,3],[446,3],[41,1],[58,1],[438,1],[441,1],[443,1],[449,1]]","int":"[[445,12],[446,12],[420,9],[423,9],[58,5],[41,4],[438,4],[441,4],[443,4],[449,4]]","sqlint32":"[[215,8],[254,8],[253,8],[252,8],[248,8],[247,8],[246,8],[245,8],[244,8],[243,8],[260,8],[242,8],[240,8],[239,8],[238,8],[237,8],[233,8],[232,8],[231,8],[230,8],[224,8],[241,8],[262,8],[264,8],[266,8],[414,8],[410,8],[409,8],[405,8],[404,8],[401,8],[370,8],[368,8],[337,8],[330,8],[326,8],[325,8],[323,8],[322,8],[321,8],[311,8],[298,8],[294,8],[293,8],[291,8],[267,8],[223,8],[222,8],[416,8],[202,8],[113,8],[112,8],[111,8],[110,8],[109,8],[106,8],[104,8],[102,8],[101,8],[115,8],[100,8],[90,8],[85,8],[81,8],[80,8],[78,8],[77,8],[74,8],[73,8],[72,8],[96,8],[415,8],[122,8],[125,8],[201,8],[197,8],[194,8],[191,8],[190,8],[189,8],[188,8],[187,8],[174,8],[124,8],[169,8],[162,8],[149,8],[146,8],[142,8],[131,8],[130,8],[129,8],[128,8],[127,8],[126,8],[164,8],[56,6],[42,5]]","inherits":"[[59,1],[150,1],[175,1],[203,1],[279,1],[299,1],[343,1],[351,1]]","extends":"[[59,1],[150,1],[175,1],[203,1],[279,1],[299,1],[343,1],[351,1]]","baktiv":"[[327,1007],[114,1007],[172,1007],[295,1007],[198,1007],[234,1007],[59,1],[303,1],[299,1],[283,1],[279,1],[203,1],[343,1],[179,1],[175,1],[154,1],[150,1],[63,1],[207,1],[347,1]]","bamsdokument":"[[108,1007],[249,1007],[59,1],[63,1],[203,1],[207,1]]","bauserstuebernahme":"[[89,1007],[63,1],[59,1]]","bausgangsarchiviert":"[[94,1007],[63,1],[59,1]]","bbedrretourniert":"[[141,1007],[63,1],[59,1]]","bbereit_zur_archivierung":"[[93,1007],[63,1],[59,1]]","bbl_scan":"[[147,1007],[63,1],[59,1]]","bbldossier":"[[148,1007],[63,1],[59,1]]","beingangsarchiviert":"[[98,1007],[63,1],[59,1]]","bfastatuswechsel":"[[138,1007],[63,1],[59,1]]","bfaverantwortlicherwechsel":"[[139,1007],[63,1],[59,1]]","bfapartnerwechsel":"[[137,1007],[63,1],[59,1]]","bgesperrt":"[[84,1007],[63,1],[59,1]]","bofficedokumentgeloescht":"[[143,1007],[63,1],[59,1]]","bunvollstaendig":"[[91,1007],[63,1],[59,1]]","bvertraulich":"[[118,1007],[63,1],[59,1]]","bzu_retournieren":"[[97,1007],[219,1007],[59,1],[63,1],[203,1],[207,1]]","bzustaendig_kube":"[[116,1007],[63,1],[59,1]]","daarchivierungsdatum":"[[120,1007],[63,1],[59,1]]","dadatum_ausgangsarchivierung":"[[95,1007],[63,1],[59,1]]","dadatum_eingangsarchivierung":"[[99,1007],[63,1],[59,1]]","daerinnerungam":"[[134,1007],[63,1],[59,1]]","daerstelltam":"[[79,1007],[63,1],[59,1]]","daerstellungsdatum":"[[119,1007],[63,1],[59,1]]","dagesperrtam":"[[86,1007],[63,1],[59,1]]","damutiertam":"[[82,1007],[63,1],[59,1]]","datermin":"[[121,1007],[63,1],[59,1]]","ianzeigestatus":"[[146,1007],[63,1],[59,1]]","iaufbewahrung_elektronisch":"[[128,1007],[63,1],[59,1]]","iaufbewahrung_phaysisch":"[[129,1007],[63,1],[59,1]]","ibrvernichtungnachtagen":"[[142,1007],[63,1],[59,1]]","ibarcodenr":"[[106,1007],[63,1],[59,1]]","ibck":"[[125,1007],[63,1],[59,1]]","ibearbeitung_nach_abschluss":"[[131,1007],[63,1],[59,1]]","ibearbeitungszeit_in_minuten":"[[126,1007],[63,1],[59,1]]","icoldstatus":"[[104,1007],[63,1],[59,1]]","idokdurchkubeweitergegeben":"[[124,1007],[63,1],[59,1]]","idokumenttypnr":"[[90,1007],[188,1007],[215,1007],[59,1],[63,1],[175,1],[179,1],[203,1],[207,1]]","iersteller":"[[77,1007],[63,1],[59,1]]","ierstellerteam":"[[78,1007],[63,1],[59,1]]","igesperrt_durch":"[[85,1007],[63,1],[59,1]]","iin_edoka_datenbank":"[[130,1007],[63,1],[59,1]]","ima_ausgangsarchivierung":"[[96,1007],[63,1],[59,1]]","ima_eingangsarchivierung":"[[100,1007],[63,1],[59,1]]","imitarbeiternr":"[[72,1007],[311,1007],[59,1],[63,1],[299,1],[303,1]]","imitarbeiternr1":"[[73,1007],[63,1],[59,1]]","imonierung_in_tagen":"[[127,1007],[63,1],[59,1]]","imutierer":"[[330,1007],[80,1007],[174,1007],[298,1007],[201,1007],[237,1007],[59,1],[303,1],[299,1],[283,1],[279,1],[203,1],[343,1],[179,1],[175,1],[154,1],[150,1],[63,1],[207,1],[347,1]]","imutiererteam":"[[122,1007],[63,1],[59,1]]","imutierertieam":"[[81,1007],[63,1],[59,1]]","inoedit":"[[149,1007],[63,1],[59,1]]","inrpar00":"[[74,1007],[368,1007],[59,1],[63,1],[351,1],[355,1]]","ipostzustellung":"[[113,1007],[63,1],[59,1]]","istatus_edoka_batch_ausgang":"[[101,1007],[63,1],[59,1]]","istatus_edoka_batch_eingang":"[[102,1007],[63,1],[59,1]]","istatusnr":"[[115,1007],[63,1],[59,1]]","iunterschriftlinks":"[[111,1007],[63,1],[59,1]]","iunterschriftrechts":"[[112,1007],[63,1],[59,1]]","iverantwortlich":"[[109,1007],[63,1],[59,1]]","izustaendiger":"[[110,1007],[63,1],[59,1]]","sanredezustelladresse":"[[123,1007],[63,1],[59,1]]","sbedrdokumentid":"[[140,1007],[63,1],[59,1]]","sbemerkung":"[[88,1007],[63,1],[59,1]]","sbemerkunguvm":"[[92,1007],[63,1],[59,1]]","sbezeichnung":"[[87,1007],[165,1007],[216,1007],[59,1],[63,1],[150,1],[154,1],[203,1],[207,1]]","scolddokumentid":"[[107,1007],[63,1],[59,1]]","scoldfolder":"[[132,1007],[63,1],[59,1]]","scoldschema":"[[133,1007],[63,1],[59,1]]","sdokumentid":"[[71,1007],[448,5],[59,1],[63,1]]","sdokumentidn":"[[75,1007],[63,1],[59,1]]","sdokumentname":"[[76,1007],[448,5],[59,1],[63,1]]","sfanummer1":"[[135,1007],[63,1],[59,1]]","sfanummer2":"[[136,1007],[63,1],[59,1]]","sfanummer3":"[[144,1007],[63,1],[59,1]]","sloeschgrund":"[[103,1007],[63,1],[59,1]]","sspeicherort":"[[83,1007],[63,1],[59,1]]","sversandadresse":"[[105,1007],[63,1],[59,1]]","svvnr":"[[145,1007],[63,1],[59,1]]","szustelladresse":"[[117,1007],[63,1],[59,1]]","overrides":"[[66,1],[214,1],[286,1],[287,1],[288,1],[289,1],[290,1],[213,1],[306,1],[308,1],[309,1],[310,1],[358,1],[359,1],[360,1],[307,1],[361,1],[212,1],[210,1],[67,1],[68,1],[69,1],[70,1],[157,1],[158,1],[211,1],[159,1],[161,1],[182,1],[183,1],[184,1],[185,1],[186,1],[160,1],[362,1]]","override":"[[66,1],[214,1],[286,1],[287,1],[288,1],[289,1],[290,1],[213,1],[306,1],[308,1],[309,1],[310,1],[358,1],[359,1],[360,1],[307,1],[361,1],[212,1],[210,1],[67,1],[68,1],[69,1],[70,1],[157,1],[158,1],[211,1],[159,1],[161,1],[182,1],[183,1],[184,1],[185,1],[186,1],[160,1],[362,1]]","sqlstring":"[[71,8],[381,8],[380,8],[379,8],[378,8],[377,8],[376,8],[375,8],[374,8],[373,8],[372,8],[371,8],[369,8],[367,8],[366,8],[365,8],[382,8],[383,8],[384,8],[385,8],[408,8],[407,8],[399,8],[398,8],[397,8],[396,8],[395,8],[364,8],[394,8],[392,8],[391,8],[390,8],[389,8],[388,8],[387,8],[386,8],[393,8],[363,8],[341,8],[335,8],[140,8],[136,8],[135,8],[133,8],[132,8],[123,8],[117,8],[144,8],[107,8],[103,8],[92,8],[88,8],[87,8],[83,8],[76,8],[75,8],[105,8],[411,8],[145,8],[165,8],[333,8],[320,8],[319,8],[318,8],[317,8],[316,8],[315,8],[163,8],[314,8],[312,8],[292,8],[278,8],[251,8],[217,8],[216,8],[166,8],[313,8],[418,8]]","sqldatetime":"[[79,8],[403,8],[342,8],[329,8],[328,8],[297,8],[296,8],[236,8],[235,8],[200,8],[199,8],[173,8],[134,8],[121,8],[120,8],[119,8],[99,8],[95,8],[86,8],[82,8],[406,8],[417,8]]","sqlboolean":"[[84,8],[271,8],[270,8],[269,8],[268,8],[265,8],[263,8],[272,8],[261,8],[258,8],[257,8],[256,8],[255,8],[250,8],[249,8],[259,8],[234,8],[273,8],[275,8],[402,8],[400,8],[340,8],[339,8],[338,8],[336,8],[274,8],[334,8],[331,8],[327,8],[324,8],[295,8],[277,8],[276,8],[332,8],[229,8],[228,8],[227,8],[141,8],[139,8],[138,8],[137,8],[118,8],[116,8],[143,8],[114,8],[98,8],[97,8],[94,8],[93,8],[91,8],[89,8],[108,8],[147,8],[148,8],[167,8],[226,8],[225,8],[221,8],[220,8],[219,8],[218,8],[198,8],[196,8],[195,8],[193,8],[192,8],[172,8],[171,8],[170,8],[168,8],[412,8],[413,8]]","bdokument_ausgangsarchivierung":"[[170,1007],[154,1],[150,1]]","bdokument_bearbeitung_abgeschlossen":"[[171,1007],[196,1007],[150,1],[154,1],[175,1],[179,1]]","bdokument_bearbeitung_moeglich":"[[168,1007],[154,1],[150,1]]","bfolgestatus_durch_anderen_verantwortlichen":"[[167,1007],[192,1007],[150,1],[154,1],[175,1],[179,1]]","daerstellt_am":"[[235,1007],[328,1007],[173,1007],[199,1007],[296,1007],[303,1],[299,1],[283,1],[279,1],[150,1],[207,1],[203,1],[179,1],[175,1],[154,1],[343,1],[347,1]]","idokument_statusnr":"[[162,1007],[154,1],[150,1]]","ierledigung_ab":"[[169,1007],[194,1007],[150,1],[154,1],[175,1],[179,1]]","istatus_bezeichnungnr":"[[164,1007],[190,1007],[150,1],[154,1],[175,1],[179,1]]","sdokumenitid":"[[163,1007],[154,1],[150,1]]","sreihenfolge":"[[166,1007],[154,1],[150,1]]","bdokument_ausgangsarchivieren":"[[195,1007],[179,1],[175,1]]","bdokumentbearbeitung_moeglich":"[[193,1007],[179,1],[175,1]]","damutiert_am":"[[200,1007],[236,1007],[297,1007],[329,1007],[175,1],[179,1],[203,1],[207,1],[279,1],[283,1],[299,1],[303,1],[343,1],[347,1]]","idokumentstatusnr":"[[187,1007],[179,1],[175,1]]","imandantnr":"[[197,1007],[233,1007],[294,1007],[326,1007],[175,1],[179,1],[203,1],[207,1],[279,1],[283,1],[299,1],[303,1],[343,1],[347,1]]","ireihenfolge":"[[191,1007],[179,1],[175,1]]","istatustyp":"[[202,1007],[179,1],[175,1]]","istatustypnr":"[[189,1007],[179,1],[175,1]]","banzeigezurdokumenterstellung":"[[268,1007],[207,1],[203,1]]","bbedingtretournierbar":"[[265,1007],[207,1],[203,1]]","bbezeichnungmut":"[[274,1007],[207,1],[203,1]]","bcold_ersetzen":"[[257,1007],[207,1],[203,1]]","bdokument_wird_erstellt":"[[255,1007],[207,1],[203,1]]","bdokument_wird_retourniert":"[[256,1007],[207,1],[203,1]]","beingang_ersetzt_ausgang":"[[220,1007],[207,1],[203,1]]","beldokimport":"[[277,1007],[207,1],[203,1]]","bemail_versand":"[[258,1007],[207,1],[203,1]]","bfunktionen_zuweisen":"[[259,1007],[207,1],[203,1]]","bhostdokument":"[[250,1007],[207,1],[203,1]]","bintern":"[[276,1007],[207,1],[203,1]]","bistfarbigarchiviert":"[[275,1007],[207,1],[203,1]]","bkundendokument":"[[269,1007],[207,1],[203,1]]","bnurnative":"[[261,1007],[207,1],[203,1]]","bpartnersaldierung_statusalt":"[[225,1007],[207,1],[203,1]]","bsb":"[[270,1007],[207,1],[203,1]]","bsbedituser":"[[272,1007],[207,1],[203,1]]","bsbimport":"[[271,1007],[207,1],[203,1]]","bsbnur":"[[273,1007],[207,1],[203,1]]","bunterschrift_links":"[[228,1007],[207,1],[203,1]]","bunterschrift_rechts":"[[229,1007],[207,1],[203,1]]","bvertrag":"[[263,1007],[207,1],[203,1]]","bvertrauliches_dokument":"[[227,1007],[207,1],[203,1]]","bwird_importiert":"[[221,1007],[207,1],[203,1]]","bwird_nicht_geloescht":"[[226,1007],[207,1],[203,1]]","bzu_vercolden":"[[218,1007],[207,1],[203,1]]","ianzahl_tage":"[[222,1007],[207,1],[203,1]]","iaufbewahrungsfrist_elektronisch":"[[231,1007],[207,1],[203,1]]","iaufbewahrungsfrist_physisch":"[[232,1007],[207,1],[203,1]]","icold_folder":"[[252,1007],[207,1],[203,1]]","idbearbeitungszeit":"[[223,1007],[207,1],[203,1]]","idoktypbedingteretournierung":"[[266,1007],[207,1],[203,1]]","idokumentart_coldausgang":"[[242,1007],[207,1],[203,1]]","idokumentart_coldeingang":"[[243,1007],[207,1],[203,1]]","idokumentart_host":"[[244,1007],[207,1],[203,1]]","idokumentart_kundendossier":"[[239,1007],[207,1],[203,1]]","idokumentart_nativ":"[[246,1007],[207,1],[203,1]]","idokumentart_neuerstellung":"[[240,1007],[207,1],[203,1]]","idokumentart_retournierung":"[[241,1007],[207,1],[203,1]]","idokumentart_weitere":"[[245,1007],[207,1],[203,1]]","idokumentstatus":"[[254,1007],[207,1],[203,1]]","idokumentstatus_barcode":"[[260,1007],[207,1],[203,1]]","imonate_bis_zur_archivierung":"[[230,1007],[207,1],[203,1]]","iobjektbezeichnungnr":"[[264,1007],[207,1],[203,1]]","ioffice_vorlagenr":"[[238,1007],[207,1],[203,1]]","iowner":"[[262,1007],[207,1],[203,1]]","iphysisches_archiv":"[[253,1007],[207,1],[203,1]]","iprozessnr":"[[247,1007],[207,1],[203,1]]","iprozessnr1":"[[248,1007],[207,1],[203,1]]","itage_mutation":"[[224,1007],[207,1],[203,1]]","itagebisvernichtungbedingteretournierung":"[[267,1007],[207,1],[203,1]]","sbeschreibung":"[[217,1007],[292,1007],[203,1],[207,1],[279,1],[283,1],[343,1],[347,1]]","sfachverantwortung":"[[278,1007],[207,1],[203,1]]","shostdokumenttyp":"[[251,1007],[207,1],[203,1]]","ikey_wert":"[[293,1007],[279,1],[283,1],[343,1],[347,1]]","ikeynr":"[[291,1007],[279,1],[283,1],[343,1],[347,1]]","bedokamesasge":"[[332,1007],[303,1],[299,1]]","bedoka_mail":"[[338,1007],[303,1],[299,1]]","bgebmeldung":"[[340,1007],[303,1],[299,1]]","bjournalisierung":"[[339,1007],[303,1],[299,1]]","bmaildirektversenden":"[[334,1007],[303,1],[299,1]]","bmaildokumentrueckgang":"[[336,1007],[303,1],[299,1]]","bmailempfang":"[[331,1007],[303,1],[299,1]]","bshowtip":"[[324,1007],[303,1],[299,1]]","davalidto":"[[342,1007],[403,1007],[299,1],[303,1],[351,1],[355,1]]","ifuermandant":"[[323,1007],[303,1],[299,1]]","ifunktionnr":"[[321,1007],[303,1],[299,1]]","iklassifizierung":"[[337,1007],[303,1],[299,1]]","ipartnernr":"[[325,1007],[303,1],[299,1]]","isprache":"[[322,1007],[303,1],[299,1]]","sanrede":"[[315,1007],[303,1],[299,1]]","semail":"[[317,1007],[303,1],[299,1]]","sfax":"[[318,1007],[303,1],[299,1]]","sfunktion":"[[333,1007],[303,1],[299,1]]","skurzzeichen":"[[314,1007],[303,1],[299,1]]","smail_1":"[[341,1007],[303,1],[299,1]]","sname":"[[313,1007],[303,1],[299,1]]","srang":"[[335,1007],[303,1],[299,1]]","stelefon":"[[319,1007],[303,1],[299,1]]","stgnummer":"[[316,1007],[303,1],[299,1]]","sunterschrift_text":"[[320,1007],[303,1],[299,1]]","svorname":"[[312,1007],[303,1],[299,1]]","get_dbkey":"[[350,1006],[437,1006],[343,1],[346,1],[420,1],[423,1]]","connectionstring":"[[349,1006],[426,1006],[428,5],[454,5],[343,1],[348,1],[420,1],[425,1]]","tablename":"[[350,5],[434,5],[437,5]]","bboersenkotiert":"[[413,1007],[355,1],[351,1]]","bcdvsa00":"[[402,1007],[355,1],[351,1]]","bisperson":"[[412,1007],[355,1],[351,1]]","bsaldiert":"[[400,1007],[355,1],[351,1]]","dagebgruenddat":"[[406,1007],[355,1],[351,1]]","darate_intl_date":"[[417,1007],[355,1],[351,1]]","iazepl00":"[[401,1007],[355,1],[351,1]]","ilegal_form_id":"[[414,1007],[355,1],[351,1]]","inrbeu01":"[[409,1007],[355,1],[351,1]]","inrbeu02":"[[410,1007],[355,1],[351,1]]","inrdom00":"[[404,1007],[355,1],[351,1]]","inrfog012":"[[370,1007],[355,1],[351,1]]","inrnat01":"[[405,1007],[355,1],[351,1]]","irate_intl_id":"[[416,1007],[355,1],[351,1]]","isector_id":"[[415,1007],[355,1],[351,1]]","sbeban011":"[[384,1007],[355,1],[351,1]]","sbeban012":"[[371,1007],[355,1],[351,1]]","sbeban022":"[[373,1007],[355,1],[351,1]]","sbeban21":"[[386,1007],[355,1],[351,1]]","sbepgm00":"[[366,1007],[355,1],[351,1]]","sbkpar00":"[[369,1007],[355,1],[351,1]]","scdbal00":"[[394,1007],[355,1],[351,1]]","scdbnk00":"[[367,1007],[355,1],[351,1]]","scdnog01":"[[407,1007],[355,1],[351,1]]","scdpaw00":"[[408,1007],[355,1],[351,1]]","scdvig00":"[[395,1007],[355,1],[351,1]]","sdmmsg00":"[[364,1007],[355,1],[351,1]]","sidmsg00":"[[363,1007],[355,1],[351,1]]","skurzname_stamm":"[[411,1007],[355,1],[351,1]]","snradr00":"[[382,1007],[355,1],[351,1]]","snrfog011":"[[383,1007],[355,1],[351,1]]","snrfog022":"[[372,1007],[355,1],[351,1]]","snrfog21":"[[385,1007],[355,1],[351,1]]","snrparad":"[[381,1007],[355,1],[351,1]]","sname_formated":"[[418,1007],[355,1],[351,1]]","ssavrs00":"[[396,1007],[355,1],[351,1]]","stsmut00":"[[397,1007],[355,1],[351,1]]","stxadz011":"[[387,1007],[355,1],[351,1]]","stxadz012":"[[374,1007],[355,1],[351,1]]","stxadz021":"[[388,1007],[355,1],[351,1]]","stxadz022":"[[375,1007],[355,1],[351,1]]","stxadz031":"[[389,1007],[355,1],[351,1]]","stxadz032":"[[376,1007],[355,1],[351,1]]","stxadz041":"[[390,1007],[355,1],[351,1]]","stxadz042":"[[377,1007],[355,1],[351,1]]","stxadz051":"[[391,1007],[355,1],[351,1]]","stxadz052":"[[378,1007],[355,1],[351,1]]","stxadz061":"[[392,1007],[355,1],[351,1]]","stxadz062":"[[379,1007],[355,1],[351,1]]","stxadz071":"[[393,1007],[355,1],[351,1]]","stxadz072":"[[380,1007],[355,1],[351,1]]","stxres00":"[[399,1007],[355,1],[351,1]]","svdmuter":"[[398,1007],[355,1],[351,1]]","sztmsg00":"[[365,1007],[355,1],[351,1]]","edoka_db":"[[420,1009],[428,1006],[430,1006],[429,1005],[431,1005],[421,1004],[422,1004],[423,1004],[424,1004],[425,1004],[444,1003],[445,1003],[446,1003],[447,1003],[448,1003],[436,1003],[450,1003],[443,1003],[451,1003],[452,1003],[449,1003],[442,1003],[454,1003],[440,1003],[439,1003],[438,1003],[437,1003],[453,1003],[435,1003],[434,1003],[433,1003],[432,1003],[441,1003],[427,1],[426,1],[419,1]]","buildallfieldssql":"[[450,1006],[423,1],[420,1]]","buildinsertsql":"[[451,1006],[423,1],[420,1]]","cold_index_sichern":"[[443,1006],[423,1],[420,1]]","createinsertcommand":"[[453,1006],[423,1],[420,1]]","datarow":"[[453,5],[454,5],[420,2],[423,2]]","create_edoka_doc":"[[442,1006],[423,1],[420,1]]","clsdocdata":"[[442,5],[423,1],[420,1]]","exec_sql":"[[435,1006],[423,1],[420,1]]","getdocumentasbase64":"[[447,1006],[423,1],[420,1]]","get_applicationtype_from_vorlage":"[[441,1006],[423,1],[420,1]]","get_dokumentwertlist":"[[449,1006],[423,1],[420,1]]","get_dokumente":"[[446,1006],[423,1],[420,1]]","get_mitarbeiternr":"[[438,1006],[423,1],[420,1]]","get_partnerstruktur":"[[445,1006],[423,1],[420,1]]","get_tabledata":"[[434,1006],[423,1],[420,1]]","params":"[[420,1],[423,1],[434,1]]","get_vorlage_by_dokumentid":"[[439,1006],[423,1],[420,1]]","insertdatarow":"[[454,1006],[423,1],[420,1]]","insertparameter":"[[452,1006],[423,1],[420,1]]","sqlcommand":"[[452,5],[453,5],[420,1],[423,1]]","save_to_db":"[[448,1006],[423,1],[420,1]]","status_erstellen":"[[444,1006],[423,1],[420,1]]","update_data":"[[436,1006],[423,1],[420,1]]","add_parameter":"[[432,1006],[423,1],[420,1]]","clear_parameter":"[[433,1006],[423,1],[420,1]]","get_vorlage_to_file":"[[440,1006],[423,1],[420,1]]","dsdaten":"[[427,1006],[425,1],[420,1]]","shadows":"[[427,1]]","dataset":"[[427,5]]","optional":"[[434,2],[446,1]]","storedproc":"[[434,5]]","false":"[[434,4],[446,2]]","is_sql_string":"[[434,5]]","paramarray":"[[434,1]]","sp_params":"[[434,5]]","array":"[[434,1]]","sql":"[[435,5]]","mitarbeiter":"[[438,5]]","dokumentid":"[[439,5],[440,5],[443,5],[444,5],[447,5],[449,5]]","nr":"[[440,5]]","tempdir":"[[440,5]]","vorlagenr":"[[441,5]]","docdata":"[[442,5]]","indextyp":"[[443,5]]","blsequenz":"[[444,5]]","partnernr":"[[445,5],[446,5]]","partnerlist":"[[445,5]]","mitarbeiternr":"[[445,5]]","profilnr":"[[445,5],[446,5]]","dokumentartnr":"[[446,5]]","alledokumente":"[[446,5]]","clsdok":"[[447,5]]","dokumenttypnr":"[[449,5]]","table":"[[450,5],[451,5]]","command":"[[452,5]]","parametername":"[[452,5]]","sourcecolumn":"[[452,5]]","row":"[[453,5],[454,5]]","namespaces":"[[455,1]]"}; \ No newline at end of file + var nurls = 458; + var index = {"default":"[[0,1002]]","page":"[[0,1002]]","go":"[[0,1]]","to":"[[0,1],[315,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[316,1],[301,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[300,1],[290,1],[317,1],[319,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[318,1],[330,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[329,1],[289,1],[288,1],[287,1],[256,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[257,1],[247,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[246,1],[258,1],[259,1],[260,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[340,1],[341,1],[342,1],[343,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[428,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[412,1],[429,1],[430,1],[432,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[402,1],[236,1],[401,1],[399,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[374,1],[364,1],[362,1],[361,1],[360,1],[359,1],[353,1],[352,1],[351,1],[345,1],[344,1],[363,1],[375,1],[376,1],[377,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[400,1],[455,1],[235,1],[233,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[96,1],[86,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[85,1],[75,1],[97,1],[99,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[98,1],[110,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[109,1],[74,1],[73,1],[72,1],[34,1],[33,1],[32,1],[31,1],[25,1],[23,1],[22,1],[21,1],[20,1],[35,1],[19,1],[17,1],[16,1],[15,1],[14,1],[12,1],[10,1],[9,1],[3,1],[2,1],[18,1],[36,1],[42,1],[43,1],[71,1],[70,1],[69,1],[68,1],[67,1],[61,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[50,1],[48,1],[47,1],[46,1],[45,1],[44,1],[120,1],[121,1],[122,1],[123,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[203,1],[193,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[192,1],[204,1],[205,1],[211,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[177,1],[234,1],[176,1],[174,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[144,1],[134,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[133,1],[145,1],[146,1],[147,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[152,1],[151,1],[150,1],[149,1],[148,1],[175,1],[456,1]]","search":"[[1,1004],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[312,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[299,1],[313,1],[314,1],[315,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[287,1],[341,1],[286,1],[284,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[255,1],[243,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[242,1],[256,1],[257,1],[258,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[285,1],[342,1],[343,1],[344,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[401,1],[400,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[370,1],[230,1],[371,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[372,1],[456,1],[229,1],[227,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[83,1],[71,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[70,1],[84,1],[85,1],[86,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[58,1],[112,1],[57,1],[55,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[26,1],[14,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[13,1],[27,1],[28,1],[29,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[56,1],[113,1],[114,1],[115,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[198,1],[186,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[185,1],[199,1],[200,1],[201,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[173,1],[172,1],[171,1],[170,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[141,1],[228,1],[142,1],[144,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[143,1],[457,1]]","logo":"[[1,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[312,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[299,1],[313,1],[314,1],[315,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[287,1],[341,1],[286,1],[284,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[255,1],[243,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[242,1],[256,1],[257,1],[258,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[285,1],[342,1],[343,1],[344,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[401,1],[400,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[370,1],[230,1],[371,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[372,1],[456,1],[229,1],[227,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[83,1],[71,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[70,1],[84,1],[85,1],[86,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[58,1],[112,1],[57,1],[55,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[26,1],[14,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[13,1],[27,1],[28,1],[29,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[56,1],[113,1],[114,1],[115,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[198,1],[186,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[185,1],[199,1],[200,1],[201,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[173,1],[172,1],[171,1],[170,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[141,1],[228,1],[142,1],[144,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[143,1],[457,1]]","document":"[[1,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[312,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[299,1],[313,1],[314,1],[315,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[287,1],[341,1],[286,1],[284,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[255,1],[243,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[242,1],[256,1],[257,1],[258,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[285,1],[342,1],[343,1],[344,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[401,1],[400,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[370,1],[230,1],[371,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[372,1],[456,1],[229,1],[227,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[83,1],[71,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[70,1],[84,1],[85,1],[86,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[58,1],[112,1],[57,1],[55,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[26,1],[14,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[13,1],[27,1],[28,1],[29,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[56,1],[113,1],[114,1],[115,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[198,1],[186,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[185,1],[199,1],[200,1],[201,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[173,1],[172,1],[171,1],[170,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[141,1],[228,1],[142,1],[144,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[143,1],[457,1]]","write":"[[1,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[312,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[299,1],[313,1],[314,1],[315,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[287,1],[341,1],[286,1],[284,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[255,1],[243,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[242,1],[256,1],[257,1],[258,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[285,1],[342,1],[343,1],[344,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[401,1],[400,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[370,1],[230,1],[371,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[372,1],[456,1],[229,1],[227,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[83,1],[71,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[70,1],[84,1],[85,1],[86,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[58,1],[112,1],[57,1],[55,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[26,1],[14,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[13,1],[27,1],[28,1],[29,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[56,1],[113,1],[114,1],[115,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[198,1],[186,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[185,1],[199,1],[200,1],[201,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[173,1],[172,1],[171,1],[170,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[141,1],[228,1],[142,1],[144,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[143,1],[457,1]]","getcsscustomproperty":"[[1,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[312,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[299,1],[313,1],[314,1],[315,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[287,1],[341,1],[286,1],[284,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[255,1],[243,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[242,1],[256,1],[257,1],[258,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[285,1],[342,1],[343,1],[344,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[401,1],[400,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[370,1],[230,1],[371,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[372,1],[456,1],[229,1],[227,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[83,1],[71,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[70,1],[84,1],[85,1],[86,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[58,1],[112,1],[57,1],[55,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[26,1],[14,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[13,1],[27,1],[28,1],[29,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[56,1],[113,1],[114,1],[115,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[198,1],[186,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[185,1],[199,1],[200,1],[201,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[173,1],[172,1],[171,1],[170,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[141,1],[228,1],[142,1],[144,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[143,1],[457,1]]","headertopcustomlinehtml":"[[1,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[312,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[299,1],[313,1],[314,1],[315,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[287,1],[341,1],[286,1],[284,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[255,1],[243,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[242,1],[256,1],[257,1],[258,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[285,1],[342,1],[343,1],[344,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[401,1],[400,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[370,1],[230,1],[371,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[372,1],[456,1],[229,1],[227,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[83,1],[71,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[70,1],[84,1],[85,1],[86,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[58,1],[112,1],[57,1],[55,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[26,1],[14,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[13,1],[27,1],[28,1],[29,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[56,1],[113,1],[114,1],[115,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[198,1],[186,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[185,1],[199,1],[200,1],[201,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[173,1],[172,1],[171,1],[170,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[141,1],[228,1],[142,1],[144,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[143,1],[457,1]]","edoka_database":"[[1,1]]","reference":"[[457,1003],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[312,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[299,1],[313,1],[314,1],[315,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[287,1],[341,1],[286,1],[284,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[255,1],[243,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[242,1],[256,1],[257,1],[258,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[285,1],[342,1],[343,1],[344,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[401,1],[400,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[370,1],[230,1],[371,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[372,1],[456,1],[229,1],[227,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[83,1],[71,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[70,1],[84,1],[85,1],[86,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[58,1],[112,1],[57,1],[55,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[26,1],[14,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[13,1],[27,1],[28,1],[29,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[56,1],[113,1],[114,1],[115,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[198,1],[186,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[185,1],[199,1],[200,1],[201,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[173,1],[172,1],[171,1],[170,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[141,1],[228,1],[142,1],[144,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[143,1],[1,1]]","cancel":"[[1,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[312,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[299,1],[313,1],[314,1],[315,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[287,1],[341,1],[286,1],[284,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[255,1],[243,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[242,1],[256,1],[257,1],[258,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[285,1],[342,1],[343,1],[344,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[401,1],[400,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[370,1],[230,1],[371,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[372,1],[456,1],[229,1],[227,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[83,1],[71,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[70,1],[84,1],[85,1],[86,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[58,1],[112,1],[57,1],[55,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[26,1],[14,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[13,1],[27,1],[28,1],[29,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[56,1],[113,1],[114,1],[115,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[198,1],[186,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[185,1],[199,1],[200,1],[201,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[173,1],[172,1],[171,1],[170,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[141,1],[228,1],[142,1],[144,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[143,1],[457,1]]","results":"[[1,1]]","for":"[[1,1]]","generated":"[[1,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[312,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[299,1],[313,1],[314,1],[315,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[287,1],[341,1],[286,1],[284,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[255,1],[243,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[242,1],[256,1],[257,1],[258,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[285,1],[342,1],[343,1],[344,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[401,1],[400,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[370,1],[230,1],[371,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[372,1],[456,1],[229,1],[227,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[83,1],[71,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[70,1],[84,1],[85,1],[86,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[58,1],[112,1],[57,1],[55,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[26,1],[14,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[13,1],[27,1],[28,1],[29,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[56,1],[113,1],[114,1],[115,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[198,1],[186,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[185,1],[199,1],[200,1],[201,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[173,1],[172,1],[171,1],[170,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[141,1],[228,1],[142,1],[144,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[143,1],[457,1]]","with":"[[1,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[312,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[299,1],[313,1],[314,1],[315,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[287,1],[341,1],[286,1],[284,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[255,1],[243,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[242,1],[256,1],[257,1],[258,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[285,1],[342,1],[343,1],[344,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[401,1],[400,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[370,1],[230,1],[371,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[372,1],[456,1],[229,1],[227,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[83,1],[71,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[70,1],[84,1],[85,1],[86,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[58,1],[112,1],[57,1],[55,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[26,1],[14,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[13,1],[27,1],[28,1],[29,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[56,1],[113,1],[114,1],[115,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[198,1],[186,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[185,1],[199,1],[200,1],[201,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[173,1],[172,1],[171,1],[170,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[141,1],[228,1],[142,1],[144,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[143,1],[457,1]]","vsdocman":"[[1,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[312,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[299,1],[313,1],[314,1],[315,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[287,1],[341,1],[286,1],[284,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[255,1],[243,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[242,1],[256,1],[257,1],[258,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[285,1],[342,1],[343,1],[344,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[401,1],[400,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[370,1],[230,1],[371,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[372,1],[456,1],[229,1],[227,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[83,1],[71,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[59,1],[70,1],[84,1],[85,1],[86,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[58,1],[112,1],[57,1],[55,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[26,1],[14,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[2,1],[13,1],[27,1],[28,1],[29,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[30,1],[56,1],[113,1],[114,1],[115,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[198,1],[186,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[185,1],[199,1],[200,1],[201,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[173,1],[172,1],[171,1],[170,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[141,1],[228,1],[142,1],[144,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[143,1],[457,1]]","edoka_dms":"[[2,1002],[281,5],[345,5],[205,4],[152,4],[301,4],[177,4],[61,4],[353,4],[273,2],[272,2],[271,2],[270,2],[269,2],[268,2],[266,2],[274,2],[265,2],[264,2],[263,2],[262,2],[261,2],[260,2],[259,2],[258,2],[267,2],[275,2],[277,2],[257,2],[309,2],[308,2],[307,2],[300,2],[299,2],[298,2],[297,2],[296,2],[295,2],[276,2],[294,2],[292,2],[291,2],[290,2],[289,2],[288,2],[287,2],[280,2],[279,2],[278,2],[293,2],[256,2],[254,2],[310,2],[228,2],[227,2],[226,2],[225,2],[224,2],[223,2],[222,2],[221,2],[220,2],[229,2],[219,2],[217,2],[216,2],[215,2],[214,2],[213,2],[212,2],[420,2],[204,2],[203,2],[218,2],[230,2],[231,2],[232,2],[253,2],[252,2],[251,2],[250,2],[249,2],[248,2],[247,2],[246,2],[245,2],[244,2],[243,2],[242,2],[241,2],[240,2],[239,2],[238,2],[237,2],[236,2],[235,2],[234,2],[233,2],[255,2],[311,2],[313,2],[202,2],[394,2],[393,2],[392,2],[391,2],[390,2],[389,2],[388,2],[387,2],[386,2],[395,2],[385,2],[383,2],[382,2],[381,2],[380,2],[379,2],[378,2],[377,2],[376,2],[375,2],[384,2],[396,2],[397,2],[398,2],[419,2],[418,2],[417,2],[416,2],[415,2],[414,2],[413,2],[412,2],[411,2],[410,2],[409,2],[408,2],[407,2],[406,2],[405,2],[404,2],[403,2],[402,2],[401,2],[400,2],[399,2],[374,2],[312,2],[373,2],[371,2],[333,2],[332,2],[331,2],[330,2],[329,2],[328,2],[327,2],[326,2],[325,2],[334,2],[324,2],[322,2],[321,2],[320,2],[319,2],[318,2],[317,2],[316,2],[315,2],[314,2],[323,2],[335,2],[336,2],[337,2],[370,2],[369,2],[368,2],[367,2],[366,2],[365,2],[364,2],[363,2],[362,2],[361,2],[360,2],[359,2],[352,2],[351,2],[344,2],[343,2],[342,2],[341,2],[340,2],[339,2],[338,2],[372,2],[201,2],[211,2],[199,2],[91,2],[90,2],[89,2],[88,2],[87,2],[86,2],[85,2],[84,2],[92,2],[83,2],[81,2],[80,2],[79,2],[78,2],[77,2],[76,2],[75,2],[74,2],[82,2],[93,2],[94,2],[95,2],[114,2],[113,2],[112,2],[111,2],[110,2],[109,2],[108,2],[107,2],[106,2],[105,2],[104,2],[103,2],[200,2],[101,2],[100,2],[99,2],[98,2],[97,2],[96,2],[73,2],[72,2],[71,2],[70,2],[33,2],[32,2],[31,2],[25,2],[24,2],[23,2],[22,2],[21,2],[20,2],[19,2],[18,2],[17,2],[16,2],[15,2],[14,2],[12,2],[10,2],[9,2],[3,2],[34,2],[115,2],[35,2],[42,2],[69,2],[68,2],[67,2],[60,2],[59,2],[58,2],[57,2],[56,2],[55,2],[54,2],[53,2],[52,2],[50,2],[48,2],[47,2],[46,2],[45,2],[44,2],[43,2],[36,2],[116,2],[102,2],[118,2],[160,2],[159,2],[158,2],[172,2],[186,2],[173,2],[161,2],[185,2],[151,2],[150,2],[149,2],[148,2],[147,2],[146,2],[174,2],[145,2],[162,2],[194,2],[187,2],[166,2],[167,2],[168,2],[169,2],[117,2],[171,2],[170,2],[189,2],[190,2],[163,2],[191,2],[192,2],[193,2],[188,2],[144,2],[143,2],[142,2],[119,2],[120,2],[121,2],[198,2],[183,2],[184,2],[122,2],[176,2],[197,2],[196,2],[175,2],[195,2],[123,2],[124,2],[164,2],[125,2],[127,2],[141,2],[140,2],[139,2],[138,2],[137,2],[126,2],[135,2],[136,2],[133,2],[132,2],[131,2],[130,2],[129,2],[128,2],[134,2],[165,2],[182,1],[37,1],[206,1],[29,1],[4,1],[5,1],[6,1],[7,1],[8,1],[11,1],[13,1],[38,1],[207,1],[208,1],[209,1],[210,1],[26,1],[27,1],[28,1],[30,1],[39,1],[356,1],[41,1],[157,1],[156,1],[155,1],[154,1],[153,1],[306,1],[305,1],[304,1],[303,1],[302,1],[282,1],[283,1],[284,1],[285,1],[286,1],[346,1],[347,1],[348,1],[349,1],[181,1],[180,1],[179,1],[178,1],[49,1],[51,1],[62,1],[40,1],[63,1],[358,1],[357,1],[355,1],[354,1],[65,1],[66,1],[350,1],[64,1],[457,1]]","namespace":"[[2,1002],[421,1002],[298,2],[297,2],[296,2],[295,2],[294,2],[293,2],[292,2],[291,2],[290,2],[289,2],[288,2],[287,2],[280,2],[279,2],[278,2],[277,2],[276,2],[275,2],[274,2],[273,2],[272,2],[271,2],[281,2],[270,2],[299,2],[301,2],[329,2],[328,2],[327,2],[326,2],[325,2],[324,2],[323,2],[322,2],[321,2],[320,2],[319,2],[318,2],[317,2],[316,2],[315,2],[314,2],[313,2],[312,2],[311,2],[310,2],[309,2],[308,2],[307,2],[300,2],[269,2],[268,2],[267,2],[239,2],[238,2],[237,2],[236,2],[235,2],[234,2],[233,2],[232,2],[231,2],[230,2],[240,2],[455,2],[227,2],[226,2],[225,2],[224,2],[223,2],[222,2],[221,2],[220,2],[219,2],[218,2],[228,2],[241,2],[242,2],[243,2],[266,2],[265,2],[264,2],[263,2],[262,2],[261,2],[260,2],[259,2],[258,2],[257,2],[256,2],[255,2],[254,2],[253,2],[252,2],[251,2],[250,2],[249,2],[248,2],[247,2],[246,2],[245,2],[244,2],[330,2],[331,2],[332,2],[333,2],[419,2],[418,2],[417,2],[416,2],[415,2],[414,2],[413,2],[412,2],[411,2],[410,2],[420,2],[409,2],[407,2],[406,2],[405,2],[404,2],[403,2],[402,2],[401,2],[400,2],[399,2],[398,2],[408,2],[422,2],[428,2],[429,2],[454,2],[453,2],[452,2],[451,2],[450,2],[449,2],[448,2],[447,2],[446,2],[445,2],[444,2],[443,2],[442,2],[441,2],[440,2],[439,2],[438,2],[437,2],[436,2],[435,2],[434,2],[432,2],[430,2],[397,2],[396,2],[395,2],[394,2],[366,2],[365,2],[364,2],[363,2],[362,2],[361,2],[360,2],[359,2],[353,2],[352,2],[351,2],[345,2],[344,2],[343,2],[342,2],[341,2],[340,2],[339,2],[338,2],[337,2],[336,2],[335,2],[334,2],[367,2],[217,2],[368,2],[370,2],[393,2],[392,2],[391,2],[390,2],[389,2],[388,2],[387,2],[386,2],[385,2],[384,2],[383,2],[382,2],[381,2],[380,2],[379,2],[378,2],[377,2],[376,2],[375,2],[374,2],[373,2],[372,2],[371,2],[369,2],[216,2],[229,2],[214,2],[97,2],[96,2],[95,2],[94,2],[93,2],[92,2],[91,2],[90,2],[89,2],[88,2],[87,2],[86,2],[85,2],[84,2],[83,2],[82,2],[81,2],[80,2],[79,2],[78,2],[77,2],[98,2],[76,2],[99,2],[101,2],[122,2],[121,2],[120,2],[119,2],[118,2],[117,2],[116,2],[115,2],[114,2],[113,2],[112,2],[111,2],[110,2],[109,2],[108,2],[107,2],[106,2],[105,2],[215,2],[103,2],[102,2],[100,2],[123,2],[75,2],[73,2],[35,2],[34,2],[33,2],[32,2],[31,2],[25,2],[24,2],[23,2],[22,2],[21,2],[20,2],[19,2],[18,2],[17,2],[16,2],[15,2],[14,2],[12,2],[10,2],[9,2],[3,2],[36,2],[74,2],[42,2],[44,2],[72,2],[71,2],[70,2],[69,2],[68,2],[67,2],[61,2],[60,2],[59,2],[58,2],[57,2],[56,2],[55,2],[54,2],[53,2],[52,2],[50,2],[48,2],[47,2],[46,2],[45,2],[43,2],[124,2],[104,2],[126,2],[183,2],[177,2],[176,2],[175,2],[174,2],[125,2],[173,2],[172,2],[171,2],[184,2],[170,2],[168,2],[167,2],[166,2],[165,2],[164,2],[163,2],[162,2],[161,2],[160,2],[169,2],[185,2],[186,2],[187,2],[213,2],[212,2],[211,2],[205,2],[204,2],[203,2],[202,2],[201,2],[200,2],[199,2],[198,2],[197,2],[196,2],[195,2],[194,2],[193,2],[192,2],[191,2],[190,2],[189,2],[188,2],[159,2],[158,2],[456,2],[148,2],[146,2],[145,2],[134,2],[144,2],[143,2],[142,2],[133,2],[132,2],[131,2],[130,2],[141,2],[140,2],[139,2],[147,2],[149,2],[127,2],[129,2],[128,2],[135,2],[138,2],[137,2],[136,2],[150,2],[151,2],[152,2],[426,1],[424,1],[29,1],[28,1],[427,1],[423,1],[425,1],[155,1],[26,1],[4,1],[5,1],[6,1],[7,1],[8,1],[11,1],[210,1],[13,1],[27,1],[209,1],[207,1],[206,1],[306,1],[305,1],[433,1],[304,1],[431,1],[303,1],[208,1],[30,1],[40,1],[37,1],[348,1],[349,1],[350,1],[284,1],[283,1],[282,1],[66,1],[354,1],[356,1],[357,1],[358,1],[153,1],[157,1],[156,1],[355,1],[65,1],[347,1],[63,1],[38,1],[39,1],[154,1],[41,1],[49,1],[51,1],[182,1],[181,1],[180,1],[179,1],[178,1],[286,1],[285,1],[346,1],[62,1],[302,1],[64,1]]","syntaxhighlighter":"[[2,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[313,1],[301,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[300,1],[314,1],[315,1],[316,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[288,1],[342,1],[287,1],[285,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[256,1],[244,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[243,1],[257,1],[258,1],[259,1],[284,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[286,1],[231,1],[343,1],[345,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[344,1],[401,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[370,1],[358,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[357,1],[371,1],[372,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[400,1],[230,1],[229,1],[228,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[84,1],[72,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[71,1],[85,1],[86,1],[87,1],[112,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[59,1],[113,1],[58,1],[56,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[27,1],[15,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[14,1],[28,1],[29,1],[30,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[57,1],[114,1],[115,1],[116,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[199,1],[187,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[186,1],[200,1],[201,1],[202,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[174,1],[173,1],[172,1],[171,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[142,1],[456,1],[143,1],[145,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[144,1],[457,1]]","all":"[[2,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[313,1],[301,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[300,1],[314,1],[315,1],[316,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[288,1],[342,1],[287,1],[285,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[256,1],[244,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[243,1],[257,1],[258,1],[259,1],[284,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[286,1],[231,1],[343,1],[345,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[344,1],[401,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[370,1],[358,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[357,1],[371,1],[372,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[400,1],[230,1],[229,1],[228,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[84,1],[72,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[71,1],[85,1],[86,1],[87,1],[112,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[59,1],[113,1],[58,1],[56,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[27,1],[15,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[14,1],[28,1],[29,1],[30,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[57,1],[114,1],[115,1],[116,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[199,1],[187,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[186,1],[200,1],[201,1],[202,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[174,1],[173,1],[172,1],[171,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[142,1],[456,1],[143,1],[145,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[144,1],[457,1]]","database":"[[421,1005],[457,1004],[456,5],[422,5],[428,5],[430,5],[432,5],[434,5],[435,5],[436,5],[437,5],[438,5],[439,5],[440,5],[441,5],[429,5],[443,5],[442,5],[454,5],[455,5],[452,5],[451,5],[450,5],[453,5],[448,5],[447,5],[446,5],[445,5],[444,5],[449,5],[288,3],[287,3],[281,3],[280,3],[279,3],[278,3],[277,3],[276,3],[275,3],[269,3],[273,3],[272,3],[271,3],[270,3],[268,3],[267,3],[266,3],[265,3],[289,3],[274,3],[290,3],[309,3],[292,3],[316,3],[315,3],[314,3],[313,3],[312,3],[311,3],[310,3],[264,3],[308,3],[307,3],[301,3],[300,3],[299,3],[298,3],[297,3],[296,3],[295,3],[294,3],[293,3],[291,3],[263,3],[248,3],[261,3],[237,3],[236,3],[235,3],[234,3],[233,3],[232,3],[231,3],[230,3],[228,3],[227,3],[226,3],[225,3],[224,3],[223,3],[222,3],[221,3],[220,3],[219,3],[218,3],[238,3],[262,3],[239,3],[241,3],[260,3],[259,3],[258,3],[257,3],[256,3],[255,3],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[317,3],[247,3],[246,3],[245,3],[244,3],[243,3],[242,3],[240,3],[318,3],[333,3],[320,3],[396,3],[395,3],[394,3],[393,3],[392,3],[391,3],[390,3],[389,3],[388,3],[387,3],[386,3],[385,3],[384,3],[383,3],[382,3],[381,3],[380,3],[379,3],[378,3],[397,3],[398,3],[399,3],[400,3],[420,3],[419,3],[418,3],[417,3],[416,3],[415,3],[414,3],[413,3],[412,3],[377,3],[411,3],[409,3],[408,3],[407,3],[406,3],[405,3],[404,3],[403,3],[402,3],[401,3],[410,3],[319,3],[376,3],[374,3],[339,3],[338,3],[337,3],[336,3],[335,3],[334,3],[217,3],[332,3],[331,3],[330,3],[329,3],[328,3],[327,3],[326,3],[325,3],[324,3],[323,3],[322,3],[321,3],[340,3],[341,3],[342,3],[343,3],[373,3],[372,3],[371,3],[370,3],[369,3],[368,3],[367,3],[366,3],[365,3],[375,3],[364,3],[362,3],[361,3],[360,3],[359,3],[353,3],[352,3],[351,3],[345,3],[344,3],[363,3],[216,3],[229,3],[214,3],[97,3],[96,3],[95,3],[94,3],[93,3],[92,3],[91,3],[90,3],[89,3],[88,3],[87,3],[86,3],[85,3],[84,3],[83,3],[82,3],[81,3],[80,3],[79,3],[78,3],[77,3],[98,3],[76,3],[99,3],[101,3],[122,3],[121,3],[120,3],[119,3],[118,3],[117,3],[116,3],[115,3],[114,3],[113,3],[112,3],[111,3],[110,3],[109,3],[108,3],[107,3],[106,3],[105,3],[215,3],[103,3],[102,3],[100,3],[123,3],[75,3],[73,3],[35,3],[34,3],[33,3],[32,3],[31,3],[25,3],[24,3],[23,3],[22,3],[21,3],[20,3],[19,3],[18,3],[17,3],[16,3],[15,3],[14,3],[12,3],[10,3],[9,3],[3,3],[36,3],[74,3],[42,3],[44,3],[72,3],[71,3],[70,3],[69,3],[68,3],[67,3],[61,3],[60,3],[59,3],[58,3],[57,3],[56,3],[55,3],[54,3],[53,3],[52,3],[50,3],[48,3],[47,3],[46,3],[45,3],[43,3],[124,3],[104,3],[126,3],[183,3],[177,3],[176,3],[175,3],[174,3],[125,3],[173,3],[172,3],[171,3],[184,3],[170,3],[168,3],[167,3],[166,3],[165,3],[164,3],[163,3],[162,3],[161,3],[160,3],[169,3],[185,3],[186,3],[187,3],[213,3],[212,3],[211,3],[205,3],[204,3],[203,3],[202,3],[201,3],[200,3],[199,3],[198,3],[197,3],[196,3],[195,3],[194,3],[193,3],[192,3],[191,3],[190,3],[189,3],[188,3],[159,3],[158,3],[2,3],[149,3],[145,3],[148,3],[135,3],[144,3],[143,3],[134,3],[133,3],[132,3],[131,3],[130,3],[142,3],[141,3],[146,3],[139,3],[140,3],[151,3],[127,3],[136,3],[137,3],[152,3],[150,3],[147,3],[128,3],[129,3],[138,3],[426,2],[423,2],[433,2],[424,2],[431,2],[427,2],[425,2],[29,1],[155,1],[27,1],[4,1],[5,1],[6,1],[7,1],[8,1],[11,1],[210,1],[28,1],[13,1],[208,1],[207,1],[206,1],[306,1],[305,1],[304,1],[26,1],[209,1],[30,1],[40,1],[302,1],[349,1],[350,1],[286,1],[285,1],[284,1],[354,1],[355,1],[356,1],[357,1],[358,1],[283,1],[282,1],[153,1],[157,1],[156,1],[66,1],[303,1],[65,1],[63,1],[37,1],[38,1],[39,1],[154,1],[41,1],[49,1],[51,1],[182,1],[181,1],[180,1],[179,1],[178,1],[346,1],[347,1],[62,1],[348,1],[64,1]]","assembly":"[[2,1],[315,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[316,1],[301,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[300,1],[290,1],[317,1],[319,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[318,1],[330,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[329,1],[289,1],[288,1],[287,1],[256,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[257,1],[247,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[246,1],[258,1],[259,1],[260,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[340,1],[341,1],[342,1],[343,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[428,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[412,1],[429,1],[430,1],[432,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[402,1],[236,1],[401,1],[399,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[374,1],[364,1],[362,1],[361,1],[360,1],[359,1],[353,1],[352,1],[351,1],[345,1],[344,1],[363,1],[375,1],[376,1],[377,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[400,1],[455,1],[235,1],[233,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[96,1],[86,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[85,1],[75,1],[97,1],[99,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[98,1],[110,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[109,1],[74,1],[73,1],[72,1],[34,1],[33,1],[32,1],[31,1],[25,1],[24,1],[23,1],[22,1],[21,1],[35,1],[20,1],[18,1],[17,1],[16,1],[15,1],[14,1],[12,1],[10,1],[9,1],[3,1],[19,1],[36,1],[42,1],[43,1],[71,1],[70,1],[69,1],[68,1],[67,1],[61,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[50,1],[48,1],[47,1],[46,1],[45,1],[44,1],[120,1],[121,1],[122,1],[123,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[203,1],[193,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[192,1],[204,1],[205,1],[211,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[177,1],[234,1],[176,1],[174,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[144,1],[134,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[133,1],[145,1],[146,1],[147,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[152,1],[151,1],[150,1],[149,1],[148,1],[175,1],[456,1]]","in":"[[2,3],[298,3],[297,3],[296,3],[295,3],[294,3],[293,3],[292,3],[291,3],[290,3],[289,3],[299,3],[288,3],[281,3],[280,3],[279,3],[278,3],[277,3],[276,3],[275,3],[274,3],[273,3],[272,3],[287,3],[300,3],[301,3],[307,3],[330,3],[329,3],[328,3],[327,3],[326,3],[325,3],[324,3],[323,3],[322,3],[321,3],[320,3],[319,3],[318,3],[317,3],[316,3],[315,3],[314,3],[313,3],[312,3],[311,3],[310,3],[309,3],[308,3],[271,3],[270,3],[269,3],[268,3],[240,3],[239,3],[238,3],[237,3],[236,3],[235,3],[234,3],[233,3],[232,3],[231,3],[230,3],[456,3],[228,3],[227,3],[226,3],[225,3],[224,3],[223,3],[222,3],[221,3],[220,3],[219,3],[218,3],[241,3],[331,3],[242,3],[244,3],[267,3],[266,3],[265,3],[264,3],[263,3],[262,3],[261,3],[260,3],[259,3],[258,3],[257,3],[256,3],[255,3],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[248,3],[247,3],[246,3],[245,3],[243,3],[332,3],[333,3],[334,3],[421,3],[420,3],[419,3],[418,3],[417,3],[416,3],[415,3],[414,3],[413,3],[412,3],[411,3],[410,3],[409,3],[408,3],[407,3],[406,3],[405,3],[404,3],[403,3],[402,3],[401,3],[400,3],[399,3],[422,3],[398,3],[428,3],[430,3],[455,3],[454,3],[453,3],[452,3],[451,3],[450,3],[449,3],[448,3],[447,3],[446,3],[445,3],[444,3],[443,3],[442,3],[441,3],[440,3],[439,3],[438,3],[437,3],[436,3],[435,3],[434,3],[432,3],[429,3],[217,3],[397,3],[395,3],[367,3],[366,3],[365,3],[364,3],[363,3],[362,3],[361,3],[360,3],[359,3],[353,3],[352,3],[351,3],[345,3],[344,3],[343,3],[342,3],[341,3],[340,3],[339,3],[338,3],[337,3],[336,3],[335,3],[368,3],[396,3],[369,3],[371,3],[394,3],[393,3],[392,3],[391,3],[390,3],[389,3],[388,3],[387,3],[386,3],[385,3],[384,3],[383,3],[382,3],[381,3],[380,3],[379,3],[378,3],[377,3],[376,3],[375,3],[374,3],[373,3],[372,3],[370,3],[216,3],[229,3],[214,3],[98,3],[97,3],[96,3],[95,3],[94,3],[93,3],[92,3],[91,3],[90,3],[89,3],[88,3],[87,3],[86,3],[85,3],[84,3],[83,3],[82,3],[81,3],[80,3],[79,3],[78,3],[99,3],[77,3],[100,3],[102,3],[123,3],[122,3],[121,3],[120,3],[119,3],[118,3],[117,3],[116,3],[115,3],[114,3],[113,3],[112,3],[111,3],[110,3],[109,3],[108,3],[107,3],[106,3],[105,3],[215,3],[103,3],[101,3],[124,3],[76,3],[74,3],[36,3],[35,3],[34,3],[33,3],[32,3],[31,3],[25,3],[23,3],[22,3],[21,3],[20,3],[19,3],[18,3],[17,3],[16,3],[15,3],[14,3],[12,3],[10,3],[9,3],[3,3],[42,3],[75,3],[43,3],[45,3],[73,3],[72,3],[71,3],[70,3],[69,3],[68,3],[67,3],[61,3],[60,3],[59,3],[58,3],[57,3],[56,3],[55,3],[54,3],[53,3],[52,3],[50,3],[48,3],[47,3],[46,3],[44,3],[125,3],[104,3],[127,3],[170,3],[169,3],[168,3],[167,3],[166,3],[165,3],[164,3],[163,3],[162,3],[161,3],[160,3],[159,3],[158,3],[199,3],[194,3],[200,3],[152,3],[171,3],[172,3],[173,3],[174,3],[195,3],[196,3],[197,3],[192,3],[191,3],[190,3],[189,3],[188,3],[151,3],[187,3],[198,3],[185,3],[184,3],[183,3],[177,3],[176,3],[175,3],[126,3],[186,3],[150,3],[193,3],[202,3],[143,3],[142,3],[141,3],[201,3],[139,3],[138,3],[137,3],[136,3],[135,3],[213,3],[134,3],[133,3],[132,3],[131,3],[130,3],[129,3],[128,3],[144,3],[145,3],[140,3],[147,3],[146,3],[212,3],[205,3],[211,3],[203,3],[149,3],[148,3],[204,3],[24,2],[206,1],[7,1],[207,1],[431,1],[208,1],[4,1],[5,1],[6,1],[30,1],[29,1],[13,1],[423,1],[424,1],[425,1],[426,1],[210,1],[11,1],[427,1],[28,1],[27,1],[26,1],[8,1],[209,1],[433,1],[64,1],[38,1],[356,1],[355,1],[354,1],[283,1],[284,1],[285,1],[350,1],[349,1],[348,1],[347,1],[346,1],[286,1],[302,1],[303,1],[304,1],[305,1],[306,1],[357,1],[358,1],[282,1],[153,1],[39,1],[40,1],[41,1],[49,1],[51,1],[182,1],[181,1],[180,1],[37,1],[179,1],[62,1],[63,1],[65,1],[66,1],[157,1],[156,1],[155,1],[154,1],[178,1],[457,1]]","dll":"[[2,1],[315,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[316,1],[301,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[300,1],[290,1],[317,1],[319,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[318,1],[330,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[329,1],[289,1],[288,1],[287,1],[256,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[257,1],[247,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[246,1],[258,1],[259,1],[260,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[340,1],[341,1],[342,1],[343,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[428,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[412,1],[429,1],[430,1],[432,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[402,1],[236,1],[401,1],[399,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[365,1],[374,1],[364,1],[362,1],[361,1],[360,1],[359,1],[353,1],[352,1],[351,1],[345,1],[344,1],[363,1],[375,1],[376,1],[377,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[400,1],[455,1],[235,1],[233,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[96,1],[86,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[85,1],[75,1],[97,1],[99,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[98,1],[110,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[109,1],[74,1],[73,1],[72,1],[34,1],[33,1],[32,1],[31,1],[25,1],[24,1],[23,1],[22,1],[21,1],[35,1],[20,1],[18,1],[17,1],[16,1],[15,1],[14,1],[12,1],[10,1],[9,1],[3,1],[19,1],[36,1],[42,1],[43,1],[71,1],[70,1],[69,1],[68,1],[67,1],[61,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[50,1],[48,1],[47,1],[46,1],[45,1],[44,1],[120,1],[121,1],[122,1],[123,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[203,1],[193,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[192,1],[204,1],[205,1],[211,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[177,1],[234,1],[176,1],[174,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[144,1],[134,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[133,1],[145,1],[146,1],[147,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[152,1],[151,1],[150,1],[149,1],[148,1],[175,1],[456,1]]","classes":"[[2,1],[421,1]]","name":"[[434,5],[205,4],[353,4],[301,4],[281,4],[177,4],[152,4],[36,4],[61,4],[422,3],[345,3],[2,3],[3,3],[41,1],[11,1],[304,1],[305,1],[306,1],[7,1],[348,1],[349,1],[350,1],[6,1],[356,1],[357,1],[358,1],[421,1],[425,1],[427,1],[431,1],[433,1],[286,1],[40,1],[285,1],[13,1],[49,1],[51,1],[39,1],[64,1],[65,1],[66,1],[28,1],[155,1],[284,1],[156,1],[25,1],[180,1],[181,1],[182,1],[24,1],[208,1],[209,1],[210,1],[157,1],[457,1]]","description":"[[301,4],[205,4],[281,4],[152,4],[353,4],[36,4],[177,4],[61,4],[2,3],[422,3],[3,3],[345,3],[304,1],[285,1],[284,1],[305,1],[286,1],[348,1],[349,1],[350,1],[356,1],[357,1],[358,1],[421,1],[425,1],[427,1],[431,1],[306,1],[210,1],[182,1],[208,1],[6,1],[7,1],[11,1],[13,1],[24,1],[25,1],[28,1],[39,1],[40,1],[41,1],[49,1],[51,1],[64,1],[65,1],[66,1],[155,1],[156,1],[157,1],[180,1],[181,1],[433,1],[209,1],[457,1]]","clsconnectionprovider":"[[3,1007],[9,1006],[4,1004],[5,1004],[6,1004],[7,1004],[8,1004],[13,1003],[20,1003],[19,1003],[18,1003],[17,1003],[16,1003],[12,1003],[14,1003],[23,1003],[21,1003],[11,1003],[10,1003],[15,1003],[22,1003],[57,6],[46,5],[2,1]]","clsdbinteractionbase":"[[36,1007],[47,1006],[37,1004],[38,1004],[39,1004],[40,1004],[41,1004],[54,1003],[60,1003],[59,1003],[58,1003],[57,1003],[56,1003],[55,1003],[53,1003],[52,1003],[50,1003],[49,1003],[48,1003],[51,1003],[205,16],[281,16],[353,16],[61,16],[177,16],[301,16],[152,16],[345,12],[157,5],[210,5],[182,5],[358,5],[66,5],[306,5],[350,5],[286,5],[285,4],[305,4],[349,4],[209,4],[65,4],[181,4],[156,4],[357,4],[180,2],[284,2],[155,2],[304,2],[64,2],[208,2],[356,2],[348,2],[42,1],[46,1],[44,1],[45,1],[43,1],[2,1]]","clsdokument":"[[61,1008],[67,1006],[62,1004],[63,1004],[64,1004],[65,1004],[66,1004],[105,1003],[127,1003],[126,1003],[125,1003],[124,1003],[123,1003],[122,1003],[121,1003],[120,1003],[116,1003],[118,1003],[117,1003],[128,1003],[115,1003],[114,1003],[113,1003],[112,1003],[111,1003],[119,1003],[129,1003],[133,1003],[131,1003],[149,1003],[148,1003],[147,1003],[146,1003],[145,1003],[144,1003],[143,1003],[142,1003],[130,1003],[141,1003],[139,1003],[138,1003],[137,1003],[136,1003],[135,1003],[134,1003],[110,1003],[132,1003],[140,1003],[109,1003],[151,1003],[107,1003],[84,1003],[83,1003],[82,1003],[81,1003],[80,1003],[79,1003],[78,1003],[77,1003],[76,1003],[75,1003],[74,1003],[73,1003],[72,1003],[71,1003],[70,1003],[69,1003],[68,1003],[85,1003],[86,1003],[87,1003],[88,1003],[106,1003],[150,1003],[104,1003],[103,1003],[102,1003],[101,1003],[100,1003],[99,1003],[108,1003],[98,1003],[96,1003],[95,1003],[94,1003],[93,1003],[92,1003],[91,1003],[90,1003],[89,1003],[97,1003],[2,1]]","clsdokument_status":"[[152,1008],[158,1006],[153,1004],[154,1004],[155,1004],[156,1004],[157,1004],[163,1003],[174,1003],[173,1003],[172,1003],[171,1003],[170,1003],[169,1003],[168,1003],[167,1003],[176,1003],[165,1003],[164,1003],[175,1003],[162,1003],[161,1003],[160,1003],[159,1003],[166,1003],[2,1]]","clsdokumentstatus":"[[177,1008],[183,1006],[178,1004],[179,1004],[180,1004],[181,1004],[182,1004],[190,1003],[196,1003],[197,1003],[198,1003],[202,1003],[200,1003],[201,1003],[195,1003],[199,1003],[194,1003],[204,1003],[192,1003],[191,1003],[203,1003],[189,1003],[188,1003],[187,1003],[186,1003],[185,1003],[184,1003],[193,1003],[2,1]]","clsdokumenttyp":"[[205,1008],[211,1006],[206,1004],[207,1004],[208,1004],[209,1004],[210,1004],[242,1003],[260,1003],[259,1003],[258,1003],[257,1003],[256,1003],[255,1003],[251,1003],[253,1003],[252,1003],[261,1003],[250,1003],[249,1003],[248,1003],[254,1003],[262,1003],[266,1003],[264,1003],[278,1003],[277,1003],[276,1003],[275,1003],[274,1003],[273,1003],[263,1003],[272,1003],[270,1003],[269,1003],[268,1003],[267,1003],[247,1003],[265,1003],[271,1003],[246,1003],[280,1003],[244,1003],[225,1003],[224,1003],[223,1003],[222,1003],[221,1003],[220,1003],[226,1003],[219,1003],[217,1003],[216,1003],[215,1003],[214,1003],[213,1003],[212,1003],[218,1003],[245,1003],[227,1003],[229,1003],[243,1003],[279,1003],[241,1003],[240,1003],[239,1003],[238,1003],[228,1003],[237,1003],[235,1003],[234,1003],[233,1003],[232,1003],[231,1003],[230,1003],[236,1003],[2,1]]","clskey_tabelle":"[[281,1008],[287,1006],[282,1004],[283,1004],[284,1004],[285,1004],[286,1004],[291,1003],[298,1003],[297,1003],[296,1003],[295,1003],[294,1003],[290,1003],[292,1003],[299,1003],[289,1003],[288,1003],[293,1003],[300,1003],[345,18],[349,8],[348,5],[2,1]]","clsmitarbeiter":"[[301,1008],[307,1006],[302,1004],[303,1004],[304,1004],[305,1004],[306,1004],[322,1003],[328,1003],[329,1003],[330,1003],[331,1003],[332,1003],[333,1003],[334,1003],[338,1003],[336,1003],[337,1003],[327,1003],[339,1003],[340,1003],[341,1003],[342,1003],[335,1003],[326,1003],[344,1003],[324,1003],[308,1003],[309,1003],[310,1003],[311,1003],[312,1003],[313,1003],[314,1003],[325,1003],[315,1003],[317,1003],[318,1003],[319,1003],[320,1003],[321,1003],[343,1003],[323,1003],[316,1003],[2,1]]","clsmykey_tabelle":"[[345,1007],[346,1004],[347,1004],[348,1004],[349,1004],[350,1004],[352,1003],[2,1],[281,1],[351,1]]","clspartner":"[[353,1008],[359,1006],[354,1004],[355,1004],[356,1004],[357,1004],[358,1004],[386,1003],[402,1003],[401,1003],[400,1003],[399,1003],[398,1003],[394,1003],[396,1003],[395,1003],[403,1003],[393,1003],[392,1003],[397,1003],[404,1003],[408,1003],[406,1003],[407,1003],[391,1003],[409,1003],[410,1003],[411,1003],[412,1003],[413,1003],[414,1003],[415,1003],[416,1003],[417,1003],[418,1003],[405,1003],[390,1003],[420,1003],[388,1003],[360,1003],[361,1003],[362,1003],[363,1003],[364,1003],[365,1003],[366,1003],[367,1003],[368,1003],[369,1003],[370,1003],[371,1003],[372,1003],[389,1003],[373,1003],[375,1003],[376,1003],[377,1003],[378,1003],[379,1003],[380,1003],[381,1003],[382,1003],[383,1003],[384,1003],[385,1003],[419,1003],[387,1003],[374,1003],[2,1]]","top":"[[281,4],[205,4],[301,4],[177,4],[152,4],[36,4],[61,4],[353,4],[345,3],[2,3],[422,3],[3,3],[357,1],[350,1],[284,1],[348,1],[358,1],[421,1],[306,1],[305,1],[304,1],[425,1],[286,1],[285,1],[356,1],[349,1],[208,1],[209,1],[6,1],[7,1],[25,1],[28,1],[39,1],[40,1],[41,1],[64,1],[65,1],[66,1],[155,1],[156,1],[157,1],[180,1],[181,1],[182,1],[427,1],[210,1],[457,1]]","interfaces":"[[2,1]]","icommondbaccess":"[[25,1006],[26,1004],[27,1004],[28,1004],[29,1004],[30,1004],[31,1003],[32,1003],[33,1003],[34,1003],[35,1003],[36,4],[2,1]]","enumerations":"[[2,1]]","llblerror":"[[24,1002],[2,1]]","applies":"[[2,1],[316,1],[315,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[317,1],[307,1],[300,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[301,1],[291,1],[318,1],[320,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[319,1],[331,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[330,1],[290,1],[289,1],[288,1],[257,1],[256,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[258,1],[248,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[247,1],[259,1],[260,1],[261,1],[287,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[341,1],[237,1],[342,1],[344,1],[428,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[429,1],[414,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[413,1],[403,1],[430,1],[434,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[432,1],[445,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[444,1],[402,1],[401,1],[400,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[375,1],[365,1],[363,1],[362,1],[361,1],[360,1],[359,1],[353,1],[352,1],[351,1],[345,1],[364,1],[376,1],[377,1],[378,1],[399,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[343,1],[236,1],[235,1],[234,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[97,1],[87,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[86,1],[76,1],[98,1],[100,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[99,1],[111,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[110,1],[75,1],[74,1],[73,1],[35,1],[34,1],[33,1],[32,1],[31,1],[25,1],[23,1],[22,1],[21,1],[36,1],[20,1],[18,1],[17,1],[16,1],[15,1],[14,1],[12,1],[10,1],[9,1],[3,1],[19,1],[42,1],[43,1],[44,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[61,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[50,1],[48,1],[47,1],[46,1],[45,1],[121,1],[122,1],[123,1],[124,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[204,1],[194,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[193,1],[205,1],[211,1],[212,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[183,1],[455,1],[177,1],[175,1],[144,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[145,1],[135,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[134,1],[146,1],[147,1],[148,1],[174,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[152,1],[151,1],[150,1],[149,1],[176,1],[456,1]]","net":"[[2,1],[316,1],[315,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[317,1],[307,1],[300,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[301,1],[291,1],[318,1],[320,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[319,1],[331,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[330,1],[290,1],[289,1],[288,1],[257,1],[256,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[258,1],[248,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[247,1],[259,1],[260,1],[261,1],[287,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[341,1],[237,1],[342,1],[344,1],[428,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[429,1],[414,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[413,1],[403,1],[430,1],[434,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[432,1],[445,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[444,1],[402,1],[401,1],[400,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[375,1],[365,1],[363,1],[362,1],[361,1],[360,1],[359,1],[353,1],[352,1],[351,1],[345,1],[364,1],[376,1],[377,1],[378,1],[399,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[343,1],[236,1],[235,1],[234,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[97,1],[87,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[86,1],[76,1],[98,1],[100,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[99,1],[111,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[110,1],[75,1],[74,1],[73,1],[35,1],[34,1],[33,1],[32,1],[31,1],[25,1],[23,1],[22,1],[21,1],[36,1],[20,1],[18,1],[17,1],[16,1],[15,1],[14,1],[12,1],[10,1],[9,1],[3,1],[19,1],[42,1],[43,1],[44,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[61,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[50,1],[48,1],[47,1],[46,1],[45,1],[121,1],[122,1],[123,1],[124,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[204,1],[194,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[193,1],[205,1],[211,1],[212,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[183,1],[455,1],[177,1],[175,1],[144,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[145,1],[135,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[134,1],[146,1],[147,1],[148,1],[174,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[152,1],[151,1],[150,1],[149,1],[176,1],[456,1]]","frameworksupported":"[[2,1],[316,1],[315,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[317,1],[307,1],[300,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[301,1],[291,1],[318,1],[320,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[319,1],[331,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[330,1],[290,1],[289,1],[288,1],[257,1],[256,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[258,1],[248,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[247,1],[259,1],[260,1],[261,1],[287,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[341,1],[237,1],[342,1],[344,1],[428,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[429,1],[414,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[413,1],[403,1],[430,1],[434,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[432,1],[445,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[444,1],[402,1],[401,1],[400,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[375,1],[365,1],[363,1],[362,1],[361,1],[360,1],[359,1],[353,1],[352,1],[351,1],[345,1],[364,1],[376,1],[377,1],[378,1],[399,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[343,1],[236,1],[235,1],[234,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[97,1],[87,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[86,1],[76,1],[98,1],[100,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[99,1],[111,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[110,1],[75,1],[74,1],[73,1],[35,1],[34,1],[33,1],[32,1],[31,1],[25,1],[23,1],[22,1],[21,1],[36,1],[20,1],[18,1],[17,1],[16,1],[15,1],[14,1],[12,1],[10,1],[9,1],[3,1],[19,1],[42,1],[43,1],[44,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[61,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[50,1],[48,1],[47,1],[46,1],[45,1],[121,1],[122,1],[123,1],[124,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[204,1],[194,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[193,1],[205,1],[211,1],[212,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[183,1],[455,1],[177,1],[175,1],[144,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[145,1],[135,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[134,1],[146,1],[147,1],[148,1],[174,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[152,1],[151,1],[150,1],[149,1],[176,1],[456,1]]","4":"[[2,10],[316,10],[315,10],[314,10],[313,10],[312,10],[311,10],[310,10],[309,10],[308,10],[317,10],[307,10],[300,10],[299,10],[298,10],[297,10],[296,10],[295,10],[294,10],[293,10],[292,10],[301,10],[291,10],[318,10],[320,10],[340,10],[339,10],[338,10],[337,10],[336,10],[335,10],[334,10],[333,10],[332,10],[319,10],[331,10],[329,10],[328,10],[327,10],[326,10],[325,10],[324,10],[323,10],[322,10],[321,10],[330,10],[290,10],[289,10],[288,10],[257,10],[256,10],[255,10],[254,10],[253,10],[252,10],[251,10],[250,10],[249,10],[258,10],[248,10],[246,10],[245,10],[244,10],[243,10],[242,10],[241,10],[240,10],[239,10],[238,10],[247,10],[259,10],[260,10],[261,10],[287,10],[281,10],[280,10],[279,10],[278,10],[277,10],[276,10],[275,10],[274,10],[273,10],[272,10],[271,10],[270,10],[269,10],[268,10],[267,10],[266,10],[265,10],[264,10],[263,10],[262,10],[341,10],[237,10],[342,10],[344,10],[428,10],[422,10],[421,10],[420,10],[419,10],[418,10],[417,10],[416,10],[415,10],[429,10],[414,10],[412,10],[411,10],[410,10],[409,10],[408,10],[407,10],[406,10],[405,10],[404,10],[413,10],[403,10],[430,10],[434,10],[454,10],[453,10],[452,10],[451,10],[450,10],[449,10],[448,10],[447,10],[446,10],[432,10],[445,10],[443,10],[442,10],[441,10],[440,10],[439,10],[438,10],[437,10],[436,10],[435,10],[444,10],[402,10],[401,10],[400,10],[374,10],[373,10],[372,10],[371,10],[370,10],[369,10],[368,10],[367,10],[366,10],[375,10],[365,10],[363,10],[362,10],[361,10],[360,10],[359,10],[353,10],[352,10],[351,10],[345,10],[364,10],[376,10],[377,10],[378,10],[399,10],[398,10],[397,10],[396,10],[395,10],[394,10],[393,10],[392,10],[391,10],[390,10],[389,10],[388,10],[387,10],[386,10],[385,10],[384,10],[383,10],[382,10],[381,10],[380,10],[379,10],[343,10],[236,10],[235,10],[234,10],[96,10],[95,10],[94,10],[93,10],[92,10],[91,10],[90,10],[89,10],[88,10],[97,10],[87,10],[85,10],[84,10],[83,10],[82,10],[81,10],[80,10],[79,10],[78,10],[77,10],[86,10],[76,10],[98,10],[100,10],[120,10],[119,10],[118,10],[117,10],[116,10],[115,10],[114,10],[113,10],[112,10],[99,10],[111,10],[109,10],[108,10],[107,10],[106,10],[105,10],[104,10],[103,10],[102,10],[101,10],[110,10],[75,10],[74,10],[73,10],[35,10],[34,10],[33,10],[32,10],[31,10],[25,10],[23,10],[22,10],[21,10],[36,10],[20,10],[18,10],[17,10],[16,10],[15,10],[14,10],[12,10],[10,10],[9,10],[3,10],[19,10],[42,10],[43,10],[44,10],[72,10],[71,10],[70,10],[69,10],[68,10],[67,10],[61,10],[60,10],[59,10],[58,10],[57,10],[56,10],[55,10],[54,10],[53,10],[52,10],[50,10],[48,10],[47,10],[46,10],[45,10],[121,10],[122,10],[123,10],[124,10],[203,10],[202,10],[201,10],[200,10],[199,10],[198,10],[197,10],[196,10],[195,10],[204,10],[194,10],[192,10],[191,10],[190,10],[189,10],[188,10],[187,10],[186,10],[185,10],[184,10],[193,10],[205,10],[211,10],[212,10],[233,10],[232,10],[231,10],[230,10],[229,10],[228,10],[227,10],[226,10],[225,10],[224,10],[223,10],[222,10],[221,10],[220,10],[219,10],[218,10],[217,10],[216,10],[215,10],[214,10],[213,10],[183,10],[455,10],[177,10],[175,10],[144,10],[143,10],[142,10],[141,10],[140,10],[139,10],[138,10],[137,10],[136,10],[145,10],[135,10],[133,10],[132,10],[131,10],[130,10],[129,10],[128,10],[127,10],[126,10],[125,10],[134,10],[146,10],[147,10],[148,10],[174,10],[173,10],[172,10],[171,10],[170,10],[169,10],[168,10],[167,10],[166,10],[165,10],[164,10],[163,10],[162,10],[161,10],[160,10],[159,10],[158,10],[152,10],[151,10],[150,10],[149,10],[176,10],[456,10]]","5":"[[2,3],[316,3],[315,3],[314,3],[313,3],[312,3],[311,3],[310,3],[309,3],[308,3],[317,3],[307,3],[300,3],[299,3],[298,3],[297,3],[296,3],[295,3],[294,3],[293,3],[292,3],[301,3],[291,3],[318,3],[320,3],[340,3],[339,3],[338,3],[337,3],[336,3],[335,3],[334,3],[333,3],[332,3],[319,3],[331,3],[329,3],[328,3],[327,3],[326,3],[325,3],[324,3],[323,3],[322,3],[321,3],[330,3],[290,3],[289,3],[288,3],[257,3],[256,3],[255,3],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[258,3],[248,3],[246,3],[245,3],[244,3],[243,3],[242,3],[241,3],[240,3],[239,3],[238,3],[247,3],[259,3],[260,3],[261,3],[287,3],[281,3],[280,3],[279,3],[278,3],[277,3],[276,3],[275,3],[274,3],[273,3],[272,3],[271,3],[270,3],[269,3],[268,3],[267,3],[266,3],[265,3],[264,3],[263,3],[262,3],[341,3],[237,3],[342,3],[344,3],[428,3],[422,3],[421,3],[420,3],[419,3],[418,3],[417,3],[416,3],[415,3],[429,3],[414,3],[412,3],[411,3],[410,3],[409,3],[408,3],[407,3],[406,3],[405,3],[404,3],[413,3],[403,3],[430,3],[434,3],[454,3],[453,3],[452,3],[451,3],[450,3],[449,3],[448,3],[447,3],[446,3],[432,3],[445,3],[443,3],[442,3],[441,3],[440,3],[439,3],[438,3],[437,3],[436,3],[435,3],[444,3],[402,3],[401,3],[400,3],[374,3],[373,3],[372,3],[371,3],[370,3],[369,3],[368,3],[367,3],[366,3],[375,3],[365,3],[363,3],[362,3],[361,3],[360,3],[359,3],[353,3],[352,3],[351,3],[345,3],[364,3],[376,3],[377,3],[378,3],[399,3],[398,3],[397,3],[396,3],[395,3],[394,3],[393,3],[392,3],[391,3],[390,3],[389,3],[388,3],[387,3],[386,3],[385,3],[384,3],[383,3],[382,3],[381,3],[380,3],[379,3],[343,3],[236,3],[235,3],[234,3],[96,3],[95,3],[94,3],[93,3],[92,3],[91,3],[90,3],[89,3],[88,3],[97,3],[87,3],[85,3],[84,3],[83,3],[82,3],[81,3],[80,3],[79,3],[78,3],[77,3],[86,3],[76,3],[98,3],[100,3],[120,3],[119,3],[118,3],[117,3],[116,3],[115,3],[114,3],[113,3],[112,3],[99,3],[111,3],[109,3],[108,3],[107,3],[106,3],[105,3],[104,3],[103,3],[102,3],[101,3],[110,3],[75,3],[74,3],[73,3],[35,3],[34,3],[33,3],[32,3],[31,3],[25,3],[23,3],[22,3],[21,3],[36,3],[20,3],[18,3],[17,3],[16,3],[15,3],[14,3],[12,3],[10,3],[9,3],[3,3],[19,3],[42,3],[43,3],[44,3],[72,3],[71,3],[70,3],[69,3],[68,3],[67,3],[61,3],[60,3],[59,3],[58,3],[57,3],[56,3],[55,3],[54,3],[53,3],[52,3],[50,3],[48,3],[47,3],[46,3],[45,3],[121,3],[122,3],[123,3],[124,3],[203,3],[202,3],[201,3],[200,3],[199,3],[198,3],[197,3],[196,3],[195,3],[204,3],[194,3],[192,3],[191,3],[190,3],[189,3],[188,3],[187,3],[186,3],[185,3],[184,3],[193,3],[205,3],[211,3],[212,3],[233,3],[232,3],[231,3],[230,3],[229,3],[228,3],[227,3],[226,3],[225,3],[224,3],[223,3],[222,3],[221,3],[220,3],[219,3],[218,3],[217,3],[216,3],[215,3],[214,3],[213,3],[183,3],[455,3],[177,3],[175,3],[144,3],[143,3],[142,3],[141,3],[140,3],[139,3],[138,3],[137,3],[136,3],[145,3],[135,3],[133,3],[132,3],[131,3],[130,3],[129,3],[128,3],[127,3],[126,3],[125,3],[134,3],[146,3],[147,3],[148,3],[174,3],[173,3],[172,3],[171,3],[170,3],[169,3],[168,3],[167,3],[166,3],[165,3],[164,3],[163,3],[162,3],[161,3],[160,3],[159,3],[158,3],[152,3],[151,3],[150,3],[149,3],[176,3],[456,3]]","1":"[[2,3],[316,3],[315,3],[314,3],[313,3],[312,3],[311,3],[310,3],[309,3],[308,3],[317,3],[307,3],[300,3],[299,3],[298,3],[297,3],[296,3],[295,3],[294,3],[293,3],[292,3],[301,3],[291,3],[318,3],[320,3],[340,3],[339,3],[338,3],[337,3],[336,3],[335,3],[334,3],[333,3],[332,3],[319,3],[331,3],[329,3],[328,3],[327,3],[326,3],[325,3],[324,3],[323,3],[322,3],[321,3],[330,3],[290,3],[289,3],[288,3],[257,3],[256,3],[255,3],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[258,3],[248,3],[246,3],[245,3],[244,3],[243,3],[242,3],[241,3],[240,3],[239,3],[238,3],[247,3],[259,3],[260,3],[261,3],[287,3],[281,3],[280,3],[279,3],[278,3],[277,3],[276,3],[275,3],[274,3],[273,3],[272,3],[271,3],[270,3],[269,3],[268,3],[267,3],[266,3],[265,3],[264,3],[263,3],[262,3],[341,3],[237,3],[342,3],[344,3],[428,3],[422,3],[421,3],[420,3],[419,3],[418,3],[417,3],[416,3],[415,3],[429,3],[414,3],[412,3],[411,3],[410,3],[409,3],[408,3],[407,3],[406,3],[405,3],[404,3],[413,3],[403,3],[430,3],[434,3],[454,3],[453,3],[452,3],[451,3],[450,3],[449,3],[448,3],[447,3],[446,3],[432,3],[445,3],[443,3],[442,3],[441,3],[440,3],[439,3],[438,3],[437,3],[436,3],[435,3],[444,3],[402,3],[401,3],[400,3],[374,3],[373,3],[372,3],[371,3],[370,3],[369,3],[368,3],[367,3],[366,3],[375,3],[365,3],[363,3],[362,3],[361,3],[360,3],[359,3],[353,3],[352,3],[351,3],[345,3],[364,3],[376,3],[377,3],[378,3],[399,3],[398,3],[397,3],[396,3],[395,3],[394,3],[393,3],[392,3],[391,3],[390,3],[389,3],[388,3],[387,3],[386,3],[385,3],[384,3],[383,3],[382,3],[381,3],[380,3],[379,3],[343,3],[236,3],[235,3],[234,3],[96,3],[95,3],[94,3],[93,3],[92,3],[91,3],[90,3],[89,3],[88,3],[97,3],[87,3],[85,3],[84,3],[83,3],[82,3],[81,3],[80,3],[79,3],[78,3],[77,3],[86,3],[76,3],[98,3],[100,3],[120,3],[119,3],[118,3],[117,3],[116,3],[115,3],[114,3],[113,3],[112,3],[99,3],[111,3],[109,3],[108,3],[107,3],[106,3],[105,3],[104,3],[103,3],[102,3],[101,3],[110,3],[75,3],[74,3],[73,3],[35,3],[34,3],[33,3],[32,3],[31,3],[25,3],[23,3],[22,3],[21,3],[36,3],[20,3],[18,3],[17,3],[16,3],[15,3],[14,3],[12,3],[10,3],[9,3],[3,3],[19,3],[42,3],[43,3],[44,3],[72,3],[71,3],[70,3],[69,3],[68,3],[67,3],[61,3],[60,3],[59,3],[58,3],[57,3],[56,3],[55,3],[54,3],[53,3],[52,3],[50,3],[48,3],[47,3],[46,3],[45,3],[121,3],[122,3],[123,3],[124,3],[203,3],[202,3],[201,3],[200,3],[199,3],[198,3],[197,3],[196,3],[195,3],[204,3],[194,3],[192,3],[191,3],[190,3],[189,3],[188,3],[187,3],[186,3],[185,3],[184,3],[193,3],[205,3],[211,3],[212,3],[233,3],[232,3],[231,3],[230,3],[229,3],[228,3],[227,3],[226,3],[225,3],[224,3],[223,3],[222,3],[221,3],[220,3],[219,3],[218,3],[217,3],[216,3],[215,3],[214,3],[213,3],[183,3],[455,3],[177,3],[175,3],[144,3],[143,3],[142,3],[141,3],[140,3],[139,3],[138,3],[137,3],[136,3],[145,3],[135,3],[133,3],[132,3],[131,3],[130,3],[129,3],[128,3],[127,3],[126,3],[125,3],[134,3],[146,3],[147,3],[148,3],[174,3],[173,3],[172,3],[171,3],[170,3],[169,3],[168,3],[167,3],[166,3],[165,3],[164,3],[163,3],[162,3],[161,3],[160,3],[159,3],[158,3],[152,3],[151,3],[150,3],[149,3],[176,3],[456,3]]","2":"[[2,3],[316,3],[315,3],[314,3],[313,3],[312,3],[311,3],[310,3],[309,3],[308,3],[317,3],[307,3],[300,3],[299,3],[298,3],[297,3],[296,3],[295,3],[294,3],[293,3],[292,3],[301,3],[291,3],[318,3],[320,3],[340,3],[339,3],[338,3],[337,3],[336,3],[335,3],[334,3],[333,3],[332,3],[319,3],[331,3],[329,3],[328,3],[327,3],[326,3],[325,3],[324,3],[323,3],[322,3],[321,3],[330,3],[290,3],[289,3],[288,3],[257,3],[256,3],[255,3],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[258,3],[248,3],[246,3],[245,3],[244,3],[243,3],[242,3],[241,3],[240,3],[239,3],[238,3],[247,3],[259,3],[260,3],[261,3],[287,3],[281,3],[280,3],[279,3],[278,3],[277,3],[276,3],[275,3],[274,3],[273,3],[272,3],[271,3],[270,3],[269,3],[268,3],[267,3],[266,3],[265,3],[264,3],[263,3],[262,3],[341,3],[237,3],[342,3],[344,3],[428,3],[422,3],[421,3],[420,3],[419,3],[418,3],[417,3],[416,3],[415,3],[429,3],[414,3],[412,3],[411,3],[410,3],[409,3],[408,3],[407,3],[406,3],[405,3],[404,3],[413,3],[403,3],[430,3],[434,3],[454,3],[453,3],[452,3],[451,3],[450,3],[449,3],[448,3],[447,3],[446,3],[432,3],[445,3],[443,3],[442,3],[441,3],[440,3],[439,3],[438,3],[437,3],[436,3],[435,3],[444,3],[402,3],[401,3],[400,3],[374,3],[373,3],[372,3],[371,3],[370,3],[369,3],[368,3],[367,3],[366,3],[375,3],[365,3],[363,3],[362,3],[361,3],[360,3],[359,3],[353,3],[352,3],[351,3],[345,3],[364,3],[376,3],[377,3],[378,3],[399,3],[398,3],[397,3],[396,3],[395,3],[394,3],[393,3],[392,3],[391,3],[390,3],[389,3],[388,3],[387,3],[386,3],[385,3],[384,3],[383,3],[382,3],[381,3],[380,3],[379,3],[343,3],[236,3],[235,3],[234,3],[96,3],[95,3],[94,3],[93,3],[92,3],[91,3],[90,3],[89,3],[88,3],[97,3],[87,3],[85,3],[84,3],[83,3],[82,3],[81,3],[80,3],[79,3],[78,3],[77,3],[86,3],[76,3],[98,3],[100,3],[120,3],[119,3],[118,3],[117,3],[116,3],[115,3],[114,3],[113,3],[112,3],[99,3],[111,3],[109,3],[108,3],[107,3],[106,3],[105,3],[104,3],[103,3],[102,3],[101,3],[110,3],[75,3],[74,3],[73,3],[35,3],[34,3],[33,3],[32,3],[31,3],[25,3],[23,3],[22,3],[21,3],[36,3],[20,3],[18,3],[17,3],[16,3],[15,3],[14,3],[12,3],[10,3],[9,3],[3,3],[19,3],[42,3],[43,3],[44,3],[72,3],[71,3],[70,3],[69,3],[68,3],[67,3],[61,3],[60,3],[59,3],[58,3],[57,3],[56,3],[55,3],[54,3],[53,3],[52,3],[50,3],[48,3],[47,3],[46,3],[45,3],[121,3],[122,3],[123,3],[124,3],[203,3],[202,3],[201,3],[200,3],[199,3],[198,3],[197,3],[196,3],[195,3],[204,3],[194,3],[192,3],[191,3],[190,3],[189,3],[188,3],[187,3],[186,3],[185,3],[184,3],[193,3],[205,3],[211,3],[212,3],[233,3],[232,3],[231,3],[230,3],[229,3],[228,3],[227,3],[226,3],[225,3],[224,3],[223,3],[222,3],[221,3],[220,3],[219,3],[218,3],[217,3],[216,3],[215,3],[214,3],[213,3],[183,3],[455,3],[177,3],[175,3],[144,3],[143,3],[142,3],[141,3],[140,3],[139,3],[138,3],[137,3],[136,3],[145,3],[135,3],[133,3],[132,3],[131,3],[130,3],[129,3],[128,3],[127,3],[126,3],[125,3],[134,3],[146,3],[147,3],[148,3],[174,3],[173,3],[172,3],[171,3],[170,3],[169,3],[168,3],[167,3],[166,3],[165,3],[164,3],[163,3],[162,3],[161,3],[160,3],[159,3],[158,3],[152,3],[151,3],[150,3],[149,3],[176,3],[456,3]]","6":"[[2,3],[316,3],[315,3],[314,3],[313,3],[312,3],[311,3],[310,3],[309,3],[308,3],[317,3],[307,3],[300,3],[299,3],[298,3],[297,3],[296,3],[295,3],[294,3],[293,3],[292,3],[301,3],[291,3],[318,3],[320,3],[340,3],[339,3],[338,3],[337,3],[336,3],[335,3],[334,3],[333,3],[332,3],[319,3],[331,3],[329,3],[328,3],[327,3],[326,3],[325,3],[324,3],[323,3],[322,3],[321,3],[330,3],[290,3],[289,3],[288,3],[257,3],[256,3],[255,3],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[258,3],[248,3],[246,3],[245,3],[244,3],[243,3],[242,3],[241,3],[240,3],[239,3],[238,3],[247,3],[259,3],[260,3],[261,3],[287,3],[281,3],[280,3],[279,3],[278,3],[277,3],[276,3],[275,3],[274,3],[273,3],[272,3],[271,3],[270,3],[269,3],[268,3],[267,3],[266,3],[265,3],[264,3],[263,3],[262,3],[341,3],[237,3],[342,3],[344,3],[428,3],[422,3],[421,3],[420,3],[419,3],[418,3],[417,3],[416,3],[415,3],[429,3],[414,3],[412,3],[411,3],[410,3],[409,3],[408,3],[407,3],[406,3],[405,3],[404,3],[413,3],[403,3],[430,3],[434,3],[454,3],[453,3],[452,3],[451,3],[450,3],[449,3],[448,3],[447,3],[446,3],[432,3],[445,3],[443,3],[442,3],[441,3],[440,3],[439,3],[438,3],[437,3],[436,3],[435,3],[444,3],[402,3],[401,3],[400,3],[374,3],[373,3],[372,3],[371,3],[370,3],[369,3],[368,3],[367,3],[366,3],[375,3],[365,3],[363,3],[362,3],[361,3],[360,3],[359,3],[353,3],[352,3],[351,3],[345,3],[364,3],[376,3],[377,3],[378,3],[399,3],[398,3],[397,3],[396,3],[395,3],[394,3],[393,3],[392,3],[391,3],[390,3],[389,3],[388,3],[387,3],[386,3],[385,3],[384,3],[383,3],[382,3],[381,3],[380,3],[379,3],[343,3],[236,3],[235,3],[234,3],[96,3],[95,3],[94,3],[93,3],[92,3],[91,3],[90,3],[89,3],[88,3],[97,3],[87,3],[85,3],[84,3],[83,3],[82,3],[81,3],[80,3],[79,3],[78,3],[77,3],[86,3],[76,3],[98,3],[100,3],[120,3],[119,3],[118,3],[117,3],[116,3],[115,3],[114,3],[113,3],[112,3],[99,3],[111,3],[109,3],[108,3],[107,3],[106,3],[105,3],[104,3],[103,3],[102,3],[101,3],[110,3],[75,3],[74,3],[73,3],[35,3],[34,3],[33,3],[32,3],[31,3],[25,3],[23,3],[22,3],[21,3],[36,3],[20,3],[18,3],[17,3],[16,3],[15,3],[14,3],[12,3],[10,3],[9,3],[3,3],[19,3],[42,3],[43,3],[44,3],[72,3],[71,3],[70,3],[69,3],[68,3],[67,3],[61,3],[60,3],[59,3],[58,3],[57,3],[56,3],[55,3],[54,3],[53,3],[52,3],[50,3],[48,3],[47,3],[46,3],[45,3],[121,3],[122,3],[123,3],[124,3],[203,3],[202,3],[201,3],[200,3],[199,3],[198,3],[197,3],[196,3],[195,3],[204,3],[194,3],[192,3],[191,3],[190,3],[189,3],[188,3],[187,3],[186,3],[185,3],[184,3],[193,3],[205,3],[211,3],[212,3],[233,3],[232,3],[231,3],[230,3],[229,3],[228,3],[227,3],[226,3],[225,3],[224,3],[223,3],[222,3],[221,3],[220,3],[219,3],[218,3],[217,3],[216,3],[215,3],[214,3],[213,3],[183,3],[455,3],[177,3],[175,3],[144,3],[143,3],[142,3],[141,3],[140,3],[139,3],[138,3],[137,3],[136,3],[145,3],[135,3],[133,3],[132,3],[131,3],[130,3],[129,3],[128,3],[127,3],[126,3],[125,3],[134,3],[146,3],[147,3],[148,3],[174,3],[173,3],[172,3],[171,3],[170,3],[169,3],[168,3],[167,3],[166,3],[165,3],[164,3],[163,3],[162,3],[161,3],[160,3],[159,3],[158,3],[152,3],[151,3],[150,3],[149,3],[176,3],[456,3]]","7":"[[2,3],[316,3],[315,3],[314,3],[313,3],[312,3],[311,3],[310,3],[309,3],[308,3],[317,3],[307,3],[300,3],[299,3],[298,3],[297,3],[296,3],[295,3],[294,3],[293,3],[292,3],[301,3],[291,3],[318,3],[320,3],[340,3],[339,3],[338,3],[337,3],[336,3],[335,3],[334,3],[333,3],[332,3],[319,3],[331,3],[329,3],[328,3],[327,3],[326,3],[325,3],[324,3],[323,3],[322,3],[321,3],[330,3],[290,3],[289,3],[288,3],[257,3],[256,3],[255,3],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[258,3],[248,3],[246,3],[245,3],[244,3],[243,3],[242,3],[241,3],[240,3],[239,3],[238,3],[247,3],[259,3],[260,3],[261,3],[287,3],[281,3],[280,3],[279,3],[278,3],[277,3],[276,3],[275,3],[274,3],[273,3],[272,3],[271,3],[270,3],[269,3],[268,3],[267,3],[266,3],[265,3],[264,3],[263,3],[262,3],[341,3],[237,3],[342,3],[344,3],[428,3],[422,3],[421,3],[420,3],[419,3],[418,3],[417,3],[416,3],[415,3],[429,3],[414,3],[412,3],[411,3],[410,3],[409,3],[408,3],[407,3],[406,3],[405,3],[404,3],[413,3],[403,3],[430,3],[434,3],[454,3],[453,3],[452,3],[451,3],[450,3],[449,3],[448,3],[447,3],[446,3],[432,3],[445,3],[443,3],[442,3],[441,3],[440,3],[439,3],[438,3],[437,3],[436,3],[435,3],[444,3],[402,3],[401,3],[400,3],[374,3],[373,3],[372,3],[371,3],[370,3],[369,3],[368,3],[367,3],[366,3],[375,3],[365,3],[363,3],[362,3],[361,3],[360,3],[359,3],[353,3],[352,3],[351,3],[345,3],[364,3],[376,3],[377,3],[378,3],[399,3],[398,3],[397,3],[396,3],[395,3],[394,3],[393,3],[392,3],[391,3],[390,3],[389,3],[388,3],[387,3],[386,3],[385,3],[384,3],[383,3],[382,3],[381,3],[380,3],[379,3],[343,3],[236,3],[235,3],[234,3],[96,3],[95,3],[94,3],[93,3],[92,3],[91,3],[90,3],[89,3],[88,3],[97,3],[87,3],[85,3],[84,3],[83,3],[82,3],[81,3],[80,3],[79,3],[78,3],[77,3],[86,3],[76,3],[98,3],[100,3],[120,3],[119,3],[118,3],[117,3],[116,3],[115,3],[114,3],[113,3],[112,3],[99,3],[111,3],[109,3],[108,3],[107,3],[106,3],[105,3],[104,3],[103,3],[102,3],[101,3],[110,3],[75,3],[74,3],[73,3],[35,3],[34,3],[33,3],[32,3],[31,3],[25,3],[23,3],[22,3],[21,3],[36,3],[20,3],[18,3],[17,3],[16,3],[15,3],[14,3],[12,3],[10,3],[9,3],[3,3],[19,3],[42,3],[43,3],[44,3],[72,3],[71,3],[70,3],[69,3],[68,3],[67,3],[61,3],[60,3],[59,3],[58,3],[57,3],[56,3],[55,3],[54,3],[53,3],[52,3],[50,3],[48,3],[47,3],[46,3],[45,3],[121,3],[122,3],[123,3],[124,3],[203,3],[202,3],[201,3],[200,3],[199,3],[198,3],[197,3],[196,3],[195,3],[204,3],[194,3],[192,3],[191,3],[190,3],[189,3],[188,3],[187,3],[186,3],[185,3],[184,3],[193,3],[205,3],[211,3],[212,3],[233,3],[232,3],[231,3],[230,3],[229,3],[228,3],[227,3],[226,3],[225,3],[224,3],[223,3],[222,3],[221,3],[220,3],[219,3],[218,3],[217,3],[216,3],[215,3],[214,3],[213,3],[183,3],[455,3],[177,3],[175,3],[144,3],[143,3],[142,3],[141,3],[140,3],[139,3],[138,3],[137,3],[136,3],[145,3],[135,3],[133,3],[132,3],[131,3],[130,3],[129,3],[128,3],[127,3],[126,3],[125,3],[134,3],[146,3],[147,3],[148,3],[174,3],[173,3],[172,3],[171,3],[170,3],[169,3],[168,3],[167,3],[166,3],[165,3],[164,3],[163,3],[162,3],[161,3],[160,3],[159,3],[158,3],[152,3],[151,3],[150,3],[149,3],[176,3],[456,3]]","8":"[[2,1],[316,1],[315,1],[314,1],[313,1],[312,1],[311,1],[310,1],[309,1],[308,1],[317,1],[307,1],[300,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[301,1],[291,1],[318,1],[320,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[319,1],[331,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[330,1],[290,1],[289,1],[288,1],[257,1],[256,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[258,1],[248,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[238,1],[247,1],[259,1],[260,1],[261,1],[287,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[341,1],[237,1],[342,1],[344,1],[428,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[429,1],[414,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[413,1],[403,1],[430,1],[434,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[432,1],[445,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[444,1],[402,1],[401,1],[400,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[368,1],[367,1],[366,1],[375,1],[365,1],[363,1],[362,1],[361,1],[360,1],[359,1],[353,1],[352,1],[351,1],[345,1],[364,1],[376,1],[377,1],[378,1],[399,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[343,1],[236,1],[235,1],[234,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[97,1],[87,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[86,1],[76,1],[98,1],[100,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[99,1],[111,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[110,1],[75,1],[74,1],[73,1],[35,1],[34,1],[33,1],[32,1],[31,1],[25,1],[23,1],[22,1],[21,1],[36,1],[20,1],[18,1],[17,1],[16,1],[15,1],[14,1],[12,1],[10,1],[9,1],[3,1],[19,1],[42,1],[43,1],[44,1],[72,1],[71,1],[70,1],[69,1],[68,1],[67,1],[61,1],[60,1],[59,1],[58,1],[57,1],[56,1],[55,1],[54,1],[53,1],[52,1],[50,1],[48,1],[47,1],[46,1],[45,1],[121,1],[122,1],[123,1],[124,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[204,1],[194,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[193,1],[205,1],[211,1],[212,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[183,1],[455,1],[177,1],[175,1],[144,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[145,1],[135,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[134,1],[146,1],[147,1],[148,1],[174,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[152,1],[151,1],[150,1],[149,1],[176,1],[456,1]]","this":"[[229,5],[269,5],[268,5],[267,5],[266,5],[265,5],[264,5],[263,5],[262,5],[261,5],[270,5],[260,5],[258,5],[257,5],[256,5],[255,5],[254,5],[253,5],[252,5],[251,5],[250,5],[259,5],[271,5],[272,5],[273,5],[294,5],[293,5],[292,5],[291,5],[290,5],[289,5],[288,5],[287,5],[411,5],[412,5],[413,5],[414,5],[415,5],[281,5],[280,5],[279,5],[278,5],[277,5],[276,5],[275,5],[274,5],[249,5],[295,5],[248,5],[246,5],[220,5],[219,5],[218,5],[217,5],[216,5],[215,5],[214,5],[213,5],[212,5],[221,5],[211,5],[417,5],[418,5],[419,5],[420,5],[205,5],[204,5],[203,5],[202,5],[201,5],[416,5],[222,5],[223,5],[224,5],[245,5],[244,5],[243,5],[242,5],[241,5],[240,5],[239,5],[238,5],[237,5],[236,5],[235,5],[234,5],[233,5],[232,5],[231,5],[230,5],[456,5],[228,5],[227,5],[226,5],[225,5],[247,5],[296,5],[297,5],[298,5],[368,5],[367,5],[366,5],[365,5],[364,5],[363,5],[362,5],[361,5],[360,5],[369,5],[359,5],[397,5],[398,5],[399,5],[400,5],[353,5],[352,5],[351,5],[401,5],[402,5],[396,5],[370,5],[371,5],[372,5],[393,5],[392,5],[391,5],[390,5],[389,5],[388,5],[387,5],[386,5],[385,5],[384,5],[383,5],[382,5],[381,5],[380,5],[379,5],[378,5],[377,5],[376,5],[375,5],[374,5],[373,5],[403,5],[404,5],[405,5],[345,5],[319,5],[318,5],[317,5],[316,5],[315,5],[314,5],[313,5],[312,5],[311,5],[310,5],[309,5],[308,5],[307,5],[406,5],[407,5],[408,5],[409,5],[410,5],[301,5],[300,5],[299,5],[320,5],[200,5],[321,5],[323,5],[344,5],[343,5],[342,5],[341,5],[340,5],[339,5],[338,5],[337,5],[336,5],[335,5],[334,5],[333,5],[332,5],[331,5],[330,5],[329,5],[328,5],[327,5],[326,5],[325,5],[324,5],[322,5],[199,5],[198,5],[197,5],[73,5],[72,5],[71,5],[70,5],[69,5],[68,5],[67,5],[432,5],[434,5],[74,5],[435,5],[60,5],[59,5],[58,5],[57,5],[56,5],[55,5],[54,5],[53,5],[52,5],[61,5],[75,5],[76,5],[77,5],[98,5],[97,5],[96,5],[95,5],[94,5],[93,5],[92,5],[91,5],[90,5],[89,5],[88,5],[87,5],[86,5],[85,5],[84,5],[83,5],[82,5],[81,5],[80,5],[79,5],[78,5],[436,5],[394,5],[50,5],[48,5],[22,5],[21,5],[20,5],[19,5],[18,5],[17,5],[16,5],[15,5],[14,5],[23,5],[449,5],[450,5],[10,5],[9,5],[451,5],[452,5],[453,5],[454,5],[455,5],[3,5],[12,5],[448,5],[25,5],[447,5],[47,5],[46,5],[45,5],[44,5],[43,5],[42,5],[438,5],[439,5],[440,5],[441,5],[442,5],[36,5],[35,5],[34,5],[33,5],[32,5],[31,5],[443,5],[444,5],[445,5],[446,5],[437,5],[100,5],[99,5],[102,5],[168,5],[167,5],[166,5],[165,5],[164,5],[163,5],[162,5],[161,5],[160,5],[159,5],[158,5],[428,5],[429,5],[430,5],[152,5],[151,5],[150,5],[101,5],[148,5],[169,5],[170,5],[171,5],[172,5],[196,5],[195,5],[194,5],[193,5],[192,5],[191,5],[190,5],[189,5],[188,5],[147,5],[187,5],[185,5],[184,5],[183,5],[422,5],[177,5],[176,5],[175,5],[174,5],[173,5],[186,5],[146,5],[149,5],[144,5],[122,5],[121,5],[120,5],[119,5],[118,5],[117,5],[116,5],[115,5],[114,5],[145,5],[113,5],[111,5],[110,5],[109,5],[108,5],[107,5],[106,5],[105,5],[104,5],[103,5],[112,5],[124,5],[123,5],[126,5],[143,5],[142,5],[141,5],[140,5],[139,5],[138,5],[137,5],[136,5],[135,5],[125,5],[134,5],[395,5],[133,5],[132,5],[131,5],[130,5],[129,5],[128,5],[127,5],[423,1],[433,1],[426,1],[427,1],[424,1],[425,1],[421,1],[431,1],[2,1],[357,1],[154,1],[153,1],[66,1],[65,1],[64,1],[63,1],[62,1],[51,1],[49,1],[41,1],[40,1],[39,1],[38,1],[37,1],[30,1],[29,1],[28,1],[27,1],[26,1],[24,1],[13,1],[11,1],[8,1],[7,1],[6,1],[5,1],[4,1],[155,1],[358,1],[156,1],[178,1],[356,1],[355,1],[354,1],[350,1],[349,1],[348,1],[347,1],[346,1],[306,1],[305,1],[304,1],[303,1],[302,1],[286,1],[285,1],[284,1],[283,1],[282,1],[210,1],[209,1],[208,1],[207,1],[206,1],[182,1],[181,1],[180,1],[179,1],[157,1],[457,1]]","article":"[[2,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[313,1],[301,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[300,1],[314,1],[315,1],[316,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[288,1],[342,1],[287,1],[285,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[256,1],[244,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[243,1],[257,1],[258,1],[259,1],[284,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[286,1],[231,1],[343,1],[345,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[344,1],[401,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[370,1],[358,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[357,1],[371,1],[372,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[400,1],[230,1],[229,1],[228,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[84,1],[72,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[71,1],[85,1],[86,1],[87,1],[112,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[59,1],[113,1],[58,1],[56,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[27,1],[15,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[14,1],[28,1],[29,1],[30,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[57,1],[114,1],[115,1],[116,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[199,1],[187,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[186,1],[200,1],[201,1],[202,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[174,1],[173,1],[172,1],[171,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[142,1],[456,1],[143,1],[145,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[144,1],[457,1]]","definition":"[[2,1],[312,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[313,1],[301,1],[299,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[300,1],[314,1],[315,1],[316,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[288,1],[342,1],[287,1],[285,1],[255,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[256,1],[244,1],[242,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[243,1],[257,1],[258,1],[259,1],[284,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[286,1],[231,1],[343,1],[345,1],[426,1],[425,1],[424,1],[423,1],[422,1],[421,1],[420,1],[419,1],[418,1],[417,1],[416,1],[427,1],[415,1],[413,1],[412,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[414,1],[428,1],[429,1],[430,1],[455,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[402,1],[344,1],[401,1],[399,1],[369,1],[368,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[370,1],[358,1],[356,1],[355,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[357,1],[371,1],[372,1],[373,1],[398,1],[397,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[400,1],[230,1],[229,1],[228,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[84,1],[72,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[60,1],[71,1],[85,1],[86,1],[87,1],[112,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[59,1],[113,1],[58,1],[56,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[27,1],[15,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[3,1],[14,1],[28,1],[29,1],[30,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[31,1],[57,1],[114,1],[115,1],[116,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[199,1],[187,1],[185,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[186,1],[200,1],[201,1],[202,1],[227,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[174,1],[173,1],[172,1],[171,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[142,1],[456,1],[143,1],[145,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[144,1],[457,1]]","class":"[[3,1006],[205,1006],[281,1006],[177,1006],[301,1006],[152,1006],[353,1006],[61,1006],[422,1006],[36,1006],[345,1006],[444,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[312,1],[451,1],[299,1],[298,1],[297,1],[296,1],[295,1],[452,1],[294,1],[293,1],[292,1],[291,1],[300,1],[313,1],[314,1],[315,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[450,1],[318,1],[317,1],[316,1],[290,1],[338,1],[289,1],[287,1],[260,1],[259,1],[258,1],[257,1],[256,1],[255,1],[254,1],[253,1],[252,1],[251,1],[261,1],[250,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[241,1],[240,1],[239,1],[249,1],[262,1],[263,1],[264,1],[286,1],[285,1],[284,1],[283,1],[282,1],[453,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[454,1],[267,1],[266,1],[265,1],[288,1],[339,1],[340,1],[341,1],[416,1],[415,1],[414,1],[413,1],[412,1],[411,1],[410,1],[409,1],[448,1],[408,1],[417,1],[407,1],[405,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[397,1],[396,1],[406,1],[418,1],[419,1],[420,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[446,1],[433,1],[432,1],[431,1],[430,1],[429,1],[428,1],[427,1],[426,1],[425,1],[424,1],[423,1],[447,1],[395,1],[394,1],[393,1],[392,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[356,1],[355,1],[354,1],[449,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[238,1],[344,1],[343,1],[342,1],[365,1],[445,1],[366,1],[368,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[367,1],[237,1],[234,1],[235,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[86,1],[85,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[95,1],[71,1],[96,1],[98,1],[121,1],[120,1],[119,1],[118,1],[117,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[97,1],[70,1],[69,1],[68,1],[38,1],[37,1],[25,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[39,1],[40,1],[41,1],[42,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[60,1],[59,1],[58,1],[57,1],[56,1],[122,1],[55,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[54,1],[123,1],[124,1],[125,1],[206,1],[204,1],[203,1],[202,1],[201,1],[200,1],[199,1],[198,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[186,1],[185,1],[184,1],[183,1],[207,1],[208,1],[209,1],[210,1],[455,1],[233,1],[232,1],[231,1],[230,1],[229,1],[228,1],[227,1],[226,1],[225,1],[224,1],[182,1],[223,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[222,1],[236,1],[181,1],[179,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[142,1],[141,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[129,1],[128,1],[127,1],[126,1],[149,1],[150,1],[151,1],[153,1],[178,1],[176,1],[175,1],[174,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[180,1],[166,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[165,1],[456,1]]","vb":"[[3,4],[315,4],[314,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[316,4],[301,4],[299,4],[298,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[300,4],[290,4],[317,4],[319,4],[339,4],[338,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[318,4],[330,4],[328,4],[327,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[329,4],[340,4],[289,4],[287,4],[257,4],[256,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[258,4],[248,4],[246,4],[245,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[247,4],[288,4],[259,4],[261,4],[281,4],[280,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[260,4],[272,4],[270,4],[269,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[271,4],[341,4],[342,4],[343,4],[428,4],[422,4],[420,4],[419,4],[418,4],[417,4],[416,4],[415,4],[414,4],[429,4],[413,4],[411,4],[410,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[412,4],[402,4],[430,4],[434,4],[454,4],[453,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[432,4],[445,4],[443,4],[442,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[444,4],[401,4],[400,4],[399,4],[373,4],[372,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[374,4],[364,4],[362,4],[361,4],[360,4],[359,4],[353,4],[352,4],[351,4],[345,4],[344,4],[363,4],[375,4],[376,4],[377,4],[398,4],[397,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[237,4],[236,4],[235,4],[234,4],[97,4],[96,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[98,4],[88,4],[86,4],[85,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[87,4],[77,4],[99,4],[101,4],[121,4],[120,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[100,4],[112,4],[110,4],[109,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[111,4],[76,4],[75,4],[74,4],[36,4],[35,4],[34,4],[33,4],[32,4],[31,4],[25,4],[23,4],[22,4],[42,4],[21,4],[19,4],[18,4],[17,4],[16,4],[15,4],[14,4],[12,4],[10,4],[9,4],[20,4],[43,4],[44,4],[45,4],[73,4],[72,4],[71,4],[70,4],[69,4],[68,4],[67,4],[61,4],[60,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[50,4],[48,4],[47,4],[46,4],[122,4],[455,4],[123,4],[125,4],[204,4],[203,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[205,4],[195,4],[193,4],[192,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[194,4],[184,4],[211,4],[213,4],[233,4],[232,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[212,4],[224,4],[222,4],[221,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[223,4],[183,4],[177,4],[176,4],[145,4],[144,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[146,4],[136,4],[134,4],[133,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[135,4],[147,4],[148,4],[149,4],[175,4],[174,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[152,4],[151,4],[150,4],[124,4],[456,4]]","c":"[[3,8],[315,8],[314,8],[313,8],[312,8],[311,8],[310,8],[309,8],[308,8],[307,8],[316,8],[301,8],[299,8],[298,8],[297,8],[296,8],[295,8],[294,8],[293,8],[292,8],[291,8],[300,8],[290,8],[317,8],[319,8],[339,8],[338,8],[337,8],[336,8],[335,8],[334,8],[333,8],[332,8],[331,8],[318,8],[330,8],[328,8],[327,8],[326,8],[325,8],[324,8],[323,8],[322,8],[321,8],[320,8],[329,8],[340,8],[289,8],[287,8],[257,8],[256,8],[255,8],[254,8],[253,8],[252,8],[251,8],[250,8],[249,8],[258,8],[248,8],[246,8],[245,8],[244,8],[243,8],[242,8],[241,8],[240,8],[239,8],[238,8],[247,8],[288,8],[259,8],[261,8],[281,8],[280,8],[279,8],[278,8],[277,8],[276,8],[275,8],[274,8],[273,8],[260,8],[272,8],[270,8],[269,8],[268,8],[267,8],[266,8],[265,8],[264,8],[263,8],[262,8],[271,8],[341,8],[342,8],[343,8],[428,8],[422,8],[420,8],[419,8],[418,8],[417,8],[416,8],[415,8],[414,8],[429,8],[413,8],[411,8],[410,8],[409,8],[408,8],[407,8],[406,8],[405,8],[404,8],[403,8],[412,8],[402,8],[430,8],[434,8],[454,8],[453,8],[452,8],[451,8],[450,8],[449,8],[448,8],[447,8],[446,8],[432,8],[445,8],[443,8],[442,8],[441,8],[440,8],[439,8],[438,8],[437,8],[436,8],[435,8],[444,8],[401,8],[400,8],[399,8],[373,8],[372,8],[371,8],[370,8],[369,8],[368,8],[367,8],[366,8],[365,8],[374,8],[364,8],[362,8],[361,8],[360,8],[359,8],[353,8],[352,8],[351,8],[345,8],[344,8],[363,8],[375,8],[376,8],[377,8],[398,8],[397,8],[396,8],[395,8],[394,8],[393,8],[392,8],[391,8],[390,8],[389,8],[388,8],[387,8],[386,8],[385,8],[384,8],[383,8],[382,8],[381,8],[380,8],[379,8],[378,8],[237,8],[236,8],[235,8],[234,8],[97,8],[96,8],[95,8],[94,8],[93,8],[92,8],[91,8],[90,8],[89,8],[98,8],[88,8],[86,8],[85,8],[84,8],[83,8],[82,8],[81,8],[80,8],[79,8],[78,8],[87,8],[77,8],[99,8],[101,8],[121,8],[120,8],[119,8],[118,8],[117,8],[116,8],[115,8],[114,8],[113,8],[100,8],[112,8],[110,8],[109,8],[108,8],[107,8],[106,8],[105,8],[104,8],[103,8],[102,8],[111,8],[76,8],[75,8],[74,8],[36,8],[35,8],[34,8],[33,8],[32,8],[31,8],[25,8],[23,8],[22,8],[42,8],[21,8],[19,8],[18,8],[17,8],[16,8],[15,8],[14,8],[12,8],[10,8],[9,8],[20,8],[43,8],[44,8],[45,8],[73,8],[72,8],[71,8],[70,8],[69,8],[68,8],[67,8],[61,8],[60,8],[59,8],[58,8],[57,8],[56,8],[55,8],[54,8],[53,8],[52,8],[50,8],[48,8],[47,8],[46,8],[122,8],[455,8],[123,8],[125,8],[204,8],[203,8],[202,8],[201,8],[200,8],[199,8],[198,8],[197,8],[196,8],[205,8],[195,8],[193,8],[192,8],[191,8],[190,8],[189,8],[188,8],[187,8],[186,8],[185,8],[194,8],[184,8],[211,8],[213,8],[233,8],[232,8],[231,8],[230,8],[229,8],[228,8],[227,8],[226,8],[225,8],[212,8],[224,8],[222,8],[221,8],[220,8],[219,8],[218,8],[217,8],[216,8],[215,8],[214,8],[223,8],[183,8],[177,8],[176,8],[145,8],[144,8],[143,8],[142,8],[141,8],[140,8],[139,8],[138,8],[137,8],[146,8],[136,8],[134,8],[133,8],[132,8],[131,8],[130,8],[129,8],[128,8],[127,8],[126,8],[135,8],[147,8],[148,8],[149,8],[175,8],[174,8],[173,8],[172,8],[171,8],[170,8],[169,8],[168,8],[167,8],[166,8],[165,8],[164,8],[163,8],[162,8],[161,8],[160,8],[159,8],[158,8],[152,8],[151,8],[150,8],[124,8],[456,8]]","f":"[[3,4],[315,4],[314,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[316,4],[301,4],[299,4],[298,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[300,4],[290,4],[317,4],[319,4],[339,4],[338,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[318,4],[330,4],[328,4],[327,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[329,4],[340,4],[289,4],[287,4],[257,4],[256,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[258,4],[248,4],[246,4],[245,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[247,4],[288,4],[259,4],[261,4],[281,4],[280,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[260,4],[272,4],[270,4],[269,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[271,4],[341,4],[342,4],[343,4],[428,4],[422,4],[420,4],[419,4],[418,4],[417,4],[416,4],[415,4],[414,4],[429,4],[413,4],[411,4],[410,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[412,4],[402,4],[430,4],[434,4],[454,4],[453,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[432,4],[445,4],[443,4],[442,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[444,4],[401,4],[400,4],[399,4],[373,4],[372,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[374,4],[364,4],[362,4],[361,4],[360,4],[359,4],[353,4],[352,4],[351,4],[345,4],[344,4],[363,4],[375,4],[376,4],[377,4],[398,4],[397,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[237,4],[236,4],[235,4],[234,4],[97,4],[96,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[98,4],[88,4],[86,4],[85,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[87,4],[77,4],[99,4],[101,4],[121,4],[120,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[100,4],[112,4],[110,4],[109,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[111,4],[76,4],[75,4],[74,4],[36,4],[35,4],[34,4],[33,4],[32,4],[31,4],[25,4],[23,4],[22,4],[42,4],[21,4],[19,4],[18,4],[17,4],[16,4],[15,4],[14,4],[12,4],[10,4],[9,4],[20,4],[43,4],[44,4],[45,4],[73,4],[72,4],[71,4],[70,4],[69,4],[68,4],[67,4],[61,4],[60,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[50,4],[48,4],[47,4],[46,4],[122,4],[455,4],[123,4],[125,4],[204,4],[203,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[205,4],[195,4],[193,4],[192,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[194,4],[184,4],[211,4],[213,4],[233,4],[232,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[212,4],[224,4],[222,4],[221,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[223,4],[183,4],[177,4],[176,4],[145,4],[144,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[146,4],[136,4],[134,4],[133,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[135,4],[147,4],[148,4],[149,4],[175,4],[174,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[152,4],[151,4],[150,4],[124,4],[456,4]]","jscript":"[[3,4],[315,4],[314,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[316,4],[301,4],[299,4],[298,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[300,4],[290,4],[317,4],[319,4],[339,4],[338,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[318,4],[330,4],[328,4],[327,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[329,4],[340,4],[289,4],[287,4],[257,4],[256,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[258,4],[248,4],[246,4],[245,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[247,4],[288,4],[259,4],[261,4],[281,4],[280,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[260,4],[272,4],[270,4],[269,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[271,4],[341,4],[342,4],[343,4],[428,4],[422,4],[420,4],[419,4],[418,4],[417,4],[416,4],[415,4],[414,4],[429,4],[413,4],[411,4],[410,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[412,4],[402,4],[430,4],[434,4],[454,4],[453,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[432,4],[445,4],[443,4],[442,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[444,4],[401,4],[400,4],[399,4],[373,4],[372,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[374,4],[364,4],[362,4],[361,4],[360,4],[359,4],[353,4],[352,4],[351,4],[345,4],[344,4],[363,4],[375,4],[376,4],[377,4],[398,4],[397,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[237,4],[236,4],[235,4],[234,4],[97,4],[96,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[98,4],[88,4],[86,4],[85,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[87,4],[77,4],[99,4],[101,4],[121,4],[120,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[100,4],[112,4],[110,4],[109,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[111,4],[76,4],[75,4],[74,4],[36,4],[35,4],[34,4],[33,4],[32,4],[31,4],[25,4],[23,4],[22,4],[42,4],[21,4],[19,4],[18,4],[17,4],[16,4],[15,4],[14,4],[12,4],[10,4],[9,4],[20,4],[43,4],[44,4],[45,4],[73,4],[72,4],[71,4],[70,4],[69,4],[68,4],[67,4],[61,4],[60,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[50,4],[48,4],[47,4],[46,4],[122,4],[455,4],[123,4],[125,4],[204,4],[203,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[205,4],[195,4],[193,4],[192,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[194,4],[184,4],[211,4],[213,4],[233,4],[232,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[212,4],[224,4],[222,4],[221,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[223,4],[183,4],[177,4],[176,4],[145,4],[144,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[146,4],[136,4],[134,4],[133,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[135,4],[147,4],[148,4],[149,4],[175,4],[174,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[152,4],[151,4],[150,4],[124,4],[456,4]]","copy":"[[3,4],[315,4],[314,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[316,4],[301,4],[299,4],[298,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[300,4],[290,4],[317,4],[319,4],[339,4],[338,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[318,4],[330,4],[328,4],[327,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[329,4],[340,4],[289,4],[287,4],[257,4],[256,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[258,4],[248,4],[246,4],[245,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[247,4],[288,4],[259,4],[261,4],[281,4],[280,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[260,4],[272,4],[270,4],[269,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[271,4],[341,4],[342,4],[343,4],[428,4],[422,4],[420,4],[419,4],[418,4],[417,4],[416,4],[415,4],[414,4],[429,4],[413,4],[411,4],[410,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[412,4],[402,4],[430,4],[434,4],[454,4],[453,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[432,4],[445,4],[443,4],[442,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[444,4],[401,4],[400,4],[399,4],[373,4],[372,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[374,4],[364,4],[362,4],[361,4],[360,4],[359,4],[353,4],[352,4],[351,4],[345,4],[344,4],[363,4],[375,4],[376,4],[377,4],[398,4],[397,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[237,4],[236,4],[235,4],[234,4],[97,4],[96,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[98,4],[88,4],[86,4],[85,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[87,4],[77,4],[99,4],[101,4],[121,4],[120,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[100,4],[112,4],[110,4],[109,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[111,4],[76,4],[75,4],[74,4],[36,4],[35,4],[34,4],[33,4],[32,4],[31,4],[25,4],[23,4],[22,4],[42,4],[21,4],[19,4],[18,4],[17,4],[16,4],[15,4],[14,4],[12,4],[10,4],[9,4],[20,4],[43,4],[44,4],[45,4],[73,4],[72,4],[71,4],[70,4],[69,4],[68,4],[67,4],[61,4],[60,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[50,4],[48,4],[47,4],[46,4],[122,4],[455,4],[123,4],[125,4],[204,4],[203,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[205,4],[195,4],[193,4],[192,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[194,4],[184,4],[211,4],[213,4],[233,4],[232,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[212,4],[224,4],[222,4],[221,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[223,4],[183,4],[177,4],[176,4],[145,4],[144,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[146,4],[136,4],[134,4],[133,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[135,4],[147,4],[148,4],[149,4],[175,4],[174,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[152,4],[151,4],[150,4],[124,4],[456,4]]","public":"[[36,6],[3,5],[278,5],[277,5],[276,5],[275,5],[274,5],[273,5],[272,5],[271,5],[270,5],[269,5],[268,5],[267,5],[266,5],[265,5],[264,5],[263,5],[279,5],[280,5],[281,5],[293,5],[320,5],[319,5],[318,5],[317,5],[316,5],[315,5],[314,5],[262,5],[313,5],[300,5],[299,5],[298,5],[297,5],[296,5],[295,5],[294,5],[301,5],[261,5],[260,5],[259,5],[236,5],[235,5],[234,5],[233,5],[232,5],[231,5],[230,5],[237,5],[229,5],[227,5],[226,5],[225,5],[224,5],[223,5],[222,5],[221,5],[228,5],[238,5],[239,5],[240,5],[258,5],[257,5],[256,5],[255,5],[254,5],[253,5],[252,5],[251,5],[250,5],[249,5],[248,5],[247,5],[246,5],[245,5],[244,5],[243,5],[242,5],[321,5],[322,5],[323,5],[324,5],[399,5],[398,5],[397,5],[396,5],[395,5],[394,5],[393,5],[400,5],[392,5],[390,5],[389,5],[388,5],[387,5],[386,5],[385,5],[384,5],[391,5],[401,5],[402,5],[403,5],[420,5],[419,5],[418,5],[417,5],[416,5],[415,5],[414,5],[413,5],[412,5],[411,5],[410,5],[409,5],[408,5],[407,5],[406,5],[405,5],[404,5],[383,5],[220,5],[382,5],[380,5],[340,5],[339,5],[338,5],[337,5],[336,5],[335,5],[334,5],[341,5],[333,5],[331,5],[330,5],[329,5],[328,5],[327,5],[326,5],[325,5],[332,5],[342,5],[343,5],[344,5],[379,5],[378,5],[377,5],[376,5],[375,5],[374,5],[373,5],[372,5],[371,5],[370,5],[369,5],[368,5],[367,5],[366,5],[365,5],[353,5],[345,5],[381,5],[219,5],[241,5],[217,5],[107,5],[108,5],[109,5],[110,5],[218,5],[112,5],[113,5],[114,5],[115,5],[116,5],[117,5],[118,5],[119,5],[120,5],[121,5],[122,5],[123,5],[137,5],[136,5],[135,5],[134,5],[133,5],[132,5],[106,5],[131,5],[129,5],[128,5],[127,5],[126,5],[125,5],[124,5],[130,5],[105,5],[104,5],[103,5],[84,5],[83,5],[82,5],[81,5],[80,5],[79,5],[85,5],[78,5],[76,5],[75,5],[74,5],[73,5],[61,5],[59,5],[77,5],[138,5],[86,5],[88,5],[102,5],[101,5],[100,5],[99,5],[98,5],[97,5],[87,5],[96,5],[94,5],[93,5],[92,5],[91,5],[90,5],[89,5],[95,5],[139,5],[111,5],[199,5],[164,5],[165,5],[166,5],[167,5],[168,5],[169,5],[170,5],[171,5],[172,5],[173,5],[174,5],[201,5],[175,5],[177,5],[200,5],[140,5],[198,5],[197,5],[196,5],[195,5],[194,5],[193,5],[192,5],[191,5],[176,5],[190,5],[202,5],[204,5],[141,5],[203,5],[142,5],[143,5],[144,5],[145,5],[146,5],[189,5],[148,5],[149,5],[150,5],[151,5],[152,5],[147,5],[205,5],[17,4],[54,4],[53,4],[52,4],[48,4],[23,4],[25,4],[22,4],[21,4],[20,4],[18,4],[47,4],[19,4],[437,4],[15,4],[454,4],[453,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[445,4],[444,4],[443,4],[442,4],[441,4],[440,4],[439,4],[438,4],[55,4],[436,4],[435,4],[434,4],[432,4],[430,4],[429,4],[428,4],[422,4],[9,4],[10,4],[14,4],[16,4],[56,4],[292,4],[58,4],[351,4],[184,4],[183,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[352,4],[312,4],[310,4],[309,4],[308,4],[307,4],[287,4],[288,4],[289,4],[290,4],[291,4],[311,4],[185,4],[359,4],[360,4],[216,4],[60,4],[215,4],[67,4],[68,4],[69,4],[70,4],[71,4],[72,4],[214,4],[213,4],[212,4],[211,4],[455,4],[188,4],[187,4],[186,4],[364,4],[363,4],[362,4],[361,4],[57,4],[456,4]]","implements":"[[3,2],[36,2]]","idisposable":"[[3,4],[36,4]]","language":"[[3,4],[315,4],[314,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[316,4],[301,4],[299,4],[298,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[300,4],[290,4],[317,4],[319,4],[339,4],[338,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[318,4],[330,4],[328,4],[327,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[329,4],[340,4],[289,4],[287,4],[257,4],[256,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[258,4],[248,4],[246,4],[245,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[247,4],[288,4],[259,4],[261,4],[281,4],[280,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[260,4],[272,4],[270,4],[269,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[271,4],[341,4],[342,4],[343,4],[428,4],[422,4],[420,4],[419,4],[418,4],[417,4],[416,4],[415,4],[414,4],[429,4],[413,4],[411,4],[410,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[412,4],[402,4],[430,4],[434,4],[454,4],[453,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[432,4],[445,4],[443,4],[442,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[444,4],[401,4],[400,4],[399,4],[373,4],[372,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[374,4],[364,4],[362,4],[361,4],[360,4],[359,4],[353,4],[352,4],[351,4],[345,4],[344,4],[363,4],[375,4],[376,4],[377,4],[398,4],[397,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[237,4],[236,4],[235,4],[234,4],[97,4],[96,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[98,4],[88,4],[86,4],[85,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[87,4],[77,4],[99,4],[101,4],[121,4],[120,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[100,4],[112,4],[110,4],[109,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[111,4],[76,4],[75,4],[74,4],[36,4],[35,4],[34,4],[33,4],[32,4],[31,4],[25,4],[23,4],[22,4],[42,4],[21,4],[19,4],[18,4],[17,4],[16,4],[15,4],[14,4],[12,4],[10,4],[9,4],[20,4],[43,4],[44,4],[45,4],[73,4],[72,4],[71,4],[70,4],[69,4],[68,4],[67,4],[61,4],[60,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[50,4],[48,4],[47,4],[46,4],[122,4],[455,4],[123,4],[125,4],[204,4],[203,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[205,4],[195,4],[193,4],[192,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[194,4],[184,4],[211,4],[213,4],[233,4],[232,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[212,4],[224,4],[222,4],[221,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[223,4],[183,4],[177,4],[176,4],[145,4],[144,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[146,4],[136,4],[134,4],[133,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[135,4],[147,4],[148,4],[149,4],[175,4],[174,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[152,4],[151,4],[150,4],[124,4],[456,4]]","is":"[[3,8],[315,8],[314,8],[313,8],[312,8],[311,8],[310,8],[309,8],[308,8],[307,8],[316,8],[301,8],[299,8],[298,8],[297,8],[296,8],[295,8],[294,8],[293,8],[292,8],[291,8],[300,8],[290,8],[317,8],[319,8],[339,8],[338,8],[337,8],[336,8],[335,8],[334,8],[333,8],[332,8],[331,8],[318,8],[330,8],[328,8],[327,8],[326,8],[325,8],[324,8],[323,8],[322,8],[321,8],[320,8],[329,8],[340,8],[289,8],[287,8],[257,8],[256,8],[255,8],[254,8],[253,8],[252,8],[251,8],[250,8],[249,8],[258,8],[248,8],[246,8],[245,8],[244,8],[243,8],[242,8],[241,8],[240,8],[239,8],[238,8],[247,8],[288,8],[259,8],[261,8],[281,8],[280,8],[279,8],[278,8],[277,8],[276,8],[275,8],[274,8],[273,8],[260,8],[272,8],[270,8],[269,8],[268,8],[267,8],[266,8],[265,8],[264,8],[263,8],[262,8],[271,8],[341,8],[342,8],[343,8],[428,8],[422,8],[420,8],[419,8],[418,8],[417,8],[416,8],[415,8],[414,8],[429,8],[413,8],[411,8],[410,8],[409,8],[408,8],[407,8],[406,8],[405,8],[404,8],[403,8],[412,8],[402,8],[430,8],[434,8],[454,8],[453,8],[452,8],[451,8],[450,8],[449,8],[448,8],[447,8],[446,8],[432,8],[445,8],[443,8],[442,8],[441,8],[440,8],[439,8],[438,8],[437,8],[436,8],[435,8],[444,8],[401,8],[400,8],[399,8],[373,8],[372,8],[371,8],[370,8],[369,8],[368,8],[367,8],[366,8],[365,8],[374,8],[364,8],[362,8],[361,8],[360,8],[359,8],[353,8],[352,8],[351,8],[345,8],[344,8],[363,8],[375,8],[376,8],[377,8],[398,8],[397,8],[396,8],[395,8],[394,8],[393,8],[392,8],[391,8],[390,8],[389,8],[388,8],[387,8],[386,8],[385,8],[384,8],[383,8],[382,8],[381,8],[380,8],[379,8],[378,8],[237,8],[236,8],[235,8],[234,8],[97,8],[96,8],[95,8],[94,8],[93,8],[92,8],[91,8],[90,8],[89,8],[98,8],[88,8],[86,8],[85,8],[84,8],[83,8],[82,8],[81,8],[80,8],[79,8],[78,8],[87,8],[77,8],[99,8],[101,8],[121,8],[120,8],[119,8],[118,8],[117,8],[116,8],[115,8],[114,8],[113,8],[100,8],[112,8],[110,8],[109,8],[108,8],[107,8],[106,8],[105,8],[104,8],[103,8],[102,8],[111,8],[76,8],[75,8],[74,8],[36,8],[35,8],[34,8],[33,8],[32,8],[31,8],[25,8],[23,8],[22,8],[42,8],[21,8],[19,8],[18,8],[17,8],[16,8],[15,8],[14,8],[12,8],[10,8],[9,8],[20,8],[43,8],[44,8],[45,8],[73,8],[72,8],[71,8],[70,8],[69,8],[68,8],[67,8],[61,8],[60,8],[59,8],[58,8],[57,8],[56,8],[55,8],[54,8],[53,8],[52,8],[50,8],[48,8],[47,8],[46,8],[122,8],[455,8],[123,8],[125,8],[204,8],[203,8],[202,8],[201,8],[200,8],[199,8],[198,8],[197,8],[196,8],[205,8],[195,8],[193,8],[192,8],[191,8],[190,8],[189,8],[188,8],[187,8],[186,8],[185,8],[194,8],[184,8],[211,8],[213,8],[233,8],[232,8],[231,8],[230,8],[229,8],[228,8],[227,8],[226,8],[225,8],[212,8],[224,8],[222,8],[221,8],[220,8],[219,8],[218,8],[217,8],[216,8],[215,8],[214,8],[223,8],[183,8],[177,8],[176,8],[145,8],[144,8],[143,8],[142,8],[141,8],[140,8],[139,8],[138,8],[137,8],[146,8],[136,8],[134,8],[133,8],[132,8],[131,8],[130,8],[129,8],[128,8],[127,8],[126,8],[135,8],[147,8],[148,8],[149,8],[175,8],[174,8],[173,8],[172,8],[171,8],[170,8],[169,8],[168,8],[167,8],[166,8],[165,8],[164,8],[163,8],[162,8],[161,8],[160,8],[159,8],[158,8],[152,8],[151,8],[150,8],[124,8],[456,8]]","not":"[[3,4],[315,4],[314,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[316,4],[301,4],[299,4],[298,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[300,4],[290,4],[317,4],[319,4],[339,4],[338,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[318,4],[330,4],[328,4],[327,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[329,4],[340,4],[289,4],[287,4],[257,4],[256,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[258,4],[248,4],[246,4],[245,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[247,4],[288,4],[259,4],[261,4],[281,4],[280,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[260,4],[272,4],[270,4],[269,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[271,4],[341,4],[342,4],[343,4],[428,4],[422,4],[420,4],[419,4],[418,4],[417,4],[416,4],[415,4],[414,4],[429,4],[413,4],[411,4],[410,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[412,4],[402,4],[430,4],[434,4],[454,4],[453,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[432,4],[445,4],[443,4],[442,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[444,4],[401,4],[400,4],[399,4],[373,4],[372,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[374,4],[364,4],[362,4],[361,4],[360,4],[359,4],[353,4],[352,4],[351,4],[345,4],[344,4],[363,4],[375,4],[376,4],[377,4],[398,4],[397,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[237,4],[236,4],[235,4],[234,4],[97,4],[96,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[98,4],[88,4],[86,4],[85,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[87,4],[77,4],[99,4],[101,4],[121,4],[120,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[100,4],[112,4],[110,4],[109,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[111,4],[76,4],[75,4],[74,4],[36,4],[35,4],[34,4],[33,4],[32,4],[31,4],[25,4],[23,4],[22,4],[42,4],[21,4],[19,4],[18,4],[17,4],[16,4],[15,4],[14,4],[12,4],[10,4],[9,4],[20,4],[43,4],[44,4],[45,4],[73,4],[72,4],[71,4],[70,4],[69,4],[68,4],[67,4],[61,4],[60,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[50,4],[48,4],[47,4],[46,4],[122,4],[455,4],[123,4],[125,4],[204,4],[203,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[205,4],[195,4],[193,4],[192,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[194,4],[184,4],[211,4],[213,4],[233,4],[232,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[212,4],[224,4],[222,4],[221,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[223,4],[183,4],[177,4],[176,4],[145,4],[144,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[146,4],[136,4],[134,4],[133,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[135,4],[147,4],[148,4],[149,4],[175,4],[174,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[152,4],[151,4],[150,4],[124,4],[456,4]]","supported":"[[3,4],[315,4],[314,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[316,4],[301,4],[299,4],[298,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[300,4],[290,4],[317,4],[319,4],[339,4],[338,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[318,4],[330,4],[328,4],[327,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[329,4],[340,4],[289,4],[287,4],[257,4],[256,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[258,4],[248,4],[246,4],[245,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[247,4],[288,4],[259,4],[261,4],[281,4],[280,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[260,4],[272,4],[270,4],[269,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[271,4],[341,4],[342,4],[343,4],[428,4],[422,4],[420,4],[419,4],[418,4],[417,4],[416,4],[415,4],[414,4],[429,4],[413,4],[411,4],[410,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[412,4],[402,4],[430,4],[434,4],[454,4],[453,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[432,4],[445,4],[443,4],[442,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[444,4],[401,4],[400,4],[399,4],[373,4],[372,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[374,4],[364,4],[362,4],[361,4],[360,4],[359,4],[353,4],[352,4],[351,4],[345,4],[344,4],[363,4],[375,4],[376,4],[377,4],[398,4],[397,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[237,4],[236,4],[235,4],[234,4],[97,4],[96,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[98,4],[88,4],[86,4],[85,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[87,4],[77,4],[99,4],[101,4],[121,4],[120,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[100,4],[112,4],[110,4],[109,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[111,4],[76,4],[75,4],[74,4],[36,4],[35,4],[34,4],[33,4],[32,4],[31,4],[25,4],[23,4],[22,4],[42,4],[21,4],[19,4],[18,4],[17,4],[16,4],[15,4],[14,4],[12,4],[10,4],[9,4],[20,4],[43,4],[44,4],[45,4],[73,4],[72,4],[71,4],[70,4],[69,4],[68,4],[67,4],[61,4],[60,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[50,4],[48,4],[47,4],[46,4],[122,4],[455,4],[123,4],[125,4],[204,4],[203,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[205,4],[195,4],[193,4],[192,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[194,4],[184,4],[211,4],[213,4],[233,4],[232,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[212,4],[224,4],[222,4],[221,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[223,4],[183,4],[177,4],[176,4],[145,4],[144,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[146,4],[136,4],[134,4],[133,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[135,4],[147,4],[148,4],[149,4],[175,4],[174,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[152,4],[151,4],[150,4],[124,4],[456,4]]","or":"[[3,4],[315,4],[314,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[316,4],[301,4],[299,4],[298,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[300,4],[290,4],[317,4],[319,4],[339,4],[338,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[318,4],[330,4],[328,4],[327,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[329,4],[340,4],[289,4],[287,4],[257,4],[256,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[258,4],[248,4],[246,4],[245,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[247,4],[288,4],[259,4],[261,4],[281,4],[280,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[260,4],[272,4],[270,4],[269,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[271,4],[341,4],[342,4],[343,4],[428,4],[422,4],[420,4],[419,4],[418,4],[417,4],[416,4],[415,4],[414,4],[429,4],[413,4],[411,4],[410,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[412,4],[402,4],[430,4],[434,4],[454,4],[453,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[432,4],[445,4],[443,4],[442,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[444,4],[401,4],[400,4],[399,4],[373,4],[372,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[374,4],[364,4],[362,4],[361,4],[360,4],[359,4],[353,4],[352,4],[351,4],[345,4],[344,4],[363,4],[375,4],[376,4],[377,4],[398,4],[397,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[237,4],[236,4],[235,4],[234,4],[97,4],[96,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[98,4],[88,4],[86,4],[85,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[87,4],[77,4],[99,4],[101,4],[121,4],[120,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[100,4],[112,4],[110,4],[109,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[111,4],[76,4],[75,4],[74,4],[36,4],[35,4],[34,4],[33,4],[32,4],[31,4],[25,4],[23,4],[22,4],[42,4],[21,4],[19,4],[18,4],[17,4],[16,4],[15,4],[14,4],[12,4],[10,4],[9,4],[20,4],[43,4],[44,4],[45,4],[73,4],[72,4],[71,4],[70,4],[69,4],[68,4],[67,4],[61,4],[60,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[50,4],[48,4],[47,4],[46,4],[122,4],[455,4],[123,4],[125,4],[204,4],[203,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[205,4],[195,4],[193,4],[192,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[194,4],[184,4],[211,4],[213,4],[233,4],[232,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[212,4],[224,4],[222,4],[221,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[223,4],[183,4],[177,4],[176,4],[145,4],[144,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[146,4],[136,4],[134,4],[133,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[135,4],[147,4],[148,4],[149,4],[175,4],[174,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[152,4],[151,4],[150,4],[124,4],[456,4]]","no":"[[3,4],[315,4],[314,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[316,4],[301,4],[299,4],[298,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[300,4],[290,4],[317,4],[319,4],[339,4],[338,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[318,4],[330,4],[328,4],[327,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[329,4],[340,4],[289,4],[287,4],[257,4],[256,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[258,4],[248,4],[246,4],[245,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[247,4],[288,4],[259,4],[261,4],[281,4],[280,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[260,4],[272,4],[270,4],[269,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[271,4],[341,4],[342,4],[343,4],[428,4],[422,4],[420,4],[419,4],[418,4],[417,4],[416,4],[415,4],[414,4],[429,4],[413,4],[411,4],[410,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[412,4],[402,4],[430,4],[434,4],[454,4],[453,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[432,4],[445,4],[443,4],[442,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[444,4],[401,4],[400,4],[399,4],[373,4],[372,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[374,4],[364,4],[362,4],[361,4],[360,4],[359,4],[353,4],[352,4],[351,4],[345,4],[344,4],[363,4],[375,4],[376,4],[377,4],[398,4],[397,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[237,4],[236,4],[235,4],[234,4],[97,4],[96,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[98,4],[88,4],[86,4],[85,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[87,4],[77,4],[99,4],[101,4],[121,4],[120,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[100,4],[112,4],[110,4],[109,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[111,4],[76,4],[75,4],[74,4],[36,4],[35,4],[34,4],[33,4],[32,4],[31,4],[25,4],[23,4],[22,4],[42,4],[21,4],[19,4],[18,4],[17,4],[16,4],[15,4],[14,4],[12,4],[10,4],[9,4],[20,4],[43,4],[44,4],[45,4],[73,4],[72,4],[71,4],[70,4],[69,4],[68,4],[67,4],[61,4],[60,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[50,4],[48,4],[47,4],[46,4],[122,4],[455,4],[123,4],[125,4],[204,4],[203,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[205,4],[195,4],[193,4],[192,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[194,4],[184,4],[211,4],[213,4],[233,4],[232,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[212,4],[224,4],[222,4],[221,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[223,4],[183,4],[177,4],[176,4],[145,4],[144,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[146,4],[136,4],[134,4],[133,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[135,4],[147,4],[148,4],[149,4],[175,4],[174,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[152,4],[151,4],[150,4],[124,4],[456,4]]","code":"[[3,4],[315,4],[314,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[316,4],[301,4],[299,4],[298,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[300,4],[290,4],[317,4],[319,4],[339,4],[338,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[318,4],[330,4],[328,4],[327,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[329,4],[340,4],[289,4],[287,4],[257,4],[256,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[258,4],[248,4],[246,4],[245,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[247,4],[288,4],[259,4],[261,4],[281,4],[280,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[260,4],[272,4],[270,4],[269,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[271,4],[341,4],[342,4],[343,4],[428,4],[422,4],[420,4],[419,4],[418,4],[417,4],[416,4],[415,4],[414,4],[429,4],[413,4],[411,4],[410,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[412,4],[402,4],[430,4],[434,4],[454,4],[453,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[432,4],[445,4],[443,4],[442,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[444,4],[401,4],[400,4],[399,4],[373,4],[372,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[374,4],[364,4],[362,4],[361,4],[360,4],[359,4],[353,4],[352,4],[351,4],[345,4],[344,4],[363,4],[375,4],[376,4],[377,4],[398,4],[397,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[237,4],[236,4],[235,4],[234,4],[97,4],[96,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[98,4],[88,4],[86,4],[85,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[87,4],[77,4],[99,4],[101,4],[121,4],[120,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[100,4],[112,4],[110,4],[109,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[111,4],[76,4],[75,4],[74,4],[36,4],[35,4],[34,4],[33,4],[32,4],[31,4],[25,4],[23,4],[22,4],[42,4],[21,4],[19,4],[18,4],[17,4],[16,4],[15,4],[14,4],[12,4],[10,4],[9,4],[20,4],[43,4],[44,4],[45,4],[73,4],[72,4],[71,4],[70,4],[69,4],[68,4],[67,4],[61,4],[60,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[50,4],[48,4],[47,4],[46,4],[122,4],[455,4],[123,4],[125,4],[204,4],[203,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[205,4],[195,4],[193,4],[192,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[194,4],[184,4],[211,4],[213,4],[233,4],[232,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[212,4],[224,4],[222,4],[221,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[223,4],[183,4],[177,4],[176,4],[145,4],[144,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[146,4],[136,4],[134,4],[133,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[135,4],[147,4],[148,4],[149,4],[175,4],[174,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[152,4],[151,4],[150,4],[124,4],[456,4]]","example":"[[3,4],[315,4],[314,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[316,4],[301,4],[299,4],[298,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[300,4],[290,4],[317,4],[319,4],[339,4],[338,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[318,4],[330,4],[328,4],[327,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[329,4],[340,4],[289,4],[287,4],[257,4],[256,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[258,4],[248,4],[246,4],[245,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[247,4],[288,4],[259,4],[261,4],[281,4],[280,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[260,4],[272,4],[270,4],[269,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[271,4],[341,4],[342,4],[343,4],[428,4],[422,4],[420,4],[419,4],[418,4],[417,4],[416,4],[415,4],[414,4],[429,4],[413,4],[411,4],[410,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[412,4],[402,4],[430,4],[434,4],[454,4],[453,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[432,4],[445,4],[443,4],[442,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[444,4],[401,4],[400,4],[399,4],[373,4],[372,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[374,4],[364,4],[362,4],[361,4],[360,4],[359,4],[353,4],[352,4],[351,4],[345,4],[344,4],[363,4],[375,4],[376,4],[377,4],[398,4],[397,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[237,4],[236,4],[235,4],[234,4],[97,4],[96,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[98,4],[88,4],[86,4],[85,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[87,4],[77,4],[99,4],[101,4],[121,4],[120,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[100,4],[112,4],[110,4],[109,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[111,4],[76,4],[75,4],[74,4],[36,4],[35,4],[34,4],[33,4],[32,4],[31,4],[25,4],[23,4],[22,4],[42,4],[21,4],[19,4],[18,4],[17,4],[16,4],[15,4],[14,4],[12,4],[10,4],[9,4],[20,4],[43,4],[44,4],[45,4],[73,4],[72,4],[71,4],[70,4],[69,4],[68,4],[67,4],[61,4],[60,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[50,4],[48,4],[47,4],[46,4],[122,4],[455,4],[123,4],[125,4],[204,4],[203,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[205,4],[195,4],[193,4],[192,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[194,4],[184,4],[211,4],[213,4],[233,4],[232,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[212,4],[224,4],[222,4],[221,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[223,4],[183,4],[177,4],[176,4],[145,4],[144,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[146,4],[136,4],[134,4],[133,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[135,4],[147,4],[148,4],[149,4],[175,4],[174,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[152,4],[151,4],[150,4],[124,4],[456,4]]","available":"[[3,4],[315,4],[314,4],[313,4],[312,4],[311,4],[310,4],[309,4],[308,4],[307,4],[316,4],[301,4],[299,4],[298,4],[297,4],[296,4],[295,4],[294,4],[293,4],[292,4],[291,4],[300,4],[290,4],[317,4],[319,4],[339,4],[338,4],[337,4],[336,4],[335,4],[334,4],[333,4],[332,4],[331,4],[318,4],[330,4],[328,4],[327,4],[326,4],[325,4],[324,4],[323,4],[322,4],[321,4],[320,4],[329,4],[340,4],[289,4],[287,4],[257,4],[256,4],[255,4],[254,4],[253,4],[252,4],[251,4],[250,4],[249,4],[258,4],[248,4],[246,4],[245,4],[244,4],[243,4],[242,4],[241,4],[240,4],[239,4],[238,4],[247,4],[288,4],[259,4],[261,4],[281,4],[280,4],[279,4],[278,4],[277,4],[276,4],[275,4],[274,4],[273,4],[260,4],[272,4],[270,4],[269,4],[268,4],[267,4],[266,4],[265,4],[264,4],[263,4],[262,4],[271,4],[341,4],[342,4],[343,4],[428,4],[422,4],[420,4],[419,4],[418,4],[417,4],[416,4],[415,4],[414,4],[429,4],[413,4],[411,4],[410,4],[409,4],[408,4],[407,4],[406,4],[405,4],[404,4],[403,4],[412,4],[402,4],[430,4],[434,4],[454,4],[453,4],[452,4],[451,4],[450,4],[449,4],[448,4],[447,4],[446,4],[432,4],[445,4],[443,4],[442,4],[441,4],[440,4],[439,4],[438,4],[437,4],[436,4],[435,4],[444,4],[401,4],[400,4],[399,4],[373,4],[372,4],[371,4],[370,4],[369,4],[368,4],[367,4],[366,4],[365,4],[374,4],[364,4],[362,4],[361,4],[360,4],[359,4],[353,4],[352,4],[351,4],[345,4],[344,4],[363,4],[375,4],[376,4],[377,4],[398,4],[397,4],[396,4],[395,4],[394,4],[393,4],[392,4],[391,4],[390,4],[389,4],[388,4],[387,4],[386,4],[385,4],[384,4],[383,4],[382,4],[381,4],[380,4],[379,4],[378,4],[237,4],[236,4],[235,4],[234,4],[97,4],[96,4],[95,4],[94,4],[93,4],[92,4],[91,4],[90,4],[89,4],[98,4],[88,4],[86,4],[85,4],[84,4],[83,4],[82,4],[81,4],[80,4],[79,4],[78,4],[87,4],[77,4],[99,4],[101,4],[121,4],[120,4],[119,4],[118,4],[117,4],[116,4],[115,4],[114,4],[113,4],[100,4],[112,4],[110,4],[109,4],[108,4],[107,4],[106,4],[105,4],[104,4],[103,4],[102,4],[111,4],[76,4],[75,4],[74,4],[36,4],[35,4],[34,4],[33,4],[32,4],[31,4],[25,4],[23,4],[22,4],[42,4],[21,4],[19,4],[18,4],[17,4],[16,4],[15,4],[14,4],[12,4],[10,4],[9,4],[20,4],[43,4],[44,4],[45,4],[73,4],[72,4],[71,4],[70,4],[69,4],[68,4],[67,4],[61,4],[60,4],[59,4],[58,4],[57,4],[56,4],[55,4],[54,4],[53,4],[52,4],[50,4],[48,4],[47,4],[46,4],[122,4],[455,4],[123,4],[125,4],[204,4],[203,4],[202,4],[201,4],[200,4],[199,4],[198,4],[197,4],[196,4],[205,4],[195,4],[193,4],[192,4],[191,4],[190,4],[189,4],[188,4],[187,4],[186,4],[185,4],[194,4],[184,4],[211,4],[213,4],[233,4],[232,4],[231,4],[230,4],[229,4],[228,4],[227,4],[226,4],[225,4],[212,4],[224,4],[222,4],[221,4],[220,4],[219,4],[218,4],[217,4],[216,4],[215,4],[214,4],[223,4],[183,4],[177,4],[176,4],[145,4],[144,4],[143,4],[142,4],[141,4],[140,4],[139,4],[138,4],[137,4],[146,4],[136,4],[134,4],[133,4],[132,4],[131,4],[130,4],[129,4],[128,4],[127,4],[126,4],[135,4],[147,4],[148,4],[149,4],[175,4],[174,4],[173,4],[172,4],[171,4],[170,4],[169,4],[168,4],[167,4],[166,4],[165,4],[164,4],[163,4],[162,4],[161,4],[160,4],[159,4],[158,4],[152,4],[151,4],[150,4],[124,4],[456,4]]","ref":"[[3,1],[36,1],[61,1],[152,1],[177,1],[205,1],[281,1],[301,1],[345,1],[353,1],[422,1]]","constructors":"[[3,1],[36,1],[61,1],[152,1],[177,1],[205,1],[281,1],[301,1],[353,1],[422,1]]","properties":"[[181,1003],[357,1003],[7,1003],[349,1003],[305,1003],[40,1003],[285,1003],[65,1003],[209,1003],[156,1003],[354,1002],[346,1002],[302,1002],[282,1002],[206,1002],[423,1002],[426,1002],[37,1002],[4,1002],[153,1002],[26,1002],[62,1002],[29,1002],[178,1002],[353,1],[36,1],[205,1],[61,1],[301,1],[152,1],[281,1],[177,1],[345,1],[3,1]]","bistransactionpending":"[[21,1006],[7,1],[3,1]]","sconnectionstring":"[[59,1007],[23,1006],[3,1],[349,1],[345,1],[305,1],[301,1],[285,1],[281,1],[209,1],[205,1],[177,1],[353,1],[156,1],[152,1],[65,1],[61,1],[40,1],[36,1],[7,1],[181,1],[357,1]]","scodbconnection":"[[22,1006],[7,1],[3,1]]","stcurrenttransaction":"[[20,1006],[7,1],[3,1]]","methods":"[[180,1003],[356,1003],[348,1003],[304,1003],[284,1003],[208,1003],[155,1003],[425,1003],[39,1003],[28,1003],[6,1003],[64,1003],[152,1],[61,1],[177,1],[422,1],[205,1],[281,1],[36,1],[301,1],[345,1],[25,1],[353,1],[3,1]]","begintransaction":"[[15,1006],[6,1],[3,1]]","string":"[[430,1007],[442,20],[422,20],[425,19],[439,10],[450,10],[352,10],[454,10],[434,10],[59,8],[23,6],[437,5],[441,5],[436,5],[444,5],[445,5],[440,5],[456,5],[428,5],[351,5],[451,5],[452,5],[18,5],[17,5],[15,5],[453,5],[446,5],[449,5],[3,3],[6,3],[348,1],[345,1],[431,1],[433,1]]","closeconnection":"[[19,1006],[6,1],[3,1]]","bool":"[[436,6],[19,6],[425,5],[422,5],[21,4],[161,3],[160,3],[448,3],[184,3],[185,3],[186,3],[212,3],[213,3],[214,3],[288,3],[308,3],[290,3],[159,3],[309,3],[310,3],[360,3],[361,3],[362,3],[446,3],[447,3],[289,3],[70,3],[450,3],[68,3],[33,3],[50,3],[32,3],[31,3],[18,3],[52,3],[45,3],[53,3],[16,3],[54,3],[15,3],[14,3],[12,3],[17,3],[69,3],[6,2],[3,2],[39,1],[152,1],[11,1],[155,1],[13,1],[64,1],[61,1],[177,1],[180,1],[356,1],[353,1],[348,1],[345,1],[51,1],[205,1],[208,1],[304,1],[301,1],[49,1],[281,1],[284,1],[36,1]]","committransaction":"[[16,1006],[6,1],[3,1]]","dispose":"[[48,1006],[10,1006],[12,1006],[50,1006],[11,1004],[13,1004],[51,1004],[49,1004],[281,2],[284,2],[301,2],[3,2],[304,2],[345,2],[348,2],[208,2],[205,2],[64,2],[177,2],[155,2],[152,2],[353,2],[61,2],[39,2],[36,2],[6,2],[180,2],[356,2]]","openconnection":"[[14,1006],[6,1],[3,1]]","rollbacktransaction":"[[17,1006],[6,1],[3,1]]","savetransaction":"[[18,1006],[6,1],[3,1]]","see":"[[3,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[312,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[299,1],[287,1],[313,1],[315,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[314,1],[328,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[327,1],[286,1],[285,1],[284,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[255,1],[243,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[242,1],[256,1],[257,1],[258,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[340,1],[341,1],[342,1],[343,1],[425,1],[424,1],[423,1],[422,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[426,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[427,1],[428,1],[429,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[400,1],[230,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[455,1],[229,1],[227,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[85,1],[73,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[72,1],[60,1],[86,1],[88,1],[112,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[87,1],[101,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[100,1],[59,1],[58,1],[57,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[28,1],[16,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[15,1],[29,1],[30,1],[31,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[113,1],[114,1],[115,1],[116,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[198,1],[186,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[185,1],[199,1],[200,1],[201,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[173,1],[228,1],[172,1],[170,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[141,1],[129,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[128,1],[142,1],[143,1],[144,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[171,1],[456,1]]","also":"[[3,1],[311,1],[310,1],[309,1],[308,1],[307,1],[306,1],[305,1],[304,1],[303,1],[302,1],[301,1],[312,1],[300,1],[298,1],[297,1],[296,1],[295,1],[294,1],[293,1],[292,1],[291,1],[290,1],[289,1],[288,1],[299,1],[287,1],[313,1],[315,1],[339,1],[338,1],[337,1],[336,1],[335,1],[334,1],[333,1],[332,1],[331,1],[330,1],[329,1],[314,1],[328,1],[326,1],[325,1],[324,1],[323,1],[322,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[327,1],[286,1],[285,1],[284,1],[254,1],[253,1],[252,1],[251,1],[250,1],[249,1],[248,1],[247,1],[246,1],[245,1],[244,1],[255,1],[243,1],[241,1],[240,1],[239,1],[238,1],[237,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[242,1],[256,1],[257,1],[258,1],[283,1],[282,1],[281,1],[280,1],[279,1],[278,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[270,1],[269,1],[268,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[261,1],[260,1],[259,1],[340,1],[341,1],[342,1],[343,1],[425,1],[424,1],[423,1],[422,1],[420,1],[419,1],[418,1],[417,1],[416,1],[415,1],[414,1],[426,1],[413,1],[411,1],[410,1],[409,1],[408,1],[407,1],[406,1],[405,1],[404,1],[403,1],[402,1],[401,1],[412,1],[427,1],[428,1],[429,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[439,1],[438,1],[437,1],[436,1],[435,1],[434,1],[433,1],[432,1],[431,1],[430,1],[400,1],[230,1],[399,1],[397,1],[367,1],[366,1],[365,1],[364,1],[363,1],[362,1],[361,1],[360,1],[359,1],[358,1],[357,1],[368,1],[356,1],[354,1],[353,1],[352,1],[351,1],[350,1],[349,1],[348,1],[347,1],[346,1],[345,1],[344,1],[355,1],[369,1],[370,1],[371,1],[396,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[388,1],[387,1],[386,1],[385,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[377,1],[376,1],[375,1],[374,1],[373,1],[372,1],[398,1],[455,1],[229,1],[227,1],[84,1],[83,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[85,1],[73,1],[71,1],[70,1],[69,1],[68,1],[67,1],[66,1],[65,1],[64,1],[63,1],[62,1],[61,1],[72,1],[60,1],[86,1],[88,1],[112,1],[111,1],[110,1],[109,1],[108,1],[107,1],[106,1],[105,1],[104,1],[103,1],[102,1],[87,1],[101,1],[99,1],[98,1],[97,1],[96,1],[95,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[100,1],[59,1],[58,1],[57,1],[27,1],[26,1],[25,1],[24,1],[23,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[28,1],[16,1],[14,1],[13,1],[12,1],[11,1],[10,1],[9,1],[8,1],[7,1],[6,1],[5,1],[4,1],[15,1],[29,1],[30,1],[31,1],[56,1],[55,1],[54,1],[53,1],[52,1],[51,1],[50,1],[49,1],[48,1],[47,1],[46,1],[45,1],[44,1],[43,1],[42,1],[41,1],[40,1],[39,1],[38,1],[37,1],[36,1],[35,1],[34,1],[33,1],[32,1],[113,1],[114,1],[115,1],[116,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[189,1],[188,1],[187,1],[198,1],[186,1],[184,1],[183,1],[182,1],[181,1],[180,1],[179,1],[178,1],[177,1],[176,1],[175,1],[174,1],[185,1],[199,1],[200,1],[201,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[218,1],[217,1],[216,1],[215,1],[214,1],[213,1],[212,1],[211,1],[210,1],[209,1],[208,1],[207,1],[206,1],[205,1],[204,1],[203,1],[202,1],[173,1],[228,1],[172,1],[170,1],[140,1],[139,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[130,1],[141,1],[129,1],[127,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[118,1],[117,1],[128,1],[142,1],[143,1],[144,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[159,1],[158,1],[157,1],[156,1],[155,1],[154,1],[153,1],[152,1],[151,1],[150,1],[149,1],[148,1],[147,1],[146,1],[145,1],[171,1],[456,1]]","attached":"[[4,1002],[26,1002],[37,1002],[62,1002],[153,1002],[178,1002],[206,1002],[282,1002],[302,1002],[346,1002],[354,1002],[423,1002]]","the":"[[4,3],[208,3],[209,3],[210,3],[282,3],[283,3],[284,3],[285,3],[286,3],[302,3],[303,3],[304,3],[305,3],[207,3],[306,3],[347,3],[348,3],[349,3],[350,3],[354,3],[355,3],[356,3],[357,3],[358,3],[423,3],[424,3],[425,3],[346,3],[206,3],[182,3],[181,3],[5,3],[6,3],[7,3],[8,3],[26,3],[27,3],[28,3],[29,3],[30,3],[37,3],[38,3],[39,3],[40,3],[41,3],[62,3],[63,3],[64,3],[65,3],[66,3],[153,3],[154,3],[155,3],[156,3],[157,3],[178,3],[179,3],[180,3],[426,3],[427,3]]","following":"[[4,1],[208,1],[209,1],[210,1],[282,1],[283,1],[284,1],[285,1],[286,1],[302,1],[303,1],[304,1],[305,1],[207,1],[306,1],[347,1],[348,1],[349,1],[350,1],[354,1],[355,1],[356,1],[357,1],[358,1],[423,1],[424,1],[425,1],[346,1],[206,1],[182,1],[181,1],[5,1],[6,1],[7,1],[8,1],[26,1],[27,1],[28,1],[29,1],[30,1],[37,1],[38,1],[39,1],[40,1],[41,1],[62,1],[63,1],[64,1],[65,1],[66,1],[153,1],[154,1],[155,1],[156,1],[157,1],[178,1],[179,1],[180,1],[426,1],[427,1]]","tables":"[[4,1],[208,1],[209,1],[210,1],[282,1],[283,1],[284,1],[285,1],[286,1],[302,1],[303,1],[304,1],[305,1],[207,1],[306,1],[347,1],[348,1],[349,1],[350,1],[354,1],[355,1],[356,1],[357,1],[358,1],[423,1],[424,1],[425,1],[346,1],[206,1],[182,1],[181,1],[5,1],[6,1],[7,1],[8,1],[26,1],[27,1],[28,1],[29,1],[30,1],[37,1],[38,1],[39,1],[40,1],[41,1],[62,1],[63,1],[64,1],[65,1],[66,1],[153,1],[154,1],[155,1],[156,1],[157,1],[178,1],[179,1],[180,1],[426,1],[427,1]]","list":"[[4,1],[207,1],[208,1],[209,1],[210,1],[282,1],[283,1],[284,1],[285,1],[286,1],[302,1],[303,1],[304,1],[305,1],[306,1],[346,1],[347,1],[348,1],[349,1],[350,1],[354,1],[355,1],[356,1],[357,1],[358,1],[423,1],[424,1],[425,1],[426,1],[427,1],[206,1],[182,1],[181,1],[180,1],[5,1],[6,1],[7,1],[8,1],[11,1],[13,1],[26,1],[27,1],[28,1],[29,1],[30,1],[37,1],[38,1],[39,1],[431,1],[40,1],[49,1],[51,1],[62,1],[63,1],[64,1],[65,1],[66,1],[153,1],[154,1],[155,1],[156,1],[157,1],[178,1],[179,1],[41,1],[433,1]]","members":"[[4,1],[208,1],[209,1],[210,1],[282,1],[283,1],[284,1],[285,1],[286,1],[302,1],[303,1],[304,1],[305,1],[207,1],[306,1],[347,1],[348,1],[349,1],[350,1],[354,1],[355,1],[356,1],[357,1],[358,1],[423,1],[424,1],[425,1],[346,1],[206,1],[182,1],[181,1],[5,1],[6,1],[7,1],[8,1],[26,1],[27,1],[28,1],[29,1],[30,1],[37,1],[38,1],[39,1],[40,1],[41,1],[62,1],[63,1],[64,1],[65,1],[66,1],[153,1],[154,1],[155,1],[156,1],[157,1],[178,1],[179,1],[180,1],[426,1],[427,1]]","exposed":"[[4,1],[208,1],[209,1],[210,1],[282,1],[283,1],[284,1],[285,1],[286,1],[302,1],[303,1],[304,1],[305,1],[207,1],[306,1],[347,1],[348,1],[349,1],[350,1],[354,1],[355,1],[356,1],[357,1],[358,1],[423,1],[424,1],[425,1],[346,1],[206,1],[182,1],[181,1],[5,1],[6,1],[7,1],[8,1],[26,1],[27,1],[28,1],[29,1],[30,1],[37,1],[38,1],[39,1],[40,1],[41,1],[62,1],[63,1],[64,1],[65,1],[66,1],[153,1],[154,1],[155,1],[156,1],[157,1],[178,1],[179,1],[180,1],[426,1],[427,1]]","by":"[[4,1],[208,1],[209,1],[210,1],[282,1],[283,1],[284,1],[285,1],[286,1],[302,1],[303,1],[304,1],[305,1],[207,1],[306,1],[347,1],[348,1],[349,1],[350,1],[354,1],[355,1],[356,1],[357,1],[358,1],[423,1],[424,1],[425,1],[346,1],[206,1],[182,1],[181,1],[5,1],[6,1],[7,1],[8,1],[26,1],[27,1],[28,1],[29,1],[30,1],[37,1],[38,1],[39,1],[40,1],[41,1],[62,1],[63,1],[64,1],[65,1],[66,1],[153,1],[154,1],[155,1],[156,1],[157,1],[178,1],[179,1],[180,1],[426,1],[427,1]]","type":"[[4,1],[208,1],[209,1],[210,1],[282,1],[283,1],[284,1],[285,1],[286,1],[302,1],[303,1],[304,1],[305,1],[207,1],[306,1],[347,1],[348,1],[349,1],[350,1],[354,1],[355,1],[356,1],[357,1],[358,1],[423,1],[424,1],[425,1],[346,1],[206,1],[182,1],[181,1],[5,1],[6,1],[7,1],[8,1],[26,1],[27,1],[28,1],[29,1],[30,1],[37,1],[38,1],[39,1],[40,1],[41,1],[62,1],[63,1],[64,1],[65,1],[66,1],[153,1],[154,1],[155,1],[156,1],[157,1],[178,1],[179,1],[180,1],[426,1],[427,1]]","events":"[[5,1002],[27,1002],[38,1002],[63,1002],[154,1002],[179,1002],[207,1002],[283,1002],[303,1002],[347,1002],[355,1002],[424,1002]]","fields":"[[427,1003],[358,1003],[350,1003],[306,1003],[41,1003],[286,1003],[66,1003],[210,1003],[157,1003],[182,1003],[8,1002],[30,1002],[422,1],[152,1],[281,1],[61,1],[301,1],[36,1],[345,1],[353,1],[24,1],[177,1],[205,1]]","constructor":"[[9,1002],[47,1002],[67,1002],[158,1002],[183,1002],[211,1002],[287,1002],[307,1002],[359,1002],[430,1002],[431,1002],[432,1002],[433,1002]]","sub":"[[9,1],[437,1],[435,1],[434,1],[432,1],[430,1],[359,1],[307,1],[287,1],[211,1],[183,1],[158,1],[67,1],[50,1],[48,1],[47,1],[12,1],[10,1],[438,1],[454,1]]","new":"[[9,1],[47,1],[67,1],[158,1],[183,1],[211,1],[287,1],[307,1],[359,1],[429,1],[430,1],[432,1]]","function":"[[237,2],[311,2],[310,2],[309,2],[308,2],[300,2],[299,2],[298,2],[297,2],[312,2],[296,2],[294,2],[293,2],[292,2],[291,2],[290,2],[289,2],[288,2],[280,2],[295,2],[279,2],[313,2],[315,2],[333,2],[332,2],[331,2],[330,2],[329,2],[328,2],[327,2],[326,2],[314,2],[325,2],[323,2],[322,2],[321,2],[320,2],[319,2],[318,2],[317,2],[316,2],[324,2],[278,2],[277,2],[276,2],[252,2],[251,2],[250,2],[249,2],[248,2],[247,2],[246,2],[245,2],[253,2],[244,2],[242,2],[241,2],[240,2],[239,2],[238,2],[455,2],[236,2],[235,2],[243,2],[254,2],[255,2],[256,2],[275,2],[274,2],[273,2],[272,2],[271,2],[270,2],[269,2],[268,2],[267,2],[266,2],[265,2],[264,2],[263,2],[262,2],[261,2],[260,2],[259,2],[258,2],[257,2],[334,2],[234,2],[335,2],[337,2],[414,2],[413,2],[412,2],[411,2],[410,2],[409,2],[408,2],[407,2],[415,2],[406,2],[404,2],[403,2],[402,2],[401,2],[400,2],[399,2],[398,2],[397,2],[405,2],[396,2],[416,2],[418,2],[453,2],[452,2],[451,2],[450,2],[449,2],[448,2],[447,2],[446,2],[417,2],[445,2],[443,2],[442,2],[441,2],[440,2],[439,2],[436,2],[420,2],[419,2],[444,2],[395,2],[394,2],[393,2],[369,2],[368,2],[367,2],[366,2],[365,2],[364,2],[363,2],[362,2],[370,2],[361,2],[352,2],[344,2],[343,2],[342,2],[341,2],[340,2],[339,2],[338,2],[360,2],[371,2],[372,2],[373,2],[392,2],[391,2],[390,2],[389,2],[388,2],[387,2],[386,2],[385,2],[384,2],[383,2],[382,2],[381,2],[380,2],[379,2],[378,2],[377,2],[376,2],[375,2],[374,2],[336,2],[233,2],[456,2],[231,2],[109,2],[108,2],[107,2],[106,2],[105,2],[104,2],[103,2],[102,2],[101,2],[100,2],[99,2],[98,2],[97,2],[96,2],[95,2],[94,2],[93,2],[110,2],[92,2],[111,2],[113,2],[130,2],[129,2],[128,2],[127,2],[126,2],[125,2],[124,2],[123,2],[232,2],[121,2],[120,2],[119,2],[118,2],[117,2],[116,2],[115,2],[114,2],[112,2],[131,2],[91,2],[89,2],[59,2],[56,2],[55,2],[54,2],[53,2],[52,2],[35,2],[34,2],[33,2],[32,2],[31,2],[19,2],[18,2],[17,2],[16,2],[15,2],[14,2],[68,2],[90,2],[69,2],[71,2],[88,2],[87,2],[86,2],[85,2],[84,2],[83,2],[82,2],[81,2],[80,2],[79,2],[78,2],[77,2],[76,2],[75,2],[74,2],[73,2],[72,2],[70,2],[132,2],[122,2],[134,2],[202,2],[201,2],[200,2],[199,2],[198,2],[197,2],[196,2],[195,2],[133,2],[193,2],[192,2],[191,2],[190,2],[189,2],[188,2],[187,2],[186,2],[203,2],[185,2],[204,2],[213,2],[230,2],[229,2],[228,2],[227,2],[226,2],[225,2],[224,2],[223,2],[222,2],[221,2],[220,2],[219,2],[218,2],[217,2],[216,2],[215,2],[214,2],[212,2],[184,2],[194,2],[176,2],[150,2],[149,2],[147,2],[146,2],[145,2],[144,2],[143,2],[142,2],[141,2],[140,2],[139,2],[138,2],[137,2],[136,2],[135,2],[151,2],[159,2],[148,2],[164,2],[167,2],[160,2],[170,2],[166,2],[171,2],[165,2],[169,2],[163,2],[168,2],[172,2],[173,2],[174,2],[175,2],[161,2],[162,2],[287,1],[20,1],[21,1],[12,1],[22,1],[23,1],[10,1],[454,1],[307,1],[435,1],[437,1],[211,1],[158,1],[67,1],[60,1],[359,1],[58,1],[438,1],[57,1],[50,1],[48,1],[47,1],[430,1],[432,1],[434,1],[183,1],[9,1]]","method":"[[10,1002],[364,1002],[363,1002],[362,1002],[361,1002],[360,1002],[352,1002],[312,1002],[311,1002],[310,1002],[309,1002],[308,1002],[292,1002],[291,1002],[290,1002],[289,1002],[288,1002],[216,1002],[434,1002],[215,1002],[435,1002],[437,1002],[454,1002],[453,1002],[452,1002],[451,1002],[450,1002],[449,1002],[448,1002],[447,1002],[446,1002],[445,1002],[444,1002],[443,1002],[442,1002],[441,1002],[440,1002],[439,1002],[438,1002],[436,1002],[455,1002],[214,1002],[212,1002],[50,1002],[49,1002],[48,1002],[35,1002],[34,1002],[33,1002],[32,1002],[31,1002],[19,1002],[18,1002],[17,1002],[16,1002],[15,1002],[14,1002],[13,1002],[12,1002],[11,1002],[51,1002],[213,1002],[52,1002],[54,1002],[188,1002],[187,1002],[186,1002],[185,1002],[184,1002],[163,1002],[162,1002],[161,1002],[160,1002],[159,1002],[72,1002],[71,1002],[70,1002],[69,1002],[68,1002],[56,1002],[55,1002],[53,1002],[456,1002]]","void":"[[10,2],[437,2],[435,2],[434,2],[438,2],[454,2],[12,2],[48,2],[50,2],[59,1],[316,1],[315,1],[314,1],[313,1],[300,1],[299,1],[297,1],[317,1],[296,1],[295,1],[294,1],[293,1],[298,1],[318,1],[320,1],[280,1],[321,1],[322,1],[323,1],[324,1],[325,1],[326,1],[327,1],[328,1],[329,1],[330,1],[331,1],[332,1],[333,1],[319,1],[279,1],[277,1],[334,1],[247,1],[248,1],[249,1],[250,1],[251,1],[252,1],[253,1],[254,1],[255,1],[256,1],[257,1],[258,1],[259,1],[260,1],[278,1],[261,1],[263,1],[264,1],[265,1],[266,1],[267,1],[268,1],[269,1],[270,1],[271,1],[272,1],[273,1],[274,1],[275,1],[276,1],[262,1],[335,1],[336,1],[337,1],[392,1],[393,1],[394,1],[395,1],[396,1],[397,1],[398,1],[399,1],[400,1],[401,1],[402,1],[403,1],[404,1],[405,1],[391,1],[406,1],[408,1],[409,1],[410,1],[411,1],[412,1],[413,1],[414,1],[415,1],[416,1],[417,1],[418,1],[419,1],[420,1],[23,1],[407,1],[246,1],[390,1],[388,1],[338,1],[339,1],[340,1],[341,1],[342,1],[343,1],[344,1],[365,1],[366,1],[367,1],[368,1],[369,1],[370,1],[371,1],[389,1],[372,1],[374,1],[375,1],[376,1],[377,1],[378,1],[379,1],[380,1],[381,1],[382,1],[383,1],[384,1],[385,1],[386,1],[387,1],[373,1],[245,1],[244,1],[243,1],[107,1],[108,1],[109,1],[110,1],[111,1],[112,1],[113,1],[114,1],[115,1],[116,1],[117,1],[118,1],[119,1],[120,1],[106,1],[121,1],[123,1],[124,1],[125,1],[126,1],[127,1],[128,1],[129,1],[130,1],[131,1],[132,1],[133,1],[134,1],[135,1],[136,1],[122,1],[137,1],[105,1],[103,1],[73,1],[74,1],[75,1],[76,1],[77,1],[78,1],[79,1],[80,1],[81,1],[82,1],[83,1],[84,1],[85,1],[86,1],[104,1],[87,1],[89,1],[90,1],[91,1],[92,1],[93,1],[94,1],[95,1],[96,1],[97,1],[98,1],[99,1],[100,1],[101,1],[102,1],[88,1],[138,1],[139,1],[140,1],[200,1],[201,1],[202,1],[203,1],[204,1],[217,1],[218,1],[219,1],[220,1],[221,1],[222,1],[223,1],[224,1],[225,1],[199,1],[226,1],[228,1],[229,1],[230,1],[231,1],[232,1],[233,1],[234,1],[235,1],[236,1],[237,1],[238,1],[239,1],[240,1],[242,1],[227,1],[198,1],[197,1],[196,1],[141,1],[142,1],[143,1],[144,1],[145,1],[146,1],[147,1],[148,1],[149,1],[150,1],[151,1],[164,1],[165,1],[166,1],[167,1],[168,1],[169,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[57,1],[189,1],[175,1],[174,1],[173,1],[172,1],[171,1],[170,1],[176,1],[241,1]]","overload":"[[11,1],[13,1],[49,1],[51,1],[431,1],[433,1]]","boolean":"[[12,1004],[50,1004],[436,4],[19,4],[186,2],[212,2],[213,2],[214,2],[288,2],[289,2],[290,2],[308,2],[309,2],[310,2],[360,2],[361,2],[362,2],[446,2],[447,2],[185,2],[184,2],[160,2],[448,2],[14,2],[15,2],[16,2],[17,2],[18,2],[21,2],[31,2],[32,2],[33,2],[45,2],[52,2],[53,2],[54,2],[68,2],[69,2],[70,2],[159,2],[161,2],[450,2]]","protected":"[[12,4],[42,4],[43,4],[44,4],[45,4],[46,4],[50,4]]","overridable":"[[12,1],[50,1],[52,1],[53,1],[54,1],[55,1],[56,1]]","_":"[[454,5],[448,5],[447,5],[436,5],[442,4],[456,3],[451,3],[450,3],[434,3],[446,3],[445,3],[453,2],[452,2],[449,2],[444,2],[443,2],[441,2],[440,2],[439,2],[437,2],[430,2],[352,2],[50,2],[19,2],[18,2],[17,2],[15,2],[455,2],[12,2],[36,1]]","byval":"[[454,4],[448,4],[447,4],[436,4],[442,3],[451,2],[450,2],[446,2],[445,2],[456,2],[434,2],[437,1],[15,1],[453,1],[452,1],[17,1],[18,1],[449,1],[19,1],[50,1],[430,1],[444,1],[443,1],[455,1],[441,1],[440,1],[439,1],[352,1],[12,1]]","bisdisposing":"[[12,5],[50,5]]","as":"[[436,5],[448,5],[447,5],[454,4],[442,4],[456,3],[451,3],[450,3],[446,3],[445,3],[352,2],[434,2],[455,2],[440,2],[441,2],[443,2],[439,2],[449,2],[452,2],[19,2],[18,2],[17,2],[453,2],[15,2],[444,2],[310,1],[309,1],[308,1],[300,1],[299,1],[298,1],[297,1],[294,1],[295,1],[293,1],[292,1],[291,1],[290,1],[289,1],[311,1],[296,1],[312,1],[324,1],[314,1],[330,1],[329,1],[328,1],[327,1],[326,1],[325,1],[288,1],[313,1],[323,1],[321,1],[320,1],[319,1],[318,1],[317,1],[316,1],[315,1],[322,1],[280,1],[268,1],[278,1],[257,1],[256,1],[255,1],[254,1],[253,1],[252,1],[251,1],[258,1],[250,1],[248,1],[247,1],[246,1],[245,1],[244,1],[243,1],[242,1],[249,1],[279,1],[259,1],[261,1],[277,1],[276,1],[275,1],[274,1],[273,1],[272,1],[271,1],[260,1],[270,1],[331,1],[267,1],[266,1],[265,1],[264,1],[263,1],[262,1],[269,1],[332,1],[344,1],[334,1],[404,1],[403,1],[402,1],[401,1],[400,1],[399,1],[398,1],[405,1],[397,1],[395,1],[394,1],[393,1],[392,1],[391,1],[390,1],[389,1],[396,1],[388,1],[406,1],[408,1],[437,1],[430,1],[429,1],[428,1],[420,1],[419,1],[418,1],[407,1],[417,1],[415,1],[414,1],[413,1],[412,1],[411,1],[410,1],[409,1],[416,1],[333,1],[387,1],[385,1],[364,1],[363,1],[362,1],[361,1],[360,1],[351,1],[241,1],[365,1],[343,1],[341,1],[340,1],[339,1],[338,1],[337,1],[336,1],[335,1],[342,1],[386,1],[366,1],[368,1],[384,1],[383,1],[382,1],[381,1],[380,1],[379,1],[378,1],[367,1],[377,1],[375,1],[374,1],[373,1],[372,1],[371,1],[370,1],[369,1],[376,1],[240,1],[237,1],[238,1],[104,1],[103,1],[102,1],[101,1],[100,1],[99,1],[98,1],[97,1],[105,1],[96,1],[94,1],[93,1],[92,1],[91,1],[90,1],[89,1],[88,1],[87,1],[95,1],[86,1],[106,1],[108,1],[126,1],[125,1],[124,1],[123,1],[122,1],[121,1],[120,1],[119,1],[107,1],[118,1],[116,1],[115,1],[114,1],[113,1],[112,1],[111,1],[110,1],[109,1],[117,1],[85,1],[84,1],[83,1],[52,1],[50,1],[46,1],[45,1],[44,1],[43,1],[42,1],[35,1],[53,1],[34,1],[32,1],[31,1],[23,1],[22,1],[21,1],[20,1],[16,1],[14,1],[33,1],[54,1],[55,1],[56,1],[82,1],[81,1],[80,1],[79,1],[78,1],[77,1],[76,1],[75,1],[74,1],[73,1],[72,1],[71,1],[70,1],[69,1],[68,1],[60,1],[59,1],[58,1],[57,1],[127,1],[239,1],[128,1],[130,1],[214,1],[213,1],[212,1],[204,1],[203,1],[202,1],[201,1],[200,1],[215,1],[199,1],[197,1],[196,1],[195,1],[194,1],[193,1],[192,1],[191,1],[190,1],[198,1],[189,1],[216,1],[218,1],[236,1],[235,1],[234,1],[233,1],[232,1],[231,1],[230,1],[229,1],[217,1],[228,1],[226,1],[225,1],[224,1],[223,1],[222,1],[221,1],[220,1],[219,1],[227,1],[188,1],[187,1],[186,1],[148,1],[147,1],[146,1],[145,1],[144,1],[143,1],[142,1],[141,1],[149,1],[140,1],[138,1],[137,1],[136,1],[135,1],[134,1],[133,1],[132,1],[131,1],[139,1],[150,1],[151,1],[159,1],[185,1],[184,1],[176,1],[175,1],[174,1],[173,1],[172,1],[171,1],[170,1],[169,1],[168,1],[167,1],[166,1],[165,1],[164,1],[163,1],[162,1],[161,1],[160,1],[129,1],[12,1]]","virtual":"[[12,2],[50,2],[52,2],[53,2],[54,2],[55,2],[56,2]]","parameters":"[[12,1],[454,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[446,1],[445,1],[444,1],[443,1],[455,1],[442,1],[440,1],[439,1],[437,1],[436,1],[434,1],[430,1],[352,1],[50,1],[19,1],[18,1],[17,1],[15,1],[441,1],[456,1]]","return":"[[14,1],[289,1],[290,1],[291,1],[292,1],[308,1],[309,1],[310,1],[311,1],[312,1],[352,1],[360,1],[361,1],[362,1],[363,1],[364,1],[436,1],[439,1],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[288,1],[447,1],[445,1],[444,1],[443,1],[442,1],[441,1],[440,1],[446,1],[216,1],[215,1],[214,1],[55,1],[54,1],[53,1],[52,1],[35,1],[34,1],[56,1],[33,1],[31,1],[19,1],[18,1],[17,1],[16,1],[15,1],[32,1],[455,1],[68,1],[70,1],[213,1],[212,1],[188,1],[187,1],[186,1],[185,1],[69,1],[184,1],[162,1],[161,1],[160,1],[159,1],[72,1],[71,1],[163,1],[456,1]]","value":"[[434,5],[454,5],[256,3],[255,3],[254,3],[253,3],[252,3],[251,3],[250,3],[249,3],[248,3],[247,3],[246,3],[245,3],[244,3],[243,3],[257,3],[237,3],[258,3],[259,3],[274,3],[273,3],[272,3],[271,3],[270,3],[269,3],[268,3],[267,3],[266,3],[265,3],[264,3],[263,3],[262,3],[261,3],[260,3],[242,3],[241,3],[240,3],[239,3],[220,3],[219,3],[218,3],[217,3],[395,3],[396,3],[221,3],[397,3],[399,3],[204,3],[203,3],[202,3],[201,3],[200,3],[398,3],[275,3],[222,3],[224,3],[238,3],[394,3],[236,3],[235,3],[234,3],[233,3],[223,3],[232,3],[230,3],[229,3],[228,3],[227,3],[226,3],[225,3],[231,3],[276,3],[278,3],[199,3],[343,3],[342,3],[341,3],[340,3],[339,3],[338,3],[344,3],[337,3],[335,3],[334,3],[333,3],[332,3],[331,3],[330,3],[336,3],[329,3],[383,3],[381,3],[374,3],[373,3],[372,3],[371,3],[370,3],[369,3],[382,3],[368,3],[366,3],[365,3],[377,3],[378,3],[379,3],[380,3],[367,3],[328,3],[327,3],[326,3],[299,3],[298,3],[297,3],[296,3],[295,3],[294,3],[300,3],[293,3],[390,3],[391,3],[392,3],[393,3],[280,3],[279,3],[389,3],[388,3],[387,3],[386,3],[325,3],[324,3],[323,3],[322,3],[321,3],[320,3],[319,3],[318,3],[317,3],[316,3],[315,3],[314,3],[313,3],[384,3],[385,3],[277,3],[198,3],[197,3],[196,3],[91,3],[92,3],[93,3],[94,3],[95,3],[96,3],[97,3],[98,3],[99,3],[100,3],[101,3],[102,3],[103,3],[104,3],[105,3],[106,3],[107,3],[108,3],[109,3],[110,3],[375,3],[112,3],[113,3],[114,3],[115,3],[116,3],[117,3],[90,3],[89,3],[88,3],[87,3],[23,3],[420,3],[419,3],[418,3],[417,3],[57,3],[416,3],[59,3],[415,3],[414,3],[413,3],[412,3],[411,3],[118,3],[410,3],[74,3],[75,3],[76,3],[77,3],[78,3],[79,3],[80,3],[81,3],[82,3],[83,3],[84,3],[85,3],[86,3],[73,3],[119,3],[111,3],[121,3],[407,3],[406,3],[405,3],[164,3],[165,3],[166,3],[167,3],[120,3],[169,3],[170,3],[171,3],[172,3],[173,3],[408,3],[174,3],[176,3],[404,3],[403,3],[402,3],[401,3],[400,3],[189,3],[190,3],[191,3],[192,3],[193,3],[194,3],[195,3],[175,3],[409,3],[168,3],[150,3],[122,3],[123,3],[124,3],[125,3],[151,3],[127,3],[128,3],[129,3],[130,3],[131,3],[132,3],[133,3],[134,3],[135,3],[126,3],[137,3],[149,3],[136,3],[148,3],[147,3],[146,3],[145,3],[376,3],[143,3],[142,3],[141,3],[140,3],[139,3],[144,3],[138,3],[453,1],[452,1],[451,1],[450,1],[449,1],[448,1],[447,1],[444,1],[445,1],[443,1],[442,1],[441,1],[439,1],[436,1],[429,1],[428,1],[446,1],[440,1],[14,1],[363,1],[70,1],[69,1],[68,1],[60,1],[58,1],[56,1],[55,1],[54,1],[53,1],[52,1],[46,1],[45,1],[44,1],[43,1],[42,1],[35,1],[34,1],[33,1],[32,1],[31,1],[24,1],[22,1],[21,1],[20,1],[19,1],[18,1],[17,1],[16,1],[15,1],[71,1],[364,1],[72,1],[160,1],[362,1],[361,1],[360,1],[352,1],[351,1],[312,1],[311,1],[310,1],[309,1],[308,1],[292,1],[291,1],[290,1],[289,1],[288,1],[455,1],[216,1],[215,1],[214,1],[213,1],[212,1],[188,1],[187,1],[186,1],[185,1],[184,1],[163,1],[162,1],[161,1],[159,1],[456,1]]","stransactionname":"[[15,5]]","stransactiontorollback":"[[17,5]]","ssavepointname":"[[18,5]]","bcommitpendingtransaction":"[[19,5]]","property":"[[20,1005],[276,1005],[277,1005],[278,1005],[279,1005],[280,1005],[293,1005],[294,1005],[295,1005],[296,1005],[297,1005],[298,1005],[299,1005],[300,1005],[313,1005],[275,1005],[314,1005],[316,1005],[317,1005],[318,1005],[319,1005],[320,1005],[321,1005],[322,1005],[323,1005],[324,1005],[325,1005],[326,1005],[327,1005],[328,1005],[329,1005],[315,1005],[274,1005],[273,1005],[272,1005],[241,1005],[242,1005],[243,1005],[244,1005],[245,1005],[246,1005],[247,1005],[248,1005],[249,1005],[250,1005],[251,1005],[252,1005],[253,1005],[254,1005],[255,1005],[256,1005],[257,1005],[271,1005],[270,1005],[269,1005],[268,1005],[267,1005],[266,1005],[330,1005],[265,1005],[263,1005],[262,1005],[261,1005],[260,1005],[259,1005],[258,1005],[264,1005],[240,1005],[331,1005],[333,1005],[389,1005],[390,1005],[391,1005],[392,1005],[393,1005],[394,1005],[395,1005],[396,1005],[397,1005],[398,1005],[399,1005],[400,1005],[401,1005],[402,1005],[388,1005],[403,1005],[405,1005],[406,1005],[407,1005],[408,1005],[409,1005],[410,1005],[411,1005],[412,1005],[413,1005],[414,1005],[415,1005],[416,1005],[417,1005],[418,1005],[404,1005],[387,1005],[386,1005],[385,1005],[334,1005],[335,1005],[336,1005],[337,1005],[338,1005],[339,1005],[340,1005],[341,1005],[342,1005],[343,1005],[344,1005],[365,1005],[366,1005],[367,1005],[368,1005],[369,1005],[370,1005],[384,1005],[383,1005],[382,1005],[381,1005],[380,1005],[379,1005],[332,1005],[378,1005],[376,1005],[375,1005],[374,1005],[373,1005],[372,1005],[371,1005],[377,1005],[239,1005],[238,1005],[237,1005],[101,1005],[102,1005],[103,1005],[104,1005],[105,1005],[106,1005],[107,1005],[108,1005],[109,1005],[110,1005],[111,1005],[112,1005],[113,1005],[114,1005],[100,1005],[115,1005],[117,1005],[118,1005],[119,1005],[120,1005],[121,1005],[122,1005],[123,1005],[124,1005],[125,1005],[126,1005],[127,1005],[128,1005],[129,1005],[130,1005],[116,1005],[99,1005],[98,1005],[97,1005],[21,1005],[22,1005],[23,1005],[57,1005],[58,1005],[59,1005],[60,1005],[73,1005],[74,1005],[75,1005],[76,1005],[77,1005],[78,1005],[79,1005],[80,1005],[81,1005],[82,1005],[96,1005],[95,1005],[94,1005],[93,1005],[92,1005],[91,1005],[131,1005],[90,1005],[88,1005],[87,1005],[86,1005],[85,1005],[84,1005],[83,1005],[89,1005],[132,1005],[133,1005],[134,1005],[194,1005],[195,1005],[196,1005],[197,1005],[198,1005],[199,1005],[200,1005],[201,1005],[202,1005],[203,1005],[204,1005],[217,1005],[218,1005],[219,1005],[220,1005],[221,1005],[222,1005],[236,1005],[235,1005],[234,1005],[233,1005],[232,1005],[231,1005],[193,1005],[230,1005],[228,1005],[227,1005],[226,1005],[225,1005],[224,1005],[223,1005],[229,1005],[419,1005],[192,1005],[190,1005],[135,1005],[136,1005],[137,1005],[138,1005],[139,1005],[140,1005],[141,1005],[142,1005],[143,1005],[144,1005],[145,1005],[146,1005],[147,1005],[148,1005],[149,1005],[150,1005],[151,1005],[189,1005],[176,1005],[175,1005],[174,1005],[173,1005],[172,1005],[191,1005],[171,1005],[169,1005],[168,1005],[167,1005],[166,1005],[165,1005],[164,1005],[170,1005],[420,1005]]","readonly":"[[20,1],[21,1],[22,1],[58,1],[60,1]]","sqltransaction":"[[20,6]]","get":"[[20,3],[276,3],[277,3],[278,3],[279,3],[280,3],[293,3],[294,3],[295,3],[296,3],[297,3],[298,3],[299,3],[300,3],[313,3],[275,3],[314,3],[316,3],[317,3],[318,3],[319,3],[320,3],[321,3],[322,3],[323,3],[324,3],[325,3],[326,3],[327,3],[328,3],[329,3],[315,3],[330,3],[274,3],[272,3],[242,3],[243,3],[244,3],[245,3],[246,3],[247,3],[248,3],[249,3],[250,3],[251,3],[252,3],[253,3],[254,3],[255,3],[273,3],[256,3],[258,3],[259,3],[260,3],[261,3],[262,3],[263,3],[264,3],[265,3],[266,3],[267,3],[268,3],[269,3],[270,3],[271,3],[257,3],[331,3],[332,3],[333,3],[389,3],[390,3],[391,3],[392,3],[393,3],[394,3],[395,3],[396,3],[397,3],[398,3],[399,3],[400,3],[401,3],[402,3],[388,3],[403,3],[405,3],[406,3],[407,3],[408,3],[409,3],[410,3],[411,3],[412,3],[413,3],[414,3],[415,3],[416,3],[417,3],[418,3],[404,3],[387,3],[386,3],[385,3],[334,3],[335,3],[336,3],[337,3],[338,3],[339,3],[340,3],[341,3],[342,3],[343,3],[344,3],[365,3],[366,3],[367,3],[368,3],[369,3],[370,3],[384,3],[383,3],[382,3],[381,3],[380,3],[379,3],[241,3],[378,3],[376,3],[375,3],[374,3],[373,3],[372,3],[371,3],[377,3],[240,3],[239,3],[238,3],[103,3],[104,3],[105,3],[106,3],[107,3],[108,3],[109,3],[110,3],[111,3],[112,3],[113,3],[114,3],[115,3],[116,3],[102,3],[117,3],[119,3],[120,3],[121,3],[122,3],[123,3],[124,3],[125,3],[126,3],[127,3],[128,3],[129,3],[130,3],[131,3],[132,3],[118,3],[101,3],[100,3],[99,3],[21,3],[22,3],[58,3],[59,3],[60,3],[73,3],[74,3],[75,3],[76,3],[77,3],[78,3],[79,3],[80,3],[81,3],[82,3],[83,3],[84,3],[98,3],[97,3],[96,3],[95,3],[94,3],[93,3],[133,3],[92,3],[90,3],[89,3],[88,3],[87,3],[86,3],[85,3],[91,3],[419,3],[134,3],[136,3],[196,3],[197,3],[198,3],[199,3],[200,3],[201,3],[202,3],[203,3],[204,3],[217,3],[218,3],[219,3],[220,3],[221,3],[195,3],[222,3],[224,3],[225,3],[226,3],[227,3],[228,3],[229,3],[230,3],[231,3],[232,3],[233,3],[234,3],[235,3],[236,3],[237,3],[223,3],[194,3],[193,3],[192,3],[137,3],[138,3],[139,3],[140,3],[141,3],[142,3],[143,3],[144,3],[145,3],[146,3],[147,3],[148,3],[149,3],[150,3],[151,3],[164,3],[165,3],[191,3],[190,3],[189,3],[176,3],[175,3],[174,3],[135,3],[173,3],[171,3],[170,3],[169,3],[168,3],[167,3],[166,3],[172,3],[420,3]]","sqlconnection":"[[22,6],[42,5]]","writeonly":"[[23,1],[57,1]]","set":"[[23,3],[277,3],[278,3],[279,3],[280,3],[293,3],[294,3],[295,3],[296,3],[297,3],[298,3],[299,3],[300,3],[313,3],[314,3],[276,3],[315,3],[317,3],[318,3],[319,3],[320,3],[321,3],[322,3],[323,3],[324,3],[325,3],[326,3],[327,3],[328,3],[329,3],[330,3],[316,3],[331,3],[275,3],[273,3],[243,3],[244,3],[245,3],[246,3],[247,3],[248,3],[249,3],[250,3],[251,3],[252,3],[253,3],[254,3],[255,3],[256,3],[274,3],[257,3],[259,3],[260,3],[261,3],[262,3],[263,3],[264,3],[265,3],[266,3],[267,3],[268,3],[269,3],[270,3],[271,3],[272,3],[258,3],[242,3],[332,3],[334,3],[389,3],[390,3],[391,3],[392,3],[393,3],[394,3],[395,3],[396,3],[397,3],[398,3],[399,3],[400,3],[401,3],[402,3],[388,3],[403,3],[405,3],[406,3],[407,3],[408,3],[409,3],[410,3],[411,3],[412,3],[413,3],[414,3],[415,3],[416,3],[417,3],[418,3],[404,3],[333,3],[387,3],[385,3],[335,3],[336,3],[337,3],[338,3],[339,3],[340,3],[341,3],[342,3],[343,3],[344,3],[365,3],[366,3],[367,3],[368,3],[386,3],[369,3],[371,3],[372,3],[373,3],[374,3],[375,3],[376,3],[377,3],[378,3],[379,3],[380,3],[381,3],[382,3],[383,3],[384,3],[370,3],[419,3],[241,3],[239,3],[105,3],[106,3],[107,3],[108,3],[109,3],[110,3],[111,3],[112,3],[113,3],[114,3],[115,3],[116,3],[117,3],[118,3],[104,3],[119,3],[121,3],[122,3],[123,3],[124,3],[125,3],[126,3],[127,3],[128,3],[129,3],[130,3],[131,3],[132,3],[133,3],[134,3],[120,3],[135,3],[103,3],[101,3],[57,3],[59,3],[73,3],[74,3],[75,3],[76,3],[77,3],[78,3],[79,3],[80,3],[81,3],[82,3],[83,3],[84,3],[102,3],[85,3],[87,3],[88,3],[89,3],[90,3],[91,3],[92,3],[93,3],[94,3],[95,3],[96,3],[97,3],[98,3],[99,3],[100,3],[86,3],[240,3],[136,3],[138,3],[197,3],[198,3],[199,3],[200,3],[201,3],[202,3],[203,3],[204,3],[217,3],[218,3],[219,3],[220,3],[221,3],[222,3],[196,3],[223,3],[225,3],[226,3],[227,3],[228,3],[229,3],[230,3],[231,3],[232,3],[233,3],[234,3],[235,3],[236,3],[237,3],[238,3],[224,3],[137,3],[195,3],[193,3],[139,3],[140,3],[141,3],[142,3],[143,3],[144,3],[145,3],[146,3],[147,3],[148,3],[149,3],[150,3],[151,3],[164,3],[194,3],[165,3],[167,3],[168,3],[169,3],[170,3],[171,3],[172,3],[173,3],[174,3],[175,3],[176,3],[189,3],[190,3],[191,3],[192,3],[166,3],[420,3]]","enumeration":"[[24,1002]]","allok":"[[24,1]]","0":"[[24,1]]","interface":"[[25,1006],[26,1],[27,1],[28,1],[29,1],[30,1],[31,1],[32,1],[33,1],[34,1],[35,1]]","delete":"[[186,1006],[310,1006],[290,1006],[214,1006],[161,1006],[70,1006],[362,1006],[53,1006],[33,1006],[64,1],[353,1],[348,1],[345,1],[28,1],[304,1],[301,1],[284,1],[281,1],[36,1],[208,1],[205,1],[356,1],[180,1],[177,1],[39,1],[155,1],[152,1],[61,1],[25,1]]","insert":"[[184,1006],[308,1006],[288,1006],[212,1006],[159,1006],[68,1006],[360,1006],[52,1006],[31,1006],[64,1],[353,1],[348,1],[345,1],[28,1],[304,1],[301,1],[284,1],[281,1],[36,1],[208,1],[205,1],[356,1],[180,1],[177,1],[39,1],[155,1],[152,1],[61,1],[25,1]]","selectall":"[[188,1006],[312,1006],[292,1006],[216,1006],[163,1006],[72,1006],[364,1006],[56,1006],[35,1006],[64,1],[353,1],[348,1],[345,1],[28,1],[304,1],[301,1],[284,1],[281,1],[36,1],[208,1],[205,1],[356,1],[180,1],[177,1],[39,1],[155,1],[152,1],[61,1],[25,1]]","selectone":"[[187,1006],[311,1006],[291,1006],[215,1006],[162,1006],[71,1006],[363,1006],[55,1006],[34,1006],[64,1],[353,1],[348,1],[345,1],[28,1],[304,1],[301,1],[284,1],[281,1],[36,1],[208,1],[205,1],[356,1],[180,1],[177,1],[39,1],[155,1],[152,1],[61,1],[25,1]]","update":"[[185,1006],[309,1006],[289,1006],[213,1006],[160,1006],[69,1006],[361,1006],[54,1006],[32,1006],[64,1],[353,1],[348,1],[345,1],[28,1],[304,1],[301,1],[284,1],[281,1],[36,1],[208,1],[205,1],[356,1],[180,1],[177,1],[39,1],[155,1],[152,1],[61,1],[25,1]]","datatable":"[[436,10],[34,5],[451,5],[448,5],[447,5],[445,5],[443,5],[441,5],[364,5],[363,5],[312,5],[452,5],[292,5],[311,5],[216,5],[215,5],[188,5],[187,5],[163,5],[162,5],[72,5],[71,5],[56,5],[55,5],[35,5],[291,5],[453,5],[422,3],[425,3]]","mustinherit":"[[36,1]]","abstract":"[[36,3]]","cpmainconnectionprovider":"[[57,1006],[36,1],[349,1],[345,1],[305,1],[301,1],[285,1],[281,1],[209,1],[205,1],[181,1],[177,1],[156,1],[152,1],[65,1],[61,1],[40,1],[353,1],[357,1]]","ierrorcode":"[[58,1006],[36,1],[349,1],[345,1],[305,1],[301,1],[285,1],[281,1],[209,1],[205,1],[181,1],[177,1],[156,1],[152,1],[65,1],[61,1],[40,1],[353,1],[357,1]]","irowsaffected":"[[60,1006],[36,1],[349,1],[345,1],[305,1],[301,1],[285,1],[281,1],[209,1],[205,1],[181,1],[177,1],[156,1],[152,1],[65,1],[61,1],[40,1],[353,1],[357,1]]","m_bmainconnectioniscreatedlocal":"[[45,1006],[36,1],[350,1],[345,1],[306,1],[301,1],[286,1],[281,1],[210,1],[205,1],[182,1],[177,1],[157,1],[152,1],[66,1],[61,1],[41,1],[353,1],[358,1]]","m_cpmainconnectionprovider":"[[46,1006],[36,1],[350,1],[345,1],[306,1],[301,1],[286,1],[281,1],[210,1],[205,1],[182,1],[177,1],[157,1],[152,1],[66,1],[61,1],[41,1],[353,1],[358,1]]","m_ierrorcode":"[[44,1006],[36,1],[350,1],[345,1],[306,1],[301,1],[286,1],[281,1],[210,1],[205,1],[182,1],[177,1],[157,1],[152,1],[66,1],[61,1],[41,1],[353,1],[358,1]]","m_irowsaffected":"[[43,1006],[36,1],[350,1],[345,1],[306,1],[301,1],[286,1],[281,1],[210,1],[205,1],[182,1],[177,1],[157,1],[152,1],[66,1],[61,1],[41,1],[353,1],[358,1]]","m_scomainconnection":"[[42,1006],[36,1],[350,1],[345,1],[306,1],[301,1],[286,1],[281,1],[210,1],[205,1],[182,1],[177,1],[157,1],[152,1],[66,1],[61,1],[41,1],[353,1],[358,1]]","field":"[[42,1003],[43,1003],[44,1003],[45,1003],[46,1003],[351,1003],[428,1003],[429,1003]]","integer":"[[447,3],[448,3],[43,1],[60,1],[440,1],[443,1],[445,1],[451,1]]","int":"[[447,12],[448,12],[422,9],[425,9],[60,5],[43,4],[440,4],[443,4],[445,4],[451,4]]","sqlint32":"[[217,8],[256,8],[255,8],[254,8],[250,8],[249,8],[248,8],[247,8],[246,8],[245,8],[262,8],[244,8],[242,8],[241,8],[240,8],[239,8],[235,8],[234,8],[233,8],[232,8],[226,8],[243,8],[264,8],[266,8],[268,8],[416,8],[412,8],[411,8],[407,8],[406,8],[403,8],[372,8],[370,8],[339,8],[332,8],[328,8],[327,8],[325,8],[324,8],[323,8],[313,8],[300,8],[296,8],[295,8],[293,8],[269,8],[225,8],[224,8],[418,8],[204,8],[115,8],[114,8],[113,8],[112,8],[111,8],[108,8],[106,8],[104,8],[103,8],[117,8],[102,8],[92,8],[87,8],[83,8],[82,8],[80,8],[79,8],[76,8],[75,8],[74,8],[98,8],[417,8],[124,8],[127,8],[203,8],[199,8],[196,8],[193,8],[192,8],[191,8],[190,8],[189,8],[176,8],[126,8],[171,8],[164,8],[151,8],[148,8],[144,8],[133,8],[132,8],[131,8],[130,8],[129,8],[128,8],[166,8],[58,6],[44,5]]","inherits":"[[61,1],[152,1],[177,1],[205,1],[281,1],[301,1],[345,1],[353,1]]","extends":"[[61,1],[152,1],[177,1],[205,1],[281,1],[301,1],[345,1],[353,1]]","baktiv":"[[329,1007],[116,1007],[174,1007],[297,1007],[200,1007],[236,1007],[61,1],[305,1],[301,1],[285,1],[281,1],[205,1],[345,1],[181,1],[177,1],[156,1],[152,1],[65,1],[209,1],[349,1]]","bamsdokument":"[[110,1007],[251,1007],[61,1],[65,1],[205,1],[209,1]]","bauserstuebernahme":"[[91,1007],[65,1],[61,1]]","bausgangsarchiviert":"[[96,1007],[65,1],[61,1]]","bbedrretourniert":"[[143,1007],[65,1],[61,1]]","bbereit_zur_archivierung":"[[95,1007],[65,1],[61,1]]","bbl_scan":"[[149,1007],[65,1],[61,1]]","bbldossier":"[[150,1007],[65,1],[61,1]]","beingangsarchiviert":"[[100,1007],[65,1],[61,1]]","bfastatuswechsel":"[[140,1007],[65,1],[61,1]]","bfaverantwortlicherwechsel":"[[141,1007],[65,1],[61,1]]","bfapartnerwechsel":"[[139,1007],[65,1],[61,1]]","bgesperrt":"[[86,1007],[65,1],[61,1]]","bofficedokumentgeloescht":"[[145,1007],[65,1],[61,1]]","bunvollstaendig":"[[93,1007],[65,1],[61,1]]","bvertraulich":"[[120,1007],[65,1],[61,1]]","bzu_retournieren":"[[99,1007],[221,1007],[61,1],[65,1],[205,1],[209,1]]","bzustaendig_kube":"[[118,1007],[65,1],[61,1]]","inherited":"[[345,24],[349,12],[61,11],[353,11],[152,11],[177,11],[301,11],[281,11],[205,11],[348,7],[350,5],[306,5],[286,5],[210,5],[358,5],[182,5],[66,5],[157,5],[65,4],[156,4],[305,4],[181,4],[285,4],[357,4],[209,4],[304,2],[208,2],[155,2],[284,2],[64,2],[356,2],[180,2]]","from":"[[345,24],[349,12],[61,11],[353,11],[152,11],[177,11],[301,11],[281,11],[205,11],[348,7],[350,5],[306,5],[286,5],[210,5],[358,5],[182,5],[66,5],[157,5],[65,4],[156,4],[305,4],[181,4],[285,4],[357,4],[209,4],[304,2],[208,2],[155,2],[284,2],[64,2],[356,2],[180,2]]","daarchivierungsdatum":"[[122,1007],[65,1],[61,1]]","dadatum_ausgangsarchivierung":"[[97,1007],[65,1],[61,1]]","dadatum_eingangsarchivierung":"[[101,1007],[65,1],[61,1]]","daerinnerungam":"[[136,1007],[65,1],[61,1]]","daerstelltam":"[[81,1007],[65,1],[61,1]]","daerstellungsdatum":"[[121,1007],[65,1],[61,1]]","dagesperrtam":"[[88,1007],[65,1],[61,1]]","damutiertam":"[[84,1007],[65,1],[61,1]]","datermin":"[[123,1007],[65,1],[61,1]]","ianzeigestatus":"[[148,1007],[65,1],[61,1]]","iaufbewahrung_elektronisch":"[[130,1007],[65,1],[61,1]]","iaufbewahrung_phaysisch":"[[131,1007],[65,1],[61,1]]","ibrvernichtungnachtagen":"[[144,1007],[65,1],[61,1]]","ibarcodenr":"[[108,1007],[65,1],[61,1]]","ibck":"[[127,1007],[65,1],[61,1]]","ibearbeitung_nach_abschluss":"[[133,1007],[65,1],[61,1]]","ibearbeitungszeit_in_minuten":"[[128,1007],[65,1],[61,1]]","icoldstatus":"[[106,1007],[65,1],[61,1]]","idokdurchkubeweitergegeben":"[[126,1007],[65,1],[61,1]]","idokumenttypnr":"[[92,1007],[190,1007],[217,1007],[61,1],[65,1],[177,1],[181,1],[205,1],[209,1]]","iersteller":"[[79,1007],[65,1],[61,1]]","ierstellerteam":"[[80,1007],[65,1],[61,1]]","igesperrt_durch":"[[87,1007],[65,1],[61,1]]","iin_edoka_datenbank":"[[132,1007],[65,1],[61,1]]","ima_ausgangsarchivierung":"[[98,1007],[65,1],[61,1]]","ima_eingangsarchivierung":"[[102,1007],[65,1],[61,1]]","imitarbeiternr":"[[74,1007],[313,1007],[61,1],[65,1],[301,1],[305,1]]","imitarbeiternr1":"[[75,1007],[65,1],[61,1]]","imonierung_in_tagen":"[[129,1007],[65,1],[61,1]]","imutierer":"[[332,1007],[82,1007],[176,1007],[300,1007],[203,1007],[239,1007],[61,1],[305,1],[301,1],[285,1],[281,1],[205,1],[345,1],[181,1],[177,1],[156,1],[152,1],[65,1],[209,1],[349,1]]","imutiererteam":"[[124,1007],[65,1],[61,1]]","imutierertieam":"[[83,1007],[65,1],[61,1]]","inoedit":"[[151,1007],[65,1],[61,1]]","inrpar00":"[[76,1007],[370,1007],[61,1],[65,1],[353,1],[357,1]]","ipostzustellung":"[[115,1007],[65,1],[61,1]]","istatus_edoka_batch_ausgang":"[[103,1007],[65,1],[61,1]]","istatus_edoka_batch_eingang":"[[104,1007],[65,1],[61,1]]","istatusnr":"[[117,1007],[65,1],[61,1]]","iunterschriftlinks":"[[113,1007],[65,1],[61,1]]","iunterschriftrechts":"[[114,1007],[65,1],[61,1]]","iverantwortlich":"[[111,1007],[65,1],[61,1]]","izustaendiger":"[[112,1007],[65,1],[61,1]]","sanredezustelladresse":"[[125,1007],[65,1],[61,1]]","sbedrdokumentid":"[[142,1007],[65,1],[61,1]]","sbemerkung":"[[90,1007],[65,1],[61,1]]","sbemerkunguvm":"[[94,1007],[65,1],[61,1]]","sbezeichnung":"[[89,1007],[167,1007],[218,1007],[61,1],[65,1],[152,1],[156,1],[205,1],[209,1]]","scolddokumentid":"[[109,1007],[65,1],[61,1]]","scoldfolder":"[[134,1007],[65,1],[61,1]]","scoldschema":"[[135,1007],[65,1],[61,1]]","sdokumentid":"[[73,1007],[450,5],[61,1],[65,1]]","sdokumentidn":"[[77,1007],[65,1],[61,1]]","sdokumentname":"[[78,1007],[450,5],[61,1],[65,1]]","sfanummer1":"[[137,1007],[65,1],[61,1]]","sfanummer2":"[[138,1007],[65,1],[61,1]]","sfanummer3":"[[146,1007],[65,1],[61,1]]","sloeschgrund":"[[105,1007],[65,1],[61,1]]","sspeicherort":"[[85,1007],[65,1],[61,1]]","sversandadresse":"[[107,1007],[65,1],[61,1]]","svvnr":"[[147,1007],[65,1],[61,1]]","szustelladresse":"[[119,1007],[65,1],[61,1]]","inheritance":"[[61,1],[152,1],[177,1],[205,1],[281,1],[301,1],[345,1],[353,1]]","hierarchy":"[[61,1],[152,1],[177,1],[205,1],[281,1],[301,1],[345,1],[353,1]]","overrides":"[[68,1],[216,1],[288,1],[289,1],[290,1],[291,1],[292,1],[215,1],[308,1],[310,1],[311,1],[312,1],[360,1],[361,1],[362,1],[309,1],[363,1],[214,1],[212,1],[69,1],[70,1],[71,1],[72,1],[159,1],[160,1],[213,1],[161,1],[163,1],[184,1],[185,1],[186,1],[187,1],[188,1],[162,1],[364,1]]","override":"[[68,1],[216,1],[288,1],[289,1],[290,1],[291,1],[292,1],[215,1],[308,1],[310,1],[311,1],[312,1],[360,1],[361,1],[362,1],[309,1],[363,1],[214,1],[212,1],[69,1],[70,1],[71,1],[72,1],[159,1],[160,1],[213,1],[161,1],[163,1],[184,1],[185,1],[186,1],[187,1],[188,1],[162,1],[364,1]]","sqlstring":"[[73,8],[383,8],[382,8],[381,8],[380,8],[379,8],[378,8],[377,8],[376,8],[375,8],[374,8],[373,8],[371,8],[369,8],[368,8],[367,8],[384,8],[385,8],[386,8],[387,8],[410,8],[409,8],[401,8],[400,8],[399,8],[398,8],[397,8],[366,8],[396,8],[394,8],[393,8],[392,8],[391,8],[390,8],[389,8],[388,8],[395,8],[365,8],[343,8],[337,8],[142,8],[138,8],[137,8],[135,8],[134,8],[125,8],[119,8],[146,8],[109,8],[105,8],[94,8],[90,8],[89,8],[85,8],[78,8],[77,8],[107,8],[413,8],[147,8],[167,8],[335,8],[322,8],[321,8],[320,8],[319,8],[318,8],[317,8],[165,8],[316,8],[314,8],[294,8],[280,8],[253,8],[219,8],[218,8],[168,8],[315,8],[420,8]]","sqldatetime":"[[81,8],[405,8],[344,8],[331,8],[330,8],[299,8],[298,8],[238,8],[237,8],[202,8],[201,8],[175,8],[136,8],[123,8],[122,8],[121,8],[101,8],[97,8],[88,8],[84,8],[408,8],[419,8]]","sqlboolean":"[[86,8],[273,8],[272,8],[271,8],[270,8],[267,8],[265,8],[274,8],[263,8],[260,8],[259,8],[258,8],[257,8],[252,8],[251,8],[261,8],[236,8],[275,8],[277,8],[404,8],[402,8],[342,8],[341,8],[340,8],[338,8],[276,8],[336,8],[333,8],[329,8],[326,8],[297,8],[279,8],[278,8],[334,8],[231,8],[230,8],[229,8],[143,8],[141,8],[140,8],[139,8],[120,8],[118,8],[145,8],[116,8],[100,8],[99,8],[96,8],[95,8],[93,8],[91,8],[110,8],[149,8],[150,8],[169,8],[228,8],[227,8],[223,8],[222,8],[221,8],[220,8],[200,8],[198,8],[197,8],[195,8],[194,8],[174,8],[173,8],[172,8],[170,8],[414,8],[415,8]]","bdokument_ausgangsarchivierung":"[[172,1007],[156,1],[152,1]]","bdokument_bearbeitung_abgeschlossen":"[[173,1007],[198,1007],[152,1],[156,1],[177,1],[181,1]]","bdokument_bearbeitung_moeglich":"[[170,1007],[156,1],[152,1]]","bfolgestatus_durch_anderen_verantwortlichen":"[[169,1007],[194,1007],[152,1],[156,1],[177,1],[181,1]]","daerstellt_am":"[[237,1007],[330,1007],[175,1007],[201,1007],[298,1007],[305,1],[301,1],[285,1],[281,1],[152,1],[209,1],[205,1],[181,1],[177,1],[156,1],[345,1],[349,1]]","idokument_statusnr":"[[164,1007],[156,1],[152,1]]","ierledigung_ab":"[[171,1007],[196,1007],[152,1],[156,1],[177,1],[181,1]]","istatus_bezeichnungnr":"[[166,1007],[192,1007],[152,1],[156,1],[177,1],[181,1]]","sdokumenitid":"[[165,1007],[156,1],[152,1]]","sreihenfolge":"[[168,1007],[156,1],[152,1]]","bdokument_ausgangsarchivieren":"[[197,1007],[181,1],[177,1]]","bdokumentbearbeitung_moeglich":"[[195,1007],[181,1],[177,1]]","damutiert_am":"[[202,1007],[238,1007],[299,1007],[331,1007],[177,1],[181,1],[205,1],[209,1],[281,1],[285,1],[301,1],[305,1],[345,1],[349,1]]","idokumentstatusnr":"[[189,1007],[181,1],[177,1]]","imandantnr":"[[199,1007],[235,1007],[296,1007],[328,1007],[177,1],[181,1],[205,1],[209,1],[281,1],[285,1],[301,1],[305,1],[345,1],[349,1]]","ireihenfolge":"[[193,1007],[181,1],[177,1]]","istatustyp":"[[204,1007],[181,1],[177,1]]","istatustypnr":"[[191,1007],[181,1],[177,1]]","banzeigezurdokumenterstellung":"[[270,1007],[209,1],[205,1]]","bbedingtretournierbar":"[[267,1007],[209,1],[205,1]]","bbezeichnungmut":"[[276,1007],[209,1],[205,1]]","bcold_ersetzen":"[[259,1007],[209,1],[205,1]]","bdokument_wird_erstellt":"[[257,1007],[209,1],[205,1]]","bdokument_wird_retourniert":"[[258,1007],[209,1],[205,1]]","beingang_ersetzt_ausgang":"[[222,1007],[209,1],[205,1]]","beldokimport":"[[279,1007],[209,1],[205,1]]","bemail_versand":"[[260,1007],[209,1],[205,1]]","bfunktionen_zuweisen":"[[261,1007],[209,1],[205,1]]","bhostdokument":"[[252,1007],[209,1],[205,1]]","bintern":"[[278,1007],[209,1],[205,1]]","bistfarbigarchiviert":"[[277,1007],[209,1],[205,1]]","bkundendokument":"[[271,1007],[209,1],[205,1]]","bnurnative":"[[263,1007],[209,1],[205,1]]","bpartnersaldierung_statusalt":"[[227,1007],[209,1],[205,1]]","bsb":"[[272,1007],[209,1],[205,1]]","bsbedituser":"[[274,1007],[209,1],[205,1]]","bsbimport":"[[273,1007],[209,1],[205,1]]","bsbnur":"[[275,1007],[209,1],[205,1]]","bunterschrift_links":"[[230,1007],[209,1],[205,1]]","bunterschrift_rechts":"[[231,1007],[209,1],[205,1]]","bvertrag":"[[265,1007],[209,1],[205,1]]","bvertrauliches_dokument":"[[229,1007],[209,1],[205,1]]","bwird_importiert":"[[223,1007],[209,1],[205,1]]","bwird_nicht_geloescht":"[[228,1007],[209,1],[205,1]]","bzu_vercolden":"[[220,1007],[209,1],[205,1]]","ianzahl_tage":"[[224,1007],[209,1],[205,1]]","iaufbewahrungsfrist_elektronisch":"[[233,1007],[209,1],[205,1]]","iaufbewahrungsfrist_physisch":"[[234,1007],[209,1],[205,1]]","icold_folder":"[[254,1007],[209,1],[205,1]]","idbearbeitungszeit":"[[225,1007],[209,1],[205,1]]","idoktypbedingteretournierung":"[[268,1007],[209,1],[205,1]]","idokumentart_coldausgang":"[[244,1007],[209,1],[205,1]]","idokumentart_coldeingang":"[[245,1007],[209,1],[205,1]]","idokumentart_host":"[[246,1007],[209,1],[205,1]]","idokumentart_kundendossier":"[[241,1007],[209,1],[205,1]]","idokumentart_nativ":"[[248,1007],[209,1],[205,1]]","idokumentart_neuerstellung":"[[242,1007],[209,1],[205,1]]","idokumentart_retournierung":"[[243,1007],[209,1],[205,1]]","idokumentart_weitere":"[[247,1007],[209,1],[205,1]]","idokumentstatus":"[[256,1007],[209,1],[205,1]]","idokumentstatus_barcode":"[[262,1007],[209,1],[205,1]]","imonate_bis_zur_archivierung":"[[232,1007],[209,1],[205,1]]","iobjektbezeichnungnr":"[[266,1007],[209,1],[205,1]]","ioffice_vorlagenr":"[[240,1007],[209,1],[205,1]]","iowner":"[[264,1007],[209,1],[205,1]]","iphysisches_archiv":"[[255,1007],[209,1],[205,1]]","iprozessnr":"[[249,1007],[209,1],[205,1]]","iprozessnr1":"[[250,1007],[209,1],[205,1]]","itage_mutation":"[[226,1007],[209,1],[205,1]]","itagebisvernichtungbedingteretournierung":"[[269,1007],[209,1],[205,1]]","sbeschreibung":"[[219,1007],[294,1007],[205,1],[209,1],[281,1],[285,1],[345,1],[349,1]]","sfachverantwortung":"[[280,1007],[209,1],[205,1]]","shostdokumenttyp":"[[253,1007],[209,1],[205,1]]","ikey_wert":"[[295,1007],[281,1],[285,1],[345,1],[349,1]]","ikeynr":"[[293,1007],[281,1],[285,1],[345,1],[349,1]]","bedokamesasge":"[[334,1007],[305,1],[301,1]]","bedoka_mail":"[[340,1007],[305,1],[301,1]]","bgebmeldung":"[[342,1007],[305,1],[301,1]]","bjournalisierung":"[[341,1007],[305,1],[301,1]]","bmaildirektversenden":"[[336,1007],[305,1],[301,1]]","bmaildokumentrueckgang":"[[338,1007],[305,1],[301,1]]","bmailempfang":"[[333,1007],[305,1],[301,1]]","bshowtip":"[[326,1007],[305,1],[301,1]]","davalidto":"[[344,1007],[405,1007],[301,1],[305,1],[353,1],[357,1]]","ifuermandant":"[[325,1007],[305,1],[301,1]]","ifunktionnr":"[[323,1007],[305,1],[301,1]]","iklassifizierung":"[[339,1007],[305,1],[301,1]]","ipartnernr":"[[327,1007],[305,1],[301,1]]","isprache":"[[324,1007],[305,1],[301,1]]","sanrede":"[[317,1007],[305,1],[301,1]]","semail":"[[319,1007],[305,1],[301,1]]","sfax":"[[320,1007],[305,1],[301,1]]","sfunktion":"[[335,1007],[305,1],[301,1]]","skurzzeichen":"[[316,1007],[305,1],[301,1]]","smail_1":"[[343,1007],[305,1],[301,1]]","sname":"[[315,1007],[305,1],[301,1]]","srang":"[[337,1007],[305,1],[301,1]]","stelefon":"[[321,1007],[305,1],[301,1]]","stgnummer":"[[318,1007],[305,1],[301,1]]","sunterschrift_text":"[[322,1007],[305,1],[301,1]]","svorname":"[[314,1007],[305,1],[301,1]]","get_dbkey":"[[352,1006],[439,1006],[345,1],[348,1],[422,1],[425,1]]","connectionstring":"[[351,1006],[428,1006],[430,5],[456,5],[345,1],[350,1],[422,1],[427,1]]","tablename":"[[352,5],[436,5],[439,5]]","bboersenkotiert":"[[415,1007],[357,1],[353,1]]","bcdvsa00":"[[404,1007],[357,1],[353,1]]","bisperson":"[[414,1007],[357,1],[353,1]]","bsaldiert":"[[402,1007],[357,1],[353,1]]","dagebgruenddat":"[[408,1007],[357,1],[353,1]]","darate_intl_date":"[[419,1007],[357,1],[353,1]]","iazepl00":"[[403,1007],[357,1],[353,1]]","ilegal_form_id":"[[416,1007],[357,1],[353,1]]","inrbeu01":"[[411,1007],[357,1],[353,1]]","inrbeu02":"[[412,1007],[357,1],[353,1]]","inrdom00":"[[406,1007],[357,1],[353,1]]","inrfog012":"[[372,1007],[357,1],[353,1]]","inrnat01":"[[407,1007],[357,1],[353,1]]","irate_intl_id":"[[418,1007],[357,1],[353,1]]","isector_id":"[[417,1007],[357,1],[353,1]]","sbeban011":"[[386,1007],[357,1],[353,1]]","sbeban012":"[[373,1007],[357,1],[353,1]]","sbeban022":"[[375,1007],[357,1],[353,1]]","sbeban21":"[[388,1007],[357,1],[353,1]]","sbepgm00":"[[368,1007],[357,1],[353,1]]","sbkpar00":"[[371,1007],[357,1],[353,1]]","scdbal00":"[[396,1007],[357,1],[353,1]]","scdbnk00":"[[369,1007],[357,1],[353,1]]","scdnog01":"[[409,1007],[357,1],[353,1]]","scdpaw00":"[[410,1007],[357,1],[353,1]]","scdvig00":"[[397,1007],[357,1],[353,1]]","sdmmsg00":"[[366,1007],[357,1],[353,1]]","sidmsg00":"[[365,1007],[357,1],[353,1]]","skurzname_stamm":"[[413,1007],[357,1],[353,1]]","snradr00":"[[384,1007],[357,1],[353,1]]","snrfog011":"[[385,1007],[357,1],[353,1]]","snrfog022":"[[374,1007],[357,1],[353,1]]","snrfog21":"[[387,1007],[357,1],[353,1]]","snrparad":"[[383,1007],[357,1],[353,1]]","sname_formated":"[[420,1007],[357,1],[353,1]]","ssavrs00":"[[398,1007],[357,1],[353,1]]","stsmut00":"[[399,1007],[357,1],[353,1]]","stxadz011":"[[389,1007],[357,1],[353,1]]","stxadz012":"[[376,1007],[357,1],[353,1]]","stxadz021":"[[390,1007],[357,1],[353,1]]","stxadz022":"[[377,1007],[357,1],[353,1]]","stxadz031":"[[391,1007],[357,1],[353,1]]","stxadz032":"[[378,1007],[357,1],[353,1]]","stxadz041":"[[392,1007],[357,1],[353,1]]","stxadz042":"[[379,1007],[357,1],[353,1]]","stxadz051":"[[393,1007],[357,1],[353,1]]","stxadz052":"[[380,1007],[357,1],[353,1]]","stxadz061":"[[394,1007],[357,1],[353,1]]","stxadz062":"[[381,1007],[357,1],[353,1]]","stxadz071":"[[395,1007],[357,1],[353,1]]","stxadz072":"[[382,1007],[357,1],[353,1]]","stxres00":"[[401,1007],[357,1],[353,1]]","svdmuter":"[[400,1007],[357,1],[353,1]]","sztmsg00":"[[367,1007],[357,1],[353,1]]","db":"[[422,1008],[430,1006],[432,1006],[431,1005],[433,1005],[423,1004],[424,1004],[425,1004],[426,1004],[427,1004],[446,1003],[447,1003],[448,1003],[449,1003],[450,1003],[438,1003],[452,1003],[445,1003],[453,1003],[454,1003],[451,1003],[444,1003],[456,1003],[442,1003],[441,1003],[440,1003],[439,1003],[455,1003],[437,1003],[436,1003],[435,1003],[434,1003],[443,1003],[429,1],[428,1],[421,1]]","buildallfieldssql":"[[452,1006],[425,1],[422,1]]","buildinsertsql":"[[453,1006],[425,1],[422,1]]","cold_index_sichern":"[[445,1006],[425,1],[422,1]]","createinsertcommand":"[[455,1006],[425,1],[422,1]]","datarow":"[[455,5],[456,5],[422,2],[425,2]]","create_edoka_doc":"[[444,1006],[425,1],[422,1]]","clsdocdata":"[[444,5],[425,1],[422,1]]","exec_sql":"[[437,1006],[425,1],[422,1]]","getdocumentasbase64":"[[449,1006],[425,1],[422,1]]","get_applicationtype_from_vorlage":"[[443,1006],[425,1],[422,1]]","get_dokumentwertlist":"[[451,1006],[425,1],[422,1]]","get_dokumente":"[[448,1006],[425,1],[422,1]]","get_mitarbeiternr":"[[440,1006],[425,1],[422,1]]","get_partnerstruktur":"[[447,1006],[425,1],[422,1]]","get_tabledata":"[[436,1006],[425,1],[422,1]]","params":"[[422,1],[425,1],[436,1]]","get_vorlage_by_dokumentid":"[[441,1006],[425,1],[422,1]]","insertdatarow":"[[456,1006],[425,1],[422,1]]","insertparameter":"[[454,1006],[425,1],[422,1]]","sqlcommand":"[[454,5],[455,5],[422,1],[425,1]]","object":"[[446,5],[454,5],[456,5],[422,1],[425,1]]","save_to_db":"[[450,1006],[425,1],[422,1]]","status_erstellen":"[[446,1006],[425,1],[422,1]]","update_data":"[[438,1006],[425,1],[422,1]]","add_parameter":"[[434,1006],[425,1],[422,1]]","clear_parameter":"[[435,1006],[425,1],[422,1]]","get_vorlage_to_file":"[[442,1006],[425,1],[422,1]]","dsdaten":"[[429,1006],[427,1],[422,1]]","shadows":"[[429,1]]","dataset":"[[429,5]]","optional":"[[436,2],[448,1]]","storedproc":"[[436,5]]","false":"[[436,4],[448,2]]","is_sql_string":"[[436,5]]","paramarray":"[[436,1]]","sp_params":"[[436,5]]","array":"[[436,1]]","sql":"[[437,5]]","mitarbeiter":"[[440,5]]","dokumentid":"[[441,5],[442,5],[445,5],[446,5],[449,5],[451,5]]","nr":"[[442,5]]","tempdir":"[[442,5]]","vorlagenr":"[[443,5]]","docdata":"[[444,5]]","indextyp":"[[445,5]]","blsequenz":"[[446,5]]","partnernr":"[[447,5],[448,5]]","partnerlist":"[[447,5]]","mitarbeiternr":"[[447,5]]","profilnr":"[[447,5],[448,5]]","dokumentartnr":"[[448,5]]","alledokumente":"[[448,5]]","clsdok":"[[449,5]]","dokumenttypnr":"[[451,5]]","table":"[[452,5],[453,5]]","command":"[[454,5]]","parametername":"[[454,5]]","sourcecolumn":"[[454,5]]","row":"[[455,5],[456,5]]","namespaces":"[[457,1]]"}; \ No newline at end of file diff --git a/Database/VSdoc/toc--/t_-1.js b/Database/VSdoc/toc--/t_-1.js index 5eb140b7..858925d3 100644 --- a/Database/VSdoc/toc--/t_-1.js +++ b/Database/VSdoc/toc--/t_-1.js @@ -1 +1 @@ -c['-1']=[['2',"EDOKA_Database Reference","topic_0000000000000186.html",1]]; \ No newline at end of file +c['-1']=[['2',"Database Reference","topic_0000000000000186.html",1]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/t_2.js b/Database/VSdoc/toc--/t_2.js index 88bccfb1..98516241 100644 --- a/Database/VSdoc/toc--/t_2.js +++ b/Database/VSdoc/toc--/t_2.js @@ -1 +1 @@ -c['2']=[['4',"EDOKA_Database Namespace","topic_0000000000000169.html",1],['36',"edoka_dms Namespace","topic_0000000000000000.html",1]]; \ No newline at end of file +c['2']=[['4',"Database Namespace","topic_0000000000000169.html",1],['36',"edoka_dms Namespace","topic_0000000000000000.html",1]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/t_4.js b/Database/VSdoc/toc--/t_4.js index 068c77a7..7ea3ae69 100644 --- a/Database/VSdoc/toc--/t_4.js +++ b/Database/VSdoc/toc--/t_4.js @@ -1 +1 @@ -c['4']=[['5',"EDOKA_DB Class","topic_000000000000016A.html",1]]; \ No newline at end of file +c['4']=[['5',"DB Class","topic_000000000000016A.html",1]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/t_5.js b/Database/VSdoc/toc--/t_5.js index 6c09f80d..cb8558a2 100644 --- a/Database/VSdoc/toc--/t_5.js +++ b/Database/VSdoc/toc--/t_5.js @@ -1 +1 @@ -c['5']=[['6',"EDOKA_DB Constructor","topic_000000000000016D_overloads--.html",1],['9',"Methods","topic_000000000000016A_methods--.html",1],['33',"Fields","topic_000000000000016A_vars--.html",1]]; \ No newline at end of file +c['5']=[['6',"DB Constructor","topic_000000000000016D_overloads--.html",1],['9',"Methods","topic_000000000000016A_methods--.html",1],['33',"Fields","topic_000000000000016A_vars--.html",1]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/t_6.js b/Database/VSdoc/toc--/t_6.js index d99e6a67..c45f6524 100644 --- a/Database/VSdoc/toc--/t_6.js +++ b/Database/VSdoc/toc--/t_6.js @@ -1 +1 @@ -c['6']=[['7',"EDOKA_DB() Constructor","topic_000000000000016E.html",0],['8',"EDOKA_DB(string) Constructor","topic_000000000000016D.html",0]]; \ No newline at end of file +c['6']=[['7',"DB() Constructor","topic_000000000000016E.html",0],['8',"DB(string) Constructor","topic_000000000000016D.html",0]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000000.html.js b/Database/VSdoc/toc--/topic_0000000000000000.html.js index 3a5ea7f3..8ee3dfd8 100644 --- a/Database/VSdoc/toc--/topic_0000000000000000.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000000.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000001.html.js b/Database/VSdoc/toc--/topic_0000000000000001.html.js index ac1860c3..fb781f55 100644 --- a/Database/VSdoc/toc--/topic_0000000000000001.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000001.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000001_methods--.html.js b/Database/VSdoc/toc--/topic_0000000000000001_methods--.html.js index ade9a782..e9c78db4 100644 --- a/Database/VSdoc/toc--/topic_0000000000000001_methods--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000001_methods--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000001_props--.html.js b/Database/VSdoc/toc--/topic_0000000000000001_props--.html.js index 3b1d531b..4004768f 100644 --- a/Database/VSdoc/toc--/topic_0000000000000001_props--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000001_props--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['39',"Properties","topic_0000000000000001_props--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['39',"Properties","topic_0000000000000001_props--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000002.html.js b/Database/VSdoc/toc--/topic_0000000000000002.html.js index 509d660c..99116f14 100644 --- a/Database/VSdoc/toc--/topic_0000000000000002.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000002.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['38',"clsConnectionProvider Constructor","topic_0000000000000002.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['38',"clsConnectionProvider Constructor","topic_0000000000000002.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000003.html.js b/Database/VSdoc/toc--/topic_0000000000000003.html.js index a39c0dc3..0e522266 100644 --- a/Database/VSdoc/toc--/topic_0000000000000003.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000003.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['48',"Dispose Method","topic_0000000000000003_overloads--.html"],['50',"Dispose() Method","topic_0000000000000003.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['48',"Dispose Method","topic_0000000000000003_overloads--.html"],['50',"Dispose() Method","topic_0000000000000003.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000003_overloads--.html.js b/Database/VSdoc/toc--/topic_0000000000000003_overloads--.html.js index d544fcd4..8f8686a7 100644 --- a/Database/VSdoc/toc--/topic_0000000000000003_overloads--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000003_overloads--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['48',"Dispose Method","topic_0000000000000003_overloads--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['48',"Dispose Method","topic_0000000000000003_overloads--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000004.html.js b/Database/VSdoc/toc--/topic_0000000000000004.html.js index 05f5338e..0d9dd98c 100644 --- a/Database/VSdoc/toc--/topic_0000000000000004.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000004.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['48',"Dispose Method","topic_0000000000000003_overloads--.html"],['49',"Dispose(bool) Method","topic_0000000000000004.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['48',"Dispose Method","topic_0000000000000003_overloads--.html"],['49',"Dispose(bool) Method","topic_0000000000000004.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000005.html.js b/Database/VSdoc/toc--/topic_0000000000000005.html.js index 13b01746..eb0e41d3 100644 --- a/Database/VSdoc/toc--/topic_0000000000000005.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000005.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['51',"OpenConnection Method","topic_0000000000000005.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['51',"OpenConnection Method","topic_0000000000000005.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000006.html.js b/Database/VSdoc/toc--/topic_0000000000000006.html.js index 238aa7b0..4d6f99aa 100644 --- a/Database/VSdoc/toc--/topic_0000000000000006.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000006.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['45',"BeginTransaction Method","topic_0000000000000006.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['45',"BeginTransaction Method","topic_0000000000000006.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000007.html.js b/Database/VSdoc/toc--/topic_0000000000000007.html.js index 2edc7c49..26638980 100644 --- a/Database/VSdoc/toc--/topic_0000000000000007.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000007.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['47',"CommitTransaction Method","topic_0000000000000007.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['47',"CommitTransaction Method","topic_0000000000000007.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000008.html.js b/Database/VSdoc/toc--/topic_0000000000000008.html.js index 430c70b1..4106683a 100644 --- a/Database/VSdoc/toc--/topic_0000000000000008.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000008.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['52',"RollbackTransaction Method","topic_0000000000000008.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['52',"RollbackTransaction Method","topic_0000000000000008.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000009.html.js b/Database/VSdoc/toc--/topic_0000000000000009.html.js index 838f075d..95bb2c76 100644 --- a/Database/VSdoc/toc--/topic_0000000000000009.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000009.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['53',"SaveTransaction Method","topic_0000000000000009.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['53',"SaveTransaction Method","topic_0000000000000009.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000000A.html.js b/Database/VSdoc/toc--/topic_000000000000000A.html.js index 57376459..009c75ef 100644 --- a/Database/VSdoc/toc--/topic_000000000000000A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000000A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['46',"CloseConnection Method","topic_000000000000000A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['44',"Methods","topic_0000000000000001_methods--.html"],['46',"CloseConnection Method","topic_000000000000000A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000000B.html.js b/Database/VSdoc/toc--/topic_000000000000000B.html.js index dbcec52e..b2863b8a 100644 --- a/Database/VSdoc/toc--/topic_000000000000000B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000000B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['39',"Properties","topic_0000000000000001_props--.html"],['43',"stCurrentTransaction Property","topic_000000000000000B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['39',"Properties","topic_0000000000000001_props--.html"],['43',"stCurrentTransaction Property","topic_000000000000000B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000000C.html.js b/Database/VSdoc/toc--/topic_000000000000000C.html.js index fdf7587d..8c253f66 100644 --- a/Database/VSdoc/toc--/topic_000000000000000C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000000C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['39',"Properties","topic_0000000000000001_props--.html"],['40',"bIsTransactionPending Property","topic_000000000000000C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['39',"Properties","topic_0000000000000001_props--.html"],['40',"bIsTransactionPending Property","topic_000000000000000C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000000D.html.js b/Database/VSdoc/toc--/topic_000000000000000D.html.js index 893f77c2..11540fce 100644 --- a/Database/VSdoc/toc--/topic_000000000000000D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000000D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['39',"Properties","topic_0000000000000001_props--.html"],['42',"scoDBConnection Property","topic_000000000000000D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['39',"Properties","topic_0000000000000001_props--.html"],['42',"scoDBConnection Property","topic_000000000000000D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000000E.html.js b/Database/VSdoc/toc--/topic_000000000000000E.html.js index 47ac3594..95340969 100644 --- a/Database/VSdoc/toc--/topic_000000000000000E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000000E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['39',"Properties","topic_0000000000000001_props--.html"],['41',"sConnectionString Property","topic_000000000000000E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['37',"clsConnectionProvider Class","topic_0000000000000001.html"],['39',"Properties","topic_0000000000000001_props--.html"],['41',"sConnectionString Property","topic_000000000000000E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000000F.html.js b/Database/VSdoc/toc--/topic_000000000000000F.html.js index 3a7e10ce..b8da8d54 100644 --- a/Database/VSdoc/toc--/topic_000000000000000F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000000F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['419',"LLBLError Enumeration","topic_000000000000000F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['419',"LLBLError Enumeration","topic_000000000000000F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000011.html.js b/Database/VSdoc/toc--/topic_0000000000000011.html.js index 768e1ddd..2e0c42c2 100644 --- a/Database/VSdoc/toc--/topic_0000000000000011.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000011.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['412',"ICommonDBAccess Interface","topic_0000000000000011.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['412',"ICommonDBAccess Interface","topic_0000000000000011.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000011_methods--.html.js b/Database/VSdoc/toc--/topic_0000000000000011_methods--.html.js index 48503bbc..a771daf3 100644 --- a/Database/VSdoc/toc--/topic_0000000000000011_methods--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000011_methods--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['412',"ICommonDBAccess Interface","topic_0000000000000011.html"],['413',"Methods","topic_0000000000000011_methods--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['412',"ICommonDBAccess Interface","topic_0000000000000011.html"],['413',"Methods","topic_0000000000000011_methods--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000012.html.js b/Database/VSdoc/toc--/topic_0000000000000012.html.js index bb023253..6d71494a 100644 --- a/Database/VSdoc/toc--/topic_0000000000000012.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000012.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['412',"ICommonDBAccess Interface","topic_0000000000000011.html"],['413',"Methods","topic_0000000000000011_methods--.html"],['415',"Insert Method","topic_0000000000000012.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['412',"ICommonDBAccess Interface","topic_0000000000000011.html"],['413',"Methods","topic_0000000000000011_methods--.html"],['415',"Insert Method","topic_0000000000000012.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000013.html.js b/Database/VSdoc/toc--/topic_0000000000000013.html.js index 5cd1037f..57455364 100644 --- a/Database/VSdoc/toc--/topic_0000000000000013.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000013.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['412',"ICommonDBAccess Interface","topic_0000000000000011.html"],['413',"Methods","topic_0000000000000011_methods--.html"],['418',"Update Method","topic_0000000000000013.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['412',"ICommonDBAccess Interface","topic_0000000000000011.html"],['413',"Methods","topic_0000000000000011_methods--.html"],['418',"Update Method","topic_0000000000000013.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000014.html.js b/Database/VSdoc/toc--/topic_0000000000000014.html.js index 8c40b04b..d702ca0f 100644 --- a/Database/VSdoc/toc--/topic_0000000000000014.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000014.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['412',"ICommonDBAccess Interface","topic_0000000000000011.html"],['413',"Methods","topic_0000000000000011_methods--.html"],['414',"Delete Method","topic_0000000000000014.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['412',"ICommonDBAccess Interface","topic_0000000000000011.html"],['413',"Methods","topic_0000000000000011_methods--.html"],['414',"Delete Method","topic_0000000000000014.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000015.html.js b/Database/VSdoc/toc--/topic_0000000000000015.html.js index 6b139775..b660c904 100644 --- a/Database/VSdoc/toc--/topic_0000000000000015.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000015.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['412',"ICommonDBAccess Interface","topic_0000000000000011.html"],['413',"Methods","topic_0000000000000011_methods--.html"],['417',"SelectOne Method","topic_0000000000000015.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['412',"ICommonDBAccess Interface","topic_0000000000000011.html"],['413',"Methods","topic_0000000000000011_methods--.html"],['417',"SelectOne Method","topic_0000000000000015.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000016.html.js b/Database/VSdoc/toc--/topic_0000000000000016.html.js index b26a10c1..4142531e 100644 --- a/Database/VSdoc/toc--/topic_0000000000000016.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000016.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['412',"ICommonDBAccess Interface","topic_0000000000000011.html"],['413',"Methods","topic_0000000000000011_methods--.html"],['416',"SelectAll Method","topic_0000000000000016.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['412',"ICommonDBAccess Interface","topic_0000000000000011.html"],['413',"Methods","topic_0000000000000011_methods--.html"],['416',"SelectAll Method","topic_0000000000000016.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000017.html.js b/Database/VSdoc/toc--/topic_0000000000000017.html.js index fcf7f697..e44dcc41 100644 --- a/Database/VSdoc/toc--/topic_0000000000000017.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000017.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000017_methods--.html.js b/Database/VSdoc/toc--/topic_0000000000000017_methods--.html.js index ed875a8c..04175126 100644 --- a/Database/VSdoc/toc--/topic_0000000000000017_methods--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000017_methods--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000017_props--.html.js b/Database/VSdoc/toc--/topic_0000000000000017_props--.html.js index 8541b1b3..accdebc2 100644 --- a/Database/VSdoc/toc--/topic_0000000000000017_props--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000017_props--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['56',"Properties","topic_0000000000000017_props--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['56',"Properties","topic_0000000000000017_props--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000017_vars--.html.js b/Database/VSdoc/toc--/topic_0000000000000017_vars--.html.js index 980f2c7c..546486d5 100644 --- a/Database/VSdoc/toc--/topic_0000000000000017_vars--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000017_vars--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['70',"Fields","topic_0000000000000017_vars--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['70',"Fields","topic_0000000000000017_vars--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000018.html.js b/Database/VSdoc/toc--/topic_0000000000000018.html.js index a08ded18..31a911dd 100644 --- a/Database/VSdoc/toc--/topic_0000000000000018.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000018.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['70',"Fields","topic_0000000000000017_vars--.html"],['75',"m_scoMainConnection Field","topic_0000000000000018.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['70',"Fields","topic_0000000000000017_vars--.html"],['75',"m_scoMainConnection Field","topic_0000000000000018.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000019.html.js b/Database/VSdoc/toc--/topic_0000000000000019.html.js index 708dc002..21a838e3 100644 --- a/Database/VSdoc/toc--/topic_0000000000000019.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000019.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['70',"Fields","topic_0000000000000017_vars--.html"],['74',"m_iRowsAffected Field","topic_0000000000000019.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['70',"Fields","topic_0000000000000017_vars--.html"],['74',"m_iRowsAffected Field","topic_0000000000000019.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000001A.html.js b/Database/VSdoc/toc--/topic_000000000000001A.html.js index 09ccea0c..f45be2ca 100644 --- a/Database/VSdoc/toc--/topic_000000000000001A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000001A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['70',"Fields","topic_0000000000000017_vars--.html"],['73',"m_iErrorCode Field","topic_000000000000001A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['70',"Fields","topic_0000000000000017_vars--.html"],['73',"m_iErrorCode Field","topic_000000000000001A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000001B.html.js b/Database/VSdoc/toc--/topic_000000000000001B.html.js index 99ed713f..089a5efb 100644 --- a/Database/VSdoc/toc--/topic_000000000000001B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000001B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['70',"Fields","topic_0000000000000017_vars--.html"],['71',"m_bMainConnectionIsCreatedLocal Field","topic_000000000000001B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['70',"Fields","topic_0000000000000017_vars--.html"],['71',"m_bMainConnectionIsCreatedLocal Field","topic_000000000000001B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000001C.html.js b/Database/VSdoc/toc--/topic_000000000000001C.html.js index 990db993..ded9814c 100644 --- a/Database/VSdoc/toc--/topic_000000000000001C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000001C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['70',"Fields","topic_0000000000000017_vars--.html"],['72',"m_cpMainConnectionProvider Field","topic_000000000000001C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['70',"Fields","topic_0000000000000017_vars--.html"],['72',"m_cpMainConnectionProvider Field","topic_000000000000001C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000001D.html.js b/Database/VSdoc/toc--/topic_000000000000001D.html.js index e671fe8b..4cfbce69 100644 --- a/Database/VSdoc/toc--/topic_000000000000001D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000001D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['55',"clsDBInteractionBase Constructor","topic_000000000000001D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['55',"clsDBInteractionBase Constructor","topic_000000000000001D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000001E.html.js b/Database/VSdoc/toc--/topic_000000000000001E.html.js index 454eb81a..e342df1b 100644 --- a/Database/VSdoc/toc--/topic_000000000000001E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000001E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['63',"Dispose Method","topic_000000000000001E_overloads--.html"],['65',"Dispose() Method","topic_000000000000001E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['63',"Dispose Method","topic_000000000000001E_overloads--.html"],['65',"Dispose() Method","topic_000000000000001E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000001E_overloads--.html.js b/Database/VSdoc/toc--/topic_000000000000001E_overloads--.html.js index 522e7ccb..88022a6d 100644 --- a/Database/VSdoc/toc--/topic_000000000000001E_overloads--.html.js +++ b/Database/VSdoc/toc--/topic_000000000000001E_overloads--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['63',"Dispose Method","topic_000000000000001E_overloads--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['63',"Dispose Method","topic_000000000000001E_overloads--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000001F.html.js b/Database/VSdoc/toc--/topic_000000000000001F.html.js index e67cb357..aaaa74a3 100644 --- a/Database/VSdoc/toc--/topic_000000000000001F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000001F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['63',"Dispose Method","topic_000000000000001E_overloads--.html"],['64',"Dispose(bool) Method","topic_000000000000001F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['63',"Dispose Method","topic_000000000000001E_overloads--.html"],['64',"Dispose(bool) Method","topic_000000000000001F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000020.html.js b/Database/VSdoc/toc--/topic_0000000000000020.html.js index 81a1de72..e3a5926b 100644 --- a/Database/VSdoc/toc--/topic_0000000000000020.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000020.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['66',"Insert Method","topic_0000000000000020.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['66',"Insert Method","topic_0000000000000020.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000021.html.js b/Database/VSdoc/toc--/topic_0000000000000021.html.js index a4e3a9f0..1b9d9ffe 100644 --- a/Database/VSdoc/toc--/topic_0000000000000021.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000021.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['62',"Delete Method","topic_0000000000000021.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['62',"Delete Method","topic_0000000000000021.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000022.html.js b/Database/VSdoc/toc--/topic_0000000000000022.html.js index d0cc88d9..fc068912 100644 --- a/Database/VSdoc/toc--/topic_0000000000000022.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000022.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['69',"Update Method","topic_0000000000000022.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['69',"Update Method","topic_0000000000000022.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000023.html.js b/Database/VSdoc/toc--/topic_0000000000000023.html.js index 7d1e3644..62af08b8 100644 --- a/Database/VSdoc/toc--/topic_0000000000000023.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000023.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['68',"SelectOne Method","topic_0000000000000023.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['68',"SelectOne Method","topic_0000000000000023.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000024.html.js b/Database/VSdoc/toc--/topic_0000000000000024.html.js index 0d287a99..df105078 100644 --- a/Database/VSdoc/toc--/topic_0000000000000024.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000024.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['67',"SelectAll Method","topic_0000000000000024.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['61',"Methods","topic_0000000000000017_methods--.html"],['67',"SelectAll Method","topic_0000000000000024.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000025.html.js b/Database/VSdoc/toc--/topic_0000000000000025.html.js index 3c0c560c..3ae1abd2 100644 --- a/Database/VSdoc/toc--/topic_0000000000000025.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000025.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['56',"Properties","topic_0000000000000017_props--.html"],['57',"cpMainConnectionProvider Property","topic_0000000000000025.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['56',"Properties","topic_0000000000000017_props--.html"],['57',"cpMainConnectionProvider Property","topic_0000000000000025.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000026.html.js b/Database/VSdoc/toc--/topic_0000000000000026.html.js index 91e0242e..63defdae 100644 --- a/Database/VSdoc/toc--/topic_0000000000000026.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000026.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['56',"Properties","topic_0000000000000017_props--.html"],['58',"iErrorCode Property","topic_0000000000000026.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['56',"Properties","topic_0000000000000017_props--.html"],['58',"iErrorCode Property","topic_0000000000000026.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000027.html.js b/Database/VSdoc/toc--/topic_0000000000000027.html.js index 52d94c32..5ec7e228 100644 --- a/Database/VSdoc/toc--/topic_0000000000000027.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000027.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['56',"Properties","topic_0000000000000017_props--.html"],['60',"sConnectionString Property","topic_0000000000000027.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['56',"Properties","topic_0000000000000017_props--.html"],['60',"sConnectionString Property","topic_0000000000000027.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000028.html.js b/Database/VSdoc/toc--/topic_0000000000000028.html.js index 9ca0e373..39a31d74 100644 --- a/Database/VSdoc/toc--/topic_0000000000000028.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000028.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['56',"Properties","topic_0000000000000017_props--.html"],['59',"iRowsAffected Property","topic_0000000000000028.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['54',"clsDBInteractionBase Class","topic_0000000000000017.html"],['56',"Properties","topic_0000000000000017_props--.html"],['59',"iRowsAffected Property","topic_0000000000000028.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000029.html.js b/Database/VSdoc/toc--/topic_0000000000000029.html.js index 2a7a2614..dc8a4826 100644 --- a/Database/VSdoc/toc--/topic_0000000000000029.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000029.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000029_methods--.html.js b/Database/VSdoc/toc--/topic_0000000000000029_methods--.html.js index 2fcfe088..9c48d427 100644 --- a/Database/VSdoc/toc--/topic_0000000000000029_methods--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000029_methods--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['158',"Methods","topic_0000000000000029_methods--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['158',"Methods","topic_0000000000000029_methods--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000029_props--.html.js b/Database/VSdoc/toc--/topic_0000000000000029_props--.html.js index 479eb408..b0647b8e 100644 --- a/Database/VSdoc/toc--/topic_0000000000000029_props--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000029_props--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000002A.html.js b/Database/VSdoc/toc--/topic_000000000000002A.html.js index 0c2e9239..27d1fd13 100644 --- a/Database/VSdoc/toc--/topic_000000000000002A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000002A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['77',"clsDokument Constructor","topic_000000000000002A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['77',"clsDokument Constructor","topic_000000000000002A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000002B.html.js b/Database/VSdoc/toc--/topic_000000000000002B.html.js index c3560040..1870f929 100644 --- a/Database/VSdoc/toc--/topic_000000000000002B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000002B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['158',"Methods","topic_0000000000000029_methods--.html"],['160',"Insert Method","topic_000000000000002B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['158',"Methods","topic_0000000000000029_methods--.html"],['160',"Insert Method","topic_000000000000002B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000002C.html.js b/Database/VSdoc/toc--/topic_000000000000002C.html.js index 54c8f53b..595ec08d 100644 --- a/Database/VSdoc/toc--/topic_000000000000002C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000002C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['158',"Methods","topic_0000000000000029_methods--.html"],['163',"Update Method","topic_000000000000002C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['158',"Methods","topic_0000000000000029_methods--.html"],['163',"Update Method","topic_000000000000002C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000002D.html.js b/Database/VSdoc/toc--/topic_000000000000002D.html.js index 2c827215..d81d7e0b 100644 --- a/Database/VSdoc/toc--/topic_000000000000002D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000002D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['158',"Methods","topic_0000000000000029_methods--.html"],['159',"Delete Method","topic_000000000000002D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['158',"Methods","topic_0000000000000029_methods--.html"],['159',"Delete Method","topic_000000000000002D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000002E.html.js b/Database/VSdoc/toc--/topic_000000000000002E.html.js index 727d722d..be9e3602 100644 --- a/Database/VSdoc/toc--/topic_000000000000002E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000002E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['158',"Methods","topic_0000000000000029_methods--.html"],['162',"SelectOne Method","topic_000000000000002E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['158',"Methods","topic_0000000000000029_methods--.html"],['162',"SelectOne Method","topic_000000000000002E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000002F.html.js b/Database/VSdoc/toc--/topic_000000000000002F.html.js index 9751522e..672464a0 100644 --- a/Database/VSdoc/toc--/topic_000000000000002F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000002F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['158',"Methods","topic_0000000000000029_methods--.html"],['161',"SelectAll Method","topic_000000000000002F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['158',"Methods","topic_0000000000000029_methods--.html"],['161',"SelectAll Method","topic_000000000000002F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000030.html.js b/Database/VSdoc/toc--/topic_0000000000000030.html.js index adf09ba9..f9f09d2a 100644 --- a/Database/VSdoc/toc--/topic_0000000000000030.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000030.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['147',"sDokumentid Property","topic_0000000000000030.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['147',"sDokumentid Property","topic_0000000000000030.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000031.html.js b/Database/VSdoc/toc--/topic_0000000000000031.html.js index 0daf08cb..72fa80dc 100644 --- a/Database/VSdoc/toc--/topic_0000000000000031.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000031.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['123',"iMitarbeiternr Property","topic_0000000000000031.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['123',"iMitarbeiternr Property","topic_0000000000000031.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000032.html.js b/Database/VSdoc/toc--/topic_0000000000000032.html.js index d0f0f8c3..0fdff6bc 100644 --- a/Database/VSdoc/toc--/topic_0000000000000032.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000032.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['124',"iMitarbeiternr1 Property","topic_0000000000000032.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['124',"iMitarbeiternr1 Property","topic_0000000000000032.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000033.html.js b/Database/VSdoc/toc--/topic_0000000000000033.html.js index 9b2b06e9..771441a7 100644 --- a/Database/VSdoc/toc--/topic_0000000000000033.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000033.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['130',"iNrpar00 Property","topic_0000000000000033.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['130',"iNrpar00 Property","topic_0000000000000033.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000034.html.js b/Database/VSdoc/toc--/topic_0000000000000034.html.js index 74dcb65d..e61627c9 100644 --- a/Database/VSdoc/toc--/topic_0000000000000034.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000034.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['148',"sDokumentidn Property","topic_0000000000000034.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['148',"sDokumentidn Property","topic_0000000000000034.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000035.html.js b/Database/VSdoc/toc--/topic_0000000000000035.html.js index ceabfe77..be4c14a8 100644 --- a/Database/VSdoc/toc--/topic_0000000000000035.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000035.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['149',"sDokumentname Property","topic_0000000000000035.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['149',"sDokumentname Property","topic_0000000000000035.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000036.html.js b/Database/VSdoc/toc--/topic_0000000000000036.html.js index 6713aae5..08ae16f3 100644 --- a/Database/VSdoc/toc--/topic_0000000000000036.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000036.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['117',"iErsteller Property","topic_0000000000000036.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['117',"iErsteller Property","topic_0000000000000036.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000037.html.js b/Database/VSdoc/toc--/topic_0000000000000037.html.js index 0fc1bfaa..552735dc 100644 --- a/Database/VSdoc/toc--/topic_0000000000000037.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000037.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['118',"iErstellerteam Property","topic_0000000000000037.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['118',"iErstellerteam Property","topic_0000000000000037.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000038.html.js b/Database/VSdoc/toc--/topic_0000000000000038.html.js index 96d330e8..146ec4f5 100644 --- a/Database/VSdoc/toc--/topic_0000000000000038.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000038.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['101',"daErstelltam Property","topic_0000000000000038.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['101',"daErstelltam Property","topic_0000000000000038.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000039.html.js b/Database/VSdoc/toc--/topic_0000000000000039.html.js index b4e15f37..0cc39d7c 100644 --- a/Database/VSdoc/toc--/topic_0000000000000039.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000039.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['126',"iMutierer Property","topic_0000000000000039.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['126',"iMutierer Property","topic_0000000000000039.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000003A.html.js b/Database/VSdoc/toc--/topic_000000000000003A.html.js index de6de01e..f50bc018 100644 --- a/Database/VSdoc/toc--/topic_000000000000003A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000003A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['128',"iMutierertieam Property","topic_000000000000003A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['128',"iMutierertieam Property","topic_000000000000003A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000003B.html.js b/Database/VSdoc/toc--/topic_000000000000003B.html.js index 1d50265c..d6368adc 100644 --- a/Database/VSdoc/toc--/topic_000000000000003B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000003B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['104',"daMutiertam Property","topic_000000000000003B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['104',"daMutiertam Property","topic_000000000000003B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000003C.html.js b/Database/VSdoc/toc--/topic_000000000000003C.html.js index 7a53d64e..65bd0e04 100644 --- a/Database/VSdoc/toc--/topic_000000000000003C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000003C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['154',"sSpeicherort Property","topic_000000000000003C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['154',"sSpeicherort Property","topic_000000000000003C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000003D.html.js b/Database/VSdoc/toc--/topic_000000000000003D.html.js index 556b7ed2..484f9422 100644 --- a/Database/VSdoc/toc--/topic_000000000000003D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000003D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['91',"bGesperrt Property","topic_000000000000003D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['91',"bGesperrt Property","topic_000000000000003D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000003E.html.js b/Database/VSdoc/toc--/topic_000000000000003E.html.js index f725f4d8..a4c349ae 100644 --- a/Database/VSdoc/toc--/topic_000000000000003E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000003E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['119',"iGesperrt_durch Property","topic_000000000000003E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['119',"iGesperrt_durch Property","topic_000000000000003E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000003F.html.js b/Database/VSdoc/toc--/topic_000000000000003F.html.js index b3aab663..43843535 100644 --- a/Database/VSdoc/toc--/topic_000000000000003F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000003F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['103',"daGesperrtam Property","topic_000000000000003F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['103',"daGesperrtam Property","topic_000000000000003F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000040.html.js b/Database/VSdoc/toc--/topic_0000000000000040.html.js index 00dcb3f3..db89648a 100644 --- a/Database/VSdoc/toc--/topic_0000000000000040.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000040.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['143',"sBezeichnung Property","topic_0000000000000040.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['143',"sBezeichnung Property","topic_0000000000000040.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000041.html.js b/Database/VSdoc/toc--/topic_0000000000000041.html.js index 33fd4122..7feddffc 100644 --- a/Database/VSdoc/toc--/topic_0000000000000041.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000041.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['141',"sBemerkung Property","topic_0000000000000041.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['141',"sBemerkung Property","topic_0000000000000041.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000042.html.js b/Database/VSdoc/toc--/topic_0000000000000042.html.js index d1207f92..1e71c716 100644 --- a/Database/VSdoc/toc--/topic_0000000000000042.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000042.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['81',"bAuserstuebernahme Property","topic_0000000000000042.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['81',"bAuserstuebernahme Property","topic_0000000000000042.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000043.html.js b/Database/VSdoc/toc--/topic_0000000000000043.html.js index 3566eeda..ecba9392 100644 --- a/Database/VSdoc/toc--/topic_0000000000000043.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000043.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['116',"iDokumenttypnr Property","topic_0000000000000043.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['116',"iDokumenttypnr Property","topic_0000000000000043.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000044.html.js b/Database/VSdoc/toc--/topic_0000000000000044.html.js index 0be7c3b4..c5171900 100644 --- a/Database/VSdoc/toc--/topic_0000000000000044.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000044.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['93',"bUnvollstaendig Property","topic_0000000000000044.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['93',"bUnvollstaendig Property","topic_0000000000000044.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000045.html.js b/Database/VSdoc/toc--/topic_0000000000000045.html.js index 029f0597..f2b832f0 100644 --- a/Database/VSdoc/toc--/topic_0000000000000045.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000045.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['142',"sBemerkunguvm Property","topic_0000000000000045.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['142',"sBemerkunguvm Property","topic_0000000000000045.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000046.html.js b/Database/VSdoc/toc--/topic_0000000000000046.html.js index a5637501..9d2bb636 100644 --- a/Database/VSdoc/toc--/topic_0000000000000046.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000046.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['84',"bBereit_zur_archivierung Property","topic_0000000000000046.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['84',"bBereit_zur_archivierung Property","topic_0000000000000046.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000047.html.js b/Database/VSdoc/toc--/topic_0000000000000047.html.js index de5f8f01..7be11db5 100644 --- a/Database/VSdoc/toc--/topic_0000000000000047.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000047.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['82',"bAusgangsarchiviert Property","topic_0000000000000047.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['82',"bAusgangsarchiviert Property","topic_0000000000000047.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000048.html.js b/Database/VSdoc/toc--/topic_0000000000000048.html.js index 7aea9ecd..915f4731 100644 --- a/Database/VSdoc/toc--/topic_0000000000000048.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000048.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['98',"daDatum_ausgangsarchivierung Property","topic_0000000000000048.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['98',"daDatum_ausgangsarchivierung Property","topic_0000000000000048.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000049.html.js b/Database/VSdoc/toc--/topic_0000000000000049.html.js index 1c79e4ee..373a645e 100644 --- a/Database/VSdoc/toc--/topic_0000000000000049.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000049.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['121',"iMa_ausgangsarchivierung Property","topic_0000000000000049.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['121',"iMa_ausgangsarchivierung Property","topic_0000000000000049.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000004A.html.js b/Database/VSdoc/toc--/topic_000000000000004A.html.js index f6590316..ce3af8af 100644 --- a/Database/VSdoc/toc--/topic_000000000000004A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000004A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['95',"bZu_retournieren Property","topic_000000000000004A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['95',"bZu_retournieren Property","topic_000000000000004A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000004B.html.js b/Database/VSdoc/toc--/topic_000000000000004B.html.js index 88095ec7..de22a261 100644 --- a/Database/VSdoc/toc--/topic_000000000000004B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000004B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['87',"bEingangsarchiviert Property","topic_000000000000004B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['87',"bEingangsarchiviert Property","topic_000000000000004B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000004C.html.js b/Database/VSdoc/toc--/topic_000000000000004C.html.js index 93ab457e..79a0b033 100644 --- a/Database/VSdoc/toc--/topic_000000000000004C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000004C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['99',"daDatum_eingangsarchivierung Property","topic_000000000000004C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['99',"daDatum_eingangsarchivierung Property","topic_000000000000004C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000004D.html.js b/Database/VSdoc/toc--/topic_000000000000004D.html.js index bc2053eb..fde2581b 100644 --- a/Database/VSdoc/toc--/topic_000000000000004D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000004D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['122',"iMa_eingangsarchivierung Property","topic_000000000000004D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['122',"iMa_eingangsarchivierung Property","topic_000000000000004D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000004E.html.js b/Database/VSdoc/toc--/topic_000000000000004E.html.js index 2446a1e9..a02f85aa 100644 --- a/Database/VSdoc/toc--/topic_000000000000004E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000004E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['132',"iStatus_edoka_batch_ausgang Property","topic_000000000000004E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['132',"iStatus_edoka_batch_ausgang Property","topic_000000000000004E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000004F.html.js b/Database/VSdoc/toc--/topic_000000000000004F.html.js index 1536a8ff..7c6a2d56 100644 --- a/Database/VSdoc/toc--/topic_000000000000004F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000004F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['133',"iStatus_edoka_batch_eingang Property","topic_000000000000004F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['133',"iStatus_edoka_batch_eingang Property","topic_000000000000004F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000050.html.js b/Database/VSdoc/toc--/topic_0000000000000050.html.js index 17bd2525..2ce0c9f1 100644 --- a/Database/VSdoc/toc--/topic_0000000000000050.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000050.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['153',"sLoeschgrund Property","topic_0000000000000050.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['153',"sLoeschgrund Property","topic_0000000000000050.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000051.html.js b/Database/VSdoc/toc--/topic_0000000000000051.html.js index d028000b..e06b5b8c 100644 --- a/Database/VSdoc/toc--/topic_0000000000000051.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000051.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['114',"iColdstatus Property","topic_0000000000000051.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['114',"iColdstatus Property","topic_0000000000000051.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000052.html.js b/Database/VSdoc/toc--/topic_0000000000000052.html.js index 68c4f4ec..9aaaec0e 100644 --- a/Database/VSdoc/toc--/topic_0000000000000052.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000052.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['155',"sVersandadresse Property","topic_0000000000000052.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['155',"sVersandadresse Property","topic_0000000000000052.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000053.html.js b/Database/VSdoc/toc--/topic_0000000000000053.html.js index 979eabfa..93e34d4d 100644 --- a/Database/VSdoc/toc--/topic_0000000000000053.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000053.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['110',"iBarcodenr Property","topic_0000000000000053.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['110',"iBarcodenr Property","topic_0000000000000053.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000054.html.js b/Database/VSdoc/toc--/topic_0000000000000054.html.js index 2dda8766..bf9c1e59 100644 --- a/Database/VSdoc/toc--/topic_0000000000000054.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000054.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['144',"sColddokumentid Property","topic_0000000000000054.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['144',"sColddokumentid Property","topic_0000000000000054.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000055.html.js b/Database/VSdoc/toc--/topic_0000000000000055.html.js index 3477b8a0..a81c5ed0 100644 --- a/Database/VSdoc/toc--/topic_0000000000000055.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000055.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['80',"bAmsdokument Property","topic_0000000000000055.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['80',"bAmsdokument Property","topic_0000000000000055.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000056.html.js b/Database/VSdoc/toc--/topic_0000000000000056.html.js index 937ef45b..5fdd4357 100644 --- a/Database/VSdoc/toc--/topic_0000000000000056.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000056.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['137',"iVerantwortlich Property","topic_0000000000000056.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['137',"iVerantwortlich Property","topic_0000000000000056.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000057.html.js b/Database/VSdoc/toc--/topic_0000000000000057.html.js index a40096c3..0f035dc8 100644 --- a/Database/VSdoc/toc--/topic_0000000000000057.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000057.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['138',"iZustaendiger Property","topic_0000000000000057.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['138',"iZustaendiger Property","topic_0000000000000057.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000058.html.js b/Database/VSdoc/toc--/topic_0000000000000058.html.js index 5631c644..9d9c20f4 100644 --- a/Database/VSdoc/toc--/topic_0000000000000058.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000058.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['135',"iUnterschriftlinks Property","topic_0000000000000058.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['135',"iUnterschriftlinks Property","topic_0000000000000058.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000059.html.js b/Database/VSdoc/toc--/topic_0000000000000059.html.js index ec9b08e2..5b4affff 100644 --- a/Database/VSdoc/toc--/topic_0000000000000059.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000059.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['136',"iUnterschriftrechts Property","topic_0000000000000059.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['136',"iUnterschriftrechts Property","topic_0000000000000059.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000005A.html.js b/Database/VSdoc/toc--/topic_000000000000005A.html.js index 343b9055..65d97a96 100644 --- a/Database/VSdoc/toc--/topic_000000000000005A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000005A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['131',"iPostzustellung Property","topic_000000000000005A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['131',"iPostzustellung Property","topic_000000000000005A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000005B.html.js b/Database/VSdoc/toc--/topic_000000000000005B.html.js index 9611e502..2100278c 100644 --- a/Database/VSdoc/toc--/topic_000000000000005B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000005B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['79',"bAktiv Property","topic_000000000000005B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['79',"bAktiv Property","topic_000000000000005B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000005C.html.js b/Database/VSdoc/toc--/topic_000000000000005C.html.js index f3d8c99d..dc9449c2 100644 --- a/Database/VSdoc/toc--/topic_000000000000005C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000005C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['134',"iStatusnr Property","topic_000000000000005C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['134',"iStatusnr Property","topic_000000000000005C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000005D.html.js b/Database/VSdoc/toc--/topic_000000000000005D.html.js index 7694a989..0175bf77 100644 --- a/Database/VSdoc/toc--/topic_000000000000005D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000005D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['96',"bZustaendig_kube Property","topic_000000000000005D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['96',"bZustaendig_kube Property","topic_000000000000005D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000005E.html.js b/Database/VSdoc/toc--/topic_000000000000005E.html.js index 68febb69..cd422170 100644 --- a/Database/VSdoc/toc--/topic_000000000000005E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000005E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['157',"sZustelladresse Property","topic_000000000000005E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['157',"sZustelladresse Property","topic_000000000000005E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000005F.html.js b/Database/VSdoc/toc--/topic_000000000000005F.html.js index 01def1bd..d05fbafa 100644 --- a/Database/VSdoc/toc--/topic_000000000000005F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000005F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['94',"bVertraulich Property","topic_000000000000005F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['94',"bVertraulich Property","topic_000000000000005F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000060.html.js b/Database/VSdoc/toc--/topic_0000000000000060.html.js index b87e8cdb..0cbb84e3 100644 --- a/Database/VSdoc/toc--/topic_0000000000000060.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000060.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['102',"daErstellungsdatum Property","topic_0000000000000060.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['102',"daErstellungsdatum Property","topic_0000000000000060.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000061.html.js b/Database/VSdoc/toc--/topic_0000000000000061.html.js index fb50bb46..b80f6ab8 100644 --- a/Database/VSdoc/toc--/topic_0000000000000061.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000061.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['97',"daArchivierungsdatum Property","topic_0000000000000061.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['97',"daArchivierungsdatum Property","topic_0000000000000061.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000062.html.js b/Database/VSdoc/toc--/topic_0000000000000062.html.js index cc9921c6..ad3f942e 100644 --- a/Database/VSdoc/toc--/topic_0000000000000062.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000062.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['105',"daTermin Property","topic_0000000000000062.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['105',"daTermin Property","topic_0000000000000062.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000063.html.js b/Database/VSdoc/toc--/topic_0000000000000063.html.js index 53695ffe..165dc607 100644 --- a/Database/VSdoc/toc--/topic_0000000000000063.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000063.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['127',"iMutiererteam Property","topic_0000000000000063.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['127',"iMutiererteam Property","topic_0000000000000063.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000064.html.js b/Database/VSdoc/toc--/topic_0000000000000064.html.js index eb80cba0..1c093d52 100644 --- a/Database/VSdoc/toc--/topic_0000000000000064.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000064.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['139',"sAnredezustelladresse Property","topic_0000000000000064.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['139',"sAnredezustelladresse Property","topic_0000000000000064.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000065.html.js b/Database/VSdoc/toc--/topic_0000000000000065.html.js index 93ecb1a3..5386d429 100644 --- a/Database/VSdoc/toc--/topic_0000000000000065.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000065.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['115',"iDokdurchkubeweitergegeben Property","topic_0000000000000065.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['115',"iDokdurchkubeweitergegeben Property","topic_0000000000000065.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000066.html.js b/Database/VSdoc/toc--/topic_0000000000000066.html.js index 4a8052ff..f8569474 100644 --- a/Database/VSdoc/toc--/topic_0000000000000066.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000066.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['111',"iBck Property","topic_0000000000000066.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['111',"iBck Property","topic_0000000000000066.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000067.html.js b/Database/VSdoc/toc--/topic_0000000000000067.html.js index bc9177d3..54cbd82f 100644 --- a/Database/VSdoc/toc--/topic_0000000000000067.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000067.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['113',"iBearbeitungszeit_in_minuten Property","topic_0000000000000067.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['113',"iBearbeitungszeit_in_minuten Property","topic_0000000000000067.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000068.html.js b/Database/VSdoc/toc--/topic_0000000000000068.html.js index d8026a6b..561bf96f 100644 --- a/Database/VSdoc/toc--/topic_0000000000000068.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000068.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['125',"iMonierung_in_tagen Property","topic_0000000000000068.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['125',"iMonierung_in_tagen Property","topic_0000000000000068.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000069.html.js b/Database/VSdoc/toc--/topic_0000000000000069.html.js index ce06eb0b..f6461368 100644 --- a/Database/VSdoc/toc--/topic_0000000000000069.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000069.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['107',"iAufbewahrung_elektronisch Property","topic_0000000000000069.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['107',"iAufbewahrung_elektronisch Property","topic_0000000000000069.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000006A.html.js b/Database/VSdoc/toc--/topic_000000000000006A.html.js index 6ab32a98..1e1b5d5b 100644 --- a/Database/VSdoc/toc--/topic_000000000000006A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000006A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['108',"iAufbewahrung_phaysisch Property","topic_000000000000006A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['108',"iAufbewahrung_phaysisch Property","topic_000000000000006A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000006B.html.js b/Database/VSdoc/toc--/topic_000000000000006B.html.js index 9ce0e9e4..cf255d5b 100644 --- a/Database/VSdoc/toc--/topic_000000000000006B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000006B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['120',"iIn_edoka_datenbank Property","topic_000000000000006B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['120',"iIn_edoka_datenbank Property","topic_000000000000006B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000006C.html.js b/Database/VSdoc/toc--/topic_000000000000006C.html.js index deeee739..5a2d7c23 100644 --- a/Database/VSdoc/toc--/topic_000000000000006C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000006C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['112',"iBearbeitung_nach_abschluss Property","topic_000000000000006C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['112',"iBearbeitung_nach_abschluss Property","topic_000000000000006C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000006D.html.js b/Database/VSdoc/toc--/topic_000000000000006D.html.js index db72453c..ca79a6f3 100644 --- a/Database/VSdoc/toc--/topic_000000000000006D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000006D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['145',"sColdfolder Property","topic_000000000000006D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['145',"sColdfolder Property","topic_000000000000006D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000006E.html.js b/Database/VSdoc/toc--/topic_000000000000006E.html.js index bf811774..5e24ed09 100644 --- a/Database/VSdoc/toc--/topic_000000000000006E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000006E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['146',"sColdschema Property","topic_000000000000006E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['146',"sColdschema Property","topic_000000000000006E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000006F.html.js b/Database/VSdoc/toc--/topic_000000000000006F.html.js index 83176c63..5b32c208 100644 --- a/Database/VSdoc/toc--/topic_000000000000006F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000006F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['100',"daErinnerungam Property","topic_000000000000006F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['100',"daErinnerungam Property","topic_000000000000006F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000070.html.js b/Database/VSdoc/toc--/topic_0000000000000070.html.js index fe2a8f44..22fd3b41 100644 --- a/Database/VSdoc/toc--/topic_0000000000000070.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000070.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['150',"sFANummer1 Property","topic_0000000000000070.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['150',"sFANummer1 Property","topic_0000000000000070.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000071.html.js b/Database/VSdoc/toc--/topic_0000000000000071.html.js index 1f7b19ae..d553ea05 100644 --- a/Database/VSdoc/toc--/topic_0000000000000071.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000071.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['151',"sFANummer2 Property","topic_0000000000000071.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['151',"sFANummer2 Property","topic_0000000000000071.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000072.html.js b/Database/VSdoc/toc--/topic_0000000000000072.html.js index 26b13676..26c81610 100644 --- a/Database/VSdoc/toc--/topic_0000000000000072.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000072.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['90',"bFapartnerwechsel Property","topic_0000000000000072.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['90',"bFapartnerwechsel Property","topic_0000000000000072.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000073.html.js b/Database/VSdoc/toc--/topic_0000000000000073.html.js index 913bf42f..2f6b42a1 100644 --- a/Database/VSdoc/toc--/topic_0000000000000073.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000073.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['88',"bFAStatuswechsel Property","topic_0000000000000073.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['88',"bFAStatuswechsel Property","topic_0000000000000073.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000074.html.js b/Database/VSdoc/toc--/topic_0000000000000074.html.js index edf9e157..616cb9ca 100644 --- a/Database/VSdoc/toc--/topic_0000000000000074.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000074.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['89',"bFAVerantwortlicherwechsel Property","topic_0000000000000074.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['89',"bFAVerantwortlicherwechsel Property","topic_0000000000000074.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000075.html.js b/Database/VSdoc/toc--/topic_0000000000000075.html.js index 4c614b2e..15b6a869 100644 --- a/Database/VSdoc/toc--/topic_0000000000000075.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000075.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['140',"sBedRDokumentid Property","topic_0000000000000075.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['140',"sBedRDokumentid Property","topic_0000000000000075.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000076.html.js b/Database/VSdoc/toc--/topic_0000000000000076.html.js index 9ef6a686..b9b9788f 100644 --- a/Database/VSdoc/toc--/topic_0000000000000076.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000076.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['83',"bBedRRetourniert Property","topic_0000000000000076.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['83',"bBedRRetourniert Property","topic_0000000000000076.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000077.html.js b/Database/VSdoc/toc--/topic_0000000000000077.html.js index 5dfb2a4f..5aba5231 100644 --- a/Database/VSdoc/toc--/topic_0000000000000077.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000077.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['109',"iBRVernichtungnachTagen Property","topic_0000000000000077.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['109',"iBRVernichtungnachTagen Property","topic_0000000000000077.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000078.html.js b/Database/VSdoc/toc--/topic_0000000000000078.html.js index a3f9ffff..214dd615 100644 --- a/Database/VSdoc/toc--/topic_0000000000000078.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000078.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['92',"bOfficedokumentgeloescht Property","topic_0000000000000078.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['92',"bOfficedokumentgeloescht Property","topic_0000000000000078.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000079.html.js b/Database/VSdoc/toc--/topic_0000000000000079.html.js index 09c9a249..c2c84ff0 100644 --- a/Database/VSdoc/toc--/topic_0000000000000079.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000079.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['152',"sFanummer3 Property","topic_0000000000000079.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['152',"sFanummer3 Property","topic_0000000000000079.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000007A.html.js b/Database/VSdoc/toc--/topic_000000000000007A.html.js index 26168676..c3c11ba3 100644 --- a/Database/VSdoc/toc--/topic_000000000000007A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000007A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['156',"sVvnr Property","topic_000000000000007A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['156',"sVvnr Property","topic_000000000000007A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000007B.html.js b/Database/VSdoc/toc--/topic_000000000000007B.html.js index 7179a023..8e5edae5 100644 --- a/Database/VSdoc/toc--/topic_000000000000007B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000007B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['106',"iAnzeigeStatus Property","topic_000000000000007B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['106',"iAnzeigeStatus Property","topic_000000000000007B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000007C.html.js b/Database/VSdoc/toc--/topic_000000000000007C.html.js index c9d6431c..0dd2ed43 100644 --- a/Database/VSdoc/toc--/topic_000000000000007C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000007C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['85',"bBl_scan Property","topic_000000000000007C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['85',"bBl_scan Property","topic_000000000000007C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000007D.html.js b/Database/VSdoc/toc--/topic_000000000000007D.html.js index bccaa857..a797e83e 100644 --- a/Database/VSdoc/toc--/topic_000000000000007D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000007D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['86',"bBldossier Property","topic_000000000000007D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['86',"bBldossier Property","topic_000000000000007D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000007E.html.js b/Database/VSdoc/toc--/topic_000000000000007E.html.js index 335bf1f9..0f3bcac4 100644 --- a/Database/VSdoc/toc--/topic_000000000000007E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000007E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['129',"iNoEdit Property","topic_000000000000007E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['76',"clsDokument Class","topic_0000000000000029.html"],['78',"Properties","topic_0000000000000029_props--.html"],['129',"iNoEdit Property","topic_000000000000007E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000007F.html.js b/Database/VSdoc/toc--/topic_000000000000007F.html.js index 0cb99e58..e8b46cdd 100644 --- a/Database/VSdoc/toc--/topic_000000000000007F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000007F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000007F_methods--.html.js b/Database/VSdoc/toc--/topic_000000000000007F_methods--.html.js index a2b5d638..432ca32c 100644 --- a/Database/VSdoc/toc--/topic_000000000000007F_methods--.html.js +++ b/Database/VSdoc/toc--/topic_000000000000007F_methods--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['180',"Methods","topic_000000000000007F_methods--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['180',"Methods","topic_000000000000007F_methods--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000007F_props--.html.js b/Database/VSdoc/toc--/topic_000000000000007F_props--.html.js index d716eb38..555d8056 100644 --- a/Database/VSdoc/toc--/topic_000000000000007F_props--.html.js +++ b/Database/VSdoc/toc--/topic_000000000000007F_props--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000080.html.js b/Database/VSdoc/toc--/topic_0000000000000080.html.js index 58fe99af..5f8c6a23 100644 --- a/Database/VSdoc/toc--/topic_0000000000000080.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000080.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['165',"clsDokument_status Constructor","topic_0000000000000080.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['165',"clsDokument_status Constructor","topic_0000000000000080.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000081.html.js b/Database/VSdoc/toc--/topic_0000000000000081.html.js index 786456a2..1b47daaf 100644 --- a/Database/VSdoc/toc--/topic_0000000000000081.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000081.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['180',"Methods","topic_000000000000007F_methods--.html"],['182',"Insert Method","topic_0000000000000081.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['180',"Methods","topic_000000000000007F_methods--.html"],['182',"Insert Method","topic_0000000000000081.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000082.html.js b/Database/VSdoc/toc--/topic_0000000000000082.html.js index 11c1979f..4ad08b08 100644 --- a/Database/VSdoc/toc--/topic_0000000000000082.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000082.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['180',"Methods","topic_000000000000007F_methods--.html"],['185',"Update Method","topic_0000000000000082.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['180',"Methods","topic_000000000000007F_methods--.html"],['185',"Update Method","topic_0000000000000082.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000083.html.js b/Database/VSdoc/toc--/topic_0000000000000083.html.js index 9b4671f7..8bc70339 100644 --- a/Database/VSdoc/toc--/topic_0000000000000083.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000083.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['180',"Methods","topic_000000000000007F_methods--.html"],['181',"Delete Method","topic_0000000000000083.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['180',"Methods","topic_000000000000007F_methods--.html"],['181',"Delete Method","topic_0000000000000083.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000084.html.js b/Database/VSdoc/toc--/topic_0000000000000084.html.js index 20e12a91..3bb8f1ce 100644 --- a/Database/VSdoc/toc--/topic_0000000000000084.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000084.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['180',"Methods","topic_000000000000007F_methods--.html"],['184',"SelectOne Method","topic_0000000000000084.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['180',"Methods","topic_000000000000007F_methods--.html"],['184',"SelectOne Method","topic_0000000000000084.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000085.html.js b/Database/VSdoc/toc--/topic_0000000000000085.html.js index ed3eab41..9938d8cf 100644 --- a/Database/VSdoc/toc--/topic_0000000000000085.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000085.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['180',"Methods","topic_000000000000007F_methods--.html"],['183',"SelectAll Method","topic_0000000000000085.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['180',"Methods","topic_000000000000007F_methods--.html"],['183',"SelectAll Method","topic_0000000000000085.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000086.html.js b/Database/VSdoc/toc--/topic_0000000000000086.html.js index eb9638b8..f876cafa 100644 --- a/Database/VSdoc/toc--/topic_0000000000000086.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000086.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['173',"iDokument_statusnr Property","topic_0000000000000086.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['173',"iDokument_statusnr Property","topic_0000000000000086.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000087.html.js b/Database/VSdoc/toc--/topic_0000000000000087.html.js index e71611a5..7fedac72 100644 --- a/Database/VSdoc/toc--/topic_0000000000000087.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000087.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['178',"sDokumenitid Property","topic_0000000000000087.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['178',"sDokumenitid Property","topic_0000000000000087.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000088.html.js b/Database/VSdoc/toc--/topic_0000000000000088.html.js index 6f98e5b5..5fa635dc 100644 --- a/Database/VSdoc/toc--/topic_0000000000000088.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000088.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['176',"iStatus_bezeichnungnr Property","topic_0000000000000088.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['176',"iStatus_bezeichnungnr Property","topic_0000000000000088.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000089.html.js b/Database/VSdoc/toc--/topic_0000000000000089.html.js index ddcb6736..d8a8a4d5 100644 --- a/Database/VSdoc/toc--/topic_0000000000000089.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000089.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['177',"sBezeichnung Property","topic_0000000000000089.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['177',"sBezeichnung Property","topic_0000000000000089.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000008A.html.js b/Database/VSdoc/toc--/topic_000000000000008A.html.js index 432252e8..230a7faa 100644 --- a/Database/VSdoc/toc--/topic_000000000000008A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000008A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['179',"sReihenfolge Property","topic_000000000000008A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['179',"sReihenfolge Property","topic_000000000000008A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000008B.html.js b/Database/VSdoc/toc--/topic_000000000000008B.html.js index bb095720..27791f42 100644 --- a/Database/VSdoc/toc--/topic_000000000000008B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000008B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['171',"bFolgestatus_durch_anderen_verantwortlichen Property","topic_000000000000008B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['171',"bFolgestatus_durch_anderen_verantwortlichen Property","topic_000000000000008B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000008C.html.js b/Database/VSdoc/toc--/topic_000000000000008C.html.js index d3b8a9c2..3f622cce 100644 --- a/Database/VSdoc/toc--/topic_000000000000008C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000008C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['170',"bDokument_bearbeitung_moeglich Property","topic_000000000000008C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['170',"bDokument_bearbeitung_moeglich Property","topic_000000000000008C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000008D.html.js b/Database/VSdoc/toc--/topic_000000000000008D.html.js index 72dfb154..516ea118 100644 --- a/Database/VSdoc/toc--/topic_000000000000008D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000008D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['174',"iErledigung_ab Property","topic_000000000000008D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['174',"iErledigung_ab Property","topic_000000000000008D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000008E.html.js b/Database/VSdoc/toc--/topic_000000000000008E.html.js index fdc585f8..37920265 100644 --- a/Database/VSdoc/toc--/topic_000000000000008E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000008E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['168',"bDokument_ausgangsarchivierung Property","topic_000000000000008E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['168',"bDokument_ausgangsarchivierung Property","topic_000000000000008E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000008F.html.js b/Database/VSdoc/toc--/topic_000000000000008F.html.js index af5be178..5f3bc374 100644 --- a/Database/VSdoc/toc--/topic_000000000000008F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000008F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['169',"bDokument_bearbeitung_abgeschlossen Property","topic_000000000000008F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['169',"bDokument_bearbeitung_abgeschlossen Property","topic_000000000000008F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000090.html.js b/Database/VSdoc/toc--/topic_0000000000000090.html.js index 2235497a..2d8b85a5 100644 --- a/Database/VSdoc/toc--/topic_0000000000000090.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000090.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['167',"bAktiv Property","topic_0000000000000090.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['167',"bAktiv Property","topic_0000000000000090.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000091.html.js b/Database/VSdoc/toc--/topic_0000000000000091.html.js index de2d8391..06b39e13 100644 --- a/Database/VSdoc/toc--/topic_0000000000000091.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000091.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['172',"daErstellt_am Property","topic_0000000000000091.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['172',"daErstellt_am Property","topic_0000000000000091.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000092.html.js b/Database/VSdoc/toc--/topic_0000000000000092.html.js index 0b9180f0..425a7471 100644 --- a/Database/VSdoc/toc--/topic_0000000000000092.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000092.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['175',"iMutierer Property","topic_0000000000000092.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['164',"clsDokument_status Class","topic_000000000000007F.html"],['166',"Properties","topic_000000000000007F_props--.html"],['175',"iMutierer Property","topic_0000000000000092.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000093.html.js b/Database/VSdoc/toc--/topic_0000000000000093.html.js index e52715ef..bbc49958 100644 --- a/Database/VSdoc/toc--/topic_0000000000000093.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000093.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000093_methods--.html.js b/Database/VSdoc/toc--/topic_0000000000000093_methods--.html.js index a45ffda8..7ded56f9 100644 --- a/Database/VSdoc/toc--/topic_0000000000000093_methods--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000093_methods--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['205',"Methods","topic_0000000000000093_methods--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['205',"Methods","topic_0000000000000093_methods--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000093_props--.html.js b/Database/VSdoc/toc--/topic_0000000000000093_props--.html.js index 6c0e3736..0e806e71 100644 --- a/Database/VSdoc/toc--/topic_0000000000000093_props--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000093_props--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000094.html.js b/Database/VSdoc/toc--/topic_0000000000000094.html.js index 8b13142a..ef53a0ee 100644 --- a/Database/VSdoc/toc--/topic_0000000000000094.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000094.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['187',"clsDokumentstatus Constructor","topic_0000000000000094.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['187',"clsDokumentstatus Constructor","topic_0000000000000094.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000095.html.js b/Database/VSdoc/toc--/topic_0000000000000095.html.js index 7f7d3a34..1097dc33 100644 --- a/Database/VSdoc/toc--/topic_0000000000000095.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000095.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['205',"Methods","topic_0000000000000093_methods--.html"],['207',"Insert Method","topic_0000000000000095.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['205',"Methods","topic_0000000000000093_methods--.html"],['207',"Insert Method","topic_0000000000000095.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000096.html.js b/Database/VSdoc/toc--/topic_0000000000000096.html.js index 85a31668..a67e6a5f 100644 --- a/Database/VSdoc/toc--/topic_0000000000000096.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000096.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['205',"Methods","topic_0000000000000093_methods--.html"],['210',"Update Method","topic_0000000000000096.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['205',"Methods","topic_0000000000000093_methods--.html"],['210',"Update Method","topic_0000000000000096.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000097.html.js b/Database/VSdoc/toc--/topic_0000000000000097.html.js index 131e062a..4dfae1c1 100644 --- a/Database/VSdoc/toc--/topic_0000000000000097.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000097.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['205',"Methods","topic_0000000000000093_methods--.html"],['206',"Delete Method","topic_0000000000000097.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['205',"Methods","topic_0000000000000093_methods--.html"],['206',"Delete Method","topic_0000000000000097.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000098.html.js b/Database/VSdoc/toc--/topic_0000000000000098.html.js index 3c47c76d..071a066f 100644 --- a/Database/VSdoc/toc--/topic_0000000000000098.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000098.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['205',"Methods","topic_0000000000000093_methods--.html"],['209',"SelectOne Method","topic_0000000000000098.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['205',"Methods","topic_0000000000000093_methods--.html"],['209',"SelectOne Method","topic_0000000000000098.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000099.html.js b/Database/VSdoc/toc--/topic_0000000000000099.html.js index 6c5ca07f..dfdd0a73 100644 --- a/Database/VSdoc/toc--/topic_0000000000000099.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000099.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['205',"Methods","topic_0000000000000093_methods--.html"],['208',"SelectAll Method","topic_0000000000000099.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['205',"Methods","topic_0000000000000093_methods--.html"],['208',"SelectAll Method","topic_0000000000000099.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000009A.html.js b/Database/VSdoc/toc--/topic_000000000000009A.html.js index c511ba1f..850ab57a 100644 --- a/Database/VSdoc/toc--/topic_000000000000009A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000009A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['196',"iDokumentstatusnr Property","topic_000000000000009A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['196',"iDokumentstatusnr Property","topic_000000000000009A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000009B.html.js b/Database/VSdoc/toc--/topic_000000000000009B.html.js index 1f45334d..dcb140f6 100644 --- a/Database/VSdoc/toc--/topic_000000000000009B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000009B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['197',"iDokumenttypnr Property","topic_000000000000009B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['197',"iDokumenttypnr Property","topic_000000000000009B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000009C.html.js b/Database/VSdoc/toc--/topic_000000000000009C.html.js index 9aac3f1d..208c6c66 100644 --- a/Database/VSdoc/toc--/topic_000000000000009C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000009C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['204',"iStatustypnr Property","topic_000000000000009C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['204',"iStatustypnr Property","topic_000000000000009C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000009D.html.js b/Database/VSdoc/toc--/topic_000000000000009D.html.js index 891be51b..dbc30eec 100644 --- a/Database/VSdoc/toc--/topic_000000000000009D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000009D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['202',"iStatus_bezeichnungnr Property","topic_000000000000009D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['202',"iStatus_bezeichnungnr Property","topic_000000000000009D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000009E.html.js b/Database/VSdoc/toc--/topic_000000000000009E.html.js index 9e580295..df84ec08 100644 --- a/Database/VSdoc/toc--/topic_000000000000009E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000009E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['201',"iReihenfolge Property","topic_000000000000009E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['201',"iReihenfolge Property","topic_000000000000009E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000009F.html.js b/Database/VSdoc/toc--/topic_000000000000009F.html.js index aafc9f05..6c1ff7a1 100644 --- a/Database/VSdoc/toc--/topic_000000000000009F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000009F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['193',"bFolgestatus_durch_anderen_verantwortlichen Property","topic_000000000000009F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['193',"bFolgestatus_durch_anderen_verantwortlichen Property","topic_000000000000009F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000A0.html.js b/Database/VSdoc/toc--/topic_00000000000000A0.html.js index 3a5bd913..e41d1af3 100644 --- a/Database/VSdoc/toc--/topic_00000000000000A0.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000A0.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['192',"bDokumentbearbeitung_moeglich Property","topic_00000000000000A0.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['192',"bDokumentbearbeitung_moeglich Property","topic_00000000000000A0.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000A1.html.js b/Database/VSdoc/toc--/topic_00000000000000A1.html.js index b1360abd..0d08dceb 100644 --- a/Database/VSdoc/toc--/topic_00000000000000A1.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000A1.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['198',"iErledigung_ab Property","topic_00000000000000A1.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['198',"iErledigung_ab Property","topic_00000000000000A1.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000A2.html.js b/Database/VSdoc/toc--/topic_00000000000000A2.html.js index 4914b827..944453d0 100644 --- a/Database/VSdoc/toc--/topic_00000000000000A2.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000A2.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['190',"bDokument_ausgangsarchivieren Property","topic_00000000000000A2.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['190',"bDokument_ausgangsarchivieren Property","topic_00000000000000A2.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000A3.html.js b/Database/VSdoc/toc--/topic_00000000000000A3.html.js index 18871bab..8e960f21 100644 --- a/Database/VSdoc/toc--/topic_00000000000000A3.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000A3.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['191',"bDokument_bearbeitung_abgeschlossen Property","topic_00000000000000A3.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['191',"bDokument_bearbeitung_abgeschlossen Property","topic_00000000000000A3.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000A4.html.js b/Database/VSdoc/toc--/topic_00000000000000A4.html.js index db94d9e8..910da2a4 100644 --- a/Database/VSdoc/toc--/topic_00000000000000A4.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000A4.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['199',"iMandantnr Property","topic_00000000000000A4.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['199',"iMandantnr Property","topic_00000000000000A4.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000A5.html.js b/Database/VSdoc/toc--/topic_00000000000000A5.html.js index bc97149e..e26dacdd 100644 --- a/Database/VSdoc/toc--/topic_00000000000000A5.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000A5.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['189',"bAktiv Property","topic_00000000000000A5.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['189',"bAktiv Property","topic_00000000000000A5.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000A6.html.js b/Database/VSdoc/toc--/topic_00000000000000A6.html.js index 95b4b1a8..0c7962fb 100644 --- a/Database/VSdoc/toc--/topic_00000000000000A6.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000A6.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['194',"daErstellt_am Property","topic_00000000000000A6.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['194',"daErstellt_am Property","topic_00000000000000A6.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000A7.html.js b/Database/VSdoc/toc--/topic_00000000000000A7.html.js index 983849e4..a8c3f260 100644 --- a/Database/VSdoc/toc--/topic_00000000000000A7.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000A7.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['195',"daMutiert_am Property","topic_00000000000000A7.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['195',"daMutiert_am Property","topic_00000000000000A7.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000A8.html.js b/Database/VSdoc/toc--/topic_00000000000000A8.html.js index 72a0ab34..bd17f256 100644 --- a/Database/VSdoc/toc--/topic_00000000000000A8.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000A8.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['200',"iMutierer Property","topic_00000000000000A8.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['200',"iMutierer Property","topic_00000000000000A8.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000A9.html.js b/Database/VSdoc/toc--/topic_00000000000000A9.html.js index 313917f9..b63330be 100644 --- a/Database/VSdoc/toc--/topic_00000000000000A9.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000A9.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['203',"iStatustyp Property","topic_00000000000000A9.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['186',"clsDokumentstatus Class","topic_0000000000000093.html"],['188',"Properties","topic_0000000000000093_props--.html"],['203',"iStatustyp Property","topic_00000000000000A9.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000AA.html.js b/Database/VSdoc/toc--/topic_00000000000000AA.html.js index e0b699d6..b4d1243d 100644 --- a/Database/VSdoc/toc--/topic_00000000000000AA.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000AA.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000AA_methods--.html.js b/Database/VSdoc/toc--/topic_00000000000000AA_methods--.html.js index 186ca28d..ac56e914 100644 --- a/Database/VSdoc/toc--/topic_00000000000000AA_methods--.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000AA_methods--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['278',"Methods","topic_00000000000000AA_methods--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['278',"Methods","topic_00000000000000AA_methods--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000AA_props--.html.js b/Database/VSdoc/toc--/topic_00000000000000AA_props--.html.js index 48093938..6c174a5a 100644 --- a/Database/VSdoc/toc--/topic_00000000000000AA_props--.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000AA_props--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000AB.html.js b/Database/VSdoc/toc--/topic_00000000000000AB.html.js index 9ae6065b..c7339bcf 100644 --- a/Database/VSdoc/toc--/topic_00000000000000AB.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000AB.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['212',"clsDokumenttyp Constructor","topic_00000000000000AB.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['212',"clsDokumenttyp Constructor","topic_00000000000000AB.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000AC.html.js b/Database/VSdoc/toc--/topic_00000000000000AC.html.js index 58c115aa..bbe16881 100644 --- a/Database/VSdoc/toc--/topic_00000000000000AC.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000AC.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['278',"Methods","topic_00000000000000AA_methods--.html"],['280',"Insert Method","topic_00000000000000AC.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['278',"Methods","topic_00000000000000AA_methods--.html"],['280',"Insert Method","topic_00000000000000AC.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000AD.html.js b/Database/VSdoc/toc--/topic_00000000000000AD.html.js index 02dfff81..5e4c04ff 100644 --- a/Database/VSdoc/toc--/topic_00000000000000AD.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000AD.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['278',"Methods","topic_00000000000000AA_methods--.html"],['283',"Update Method","topic_00000000000000AD.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['278',"Methods","topic_00000000000000AA_methods--.html"],['283',"Update Method","topic_00000000000000AD.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000AE.html.js b/Database/VSdoc/toc--/topic_00000000000000AE.html.js index d2009dfe..a7764d5a 100644 --- a/Database/VSdoc/toc--/topic_00000000000000AE.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000AE.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['278',"Methods","topic_00000000000000AA_methods--.html"],['279',"Delete Method","topic_00000000000000AE.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['278',"Methods","topic_00000000000000AA_methods--.html"],['279',"Delete Method","topic_00000000000000AE.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000AF.html.js b/Database/VSdoc/toc--/topic_00000000000000AF.html.js index 96a7d203..13e26c4d 100644 --- a/Database/VSdoc/toc--/topic_00000000000000AF.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000AF.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['278',"Methods","topic_00000000000000AA_methods--.html"],['282',"SelectOne Method","topic_00000000000000AF.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['278',"Methods","topic_00000000000000AA_methods--.html"],['282',"SelectOne Method","topic_00000000000000AF.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000B0.html.js b/Database/VSdoc/toc--/topic_00000000000000B0.html.js index ca0a7936..a67a3c86 100644 --- a/Database/VSdoc/toc--/topic_00000000000000B0.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000B0.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['278',"Methods","topic_00000000000000AA_methods--.html"],['281',"SelectAll Method","topic_00000000000000B0.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['278',"Methods","topic_00000000000000AA_methods--.html"],['281',"SelectAll Method","topic_00000000000000B0.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000B1.html.js b/Database/VSdoc/toc--/topic_00000000000000B1.html.js index 6476b751..ca3c3e43 100644 --- a/Database/VSdoc/toc--/topic_00000000000000B1.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000B1.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['262',"iDokumenttypnr Property","topic_00000000000000B1.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['262',"iDokumenttypnr Property","topic_00000000000000B1.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000B2.html.js b/Database/VSdoc/toc--/topic_00000000000000B2.html.js index 986bc607..687e3060 100644 --- a/Database/VSdoc/toc--/topic_00000000000000B2.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000B2.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['275',"sBezeichnung Property","topic_00000000000000B2.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['275',"sBezeichnung Property","topic_00000000000000B2.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000B3.html.js b/Database/VSdoc/toc--/topic_00000000000000B3.html.js index d5ad3821..a8d75859 100644 --- a/Database/VSdoc/toc--/topic_00000000000000B3.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000B3.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['274',"sBeschreibung Property","topic_00000000000000B3.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['274',"sBeschreibung Property","topic_00000000000000B3.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000B4.html.js b/Database/VSdoc/toc--/topic_00000000000000B4.html.js index 53b81792..0a028c38 100644 --- a/Database/VSdoc/toc--/topic_00000000000000B4.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000B4.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['243',"bZu_vercolden Property","topic_00000000000000B4.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['243',"bZu_vercolden Property","topic_00000000000000B4.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000B5.html.js b/Database/VSdoc/toc--/topic_00000000000000B5.html.js index bd25f28e..24a7c157 100644 --- a/Database/VSdoc/toc--/topic_00000000000000B5.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000B5.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['242',"bZu_retournieren Property","topic_00000000000000B5.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['242',"bZu_retournieren Property","topic_00000000000000B5.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000B6.html.js b/Database/VSdoc/toc--/topic_00000000000000B6.html.js index 67655588..a84c9bd9 100644 --- a/Database/VSdoc/toc--/topic_00000000000000B6.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000B6.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['222',"bEingang_ersetzt_ausgang Property","topic_00000000000000B6.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['222',"bEingang_ersetzt_ausgang Property","topic_00000000000000B6.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000B7.html.js b/Database/VSdoc/toc--/topic_00000000000000B7.html.js index 8003721c..6e141970 100644 --- a/Database/VSdoc/toc--/topic_00000000000000B7.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000B7.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['240',"bWird_importiert Property","topic_00000000000000B7.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['240',"bWird_importiert Property","topic_00000000000000B7.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000B8.html.js b/Database/VSdoc/toc--/topic_00000000000000B8.html.js index 35f1bfa8..3e8f4bad 100644 --- a/Database/VSdoc/toc--/topic_00000000000000B8.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000B8.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['246',"iAnzahl_tage Property","topic_00000000000000B8.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['246',"iAnzahl_tage Property","topic_00000000000000B8.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000B9.html.js b/Database/VSdoc/toc--/topic_00000000000000B9.html.js index 7cbb2d46..aab85ccd 100644 --- a/Database/VSdoc/toc--/topic_00000000000000B9.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000B9.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['250',"iDbearbeitungszeit Property","topic_00000000000000B9.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['250',"iDbearbeitungszeit Property","topic_00000000000000B9.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000BA.html.js b/Database/VSdoc/toc--/topic_00000000000000BA.html.js index ed4bd554..11e25b05 100644 --- a/Database/VSdoc/toc--/topic_00000000000000BA.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000BA.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['272',"iTage_mutation Property","topic_00000000000000BA.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['272',"iTage_mutation Property","topic_00000000000000BA.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000BB.html.js b/Database/VSdoc/toc--/topic_00000000000000BB.html.js index f8c83fdc..35073ff2 100644 --- a/Database/VSdoc/toc--/topic_00000000000000BB.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000BB.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['231',"bPartnersaldierung_statusalt Property","topic_00000000000000BB.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['231',"bPartnersaldierung_statusalt Property","topic_00000000000000BB.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000BC.html.js b/Database/VSdoc/toc--/topic_00000000000000BC.html.js index 57081f0c..5ac78d07 100644 --- a/Database/VSdoc/toc--/topic_00000000000000BC.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000BC.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['241',"bWird_nicht_geloescht Property","topic_00000000000000BC.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['241',"bWird_nicht_geloescht Property","topic_00000000000000BC.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000BD.html.js b/Database/VSdoc/toc--/topic_00000000000000BD.html.js index 9f258f49..5f443469 100644 --- a/Database/VSdoc/toc--/topic_00000000000000BD.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000BD.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['239',"bVertrauliches_dokument Property","topic_00000000000000BD.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['239',"bVertrauliches_dokument Property","topic_00000000000000BD.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000BE.html.js b/Database/VSdoc/toc--/topic_00000000000000BE.html.js index 4380dc1d..d7689dfd 100644 --- a/Database/VSdoc/toc--/topic_00000000000000BE.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000BE.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['236',"bUnterschrift_links Property","topic_00000000000000BE.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['236',"bUnterschrift_links Property","topic_00000000000000BE.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000BF.html.js b/Database/VSdoc/toc--/topic_00000000000000BF.html.js index ec077bc7..d7ed5d5c 100644 --- a/Database/VSdoc/toc--/topic_00000000000000BF.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000BF.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['237',"bUnterschrift_rechts Property","topic_00000000000000BF.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['237',"bUnterschrift_rechts Property","topic_00000000000000BF.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000C0.html.js b/Database/VSdoc/toc--/topic_00000000000000C0.html.js index 980c3e03..66532962 100644 --- a/Database/VSdoc/toc--/topic_00000000000000C0.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000C0.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['264',"iMonate_bis_zur_archivierung Property","topic_00000000000000C0.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['264',"iMonate_bis_zur_archivierung Property","topic_00000000000000C0.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000C1.html.js b/Database/VSdoc/toc--/topic_00000000000000C1.html.js index dbc95ca0..94f3d73c 100644 --- a/Database/VSdoc/toc--/topic_00000000000000C1.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000C1.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['247',"iAufbewahrungsfrist_elektronisch Property","topic_00000000000000C1.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['247',"iAufbewahrungsfrist_elektronisch Property","topic_00000000000000C1.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000C2.html.js b/Database/VSdoc/toc--/topic_00000000000000C2.html.js index ece80d59..048fa77a 100644 --- a/Database/VSdoc/toc--/topic_00000000000000C2.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000C2.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['248',"iAufbewahrungsfrist_physisch Property","topic_00000000000000C2.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['248',"iAufbewahrungsfrist_physisch Property","topic_00000000000000C2.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000C3.html.js b/Database/VSdoc/toc--/topic_00000000000000C3.html.js index 3b40f25f..4ea8f29e 100644 --- a/Database/VSdoc/toc--/topic_00000000000000C3.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000C3.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['263',"iMandantnr Property","topic_00000000000000C3.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['263',"iMandantnr Property","topic_00000000000000C3.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000C4.html.js b/Database/VSdoc/toc--/topic_00000000000000C4.html.js index f8d6316c..99e7996a 100644 --- a/Database/VSdoc/toc--/topic_00000000000000C4.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000C4.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['214',"bAktiv Property","topic_00000000000000C4.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['214',"bAktiv Property","topic_00000000000000C4.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000C5.html.js b/Database/VSdoc/toc--/topic_00000000000000C5.html.js index f3352d98..2e262047 100644 --- a/Database/VSdoc/toc--/topic_00000000000000C5.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000C5.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['244',"daErstellt_am Property","topic_00000000000000C5.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['244',"daErstellt_am Property","topic_00000000000000C5.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000C6.html.js b/Database/VSdoc/toc--/topic_00000000000000C6.html.js index 077d20d8..97d0c5de 100644 --- a/Database/VSdoc/toc--/topic_00000000000000C6.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000C6.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['245',"daMutiert_am Property","topic_00000000000000C6.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['245',"daMutiert_am Property","topic_00000000000000C6.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000C7.html.js b/Database/VSdoc/toc--/topic_00000000000000C7.html.js index c0408f46..2877432c 100644 --- a/Database/VSdoc/toc--/topic_00000000000000C7.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000C7.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['265',"iMutierer Property","topic_00000000000000C7.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['265',"iMutierer Property","topic_00000000000000C7.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000C8.html.js b/Database/VSdoc/toc--/topic_00000000000000C8.html.js index cca8356f..65d7e0b1 100644 --- a/Database/VSdoc/toc--/topic_00000000000000C8.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000C8.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['267',"iOffice_vorlagenr Property","topic_00000000000000C8.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['267',"iOffice_vorlagenr Property","topic_00000000000000C8.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000C9.html.js b/Database/VSdoc/toc--/topic_00000000000000C9.html.js index 8f9a8728..79385814 100644 --- a/Database/VSdoc/toc--/topic_00000000000000C9.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000C9.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['255',"iDokumentart_kundendossier Property","topic_00000000000000C9.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['255',"iDokumentart_kundendossier Property","topic_00000000000000C9.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000CA.html.js b/Database/VSdoc/toc--/topic_00000000000000CA.html.js index 2346d716..7c790f22 100644 --- a/Database/VSdoc/toc--/topic_00000000000000CA.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000CA.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['257',"iDokumentart_neuerstellung Property","topic_00000000000000CA.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['257',"iDokumentart_neuerstellung Property","topic_00000000000000CA.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000CB.html.js b/Database/VSdoc/toc--/topic_00000000000000CB.html.js index 6e912eef..54e55994 100644 --- a/Database/VSdoc/toc--/topic_00000000000000CB.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000CB.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['258',"iDokumentart_retournierung Property","topic_00000000000000CB.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['258',"iDokumentart_retournierung Property","topic_00000000000000CB.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000CC.html.js b/Database/VSdoc/toc--/topic_00000000000000CC.html.js index 2ca384b3..a71624d3 100644 --- a/Database/VSdoc/toc--/topic_00000000000000CC.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000CC.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['252',"iDokumentart_coldausgang Property","topic_00000000000000CC.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['252',"iDokumentart_coldausgang Property","topic_00000000000000CC.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000CD.html.js b/Database/VSdoc/toc--/topic_00000000000000CD.html.js index a9eb728e..706851df 100644 --- a/Database/VSdoc/toc--/topic_00000000000000CD.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000CD.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['253',"iDokumentart_coldeingang Property","topic_00000000000000CD.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['253',"iDokumentart_coldeingang Property","topic_00000000000000CD.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000CE.html.js b/Database/VSdoc/toc--/topic_00000000000000CE.html.js index a148076e..84ad58c3 100644 --- a/Database/VSdoc/toc--/topic_00000000000000CE.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000CE.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['254',"iDokumentart_host Property","topic_00000000000000CE.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['254',"iDokumentart_host Property","topic_00000000000000CE.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000CF.html.js b/Database/VSdoc/toc--/topic_00000000000000CF.html.js index f77b26c4..a2204e49 100644 --- a/Database/VSdoc/toc--/topic_00000000000000CF.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000CF.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['259',"iDokumentart_weitere Property","topic_00000000000000CF.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['259',"iDokumentart_weitere Property","topic_00000000000000CF.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000D0.html.js b/Database/VSdoc/toc--/topic_00000000000000D0.html.js index 10437855..66daa936 100644 --- a/Database/VSdoc/toc--/topic_00000000000000D0.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000D0.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['256',"iDokumentart_nativ Property","topic_00000000000000D0.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['256',"iDokumentart_nativ Property","topic_00000000000000D0.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000D1.html.js b/Database/VSdoc/toc--/topic_00000000000000D1.html.js index bee6ba94..f09b7832 100644 --- a/Database/VSdoc/toc--/topic_00000000000000D1.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000D1.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['270',"iProzessnr Property","topic_00000000000000D1.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['270',"iProzessnr Property","topic_00000000000000D1.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000D2.html.js b/Database/VSdoc/toc--/topic_00000000000000D2.html.js index 89ab699f..eddcd24a 100644 --- a/Database/VSdoc/toc--/topic_00000000000000D2.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000D2.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['271',"iProzessnr1 Property","topic_00000000000000D2.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['271',"iProzessnr1 Property","topic_00000000000000D2.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000D3.html.js b/Database/VSdoc/toc--/topic_00000000000000D3.html.js index d68a7e2a..5067aade 100644 --- a/Database/VSdoc/toc--/topic_00000000000000D3.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000D3.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['215',"bAmsdokument Property","topic_00000000000000D3.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['215',"bAmsdokument Property","topic_00000000000000D3.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000D4.html.js b/Database/VSdoc/toc--/topic_00000000000000D4.html.js index ca739907..3721cf62 100644 --- a/Database/VSdoc/toc--/topic_00000000000000D4.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000D4.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['226',"bHostdokument Property","topic_00000000000000D4.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['226',"bHostdokument Property","topic_00000000000000D4.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000D5.html.js b/Database/VSdoc/toc--/topic_00000000000000D5.html.js index 106f01ab..ca4c0ccf 100644 --- a/Database/VSdoc/toc--/topic_00000000000000D5.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000D5.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['277',"sHostdokumenttyp Property","topic_00000000000000D5.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['277',"sHostdokumenttyp Property","topic_00000000000000D5.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000D6.html.js b/Database/VSdoc/toc--/topic_00000000000000D6.html.js index c505664e..439077bb 100644 --- a/Database/VSdoc/toc--/topic_00000000000000D6.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000D6.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['249',"iCold_folder Property","topic_00000000000000D6.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['249',"iCold_folder Property","topic_00000000000000D6.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000D7.html.js b/Database/VSdoc/toc--/topic_00000000000000D7.html.js index 1ebb9bdb..1d69f4da 100644 --- a/Database/VSdoc/toc--/topic_00000000000000D7.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000D7.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['269',"iPhysisches_archiv Property","topic_00000000000000D7.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['269',"iPhysisches_archiv Property","topic_00000000000000D7.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000D8.html.js b/Database/VSdoc/toc--/topic_00000000000000D8.html.js index 0b0429b8..eb9f0822 100644 --- a/Database/VSdoc/toc--/topic_00000000000000D8.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000D8.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['260',"iDokumentstatus Property","topic_00000000000000D8.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['260',"iDokumentstatus Property","topic_00000000000000D8.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000D9.html.js b/Database/VSdoc/toc--/topic_00000000000000D9.html.js index 5a5aa529..1f9bc7f5 100644 --- a/Database/VSdoc/toc--/topic_00000000000000D9.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000D9.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['220',"bDokument_wird_erstellt Property","topic_00000000000000D9.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['220',"bDokument_wird_erstellt Property","topic_00000000000000D9.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000DA.html.js b/Database/VSdoc/toc--/topic_00000000000000DA.html.js index 3fd7bca6..bf1918f7 100644 --- a/Database/VSdoc/toc--/topic_00000000000000DA.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000DA.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['221',"bDokument_wird_retourniert Property","topic_00000000000000DA.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['221',"bDokument_wird_retourniert Property","topic_00000000000000DA.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000DB.html.js b/Database/VSdoc/toc--/topic_00000000000000DB.html.js index 6ad5d706..e328543a 100644 --- a/Database/VSdoc/toc--/topic_00000000000000DB.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000DB.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['219',"bCold_ersetzen Property","topic_00000000000000DB.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['219',"bCold_ersetzen Property","topic_00000000000000DB.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000DC.html.js b/Database/VSdoc/toc--/topic_00000000000000DC.html.js index f934c1ca..d17fd0a6 100644 --- a/Database/VSdoc/toc--/topic_00000000000000DC.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000DC.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['224',"bEmail_versand Property","topic_00000000000000DC.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['224',"bEmail_versand Property","topic_00000000000000DC.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000DD.html.js b/Database/VSdoc/toc--/topic_00000000000000DD.html.js index 1315841a..5671181b 100644 --- a/Database/VSdoc/toc--/topic_00000000000000DD.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000DD.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['225',"bFunktionen_zuweisen Property","topic_00000000000000DD.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['225',"bFunktionen_zuweisen Property","topic_00000000000000DD.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000DE.html.js b/Database/VSdoc/toc--/topic_00000000000000DE.html.js index 09a277d2..62bc4f18 100644 --- a/Database/VSdoc/toc--/topic_00000000000000DE.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000DE.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['261',"iDokumentstatus_barcode Property","topic_00000000000000DE.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['261',"iDokumentstatus_barcode Property","topic_00000000000000DE.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000DF.html.js b/Database/VSdoc/toc--/topic_00000000000000DF.html.js index cc957683..1ea17dc2 100644 --- a/Database/VSdoc/toc--/topic_00000000000000DF.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000DF.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['230',"bNurnative Property","topic_00000000000000DF.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['230',"bNurnative Property","topic_00000000000000DF.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000E0.html.js b/Database/VSdoc/toc--/topic_00000000000000E0.html.js index a8cc5c83..ceb7093f 100644 --- a/Database/VSdoc/toc--/topic_00000000000000E0.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000E0.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['268',"iOwner Property","topic_00000000000000E0.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['268',"iOwner Property","topic_00000000000000E0.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000E1.html.js b/Database/VSdoc/toc--/topic_00000000000000E1.html.js index 34080834..d55e4285 100644 --- a/Database/VSdoc/toc--/topic_00000000000000E1.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000E1.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['238',"bVertrag Property","topic_00000000000000E1.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['238',"bVertrag Property","topic_00000000000000E1.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000E2.html.js b/Database/VSdoc/toc--/topic_00000000000000E2.html.js index f46f7034..42f203e8 100644 --- a/Database/VSdoc/toc--/topic_00000000000000E2.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000E2.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['266',"iObjektbezeichnungnr Property","topic_00000000000000E2.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['266',"iObjektbezeichnungnr Property","topic_00000000000000E2.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000E3.html.js b/Database/VSdoc/toc--/topic_00000000000000E3.html.js index a7d4b3ee..d4a60c02 100644 --- a/Database/VSdoc/toc--/topic_00000000000000E3.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000E3.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['217',"bBedingtretournierbar Property","topic_00000000000000E3.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['217',"bBedingtretournierbar Property","topic_00000000000000E3.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000E4.html.js b/Database/VSdoc/toc--/topic_00000000000000E4.html.js index 5762747b..4997f115 100644 --- a/Database/VSdoc/toc--/topic_00000000000000E4.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000E4.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['251',"iDoktypbedingteretournierung Property","topic_00000000000000E4.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['251',"iDoktypbedingteretournierung Property","topic_00000000000000E4.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000E5.html.js b/Database/VSdoc/toc--/topic_00000000000000E5.html.js index fa1711a4..5b216060 100644 --- a/Database/VSdoc/toc--/topic_00000000000000E5.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000E5.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['273',"iTagebisvernichtungbedingteretournierung Property","topic_00000000000000E5.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['273',"iTagebisvernichtungbedingteretournierung Property","topic_00000000000000E5.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000E6.html.js b/Database/VSdoc/toc--/topic_00000000000000E6.html.js index 254a6252..a88394d7 100644 --- a/Database/VSdoc/toc--/topic_00000000000000E6.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000E6.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['216',"bAnzeigeZurDokumenterstellung Property","topic_00000000000000E6.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['216',"bAnzeigeZurDokumenterstellung Property","topic_00000000000000E6.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000E7.html.js b/Database/VSdoc/toc--/topic_00000000000000E7.html.js index 60c7dce3..60117909 100644 --- a/Database/VSdoc/toc--/topic_00000000000000E7.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000E7.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['229',"bKundenDokument Property","topic_00000000000000E7.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['229',"bKundenDokument Property","topic_00000000000000E7.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000E8.html.js b/Database/VSdoc/toc--/topic_00000000000000E8.html.js index 7d2ce1a0..e393a807 100644 --- a/Database/VSdoc/toc--/topic_00000000000000E8.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000E8.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['232',"bSb Property","topic_00000000000000E8.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['232',"bSb Property","topic_00000000000000E8.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000E9.html.js b/Database/VSdoc/toc--/topic_00000000000000E9.html.js index 25bcdc39..0d7ec15a 100644 --- a/Database/VSdoc/toc--/topic_00000000000000E9.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000E9.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['234',"bSbimport Property","topic_00000000000000E9.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['234',"bSbimport Property","topic_00000000000000E9.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000EA.html.js b/Database/VSdoc/toc--/topic_00000000000000EA.html.js index 2913bbbe..6af0a9c2 100644 --- a/Database/VSdoc/toc--/topic_00000000000000EA.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000EA.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['233',"bSbedituser Property","topic_00000000000000EA.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['233',"bSbedituser Property","topic_00000000000000EA.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000EB.html.js b/Database/VSdoc/toc--/topic_00000000000000EB.html.js index 9730fc4f..7da6d9a2 100644 --- a/Database/VSdoc/toc--/topic_00000000000000EB.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000EB.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['235',"bSbnur Property","topic_00000000000000EB.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['235',"bSbnur Property","topic_00000000000000EB.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000EC.html.js b/Database/VSdoc/toc--/topic_00000000000000EC.html.js index cf95156d..47989411 100644 --- a/Database/VSdoc/toc--/topic_00000000000000EC.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000EC.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['218',"bBezeichnungmut Property","topic_00000000000000EC.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['218',"bBezeichnungmut Property","topic_00000000000000EC.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000ED.html.js b/Database/VSdoc/toc--/topic_00000000000000ED.html.js index 8896117c..50ff54e4 100644 --- a/Database/VSdoc/toc--/topic_00000000000000ED.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000ED.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['228',"bIstFarbigArchiviert Property","topic_00000000000000ED.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['228',"bIstFarbigArchiviert Property","topic_00000000000000ED.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000EE.html.js b/Database/VSdoc/toc--/topic_00000000000000EE.html.js index 0b794732..c7e0e7e0 100644 --- a/Database/VSdoc/toc--/topic_00000000000000EE.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000EE.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['227',"bIntern Property","topic_00000000000000EE.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['227',"bIntern Property","topic_00000000000000EE.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000EF.html.js b/Database/VSdoc/toc--/topic_00000000000000EF.html.js index ceba2c00..e0ee4e44 100644 --- a/Database/VSdoc/toc--/topic_00000000000000EF.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000EF.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['223',"bElDokImport Property","topic_00000000000000EF.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['223',"bElDokImport Property","topic_00000000000000EF.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000F0.html.js b/Database/VSdoc/toc--/topic_00000000000000F0.html.js index a18a9bf2..0240a0b1 100644 --- a/Database/VSdoc/toc--/topic_00000000000000F0.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000F0.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['276',"sFachverantwortung Property","topic_00000000000000F0.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['211',"clsDokumenttyp Class","topic_00000000000000AA.html"],['213',"Properties","topic_00000000000000AA_props--.html"],['276',"sFachverantwortung Property","topic_00000000000000F0.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000F1.html.js b/Database/VSdoc/toc--/topic_00000000000000F1.html.js index ea7a5706..1925fd08 100644 --- a/Database/VSdoc/toc--/topic_00000000000000F1.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000F1.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000F1_methods--.html.js b/Database/VSdoc/toc--/topic_00000000000000F1_methods--.html.js index fc3427b4..beade328 100644 --- a/Database/VSdoc/toc--/topic_00000000000000F1_methods--.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000F1_methods--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['295',"Methods","topic_00000000000000F1_methods--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['295',"Methods","topic_00000000000000F1_methods--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000F1_props--.html.js b/Database/VSdoc/toc--/topic_00000000000000F1_props--.html.js index db3cea05..839f9749 100644 --- a/Database/VSdoc/toc--/topic_00000000000000F1_props--.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000F1_props--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000F2.html.js b/Database/VSdoc/toc--/topic_00000000000000F2.html.js index b9c8366a..63e87dd4 100644 --- a/Database/VSdoc/toc--/topic_00000000000000F2.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000F2.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['285',"clsKey_tabelle Constructor","topic_00000000000000F2.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['285',"clsKey_tabelle Constructor","topic_00000000000000F2.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000F3.html.js b/Database/VSdoc/toc--/topic_00000000000000F3.html.js index 56e72075..769438ba 100644 --- a/Database/VSdoc/toc--/topic_00000000000000F3.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000F3.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['295',"Methods","topic_00000000000000F1_methods--.html"],['297',"Insert Method","topic_00000000000000F3.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['295',"Methods","topic_00000000000000F1_methods--.html"],['297',"Insert Method","topic_00000000000000F3.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000F4.html.js b/Database/VSdoc/toc--/topic_00000000000000F4.html.js index ff48f1f4..4652b3e6 100644 --- a/Database/VSdoc/toc--/topic_00000000000000F4.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000F4.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['295',"Methods","topic_00000000000000F1_methods--.html"],['300',"Update Method","topic_00000000000000F4.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['295',"Methods","topic_00000000000000F1_methods--.html"],['300',"Update Method","topic_00000000000000F4.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000F5.html.js b/Database/VSdoc/toc--/topic_00000000000000F5.html.js index f25446f7..f6f91873 100644 --- a/Database/VSdoc/toc--/topic_00000000000000F5.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000F5.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['295',"Methods","topic_00000000000000F1_methods--.html"],['296',"Delete Method","topic_00000000000000F5.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['295',"Methods","topic_00000000000000F1_methods--.html"],['296',"Delete Method","topic_00000000000000F5.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000F6.html.js b/Database/VSdoc/toc--/topic_00000000000000F6.html.js index b9a8193e..6b8c882c 100644 --- a/Database/VSdoc/toc--/topic_00000000000000F6.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000F6.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['295',"Methods","topic_00000000000000F1_methods--.html"],['299',"SelectOne Method","topic_00000000000000F6.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['295',"Methods","topic_00000000000000F1_methods--.html"],['299',"SelectOne Method","topic_00000000000000F6.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000F7.html.js b/Database/VSdoc/toc--/topic_00000000000000F7.html.js index f2973d7b..ae2b0cbc 100644 --- a/Database/VSdoc/toc--/topic_00000000000000F7.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000F7.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['295',"Methods","topic_00000000000000F1_methods--.html"],['298',"SelectAll Method","topic_00000000000000F7.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['295',"Methods","topic_00000000000000F1_methods--.html"],['298',"SelectAll Method","topic_00000000000000F7.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000F8.html.js b/Database/VSdoc/toc--/topic_00000000000000F8.html.js index e541630f..17439af6 100644 --- a/Database/VSdoc/toc--/topic_00000000000000F8.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000F8.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['291',"iKeynr Property","topic_00000000000000F8.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['291',"iKeynr Property","topic_00000000000000F8.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000F9.html.js b/Database/VSdoc/toc--/topic_00000000000000F9.html.js index 5e848d85..92995818 100644 --- a/Database/VSdoc/toc--/topic_00000000000000F9.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000F9.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['294',"sBeschreibung Property","topic_00000000000000F9.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['294',"sBeschreibung Property","topic_00000000000000F9.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000FA.html.js b/Database/VSdoc/toc--/topic_00000000000000FA.html.js index a15569ce..5fa60ac4 100644 --- a/Database/VSdoc/toc--/topic_00000000000000FA.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000FA.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['290',"iKey_wert Property","topic_00000000000000FA.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['290',"iKey_wert Property","topic_00000000000000FA.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000FB.html.js b/Database/VSdoc/toc--/topic_00000000000000FB.html.js index 80429f0a..cfd4e33a 100644 --- a/Database/VSdoc/toc--/topic_00000000000000FB.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000FB.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['292',"iMandantnr Property","topic_00000000000000FB.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['292',"iMandantnr Property","topic_00000000000000FB.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000FC.html.js b/Database/VSdoc/toc--/topic_00000000000000FC.html.js index ff2a62e1..d8c56326 100644 --- a/Database/VSdoc/toc--/topic_00000000000000FC.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000FC.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['287',"bAktiv Property","topic_00000000000000FC.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['287',"bAktiv Property","topic_00000000000000FC.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000FD.html.js b/Database/VSdoc/toc--/topic_00000000000000FD.html.js index 981f1424..cbc2db49 100644 --- a/Database/VSdoc/toc--/topic_00000000000000FD.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000FD.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['288',"daErstellt_am Property","topic_00000000000000FD.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['288',"daErstellt_am Property","topic_00000000000000FD.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000FE.html.js b/Database/VSdoc/toc--/topic_00000000000000FE.html.js index fd83a10d..4b4e30fa 100644 --- a/Database/VSdoc/toc--/topic_00000000000000FE.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000FE.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['289',"daMutiert_am Property","topic_00000000000000FE.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['289',"daMutiert_am Property","topic_00000000000000FE.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_00000000000000FF.html.js b/Database/VSdoc/toc--/topic_00000000000000FF.html.js index a78069ba..cef07a76 100644 --- a/Database/VSdoc/toc--/topic_00000000000000FF.html.js +++ b/Database/VSdoc/toc--/topic_00000000000000FF.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['293',"iMutierer Property","topic_00000000000000FF.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['284',"clsKey_tabelle Class","topic_00000000000000F1.html"],['286',"Properties","topic_00000000000000F1_props--.html"],['293',"iMutierer Property","topic_00000000000000FF.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000100.html.js b/Database/VSdoc/toc--/topic_0000000000000100.html.js index aae868a0..8e03068c 100644 --- a/Database/VSdoc/toc--/topic_0000000000000100.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000100.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000100_methods--.html.js b/Database/VSdoc/toc--/topic_0000000000000100_methods--.html.js index 3f5cfdfd..f1dc81de 100644 --- a/Database/VSdoc/toc--/topic_0000000000000100_methods--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000100_methods--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['336',"Methods","topic_0000000000000100_methods--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['336',"Methods","topic_0000000000000100_methods--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000100_props--.html.js b/Database/VSdoc/toc--/topic_0000000000000100_props--.html.js index bed7679d..d7531d82 100644 --- a/Database/VSdoc/toc--/topic_0000000000000100_props--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000100_props--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000101.html.js b/Database/VSdoc/toc--/topic_0000000000000101.html.js index 6cbafd1c..d02250ff 100644 --- a/Database/VSdoc/toc--/topic_0000000000000101.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000101.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['302',"clsMitarbeiter Constructor","topic_0000000000000101.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['302',"clsMitarbeiter Constructor","topic_0000000000000101.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000102.html.js b/Database/VSdoc/toc--/topic_0000000000000102.html.js index c376b0a3..d1bc1c0d 100644 --- a/Database/VSdoc/toc--/topic_0000000000000102.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000102.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['336',"Methods","topic_0000000000000100_methods--.html"],['338',"Insert Method","topic_0000000000000102.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['336',"Methods","topic_0000000000000100_methods--.html"],['338',"Insert Method","topic_0000000000000102.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000103.html.js b/Database/VSdoc/toc--/topic_0000000000000103.html.js index dbccad5a..0b6e461a 100644 --- a/Database/VSdoc/toc--/topic_0000000000000103.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000103.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['336',"Methods","topic_0000000000000100_methods--.html"],['341',"Update Method","topic_0000000000000103.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['336',"Methods","topic_0000000000000100_methods--.html"],['341',"Update Method","topic_0000000000000103.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000104.html.js b/Database/VSdoc/toc--/topic_0000000000000104.html.js index bad2574e..698d5dac 100644 --- a/Database/VSdoc/toc--/topic_0000000000000104.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000104.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['336',"Methods","topic_0000000000000100_methods--.html"],['337',"Delete Method","topic_0000000000000104.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['336',"Methods","topic_0000000000000100_methods--.html"],['337',"Delete Method","topic_0000000000000104.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000105.html.js b/Database/VSdoc/toc--/topic_0000000000000105.html.js index a0fc4a39..02299659 100644 --- a/Database/VSdoc/toc--/topic_0000000000000105.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000105.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['336',"Methods","topic_0000000000000100_methods--.html"],['340',"SelectOne Method","topic_0000000000000105.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['336',"Methods","topic_0000000000000100_methods--.html"],['340',"SelectOne Method","topic_0000000000000105.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000106.html.js b/Database/VSdoc/toc--/topic_0000000000000106.html.js index 2c21a0d6..6c4d4068 100644 --- a/Database/VSdoc/toc--/topic_0000000000000106.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000106.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['336',"Methods","topic_0000000000000100_methods--.html"],['339',"SelectAll Method","topic_0000000000000106.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['336',"Methods","topic_0000000000000100_methods--.html"],['339',"SelectAll Method","topic_0000000000000106.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000107.html.js b/Database/VSdoc/toc--/topic_0000000000000107.html.js index a4f97d90..4811afaf 100644 --- a/Database/VSdoc/toc--/topic_0000000000000107.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000107.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['320',"iMitarbeiternr Property","topic_0000000000000107.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['320',"iMitarbeiternr Property","topic_0000000000000107.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000108.html.js b/Database/VSdoc/toc--/topic_0000000000000108.html.js index 0e78fe55..85b7f8c2 100644 --- a/Database/VSdoc/toc--/topic_0000000000000108.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000108.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['335',"sVorname Property","topic_0000000000000108.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['335',"sVorname Property","topic_0000000000000108.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000109.html.js b/Database/VSdoc/toc--/topic_0000000000000109.html.js index b3e2fad3..5d336725 100644 --- a/Database/VSdoc/toc--/topic_0000000000000109.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000109.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['330',"sName Property","topic_0000000000000109.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['330',"sName Property","topic_0000000000000109.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000010A.html.js b/Database/VSdoc/toc--/topic_000000000000010A.html.js index 445186ab..e3edf791 100644 --- a/Database/VSdoc/toc--/topic_000000000000010A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000010A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['328',"sKurzzeichen Property","topic_000000000000010A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['328',"sKurzzeichen Property","topic_000000000000010A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000010B.html.js b/Database/VSdoc/toc--/topic_000000000000010B.html.js index 71bb5279..1f60fabf 100644 --- a/Database/VSdoc/toc--/topic_000000000000010B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000010B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['324',"sAnrede Property","topic_000000000000010B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['324',"sAnrede Property","topic_000000000000010B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000010C.html.js b/Database/VSdoc/toc--/topic_000000000000010C.html.js index c08ac3bf..47a7920e 100644 --- a/Database/VSdoc/toc--/topic_000000000000010C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000010C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['333',"sTgnummer Property","topic_000000000000010C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['333',"sTgnummer Property","topic_000000000000010C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000010D.html.js b/Database/VSdoc/toc--/topic_000000000000010D.html.js index cbb918f0..b139d5d8 100644 --- a/Database/VSdoc/toc--/topic_000000000000010D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000010D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['325',"sEmail Property","topic_000000000000010D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['325',"sEmail Property","topic_000000000000010D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000010E.html.js b/Database/VSdoc/toc--/topic_000000000000010E.html.js index e5d08a7c..4667864a 100644 --- a/Database/VSdoc/toc--/topic_000000000000010E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000010E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['326',"sFax Property","topic_000000000000010E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['326',"sFax Property","topic_000000000000010E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000010F.html.js b/Database/VSdoc/toc--/topic_000000000000010F.html.js index 87ce6e28..b54641bd 100644 --- a/Database/VSdoc/toc--/topic_000000000000010F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000010F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['332',"sTelefon Property","topic_000000000000010F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['332',"sTelefon Property","topic_000000000000010F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000110.html.js b/Database/VSdoc/toc--/topic_0000000000000110.html.js index a3819526..00a95424 100644 --- a/Database/VSdoc/toc--/topic_0000000000000110.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000110.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['334',"sUnterschrift_text Property","topic_0000000000000110.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['334',"sUnterschrift_text Property","topic_0000000000000110.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000111.html.js b/Database/VSdoc/toc--/topic_0000000000000111.html.js index 50442d89..b36ca9c8 100644 --- a/Database/VSdoc/toc--/topic_0000000000000111.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000111.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['317',"iFunktionnr Property","topic_0000000000000111.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['317',"iFunktionnr Property","topic_0000000000000111.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000112.html.js b/Database/VSdoc/toc--/topic_0000000000000112.html.js index 28ac5f9a..a1d50870 100644 --- a/Database/VSdoc/toc--/topic_0000000000000112.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000112.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['323',"iSprache Property","topic_0000000000000112.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['323',"iSprache Property","topic_0000000000000112.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000113.html.js b/Database/VSdoc/toc--/topic_0000000000000113.html.js index a1b45453..0e56135d 100644 --- a/Database/VSdoc/toc--/topic_0000000000000113.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000113.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['316',"iFuermandant Property","topic_0000000000000113.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['316',"iFuermandant Property","topic_0000000000000113.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000114.html.js b/Database/VSdoc/toc--/topic_0000000000000114.html.js index 0d603efb..6341cfc4 100644 --- a/Database/VSdoc/toc--/topic_0000000000000114.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000114.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['312',"bShowtip Property","topic_0000000000000114.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['312',"bShowtip Property","topic_0000000000000114.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000115.html.js b/Database/VSdoc/toc--/topic_0000000000000115.html.js index ef264989..99562d1b 100644 --- a/Database/VSdoc/toc--/topic_0000000000000115.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000115.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['322',"iPartnernr Property","topic_0000000000000115.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['322',"iPartnernr Property","topic_0000000000000115.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000116.html.js b/Database/VSdoc/toc--/topic_0000000000000116.html.js index a08599fc..cb642393 100644 --- a/Database/VSdoc/toc--/topic_0000000000000116.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000116.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['319',"iMandantnr Property","topic_0000000000000116.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['319',"iMandantnr Property","topic_0000000000000116.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000117.html.js b/Database/VSdoc/toc--/topic_0000000000000117.html.js index b3466ce6..9725c7fa 100644 --- a/Database/VSdoc/toc--/topic_0000000000000117.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000117.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['304',"bAktiv Property","topic_0000000000000117.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['304',"bAktiv Property","topic_0000000000000117.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000118.html.js b/Database/VSdoc/toc--/topic_0000000000000118.html.js index da0d0ad3..0d3bd570 100644 --- a/Database/VSdoc/toc--/topic_0000000000000118.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000118.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['313',"daErstellt_am Property","topic_0000000000000118.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['313',"daErstellt_am Property","topic_0000000000000118.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000119.html.js b/Database/VSdoc/toc--/topic_0000000000000119.html.js index 9899102e..fa86a193 100644 --- a/Database/VSdoc/toc--/topic_0000000000000119.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000119.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['314',"daMutiert_am Property","topic_0000000000000119.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['314',"daMutiert_am Property","topic_0000000000000119.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000011A.html.js b/Database/VSdoc/toc--/topic_000000000000011A.html.js index 2c83a523..4ae6b375 100644 --- a/Database/VSdoc/toc--/topic_000000000000011A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000011A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['321',"iMutierer Property","topic_000000000000011A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['321',"iMutierer Property","topic_000000000000011A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000011B.html.js b/Database/VSdoc/toc--/topic_000000000000011B.html.js index bebc9456..8ca643d5 100644 --- a/Database/VSdoc/toc--/topic_000000000000011B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000011B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['311',"bMailempfang Property","topic_000000000000011B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['311',"bMailempfang Property","topic_000000000000011B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000011C.html.js b/Database/VSdoc/toc--/topic_000000000000011C.html.js index d02760f0..19dcbfa4 100644 --- a/Database/VSdoc/toc--/topic_000000000000011C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000011C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['305',"bEdokaMesasge Property","topic_000000000000011C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['305',"bEdokaMesasge Property","topic_000000000000011C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000011D.html.js b/Database/VSdoc/toc--/topic_000000000000011D.html.js index 302c2685..9cd12c6d 100644 --- a/Database/VSdoc/toc--/topic_000000000000011D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000011D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['327',"sFunktion Property","topic_000000000000011D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['327',"sFunktion Property","topic_000000000000011D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000011E.html.js b/Database/VSdoc/toc--/topic_000000000000011E.html.js index 7c39e031..ad622045 100644 --- a/Database/VSdoc/toc--/topic_000000000000011E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000011E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['309',"bMailDirektVersenden Property","topic_000000000000011E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['309',"bMailDirektVersenden Property","topic_000000000000011E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000011F.html.js b/Database/VSdoc/toc--/topic_000000000000011F.html.js index 9c720f07..4beab9e5 100644 --- a/Database/VSdoc/toc--/topic_000000000000011F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000011F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['331',"sRang Property","topic_000000000000011F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['331',"sRang Property","topic_000000000000011F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000120.html.js b/Database/VSdoc/toc--/topic_0000000000000120.html.js index f6a83ee1..37eed5f5 100644 --- a/Database/VSdoc/toc--/topic_0000000000000120.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000120.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['310',"bMailDokumentrueckgang Property","topic_0000000000000120.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['310',"bMailDokumentrueckgang Property","topic_0000000000000120.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000121.html.js b/Database/VSdoc/toc--/topic_0000000000000121.html.js index c1a819f6..be15cc1d 100644 --- a/Database/VSdoc/toc--/topic_0000000000000121.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000121.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['318',"iKlassifizierung Property","topic_0000000000000121.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['318',"iKlassifizierung Property","topic_0000000000000121.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000122.html.js b/Database/VSdoc/toc--/topic_0000000000000122.html.js index b843d356..47146753 100644 --- a/Database/VSdoc/toc--/topic_0000000000000122.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000122.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['306',"bEdoka_mail Property","topic_0000000000000122.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['306',"bEdoka_mail Property","topic_0000000000000122.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000123.html.js b/Database/VSdoc/toc--/topic_0000000000000123.html.js index b3054eea..e7f95955 100644 --- a/Database/VSdoc/toc--/topic_0000000000000123.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000123.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['308',"bJournalisierung Property","topic_0000000000000123.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['308',"bJournalisierung Property","topic_0000000000000123.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000124.html.js b/Database/VSdoc/toc--/topic_0000000000000124.html.js index a968723a..17dbc9ef 100644 --- a/Database/VSdoc/toc--/topic_0000000000000124.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000124.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['307',"bGebMeldung Property","topic_0000000000000124.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['307',"bGebMeldung Property","topic_0000000000000124.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000125.html.js b/Database/VSdoc/toc--/topic_0000000000000125.html.js index 66f57345..9904d158 100644 --- a/Database/VSdoc/toc--/topic_0000000000000125.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000125.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['329',"sMail_1 Property","topic_0000000000000125.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['329',"sMail_1 Property","topic_0000000000000125.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000126.html.js b/Database/VSdoc/toc--/topic_0000000000000126.html.js index 36ff9d52..2cfbc3c8 100644 --- a/Database/VSdoc/toc--/topic_0000000000000126.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000126.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['315',"daValidto Property","topic_0000000000000126.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['301',"clsMitarbeiter Class","topic_0000000000000100.html"],['303',"Properties","topic_0000000000000100_props--.html"],['315',"daValidto Property","topic_0000000000000126.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000127.html.js b/Database/VSdoc/toc--/topic_0000000000000127.html.js index 64f2f179..3b99fcc7 100644 --- a/Database/VSdoc/toc--/topic_0000000000000127.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000127.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['342',"clsMyKey_Tabelle Class","topic_0000000000000127.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['342',"clsMyKey_Tabelle Class","topic_0000000000000127.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000127_methods--.html.js b/Database/VSdoc/toc--/topic_0000000000000127_methods--.html.js index 67ab75c8..54c8e71b 100644 --- a/Database/VSdoc/toc--/topic_0000000000000127_methods--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000127_methods--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['342',"clsMyKey_Tabelle Class","topic_0000000000000127.html"],['343',"Methods","topic_0000000000000127_methods--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['342',"clsMyKey_Tabelle Class","topic_0000000000000127.html"],['343',"Methods","topic_0000000000000127_methods--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000127_vars--.html.js b/Database/VSdoc/toc--/topic_0000000000000127_vars--.html.js index 2a727091..88fde77c 100644 --- a/Database/VSdoc/toc--/topic_0000000000000127_vars--.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000127_vars--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['342',"clsMyKey_Tabelle Class","topic_0000000000000127.html"],['345',"Fields","topic_0000000000000127_vars--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['342',"clsMyKey_Tabelle Class","topic_0000000000000127.html"],['345',"Fields","topic_0000000000000127_vars--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000128.html.js b/Database/VSdoc/toc--/topic_0000000000000128.html.js index da8d72b7..28ae126b 100644 --- a/Database/VSdoc/toc--/topic_0000000000000128.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000128.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['342',"clsMyKey_Tabelle Class","topic_0000000000000127.html"],['345',"Fields","topic_0000000000000127_vars--.html"],['346',"connectionstring Field","topic_0000000000000128.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['342',"clsMyKey_Tabelle Class","topic_0000000000000127.html"],['345',"Fields","topic_0000000000000127_vars--.html"],['346',"connectionstring Field","topic_0000000000000128.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000129.html.js b/Database/VSdoc/toc--/topic_0000000000000129.html.js index fb4d6bcd..948deb84 100644 --- a/Database/VSdoc/toc--/topic_0000000000000129.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000129.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['342',"clsMyKey_Tabelle Class","topic_0000000000000127.html"],['343',"Methods","topic_0000000000000127_methods--.html"],['344',"get_dbkey Method","topic_0000000000000129.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['342',"clsMyKey_Tabelle Class","topic_0000000000000127.html"],['343',"Methods","topic_0000000000000127_methods--.html"],['344',"get_dbkey Method","topic_0000000000000129.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000012A.html.js b/Database/VSdoc/toc--/topic_000000000000012A.html.js index 6545374c..d0d8e361 100644 --- a/Database/VSdoc/toc--/topic_000000000000012A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000012A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000012A_methods--.html.js b/Database/VSdoc/toc--/topic_000000000000012A_methods--.html.js index 4073756f..bd6e4afa 100644 --- a/Database/VSdoc/toc--/topic_000000000000012A_methods--.html.js +++ b/Database/VSdoc/toc--/topic_000000000000012A_methods--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['406',"Methods","topic_000000000000012A_methods--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['406',"Methods","topic_000000000000012A_methods--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000012A_props--.html.js b/Database/VSdoc/toc--/topic_000000000000012A_props--.html.js index bbf0c859..fbd674cb 100644 --- a/Database/VSdoc/toc--/topic_000000000000012A_props--.html.js +++ b/Database/VSdoc/toc--/topic_000000000000012A_props--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000012B.html.js b/Database/VSdoc/toc--/topic_000000000000012B.html.js index b74edfe9..b87e06b7 100644 --- a/Database/VSdoc/toc--/topic_000000000000012B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000012B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['348',"clsPartner Constructor","topic_000000000000012B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['348',"clsPartner Constructor","topic_000000000000012B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000012C.html.js b/Database/VSdoc/toc--/topic_000000000000012C.html.js index 6da9f942..d89743bb 100644 --- a/Database/VSdoc/toc--/topic_000000000000012C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000012C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['406',"Methods","topic_000000000000012A_methods--.html"],['408',"Insert Method","topic_000000000000012C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['406',"Methods","topic_000000000000012A_methods--.html"],['408',"Insert Method","topic_000000000000012C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000012D.html.js b/Database/VSdoc/toc--/topic_000000000000012D.html.js index 30cf3884..1b7d5f03 100644 --- a/Database/VSdoc/toc--/topic_000000000000012D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000012D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['406',"Methods","topic_000000000000012A_methods--.html"],['411',"Update Method","topic_000000000000012D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['406',"Methods","topic_000000000000012A_methods--.html"],['411',"Update Method","topic_000000000000012D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000012E.html.js b/Database/VSdoc/toc--/topic_000000000000012E.html.js index c4d7bb3a..caae87f7 100644 --- a/Database/VSdoc/toc--/topic_000000000000012E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000012E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['406',"Methods","topic_000000000000012A_methods--.html"],['407',"Delete Method","topic_000000000000012E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['406',"Methods","topic_000000000000012A_methods--.html"],['407',"Delete Method","topic_000000000000012E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000012F.html.js b/Database/VSdoc/toc--/topic_000000000000012F.html.js index 37a027a6..cca62fa4 100644 --- a/Database/VSdoc/toc--/topic_000000000000012F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000012F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['406',"Methods","topic_000000000000012A_methods--.html"],['410',"SelectOne Method","topic_000000000000012F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['406',"Methods","topic_000000000000012A_methods--.html"],['410',"SelectOne Method","topic_000000000000012F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000130.html.js b/Database/VSdoc/toc--/topic_0000000000000130.html.js index 1773ee96..d4b8980a 100644 --- a/Database/VSdoc/toc--/topic_0000000000000130.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000130.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['406',"Methods","topic_000000000000012A_methods--.html"],['409',"SelectAll Method","topic_0000000000000130.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['406',"Methods","topic_000000000000012A_methods--.html"],['409',"SelectAll Method","topic_0000000000000130.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000131.html.js b/Database/VSdoc/toc--/topic_0000000000000131.html.js index 334ffa99..1dac338b 100644 --- a/Database/VSdoc/toc--/topic_0000000000000131.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000131.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['379',"sIDMSG00 Property","topic_0000000000000131.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['379',"sIDMSG00 Property","topic_0000000000000131.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000132.html.js b/Database/VSdoc/toc--/topic_0000000000000132.html.js index 256cfc42..0acc3766 100644 --- a/Database/VSdoc/toc--/topic_0000000000000132.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000132.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['378',"sDMMSG00 Property","topic_0000000000000132.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['378',"sDMMSG00 Property","topic_0000000000000132.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000133.html.js b/Database/VSdoc/toc--/topic_0000000000000133.html.js index 14fd9481..40442d50 100644 --- a/Database/VSdoc/toc--/topic_0000000000000133.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000133.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['405',"sZTMSG00 Property","topic_0000000000000133.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['405',"sZTMSG00 Property","topic_0000000000000133.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000134.html.js b/Database/VSdoc/toc--/topic_0000000000000134.html.js index 9c39c5d4..6c70ee63 100644 --- a/Database/VSdoc/toc--/topic_0000000000000134.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000134.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['371',"sBEPGM00 Property","topic_0000000000000134.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['371',"sBEPGM00 Property","topic_0000000000000134.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000135.html.js b/Database/VSdoc/toc--/topic_0000000000000135.html.js index ddbd8766..264b1930 100644 --- a/Database/VSdoc/toc--/topic_0000000000000135.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000135.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['374',"sCDBNK00 Property","topic_0000000000000135.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['374',"sCDBNK00 Property","topic_0000000000000135.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000136.html.js b/Database/VSdoc/toc--/topic_0000000000000136.html.js index 4b027e3f..924615e7 100644 --- a/Database/VSdoc/toc--/topic_0000000000000136.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000136.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['364',"iNRPAR00 Property","topic_0000000000000136.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['364',"iNRPAR00 Property","topic_0000000000000136.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000137.html.js b/Database/VSdoc/toc--/topic_0000000000000137.html.js index 8dc413f8..6ed2fb1d 100644 --- a/Database/VSdoc/toc--/topic_0000000000000137.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000137.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['372',"sBKPAR00 Property","topic_0000000000000137.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['372',"sBKPAR00 Property","topic_0000000000000137.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000138.html.js b/Database/VSdoc/toc--/topic_0000000000000138.html.js index 56865926..c29d15ff 100644 --- a/Database/VSdoc/toc--/topic_0000000000000138.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000138.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['362',"iNRFOG012 Property","topic_0000000000000138.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['362',"iNRFOG012 Property","topic_0000000000000138.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000139.html.js b/Database/VSdoc/toc--/topic_0000000000000139.html.js index f7a569bf..140d1b95 100644 --- a/Database/VSdoc/toc--/topic_0000000000000139.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000139.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['368',"sBEBAN012 Property","topic_0000000000000139.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['368',"sBEBAN012 Property","topic_0000000000000139.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000013A.html.js b/Database/VSdoc/toc--/topic_000000000000013A.html.js index 39ef0d05..be373279 100644 --- a/Database/VSdoc/toc--/topic_000000000000013A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000013A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['383',"sNRFOG022 Property","topic_000000000000013A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['383',"sNRFOG022 Property","topic_000000000000013A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000013B.html.js b/Database/VSdoc/toc--/topic_000000000000013B.html.js index e16dbcdb..c4720f3b 100644 --- a/Database/VSdoc/toc--/topic_000000000000013B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000013B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['369',"sBEBAN022 Property","topic_000000000000013B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['369',"sBEBAN022 Property","topic_000000000000013B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000013C.html.js b/Database/VSdoc/toc--/topic_000000000000013C.html.js index bf37d4db..4df93718 100644 --- a/Database/VSdoc/toc--/topic_000000000000013C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000013C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['390',"sTXADZ012 Property","topic_000000000000013C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['390',"sTXADZ012 Property","topic_000000000000013C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000013D.html.js b/Database/VSdoc/toc--/topic_000000000000013D.html.js index e17cf370..ce2a3d78 100644 --- a/Database/VSdoc/toc--/topic_000000000000013D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000013D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['392',"sTXADZ022 Property","topic_000000000000013D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['392',"sTXADZ022 Property","topic_000000000000013D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000013E.html.js b/Database/VSdoc/toc--/topic_000000000000013E.html.js index 37266dff..96eb0f5c 100644 --- a/Database/VSdoc/toc--/topic_000000000000013E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000013E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['394',"sTXADZ032 Property","topic_000000000000013E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['394',"sTXADZ032 Property","topic_000000000000013E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000013F.html.js b/Database/VSdoc/toc--/topic_000000000000013F.html.js index c69188ad..92c0ab96 100644 --- a/Database/VSdoc/toc--/topic_000000000000013F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000013F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['396',"sTXADZ042 Property","topic_000000000000013F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['396',"sTXADZ042 Property","topic_000000000000013F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000140.html.js b/Database/VSdoc/toc--/topic_0000000000000140.html.js index 8ea467a7..2a55c110 100644 --- a/Database/VSdoc/toc--/topic_0000000000000140.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000140.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['398',"sTXADZ052 Property","topic_0000000000000140.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['398',"sTXADZ052 Property","topic_0000000000000140.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000141.html.js b/Database/VSdoc/toc--/topic_0000000000000141.html.js index 53a53ccf..2dfee1f2 100644 --- a/Database/VSdoc/toc--/topic_0000000000000141.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000141.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['400',"sTXADZ062 Property","topic_0000000000000141.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['400',"sTXADZ062 Property","topic_0000000000000141.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000142.html.js b/Database/VSdoc/toc--/topic_0000000000000142.html.js index 796d0779..1287ea6d 100644 --- a/Database/VSdoc/toc--/topic_0000000000000142.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000142.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['402',"sTXADZ072 Property","topic_0000000000000142.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['402',"sTXADZ072 Property","topic_0000000000000142.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000143.html.js b/Database/VSdoc/toc--/topic_0000000000000143.html.js index 79942707..3cd9dcaf 100644 --- a/Database/VSdoc/toc--/topic_0000000000000143.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000143.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['385',"sNRPARAD Property","topic_0000000000000143.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['385',"sNRPARAD Property","topic_0000000000000143.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000144.html.js b/Database/VSdoc/toc--/topic_0000000000000144.html.js index 1a6268bb..8f6ee77a 100644 --- a/Database/VSdoc/toc--/topic_0000000000000144.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000144.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['381',"sNRADR00 Property","topic_0000000000000144.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['381',"sNRADR00 Property","topic_0000000000000144.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000145.html.js b/Database/VSdoc/toc--/topic_0000000000000145.html.js index 809a388e..9c40b6d1 100644 --- a/Database/VSdoc/toc--/topic_0000000000000145.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000145.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['382',"sNRFOG011 Property","topic_0000000000000145.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['382',"sNRFOG011 Property","topic_0000000000000145.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000146.html.js b/Database/VSdoc/toc--/topic_0000000000000146.html.js index 68f7c263..37991ec5 100644 --- a/Database/VSdoc/toc--/topic_0000000000000146.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000146.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['367',"sBEBAN011 Property","topic_0000000000000146.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['367',"sBEBAN011 Property","topic_0000000000000146.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000147.html.js b/Database/VSdoc/toc--/topic_0000000000000147.html.js index 233410f7..071f9b5e 100644 --- a/Database/VSdoc/toc--/topic_0000000000000147.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000147.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['384',"sNRFOG21 Property","topic_0000000000000147.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['384',"sNRFOG21 Property","topic_0000000000000147.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000148.html.js b/Database/VSdoc/toc--/topic_0000000000000148.html.js index 031038d3..4f046472 100644 --- a/Database/VSdoc/toc--/topic_0000000000000148.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000148.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['370',"sBEBAN21 Property","topic_0000000000000148.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['370',"sBEBAN21 Property","topic_0000000000000148.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000149.html.js b/Database/VSdoc/toc--/topic_0000000000000149.html.js index df13d090..eac98877 100644 --- a/Database/VSdoc/toc--/topic_0000000000000149.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000149.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['389',"sTXADZ011 Property","topic_0000000000000149.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['389',"sTXADZ011 Property","topic_0000000000000149.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000014A.html.js b/Database/VSdoc/toc--/topic_000000000000014A.html.js index 88ca5e65..e6f4c321 100644 --- a/Database/VSdoc/toc--/topic_000000000000014A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000014A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['391',"sTXADZ021 Property","topic_000000000000014A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['391',"sTXADZ021 Property","topic_000000000000014A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000014B.html.js b/Database/VSdoc/toc--/topic_000000000000014B.html.js index 0c941e7b..f6787473 100644 --- a/Database/VSdoc/toc--/topic_000000000000014B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000014B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['393',"sTXADZ031 Property","topic_000000000000014B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['393',"sTXADZ031 Property","topic_000000000000014B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000014C.html.js b/Database/VSdoc/toc--/topic_000000000000014C.html.js index 7c352b82..7f93ef04 100644 --- a/Database/VSdoc/toc--/topic_000000000000014C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000014C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['395',"sTXADZ041 Property","topic_000000000000014C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['395',"sTXADZ041 Property","topic_000000000000014C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000014D.html.js b/Database/VSdoc/toc--/topic_000000000000014D.html.js index 38adc645..f285fae6 100644 --- a/Database/VSdoc/toc--/topic_000000000000014D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000014D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['397',"sTXADZ051 Property","topic_000000000000014D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['397',"sTXADZ051 Property","topic_000000000000014D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000014E.html.js b/Database/VSdoc/toc--/topic_000000000000014E.html.js index 79a6c675..b37c4e62 100644 --- a/Database/VSdoc/toc--/topic_000000000000014E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000014E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['399',"sTXADZ061 Property","topic_000000000000014E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['399',"sTXADZ061 Property","topic_000000000000014E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000014F.html.js b/Database/VSdoc/toc--/topic_000000000000014F.html.js index 743eb43f..3197ed4e 100644 --- a/Database/VSdoc/toc--/topic_000000000000014F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000014F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['401',"sTXADZ071 Property","topic_000000000000014F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['401',"sTXADZ071 Property","topic_000000000000014F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000150.html.js b/Database/VSdoc/toc--/topic_0000000000000150.html.js index 22695cb9..2763fa4f 100644 --- a/Database/VSdoc/toc--/topic_0000000000000150.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000150.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['373',"sCDBAL00 Property","topic_0000000000000150.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['373',"sCDBAL00 Property","topic_0000000000000150.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000151.html.js b/Database/VSdoc/toc--/topic_0000000000000151.html.js index 5ef268ee..36278fd2 100644 --- a/Database/VSdoc/toc--/topic_0000000000000151.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000151.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['377',"sCDVIG00 Property","topic_0000000000000151.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['377',"sCDVIG00 Property","topic_0000000000000151.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000152.html.js b/Database/VSdoc/toc--/topic_0000000000000152.html.js index b5429130..5f78bb63 100644 --- a/Database/VSdoc/toc--/topic_0000000000000152.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000152.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['387',"sSAVRS00 Property","topic_0000000000000152.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['387',"sSAVRS00 Property","topic_0000000000000152.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000153.html.js b/Database/VSdoc/toc--/topic_0000000000000153.html.js index 151d97e8..d9fe8ac1 100644 --- a/Database/VSdoc/toc--/topic_0000000000000153.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000153.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['388',"sTSMUT00 Property","topic_0000000000000153.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['388',"sTSMUT00 Property","topic_0000000000000153.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000154.html.js b/Database/VSdoc/toc--/topic_0000000000000154.html.js index 1c24216c..8067297d 100644 --- a/Database/VSdoc/toc--/topic_0000000000000154.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000154.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['404',"sVDMUTER Property","topic_0000000000000154.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['404',"sVDMUTER Property","topic_0000000000000154.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000155.html.js b/Database/VSdoc/toc--/topic_0000000000000155.html.js index 6ed974bd..a7f0540a 100644 --- a/Database/VSdoc/toc--/topic_0000000000000155.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000155.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['403',"sTXRes00 Property","topic_0000000000000155.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['403',"sTXRes00 Property","topic_0000000000000155.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000156.html.js b/Database/VSdoc/toc--/topic_0000000000000156.html.js index a521746b..a7f37636 100644 --- a/Database/VSdoc/toc--/topic_0000000000000156.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000156.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['353',"bSaldiert Property","topic_0000000000000156.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['353',"bSaldiert Property","topic_0000000000000156.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000157.html.js b/Database/VSdoc/toc--/topic_0000000000000157.html.js index c479eea5..7cea1a20 100644 --- a/Database/VSdoc/toc--/topic_0000000000000157.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000157.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['357',"iAZEPL00 Property","topic_0000000000000157.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['357',"iAZEPL00 Property","topic_0000000000000157.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000158.html.js b/Database/VSdoc/toc--/topic_0000000000000158.html.js index cdea6f7f..9e467d80 100644 --- a/Database/VSdoc/toc--/topic_0000000000000158.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000158.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['351',"bCDVSA00 Property","topic_0000000000000158.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['351',"bCDVSA00 Property","topic_0000000000000158.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000159.html.js b/Database/VSdoc/toc--/topic_0000000000000159.html.js index f43eccd2..84796945 100644 --- a/Database/VSdoc/toc--/topic_0000000000000159.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000159.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['356',"daValidto Property","topic_0000000000000159.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['356',"daValidto Property","topic_0000000000000159.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000015A.html.js b/Database/VSdoc/toc--/topic_000000000000015A.html.js index 6c1f6b00..7a31b39f 100644 --- a/Database/VSdoc/toc--/topic_000000000000015A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000015A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['361',"iNRDOM00 Property","topic_000000000000015A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['361',"iNRDOM00 Property","topic_000000000000015A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000015B.html.js b/Database/VSdoc/toc--/topic_000000000000015B.html.js index 19a11abc..d59bfe68 100644 --- a/Database/VSdoc/toc--/topic_000000000000015B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000015B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['363',"iNRNAT01 Property","topic_000000000000015B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['363',"iNRNAT01 Property","topic_000000000000015B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000015C.html.js b/Database/VSdoc/toc--/topic_000000000000015C.html.js index 1fd96a1b..3e345e13 100644 --- a/Database/VSdoc/toc--/topic_000000000000015C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000015C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['354',"daGebGruendDat Property","topic_000000000000015C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['354',"daGebGruendDat Property","topic_000000000000015C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000015D.html.js b/Database/VSdoc/toc--/topic_000000000000015D.html.js index 7ad46b08..f172949f 100644 --- a/Database/VSdoc/toc--/topic_000000000000015D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000015D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['375',"sCDNOG01 Property","topic_000000000000015D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['375',"sCDNOG01 Property","topic_000000000000015D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000015E.html.js b/Database/VSdoc/toc--/topic_000000000000015E.html.js index 6c062210..1733f57a 100644 --- a/Database/VSdoc/toc--/topic_000000000000015E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000015E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['376',"sCDPAW00 Property","topic_000000000000015E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['376',"sCDPAW00 Property","topic_000000000000015E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000015F.html.js b/Database/VSdoc/toc--/topic_000000000000015F.html.js index 2f43306e..87f283b9 100644 --- a/Database/VSdoc/toc--/topic_000000000000015F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000015F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['359',"iNRBEU01 Property","topic_000000000000015F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['359',"iNRBEU01 Property","topic_000000000000015F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000160.html.js b/Database/VSdoc/toc--/topic_0000000000000160.html.js index 6d2642ad..eddcb058 100644 --- a/Database/VSdoc/toc--/topic_0000000000000160.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000160.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['360',"iNRBEU02 Property","topic_0000000000000160.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['360',"iNRBEU02 Property","topic_0000000000000160.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000161.html.js b/Database/VSdoc/toc--/topic_0000000000000161.html.js index 66092355..0edfc133 100644 --- a/Database/VSdoc/toc--/topic_0000000000000161.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000161.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['380',"sKurzname_Stamm Property","topic_0000000000000161.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['380',"sKurzname_Stamm Property","topic_0000000000000161.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000162.html.js b/Database/VSdoc/toc--/topic_0000000000000162.html.js index da20d754..96a5ce0a 100644 --- a/Database/VSdoc/toc--/topic_0000000000000162.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000162.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['352',"bIsPerson Property","topic_0000000000000162.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['352',"bIsPerson Property","topic_0000000000000162.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000163.html.js b/Database/VSdoc/toc--/topic_0000000000000163.html.js index 6c4f7342..d72bedd6 100644 --- a/Database/VSdoc/toc--/topic_0000000000000163.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000163.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['350',"bBoersenkotiert Property","topic_0000000000000163.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['350',"bBoersenkotiert Property","topic_0000000000000163.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000164.html.js b/Database/VSdoc/toc--/topic_0000000000000164.html.js index 18373364..359e5944 100644 --- a/Database/VSdoc/toc--/topic_0000000000000164.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000164.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['358',"iLegal_form_id Property","topic_0000000000000164.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['358',"iLegal_form_id Property","topic_0000000000000164.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000165.html.js b/Database/VSdoc/toc--/topic_0000000000000165.html.js index 31e55163..d5f3f374 100644 --- a/Database/VSdoc/toc--/topic_0000000000000165.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000165.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['366',"iSector_id Property","topic_0000000000000165.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['366',"iSector_id Property","topic_0000000000000165.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000166.html.js b/Database/VSdoc/toc--/topic_0000000000000166.html.js index 7c160502..a9cae70b 100644 --- a/Database/VSdoc/toc--/topic_0000000000000166.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000166.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['365',"iRate_intl_id Property","topic_0000000000000166.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['365',"iRate_intl_id Property","topic_0000000000000166.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000167.html.js b/Database/VSdoc/toc--/topic_0000000000000167.html.js index 4f474020..b99e1970 100644 --- a/Database/VSdoc/toc--/topic_0000000000000167.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000167.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['355',"daRate_intl_date Property","topic_0000000000000167.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['355',"daRate_intl_date Property","topic_0000000000000167.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000168.html.js b/Database/VSdoc/toc--/topic_0000000000000168.html.js index 0cf49edc..3c27c5d8 100644 --- a/Database/VSdoc/toc--/topic_0000000000000168.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000168.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['386',"sName_formated Property","topic_0000000000000168.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['36',"edoka_dms Namespace","topic_0000000000000000.html"],['347',"clsPartner Class","topic_000000000000012A.html"],['349',"Properties","topic_000000000000012A_props--.html"],['386',"sName_formated Property","topic_0000000000000168.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000169.html.js b/Database/VSdoc/toc--/topic_0000000000000169.html.js index 0a789140..b62fcf2f 100644 --- a/Database/VSdoc/toc--/topic_0000000000000169.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000169.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000016A.html.js b/Database/VSdoc/toc--/topic_000000000000016A.html.js index c06d7284..75c468de 100644 --- a/Database/VSdoc/toc--/topic_000000000000016A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000016A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000016A_methods--.html.js b/Database/VSdoc/toc--/topic_000000000000016A_methods--.html.js index 710142f5..2375e9c8 100644 --- a/Database/VSdoc/toc--/topic_000000000000016A_methods--.html.js +++ b/Database/VSdoc/toc--/topic_000000000000016A_methods--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000016A_vars--.html.js b/Database/VSdoc/toc--/topic_000000000000016A_vars--.html.js index 1421be24..a5c9930d 100644 --- a/Database/VSdoc/toc--/topic_000000000000016A_vars--.html.js +++ b/Database/VSdoc/toc--/topic_000000000000016A_vars--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['33',"Fields","topic_000000000000016A_vars--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['33',"Fields","topic_000000000000016A_vars--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000016B.html.js b/Database/VSdoc/toc--/topic_000000000000016B.html.js index 1c79473e..aaf59b66 100644 --- a/Database/VSdoc/toc--/topic_000000000000016B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000016B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['33',"Fields","topic_000000000000016A_vars--.html"],['34',"connectionstring Field","topic_000000000000016B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['33',"Fields","topic_000000000000016A_vars--.html"],['34',"connectionstring Field","topic_000000000000016B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000016C.html.js b/Database/VSdoc/toc--/topic_000000000000016C.html.js index cc57d057..e349ce2c 100644 --- a/Database/VSdoc/toc--/topic_000000000000016C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000016C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['33',"Fields","topic_000000000000016A_vars--.html"],['35',"dsdaten Field","topic_000000000000016C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['33',"Fields","topic_000000000000016A_vars--.html"],['35',"dsdaten Field","topic_000000000000016C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000016D.html.js b/Database/VSdoc/toc--/topic_000000000000016D.html.js index 65de076a..cad97179 100644 --- a/Database/VSdoc/toc--/topic_000000000000016D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000016D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['6',"EDOKA_DB Constructor","topic_000000000000016D_overloads--.html"],['8',"EDOKA_DB(string) Constructor","topic_000000000000016D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['6',"DB Constructor","topic_000000000000016D_overloads--.html"],['8',"DB(string) Constructor","topic_000000000000016D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000016D_overloads--.html.js b/Database/VSdoc/toc--/topic_000000000000016D_overloads--.html.js index 87a79c36..a2debbdd 100644 --- a/Database/VSdoc/toc--/topic_000000000000016D_overloads--.html.js +++ b/Database/VSdoc/toc--/topic_000000000000016D_overloads--.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['6',"EDOKA_DB Constructor","topic_000000000000016D_overloads--.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['6',"DB Constructor","topic_000000000000016D_overloads--.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000016E.html.js b/Database/VSdoc/toc--/topic_000000000000016E.html.js index 076b2819..ba022385 100644 --- a/Database/VSdoc/toc--/topic_000000000000016E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000016E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['6',"EDOKA_DB Constructor","topic_000000000000016D_overloads--.html"],['7',"EDOKA_DB() Constructor","topic_000000000000016E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['6',"DB Constructor","topic_000000000000016D_overloads--.html"],['7',"DB() Constructor","topic_000000000000016E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000016F.html.js b/Database/VSdoc/toc--/topic_000000000000016F.html.js index 145705de..54e0a023 100644 --- a/Database/VSdoc/toc--/topic_000000000000016F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000016F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['29',"add_parameter Method","topic_000000000000016F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['29',"add_parameter Method","topic_000000000000016F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000170.html.js b/Database/VSdoc/toc--/topic_0000000000000170.html.js index 16baa5ac..680b35ea 100644 --- a/Database/VSdoc/toc--/topic_0000000000000170.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000170.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['30',"clear_parameter Method","topic_0000000000000170.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['30',"clear_parameter Method","topic_0000000000000170.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000171.html.js b/Database/VSdoc/toc--/topic_0000000000000171.html.js index 68081e9d..62a3bb1e 100644 --- a/Database/VSdoc/toc--/topic_0000000000000171.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000171.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['22',"Get_Tabledata Method","topic_0000000000000171.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['22',"Get_Tabledata Method","topic_0000000000000171.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000172.html.js b/Database/VSdoc/toc--/topic_0000000000000172.html.js index bc78d05d..b413aaf6 100644 --- a/Database/VSdoc/toc--/topic_0000000000000172.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000172.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['15',"Exec_SQL Method","topic_0000000000000172.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['15',"Exec_SQL Method","topic_0000000000000172.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000173.html.js b/Database/VSdoc/toc--/topic_0000000000000173.html.js index 907c30ea..c6bbb34f 100644 --- a/Database/VSdoc/toc--/topic_0000000000000173.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000173.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['28',"Update_Data Method","topic_0000000000000173.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['28',"Update_Data Method","topic_0000000000000173.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000174.html.js b/Database/VSdoc/toc--/topic_0000000000000174.html.js index 078fbcc9..04d97fe9 100644 --- a/Database/VSdoc/toc--/topic_0000000000000174.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000174.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['31',"get_dbkey Method","topic_0000000000000174.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['31',"get_dbkey Method","topic_0000000000000174.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000175.html.js b/Database/VSdoc/toc--/topic_0000000000000175.html.js index d23e4c0b..c5e73549 100644 --- a/Database/VSdoc/toc--/topic_0000000000000175.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000175.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['20',"Get_Mitarbeiternr Method","topic_0000000000000175.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['20',"Get_Mitarbeiternr Method","topic_0000000000000175.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000176.html.js b/Database/VSdoc/toc--/topic_0000000000000176.html.js index 6640b526..b6957d0d 100644 --- a/Database/VSdoc/toc--/topic_0000000000000176.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000176.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['23',"Get_Vorlage_By_DokumentID Method","topic_0000000000000176.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['23',"Get_Vorlage_By_DokumentID Method","topic_0000000000000176.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000177.html.js b/Database/VSdoc/toc--/topic_0000000000000177.html.js index ce845c9b..27e7a79e 100644 --- a/Database/VSdoc/toc--/topic_0000000000000177.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000177.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['32',"get_vorlage_to_file Method","topic_0000000000000177.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['32',"get_vorlage_to_file Method","topic_0000000000000177.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000178.html.js b/Database/VSdoc/toc--/topic_0000000000000178.html.js index 438535fe..f43abd48 100644 --- a/Database/VSdoc/toc--/topic_0000000000000178.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000178.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['17',"Get_ApplicationType_from_Vorlage Method","topic_0000000000000178.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['17',"Get_ApplicationType_from_Vorlage Method","topic_0000000000000178.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000179.html.js b/Database/VSdoc/toc--/topic_0000000000000179.html.js index 20a3e397..92760438 100644 --- a/Database/VSdoc/toc--/topic_0000000000000179.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000179.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['14',"Create_EDOKA_Doc Method","topic_0000000000000179.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['14',"Create_EDOKA_Doc Method","topic_0000000000000179.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000017A.html.js b/Database/VSdoc/toc--/topic_000000000000017A.html.js index bca4ca17..8b65f1ee 100644 --- a/Database/VSdoc/toc--/topic_000000000000017A.html.js +++ b/Database/VSdoc/toc--/topic_000000000000017A.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['12',"COLD_Index_Sichern Method","topic_000000000000017A.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['12',"COLD_Index_Sichern Method","topic_000000000000017A.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000017B.html.js b/Database/VSdoc/toc--/topic_000000000000017B.html.js index c176f706..bd017788 100644 --- a/Database/VSdoc/toc--/topic_000000000000017B.html.js +++ b/Database/VSdoc/toc--/topic_000000000000017B.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['27',"Status_Erstellen Method","topic_000000000000017B.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['27',"Status_Erstellen Method","topic_000000000000017B.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000017C.html.js b/Database/VSdoc/toc--/topic_000000000000017C.html.js index f3d7c6a5..fb402af4 100644 --- a/Database/VSdoc/toc--/topic_000000000000017C.html.js +++ b/Database/VSdoc/toc--/topic_000000000000017C.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['21',"Get_Partnerstruktur Method","topic_000000000000017C.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['21',"Get_Partnerstruktur Method","topic_000000000000017C.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000017D.html.js b/Database/VSdoc/toc--/topic_000000000000017D.html.js index d1b46f08..45f1ee4a 100644 --- a/Database/VSdoc/toc--/topic_000000000000017D.html.js +++ b/Database/VSdoc/toc--/topic_000000000000017D.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['19',"Get_Dokumente Method","topic_000000000000017D.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['19',"Get_Dokumente Method","topic_000000000000017D.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000017E.html.js b/Database/VSdoc/toc--/topic_000000000000017E.html.js index c90b79d7..7fab19aa 100644 --- a/Database/VSdoc/toc--/topic_000000000000017E.html.js +++ b/Database/VSdoc/toc--/topic_000000000000017E.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['16',"GetDocumentAsBase64 Method","topic_000000000000017E.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['16',"GetDocumentAsBase64 Method","topic_000000000000017E.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_000000000000017F.html.js b/Database/VSdoc/toc--/topic_000000000000017F.html.js index cf68a476..705306dd 100644 --- a/Database/VSdoc/toc--/topic_000000000000017F.html.js +++ b/Database/VSdoc/toc--/topic_000000000000017F.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['26',"Save_To_DB Method","topic_000000000000017F.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['26',"Save_To_DB Method","topic_000000000000017F.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000180.html.js b/Database/VSdoc/toc--/topic_0000000000000180.html.js index 1d42f660..178710cb 100644 --- a/Database/VSdoc/toc--/topic_0000000000000180.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000180.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['18',"Get_DokumentWertList Method","topic_0000000000000180.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['18',"Get_DokumentWertList Method","topic_0000000000000180.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000181.html.js b/Database/VSdoc/toc--/topic_0000000000000181.html.js index 0820f2d1..84ea965a 100644 --- a/Database/VSdoc/toc--/topic_0000000000000181.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000181.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['10',"BuildAllFieldsSQL Method","topic_0000000000000181.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['10',"BuildAllFieldsSQL Method","topic_0000000000000181.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000182.html.js b/Database/VSdoc/toc--/topic_0000000000000182.html.js index 28227c11..817efc2e 100644 --- a/Database/VSdoc/toc--/topic_0000000000000182.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000182.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['11',"BuildInsertSQL Method","topic_0000000000000182.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['11',"BuildInsertSQL Method","topic_0000000000000182.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000183.html.js b/Database/VSdoc/toc--/topic_0000000000000183.html.js index 1e3c8a86..7527dd8e 100644 --- a/Database/VSdoc/toc--/topic_0000000000000183.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000183.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['25',"InsertParameter Method","topic_0000000000000183.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['25',"InsertParameter Method","topic_0000000000000183.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000184.html.js b/Database/VSdoc/toc--/topic_0000000000000184.html.js index d728c76a..52c7ef3d 100644 --- a/Database/VSdoc/toc--/topic_0000000000000184.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000184.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['13',"CreateInsertCommand Method","topic_0000000000000184.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['13',"CreateInsertCommand Method","topic_0000000000000184.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000185.html.js b/Database/VSdoc/toc--/topic_0000000000000185.html.js index 3cd79869..06626286 100644 --- a/Database/VSdoc/toc--/topic_0000000000000185.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000185.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"],['4',"EDOKA_Database Namespace","topic_0000000000000169.html"],['5',"EDOKA_DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['24',"InsertDataRow Method","topic_0000000000000185.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"],['4',"Database Namespace","topic_0000000000000169.html"],['5',"DB Class","topic_000000000000016A.html"],['9',"Methods","topic_000000000000016A_methods--.html"],['24',"InsertDataRow Method","topic_0000000000000185.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/toc--/topic_0000000000000186.html.js b/Database/VSdoc/toc--/topic_0000000000000186.html.js index dbd29692..aa6281ec 100644 --- a/Database/VSdoc/toc--/topic_0000000000000186.html.js +++ b/Database/VSdoc/toc--/topic_0000000000000186.html.js @@ -1 +1 @@ -var breadcrumbs=[['-1',"",""],['2',"EDOKA_Database Reference","topic_0000000000000186.html"]]; \ No newline at end of file +var breadcrumbs=[['-1',"",""],['2',"Database Reference","topic_0000000000000186.html"]]; \ No newline at end of file diff --git a/Database/VSdoc/topic_0000000000000000.html b/Database/VSdoc/topic_0000000000000000.html index c25501ad..36a30e9e 100644 --- a/Database/VSdoc/topic_0000000000000000.html +++ b/Database/VSdoc/topic_0000000000000000.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
-
EDOKA_Database Reference
+
Database Reference
@@ -610,167 +610,11 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. - - - - - - - - - - - - - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - + @@ -861,36 +705,6 @@ Erstellt eine flache Kopie des aktuellen - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - @@ -918,63 +732,6 @@ Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. - - - - -
- - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- - @@ -998,24 +755,6 @@ inheritedMember -
- - -
- - - - - -
edoka_dms.clsConnectionProvider
- - -
-
diff --git a/Database/VSdoc/topic_0000000000000001_attached_props--.html b/Database/VSdoc/topic_0000000000000001_attached_props--.html index 3d345c7e..3b1baabc 100644 --- a/Database/VSdoc/topic_0000000000000001_attached_props--.html +++ b/Database/VSdoc/topic_0000000000000001_attached_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000001_events--.html b/Database/VSdoc/topic_0000000000000001_events--.html index 20401f19..c813e959 100644 --- a/Database/VSdoc/topic_0000000000000001_events--.html +++ b/Database/VSdoc/topic_0000000000000001_events--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000001_methods--.html b/Database/VSdoc/topic_0000000000000001_methods--.html index f591f16f..ce93513e 100644 --- a/Database/VSdoc/topic_0000000000000001_methods--.html +++ b/Database/VSdoc/topic_0000000000000001_methods--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -230,167 +230,11 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. - - - - - - - - - - - - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). + @@ -481,36 +325,6 @@ Erstellt eine flache Kopie des aktuellen - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - @@ -538,63 +352,6 @@ Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. - - - - -
- - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- -
See Also diff --git a/Database/VSdoc/topic_0000000000000001_props--.html b/Database/VSdoc/topic_0000000000000001_props--.html index 68ecab97..c3033c95 100644 --- a/Database/VSdoc/topic_0000000000000001_props--.html +++ b/Database/VSdoc/topic_0000000000000001_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000001_vars--.html b/Database/VSdoc/topic_0000000000000001_vars--.html index c66d38bd..35fdcb7f 100644 --- a/Database/VSdoc/topic_0000000000000001_vars--.html +++ b/Database/VSdoc/topic_0000000000000001_vars--.html @@ -39,7 +39,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000002.html b/Database/VSdoc/topic_0000000000000002.html index cc343744..4fcb7abe 100644 --- a/Database/VSdoc/topic_0000000000000002.html +++ b/Database/VSdoc/topic_0000000000000002.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000003.html b/Database/VSdoc/topic_0000000000000003.html index b498484a..295cb7f7 100644 --- a/Database/VSdoc/topic_0000000000000003.html +++ b/Database/VSdoc/topic_0000000000000003.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -89,7 +89,6 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); - Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. @@ -139,7 +138,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
Public Sub Dispose() Implements  _ 
IDisposable.Dispose
+
Public Sub Dispose()
This language is not supported or no code example is available.
@@ -270,10 +269,6 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); -

- Implements

IDisposable.Dispose -
- diff --git a/Database/VSdoc/topic_0000000000000003_overloads--.html b/Database/VSdoc/topic_0000000000000003_overloads--.html index 0d34e923..91c31f79 100644 --- a/Database/VSdoc/topic_0000000000000003_overloads--.html +++ b/Database/VSdoc/topic_0000000000000003_overloads--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -79,7 +79,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));

- Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. +

@@ -118,7 +118,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + diff --git a/Database/VSdoc/topic_0000000000000004.html b/Database/VSdoc/topic_0000000000000004.html index 612a5937..7148e52f 100644 --- a/Database/VSdoc/topic_0000000000000004.html +++ b/Database/VSdoc/topic_0000000000000004.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000004_overloads--.html b/Database/VSdoc/topic_0000000000000004_overloads--.html index 918a627d..91c31f79 100644 --- a/Database/VSdoc/topic_0000000000000004_overloads--.html +++ b/Database/VSdoc/topic_0000000000000004_overloads--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -118,7 +118,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + diff --git a/Database/VSdoc/topic_0000000000000005.html b/Database/VSdoc/topic_0000000000000005.html index 5f87c72a..99ede167 100644 --- a/Database/VSdoc/topic_0000000000000005.html +++ b/Database/VSdoc/topic_0000000000000005.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000006.html b/Database/VSdoc/topic_0000000000000006.html index c9e609cf..7b345b6f 100644 --- a/Database/VSdoc/topic_0000000000000006.html +++ b/Database/VSdoc/topic_0000000000000006.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000007.html b/Database/VSdoc/topic_0000000000000007.html index 2488cf67..f4bdcd09 100644 --- a/Database/VSdoc/topic_0000000000000007.html +++ b/Database/VSdoc/topic_0000000000000007.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000008.html b/Database/VSdoc/topic_0000000000000008.html index ec23b25a..d267cfa7 100644 --- a/Database/VSdoc/topic_0000000000000008.html +++ b/Database/VSdoc/topic_0000000000000008.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000009.html b/Database/VSdoc/topic_0000000000000009.html index 1ab23503..0ac6a2d9 100644 --- a/Database/VSdoc/topic_0000000000000009.html +++ b/Database/VSdoc/topic_0000000000000009.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000000A.html b/Database/VSdoc/topic_000000000000000A.html index 5b149a52..ac46b28a 100644 --- a/Database/VSdoc/topic_000000000000000A.html +++ b/Database/VSdoc/topic_000000000000000A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000000B.html b/Database/VSdoc/topic_000000000000000B.html index a78d9cd9..41e0fd0c 100644 --- a/Database/VSdoc/topic_000000000000000B.html +++ b/Database/VSdoc/topic_000000000000000B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000000C.html b/Database/VSdoc/topic_000000000000000C.html index d80cf21a..49890689 100644 --- a/Database/VSdoc/topic_000000000000000C.html +++ b/Database/VSdoc/topic_000000000000000C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000000D.html b/Database/VSdoc/topic_000000000000000D.html index d3513af2..c43de191 100644 --- a/Database/VSdoc/topic_000000000000000D.html +++ b/Database/VSdoc/topic_000000000000000D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000000E.html b/Database/VSdoc/topic_000000000000000E.html index 3a125079..9e93defa 100644 --- a/Database/VSdoc/topic_000000000000000E.html +++ b/Database/VSdoc/topic_000000000000000E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000000F.html b/Database/VSdoc/topic_000000000000000F.html index 0101af24..709424d5 100644 --- a/Database/VSdoc/topic_000000000000000F.html +++ b/Database/VSdoc/topic_000000000000000F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000011.html b/Database/VSdoc/topic_0000000000000011.html index 18b109d3..4ae6a67c 100644 --- a/Database/VSdoc/topic_0000000000000011.html +++ b/Database/VSdoc/topic_0000000000000011.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000011_attached_props--.html b/Database/VSdoc/topic_0000000000000011_attached_props--.html index b1da4533..a4a9976b 100644 --- a/Database/VSdoc/topic_0000000000000011_attached_props--.html +++ b/Database/VSdoc/topic_0000000000000011_attached_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000011_events--.html b/Database/VSdoc/topic_0000000000000011_events--.html index 1990aa4c..b3de7692 100644 --- a/Database/VSdoc/topic_0000000000000011_events--.html +++ b/Database/VSdoc/topic_0000000000000011_events--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000011_methods--.html b/Database/VSdoc/topic_0000000000000011_methods--.html index 35b1c50e..beea7347 100644 --- a/Database/VSdoc/topic_0000000000000011_methods--.html +++ b/Database/VSdoc/topic_0000000000000011_methods--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000011_props--.html b/Database/VSdoc/topic_0000000000000011_props--.html index 6f2ff45f..a4b065f6 100644 --- a/Database/VSdoc/topic_0000000000000011_props--.html +++ b/Database/VSdoc/topic_0000000000000011_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000011_vars--.html b/Database/VSdoc/topic_0000000000000011_vars--.html index 88d1c851..543b1d3e 100644 --- a/Database/VSdoc/topic_0000000000000011_vars--.html +++ b/Database/VSdoc/topic_0000000000000011_vars--.html @@ -39,7 +39,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000012.html b/Database/VSdoc/topic_0000000000000012.html index 9fc2a5cc..3cf33a72 100644 --- a/Database/VSdoc/topic_0000000000000012.html +++ b/Database/VSdoc/topic_0000000000000012.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000013.html b/Database/VSdoc/topic_0000000000000013.html index 03920e81..80f33024 100644 --- a/Database/VSdoc/topic_0000000000000013.html +++ b/Database/VSdoc/topic_0000000000000013.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000014.html b/Database/VSdoc/topic_0000000000000014.html index f794edd6..4cc67028 100644 --- a/Database/VSdoc/topic_0000000000000014.html +++ b/Database/VSdoc/topic_0000000000000014.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000015.html b/Database/VSdoc/topic_0000000000000015.html index 01ffbc4d..ab3b9463 100644 --- a/Database/VSdoc/topic_0000000000000015.html +++ b/Database/VSdoc/topic_0000000000000015.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000016.html b/Database/VSdoc/topic_0000000000000016.html index a4afe6c7..80fa0493 100644 --- a/Database/VSdoc/topic_0000000000000016.html +++ b/Database/VSdoc/topic_0000000000000016.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000017.html b/Database/VSdoc/topic_0000000000000017.html index 08e2962d..77519d11 100644 --- a/Database/VSdoc/topic_0000000000000017.html +++ b/Database/VSdoc/topic_0000000000000017.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -554,134 +554,11 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. - - - - - - - - - - - - - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - + @@ -718,39 +595,6 @@ Ruft den - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- - @@ -1106,46 +863,6 @@ inheritedMember - diff --git a/Database/VSdoc/topic_0000000000000017_attached_props--.html b/Database/VSdoc/topic_0000000000000017_attached_props--.html index a26ffe95..bf18ea12 100644 --- a/Database/VSdoc/topic_0000000000000017_attached_props--.html +++ b/Database/VSdoc/topic_0000000000000017_attached_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000017_events--.html b/Database/VSdoc/topic_0000000000000017_events--.html index 4f56dfee..264055f9 100644 --- a/Database/VSdoc/topic_0000000000000017_events--.html +++ b/Database/VSdoc/topic_0000000000000017_events--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000017_methods--.html b/Database/VSdoc/topic_0000000000000017_methods--.html index 0da386b7..1a4b4049 100644 --- a/Database/VSdoc/topic_0000000000000017_methods--.html +++ b/Database/VSdoc/topic_0000000000000017_methods--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -174,134 +174,11 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. - - - - - - - - - - - - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). + @@ -338,39 +215,6 @@ Ruft den - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- -
See Also diff --git a/Database/VSdoc/topic_0000000000000017_props--.html b/Database/VSdoc/topic_0000000000000017_props--.html index b8dba53b..4ad86065 100644 --- a/Database/VSdoc/topic_0000000000000017_props--.html +++ b/Database/VSdoc/topic_0000000000000017_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000017_vars--.html b/Database/VSdoc/topic_0000000000000017_vars--.html index b0974f68..9e326153 100644 --- a/Database/VSdoc/topic_0000000000000017_vars--.html +++ b/Database/VSdoc/topic_0000000000000017_vars--.html @@ -39,7 +39,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000018.html b/Database/VSdoc/topic_0000000000000018.html index 4d6b26c5..95940736 100644 --- a/Database/VSdoc/topic_0000000000000018.html +++ b/Database/VSdoc/topic_0000000000000018.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000019.html b/Database/VSdoc/topic_0000000000000019.html index 06e0c9f6..1d04dfcf 100644 --- a/Database/VSdoc/topic_0000000000000019.html +++ b/Database/VSdoc/topic_0000000000000019.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000001A.html b/Database/VSdoc/topic_000000000000001A.html index b0e20e69..7e271238 100644 --- a/Database/VSdoc/topic_000000000000001A.html +++ b/Database/VSdoc/topic_000000000000001A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000001B.html b/Database/VSdoc/topic_000000000000001B.html index 80c211c1..f033eb54 100644 --- a/Database/VSdoc/topic_000000000000001B.html +++ b/Database/VSdoc/topic_000000000000001B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000001C.html b/Database/VSdoc/topic_000000000000001C.html index 56aa52be..efb153d3 100644 --- a/Database/VSdoc/topic_000000000000001C.html +++ b/Database/VSdoc/topic_000000000000001C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000001D.html b/Database/VSdoc/topic_000000000000001D.html index 3e928601..7e9ed4d6 100644 --- a/Database/VSdoc/topic_000000000000001D.html +++ b/Database/VSdoc/topic_000000000000001D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000001E.html b/Database/VSdoc/topic_000000000000001E.html index e494604d..34cf19f5 100644 --- a/Database/VSdoc/topic_000000000000001E.html +++ b/Database/VSdoc/topic_000000000000001E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -89,7 +89,6 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); - Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. @@ -139,7 +138,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
Public Sub Dispose() Implements  _ 
IDisposable.Dispose
+
Public Sub Dispose()
This language is not supported or no code example is available.
@@ -270,10 +269,6 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); -

- Implements

IDisposable.Dispose -
- diff --git a/Database/VSdoc/topic_000000000000001E_overloads--.html b/Database/VSdoc/topic_000000000000001E_overloads--.html index 5397b7e0..c0b1c6b4 100644 --- a/Database/VSdoc/topic_000000000000001E_overloads--.html +++ b/Database/VSdoc/topic_000000000000001E_overloads--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -79,7 +79,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));

- Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. +

@@ -118,7 +118,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + diff --git a/Database/VSdoc/topic_000000000000001F.html b/Database/VSdoc/topic_000000000000001F.html index 96f607ea..c60db5a3 100644 --- a/Database/VSdoc/topic_000000000000001F.html +++ b/Database/VSdoc/topic_000000000000001F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000001F_overloads--.html b/Database/VSdoc/topic_000000000000001F_overloads--.html index 9b6509d3..c0b1c6b4 100644 --- a/Database/VSdoc/topic_000000000000001F_overloads--.html +++ b/Database/VSdoc/topic_000000000000001F_overloads--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -118,7 +118,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + diff --git a/Database/VSdoc/topic_0000000000000020.html b/Database/VSdoc/topic_0000000000000020.html index 298460cc..403a423a 100644 --- a/Database/VSdoc/topic_0000000000000020.html +++ b/Database/VSdoc/topic_0000000000000020.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000021.html b/Database/VSdoc/topic_0000000000000021.html index 9b25de45..d4920886 100644 --- a/Database/VSdoc/topic_0000000000000021.html +++ b/Database/VSdoc/topic_0000000000000021.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000022.html b/Database/VSdoc/topic_0000000000000022.html index de004eb4..bbde1099 100644 --- a/Database/VSdoc/topic_0000000000000022.html +++ b/Database/VSdoc/topic_0000000000000022.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000023.html b/Database/VSdoc/topic_0000000000000023.html index 5679e6a1..930eb981 100644 --- a/Database/VSdoc/topic_0000000000000023.html +++ b/Database/VSdoc/topic_0000000000000023.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000024.html b/Database/VSdoc/topic_0000000000000024.html index ade85c57..974ccacb 100644 --- a/Database/VSdoc/topic_0000000000000024.html +++ b/Database/VSdoc/topic_0000000000000024.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000025.html b/Database/VSdoc/topic_0000000000000025.html index 80e38ab2..6617ef53 100644 --- a/Database/VSdoc/topic_0000000000000025.html +++ b/Database/VSdoc/topic_0000000000000025.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000026.html b/Database/VSdoc/topic_0000000000000026.html index 7b54c423..73cceeb4 100644 --- a/Database/VSdoc/topic_0000000000000026.html +++ b/Database/VSdoc/topic_0000000000000026.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000027.html b/Database/VSdoc/topic_0000000000000027.html index a7b2cf12..11f4fc60 100644 --- a/Database/VSdoc/topic_0000000000000027.html +++ b/Database/VSdoc/topic_0000000000000027.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000028.html b/Database/VSdoc/topic_0000000000000028.html index 1d47d346..942171a4 100644 --- a/Database/VSdoc/topic_0000000000000028.html +++ b/Database/VSdoc/topic_0000000000000028.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000029.html b/Database/VSdoc/topic_0000000000000029.html index 581e3587..a2b58025 100644 --- a/Database/VSdoc/topic_0000000000000029.html +++ b/Database/VSdoc/topic_0000000000000029.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -2461,7 +2461,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -2475,129 +2475,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- - @@ -3032,15 +2789,12 @@ inheritedMember
- - -
edoka_dms.clsDBInteractionBase + -
edoka_dms.clsDokument
+
edoka_dms.clsDokument
diff --git a/Database/VSdoc/topic_0000000000000029_attached_props--.html b/Database/VSdoc/topic_0000000000000029_attached_props--.html index 3afc6287..f200e0ed 100644 --- a/Database/VSdoc/topic_0000000000000029_attached_props--.html +++ b/Database/VSdoc/topic_0000000000000029_attached_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000029_events--.html b/Database/VSdoc/topic_0000000000000029_events--.html index 000d5dbd..7d2d0686 100644 --- a/Database/VSdoc/topic_0000000000000029_events--.html +++ b/Database/VSdoc/topic_0000000000000029_events--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000029_methods--.html b/Database/VSdoc/topic_0000000000000029_methods--.html index e8893a65..8a53ef8f 100644 --- a/Database/VSdoc/topic_0000000000000029_methods--.html +++ b/Database/VSdoc/topic_0000000000000029_methods--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -177,7 +177,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -191,129 +191,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- -
See Also diff --git a/Database/VSdoc/topic_0000000000000029_props--.html b/Database/VSdoc/topic_0000000000000029_props--.html index 63263cfe..58ff9f12 100644 --- a/Database/VSdoc/topic_0000000000000029_props--.html +++ b/Database/VSdoc/topic_0000000000000029_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000029_vars--.html b/Database/VSdoc/topic_0000000000000029_vars--.html index b91203eb..2666b098 100644 --- a/Database/VSdoc/topic_0000000000000029_vars--.html +++ b/Database/VSdoc/topic_0000000000000029_vars--.html @@ -39,7 +39,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000002A.html b/Database/VSdoc/topic_000000000000002A.html index e93969d5..17161361 100644 --- a/Database/VSdoc/topic_000000000000002A.html +++ b/Database/VSdoc/topic_000000000000002A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000002B.html b/Database/VSdoc/topic_000000000000002B.html index 31ef91bd..ccf35f97 100644 --- a/Database/VSdoc/topic_000000000000002B.html +++ b/Database/VSdoc/topic_000000000000002B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000002C.html b/Database/VSdoc/topic_000000000000002C.html index 6aace37f..7d66f108 100644 --- a/Database/VSdoc/topic_000000000000002C.html +++ b/Database/VSdoc/topic_000000000000002C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000002D.html b/Database/VSdoc/topic_000000000000002D.html index d0ac9617..0dab948a 100644 --- a/Database/VSdoc/topic_000000000000002D.html +++ b/Database/VSdoc/topic_000000000000002D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000002E.html b/Database/VSdoc/topic_000000000000002E.html index a2c4d37a..2300b362 100644 --- a/Database/VSdoc/topic_000000000000002E.html +++ b/Database/VSdoc/topic_000000000000002E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000002F.html b/Database/VSdoc/topic_000000000000002F.html index 35c61245..1a7f6e90 100644 --- a/Database/VSdoc/topic_000000000000002F.html +++ b/Database/VSdoc/topic_000000000000002F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000030.html b/Database/VSdoc/topic_0000000000000030.html index 08a9d5d0..28a7355e 100644 --- a/Database/VSdoc/topic_0000000000000030.html +++ b/Database/VSdoc/topic_0000000000000030.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000031.html b/Database/VSdoc/topic_0000000000000031.html index c1e3e410..18cb7c38 100644 --- a/Database/VSdoc/topic_0000000000000031.html +++ b/Database/VSdoc/topic_0000000000000031.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000032.html b/Database/VSdoc/topic_0000000000000032.html index da31b9a1..fe142258 100644 --- a/Database/VSdoc/topic_0000000000000032.html +++ b/Database/VSdoc/topic_0000000000000032.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000033.html b/Database/VSdoc/topic_0000000000000033.html index 08362b6c..9f38c8c6 100644 --- a/Database/VSdoc/topic_0000000000000033.html +++ b/Database/VSdoc/topic_0000000000000033.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000034.html b/Database/VSdoc/topic_0000000000000034.html index 501bb535..a82233e1 100644 --- a/Database/VSdoc/topic_0000000000000034.html +++ b/Database/VSdoc/topic_0000000000000034.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000035.html b/Database/VSdoc/topic_0000000000000035.html index 58ea286d..937c758a 100644 --- a/Database/VSdoc/topic_0000000000000035.html +++ b/Database/VSdoc/topic_0000000000000035.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000036.html b/Database/VSdoc/topic_0000000000000036.html index aab8331c..df0f2ba6 100644 --- a/Database/VSdoc/topic_0000000000000036.html +++ b/Database/VSdoc/topic_0000000000000036.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000037.html b/Database/VSdoc/topic_0000000000000037.html index 6838f198..4759c35d 100644 --- a/Database/VSdoc/topic_0000000000000037.html +++ b/Database/VSdoc/topic_0000000000000037.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000038.html b/Database/VSdoc/topic_0000000000000038.html index 443fec74..f2b4d2d1 100644 --- a/Database/VSdoc/topic_0000000000000038.html +++ b/Database/VSdoc/topic_0000000000000038.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000039.html b/Database/VSdoc/topic_0000000000000039.html index 912b4f79..5d63eb41 100644 --- a/Database/VSdoc/topic_0000000000000039.html +++ b/Database/VSdoc/topic_0000000000000039.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000003A.html b/Database/VSdoc/topic_000000000000003A.html index daa8a95a..73e0c4a1 100644 --- a/Database/VSdoc/topic_000000000000003A.html +++ b/Database/VSdoc/topic_000000000000003A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000003B.html b/Database/VSdoc/topic_000000000000003B.html index 7a856221..2b79fdb5 100644 --- a/Database/VSdoc/topic_000000000000003B.html +++ b/Database/VSdoc/topic_000000000000003B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000003C.html b/Database/VSdoc/topic_000000000000003C.html index 29814973..727b638d 100644 --- a/Database/VSdoc/topic_000000000000003C.html +++ b/Database/VSdoc/topic_000000000000003C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000003D.html b/Database/VSdoc/topic_000000000000003D.html index 1e556ad5..15a6eb81 100644 --- a/Database/VSdoc/topic_000000000000003D.html +++ b/Database/VSdoc/topic_000000000000003D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000003E.html b/Database/VSdoc/topic_000000000000003E.html index 7f6b5b07..73e3ebe6 100644 --- a/Database/VSdoc/topic_000000000000003E.html +++ b/Database/VSdoc/topic_000000000000003E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000003F.html b/Database/VSdoc/topic_000000000000003F.html index 3ec6ddbd..5b828c3c 100644 --- a/Database/VSdoc/topic_000000000000003F.html +++ b/Database/VSdoc/topic_000000000000003F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000040.html b/Database/VSdoc/topic_0000000000000040.html index 63404e7d..3802c3d6 100644 --- a/Database/VSdoc/topic_0000000000000040.html +++ b/Database/VSdoc/topic_0000000000000040.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000041.html b/Database/VSdoc/topic_0000000000000041.html index 4fb338b2..e31010c0 100644 --- a/Database/VSdoc/topic_0000000000000041.html +++ b/Database/VSdoc/topic_0000000000000041.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000042.html b/Database/VSdoc/topic_0000000000000042.html index 76e99d00..7e26b174 100644 --- a/Database/VSdoc/topic_0000000000000042.html +++ b/Database/VSdoc/topic_0000000000000042.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000043.html b/Database/VSdoc/topic_0000000000000043.html index 50bacad5..c80ca8e3 100644 --- a/Database/VSdoc/topic_0000000000000043.html +++ b/Database/VSdoc/topic_0000000000000043.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000044.html b/Database/VSdoc/topic_0000000000000044.html index e35622a1..f74828e6 100644 --- a/Database/VSdoc/topic_0000000000000044.html +++ b/Database/VSdoc/topic_0000000000000044.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000045.html b/Database/VSdoc/topic_0000000000000045.html index 7a9f1872..934b5692 100644 --- a/Database/VSdoc/topic_0000000000000045.html +++ b/Database/VSdoc/topic_0000000000000045.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000046.html b/Database/VSdoc/topic_0000000000000046.html index e0e70339..76947811 100644 --- a/Database/VSdoc/topic_0000000000000046.html +++ b/Database/VSdoc/topic_0000000000000046.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000047.html b/Database/VSdoc/topic_0000000000000047.html index fda1c060..9d229c46 100644 --- a/Database/VSdoc/topic_0000000000000047.html +++ b/Database/VSdoc/topic_0000000000000047.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000048.html b/Database/VSdoc/topic_0000000000000048.html index 375c3c53..9a817a87 100644 --- a/Database/VSdoc/topic_0000000000000048.html +++ b/Database/VSdoc/topic_0000000000000048.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000049.html b/Database/VSdoc/topic_0000000000000049.html index 6d9ac7c3..1f212f1a 100644 --- a/Database/VSdoc/topic_0000000000000049.html +++ b/Database/VSdoc/topic_0000000000000049.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000004A.html b/Database/VSdoc/topic_000000000000004A.html index 4d9b5db7..23c8213f 100644 --- a/Database/VSdoc/topic_000000000000004A.html +++ b/Database/VSdoc/topic_000000000000004A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000004B.html b/Database/VSdoc/topic_000000000000004B.html index b44234c4..811c1208 100644 --- a/Database/VSdoc/topic_000000000000004B.html +++ b/Database/VSdoc/topic_000000000000004B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000004C.html b/Database/VSdoc/topic_000000000000004C.html index 5c1e68a5..9673584e 100644 --- a/Database/VSdoc/topic_000000000000004C.html +++ b/Database/VSdoc/topic_000000000000004C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000004D.html b/Database/VSdoc/topic_000000000000004D.html index 9d9f19c4..efc16f3b 100644 --- a/Database/VSdoc/topic_000000000000004D.html +++ b/Database/VSdoc/topic_000000000000004D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000004E.html b/Database/VSdoc/topic_000000000000004E.html index 4264a740..607608d2 100644 --- a/Database/VSdoc/topic_000000000000004E.html +++ b/Database/VSdoc/topic_000000000000004E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000004F.html b/Database/VSdoc/topic_000000000000004F.html index 71409eab..8bd88bf0 100644 --- a/Database/VSdoc/topic_000000000000004F.html +++ b/Database/VSdoc/topic_000000000000004F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000050.html b/Database/VSdoc/topic_0000000000000050.html index 10870aa6..605f19b0 100644 --- a/Database/VSdoc/topic_0000000000000050.html +++ b/Database/VSdoc/topic_0000000000000050.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000051.html b/Database/VSdoc/topic_0000000000000051.html index 454fb912..b4ef1daf 100644 --- a/Database/VSdoc/topic_0000000000000051.html +++ b/Database/VSdoc/topic_0000000000000051.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000052.html b/Database/VSdoc/topic_0000000000000052.html index 0d992920..c2c43fb6 100644 --- a/Database/VSdoc/topic_0000000000000052.html +++ b/Database/VSdoc/topic_0000000000000052.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000053.html b/Database/VSdoc/topic_0000000000000053.html index 8fc3e0f5..8f40f41a 100644 --- a/Database/VSdoc/topic_0000000000000053.html +++ b/Database/VSdoc/topic_0000000000000053.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000054.html b/Database/VSdoc/topic_0000000000000054.html index 4aaa5286..9cc6dee5 100644 --- a/Database/VSdoc/topic_0000000000000054.html +++ b/Database/VSdoc/topic_0000000000000054.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000055.html b/Database/VSdoc/topic_0000000000000055.html index 17d23a99..b3f95c53 100644 --- a/Database/VSdoc/topic_0000000000000055.html +++ b/Database/VSdoc/topic_0000000000000055.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000056.html b/Database/VSdoc/topic_0000000000000056.html index d9a0e903..eefe0e31 100644 --- a/Database/VSdoc/topic_0000000000000056.html +++ b/Database/VSdoc/topic_0000000000000056.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000057.html b/Database/VSdoc/topic_0000000000000057.html index eed43598..160dd014 100644 --- a/Database/VSdoc/topic_0000000000000057.html +++ b/Database/VSdoc/topic_0000000000000057.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000058.html b/Database/VSdoc/topic_0000000000000058.html index 66d3a846..4c306c50 100644 --- a/Database/VSdoc/topic_0000000000000058.html +++ b/Database/VSdoc/topic_0000000000000058.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000059.html b/Database/VSdoc/topic_0000000000000059.html index 57dbf6ec..1d6cc83e 100644 --- a/Database/VSdoc/topic_0000000000000059.html +++ b/Database/VSdoc/topic_0000000000000059.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000005A.html b/Database/VSdoc/topic_000000000000005A.html index 09eef88d..2191e490 100644 --- a/Database/VSdoc/topic_000000000000005A.html +++ b/Database/VSdoc/topic_000000000000005A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000005B.html b/Database/VSdoc/topic_000000000000005B.html index 77722ab6..61de2965 100644 --- a/Database/VSdoc/topic_000000000000005B.html +++ b/Database/VSdoc/topic_000000000000005B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000005C.html b/Database/VSdoc/topic_000000000000005C.html index b0c849b5..b297974f 100644 --- a/Database/VSdoc/topic_000000000000005C.html +++ b/Database/VSdoc/topic_000000000000005C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000005D.html b/Database/VSdoc/topic_000000000000005D.html index 44c72bd0..99de7785 100644 --- a/Database/VSdoc/topic_000000000000005D.html +++ b/Database/VSdoc/topic_000000000000005D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000005E.html b/Database/VSdoc/topic_000000000000005E.html index 9bcd1815..9d87cd4d 100644 --- a/Database/VSdoc/topic_000000000000005E.html +++ b/Database/VSdoc/topic_000000000000005E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000005F.html b/Database/VSdoc/topic_000000000000005F.html index a3e4d42f..d1b11248 100644 --- a/Database/VSdoc/topic_000000000000005F.html +++ b/Database/VSdoc/topic_000000000000005F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000060.html b/Database/VSdoc/topic_0000000000000060.html index a2a1ce71..1519b60d 100644 --- a/Database/VSdoc/topic_0000000000000060.html +++ b/Database/VSdoc/topic_0000000000000060.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000061.html b/Database/VSdoc/topic_0000000000000061.html index 55c789c4..10f6a18a 100644 --- a/Database/VSdoc/topic_0000000000000061.html +++ b/Database/VSdoc/topic_0000000000000061.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000062.html b/Database/VSdoc/topic_0000000000000062.html index 6a5c9edb..10341652 100644 --- a/Database/VSdoc/topic_0000000000000062.html +++ b/Database/VSdoc/topic_0000000000000062.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000063.html b/Database/VSdoc/topic_0000000000000063.html index 1da457c5..c4ebcdb9 100644 --- a/Database/VSdoc/topic_0000000000000063.html +++ b/Database/VSdoc/topic_0000000000000063.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000064.html b/Database/VSdoc/topic_0000000000000064.html index 002faee3..03df135f 100644 --- a/Database/VSdoc/topic_0000000000000064.html +++ b/Database/VSdoc/topic_0000000000000064.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000065.html b/Database/VSdoc/topic_0000000000000065.html index 723a1edb..ea14762a 100644 --- a/Database/VSdoc/topic_0000000000000065.html +++ b/Database/VSdoc/topic_0000000000000065.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000066.html b/Database/VSdoc/topic_0000000000000066.html index 392619de..4a486431 100644 --- a/Database/VSdoc/topic_0000000000000066.html +++ b/Database/VSdoc/topic_0000000000000066.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000067.html b/Database/VSdoc/topic_0000000000000067.html index 6eae4736..36f06531 100644 --- a/Database/VSdoc/topic_0000000000000067.html +++ b/Database/VSdoc/topic_0000000000000067.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000068.html b/Database/VSdoc/topic_0000000000000068.html index 1f3f9042..3d5669ec 100644 --- a/Database/VSdoc/topic_0000000000000068.html +++ b/Database/VSdoc/topic_0000000000000068.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000069.html b/Database/VSdoc/topic_0000000000000069.html index 05b89bd6..dafa915b 100644 --- a/Database/VSdoc/topic_0000000000000069.html +++ b/Database/VSdoc/topic_0000000000000069.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000006A.html b/Database/VSdoc/topic_000000000000006A.html index 3fa9c766..2c23a9a9 100644 --- a/Database/VSdoc/topic_000000000000006A.html +++ b/Database/VSdoc/topic_000000000000006A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000006B.html b/Database/VSdoc/topic_000000000000006B.html index b4ab7179..f4d52583 100644 --- a/Database/VSdoc/topic_000000000000006B.html +++ b/Database/VSdoc/topic_000000000000006B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000006C.html b/Database/VSdoc/topic_000000000000006C.html index 572f8c05..159e1cd1 100644 --- a/Database/VSdoc/topic_000000000000006C.html +++ b/Database/VSdoc/topic_000000000000006C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000006D.html b/Database/VSdoc/topic_000000000000006D.html index cfbbf912..368cfeee 100644 --- a/Database/VSdoc/topic_000000000000006D.html +++ b/Database/VSdoc/topic_000000000000006D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000006E.html b/Database/VSdoc/topic_000000000000006E.html index 2d7c7c54..e59ee59c 100644 --- a/Database/VSdoc/topic_000000000000006E.html +++ b/Database/VSdoc/topic_000000000000006E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000006F.html b/Database/VSdoc/topic_000000000000006F.html index 90d1f2bb..f6a6bf22 100644 --- a/Database/VSdoc/topic_000000000000006F.html +++ b/Database/VSdoc/topic_000000000000006F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000070.html b/Database/VSdoc/topic_0000000000000070.html index e6987d00..13086a19 100644 --- a/Database/VSdoc/topic_0000000000000070.html +++ b/Database/VSdoc/topic_0000000000000070.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000071.html b/Database/VSdoc/topic_0000000000000071.html index e1ec9a02..f9eead34 100644 --- a/Database/VSdoc/topic_0000000000000071.html +++ b/Database/VSdoc/topic_0000000000000071.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000072.html b/Database/VSdoc/topic_0000000000000072.html index f992a340..cd26b5f3 100644 --- a/Database/VSdoc/topic_0000000000000072.html +++ b/Database/VSdoc/topic_0000000000000072.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000073.html b/Database/VSdoc/topic_0000000000000073.html index 152e55c9..36cef347 100644 --- a/Database/VSdoc/topic_0000000000000073.html +++ b/Database/VSdoc/topic_0000000000000073.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000074.html b/Database/VSdoc/topic_0000000000000074.html index 5d8ff6b0..c9808d96 100644 --- a/Database/VSdoc/topic_0000000000000074.html +++ b/Database/VSdoc/topic_0000000000000074.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000075.html b/Database/VSdoc/topic_0000000000000075.html index c13f40a3..cfa40856 100644 --- a/Database/VSdoc/topic_0000000000000075.html +++ b/Database/VSdoc/topic_0000000000000075.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000076.html b/Database/VSdoc/topic_0000000000000076.html index 4b8a804f..5fb22719 100644 --- a/Database/VSdoc/topic_0000000000000076.html +++ b/Database/VSdoc/topic_0000000000000076.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000077.html b/Database/VSdoc/topic_0000000000000077.html index 0596cb18..cbf43978 100644 --- a/Database/VSdoc/topic_0000000000000077.html +++ b/Database/VSdoc/topic_0000000000000077.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000078.html b/Database/VSdoc/topic_0000000000000078.html index ff875d3a..975c7d48 100644 --- a/Database/VSdoc/topic_0000000000000078.html +++ b/Database/VSdoc/topic_0000000000000078.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000079.html b/Database/VSdoc/topic_0000000000000079.html index 9915189a..a9affeed 100644 --- a/Database/VSdoc/topic_0000000000000079.html +++ b/Database/VSdoc/topic_0000000000000079.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000007A.html b/Database/VSdoc/topic_000000000000007A.html index e7e49d42..55200650 100644 --- a/Database/VSdoc/topic_000000000000007A.html +++ b/Database/VSdoc/topic_000000000000007A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000007B.html b/Database/VSdoc/topic_000000000000007B.html index 7f6c7c71..1e9c4ce0 100644 --- a/Database/VSdoc/topic_000000000000007B.html +++ b/Database/VSdoc/topic_000000000000007B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000007C.html b/Database/VSdoc/topic_000000000000007C.html index 7482d938..58383e09 100644 --- a/Database/VSdoc/topic_000000000000007C.html +++ b/Database/VSdoc/topic_000000000000007C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000007D.html b/Database/VSdoc/topic_000000000000007D.html index 02e3dde3..f1717850 100644 --- a/Database/VSdoc/topic_000000000000007D.html +++ b/Database/VSdoc/topic_000000000000007D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000007E.html b/Database/VSdoc/topic_000000000000007E.html index 3b3adb76..e46cbeaa 100644 --- a/Database/VSdoc/topic_000000000000007E.html +++ b/Database/VSdoc/topic_000000000000007E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000007F.html b/Database/VSdoc/topic_000000000000007F.html index c84a8e40..1974d0cd 100644 --- a/Database/VSdoc/topic_000000000000007F.html +++ b/Database/VSdoc/topic_000000000000007F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -877,7 +877,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -891,129 +891,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- - @@ -1448,15 +1205,12 @@ inheritedMember
- - -
edoka_dms.clsDBInteractionBase + -
edoka_dms.clsDokument_status
+
edoka_dms.clsDokument_status
diff --git a/Database/VSdoc/topic_000000000000007F_attached_props--.html b/Database/VSdoc/topic_000000000000007F_attached_props--.html index dbbccbe5..823c93f8 100644 --- a/Database/VSdoc/topic_000000000000007F_attached_props--.html +++ b/Database/VSdoc/topic_000000000000007F_attached_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000007F_events--.html b/Database/VSdoc/topic_000000000000007F_events--.html index 6f04927e..d09a77c5 100644 --- a/Database/VSdoc/topic_000000000000007F_events--.html +++ b/Database/VSdoc/topic_000000000000007F_events--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000007F_methods--.html b/Database/VSdoc/topic_000000000000007F_methods--.html index 03b8b1b6..ea556da4 100644 --- a/Database/VSdoc/topic_000000000000007F_methods--.html +++ b/Database/VSdoc/topic_000000000000007F_methods--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -177,7 +177,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -191,129 +191,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- -
See Also diff --git a/Database/VSdoc/topic_000000000000007F_props--.html b/Database/VSdoc/topic_000000000000007F_props--.html index 4b5ee2d9..3f1ff13b 100644 --- a/Database/VSdoc/topic_000000000000007F_props--.html +++ b/Database/VSdoc/topic_000000000000007F_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000007F_vars--.html b/Database/VSdoc/topic_000000000000007F_vars--.html index 32bf30b1..62e932e0 100644 --- a/Database/VSdoc/topic_000000000000007F_vars--.html +++ b/Database/VSdoc/topic_000000000000007F_vars--.html @@ -39,7 +39,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000080.html b/Database/VSdoc/topic_0000000000000080.html index e9ffccca..6b653dff 100644 --- a/Database/VSdoc/topic_0000000000000080.html +++ b/Database/VSdoc/topic_0000000000000080.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000081.html b/Database/VSdoc/topic_0000000000000081.html index 4756bc0b..ca15f5fc 100644 --- a/Database/VSdoc/topic_0000000000000081.html +++ b/Database/VSdoc/topic_0000000000000081.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000082.html b/Database/VSdoc/topic_0000000000000082.html index f07feed7..6f19de1d 100644 --- a/Database/VSdoc/topic_0000000000000082.html +++ b/Database/VSdoc/topic_0000000000000082.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000083.html b/Database/VSdoc/topic_0000000000000083.html index d16a702b..a90a2767 100644 --- a/Database/VSdoc/topic_0000000000000083.html +++ b/Database/VSdoc/topic_0000000000000083.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000084.html b/Database/VSdoc/topic_0000000000000084.html index ff02c3ac..f8b1c3b0 100644 --- a/Database/VSdoc/topic_0000000000000084.html +++ b/Database/VSdoc/topic_0000000000000084.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000085.html b/Database/VSdoc/topic_0000000000000085.html index 2958a886..06e59150 100644 --- a/Database/VSdoc/topic_0000000000000085.html +++ b/Database/VSdoc/topic_0000000000000085.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000086.html b/Database/VSdoc/topic_0000000000000086.html index cd1ef121..ab5c8d24 100644 --- a/Database/VSdoc/topic_0000000000000086.html +++ b/Database/VSdoc/topic_0000000000000086.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000087.html b/Database/VSdoc/topic_0000000000000087.html index 9e7fa198..457d966c 100644 --- a/Database/VSdoc/topic_0000000000000087.html +++ b/Database/VSdoc/topic_0000000000000087.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000088.html b/Database/VSdoc/topic_0000000000000088.html index 234732b3..4f57a8c7 100644 --- a/Database/VSdoc/topic_0000000000000088.html +++ b/Database/VSdoc/topic_0000000000000088.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000089.html b/Database/VSdoc/topic_0000000000000089.html index 0feb3c56..5d800db8 100644 --- a/Database/VSdoc/topic_0000000000000089.html +++ b/Database/VSdoc/topic_0000000000000089.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000008A.html b/Database/VSdoc/topic_000000000000008A.html index 30f62c3c..01487ecc 100644 --- a/Database/VSdoc/topic_000000000000008A.html +++ b/Database/VSdoc/topic_000000000000008A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000008B.html b/Database/VSdoc/topic_000000000000008B.html index 61450e6a..1e62696a 100644 --- a/Database/VSdoc/topic_000000000000008B.html +++ b/Database/VSdoc/topic_000000000000008B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000008C.html b/Database/VSdoc/topic_000000000000008C.html index bc6ea19b..1cced2cc 100644 --- a/Database/VSdoc/topic_000000000000008C.html +++ b/Database/VSdoc/topic_000000000000008C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000008D.html b/Database/VSdoc/topic_000000000000008D.html index 7a379fb2..0c800197 100644 --- a/Database/VSdoc/topic_000000000000008D.html +++ b/Database/VSdoc/topic_000000000000008D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000008E.html b/Database/VSdoc/topic_000000000000008E.html index e3dcf2ff..d24d21dc 100644 --- a/Database/VSdoc/topic_000000000000008E.html +++ b/Database/VSdoc/topic_000000000000008E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000008F.html b/Database/VSdoc/topic_000000000000008F.html index 36649d72..1aec6279 100644 --- a/Database/VSdoc/topic_000000000000008F.html +++ b/Database/VSdoc/topic_000000000000008F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000090.html b/Database/VSdoc/topic_0000000000000090.html index 4cbaee7b..2697572e 100644 --- a/Database/VSdoc/topic_0000000000000090.html +++ b/Database/VSdoc/topic_0000000000000090.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000091.html b/Database/VSdoc/topic_0000000000000091.html index 1ebfdf82..b118fe47 100644 --- a/Database/VSdoc/topic_0000000000000091.html +++ b/Database/VSdoc/topic_0000000000000091.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000092.html b/Database/VSdoc/topic_0000000000000092.html index a211b212..cd01518c 100644 --- a/Database/VSdoc/topic_0000000000000092.html +++ b/Database/VSdoc/topic_0000000000000092.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000093.html b/Database/VSdoc/topic_0000000000000093.html index 7675c053..3145dd7d 100644 --- a/Database/VSdoc/topic_0000000000000093.html +++ b/Database/VSdoc/topic_0000000000000093.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -949,7 +949,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -963,129 +963,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- - @@ -1520,15 +1277,12 @@ inheritedMember
- - -
edoka_dms.clsDBInteractionBase + -
edoka_dms.clsDokumentstatus
+
edoka_dms.clsDokumentstatus
diff --git a/Database/VSdoc/topic_0000000000000093_attached_props--.html b/Database/VSdoc/topic_0000000000000093_attached_props--.html index b78eabc2..7f845793 100644 --- a/Database/VSdoc/topic_0000000000000093_attached_props--.html +++ b/Database/VSdoc/topic_0000000000000093_attached_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000093_events--.html b/Database/VSdoc/topic_0000000000000093_events--.html index edd814f3..90381465 100644 --- a/Database/VSdoc/topic_0000000000000093_events--.html +++ b/Database/VSdoc/topic_0000000000000093_events--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000093_methods--.html b/Database/VSdoc/topic_0000000000000093_methods--.html index 267d9a3a..026da931 100644 --- a/Database/VSdoc/topic_0000000000000093_methods--.html +++ b/Database/VSdoc/topic_0000000000000093_methods--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -177,7 +177,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -191,129 +191,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- -
See Also diff --git a/Database/VSdoc/topic_0000000000000093_props--.html b/Database/VSdoc/topic_0000000000000093_props--.html index 060fd602..9e268944 100644 --- a/Database/VSdoc/topic_0000000000000093_props--.html +++ b/Database/VSdoc/topic_0000000000000093_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000093_vars--.html b/Database/VSdoc/topic_0000000000000093_vars--.html index 06b8aab6..ab6dc3dd 100644 --- a/Database/VSdoc/topic_0000000000000093_vars--.html +++ b/Database/VSdoc/topic_0000000000000093_vars--.html @@ -39,7 +39,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000094.html b/Database/VSdoc/topic_0000000000000094.html index 2a8616da..6efb1064 100644 --- a/Database/VSdoc/topic_0000000000000094.html +++ b/Database/VSdoc/topic_0000000000000094.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000095.html b/Database/VSdoc/topic_0000000000000095.html index 53cc76be..adbada6f 100644 --- a/Database/VSdoc/topic_0000000000000095.html +++ b/Database/VSdoc/topic_0000000000000095.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000096.html b/Database/VSdoc/topic_0000000000000096.html index 24e92854..e809132d 100644 --- a/Database/VSdoc/topic_0000000000000096.html +++ b/Database/VSdoc/topic_0000000000000096.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000097.html b/Database/VSdoc/topic_0000000000000097.html index 55ad23d7..849d487d 100644 --- a/Database/VSdoc/topic_0000000000000097.html +++ b/Database/VSdoc/topic_0000000000000097.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000098.html b/Database/VSdoc/topic_0000000000000098.html index 49c837d9..cf778e0d 100644 --- a/Database/VSdoc/topic_0000000000000098.html +++ b/Database/VSdoc/topic_0000000000000098.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000099.html b/Database/VSdoc/topic_0000000000000099.html index 6b22d0ce..75ad1727 100644 --- a/Database/VSdoc/topic_0000000000000099.html +++ b/Database/VSdoc/topic_0000000000000099.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000009A.html b/Database/VSdoc/topic_000000000000009A.html index 0001845d..24f51707 100644 --- a/Database/VSdoc/topic_000000000000009A.html +++ b/Database/VSdoc/topic_000000000000009A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000009B.html b/Database/VSdoc/topic_000000000000009B.html index 87fc46e8..7b56c5e7 100644 --- a/Database/VSdoc/topic_000000000000009B.html +++ b/Database/VSdoc/topic_000000000000009B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000009C.html b/Database/VSdoc/topic_000000000000009C.html index 8050923c..e8a24724 100644 --- a/Database/VSdoc/topic_000000000000009C.html +++ b/Database/VSdoc/topic_000000000000009C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000009D.html b/Database/VSdoc/topic_000000000000009D.html index 354b6dc9..72952ab5 100644 --- a/Database/VSdoc/topic_000000000000009D.html +++ b/Database/VSdoc/topic_000000000000009D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000009E.html b/Database/VSdoc/topic_000000000000009E.html index bd1b55c0..bd8a17fc 100644 --- a/Database/VSdoc/topic_000000000000009E.html +++ b/Database/VSdoc/topic_000000000000009E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000009F.html b/Database/VSdoc/topic_000000000000009F.html index 0c6e78ba..1f4072f1 100644 --- a/Database/VSdoc/topic_000000000000009F.html +++ b/Database/VSdoc/topic_000000000000009F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000A0.html b/Database/VSdoc/topic_00000000000000A0.html index a071e2d7..73094083 100644 --- a/Database/VSdoc/topic_00000000000000A0.html +++ b/Database/VSdoc/topic_00000000000000A0.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000A1.html b/Database/VSdoc/topic_00000000000000A1.html index 0b1a144b..38c6d8da 100644 --- a/Database/VSdoc/topic_00000000000000A1.html +++ b/Database/VSdoc/topic_00000000000000A1.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000A2.html b/Database/VSdoc/topic_00000000000000A2.html index fcf861c5..066e5e20 100644 --- a/Database/VSdoc/topic_00000000000000A2.html +++ b/Database/VSdoc/topic_00000000000000A2.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000A3.html b/Database/VSdoc/topic_00000000000000A3.html index 0ee158c0..d9708efc 100644 --- a/Database/VSdoc/topic_00000000000000A3.html +++ b/Database/VSdoc/topic_00000000000000A3.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000A4.html b/Database/VSdoc/topic_00000000000000A4.html index f218785c..2b4a6ec7 100644 --- a/Database/VSdoc/topic_00000000000000A4.html +++ b/Database/VSdoc/topic_00000000000000A4.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000A5.html b/Database/VSdoc/topic_00000000000000A5.html index 6f12bae4..9686507b 100644 --- a/Database/VSdoc/topic_00000000000000A5.html +++ b/Database/VSdoc/topic_00000000000000A5.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000A6.html b/Database/VSdoc/topic_00000000000000A6.html index 5b7286f7..69bc651b 100644 --- a/Database/VSdoc/topic_00000000000000A6.html +++ b/Database/VSdoc/topic_00000000000000A6.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000A7.html b/Database/VSdoc/topic_00000000000000A7.html index c2754919..f625d57d 100644 --- a/Database/VSdoc/topic_00000000000000A7.html +++ b/Database/VSdoc/topic_00000000000000A7.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000A8.html b/Database/VSdoc/topic_00000000000000A8.html index 0540f5a5..dae40fe2 100644 --- a/Database/VSdoc/topic_00000000000000A8.html +++ b/Database/VSdoc/topic_00000000000000A8.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000A9.html b/Database/VSdoc/topic_00000000000000A9.html index 17d83b0a..5cc0af15 100644 --- a/Database/VSdoc/topic_00000000000000A9.html +++ b/Database/VSdoc/topic_00000000000000A9.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000AA.html b/Database/VSdoc/topic_00000000000000AA.html index 10f8ad0d..5eaac7db 100644 --- a/Database/VSdoc/topic_00000000000000AA.html +++ b/Database/VSdoc/topic_00000000000000AA.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -2101,7 +2101,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -2115,129 +2115,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- - @@ -2672,15 +2429,12 @@ inheritedMember
- - -
edoka_dms.clsDBInteractionBase + -
edoka_dms.clsDokumenttyp
+
edoka_dms.clsDokumenttyp
diff --git a/Database/VSdoc/topic_00000000000000AA_attached_props--.html b/Database/VSdoc/topic_00000000000000AA_attached_props--.html index 0b9f45e0..fa6abcad 100644 --- a/Database/VSdoc/topic_00000000000000AA_attached_props--.html +++ b/Database/VSdoc/topic_00000000000000AA_attached_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000AA_events--.html b/Database/VSdoc/topic_00000000000000AA_events--.html index 55a6f1d6..b16dcfd3 100644 --- a/Database/VSdoc/topic_00000000000000AA_events--.html +++ b/Database/VSdoc/topic_00000000000000AA_events--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000AA_methods--.html b/Database/VSdoc/topic_00000000000000AA_methods--.html index f48f6ed8..dd27f0ef 100644 --- a/Database/VSdoc/topic_00000000000000AA_methods--.html +++ b/Database/VSdoc/topic_00000000000000AA_methods--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -177,7 +177,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -191,129 +191,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- -
See Also diff --git a/Database/VSdoc/topic_00000000000000AA_props--.html b/Database/VSdoc/topic_00000000000000AA_props--.html index 8c98cc34..607ec7ff 100644 --- a/Database/VSdoc/topic_00000000000000AA_props--.html +++ b/Database/VSdoc/topic_00000000000000AA_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000AA_vars--.html b/Database/VSdoc/topic_00000000000000AA_vars--.html index 62396364..e191b36b 100644 --- a/Database/VSdoc/topic_00000000000000AA_vars--.html +++ b/Database/VSdoc/topic_00000000000000AA_vars--.html @@ -39,7 +39,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000AB.html b/Database/VSdoc/topic_00000000000000AB.html index cbc6c93c..fa82c1dd 100644 --- a/Database/VSdoc/topic_00000000000000AB.html +++ b/Database/VSdoc/topic_00000000000000AB.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000AC.html b/Database/VSdoc/topic_00000000000000AC.html index 70c58e3c..52f56748 100644 --- a/Database/VSdoc/topic_00000000000000AC.html +++ b/Database/VSdoc/topic_00000000000000AC.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000AD.html b/Database/VSdoc/topic_00000000000000AD.html index 3cf9c8fa..33d0f4aa 100644 --- a/Database/VSdoc/topic_00000000000000AD.html +++ b/Database/VSdoc/topic_00000000000000AD.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000AE.html b/Database/VSdoc/topic_00000000000000AE.html index 37fb2adc..9231e4c4 100644 --- a/Database/VSdoc/topic_00000000000000AE.html +++ b/Database/VSdoc/topic_00000000000000AE.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000AF.html b/Database/VSdoc/topic_00000000000000AF.html index d9ce4a07..2753b064 100644 --- a/Database/VSdoc/topic_00000000000000AF.html +++ b/Database/VSdoc/topic_00000000000000AF.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000B0.html b/Database/VSdoc/topic_00000000000000B0.html index 55e9d95d..4f8e249c 100644 --- a/Database/VSdoc/topic_00000000000000B0.html +++ b/Database/VSdoc/topic_00000000000000B0.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000B1.html b/Database/VSdoc/topic_00000000000000B1.html index e73c61f9..5948d7f7 100644 --- a/Database/VSdoc/topic_00000000000000B1.html +++ b/Database/VSdoc/topic_00000000000000B1.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000B2.html b/Database/VSdoc/topic_00000000000000B2.html index 48f6b980..5eb69f56 100644 --- a/Database/VSdoc/topic_00000000000000B2.html +++ b/Database/VSdoc/topic_00000000000000B2.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000B3.html b/Database/VSdoc/topic_00000000000000B3.html index f0aad9b2..4390321d 100644 --- a/Database/VSdoc/topic_00000000000000B3.html +++ b/Database/VSdoc/topic_00000000000000B3.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000B4.html b/Database/VSdoc/topic_00000000000000B4.html index badf496e..4ac53e8c 100644 --- a/Database/VSdoc/topic_00000000000000B4.html +++ b/Database/VSdoc/topic_00000000000000B4.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000B5.html b/Database/VSdoc/topic_00000000000000B5.html index fb15b91e..0686d3ad 100644 --- a/Database/VSdoc/topic_00000000000000B5.html +++ b/Database/VSdoc/topic_00000000000000B5.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000B6.html b/Database/VSdoc/topic_00000000000000B6.html index af1d5b7a..fec85aa6 100644 --- a/Database/VSdoc/topic_00000000000000B6.html +++ b/Database/VSdoc/topic_00000000000000B6.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000B7.html b/Database/VSdoc/topic_00000000000000B7.html index c3baef8c..49705c05 100644 --- a/Database/VSdoc/topic_00000000000000B7.html +++ b/Database/VSdoc/topic_00000000000000B7.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000B8.html b/Database/VSdoc/topic_00000000000000B8.html index bf74558b..8d62155a 100644 --- a/Database/VSdoc/topic_00000000000000B8.html +++ b/Database/VSdoc/topic_00000000000000B8.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000B9.html b/Database/VSdoc/topic_00000000000000B9.html index 49418e0b..80d0779b 100644 --- a/Database/VSdoc/topic_00000000000000B9.html +++ b/Database/VSdoc/topic_00000000000000B9.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000BA.html b/Database/VSdoc/topic_00000000000000BA.html index 212a019b..bdd72715 100644 --- a/Database/VSdoc/topic_00000000000000BA.html +++ b/Database/VSdoc/topic_00000000000000BA.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000BB.html b/Database/VSdoc/topic_00000000000000BB.html index ff8a86e2..2dd42d50 100644 --- a/Database/VSdoc/topic_00000000000000BB.html +++ b/Database/VSdoc/topic_00000000000000BB.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000BC.html b/Database/VSdoc/topic_00000000000000BC.html index 19ad3469..360a804d 100644 --- a/Database/VSdoc/topic_00000000000000BC.html +++ b/Database/VSdoc/topic_00000000000000BC.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000BD.html b/Database/VSdoc/topic_00000000000000BD.html index 322a9eb3..c4a9125c 100644 --- a/Database/VSdoc/topic_00000000000000BD.html +++ b/Database/VSdoc/topic_00000000000000BD.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000BE.html b/Database/VSdoc/topic_00000000000000BE.html index 172dcf23..8d3e0715 100644 --- a/Database/VSdoc/topic_00000000000000BE.html +++ b/Database/VSdoc/topic_00000000000000BE.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000BF.html b/Database/VSdoc/topic_00000000000000BF.html index e33b26a8..325f273e 100644 --- a/Database/VSdoc/topic_00000000000000BF.html +++ b/Database/VSdoc/topic_00000000000000BF.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000C0.html b/Database/VSdoc/topic_00000000000000C0.html index 6ca7e898..6b8a0f04 100644 --- a/Database/VSdoc/topic_00000000000000C0.html +++ b/Database/VSdoc/topic_00000000000000C0.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000C1.html b/Database/VSdoc/topic_00000000000000C1.html index 1a32afbc..f1de941b 100644 --- a/Database/VSdoc/topic_00000000000000C1.html +++ b/Database/VSdoc/topic_00000000000000C1.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000C2.html b/Database/VSdoc/topic_00000000000000C2.html index 6cd7d0e9..d66eab7b 100644 --- a/Database/VSdoc/topic_00000000000000C2.html +++ b/Database/VSdoc/topic_00000000000000C2.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000C3.html b/Database/VSdoc/topic_00000000000000C3.html index f8519382..0f617853 100644 --- a/Database/VSdoc/topic_00000000000000C3.html +++ b/Database/VSdoc/topic_00000000000000C3.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000C4.html b/Database/VSdoc/topic_00000000000000C4.html index 08b888dd..9afb68ea 100644 --- a/Database/VSdoc/topic_00000000000000C4.html +++ b/Database/VSdoc/topic_00000000000000C4.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000C5.html b/Database/VSdoc/topic_00000000000000C5.html index 7d140df3..24c077a7 100644 --- a/Database/VSdoc/topic_00000000000000C5.html +++ b/Database/VSdoc/topic_00000000000000C5.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000C6.html b/Database/VSdoc/topic_00000000000000C6.html index 8de96a4a..e20ece59 100644 --- a/Database/VSdoc/topic_00000000000000C6.html +++ b/Database/VSdoc/topic_00000000000000C6.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000C7.html b/Database/VSdoc/topic_00000000000000C7.html index 9d65e829..86f5ff4e 100644 --- a/Database/VSdoc/topic_00000000000000C7.html +++ b/Database/VSdoc/topic_00000000000000C7.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000C8.html b/Database/VSdoc/topic_00000000000000C8.html index b204936b..ec06ed67 100644 --- a/Database/VSdoc/topic_00000000000000C8.html +++ b/Database/VSdoc/topic_00000000000000C8.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000C9.html b/Database/VSdoc/topic_00000000000000C9.html index fb670a46..c5053bd7 100644 --- a/Database/VSdoc/topic_00000000000000C9.html +++ b/Database/VSdoc/topic_00000000000000C9.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000CA.html b/Database/VSdoc/topic_00000000000000CA.html index af3ae78c..89ad0b91 100644 --- a/Database/VSdoc/topic_00000000000000CA.html +++ b/Database/VSdoc/topic_00000000000000CA.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000CB.html b/Database/VSdoc/topic_00000000000000CB.html index b7a23b44..a2ec830f 100644 --- a/Database/VSdoc/topic_00000000000000CB.html +++ b/Database/VSdoc/topic_00000000000000CB.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000CC.html b/Database/VSdoc/topic_00000000000000CC.html index e8196f8c..db93cd0c 100644 --- a/Database/VSdoc/topic_00000000000000CC.html +++ b/Database/VSdoc/topic_00000000000000CC.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000CD.html b/Database/VSdoc/topic_00000000000000CD.html index 5c0d6bad..1c05bd43 100644 --- a/Database/VSdoc/topic_00000000000000CD.html +++ b/Database/VSdoc/topic_00000000000000CD.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000CE.html b/Database/VSdoc/topic_00000000000000CE.html index 8c0a8311..b6e92fe7 100644 --- a/Database/VSdoc/topic_00000000000000CE.html +++ b/Database/VSdoc/topic_00000000000000CE.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000CF.html b/Database/VSdoc/topic_00000000000000CF.html index 4149cb39..91995158 100644 --- a/Database/VSdoc/topic_00000000000000CF.html +++ b/Database/VSdoc/topic_00000000000000CF.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000D0.html b/Database/VSdoc/topic_00000000000000D0.html index 2e39c06e..c558015f 100644 --- a/Database/VSdoc/topic_00000000000000D0.html +++ b/Database/VSdoc/topic_00000000000000D0.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000D1.html b/Database/VSdoc/topic_00000000000000D1.html index 604cb4f5..bf9c0627 100644 --- a/Database/VSdoc/topic_00000000000000D1.html +++ b/Database/VSdoc/topic_00000000000000D1.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000D2.html b/Database/VSdoc/topic_00000000000000D2.html index 1dc184ba..bd431847 100644 --- a/Database/VSdoc/topic_00000000000000D2.html +++ b/Database/VSdoc/topic_00000000000000D2.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000D3.html b/Database/VSdoc/topic_00000000000000D3.html index c40d03f2..e34e7616 100644 --- a/Database/VSdoc/topic_00000000000000D3.html +++ b/Database/VSdoc/topic_00000000000000D3.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000D4.html b/Database/VSdoc/topic_00000000000000D4.html index 40e4bf0c..cdb029e5 100644 --- a/Database/VSdoc/topic_00000000000000D4.html +++ b/Database/VSdoc/topic_00000000000000D4.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000D5.html b/Database/VSdoc/topic_00000000000000D5.html index 004287c5..a5848d49 100644 --- a/Database/VSdoc/topic_00000000000000D5.html +++ b/Database/VSdoc/topic_00000000000000D5.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000D6.html b/Database/VSdoc/topic_00000000000000D6.html index 31bc10df..50eb9b85 100644 --- a/Database/VSdoc/topic_00000000000000D6.html +++ b/Database/VSdoc/topic_00000000000000D6.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000D7.html b/Database/VSdoc/topic_00000000000000D7.html index fc29f193..48ced1c6 100644 --- a/Database/VSdoc/topic_00000000000000D7.html +++ b/Database/VSdoc/topic_00000000000000D7.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000D8.html b/Database/VSdoc/topic_00000000000000D8.html index 0ac1cee6..bb30cfb6 100644 --- a/Database/VSdoc/topic_00000000000000D8.html +++ b/Database/VSdoc/topic_00000000000000D8.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000D9.html b/Database/VSdoc/topic_00000000000000D9.html index 3f7229f7..ba96272a 100644 --- a/Database/VSdoc/topic_00000000000000D9.html +++ b/Database/VSdoc/topic_00000000000000D9.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000DA.html b/Database/VSdoc/topic_00000000000000DA.html index ce5eaa0e..d34ace08 100644 --- a/Database/VSdoc/topic_00000000000000DA.html +++ b/Database/VSdoc/topic_00000000000000DA.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000DB.html b/Database/VSdoc/topic_00000000000000DB.html index d867ad5d..06556dba 100644 --- a/Database/VSdoc/topic_00000000000000DB.html +++ b/Database/VSdoc/topic_00000000000000DB.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000DC.html b/Database/VSdoc/topic_00000000000000DC.html index 28862796..eba3b8eb 100644 --- a/Database/VSdoc/topic_00000000000000DC.html +++ b/Database/VSdoc/topic_00000000000000DC.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000DD.html b/Database/VSdoc/topic_00000000000000DD.html index 2c9a4b4b..739efc1a 100644 --- a/Database/VSdoc/topic_00000000000000DD.html +++ b/Database/VSdoc/topic_00000000000000DD.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000DE.html b/Database/VSdoc/topic_00000000000000DE.html index 97260eb4..a6ad14cf 100644 --- a/Database/VSdoc/topic_00000000000000DE.html +++ b/Database/VSdoc/topic_00000000000000DE.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000DF.html b/Database/VSdoc/topic_00000000000000DF.html index 42f6fe7b..fc977a83 100644 --- a/Database/VSdoc/topic_00000000000000DF.html +++ b/Database/VSdoc/topic_00000000000000DF.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000E0.html b/Database/VSdoc/topic_00000000000000E0.html index 2d5da366..b97be098 100644 --- a/Database/VSdoc/topic_00000000000000E0.html +++ b/Database/VSdoc/topic_00000000000000E0.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000E1.html b/Database/VSdoc/topic_00000000000000E1.html index 495f9c0e..30d0fcad 100644 --- a/Database/VSdoc/topic_00000000000000E1.html +++ b/Database/VSdoc/topic_00000000000000E1.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000E2.html b/Database/VSdoc/topic_00000000000000E2.html index 198047d6..31306cba 100644 --- a/Database/VSdoc/topic_00000000000000E2.html +++ b/Database/VSdoc/topic_00000000000000E2.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000E3.html b/Database/VSdoc/topic_00000000000000E3.html index 41a8f6f8..363dbffe 100644 --- a/Database/VSdoc/topic_00000000000000E3.html +++ b/Database/VSdoc/topic_00000000000000E3.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000E4.html b/Database/VSdoc/topic_00000000000000E4.html index 215c06e9..ffa2d25b 100644 --- a/Database/VSdoc/topic_00000000000000E4.html +++ b/Database/VSdoc/topic_00000000000000E4.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000E5.html b/Database/VSdoc/topic_00000000000000E5.html index 42a27dc5..6c8fb8e1 100644 --- a/Database/VSdoc/topic_00000000000000E5.html +++ b/Database/VSdoc/topic_00000000000000E5.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000E6.html b/Database/VSdoc/topic_00000000000000E6.html index ab5dc331..94f9f7ce 100644 --- a/Database/VSdoc/topic_00000000000000E6.html +++ b/Database/VSdoc/topic_00000000000000E6.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000E7.html b/Database/VSdoc/topic_00000000000000E7.html index 781528c2..137e6822 100644 --- a/Database/VSdoc/topic_00000000000000E7.html +++ b/Database/VSdoc/topic_00000000000000E7.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000E8.html b/Database/VSdoc/topic_00000000000000E8.html index 0c427088..53c43204 100644 --- a/Database/VSdoc/topic_00000000000000E8.html +++ b/Database/VSdoc/topic_00000000000000E8.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000E9.html b/Database/VSdoc/topic_00000000000000E9.html index bfe4034e..6e58ec3d 100644 --- a/Database/VSdoc/topic_00000000000000E9.html +++ b/Database/VSdoc/topic_00000000000000E9.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000EA.html b/Database/VSdoc/topic_00000000000000EA.html index 25513f92..f401d5f9 100644 --- a/Database/VSdoc/topic_00000000000000EA.html +++ b/Database/VSdoc/topic_00000000000000EA.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000EB.html b/Database/VSdoc/topic_00000000000000EB.html index bda1cbf9..65864532 100644 --- a/Database/VSdoc/topic_00000000000000EB.html +++ b/Database/VSdoc/topic_00000000000000EB.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000EC.html b/Database/VSdoc/topic_00000000000000EC.html index a30d0461..98336db5 100644 --- a/Database/VSdoc/topic_00000000000000EC.html +++ b/Database/VSdoc/topic_00000000000000EC.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000ED.html b/Database/VSdoc/topic_00000000000000ED.html index 32686427..9ed9c543 100644 --- a/Database/VSdoc/topic_00000000000000ED.html +++ b/Database/VSdoc/topic_00000000000000ED.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000EE.html b/Database/VSdoc/topic_00000000000000EE.html index 82736bcb..7dfdedfa 100644 --- a/Database/VSdoc/topic_00000000000000EE.html +++ b/Database/VSdoc/topic_00000000000000EE.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000EF.html b/Database/VSdoc/topic_00000000000000EF.html index c6a7a41f..27688132 100644 --- a/Database/VSdoc/topic_00000000000000EF.html +++ b/Database/VSdoc/topic_00000000000000EF.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000F0.html b/Database/VSdoc/topic_00000000000000F0.html index 450ca028..1c61ee9d 100644 --- a/Database/VSdoc/topic_00000000000000F0.html +++ b/Database/VSdoc/topic_00000000000000F0.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000F1.html b/Database/VSdoc/topic_00000000000000F1.html index 9955d28c..73d0ec73 100644 --- a/Database/VSdoc/topic_00000000000000F1.html +++ b/Database/VSdoc/topic_00000000000000F1.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -757,7 +757,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -771,129 +771,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- - @@ -1328,17 +1085,14 @@ inheritedMember
- - -
edoka_dms.clsDBInteractionBase + -
edoka_dms.clsKey_tabelle
+
edoka_dms.clsKey_tabelle
-
edoka_dms.clsMyKey_Tabelle + diff --git a/Database/VSdoc/topic_00000000000000F1_attached_props--.html b/Database/VSdoc/topic_00000000000000F1_attached_props--.html index 8148e1fa..3b7f3950 100644 --- a/Database/VSdoc/topic_00000000000000F1_attached_props--.html +++ b/Database/VSdoc/topic_00000000000000F1_attached_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000F1_events--.html b/Database/VSdoc/topic_00000000000000F1_events--.html index 7eb4bce8..93fbc5b6 100644 --- a/Database/VSdoc/topic_00000000000000F1_events--.html +++ b/Database/VSdoc/topic_00000000000000F1_events--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000F1_methods--.html b/Database/VSdoc/topic_00000000000000F1_methods--.html index d322d29b..e887bd4b 100644 --- a/Database/VSdoc/topic_00000000000000F1_methods--.html +++ b/Database/VSdoc/topic_00000000000000F1_methods--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -177,7 +177,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -191,129 +191,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- -
See Also diff --git a/Database/VSdoc/topic_00000000000000F1_props--.html b/Database/VSdoc/topic_00000000000000F1_props--.html index c01a630c..4b798caf 100644 --- a/Database/VSdoc/topic_00000000000000F1_props--.html +++ b/Database/VSdoc/topic_00000000000000F1_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000F1_vars--.html b/Database/VSdoc/topic_00000000000000F1_vars--.html index 2cb8c052..c37e202b 100644 --- a/Database/VSdoc/topic_00000000000000F1_vars--.html +++ b/Database/VSdoc/topic_00000000000000F1_vars--.html @@ -39,7 +39,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000F2.html b/Database/VSdoc/topic_00000000000000F2.html index 6fe9a78d..f2400cb6 100644 --- a/Database/VSdoc/topic_00000000000000F2.html +++ b/Database/VSdoc/topic_00000000000000F2.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000F3.html b/Database/VSdoc/topic_00000000000000F3.html index 316ca7ae..9930c1af 100644 --- a/Database/VSdoc/topic_00000000000000F3.html +++ b/Database/VSdoc/topic_00000000000000F3.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000F4.html b/Database/VSdoc/topic_00000000000000F4.html index 2df74a22..300ba7ad 100644 --- a/Database/VSdoc/topic_00000000000000F4.html +++ b/Database/VSdoc/topic_00000000000000F4.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000F5.html b/Database/VSdoc/topic_00000000000000F5.html index d4a6e78f..02c56499 100644 --- a/Database/VSdoc/topic_00000000000000F5.html +++ b/Database/VSdoc/topic_00000000000000F5.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000F6.html b/Database/VSdoc/topic_00000000000000F6.html index 2ef42f18..4777d0ae 100644 --- a/Database/VSdoc/topic_00000000000000F6.html +++ b/Database/VSdoc/topic_00000000000000F6.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000F7.html b/Database/VSdoc/topic_00000000000000F7.html index a11ade40..3ef44116 100644 --- a/Database/VSdoc/topic_00000000000000F7.html +++ b/Database/VSdoc/topic_00000000000000F7.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000F8.html b/Database/VSdoc/topic_00000000000000F8.html index 5406ad28..fbfa7524 100644 --- a/Database/VSdoc/topic_00000000000000F8.html +++ b/Database/VSdoc/topic_00000000000000F8.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000F9.html b/Database/VSdoc/topic_00000000000000F9.html index d987cd14..52547006 100644 --- a/Database/VSdoc/topic_00000000000000F9.html +++ b/Database/VSdoc/topic_00000000000000F9.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000FA.html b/Database/VSdoc/topic_00000000000000FA.html index 629a1aba..1e89a4d6 100644 --- a/Database/VSdoc/topic_00000000000000FA.html +++ b/Database/VSdoc/topic_00000000000000FA.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000FB.html b/Database/VSdoc/topic_00000000000000FB.html index 67a31c66..9849385f 100644 --- a/Database/VSdoc/topic_00000000000000FB.html +++ b/Database/VSdoc/topic_00000000000000FB.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000FC.html b/Database/VSdoc/topic_00000000000000FC.html index 4548f511..1cf7d62a 100644 --- a/Database/VSdoc/topic_00000000000000FC.html +++ b/Database/VSdoc/topic_00000000000000FC.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000FD.html b/Database/VSdoc/topic_00000000000000FD.html index b0117525..9387e271 100644 --- a/Database/VSdoc/topic_00000000000000FD.html +++ b/Database/VSdoc/topic_00000000000000FD.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000FE.html b/Database/VSdoc/topic_00000000000000FE.html index 84c541e9..ce6e4723 100644 --- a/Database/VSdoc/topic_00000000000000FE.html +++ b/Database/VSdoc/topic_00000000000000FE.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_00000000000000FF.html b/Database/VSdoc/topic_00000000000000FF.html index 39975b48..4f4a2859 100644 --- a/Database/VSdoc/topic_00000000000000FF.html +++ b/Database/VSdoc/topic_00000000000000FF.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000100.html b/Database/VSdoc/topic_0000000000000100.html index 9c091db4..95d3da1a 100644 --- a/Database/VSdoc/topic_0000000000000100.html +++ b/Database/VSdoc/topic_0000000000000100.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -1333,7 +1333,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -1347,129 +1347,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- - @@ -1904,15 +1661,12 @@ inheritedMember
- - -
edoka_dms.clsDBInteractionBase + -
edoka_dms.clsMitarbeiter
+
edoka_dms.clsMitarbeiter
diff --git a/Database/VSdoc/topic_0000000000000100_attached_props--.html b/Database/VSdoc/topic_0000000000000100_attached_props--.html index 43d94b45..afd52958 100644 --- a/Database/VSdoc/topic_0000000000000100_attached_props--.html +++ b/Database/VSdoc/topic_0000000000000100_attached_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000100_events--.html b/Database/VSdoc/topic_0000000000000100_events--.html index 0785a75f..c61d1d71 100644 --- a/Database/VSdoc/topic_0000000000000100_events--.html +++ b/Database/VSdoc/topic_0000000000000100_events--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000100_methods--.html b/Database/VSdoc/topic_0000000000000100_methods--.html index d787964c..e855074c 100644 --- a/Database/VSdoc/topic_0000000000000100_methods--.html +++ b/Database/VSdoc/topic_0000000000000100_methods--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -177,7 +177,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -191,129 +191,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- -
See Also diff --git a/Database/VSdoc/topic_0000000000000100_props--.html b/Database/VSdoc/topic_0000000000000100_props--.html index c2283dec..59c0969f 100644 --- a/Database/VSdoc/topic_0000000000000100_props--.html +++ b/Database/VSdoc/topic_0000000000000100_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000100_vars--.html b/Database/VSdoc/topic_0000000000000100_vars--.html index 0168f090..65fed637 100644 --- a/Database/VSdoc/topic_0000000000000100_vars--.html +++ b/Database/VSdoc/topic_0000000000000100_vars--.html @@ -39,7 +39,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000101.html b/Database/VSdoc/topic_0000000000000101.html index dbfeb834..bcae43c8 100644 --- a/Database/VSdoc/topic_0000000000000101.html +++ b/Database/VSdoc/topic_0000000000000101.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000102.html b/Database/VSdoc/topic_0000000000000102.html index de29fb0a..3d16fc51 100644 --- a/Database/VSdoc/topic_0000000000000102.html +++ b/Database/VSdoc/topic_0000000000000102.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000103.html b/Database/VSdoc/topic_0000000000000103.html index f5b7d376..9e08cead 100644 --- a/Database/VSdoc/topic_0000000000000103.html +++ b/Database/VSdoc/topic_0000000000000103.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000104.html b/Database/VSdoc/topic_0000000000000104.html index 4af72e78..520d9fc4 100644 --- a/Database/VSdoc/topic_0000000000000104.html +++ b/Database/VSdoc/topic_0000000000000104.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000105.html b/Database/VSdoc/topic_0000000000000105.html index 67feaa1d..4c9ed091 100644 --- a/Database/VSdoc/topic_0000000000000105.html +++ b/Database/VSdoc/topic_0000000000000105.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000106.html b/Database/VSdoc/topic_0000000000000106.html index 576710e5..db622494 100644 --- a/Database/VSdoc/topic_0000000000000106.html +++ b/Database/VSdoc/topic_0000000000000106.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000107.html b/Database/VSdoc/topic_0000000000000107.html index ea2614b2..3e3e5e35 100644 --- a/Database/VSdoc/topic_0000000000000107.html +++ b/Database/VSdoc/topic_0000000000000107.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000108.html b/Database/VSdoc/topic_0000000000000108.html index 9aecc112..b1a92c36 100644 --- a/Database/VSdoc/topic_0000000000000108.html +++ b/Database/VSdoc/topic_0000000000000108.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000109.html b/Database/VSdoc/topic_0000000000000109.html index 9f2c2829..8a772bde 100644 --- a/Database/VSdoc/topic_0000000000000109.html +++ b/Database/VSdoc/topic_0000000000000109.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000010A.html b/Database/VSdoc/topic_000000000000010A.html index 2f216c9d..75c1b08b 100644 --- a/Database/VSdoc/topic_000000000000010A.html +++ b/Database/VSdoc/topic_000000000000010A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000010B.html b/Database/VSdoc/topic_000000000000010B.html index 1dd516e5..63c23b1a 100644 --- a/Database/VSdoc/topic_000000000000010B.html +++ b/Database/VSdoc/topic_000000000000010B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000010C.html b/Database/VSdoc/topic_000000000000010C.html index f03fa980..8daa4f12 100644 --- a/Database/VSdoc/topic_000000000000010C.html +++ b/Database/VSdoc/topic_000000000000010C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000010D.html b/Database/VSdoc/topic_000000000000010D.html index cb96ffef..9b79b230 100644 --- a/Database/VSdoc/topic_000000000000010D.html +++ b/Database/VSdoc/topic_000000000000010D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000010E.html b/Database/VSdoc/topic_000000000000010E.html index c086ab90..2a302e15 100644 --- a/Database/VSdoc/topic_000000000000010E.html +++ b/Database/VSdoc/topic_000000000000010E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000010F.html b/Database/VSdoc/topic_000000000000010F.html index aa35d569..80ea9941 100644 --- a/Database/VSdoc/topic_000000000000010F.html +++ b/Database/VSdoc/topic_000000000000010F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000110.html b/Database/VSdoc/topic_0000000000000110.html index 69413b0f..82262412 100644 --- a/Database/VSdoc/topic_0000000000000110.html +++ b/Database/VSdoc/topic_0000000000000110.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000111.html b/Database/VSdoc/topic_0000000000000111.html index 1a5d1c49..af0d352a 100644 --- a/Database/VSdoc/topic_0000000000000111.html +++ b/Database/VSdoc/topic_0000000000000111.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000112.html b/Database/VSdoc/topic_0000000000000112.html index ba0cc522..c9617e36 100644 --- a/Database/VSdoc/topic_0000000000000112.html +++ b/Database/VSdoc/topic_0000000000000112.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000113.html b/Database/VSdoc/topic_0000000000000113.html index 9a10ceb4..b428fea0 100644 --- a/Database/VSdoc/topic_0000000000000113.html +++ b/Database/VSdoc/topic_0000000000000113.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000114.html b/Database/VSdoc/topic_0000000000000114.html index 9829da45..3d8a0610 100644 --- a/Database/VSdoc/topic_0000000000000114.html +++ b/Database/VSdoc/topic_0000000000000114.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000115.html b/Database/VSdoc/topic_0000000000000115.html index 53cdadb5..123ea098 100644 --- a/Database/VSdoc/topic_0000000000000115.html +++ b/Database/VSdoc/topic_0000000000000115.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000116.html b/Database/VSdoc/topic_0000000000000116.html index f72e2de3..b5206b8f 100644 --- a/Database/VSdoc/topic_0000000000000116.html +++ b/Database/VSdoc/topic_0000000000000116.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000117.html b/Database/VSdoc/topic_0000000000000117.html index 0b6ca2fe..f1bd8928 100644 --- a/Database/VSdoc/topic_0000000000000117.html +++ b/Database/VSdoc/topic_0000000000000117.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000118.html b/Database/VSdoc/topic_0000000000000118.html index 9551a2f9..78a2d485 100644 --- a/Database/VSdoc/topic_0000000000000118.html +++ b/Database/VSdoc/topic_0000000000000118.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000119.html b/Database/VSdoc/topic_0000000000000119.html index 256c017f..1d649ee2 100644 --- a/Database/VSdoc/topic_0000000000000119.html +++ b/Database/VSdoc/topic_0000000000000119.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000011A.html b/Database/VSdoc/topic_000000000000011A.html index bdae096a..192bf80a 100644 --- a/Database/VSdoc/topic_000000000000011A.html +++ b/Database/VSdoc/topic_000000000000011A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000011B.html b/Database/VSdoc/topic_000000000000011B.html index c07a99f4..483d3286 100644 --- a/Database/VSdoc/topic_000000000000011B.html +++ b/Database/VSdoc/topic_000000000000011B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000011C.html b/Database/VSdoc/topic_000000000000011C.html index cd36b56c..3c0bf35b 100644 --- a/Database/VSdoc/topic_000000000000011C.html +++ b/Database/VSdoc/topic_000000000000011C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000011D.html b/Database/VSdoc/topic_000000000000011D.html index 9b4d69e3..a25c978b 100644 --- a/Database/VSdoc/topic_000000000000011D.html +++ b/Database/VSdoc/topic_000000000000011D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000011E.html b/Database/VSdoc/topic_000000000000011E.html index d0c54073..25830c11 100644 --- a/Database/VSdoc/topic_000000000000011E.html +++ b/Database/VSdoc/topic_000000000000011E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000011F.html b/Database/VSdoc/topic_000000000000011F.html index 4fc438aa..003e1dde 100644 --- a/Database/VSdoc/topic_000000000000011F.html +++ b/Database/VSdoc/topic_000000000000011F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000120.html b/Database/VSdoc/topic_0000000000000120.html index 6f8bd6f9..368aacd2 100644 --- a/Database/VSdoc/topic_0000000000000120.html +++ b/Database/VSdoc/topic_0000000000000120.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000121.html b/Database/VSdoc/topic_0000000000000121.html index fb7b2466..b5fae10d 100644 --- a/Database/VSdoc/topic_0000000000000121.html +++ b/Database/VSdoc/topic_0000000000000121.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000122.html b/Database/VSdoc/topic_0000000000000122.html index 00832bea..9b7ba2d7 100644 --- a/Database/VSdoc/topic_0000000000000122.html +++ b/Database/VSdoc/topic_0000000000000122.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000123.html b/Database/VSdoc/topic_0000000000000123.html index 8531f0e7..ecd1da03 100644 --- a/Database/VSdoc/topic_0000000000000123.html +++ b/Database/VSdoc/topic_0000000000000123.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000124.html b/Database/VSdoc/topic_0000000000000124.html index efe620f0..cef918b8 100644 --- a/Database/VSdoc/topic_0000000000000124.html +++ b/Database/VSdoc/topic_0000000000000124.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000125.html b/Database/VSdoc/topic_0000000000000125.html index 28d10880..76213a20 100644 --- a/Database/VSdoc/topic_0000000000000125.html +++ b/Database/VSdoc/topic_0000000000000125.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000126.html b/Database/VSdoc/topic_0000000000000126.html index e2c5c13f..df9cc1b7 100644 --- a/Database/VSdoc/topic_0000000000000126.html +++ b/Database/VSdoc/topic_0000000000000126.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000127.html b/Database/VSdoc/topic_0000000000000127.html index e38b24d5..d11100e7 100644 --- a/Database/VSdoc/topic_0000000000000127.html +++ b/Database/VSdoc/topic_0000000000000127.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -724,7 +724,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -738,129 +738,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- - @@ -1351,18 +1108,15 @@ inheritedMember
- - -
edoka_dms.clsDBInteractionBase + -
edoka_dms.clsKey_tabelle + -
edoka_dms.clsMyKey_Tabelle
+
edoka_dms.clsMyKey_Tabelle
diff --git a/Database/VSdoc/topic_0000000000000127_attached_props--.html b/Database/VSdoc/topic_0000000000000127_attached_props--.html index 99aa60ec..8e8e3bec 100644 --- a/Database/VSdoc/topic_0000000000000127_attached_props--.html +++ b/Database/VSdoc/topic_0000000000000127_attached_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000127_events--.html b/Database/VSdoc/topic_0000000000000127_events--.html index c346d3cb..01c18ea8 100644 --- a/Database/VSdoc/topic_0000000000000127_events--.html +++ b/Database/VSdoc/topic_0000000000000127_events--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000127_methods--.html b/Database/VSdoc/topic_0000000000000127_methods--.html index 3ca24ae3..1808cdd4 100644 --- a/Database/VSdoc/topic_0000000000000127_methods--.html +++ b/Database/VSdoc/topic_0000000000000127_methods--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -179,7 +179,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -193,129 +193,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- -
See Also diff --git a/Database/VSdoc/topic_0000000000000127_props--.html b/Database/VSdoc/topic_0000000000000127_props--.html index e6bda305..34fad5b8 100644 --- a/Database/VSdoc/topic_0000000000000127_props--.html +++ b/Database/VSdoc/topic_0000000000000127_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000127_vars--.html b/Database/VSdoc/topic_0000000000000127_vars--.html index 890d1398..d367e639 100644 --- a/Database/VSdoc/topic_0000000000000127_vars--.html +++ b/Database/VSdoc/topic_0000000000000127_vars--.html @@ -39,7 +39,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000128.html b/Database/VSdoc/topic_0000000000000128.html index 267250c9..45201e9c 100644 --- a/Database/VSdoc/topic_0000000000000128.html +++ b/Database/VSdoc/topic_0000000000000128.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000129.html b/Database/VSdoc/topic_0000000000000129.html index 1075edf0..80643963 100644 --- a/Database/VSdoc/topic_0000000000000129.html +++ b/Database/VSdoc/topic_0000000000000129.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000012A.html b/Database/VSdoc/topic_000000000000012A.html index a5a144f4..83034684 100644 --- a/Database/VSdoc/topic_000000000000012A.html +++ b/Database/VSdoc/topic_000000000000012A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -1909,7 +1909,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -1923,129 +1923,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- - @@ -2480,15 +2237,12 @@ inheritedMember
- - -
edoka_dms.clsDBInteractionBase + -
edoka_dms.clsPartner
+
edoka_dms.clsPartner
diff --git a/Database/VSdoc/topic_000000000000012A_attached_props--.html b/Database/VSdoc/topic_000000000000012A_attached_props--.html index a7e05e49..4699597c 100644 --- a/Database/VSdoc/topic_000000000000012A_attached_props--.html +++ b/Database/VSdoc/topic_000000000000012A_attached_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000012A_events--.html b/Database/VSdoc/topic_000000000000012A_events--.html index f21359ae..408fc484 100644 --- a/Database/VSdoc/topic_000000000000012A_events--.html +++ b/Database/VSdoc/topic_000000000000012A_events--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000012A_methods--.html b/Database/VSdoc/topic_000000000000012A_methods--.html index 5adea571..1e45f065 100644 --- a/Database/VSdoc/topic_000000000000012A_methods--.html +++ b/Database/VSdoc/topic_000000000000012A_methods--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -177,7 +177,7 @@ inheritedMember -Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückgabe oder dem Zurücksetzen von nicht verwalteten Ressourcen zusammenhängen. + (inherited from clsDBInteractionBase). @@ -191,129 +191,6 @@ Führt anwendungsspezifische Aufgaben durch, die mit der Freigabe, der Zurückga - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
- -
See Also diff --git a/Database/VSdoc/topic_000000000000012A_props--.html b/Database/VSdoc/topic_000000000000012A_props--.html index 2a360863..f5e8504f 100644 --- a/Database/VSdoc/topic_000000000000012A_props--.html +++ b/Database/VSdoc/topic_000000000000012A_props--.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000012A_vars--.html b/Database/VSdoc/topic_000000000000012A_vars--.html index 137fe2cf..25f8388f 100644 --- a/Database/VSdoc/topic_000000000000012A_vars--.html +++ b/Database/VSdoc/topic_000000000000012A_vars--.html @@ -39,7 +39,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000012B.html b/Database/VSdoc/topic_000000000000012B.html index 100addec..72c70bae 100644 --- a/Database/VSdoc/topic_000000000000012B.html +++ b/Database/VSdoc/topic_000000000000012B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000012C.html b/Database/VSdoc/topic_000000000000012C.html index ecd040ab..c8faeeb9 100644 --- a/Database/VSdoc/topic_000000000000012C.html +++ b/Database/VSdoc/topic_000000000000012C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000012D.html b/Database/VSdoc/topic_000000000000012D.html index 7d948f56..a9d6438a 100644 --- a/Database/VSdoc/topic_000000000000012D.html +++ b/Database/VSdoc/topic_000000000000012D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000012E.html b/Database/VSdoc/topic_000000000000012E.html index ae5e8fe8..86e15573 100644 --- a/Database/VSdoc/topic_000000000000012E.html +++ b/Database/VSdoc/topic_000000000000012E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000012F.html b/Database/VSdoc/topic_000000000000012F.html index 2d57a649..b2e53dc9 100644 --- a/Database/VSdoc/topic_000000000000012F.html +++ b/Database/VSdoc/topic_000000000000012F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000130.html b/Database/VSdoc/topic_0000000000000130.html index d5589f3a..9a426b40 100644 --- a/Database/VSdoc/topic_0000000000000130.html +++ b/Database/VSdoc/topic_0000000000000130.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000131.html b/Database/VSdoc/topic_0000000000000131.html index 08207ba1..afacfcc0 100644 --- a/Database/VSdoc/topic_0000000000000131.html +++ b/Database/VSdoc/topic_0000000000000131.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000132.html b/Database/VSdoc/topic_0000000000000132.html index 9f8639f4..cda4821f 100644 --- a/Database/VSdoc/topic_0000000000000132.html +++ b/Database/VSdoc/topic_0000000000000132.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000133.html b/Database/VSdoc/topic_0000000000000133.html index d819dd08..dcdbb423 100644 --- a/Database/VSdoc/topic_0000000000000133.html +++ b/Database/VSdoc/topic_0000000000000133.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000134.html b/Database/VSdoc/topic_0000000000000134.html index d9e997e9..d62437c5 100644 --- a/Database/VSdoc/topic_0000000000000134.html +++ b/Database/VSdoc/topic_0000000000000134.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000135.html b/Database/VSdoc/topic_0000000000000135.html index fd44368c..25f409eb 100644 --- a/Database/VSdoc/topic_0000000000000135.html +++ b/Database/VSdoc/topic_0000000000000135.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000136.html b/Database/VSdoc/topic_0000000000000136.html index 435de044..3416c568 100644 --- a/Database/VSdoc/topic_0000000000000136.html +++ b/Database/VSdoc/topic_0000000000000136.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000137.html b/Database/VSdoc/topic_0000000000000137.html index c77ca361..c36b1397 100644 --- a/Database/VSdoc/topic_0000000000000137.html +++ b/Database/VSdoc/topic_0000000000000137.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000138.html b/Database/VSdoc/topic_0000000000000138.html index 46eb8665..fcfe9cfe 100644 --- a/Database/VSdoc/topic_0000000000000138.html +++ b/Database/VSdoc/topic_0000000000000138.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000139.html b/Database/VSdoc/topic_0000000000000139.html index 321ca61e..d1bfe8a5 100644 --- a/Database/VSdoc/topic_0000000000000139.html +++ b/Database/VSdoc/topic_0000000000000139.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000013A.html b/Database/VSdoc/topic_000000000000013A.html index 887077ef..34d10d37 100644 --- a/Database/VSdoc/topic_000000000000013A.html +++ b/Database/VSdoc/topic_000000000000013A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000013B.html b/Database/VSdoc/topic_000000000000013B.html index 0e5c5d03..c4891682 100644 --- a/Database/VSdoc/topic_000000000000013B.html +++ b/Database/VSdoc/topic_000000000000013B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000013C.html b/Database/VSdoc/topic_000000000000013C.html index 4fc9eeb9..f71241f2 100644 --- a/Database/VSdoc/topic_000000000000013C.html +++ b/Database/VSdoc/topic_000000000000013C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000013D.html b/Database/VSdoc/topic_000000000000013D.html index 3fc7ef53..c04991c9 100644 --- a/Database/VSdoc/topic_000000000000013D.html +++ b/Database/VSdoc/topic_000000000000013D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000013E.html b/Database/VSdoc/topic_000000000000013E.html index 1d128fb7..c9e97d92 100644 --- a/Database/VSdoc/topic_000000000000013E.html +++ b/Database/VSdoc/topic_000000000000013E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000013F.html b/Database/VSdoc/topic_000000000000013F.html index b9969935..dd27f7f9 100644 --- a/Database/VSdoc/topic_000000000000013F.html +++ b/Database/VSdoc/topic_000000000000013F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000140.html b/Database/VSdoc/topic_0000000000000140.html index f9619591..13d855c0 100644 --- a/Database/VSdoc/topic_0000000000000140.html +++ b/Database/VSdoc/topic_0000000000000140.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000141.html b/Database/VSdoc/topic_0000000000000141.html index f1e4d0d3..59fb3b92 100644 --- a/Database/VSdoc/topic_0000000000000141.html +++ b/Database/VSdoc/topic_0000000000000141.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000142.html b/Database/VSdoc/topic_0000000000000142.html index 37194d40..ae0f7a94 100644 --- a/Database/VSdoc/topic_0000000000000142.html +++ b/Database/VSdoc/topic_0000000000000142.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000143.html b/Database/VSdoc/topic_0000000000000143.html index 95bc56fd..31628d25 100644 --- a/Database/VSdoc/topic_0000000000000143.html +++ b/Database/VSdoc/topic_0000000000000143.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000144.html b/Database/VSdoc/topic_0000000000000144.html index 8a6c5cf6..c6c488da 100644 --- a/Database/VSdoc/topic_0000000000000144.html +++ b/Database/VSdoc/topic_0000000000000144.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000145.html b/Database/VSdoc/topic_0000000000000145.html index ef4a3f89..172b0ec1 100644 --- a/Database/VSdoc/topic_0000000000000145.html +++ b/Database/VSdoc/topic_0000000000000145.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000146.html b/Database/VSdoc/topic_0000000000000146.html index 7ee1c8da..943ff530 100644 --- a/Database/VSdoc/topic_0000000000000146.html +++ b/Database/VSdoc/topic_0000000000000146.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000147.html b/Database/VSdoc/topic_0000000000000147.html index 316859e8..ff50898d 100644 --- a/Database/VSdoc/topic_0000000000000147.html +++ b/Database/VSdoc/topic_0000000000000147.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000148.html b/Database/VSdoc/topic_0000000000000148.html index 420d98fb..13fe4119 100644 --- a/Database/VSdoc/topic_0000000000000148.html +++ b/Database/VSdoc/topic_0000000000000148.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000149.html b/Database/VSdoc/topic_0000000000000149.html index da54208e..885729ed 100644 --- a/Database/VSdoc/topic_0000000000000149.html +++ b/Database/VSdoc/topic_0000000000000149.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000014A.html b/Database/VSdoc/topic_000000000000014A.html index 4c0b5558..d730bd74 100644 --- a/Database/VSdoc/topic_000000000000014A.html +++ b/Database/VSdoc/topic_000000000000014A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000014B.html b/Database/VSdoc/topic_000000000000014B.html index 48edf718..cdb13d39 100644 --- a/Database/VSdoc/topic_000000000000014B.html +++ b/Database/VSdoc/topic_000000000000014B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000014C.html b/Database/VSdoc/topic_000000000000014C.html index 41265f80..87dbbddf 100644 --- a/Database/VSdoc/topic_000000000000014C.html +++ b/Database/VSdoc/topic_000000000000014C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000014D.html b/Database/VSdoc/topic_000000000000014D.html index 41e15c8a..349d89e5 100644 --- a/Database/VSdoc/topic_000000000000014D.html +++ b/Database/VSdoc/topic_000000000000014D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000014E.html b/Database/VSdoc/topic_000000000000014E.html index c20a94e3..de579966 100644 --- a/Database/VSdoc/topic_000000000000014E.html +++ b/Database/VSdoc/topic_000000000000014E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000014F.html b/Database/VSdoc/topic_000000000000014F.html index 499f9191..324d33f0 100644 --- a/Database/VSdoc/topic_000000000000014F.html +++ b/Database/VSdoc/topic_000000000000014F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000150.html b/Database/VSdoc/topic_0000000000000150.html index 4c5011c2..ff5922e6 100644 --- a/Database/VSdoc/topic_0000000000000150.html +++ b/Database/VSdoc/topic_0000000000000150.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000151.html b/Database/VSdoc/topic_0000000000000151.html index c3c4b096..08092acb 100644 --- a/Database/VSdoc/topic_0000000000000151.html +++ b/Database/VSdoc/topic_0000000000000151.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000152.html b/Database/VSdoc/topic_0000000000000152.html index d67121d2..0930de40 100644 --- a/Database/VSdoc/topic_0000000000000152.html +++ b/Database/VSdoc/topic_0000000000000152.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000153.html b/Database/VSdoc/topic_0000000000000153.html index e84c2c07..ab290098 100644 --- a/Database/VSdoc/topic_0000000000000153.html +++ b/Database/VSdoc/topic_0000000000000153.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000154.html b/Database/VSdoc/topic_0000000000000154.html index c12e32c4..a2f1f496 100644 --- a/Database/VSdoc/topic_0000000000000154.html +++ b/Database/VSdoc/topic_0000000000000154.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000155.html b/Database/VSdoc/topic_0000000000000155.html index 2f829e10..aa3db3e1 100644 --- a/Database/VSdoc/topic_0000000000000155.html +++ b/Database/VSdoc/topic_0000000000000155.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000156.html b/Database/VSdoc/topic_0000000000000156.html index 514d431f..49428ba8 100644 --- a/Database/VSdoc/topic_0000000000000156.html +++ b/Database/VSdoc/topic_0000000000000156.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000157.html b/Database/VSdoc/topic_0000000000000157.html index 008c7225..40ec7fcc 100644 --- a/Database/VSdoc/topic_0000000000000157.html +++ b/Database/VSdoc/topic_0000000000000157.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000158.html b/Database/VSdoc/topic_0000000000000158.html index 803b6504..e200cc5c 100644 --- a/Database/VSdoc/topic_0000000000000158.html +++ b/Database/VSdoc/topic_0000000000000158.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000159.html b/Database/VSdoc/topic_0000000000000159.html index 2930f508..60c370fe 100644 --- a/Database/VSdoc/topic_0000000000000159.html +++ b/Database/VSdoc/topic_0000000000000159.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000015A.html b/Database/VSdoc/topic_000000000000015A.html index 49f8da6f..dd738b9e 100644 --- a/Database/VSdoc/topic_000000000000015A.html +++ b/Database/VSdoc/topic_000000000000015A.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000015B.html b/Database/VSdoc/topic_000000000000015B.html index 1be6dc55..2ecf5e1f 100644 --- a/Database/VSdoc/topic_000000000000015B.html +++ b/Database/VSdoc/topic_000000000000015B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000015C.html b/Database/VSdoc/topic_000000000000015C.html index b85ce9cc..05b72c46 100644 --- a/Database/VSdoc/topic_000000000000015C.html +++ b/Database/VSdoc/topic_000000000000015C.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000015D.html b/Database/VSdoc/topic_000000000000015D.html index 62e1a2ed..3739ccf4 100644 --- a/Database/VSdoc/topic_000000000000015D.html +++ b/Database/VSdoc/topic_000000000000015D.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000015E.html b/Database/VSdoc/topic_000000000000015E.html index 946bff68..efa08465 100644 --- a/Database/VSdoc/topic_000000000000015E.html +++ b/Database/VSdoc/topic_000000000000015E.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_000000000000015F.html b/Database/VSdoc/topic_000000000000015F.html index c6e151dc..ce1abb27 100644 --- a/Database/VSdoc/topic_000000000000015F.html +++ b/Database/VSdoc/topic_000000000000015F.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000160.html b/Database/VSdoc/topic_0000000000000160.html index 8291c705..7c4b6830 100644 --- a/Database/VSdoc/topic_0000000000000160.html +++ b/Database/VSdoc/topic_0000000000000160.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000161.html b/Database/VSdoc/topic_0000000000000161.html index f862643c..c3081f64 100644 --- a/Database/VSdoc/topic_0000000000000161.html +++ b/Database/VSdoc/topic_0000000000000161.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000162.html b/Database/VSdoc/topic_0000000000000162.html index dc401900..21962051 100644 --- a/Database/VSdoc/topic_0000000000000162.html +++ b/Database/VSdoc/topic_0000000000000162.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000163.html b/Database/VSdoc/topic_0000000000000163.html index 0c7cb35f..e2992906 100644 --- a/Database/VSdoc/topic_0000000000000163.html +++ b/Database/VSdoc/topic_0000000000000163.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000164.html b/Database/VSdoc/topic_0000000000000164.html index 6d1d19a8..b5a4c69d 100644 --- a/Database/VSdoc/topic_0000000000000164.html +++ b/Database/VSdoc/topic_0000000000000164.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000165.html b/Database/VSdoc/topic_0000000000000165.html index 81b6f7fd..53015724 100644 --- a/Database/VSdoc/topic_0000000000000165.html +++ b/Database/VSdoc/topic_0000000000000165.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000166.html b/Database/VSdoc/topic_0000000000000166.html index 732f3a98..e94803b2 100644 --- a/Database/VSdoc/topic_0000000000000166.html +++ b/Database/VSdoc/topic_0000000000000166.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000167.html b/Database/VSdoc/topic_0000000000000167.html index 89e1faf1..d9b027ca 100644 --- a/Database/VSdoc/topic_0000000000000167.html +++ b/Database/VSdoc/topic_0000000000000167.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000168.html b/Database/VSdoc/topic_0000000000000168.html index b3a6d960..2a39ac5f 100644 --- a/Database/VSdoc/topic_0000000000000168.html +++ b/Database/VSdoc/topic_0000000000000168.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
diff --git a/Database/VSdoc/topic_0000000000000169.html b/Database/VSdoc/topic_0000000000000169.html index 3f483f50..a7e28981 100644 --- a/Database/VSdoc/topic_0000000000000169.html +++ b/Database/VSdoc/topic_0000000000000169.html @@ -4,7 +4,7 @@ - EDOKA_Database Namespace + Database Namespace @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -74,7 +74,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-

EDOKA_Database Namespace

+

Database Namespace

-
EDOKA_Database Reference
+
Database Reference
@@ -74,11 +74,11 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-

EDOKA_DB Class

+

DB Class

-
Public Class EDOKA_DB
+
Public Class DB
This language is not supported or no code example is available.
@@ -177,7 +177,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
public class EDOKA_DB
+
public class DB
This language is not supported or no code example is available.
@@ -217,7 +217,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
public ref class EDOKA_DB 
+
public ref class DB 
This language is not supported or no code example is available.
@@ -256,7 +256,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
public class EDOKA_DB
+
public class DB
This language is not supported or no code example is available.
@@ -316,7 +316,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); - EDOKA_DB() + DB() @@ -336,7 +336,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); - EDOKA_DB(string) + DB(string) @@ -525,36 +525,6 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
@@ -1401,24 +1158,6 @@ inheritedMember -
- - -
- - - - - -
EDOKA_Database.EDOKA_DB
- - -
-
@@ -1482,7 +1221,7 @@ inheritedMember
- EDOKA_Database Namespace
+ Database Namespace
diff --git a/Database/VSdoc/topic_000000000000016A_attached_props--.html b/Database/VSdoc/topic_000000000000016A_attached_props--.html index 0a93e6d8..d096029a 100644 --- a/Database/VSdoc/topic_000000000000016A_attached_props--.html +++ b/Database/VSdoc/topic_000000000000016A_attached_props--.html @@ -4,7 +4,7 @@ - EDOKA_DB Attached Properties + DB Attached Properties @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -75,11 +75,11 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-

EDOKA_DB Attached Properties

+

DB Attached Properties

The following tables list the members exposed by the - EDOKA_DB + DB type.

@@ -93,8 +93,8 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
- EDOKA_DB Class
- EDOKA_Database Namespace
+ DB Class
+ Database Namespace
diff --git a/Database/VSdoc/topic_000000000000016A_events--.html b/Database/VSdoc/topic_000000000000016A_events--.html index be812793..656621f2 100644 --- a/Database/VSdoc/topic_000000000000016A_events--.html +++ b/Database/VSdoc/topic_000000000000016A_events--.html @@ -4,7 +4,7 @@ - EDOKA_DB Events + DB Events @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -75,11 +75,11 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-

EDOKA_DB Events

+

DB Events

The following tables list the members exposed by the - EDOKA_DB + DB type.

@@ -93,8 +93,8 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
- EDOKA_DB Class
- EDOKA_Database Namespace
+ DB Class
+ Database Namespace
diff --git a/Database/VSdoc/topic_000000000000016A_methods--.html b/Database/VSdoc/topic_000000000000016A_methods--.html index 2872a104..7d87b7c2 100644 --- a/Database/VSdoc/topic_000000000000016A_methods--.html +++ b/Database/VSdoc/topic_000000000000016A_methods--.html @@ -4,7 +4,7 @@ - EDOKA_DB Methods + DB Methods @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -75,11 +75,11 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-

EDOKA_DB Methods

+

DB Methods

The following tables list the members exposed by the - EDOKA_DB + DB type.

@@ -248,36 +248,6 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml')); - - -Public method - - - - - - Equals(Object) - - - - -Bestimmt, ob das angegebene Objekt mit dem aktuellen Objekt identisch ist. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - Finalize - - - - -Gibt einem Objekt Gelegenheit zu dem Versuch, Ressourcen freizugeben und andere Bereinigungen durchzuführen, bevor es von der Garbage Collection freigegeben wird. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - GetHashCode - - - - -Fungiert als die Standardhashfunktion. -(inherited from Object). - - - - - - - - - - - - - -Public method - - - - - - GetType - - - - -Ruft den Type der aktuellen Instanz ab. -(inherited from Object). - - - - - - - - - - - - - Protected method - - - - - - - - - MemberwiseClone - - - - -Erstellt eine flache Kopie des aktuellen Object. -(inherited from Object). - - - - - - - - - - - - -Public method - - - - - - ToString - - - - -Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. -(inherited from Object). - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - -
- Name - - Description -
- Public extension method - - - NameOf() - - - - -(Defined by NLogHelper). - -
- - - Top - - -
-
@@ -1044,8 +801,8 @@ inheritedMember
- EDOKA_DB Class
- EDOKA_Database Namespace
+ DB Class
+ Database Namespace
diff --git a/Database/VSdoc/topic_000000000000016A_props--.html b/Database/VSdoc/topic_000000000000016A_props--.html index 72764057..5e608fec 100644 --- a/Database/VSdoc/topic_000000000000016A_props--.html +++ b/Database/VSdoc/topic_000000000000016A_props--.html @@ -4,7 +4,7 @@ - EDOKA_DB Properties + DB Properties @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -75,11 +75,11 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-

EDOKA_DB Properties

+

DB Properties

The following tables list the members exposed by the - EDOKA_DB + DB type.

@@ -93,8 +93,8 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
- EDOKA_DB Class
- EDOKA_Database Namespace
+ DB Class
+ Database Namespace
diff --git a/Database/VSdoc/topic_000000000000016A_vars--.html b/Database/VSdoc/topic_000000000000016A_vars--.html index 80b5dd07..8bc192be 100644 --- a/Database/VSdoc/topic_000000000000016A_vars--.html +++ b/Database/VSdoc/topic_000000000000016A_vars--.html @@ -4,7 +4,7 @@ - EDOKA_DB Fields + DB Fields @@ -39,7 +39,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -76,11 +76,11 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-

EDOKA_DB Fields

+

DB Fields

The following tables list the members exposed by the - EDOKA_DB + DB type.

@@ -159,8 +159,8 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
- EDOKA_DB Class
- EDOKA_Database Namespace
+ DB Class
+ Database Namespace
diff --git a/Database/VSdoc/topic_000000000000016B.html b/Database/VSdoc/topic_000000000000016B.html index b31bb492..d6c391be 100644 --- a/Database/VSdoc/topic_000000000000016B.html +++ b/Database/VSdoc/topic_000000000000016B.html @@ -38,7 +38,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
-
EDOKA_Database Reference
+
Database Reference
@@ -78,7 +78,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));