Esempio n. 1
0
        // Creates an GridSpan instance and adds its children.
        public GridSpan Create()
        {
            GridSpan gridSpan = new GridSpan()
            {
                Val = val
            };

            return(gridSpan);
        }
Esempio n. 2
0
        /// <summary>
        /// Возвращает ячейку с настройками может применятся для создания строки
        /// </summary>
        /// <param name="paragraph">Коллекция параграффов для добавления в ячейку</param>
        /// <param name="number">Количество объединенных ячеек</param>
        /// <param name="width">Длина ячейки</param>
        /// <param name="type">Тип выравнивания</param>
        /// <param name="leftmargin">Левый отступ в пикселях</param>
        /// <param name="rightmargin">Правый отступ в пикселях</param>
        /// <param name="borders">Отражение границы ячейки</param>
        /// <returns></returns>
        public static TableCell GenerateCell(ref ObservableCollection <Paragraph> paragraph, string width, TableWidthUnitValues type, string leftmargin = "0", string rightmargin = "0", TableVerticalAlignmentValues verticalAlignment = TableVerticalAlignmentValues.Bottom, TableCellBorders borders = null, int number = 0)
        {
            TableCell           tableCell           = new TableCell();
            TableCellProperties tableCellProperties = new TableCellProperties();
            TableCellWidth      tableCellWidth      = new TableCellWidth()
            {
                Width = width, Type = type
            };
            GridSpan gridSpan = new GridSpan()
            {
                Val = number
            };
            TableCellVerticalAlignment tcVA = new TableCellVerticalAlignment()
            {
                Val = verticalAlignment
            };

            TableCellMargin tableCellMargin = new TableCellMargin();

            if (leftmargin != "0")
            {
                LeftMargin leftMargin = new LeftMargin()
                {
                    Width = leftmargin, Type = TableWidthUnitValues.Dxa
                };
                tableCellMargin.Append(leftMargin);
            }

            if (rightmargin != "0")
            {
                RightMargin rightMargin = new RightMargin()
                {
                    Width = rightmargin, Type = TableWidthUnitValues.Dxa
                };
                tableCellMargin.Append(rightMargin);
            }
            tableCellProperties.Append(tcVA);
            tableCellProperties.Append(tableCellWidth);
            tableCellProperties.Append(tableCellMargin);
            tableCellProperties.Append(gridSpan);
            if (borders != null)
            {
                tableCellProperties.Append(borders);
            }

            tableCell.Append(tableCellProperties);
            AddParagraphCell(ref tableCell, ref paragraph);

            return(tableCell);
        }
Esempio n. 3
0
        public TableRow DatesRow()
        {
            // DATES ROW FORMATTING PROPERTIES
            TableCellProperties infoProps1 = new TableCellProperties();
            GridSpan            infoSpan1  = new GridSpan()
            {
                Val = 4
            };

            infoProps1.Append(infoSpan1);

            // DATES ROW
            var dater = new TableRow();
            var hc1   = new TableCell();

            hc1.Append(infoProps1);
            hc1.Append(new Paragraph(new Run(new Text("Dates:"))));
            dater.Append(hc1);

            return(dater);
        }
Esempio n. 4
0
        public TableRow DescriptionRow()
        {
            // DESCRIPTION ROW FORMATTING PROPERTIES
            TableCellProperties infoProps2 = new TableCellProperties();
            GridSpan            infoSpan2  = new GridSpan()
            {
                Val = 4
            };

            infoProps2.Append(infoSpan2);

            // DESCRIPTION ROW
            var descr = new TableRow();
            var dc1   = new TableCell();

            dc1.Append(infoProps2);
            dc1.Append(new Paragraph(new Run(new Text("Description:"))));
            descr.Append(dc1);

            return(descr);
        }
Esempio n. 5
0
        private static Table CreateTable(TableStructure tab)
        {
            Table table = new Table();

            ConfigureTableProperties(table);
            TableRowOpenXML tr;
            TableCell       tc;

            //first row - title
            tr = new TableRowOpenXML();
            tc = new TableCell(new Paragraph(new Run(new Text(tab.Title))));
            TableCellProperties tcp      = new TableCellProperties();
            GridSpan            gridSpan = new GridSpan();

            gridSpan.Val = tab.HeaderRow.Count;
            tcp.Append(gridSpan);
            tc.Append(tcp);
            tr.Append(tc);
            table.Append(tr);
            //second row
            tr = new TableRowOpenXML();
            foreach (string celltab in tab.HeaderRow)
            {
                tr.Append(new TableCell(new Paragraph(new Run(new Text(celltab)))));
            }
            table.Append(tr);
            //rest of the table
            foreach (var tabrow in tab.TableRows)
            {
                tr = new TableRowOpenXML();
                foreach (string celltab in tabrow)
                {
                    tr.Append(new TableCell(new Paragraph(new Run(new Text(celltab)))));
                }
                table.Append(tr);
            }
            return(table);
        }
        public override IEnumerable<OpenXmlElement> ToOpenXmlElements(DocumentFormat.OpenXml.Packaging.MainDocumentPart mainDocumentPart)
        {
            TableCell result = new TableCell();
            var cellProperties = new TableCellProperties();

            if (!Width.IsEmpty)
            {
                var cellWidth = UnitHelper.Convert(Width).To<TableCellWidth>();
                cellProperties.Append(cellWidth);
            }

            if (Colspan.HasValue)
            {
                var gridSpan = new GridSpan() { Val = Colspan };
                cellProperties.Append(gridSpan);
            }

            result.Append(cellProperties);

            var paraContent = new Paragraph();
            ForEachChild(x =>
            {
                if (x is TextFormattedElement)
                {
                    paraContent.Append(
                        new Run(x.ToOpenXmlElements(mainDocumentPart))
                    );

                }
                else
                {
                    paraContent.Append(x.ToOpenXmlElements(mainDocumentPart));
                }
            });
            result.Append(paraContent);
            return new List<OpenXmlElement> { result };
        }
Esempio n. 7
0
        // Creates an Table instance and adds its children.
        public static Table GenerateTable(GenerationData data)
        {
            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableWidth      tableWidth1      = new TableWidth()
            {
                Width = "8789", Type = TableWidthUnitValues.Dxa
            };
            TableIndentation tableIndentation1 = new TableIndentation()
            {
                Width = 10, Type = TableWidthUnitValues.Dxa
            };

            TableBorders tableBorders1 = new TableBorders();
            TopBorder    topBorder1    = new TopBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder1 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder1 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder1 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };

            tableBorders1.Append(topBorder1);
            tableBorders1.Append(leftBorder1);
            tableBorders1.Append(bottomBorder1);
            tableBorders1.Append(rightBorder1);
            tableBorders1.Append(insideHorizontalBorder1);
            tableBorders1.Append(insideVerticalBorder1);

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TableCellLeftMargin    tableCellLeftMargin1    = new TableCellLeftMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };
            TableCellRightMargin tableCellRightMargin1 = new TableCellRightMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };

            tableCellMarginDefault1.Append(tableCellLeftMargin1);
            tableCellMarginDefault1.Append(tableCellRightMargin1);
            TableLook tableLook1 = new TableLook()
            {
                Val = "0000", FirstRow = false, LastRow = false, FirstColumn = false, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = false
            };

            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableIndentation1);
            tableProperties1.Append(tableBorders1);
            tableProperties1.Append(tableCellMarginDefault1);
            tableProperties1.Append(tableLook1);

            TableGrid  tableGrid1  = new TableGrid();
            GridColumn gridColumn1 = new GridColumn()
            {
                Width = "2550"
            };
            GridColumn gridColumn2 = new GridColumn()
            {
                Width = "4860"
            };
            GridColumn gridColumn3 = new GridColumn()
            {
                Width = "1379"
            };

            tableGrid1.Append(gridColumn1);
            tableGrid1.Append(gridColumn2);
            tableGrid1.Append(gridColumn3);

            TableRow tableRow1 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", RsidTableRowProperties = "009E39C2", ParagraphId = "0CBEE687", TextId = "77777777"
            };

            TableRowProperties tableRowProperties1 = new TableRowProperties();
            GridAfter          gridAfter1          = new GridAfter()
            {
                Val = 1
            };
            WidthAfterTableRow widthAfterTableRow1 = new WidthAfterTableRow()
            {
                Width = "1379", Type = TableWidthUnitValues.Dxa
            };

            tableRowProperties1.Append(gridAfter1);
            tableRowProperties1.Append(widthAfterTableRow1);

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth      tableCellWidth1      = new TableCellWidth()
            {
                Width = "7410", Type = TableWidthUnitValues.Dxa
            };
            GridSpan gridSpan1 = new GridSpan()
            {
                Val = 2
            };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            TopBorder        topBorder2        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder2 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder2 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder2 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders1.Append(topBorder2);
            tableCellBorders1.Append(leftBorder2);
            tableCellBorders1.Append(bottomBorder2);
            tableCellBorders1.Append(rightBorder2);

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(gridSpan1);
            tableCellProperties1.Append(tableCellBorders1);

            Paragraph paragraph1 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "4C204333", TextId = "77777777"
            };

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            Bold          bold1          = new Bold();
            FontSize      fontSize1      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties1.Append(bold1);
            runProperties1.Append(fontSize1);
            runProperties1.Append(fontSizeComplexScript1);
            Text text1 = new Text();

            text1.Text = DocumentMetadataTexts.GetText(MetadataTexts.CV_SOCIAL_ACTIVITIES, data.Language)?.ToUpper();

            run1.Append(runProperties1);
            run1.Append(text1);

            paragraph1.Append(run1);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph1);

            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);

            var activities = data.SocialActivites;

            foreach (var activity in activities)
            {
                table1.Append(CreateMembershipRow(activity, data.Language));
            }

            return(table1);
        }
Esempio n. 8
0
        // Creates an Table instance and adds its children.
        public static Table GenerateTable(GenerationData data)
        {
            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableWidth      tableWidth1      = new TableWidth()
            {
                Width = "0", Type = TableWidthUnitValues.Auto
            };
            TableIndentation tableIndentation1 = new TableIndentation()
            {
                Width = 10, Type = TableWidthUnitValues.Dxa
            };

            TableBorders tableBorders1 = new TableBorders();
            TopBorder    topBorder1    = new TopBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder1 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder1 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder1 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };

            tableBorders1.Append(topBorder1);
            tableBorders1.Append(leftBorder1);
            tableBorders1.Append(bottomBorder1);
            tableBorders1.Append(rightBorder1);
            tableBorders1.Append(insideHorizontalBorder1);
            tableBorders1.Append(insideVerticalBorder1);

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TableCellLeftMargin    tableCellLeftMargin1    = new TableCellLeftMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };
            TableCellRightMargin tableCellRightMargin1 = new TableCellRightMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };

            tableCellMarginDefault1.Append(tableCellLeftMargin1);
            tableCellMarginDefault1.Append(tableCellRightMargin1);
            TableLook tableLook1 = new TableLook()
            {
                Val = "0000", FirstRow = false, LastRow = false, FirstColumn = false, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = false
            };

            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableIndentation1);
            tableProperties1.Append(tableBorders1);
            tableProperties1.Append(tableCellMarginDefault1);
            tableProperties1.Append(tableLook1);

            TableGrid  tableGrid1  = new TableGrid();
            GridColumn gridColumn1 = new GridColumn()
            {
                Width = "2552"
            };
            GridColumn gridColumn2 = new GridColumn()
            {
                Width = "509"
            };
            GridColumn gridColumn3 = new GridColumn()
            {
                Width = "5870"
            };

            tableGrid1.Append(gridColumn1);
            tableGrid1.Append(gridColumn2);
            tableGrid1.Append(gridColumn3);

            TableRow tableRow1 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", RsidTableRowProperties = "009E39C2", ParagraphId = "45B11039", TextId = "77777777"
            };

            TableRowProperties tableRowProperties1 = new TableRowProperties();
            GridAfter          gridAfter1          = new GridAfter()
            {
                Val = 1
            };
            WidthAfterTableRow widthAfterTableRow1 = new WidthAfterTableRow()
            {
                Width = "5870", Type = TableWidthUnitValues.Dxa
            };

            tableRowProperties1.Append(gridAfter1);
            tableRowProperties1.Append(widthAfterTableRow1);

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth      tableCellWidth1      = new TableCellWidth()
            {
                Width = "3061", Type = TableWidthUnitValues.Dxa
            };
            GridSpan gridSpan1 = new GridSpan()
            {
                Val = 2
            };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            TopBorder        topBorder2        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder2 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder2 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder2 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders1.Append(topBorder2);
            tableCellBorders1.Append(leftBorder2);
            tableCellBorders1.Append(bottomBorder2);
            tableCellBorders1.Append(rightBorder2);

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(gridSpan1);
            tableCellProperties1.Append(tableCellBorders1);

            Paragraph paragraph1 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "50E393FC", TextId = "77777777"
            };

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            Bold          bold1          = new Bold();
            FontSize      fontSize1      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties1.Append(bold1);
            runProperties1.Append(fontSize1);
            runProperties1.Append(fontSizeComplexScript1);
            Text text1 = new Text();

            text1.Text = DocumentMetadataTexts.GetText(MetadataTexts.CV_COMPENSATION, data.Language)?.ToUpper();

            run1.Append(runProperties1);
            run1.Append(text1);

            paragraph1.Append(run1);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph1);

            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);

            if (!string.IsNullOrEmpty(data.Compensation.CurrentSalary))
            {
                table1.Append(CreateItemRow(DocumentMetadataTexts.GetText(MetadataTexts.CV_COMPENSATION_CURRENT_SALARY, data.Language), data.Compensation.CurrentSalary));
            }
            if (!string.IsNullOrEmpty(data.Compensation.CurrentBonuses))
            {
                table1.Append(CreateItemRow(DocumentMetadataTexts.GetText(MetadataTexts.CV_COMPENSATION_CURRENT_BONUSES, data.Language), data.Compensation.CurrentBonuses));
            }
            if (!string.IsNullOrEmpty(data.Compensation.SalaryRequest))
            {
                table1.Append(CreateItemRow(DocumentMetadataTexts.GetText(MetadataTexts.CV_COMPENSATION_REQUESTED_SALARY, data.Language), data.Compensation.SalaryRequest));
            }
            if (!string.IsNullOrEmpty(data.Compensation.BonusRequest))
            {
                table1.Append(CreateItemRow(DocumentMetadataTexts.GetText(MetadataTexts.CV_COMPENSATION_REQUESTED_BONUSES, data.Language), data.Compensation.BonusRequest));
            }
            if (!string.IsNullOrEmpty(data.Compensation.AdditionalBonuses))
            {
                table1.Append(CreateItemRow(DocumentMetadataTexts.GetText(MetadataTexts.CV_COMPENSATION_ADDITIONAL_BONUSES, data.Language), data.Compensation.AdditionalBonuses));
            }

            return(table1);
        }
        //合併儲存格
        public static void TableCellMerge(Table tb, int x1, int y1, int x2, int y2)
        {
            if (x1 == x2 && y1 == y2)
            {
                return;
            }
            int                 minX             = Math.Min(x1, x2);
            int                 maxX             = Math.Max(x1, x2);
            int                 minY             = Math.Min(y1, y2);
            int                 maxY             = Math.Max(y1, y2);
            int                 mergeColumnCount = maxX - minX + 1;
            TableRow            tr;
            TableCell           tc;
            TableCellProperties tcpr;
            GridSpan            gs;
            VerticalMerge       vm;

            //horizontal merge
            for (int j = minY; j <= maxY; j++)
            {
                tr   = tb.Elements <TableRow>().ElementAt <TableRow>(j);
                tc   = tr.Elements <TableCell>().ElementAt <TableCell>(minX);
                tcpr = tc.Elements <TableCellProperties>().FirstOrDefault();
                gs   = new GridSpan()
                {
                    Val = mergeColumnCount
                };
                if (tcpr != null)
                {
                    tcpr.AppendChild <GridSpan>(gs);
                }
                else
                {
                    tc.AppendChild <TableCellProperties>(tcpr);
                    tcpr.AppendChild <GridSpan>(gs);
                }

                for (int i = minX + 1; i <= maxX; i++)
                {
                    tr.Elements <TableCell>().ElementAt <TableCell>(minX + 1).Remove();
                }
            }
            //vertical merge
            if (maxY != minY)
            {
                tr   = tb.Elements <TableRow>().ElementAt <TableRow>(minY);
                tc   = tr.Elements <TableCell>().ElementAt <TableCell>(minX);
                tcpr = tc.Elements <TableCellProperties>().FirstOrDefault();
                vm   = new VerticalMerge()
                {
                    Val = MergedCellValues.Restart
                };
                if (tcpr != null)
                {
                    tcpr.AppendChild <VerticalMerge>(vm);
                }
                else
                {
                    tcpr.AppendChild <VerticalMerge>(vm);
                    tc.AppendChild <TableCellProperties>(tcpr);
                }

                for (int j = minY + 1; j <= maxY; j++)
                {
                    tr   = tb.Elements <TableRow>().ElementAt <TableRow>(j);
                    tc   = tr.Elements <TableCell>().ElementAt <TableCell>(minX);
                    tcpr = tc.Elements <TableCellProperties>().FirstOrDefault();

                    vm = new VerticalMerge()
                    {
                        Val = MergedCellValues.Continue
                    };
                    if (tcpr != null)
                    {
                        tcpr.AppendChild <VerticalMerge>(vm);
                    }
                    else
                    {
                        tcpr.AppendChild <VerticalMerge>(vm);
                        tc.AppendChild <TableCellProperties>(tcpr);
                    }
                }
            }
        }
Esempio n. 10
0
        // Generates content of mainDocumentPart1.
        private void GenerateMainDocumentPart1Content(MainDocumentPart mainDocumentPart1)
        {
            Document document1 = new Document() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "w14 w15 wp14" } };
            document1.AddNamespaceDeclaration("wpc", "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas");
            document1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            document1.AddNamespaceDeclaration("o", "urn:schemas-microsoft-com:office:office");
            document1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            document1.AddNamespaceDeclaration("m", "http://schemas.openxmlformats.org/officeDocument/2006/math");
            document1.AddNamespaceDeclaration("v", "urn:schemas-microsoft-com:vml");
            document1.AddNamespaceDeclaration("wp14", "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing");
            document1.AddNamespaceDeclaration("wp", "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing");
            document1.AddNamespaceDeclaration("w10", "urn:schemas-microsoft-com:office:word");
            document1.AddNamespaceDeclaration("w", "http://schemas.openxmlformats.org/wordprocessingml/2006/main");
            document1.AddNamespaceDeclaration("w14", "http://schemas.microsoft.com/office/word/2010/wordml");
            document1.AddNamespaceDeclaration("w15", "http://schemas.microsoft.com/office/word/2012/wordml");
            document1.AddNamespaceDeclaration("wpg", "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup");
            document1.AddNamespaceDeclaration("wpi", "http://schemas.microsoft.com/office/word/2010/wordprocessingInk");
            document1.AddNamespaceDeclaration("wne", "http://schemas.microsoft.com/office/word/2006/wordml");
            document1.AddNamespaceDeclaration("wps", "http://schemas.microsoft.com/office/word/2010/wordprocessingShape");

            Body body1 = new Body();

            Paragraph paragraph1 = new Paragraph() { RsidParagraphMarkRevision = "00417926", RsidParagraphAddition = "002C2DE6", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00417926" };

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines() { After = "0" };
            Justification justification1 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
            RunFonts runFonts1 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold1 = new Bold();
            FontSize fontSize1 = new FontSize() { Val = "30" };

            paragraphMarkRunProperties1.Append(runFonts1);
            paragraphMarkRunProperties1.Append(bold1);
            paragraphMarkRunProperties1.Append(fontSize1);

            paragraphProperties1.Append(spacingBetweenLines1);
            paragraphProperties1.Append(justification1);
            paragraphProperties1.Append(paragraphMarkRunProperties1);

            Run run1 = new Run() { RsidRunProperties = "00417926" };

            RunProperties runProperties1 = new RunProperties();
            RunFonts runFonts2 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold2 = new Bold();
            FontSize fontSize2 = new FontSize() { Val = "30" };

            runProperties1.Append(runFonts2);
            runProperties1.Append(bold2);
            runProperties1.Append(fontSize2);
            Text text1 = new Text();
            text1.Text = "Hard To Find Books";

            run1.Append(runProperties1);
            run1.Append(text1);

            paragraph1.Append(paragraphProperties1);
            paragraph1.Append(run1);

            Paragraph paragraph2 = new Paragraph() { RsidParagraphMarkRevision = "00417926", RsidParagraphAddition = "00417926", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00417926" };

            ParagraphProperties paragraphProperties2 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines2 = new SpacingBetweenLines() { After = "0" };
            Justification justification2 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();
            RunFonts runFonts3 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold3 = new Bold();
            FontSize fontSize3 = new FontSize() { Val = "30" };

            paragraphMarkRunProperties2.Append(runFonts3);
            paragraphMarkRunProperties2.Append(bold3);
            paragraphMarkRunProperties2.Append(fontSize3);

            paragraphProperties2.Append(spacingBetweenLines2);
            paragraphProperties2.Append(justification2);
            paragraphProperties2.Append(paragraphMarkRunProperties2);

            Run run2 = new Run() { RsidRunProperties = "00417926" };

            RunProperties runProperties2 = new RunProperties();
            RunFonts runFonts4 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold4 = new Bold();
            FontSize fontSize4 = new FontSize() { Val = "30" };

            runProperties2.Append(runFonts4);
            runProperties2.Append(bold4);
            runProperties2.Append(fontSize4);
            Text text2 = new Text();
            text2.Text = "Internet NZ Ltd.";

            run2.Append(runProperties2);
            run2.Append(text2);

            paragraph2.Append(paragraphProperties2);
            paragraph2.Append(run2);

            Paragraph paragraph3 = new Paragraph() { RsidParagraphMarkRevision = "00417926", RsidParagraphAddition = "00417926", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00417926" };

            ParagraphProperties paragraphProperties3 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines3 = new SpacingBetweenLines() { After = "0" };
            Justification justification3 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();
            RunFonts runFonts5 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize5 = new FontSize() { Val = "16" };

            paragraphMarkRunProperties3.Append(runFonts5);
            paragraphMarkRunProperties3.Append(fontSize5);

            paragraphProperties3.Append(spacingBetweenLines3);
            paragraphProperties3.Append(justification3);
            paragraphProperties3.Append(paragraphMarkRunProperties3);

            Run run3 = new Run() { RsidRunProperties = "00417926" };

            RunProperties runProperties3 = new RunProperties();
            RunFonts runFonts6 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize6 = new FontSize() { Val = "16" };

            runProperties3.Append(runFonts6);
            runProperties3.Append(fontSize6);
            Text text3 = new Text();
            text3.Text = "PO Box 5645 Moray Pl, Dunedin 9058, New Zealand";

            run3.Append(runProperties3);
            run3.Append(text3);

            paragraph3.Append(paragraphProperties3);
            paragraph3.Append(run3);

            Paragraph paragraph4 = new Paragraph() { RsidParagraphMarkRevision = "00417926", RsidParagraphAddition = "00417926", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00417926" };

            ParagraphProperties paragraphProperties4 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines4 = new SpacingBetweenLines() { After = "0" };
            Justification justification4 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties4 = new ParagraphMarkRunProperties();
            RunFonts runFonts7 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize7 = new FontSize() { Val = "16" };

            paragraphMarkRunProperties4.Append(runFonts7);
            paragraphMarkRunProperties4.Append(fontSize7);

            paragraphProperties4.Append(spacingBetweenLines4);
            paragraphProperties4.Append(justification4);
            paragraphProperties4.Append(paragraphMarkRunProperties4);

            Run run4 = new Run() { RsidRunProperties = "00417926" };

            RunProperties runProperties4 = new RunProperties();
            RunFonts runFonts8 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize8 = new FontSize() { Val = "16" };

            runProperties4.Append(runFonts8);
            runProperties4.Append(fontSize8);
            Text text4 = new Text();
            text4.Text = "Phone: +64 3 4745983, Email: [email protected]";

            run4.Append(runProperties4);
            run4.Append(text4);
            BookmarkStart bookmarkStart1 = new BookmarkStart() { Name = "_GoBack", Id = "0" };
            BookmarkEnd bookmarkEnd1 = new BookmarkEnd() { Id = "0" };

            paragraph4.Append(paragraphProperties4);
            paragraph4.Append(run4);
            paragraph4.Append(bookmarkStart1);
            paragraph4.Append(bookmarkEnd1);

            Paragraph paragraph5 = new Paragraph() { RsidParagraphMarkRevision = "00417926", RsidParagraphAddition = "00417926", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00417926" };

            ParagraphProperties paragraphProperties5 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines5 = new SpacingBetweenLines() { After = "0" };
            Justification justification5 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties5 = new ParagraphMarkRunProperties();
            RunFonts runFonts9 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize9 = new FontSize() { Val = "16" };

            paragraphMarkRunProperties5.Append(runFonts9);
            paragraphMarkRunProperties5.Append(fontSize9);

            paragraphProperties5.Append(spacingBetweenLines5);
            paragraphProperties5.Append(justification5);
            paragraphProperties5.Append(paragraphMarkRunProperties5);

            Run run5 = new Run() { RsidRunProperties = "00417926" };

            RunProperties runProperties5 = new RunProperties();
            RunFonts runFonts10 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize10 = new FontSize() { Val = "16" };

            runProperties5.Append(runFonts10);
            runProperties5.Append(fontSize10);
            Text text5 = new Text();
            text5.Text = "GST: 70-526-627 Website: www.hardtofind.co.nz";

            run5.Append(runProperties5);
            run5.Append(text5);

            paragraph5.Append(paragraphProperties5);
            paragraph5.Append(run5);

            Paragraph paragraph6 = new Paragraph() { RsidParagraphAddition = "00910498", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00910498" };

            ParagraphProperties paragraphProperties6 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines6 = new SpacingBetweenLines() { After = "0" };

            ParagraphMarkRunProperties paragraphMarkRunProperties6 = new ParagraphMarkRunProperties();
            RunFonts runFonts11 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            paragraphMarkRunProperties6.Append(runFonts11);

            paragraphProperties6.Append(spacingBetweenLines6);
            paragraphProperties6.Append(paragraphMarkRunProperties6);

            paragraph6.Append(paragraphProperties6);

            Paragraph paragraph7 = new Paragraph() { RsidParagraphAddition = "00910498", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00910498" };

            ParagraphProperties paragraphProperties7 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines7 = new SpacingBetweenLines() { After = "0" };

            ParagraphMarkRunProperties paragraphMarkRunProperties7 = new ParagraphMarkRunProperties();
            RunFonts runFonts12 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            paragraphMarkRunProperties7.Append(runFonts12);

            SectionProperties sectionProperties1 = new SectionProperties() { RsidR = "00910498" };
            PageSize pageSize1 = new PageSize() { Width = (UInt32Value)11906U, Height = (UInt32Value)16838U };
            PageMargin pageMargin1 = new PageMargin() { Top = 1440, Right = (UInt32Value)1440U, Bottom = 1440, Left = (UInt32Value)1440U, Header = (UInt32Value)708U, Footer = (UInt32Value)708U, Gutter = (UInt32Value)0U };
            Columns columns1 = new Columns() { Space = "708" };
            DocGrid docGrid1 = new DocGrid() { LinePitch = 360 };

            sectionProperties1.Append(pageSize1);
            sectionProperties1.Append(pageMargin1);
            sectionProperties1.Append(columns1);
            sectionProperties1.Append(docGrid1);

            paragraphProperties7.Append(spacingBetweenLines7);
            paragraphProperties7.Append(paragraphMarkRunProperties7);
            paragraphProperties7.Append(sectionProperties1);

            paragraph7.Append(paragraphProperties7);

            Paragraph paragraph8 = new Paragraph() { RsidParagraphAddition = "00417926", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00417926" };

            ParagraphProperties paragraphProperties8 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines8 = new SpacingBetweenLines() { After = "0" };

            ParagraphMarkRunProperties paragraphMarkRunProperties8 = new ParagraphMarkRunProperties();
            RunFonts runFonts13 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize11 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties8.Append(runFonts13);
            paragraphMarkRunProperties8.Append(fontSize11);

            paragraphProperties8.Append(spacingBetweenLines8);
            paragraphProperties8.Append(paragraphMarkRunProperties8);

            Run run6 = new Run() { RsidRunProperties = "00417926" };

            RunProperties runProperties6 = new RunProperties();
            RunFonts runFonts14 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize12 = new FontSize() { Val = "24" };

            runProperties6.Append(runFonts14);
            runProperties6.Append(fontSize12);
            LastRenderedPageBreak lastRenderedPageBreak1 = new LastRenderedPageBreak();
            Text text6 = new Text();
            text6.Text = "Invoice:";

            run6.Append(runProperties6);
            run6.Append(lastRenderedPageBreak1);
            run6.Append(text6);

            paragraph8.Append(paragraphProperties8);
            paragraph8.Append(run6);

            Paragraph paragraph9 = new Paragraph() { RsidParagraphAddition = "00417926", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00910498" };

            ParagraphProperties paragraphProperties9 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines9 = new SpacingBetweenLines() { After = "0" };

            ParagraphMarkRunProperties paragraphMarkRunProperties9 = new ParagraphMarkRunProperties();
            RunFonts runFonts15 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize13 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties9.Append(runFonts15);
            paragraphMarkRunProperties9.Append(fontSize13);

            paragraphProperties9.Append(spacingBetweenLines9);
            paragraphProperties9.Append(paragraphMarkRunProperties9);

            Run run7 = new Run();

            RunProperties runProperties7 = new RunProperties();
            RunFonts runFonts16 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize14 = new FontSize() { Val = "24" };

            runProperties7.Append(runFonts16);
            runProperties7.Append(fontSize14);
            TabChar tabChar1 = new TabChar();
            Text text7 = new Text();

            //TODO add in customer name
            if(customer != null)
                text7.Text = customer.firstName + " " + customer.lastName;
            else
                text7.Text = order.firstName + " " + order.lastName;

            run7.Append(runProperties7);
            run7.Append(tabChar1);
            run7.Append(text7);

            paragraph9.Append(paragraphProperties9);
            paragraph9.Append(run7);

            Paragraph paragraphInstitute = new Paragraph() { RsidParagraphAddition = "00417926", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00910498" };

            ParagraphProperties paragraphInstituteProperties = new ParagraphProperties();
            SpacingBetweenLines institudeSpacingBetweenLines = new SpacingBetweenLines() { After = "0" };

            ParagraphMarkRunProperties paragraphInstituteMarkRunProperties = new ParagraphMarkRunProperties();
            RunFonts paragraphRunFonts = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize paragraphFontSize = new FontSize() { Val = "24" };

            paragraphInstituteMarkRunProperties.Append(paragraphRunFonts);
            paragraphInstituteMarkRunProperties.Append(paragraphFontSize);

            paragraphInstituteProperties.Append(institudeSpacingBetweenLines);
            paragraphInstituteProperties.Append(paragraphInstituteMarkRunProperties);

            Run instituteRun = new Run();

            RunProperties instituteRunProperties = new RunProperties();
            RunFonts instituteRunFonts = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize instituteFontSize = new FontSize() { Val = "24" };

            instituteRunProperties.Append(instituteRunFonts);
            instituteRunProperties.Append(instituteFontSize);
            TabChar instituteTabChar = new TabChar();
            Text instituteText = new Text();

            //TODO add in institute
            instituteText.Text = customer.institution;

            instituteRun.Append(instituteRunProperties);
            instituteRun.Append(instituteTabChar);
            instituteRun.Append(instituteText);

            paragraphInstitute.Append(paragraphInstituteProperties);
            paragraphInstitute.Append(instituteRun);

            Paragraph paragraph10 = new Paragraph() { RsidParagraphAddition = "00910498", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00910498" };

            ParagraphProperties paragraphProperties10 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines10 = new SpacingBetweenLines() { After = "0" };

            ParagraphMarkRunProperties paragraphMarkRunProperties10 = new ParagraphMarkRunProperties();
            RunFonts runFonts17 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize15 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties10.Append(runFonts17);
            paragraphMarkRunProperties10.Append(fontSize15);

            paragraphProperties10.Append(spacingBetweenLines10);
            paragraphProperties10.Append(paragraphMarkRunProperties10);

            Run run8 = new Run();

            RunProperties runProperties8 = new RunProperties();
            RunFonts runFonts18 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize16 = new FontSize() { Val = "24" };

            runProperties8.Append(runFonts18);
            runProperties8.Append(fontSize16);
            TabChar tabChar2 = new TabChar();
            Text text8 = new Text();

            //TODO add in address1
            //text8.Text = "62 Seaview Avenue";
            if(customer != null)
                text8.Text = customer.address1;
            else
                text8.Text = "";

            run8.Append(runProperties8);
            run8.Append(tabChar2);
            run8.Append(text8);

            paragraph10.Append(paragraphProperties10);
            paragraph10.Append(run8);

            Paragraph paragraph11 = new Paragraph() { RsidParagraphAddition = "00910498", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00910498" };

            ParagraphProperties paragraphProperties11 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines11 = new SpacingBetweenLines() { After = "0" };

            ParagraphMarkRunProperties paragraphMarkRunProperties11 = new ParagraphMarkRunProperties();
            RunFonts runFonts19 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize17 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties11.Append(runFonts19);
            paragraphMarkRunProperties11.Append(fontSize17);

            paragraphProperties11.Append(spacingBetweenLines11);
            paragraphProperties11.Append(paragraphMarkRunProperties11);

            Run run9 = new Run();

            RunProperties runProperties9 = new RunProperties();
            RunFonts runFonts20 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize18 = new FontSize() { Val = "24" };

            runProperties9.Append(runFonts20);
            runProperties9.Append(fontSize18);
            TabChar tabChar3 = new TabChar();
            Text text9 = new Text();

            //TODO add in address2
            //text9.Text = "Northcote";
            if(customer != null)
                text9.Text = customer.address2;
            else
                text9.Text = "";

            run9.Append(runProperties9);
            run9.Append(tabChar3);
            run9.Append(text9);

            paragraph11.Append(paragraphProperties11);
            paragraph11.Append(run9);

            Paragraph paragraph12 = new Paragraph() { RsidParagraphAddition = "00910498", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00910498" };

            ParagraphProperties paragraphProperties12 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines12 = new SpacingBetweenLines() { After = "0" };

            ParagraphMarkRunProperties paragraphMarkRunProperties12 = new ParagraphMarkRunProperties();
            RunFonts runFonts21 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize19 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties12.Append(runFonts21);
            paragraphMarkRunProperties12.Append(fontSize19);

            paragraphProperties12.Append(spacingBetweenLines12);
            paragraphProperties12.Append(paragraphMarkRunProperties12);

            Run run10 = new Run();

            RunProperties runProperties10 = new RunProperties();
            RunFonts runFonts22 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize20 = new FontSize() { Val = "24" };

            runProperties10.Append(runFonts22);
            runProperties10.Append(fontSize20);
            TabChar tabChar4 = new TabChar();
            Text text10 = new Text();

            //TODO add in address3
            //text10.Text = "Auckland";
            if(customer != null)
                text10.Text = customer.address3;
            else
                text10.Text = "";

            run10.Append(runProperties10);
            run10.Append(tabChar4);
            run10.Append(text10);

            paragraph12.Append(paragraphProperties12);
            paragraph12.Append(run10);

            Paragraph paragraph13 = new Paragraph() { RsidParagraphAddition = "00910498", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00910498" };

            ParagraphProperties paragraphProperties13 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines13 = new SpacingBetweenLines() { After = "0" };

            ParagraphMarkRunProperties paragraphMarkRunProperties13 = new ParagraphMarkRunProperties();
            RunFonts runFonts23 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize21 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties13.Append(runFonts23);
            paragraphMarkRunProperties13.Append(fontSize21);

            paragraphProperties13.Append(spacingBetweenLines13);
            paragraphProperties13.Append(paragraphMarkRunProperties13);

            Run run11 = new Run();

            RunProperties runProperties11 = new RunProperties();
            RunFonts runFonts24 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize22 = new FontSize() { Val = "24" };

            runProperties11.Append(runFonts24);
            runProperties11.Append(fontSize22);
            TabChar tabChar5 = new TabChar();
            Text text11 = new Text();

            //TODO add in postcode
            //text11.Text = "0627";
            if(customer != null)
                text11.Text = customer.postCode;
            else
                text11.Text = "";

            run11.Append(runProperties11);
            run11.Append(tabChar5);
            run11.Append(text11);

            paragraph13.Append(paragraphProperties13);
            paragraph13.Append(run11);

            Paragraph paragraph14 = new Paragraph() { RsidParagraphAddition = "00910498", RsidParagraphProperties = "00417926", RsidRunAdditionDefault = "00910498" };

            ParagraphProperties paragraphProperties14 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines14 = new SpacingBetweenLines() { After = "0" };

            ParagraphMarkRunProperties paragraphMarkRunProperties14 = new ParagraphMarkRunProperties();
            RunFonts runFonts25 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize23 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties14.Append(runFonts25);
            paragraphMarkRunProperties14.Append(fontSize23);

            paragraphProperties14.Append(spacingBetweenLines14);
            paragraphProperties14.Append(paragraphMarkRunProperties14);

            Run run12 = new Run();

            RunProperties runProperties12 = new RunProperties();
            RunFonts runFonts26 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize24 = new FontSize() { Val = "24" };

            runProperties12.Append(runFonts26);
            runProperties12.Append(fontSize24);
            TabChar tabChar6 = new TabChar();
            Text text12 = new Text();

            //TODO add in country
            if(customer != null)
                text12.Text = customer.country;
            else
                text12.Text = "";

            run12.Append(runProperties12);
            run12.Append(tabChar6);
            run12.Append(text12);

            paragraph14.Append(paragraphProperties14);
            paragraph14.Append(run12);

            Paragraph paragraph15 = new Paragraph() { RsidParagraphAddition = "003F6835", RsidParagraphProperties = "003F6835", RsidRunAdditionDefault = "00910498" };

            ParagraphProperties paragraphProperties15 = new ParagraphProperties();

            Tabs tabs1 = new Tabs();
            TabStop tabStop1 = new TabStop() { Val = TabStopValues.Left, Position = 2835 };

            tabs1.Append(tabStop1);
            SpacingBetweenLines spacingBetweenLines15 = new SpacingBetweenLines() { After = "0" };

            ParagraphMarkRunProperties paragraphMarkRunProperties15 = new ParagraphMarkRunProperties();
            RunFonts runFonts27 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize25 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties15.Append(runFonts27);
            paragraphMarkRunProperties15.Append(fontSize25);

            paragraphProperties15.Append(tabs1);
            paragraphProperties15.Append(spacingBetweenLines15);
            paragraphProperties15.Append(paragraphMarkRunProperties15);

            Run run13 = new Run();

            RunProperties runProperties13 = new RunProperties();
            RunFonts runFonts28 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize26 = new FontSize() { Val = "24" };

            runProperties13.Append(runFonts28);
            runProperties13.Append(fontSize26);
            Break break1 = new Break() { Type = BreakValues.Column };

            run13.Append(runProperties13);
            run13.Append(break1);

            paragraph15.Append(paragraphProperties15);
            paragraph15.Append(run13);

            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableStyle tableStyle1 = new TableStyle() { Val = "TableGrid" };
            TableWidth tableWidth1 = new TableWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableBorders tableBorders1 = new TableBorders();
            TopBorder topBorder1 = new TopBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };
            LeftBorder leftBorder1 = new LeftBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder1 = new BottomBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };
            RightBorder rightBorder1 = new RightBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };

            tableBorders1.Append(topBorder1);
            tableBorders1.Append(leftBorder1);
            tableBorders1.Append(bottomBorder1);
            tableBorders1.Append(rightBorder1);
            tableBorders1.Append(insideHorizontalBorder1);
            tableBorders1.Append(insideVerticalBorder1);
            TableLook tableLook1 = new TableLook() { Val = "04A0", FirstRow = true, LastRow = false, FirstColumn = true, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = true };

            tableProperties1.Append(tableStyle1);
            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableBorders1);
            tableProperties1.Append(tableLook1);

            TableGrid tableGrid1 = new TableGrid();
            GridColumn gridColumn1 = new GridColumn() { Width = "3006" };
            GridColumn gridColumn2 = new GridColumn() { Width = "255" };
            GridColumn gridColumn3 = new GridColumn() { Width = "1099" };

            tableGrid1.Append(gridColumn1);
            tableGrid1.Append(gridColumn2);
            tableGrid1.Append(gridColumn3);

            TableRow tableRow1 = new TableRow() { RsidTableRowMarkRevision = "00613B48", RsidTableRowAddition = "00613B48", RsidTableRowProperties = "00613B48" };

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth tableCellWidth1 = new TableCellWidth() { Width = "3006", Type = TableWidthUnitValues.Dxa };

            tableCellProperties1.Append(tableCellWidth1);

            Paragraph paragraph16 = new Paragraph() { RsidParagraphMarkRevision = "00613B48", RsidParagraphAddition = "00613B48", RsidParagraphProperties = "00AB530E", RsidRunAdditionDefault = "00613B48" };

            ParagraphProperties paragraphProperties16 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties16 = new ParagraphMarkRunProperties();
            RunFonts runFonts29 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize27 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties16.Append(runFonts29);
            paragraphMarkRunProperties16.Append(fontSize27);

            paragraphProperties16.Append(paragraphMarkRunProperties16);

            Run run14 = new Run() { RsidRunProperties = "00613B48" };

            RunProperties runProperties14 = new RunProperties();
            RunFonts runFonts30 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize28 = new FontSize() { Val = "24" };

            runProperties14.Append(runFonts30);
            runProperties14.Append(fontSize28);
            Text text13 = new Text();
            text13.Text = "Date:";

            run14.Append(runProperties14);
            run14.Append(text13);

            paragraph16.Append(paragraphProperties16);
            paragraph16.Append(run14);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph16);

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth tableCellWidth2 = new TableCellWidth() { Width = "1354", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan1 = new GridSpan() { Val = 2 };

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(gridSpan1);

            Paragraph paragraph17 = new Paragraph() { RsidParagraphMarkRevision = "00613B48", RsidParagraphAddition = "00613B48", RsidParagraphProperties = "00613B48", RsidRunAdditionDefault = "00613B48" };

            ParagraphProperties paragraphProperties17 = new ParagraphProperties();
            Justification justification6 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties17 = new ParagraphMarkRunProperties();
            RunFonts runFonts31 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize29 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties17.Append(runFonts31);
            paragraphMarkRunProperties17.Append(fontSize29);

            paragraphProperties17.Append(justification6);
            paragraphProperties17.Append(paragraphMarkRunProperties17);

            Run run15 = new Run() { RsidRunProperties = "00613B48" };

            RunProperties runProperties15 = new RunProperties();
            RunFonts runFonts32 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize30 = new FontSize() { Val = "24" };

            runProperties15.Append(runFonts32);
            runProperties15.Append(fontSize30);
            Text text14 = new Text();

            //TODO add invoice date
            //text14.Text = "2/02/2016";
            text14.Text = order.invoiceDate.ToString("d/MM/yyyy"); ;

            run15.Append(runProperties15);
            run15.Append(text14);

            paragraph17.Append(paragraphProperties17);
            paragraph17.Append(run15);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph17);

            tableRow1.Append(tableCell1);
            tableRow1.Append(tableCell2);

            TableRow tableRow2 = new TableRow() { RsidTableRowMarkRevision = "00613B48", RsidTableRowAddition = "00613B48", RsidTableRowProperties = "009B6C59" };

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth tableCellWidth3 = new TableCellWidth() { Width = "3261", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan2 = new GridSpan() { Val = 2 };

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(gridSpan2);

            Paragraph paragraph18 = new Paragraph() { RsidParagraphMarkRevision = "00613B48", RsidParagraphAddition = "00613B48", RsidParagraphProperties = "00AB530E", RsidRunAdditionDefault = "00613B48" };

            ParagraphProperties paragraphProperties18 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties18 = new ParagraphMarkRunProperties();
            RunFonts runFonts33 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize31 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties18.Append(runFonts33);
            paragraphMarkRunProperties18.Append(fontSize31);

            paragraphProperties18.Append(paragraphMarkRunProperties18);

            Run run16 = new Run() { RsidRunProperties = "00613B48" };

            RunProperties runProperties16 = new RunProperties();
            RunFonts runFonts34 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize32 = new FontSize() { Val = "24" };

            runProperties16.Append(runFonts34);
            runProperties16.Append(fontSize32);
            Text text15 = new Text();
            text15.Text = "GST Tax Invoice Number:";

            run16.Append(runProperties16);
            run16.Append(text15);

            paragraph18.Append(paragraphProperties18);
            paragraph18.Append(run16);

            tableCell3.Append(tableCellProperties3);
            tableCell3.Append(paragraph18);

            TableCell tableCell4 = new TableCell();

            TableCellProperties tableCellProperties4 = new TableCellProperties();
            TableCellWidth tableCellWidth4 = new TableCellWidth() { Width = "1099", Type = TableWidthUnitValues.Dxa };

            tableCellProperties4.Append(tableCellWidth4);

            Paragraph paragraph19 = new Paragraph() { RsidParagraphMarkRevision = "00613B48", RsidParagraphAddition = "00613B48", RsidParagraphProperties = "00613B48", RsidRunAdditionDefault = "00613B48" };

            ParagraphProperties paragraphProperties19 = new ParagraphProperties();
            Justification justification7 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties19 = new ParagraphMarkRunProperties();
            RunFonts runFonts35 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize33 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties19.Append(runFonts35);
            paragraphMarkRunProperties19.Append(fontSize33);

            paragraphProperties19.Append(justification7);
            paragraphProperties19.Append(paragraphMarkRunProperties19);

            Run run17 = new Run() { RsidRunProperties = "00613B48" };

            RunProperties runProperties17 = new RunProperties();
            RunFonts runFonts36 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize34 = new FontSize() { Val = "24" };

            runProperties17.Append(runFonts36);
            runProperties17.Append(fontSize34);
            Text text16 = new Text();

            //TODO add invoice number/orderID
            //text16.Text = "39248";
            text16.Text = order.orderID.ToString();

            run17.Append(runProperties17);
            run17.Append(text16);

            paragraph19.Append(paragraphProperties19);
            paragraph19.Append(run17);

            tableCell4.Append(tableCellProperties4);
            tableCell4.Append(paragraph19);

            tableRow2.Append(tableCell3);
            tableRow2.Append(tableCell4);

            TableRow tableRow3 = new TableRow() { RsidTableRowMarkRevision = "00613B48", RsidTableRowAddition = "00613B48", RsidTableRowProperties = "00613B48" };

            TableCell tableCell5 = new TableCell();

            TableCellProperties tableCellProperties5 = new TableCellProperties();
            TableCellWidth tableCellWidth5 = new TableCellWidth() { Width = "3006", Type = TableWidthUnitValues.Dxa };

            tableCellProperties5.Append(tableCellWidth5);

            Paragraph paragraph20 = new Paragraph() { RsidParagraphMarkRevision = "00613B48", RsidParagraphAddition = "00613B48", RsidParagraphProperties = "00AB530E", RsidRunAdditionDefault = "00613B48" };

            ParagraphProperties paragraphProperties20 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties20 = new ParagraphMarkRunProperties();
            RunFonts runFonts37 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize35 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties20.Append(runFonts37);
            paragraphMarkRunProperties20.Append(fontSize35);

            paragraphProperties20.Append(paragraphMarkRunProperties20);

            Run run18 = new Run() { RsidRunProperties = "00613B48" };

            RunProperties runProperties18 = new RunProperties();
            RunFonts runFonts38 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize36 = new FontSize() { Val = "24" };

            runProperties18.Append(runFonts38);
            runProperties18.Append(fontSize36);
            Text text17 = new Text();
            text17.Text = "Your Reference:";

            run18.Append(runProperties18);
            run18.Append(text17);

            paragraph20.Append(paragraphProperties20);
            paragraph20.Append(run18);

            tableCell5.Append(tableCellProperties5);
            tableCell5.Append(paragraph20);

            TableCell tableCell6 = new TableCell();

            TableCellProperties tableCellProperties6 = new TableCellProperties();
            TableCellWidth tableCellWidth6 = new TableCellWidth() { Width = "1354", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan3 = new GridSpan() { Val = 2 };

            tableCellProperties6.Append(tableCellWidth6);
            tableCellProperties6.Append(gridSpan3);

            Paragraph paragraph21 = new Paragraph() { RsidParagraphMarkRevision = "00613B48", RsidParagraphAddition = "00613B48", RsidParagraphProperties = "00613B48", RsidRunAdditionDefault = "00613B48" };

            ParagraphProperties paragraphProperties21 = new ParagraphProperties();
            Justification justification8 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties21 = new ParagraphMarkRunProperties();
            RunFonts runFonts39 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize37 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties21.Append(runFonts39);
            paragraphMarkRunProperties21.Append(fontSize37);

            paragraphProperties21.Append(justification8);
            paragraphProperties21.Append(paragraphMarkRunProperties21);

            Run run19 = new Run() { RsidRunProperties = "00613B48" };

            RunProperties runProperties19 = new RunProperties();
            RunFonts runFonts40 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize38 = new FontSize() { Val = "24" };

            runProperties19.Append(runFonts40);
            runProperties19.Append(fontSize38);
            Text text18 = new Text();

            //TODO add order reference
            //text18.Text = "Visa";
            text18.Text = order.orderReference;

            run19.Append(runProperties19);
            run19.Append(text18);

            paragraph21.Append(paragraphProperties21);
            paragraph21.Append(run19);

            tableCell6.Append(tableCellProperties6);
            tableCell6.Append(paragraph21);

            tableRow3.Append(tableCell5);
            tableRow3.Append(tableCell6);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);
            table1.Append(tableRow2);
            table1.Append(tableRow3);

            Paragraph paragraph22 = new Paragraph() { RsidParagraphAddition = "00EA7D1E", RsidParagraphProperties = "007F61F5", RsidRunAdditionDefault = "00EA7D1E" };

            ParagraphProperties paragraphProperties22 = new ParagraphProperties();

            Tabs tabs2 = new Tabs();
            TabStop tabStop2 = new TabStop() { Val = TabStopValues.Left, Position = 3119 };

            tabs2.Append(tabStop2);
            SpacingBetweenLines spacingBetweenLines16 = new SpacingBetweenLines() { After = "0" };

            ParagraphMarkRunProperties paragraphMarkRunProperties22 = new ParagraphMarkRunProperties();
            RunFonts runFonts41 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize39 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties22.Append(runFonts41);
            paragraphMarkRunProperties22.Append(fontSize39);

            paragraphProperties22.Append(tabs2);
            paragraphProperties22.Append(spacingBetweenLines16);
            paragraphProperties22.Append(paragraphMarkRunProperties22);

            paragraph22.Append(paragraphProperties22);

            Paragraph paragraph23 = new Paragraph() { RsidParagraphAddition = "00EA7D1E", RsidParagraphProperties = "007F61F5", RsidRunAdditionDefault = "00EA7D1E" };

            ParagraphProperties paragraphProperties23 = new ParagraphProperties();

            Tabs tabs3 = new Tabs();
            TabStop tabStop3 = new TabStop() { Val = TabStopValues.Left, Position = 3119 };

            tabs3.Append(tabStop3);
            SpacingBetweenLines spacingBetweenLines17 = new SpacingBetweenLines() { After = "0" };

            ParagraphMarkRunProperties paragraphMarkRunProperties23 = new ParagraphMarkRunProperties();
            RunFonts runFonts42 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize40 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties23.Append(runFonts42);
            paragraphMarkRunProperties23.Append(fontSize40);

            SectionProperties sectionProperties2 = new SectionProperties() { RsidR = "00EA7D1E", RsidSect = "00015C18" };
            SectionType sectionType1 = new SectionType() { Val = SectionMarkValues.Continuous };
            PageSize pageSize2 = new PageSize() { Width = (UInt32Value)11906U, Height = (UInt32Value)16838U };
            PageMargin pageMargin2 = new PageMargin() { Top = 1440, Right = (UInt32Value)1440U, Bottom = 1440, Left = (UInt32Value)1440U, Header = (UInt32Value)708U, Footer = (UInt32Value)708U, Gutter = (UInt32Value)0U };
            Columns columns2 = new Columns() { Space = "286", ColumnCount = 2 };
            DocGrid docGrid2 = new DocGrid() { LinePitch = 360 };

            sectionProperties2.Append(sectionType1);
            sectionProperties2.Append(pageSize2);
            sectionProperties2.Append(pageMargin2);
            sectionProperties2.Append(columns2);
            sectionProperties2.Append(docGrid2);

            paragraphProperties23.Append(tabs3);
            paragraphProperties23.Append(spacingBetweenLines17);
            paragraphProperties23.Append(paragraphMarkRunProperties23);
            paragraphProperties23.Append(sectionProperties2);

            paragraph23.Append(paragraphProperties23);

            Paragraph paragraph24 = new Paragraph() { RsidParagraphMarkRevision = "00646179", RsidParagraphAddition = "00443ACA", RsidParagraphProperties = "00646179", RsidRunAdditionDefault = "00443ACA" };

            ParagraphProperties paragraphProperties24 = new ParagraphProperties();

            Tabs tabs4 = new Tabs();
            TabStop tabStop4 = new TabStop() { Val = TabStopValues.Left, Position = 3119 };

            tabs4.Append(tabStop4);
            SpacingBetweenLines spacingBetweenLines18 = new SpacingBetweenLines() { After = "0" };

            ParagraphMarkRunProperties paragraphMarkRunProperties24 = new ParagraphMarkRunProperties();
            RunFonts runFonts43 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize41 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties24.Append(runFonts43);
            paragraphMarkRunProperties24.Append(fontSize41);

            paragraphProperties24.Append(tabs4);
            paragraphProperties24.Append(spacingBetweenLines18);
            paragraphProperties24.Append(paragraphMarkRunProperties24);

            paragraph24.Append(paragraphProperties24);

            Table table2 = new Table();

            TableProperties tableProperties2 = new TableProperties();
            TableStyle tableStyle2 = new TableStyle() { Val = "TableGrid" };
            TableWidth tableWidth2 = new TableWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableBorders tableBorders2 = new TableBorders();
            LeftBorder leftBorder2 = new LeftBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };
            RightBorder rightBorder2 = new RightBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder2 = new InsideVerticalBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };

            tableBorders2.Append(leftBorder2);
            tableBorders2.Append(rightBorder2);
            tableBorders2.Append(insideVerticalBorder2);
            TableLook tableLook2 = new TableLook() { Val = "04A0", FirstRow = true, LastRow = false, FirstColumn = true, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = true };

            tableProperties2.Append(tableStyle2);
            tableProperties2.Append(tableWidth2);
            tableProperties2.Append(tableBorders2);
            tableProperties2.Append(tableLook2);

            TableGrid tableGrid2 = new TableGrid();
            GridColumn gridColumn4 = new GridColumn() { Width = "1418" };
            GridColumn gridColumn5 = new GridColumn() { Width = "2719" };
            GridColumn gridColumn6 = new GridColumn() { Width = "1036" };
            GridColumn gridColumn7 = new GridColumn() { Width = "1364" };
            GridColumn gridColumn8 = new GridColumn() { Width = "1411" };
            GridColumn gridColumn9 = new GridColumn() { Width = "1078" };

            tableGrid2.Append(gridColumn4);
            tableGrid2.Append(gridColumn5);
            tableGrid2.Append(gridColumn6);
            tableGrid2.Append(gridColumn7);
            tableGrid2.Append(gridColumn8);
            tableGrid2.Append(gridColumn9);

            TableRow tableRow4 = new TableRow() { RsidTableRowAddition = "00443ACA", RsidTableRowProperties = "00506382" };

            TableCell tableCell7 = new TableCell();

            TableCellProperties tableCellProperties7 = new TableCellProperties();
            TableCellWidth tableCellWidth7 = new TableCellWidth() { Width = "1418", Type = TableWidthUnitValues.Dxa };

            tableCellProperties7.Append(tableCellWidth7);

            Paragraph paragraph25 = new Paragraph() { RsidParagraphMarkRevision = "00443ACA", RsidParagraphAddition = "00443ACA", RsidParagraphProperties = "00443ACA", RsidRunAdditionDefault = "00443ACA" };

            ParagraphProperties paragraphProperties25 = new ParagraphProperties();

            Tabs tabs5 = new Tabs();
            TabStop tabStop5 = new TabStop() { Val = TabStopValues.Left, Position = 1560 };
            TabStop tabStop6 = new TabStop() { Val = TabStopValues.Left, Position = 3969 };
            TabStop tabStop7 = new TabStop() { Val = TabStopValues.Left, Position = 5387 };
            TabStop tabStop8 = new TabStop() { Val = TabStopValues.Left, Position = 6379 };
            TabStop tabStop9 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

            tabs5.Append(tabStop5);
            tabs5.Append(tabStop6);
            tabs5.Append(tabStop7);
            tabs5.Append(tabStop8);
            tabs5.Append(tabStop9);
            SpacingBetweenLines spacingBetweenLines19 = new SpacingBetweenLines() { Before = "60", After = "60" };

            ParagraphMarkRunProperties paragraphMarkRunProperties25 = new ParagraphMarkRunProperties();
            RunFonts runFonts44 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            paragraphMarkRunProperties25.Append(runFonts44);

            paragraphProperties25.Append(tabs5);
            paragraphProperties25.Append(spacingBetweenLines19);
            paragraphProperties25.Append(paragraphMarkRunProperties25);
            ProofError proofError1 = new ProofError() { Type = ProofingErrorValues.SpellStart };

            Run run20 = new Run() { RsidRunProperties = "00443ACA" };

            RunProperties runProperties20 = new RunProperties();
            RunFonts runFonts45 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            runProperties20.Append(runFonts45);
            Text text19 = new Text();
            text19.Text = "BookID";

            run20.Append(runProperties20);
            run20.Append(text19);
            ProofError proofError2 = new ProofError() { Type = ProofingErrorValues.SpellEnd };

            paragraph25.Append(paragraphProperties25);
            paragraph25.Append(proofError1);
            paragraph25.Append(run20);
            paragraph25.Append(proofError2);

            tableCell7.Append(tableCellProperties7);
            tableCell7.Append(paragraph25);

            TableCell tableCell8 = new TableCell();

            TableCellProperties tableCellProperties8 = new TableCellProperties();
            TableCellWidth tableCellWidth8 = new TableCellWidth() { Width = "2719", Type = TableWidthUnitValues.Dxa };

            tableCellProperties8.Append(tableCellWidth8);

            Paragraph paragraph26 = new Paragraph() { RsidParagraphMarkRevision = "00443ACA", RsidParagraphAddition = "00443ACA", RsidParagraphProperties = "00443ACA", RsidRunAdditionDefault = "00443ACA" };

            ParagraphProperties paragraphProperties26 = new ParagraphProperties();

            Tabs tabs6 = new Tabs();
            TabStop tabStop10 = new TabStop() { Val = TabStopValues.Left, Position = 1560 };
            TabStop tabStop11 = new TabStop() { Val = TabStopValues.Left, Position = 3969 };
            TabStop tabStop12 = new TabStop() { Val = TabStopValues.Left, Position = 5387 };
            TabStop tabStop13 = new TabStop() { Val = TabStopValues.Left, Position = 6379 };
            TabStop tabStop14 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

            tabs6.Append(tabStop10);
            tabs6.Append(tabStop11);
            tabs6.Append(tabStop12);
            tabs6.Append(tabStop13);
            tabs6.Append(tabStop14);
            SpacingBetweenLines spacingBetweenLines20 = new SpacingBetweenLines() { Before = "60", After = "60" };

            ParagraphMarkRunProperties paragraphMarkRunProperties26 = new ParagraphMarkRunProperties();
            RunFonts runFonts46 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            paragraphMarkRunProperties26.Append(runFonts46);

            paragraphProperties26.Append(tabs6);
            paragraphProperties26.Append(spacingBetweenLines20);
            paragraphProperties26.Append(paragraphMarkRunProperties26);

            Run run21 = new Run() { RsidRunProperties = "00443ACA" };

            RunProperties runProperties21 = new RunProperties();
            RunFonts runFonts47 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            runProperties21.Append(runFonts47);
            Text text20 = new Text();
            text20.Text = "Description";

            run21.Append(runProperties21);
            run21.Append(text20);

            paragraph26.Append(paragraphProperties26);
            paragraph26.Append(run21);

            tableCell8.Append(tableCellProperties8);
            tableCell8.Append(paragraph26);

            TableCell tableCell9 = new TableCell();

            TableCellProperties tableCellProperties9 = new TableCellProperties();
            TableCellWidth tableCellWidth9 = new TableCellWidth() { Width = "1036", Type = TableWidthUnitValues.Dxa };

            tableCellProperties9.Append(tableCellWidth9);

            Paragraph paragraph27 = new Paragraph() { RsidParagraphMarkRevision = "00443ACA", RsidParagraphAddition = "00443ACA", RsidParagraphProperties = "00443ACA", RsidRunAdditionDefault = "00443ACA" };

            ParagraphProperties paragraphProperties27 = new ParagraphProperties();

            Tabs tabs7 = new Tabs();
            TabStop tabStop15 = new TabStop() { Val = TabStopValues.Left, Position = 1560 };
            TabStop tabStop16 = new TabStop() { Val = TabStopValues.Left, Position = 3969 };
            TabStop tabStop17 = new TabStop() { Val = TabStopValues.Left, Position = 5387 };
            TabStop tabStop18 = new TabStop() { Val = TabStopValues.Left, Position = 6379 };
            TabStop tabStop19 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

            tabs7.Append(tabStop15);
            tabs7.Append(tabStop16);
            tabs7.Append(tabStop17);
            tabs7.Append(tabStop18);
            tabs7.Append(tabStop19);
            SpacingBetweenLines spacingBetweenLines21 = new SpacingBetweenLines() { Before = "60", After = "60" };
            Justification justification9 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties27 = new ParagraphMarkRunProperties();
            RunFonts runFonts48 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            paragraphMarkRunProperties27.Append(runFonts48);

            paragraphProperties27.Append(tabs7);
            paragraphProperties27.Append(spacingBetweenLines21);
            paragraphProperties27.Append(justification9);
            paragraphProperties27.Append(paragraphMarkRunProperties27);

            Run run22 = new Run() { RsidRunProperties = "00443ACA" };

            RunProperties runProperties22 = new RunProperties();
            RunFonts runFonts49 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            runProperties22.Append(runFonts49);
            Text text21 = new Text();
            text21.Text = "Quantity";

            run22.Append(runProperties22);
            run22.Append(text21);

            paragraph27.Append(paragraphProperties27);
            paragraph27.Append(run22);

            tableCell9.Append(tableCellProperties9);
            tableCell9.Append(paragraph27);

            TableCell tableCell10 = new TableCell();

            TableCellProperties tableCellProperties10 = new TableCellProperties();
            TableCellWidth tableCellWidth10 = new TableCellWidth() { Width = "1364", Type = TableWidthUnitValues.Dxa };

            tableCellProperties10.Append(tableCellWidth10);

            Paragraph paragraph28 = new Paragraph() { RsidParagraphMarkRevision = "00443ACA", RsidParagraphAddition = "00443ACA", RsidParagraphProperties = "00443ACA", RsidRunAdditionDefault = "00443ACA" };

            ParagraphProperties paragraphProperties28 = new ParagraphProperties();

            Tabs tabs8 = new Tabs();
            TabStop tabStop20 = new TabStop() { Val = TabStopValues.Left, Position = 1560 };
            TabStop tabStop21 = new TabStop() { Val = TabStopValues.Left, Position = 3969 };
            TabStop tabStop22 = new TabStop() { Val = TabStopValues.Left, Position = 5387 };
            TabStop tabStop23 = new TabStop() { Val = TabStopValues.Left, Position = 6379 };
            TabStop tabStop24 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

            tabs8.Append(tabStop20);
            tabs8.Append(tabStop21);
            tabs8.Append(tabStop22);
            tabs8.Append(tabStop23);
            tabs8.Append(tabStop24);
            SpacingBetweenLines spacingBetweenLines22 = new SpacingBetweenLines() { Before = "60", After = "60" };
            Justification justification10 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties28 = new ParagraphMarkRunProperties();
            RunFonts runFonts50 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            paragraphMarkRunProperties28.Append(runFonts50);

            paragraphProperties28.Append(tabs8);
            paragraphProperties28.Append(spacingBetweenLines22);
            paragraphProperties28.Append(justification10);
            paragraphProperties28.Append(paragraphMarkRunProperties28);

            Run run23 = new Run() { RsidRunProperties = "00443ACA" };

            RunProperties runProperties23 = new RunProperties();
            RunFonts runFonts51 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            runProperties23.Append(runFonts51);
            Text text22 = new Text();
            text22.Text = "Price";

            run23.Append(runProperties23);
            run23.Append(text22);

            paragraph28.Append(paragraphProperties28);
            paragraph28.Append(run23);

            tableCell10.Append(tableCellProperties10);
            tableCell10.Append(paragraph28);

            TableCell tableCell11 = new TableCell();

            TableCellProperties tableCellProperties11 = new TableCellProperties();
            TableCellWidth tableCellWidth11 = new TableCellWidth() { Width = "1411", Type = TableWidthUnitValues.Dxa };

            tableCellProperties11.Append(tableCellWidth11);

            Paragraph paragraph29 = new Paragraph() { RsidParagraphMarkRevision = "00443ACA", RsidParagraphAddition = "00443ACA", RsidParagraphProperties = "00443ACA", RsidRunAdditionDefault = "00443ACA" };

            ParagraphProperties paragraphProperties29 = new ParagraphProperties();

            Tabs tabs9 = new Tabs();
            TabStop tabStop25 = new TabStop() { Val = TabStopValues.Left, Position = 1560 };
            TabStop tabStop26 = new TabStop() { Val = TabStopValues.Left, Position = 3969 };
            TabStop tabStop27 = new TabStop() { Val = TabStopValues.Left, Position = 5387 };
            TabStop tabStop28 = new TabStop() { Val = TabStopValues.Left, Position = 6379 };
            TabStop tabStop29 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

            tabs9.Append(tabStop25);
            tabs9.Append(tabStop26);
            tabs9.Append(tabStop27);
            tabs9.Append(tabStop28);
            tabs9.Append(tabStop29);
            SpacingBetweenLines spacingBetweenLines23 = new SpacingBetweenLines() { Before = "60", After = "60" };
            Justification justification11 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties29 = new ParagraphMarkRunProperties();
            RunFonts runFonts52 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            paragraphMarkRunProperties29.Append(runFonts52);

            paragraphProperties29.Append(tabs9);
            paragraphProperties29.Append(spacingBetweenLines23);
            paragraphProperties29.Append(justification11);
            paragraphProperties29.Append(paragraphMarkRunProperties29);

            Run run24 = new Run() { RsidRunProperties = "00443ACA" };

            RunProperties runProperties24 = new RunProperties();
            RunFonts runFonts53 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            runProperties24.Append(runFonts53);
            Text text23 = new Text();
            text23.Text = "Discount";

            run24.Append(runProperties24);
            run24.Append(text23);

            paragraph29.Append(paragraphProperties29);
            paragraph29.Append(run24);

            tableCell11.Append(tableCellProperties11);
            tableCell11.Append(paragraph29);

            TableCell tableCell12 = new TableCell();

            TableCellProperties tableCellProperties12 = new TableCellProperties();
            TableCellWidth tableCellWidth12 = new TableCellWidth() { Width = "1078", Type = TableWidthUnitValues.Dxa };

            tableCellProperties12.Append(tableCellWidth12);

            Paragraph paragraph30 = new Paragraph() { RsidParagraphMarkRevision = "00443ACA", RsidParagraphAddition = "00443ACA", RsidParagraphProperties = "00443ACA", RsidRunAdditionDefault = "00443ACA" };

            ParagraphProperties paragraphProperties30 = new ParagraphProperties();

            Tabs tabs10 = new Tabs();
            TabStop tabStop30 = new TabStop() { Val = TabStopValues.Left, Position = 1560 };
            TabStop tabStop31 = new TabStop() { Val = TabStopValues.Left, Position = 3969 };
            TabStop tabStop32 = new TabStop() { Val = TabStopValues.Left, Position = 5387 };
            TabStop tabStop33 = new TabStop() { Val = TabStopValues.Left, Position = 6379 };
            TabStop tabStop34 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

            tabs10.Append(tabStop30);
            tabs10.Append(tabStop31);
            tabs10.Append(tabStop32);
            tabs10.Append(tabStop33);
            tabs10.Append(tabStop34);
            SpacingBetweenLines spacingBetweenLines24 = new SpacingBetweenLines() { Before = "60", After = "60" };
            Justification justification12 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties30 = new ParagraphMarkRunProperties();
            RunFonts runFonts54 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            paragraphMarkRunProperties30.Append(runFonts54);

            paragraphProperties30.Append(tabs10);
            paragraphProperties30.Append(spacingBetweenLines24);
            paragraphProperties30.Append(justification12);
            paragraphProperties30.Append(paragraphMarkRunProperties30);

            Run run25 = new Run() { RsidRunProperties = "00443ACA" };

            RunProperties runProperties25 = new RunProperties();
            RunFonts runFonts55 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            runProperties25.Append(runFonts55);
            Text text24 = new Text();
            text24.Text = "Total";

            run25.Append(runProperties25);
            run25.Append(text24);

            paragraph30.Append(paragraphProperties30);
            paragraph30.Append(run25);

            tableCell12.Append(tableCellProperties12);
            tableCell12.Append(paragraph30);

            tableRow4.Append(tableCell7);
            tableRow4.Append(tableCell8);
            tableRow4.Append(tableCell9);
            tableRow4.Append(tableCell10);
            tableRow4.Append(tableCell11);
            tableRow4.Append(tableCell12);

            table2.Append(tableProperties2);
            table2.Append(tableGrid2);
            table2.Append(tableRow4);

            /****** Loop from here? **********/
            foreach (OrderedStock o in orderedStock)
            {
                //Create a table row
                TableRow orderedStockRow = new TableRow() { RsidTableRowAddition = "00443ACA", RsidTableRowProperties = "00506382" };

                //Create cell to hold bookID
                TableCell cellBookID = new TableCell();

                TableCellProperties cellBookIDProperties = new TableCellProperties();
                TableCellWidth cellBookIDWidth = new TableCellWidth() { Width = "1418", Type = TableWidthUnitValues.Dxa };

                cellBookIDProperties.Append(cellBookIDWidth);

                Paragraph paragraph31 = new Paragraph() { RsidParagraphMarkRevision = "00443ACA", RsidParagraphAddition = "00443ACA", RsidParagraphProperties = "00443ACA", RsidRunAdditionDefault = "00443ACA" };

                ParagraphProperties paragraphProperties31 = new ParagraphProperties();

                Tabs tabs11 = new Tabs();
                TabStop tabStop35 = new TabStop() { Val = TabStopValues.Left, Position = 1560 };
                TabStop tabStop36 = new TabStop() { Val = TabStopValues.Left, Position = 3969 };
                TabStop tabStop37 = new TabStop() { Val = TabStopValues.Left, Position = 5387 };
                TabStop tabStop38 = new TabStop() { Val = TabStopValues.Left, Position = 6379 };
                TabStop tabStop39 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

                tabs11.Append(tabStop35);
                tabs11.Append(tabStop36);
                tabs11.Append(tabStop37);
                tabs11.Append(tabStop38);
                tabs11.Append(tabStop39);
                SpacingBetweenLines spacingBetweenLines25 = new SpacingBetweenLines() { Before = "60", After = "60" };

                ParagraphMarkRunProperties paragraphMarkRunProperties31 = new ParagraphMarkRunProperties();
                RunFonts runFonts56 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize42 = new FontSize() { Val = "18" };

                paragraphMarkRunProperties31.Append(runFonts56);
                paragraphMarkRunProperties31.Append(fontSize42);

                paragraphProperties31.Append(tabs11);
                paragraphProperties31.Append(spacingBetweenLines25);
                paragraphProperties31.Append(paragraphMarkRunProperties31);

                Run run26 = new Run() { RsidRunProperties = "00443ACA" };

                RunProperties runProperties26 = new RunProperties();
                RunFonts runFonts57 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize43 = new FontSize() { Val = "18" };

                runProperties26.Append(runFonts57);
                runProperties26.Append(fontSize43);
                Text text25 = new Text();

                //TODO Book ID
                text25.Text = o.bookID;

                run26.Append(runProperties26);
                run26.Append(text25);

                paragraph31.Append(paragraphProperties31);
                paragraph31.Append(run26);

                cellBookID.Append(cellBookIDProperties);
                cellBookID.Append(paragraph31);

                //Cell for description
                TableCell tableCell14 = new TableCell();

                TableCellProperties tableCellProperties14 = new TableCellProperties();
                TableCellWidth tableCellWidth14 = new TableCellWidth() { Width = "2719", Type = TableWidthUnitValues.Dxa };

                tableCellProperties14.Append(tableCellWidth14);

                Paragraph paragraph32 = new Paragraph() { RsidParagraphMarkRevision = "00443ACA", RsidParagraphAddition = "00443ACA", RsidParagraphProperties = "00443ACA", RsidRunAdditionDefault = "00443ACA" };

                ParagraphProperties paragraphProperties32 = new ParagraphProperties();

                Tabs tabs12 = new Tabs();
                TabStop tabStop40 = new TabStop() { Val = TabStopValues.Left, Position = 1560 };
                TabStop tabStop41 = new TabStop() { Val = TabStopValues.Left, Position = 3969 };
                TabStop tabStop42 = new TabStop() { Val = TabStopValues.Left, Position = 5387 };
                TabStop tabStop43 = new TabStop() { Val = TabStopValues.Left, Position = 6379 };
                TabStop tabStop44 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

                tabs12.Append(tabStop40);
                tabs12.Append(tabStop41);
                tabs12.Append(tabStop42);
                tabs12.Append(tabStop43);
                tabs12.Append(tabStop44);
                SpacingBetweenLines spacingBetweenLines26 = new SpacingBetweenLines() { Before = "60", After = "60" };

                ParagraphMarkRunProperties paragraphMarkRunProperties32 = new ParagraphMarkRunProperties();
                RunFonts runFonts58 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize44 = new FontSize() { Val = "18" };

                paragraphMarkRunProperties32.Append(runFonts58);
                paragraphMarkRunProperties32.Append(fontSize44);

                paragraphProperties32.Append(tabs12);
                paragraphProperties32.Append(spacingBetweenLines26);
                paragraphProperties32.Append(paragraphMarkRunProperties32);

                Run run27 = new Run() { RsidRunProperties = "00443ACA" };

                RunProperties runProperties27 = new RunProperties();
                RunFonts runFonts59 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize45 = new FontSize() { Val = "18" };

                runProperties27.Append(runFonts59);
                runProperties27.Append(fontSize45);
                Text text26 = new Text() { Space = SpaceProcessingModeValues.Preserve };

                //TODO Author name
                string author = o.author;
                text26.Text = author;

                run27.Append(runProperties27);
                run27.Append(text26);
                ProofError proofError3 = new ProofError() { Type = ProofingErrorValues.SpellStart };

                RunProperties runProperties28 = new RunProperties();
                RunFonts runFonts60 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize46 = new FontSize() { Val = "18" };

                runProperties28.Append(runFonts60);
                runProperties28.Append(fontSize46);

                ProofError proofError4 = new ProofError() { Type = ProofingErrorValues.SpellEnd };

                paragraph32.Append(paragraphProperties32);
                paragraph32.Append(run27);
                paragraph32.Append(proofError3);

                Paragraph paragraph33 = new Paragraph() { RsidParagraphMarkRevision = "00443ACA", RsidParagraphAddition = "00443ACA", RsidParagraphProperties = "00443ACA", RsidRunAdditionDefault = "00443ACA" };

                ParagraphProperties paragraphProperties33 = new ParagraphProperties();

                Tabs tabs13 = new Tabs();
                TabStop tabStop45 = new TabStop() { Val = TabStopValues.Left, Position = 1560 };
                TabStop tabStop46 = new TabStop() { Val = TabStopValues.Left, Position = 3969 };
                TabStop tabStop47 = new TabStop() { Val = TabStopValues.Left, Position = 5387 };
                TabStop tabStop48 = new TabStop() { Val = TabStopValues.Left, Position = 6379 };
                TabStop tabStop49 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

                tabs13.Append(tabStop45);
                tabs13.Append(tabStop46);
                tabs13.Append(tabStop47);
                tabs13.Append(tabStop48);
                tabs13.Append(tabStop49);
                SpacingBetweenLines spacingBetweenLines27 = new SpacingBetweenLines() { Before = "60", After = "60" };

                ParagraphMarkRunProperties paragraphMarkRunProperties33 = new ParagraphMarkRunProperties();
                RunFonts runFonts61 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize47 = new FontSize() { Val = "18" };

                paragraphMarkRunProperties33.Append(runFonts61);
                paragraphMarkRunProperties33.Append(fontSize47);

                paragraphProperties33.Append(tabs13);
                paragraphProperties33.Append(spacingBetweenLines27);
                paragraphProperties33.Append(paragraphMarkRunProperties33);

                Run run29 = new Run() { RsidRunProperties = "00443ACA" };

                RunProperties runProperties29 = new RunProperties();
                RunFonts runFonts62 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize48 = new FontSize() { Val = "18" };

                runProperties29.Append(runFonts62);
                runProperties29.Append(fontSize48);
                Text text28 = new Text();

                //TODO Book title
                text28.Text = o.title;

                run29.Append(runProperties29);
                run29.Append(text28);

                paragraph33.Append(paragraphProperties33);
                paragraph33.Append(run29);

                tableCell14.Append(tableCellProperties14);
                tableCell14.Append(paragraph32);
                tableCell14.Append(paragraph33);

                //Cell for quantity
                TableCell tableCell15 = new TableCell();

                TableCellProperties tableCellProperties15 = new TableCellProperties();
                TableCellWidth tableCellWidth15 = new TableCellWidth() { Width = "1036", Type = TableWidthUnitValues.Dxa };

                tableCellProperties15.Append(tableCellWidth15);

                Paragraph paragraph34 = new Paragraph() { RsidParagraphMarkRevision = "00443ACA", RsidParagraphAddition = "00443ACA", RsidParagraphProperties = "00443ACA", RsidRunAdditionDefault = "00443ACA" };

                ParagraphProperties paragraphProperties34 = new ParagraphProperties();

                Tabs tabs14 = new Tabs();
                TabStop tabStop50 = new TabStop() { Val = TabStopValues.Left, Position = 1560 };
                TabStop tabStop51 = new TabStop() { Val = TabStopValues.Left, Position = 3969 };
                TabStop tabStop52 = new TabStop() { Val = TabStopValues.Left, Position = 5387 };
                TabStop tabStop53 = new TabStop() { Val = TabStopValues.Left, Position = 6379 };
                TabStop tabStop54 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

                tabs14.Append(tabStop50);
                tabs14.Append(tabStop51);
                tabs14.Append(tabStop52);
                tabs14.Append(tabStop53);
                tabs14.Append(tabStop54);
                SpacingBetweenLines spacingBetweenLines28 = new SpacingBetweenLines() { Before = "60", After = "60" };
                Justification justification13 = new Justification() { Val = JustificationValues.Right };

                ParagraphMarkRunProperties paragraphMarkRunProperties34 = new ParagraphMarkRunProperties();
                RunFonts runFonts63 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize49 = new FontSize() { Val = "18" };

                paragraphMarkRunProperties34.Append(runFonts63);
                paragraphMarkRunProperties34.Append(fontSize49);

                paragraphProperties34.Append(tabs14);
                paragraphProperties34.Append(spacingBetweenLines28);
                paragraphProperties34.Append(justification13);
                paragraphProperties34.Append(paragraphMarkRunProperties34);

                Run run30 = new Run() { RsidRunProperties = "00443ACA" };

                RunProperties runProperties30 = new RunProperties();
                RunFonts runFonts64 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize50 = new FontSize() { Val = "18" };

                runProperties30.Append(runFonts64);
                runProperties30.Append(fontSize50);
                Text text29 = new Text();

                //TODO Quantity
                text29.Text = o.quantity.ToString();

                run30.Append(runProperties30);
                run30.Append(text29);

                paragraph34.Append(paragraphProperties34);
                paragraph34.Append(run30);

                tableCell15.Append(tableCellProperties15);
                tableCell15.Append(paragraph34);

                //Cell for price
                TableCell tableCell16 = new TableCell();

                TableCellProperties tableCellProperties16 = new TableCellProperties();
                TableCellWidth tableCellWidth16 = new TableCellWidth() { Width = "1364", Type = TableWidthUnitValues.Dxa };

                tableCellProperties16.Append(tableCellWidth16);

                Paragraph paragraph35 = new Paragraph() { RsidParagraphMarkRevision = "00443ACA", RsidParagraphAddition = "00443ACA", RsidParagraphProperties = "00443ACA", RsidRunAdditionDefault = "00443ACA" };

                ParagraphProperties paragraphProperties35 = new ParagraphProperties();

                Tabs tabs15 = new Tabs();
                TabStop tabStop55 = new TabStop() { Val = TabStopValues.Left, Position = 1560 };
                TabStop tabStop56 = new TabStop() { Val = TabStopValues.Left, Position = 3969 };
                TabStop tabStop57 = new TabStop() { Val = TabStopValues.Left, Position = 5387 };
                TabStop tabStop58 = new TabStop() { Val = TabStopValues.Left, Position = 6379 };
                TabStop tabStop59 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

                tabs15.Append(tabStop55);
                tabs15.Append(tabStop56);
                tabs15.Append(tabStop57);
                tabs15.Append(tabStop58);
                tabs15.Append(tabStop59);
                SpacingBetweenLines spacingBetweenLines29 = new SpacingBetweenLines() { Before = "60", After = "60" };
                Justification justification14 = new Justification() { Val = JustificationValues.Right };

                ParagraphMarkRunProperties paragraphMarkRunProperties35 = new ParagraphMarkRunProperties();
                RunFonts runFonts65 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize51 = new FontSize() { Val = "18" };

                paragraphMarkRunProperties35.Append(runFonts65);
                paragraphMarkRunProperties35.Append(fontSize51);

                paragraphProperties35.Append(tabs15);
                paragraphProperties35.Append(spacingBetweenLines29);
                paragraphProperties35.Append(justification14);
                paragraphProperties35.Append(paragraphMarkRunProperties35);

                Run run31 = new Run() { RsidRunProperties = "00443ACA" };

                RunProperties runProperties31 = new RunProperties();
                RunFonts runFonts66 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize52 = new FontSize() { Val = "18" };

                runProperties31.Append(runFonts66);
                runProperties31.Append(fontSize52);
                Text text30 = new Text();

                //TODO Price
                text30.Text = "$" + String.Format("{0:0.00}", o.price);

                run31.Append(runProperties31);
                run31.Append(text30);

                paragraph35.Append(paragraphProperties35);
                paragraph35.Append(run31);

                tableCell16.Append(tableCellProperties16);
                tableCell16.Append(paragraph35);

                //Cell for discount
                TableCell tableCell17 = new TableCell();

                TableCellProperties tableCellProperties17 = new TableCellProperties();
                TableCellWidth tableCellWidth17 = new TableCellWidth() { Width = "1411", Type = TableWidthUnitValues.Dxa };

                tableCellProperties17.Append(tableCellWidth17);

                Paragraph paragraph36 = new Paragraph() { RsidParagraphMarkRevision = "00443ACA", RsidParagraphAddition = "00443ACA", RsidParagraphProperties = "00443ACA", RsidRunAdditionDefault = "00443ACA" };

                ParagraphProperties paragraphProperties36 = new ParagraphProperties();

                Tabs tabs16 = new Tabs();
                TabStop tabStop60 = new TabStop() { Val = TabStopValues.Left, Position = 1560 };
                TabStop tabStop61 = new TabStop() { Val = TabStopValues.Left, Position = 3969 };
                TabStop tabStop62 = new TabStop() { Val = TabStopValues.Left, Position = 5387 };
                TabStop tabStop63 = new TabStop() { Val = TabStopValues.Left, Position = 6379 };
                TabStop tabStop64 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

                tabs16.Append(tabStop60);
                tabs16.Append(tabStop61);
                tabs16.Append(tabStop62);
                tabs16.Append(tabStop63);
                tabs16.Append(tabStop64);
                SpacingBetweenLines spacingBetweenLines30 = new SpacingBetweenLines() { Before = "60", After = "60" };
                Justification justification15 = new Justification() { Val = JustificationValues.Right };

                ParagraphMarkRunProperties paragraphMarkRunProperties36 = new ParagraphMarkRunProperties();
                RunFonts runFonts67 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize53 = new FontSize() { Val = "18" };

                paragraphMarkRunProperties36.Append(runFonts67);
                paragraphMarkRunProperties36.Append(fontSize53);

                paragraphProperties36.Append(tabs16);
                paragraphProperties36.Append(spacingBetweenLines30);
                paragraphProperties36.Append(justification15);
                paragraphProperties36.Append(paragraphMarkRunProperties36);

                Run run32 = new Run() { RsidRunProperties = "00443ACA" };

                RunProperties runProperties32 = new RunProperties();
                RunFonts runFonts68 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize54 = new FontSize() { Val = "18" };

                runProperties32.Append(runFonts68);
                runProperties32.Append(fontSize54);
                Text text31 = new Text();

                //TODO Discount
                text31.Text = "$" + String.Format("{0:0.00}", o.discount);

                run32.Append(runProperties32);
                run32.Append(text31);

                paragraph36.Append(paragraphProperties36);
                paragraph36.Append(run32);

                tableCell17.Append(tableCellProperties17);
                tableCell17.Append(paragraph36);

                //Cell for total
                TableCell tableCell18 = new TableCell();

                TableCellProperties tableCellProperties18 = new TableCellProperties();
                TableCellWidth tableCellWidth18 = new TableCellWidth() { Width = "1078", Type = TableWidthUnitValues.Dxa };

                tableCellProperties18.Append(tableCellWidth18);

                Paragraph paragraph37 = new Paragraph() { RsidParagraphMarkRevision = "00443ACA", RsidParagraphAddition = "00443ACA", RsidParagraphProperties = "00443ACA", RsidRunAdditionDefault = "00443ACA" };

                ParagraphProperties paragraphProperties37 = new ParagraphProperties();

                Tabs tabs17 = new Tabs();
                TabStop tabStop65 = new TabStop() { Val = TabStopValues.Left, Position = 1560 };
                TabStop tabStop66 = new TabStop() { Val = TabStopValues.Left, Position = 3969 };
                TabStop tabStop67 = new TabStop() { Val = TabStopValues.Left, Position = 5387 };
                TabStop tabStop68 = new TabStop() { Val = TabStopValues.Left, Position = 6379 };
                TabStop tabStop69 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

                tabs17.Append(tabStop65);
                tabs17.Append(tabStop66);
                tabs17.Append(tabStop67);
                tabs17.Append(tabStop68);
                tabs17.Append(tabStop69);
                SpacingBetweenLines spacingBetweenLines31 = new SpacingBetweenLines() { Before = "60", After = "60" };
                Justification justification16 = new Justification() { Val = JustificationValues.Right };

                ParagraphMarkRunProperties paragraphMarkRunProperties37 = new ParagraphMarkRunProperties();
                RunFonts runFonts69 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize55 = new FontSize() { Val = "18" };

                paragraphMarkRunProperties37.Append(runFonts69);
                paragraphMarkRunProperties37.Append(fontSize55);

                paragraphProperties37.Append(tabs17);
                paragraphProperties37.Append(spacingBetweenLines31);
                paragraphProperties37.Append(justification16);
                paragraphProperties37.Append(paragraphMarkRunProperties37);

                Run run33 = new Run() { RsidRunProperties = "00443ACA" };

                RunProperties runProperties33 = new RunProperties();
                RunFonts runFonts70 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
                FontSize fontSize56 = new FontSize() { Val = "18" };

                runProperties33.Append(runFonts70);
                runProperties33.Append(fontSize56);
                Text text32 = new Text();

                //Total
                double total = o.price - o.discount;

                grandTotal += total;

                //TODO have price display as decimal
                text32.Text = "$" + String.Format("{0:0.00}", total);

                run33.Append(runProperties33);
                run33.Append(text32);

                paragraph37.Append(paragraphProperties37);
                paragraph37.Append(run33);

                tableCell18.Append(tableCellProperties18);
                tableCell18.Append(paragraph37);

                //Add cells into the row
                orderedStockRow.Append(cellBookID);
                orderedStockRow.Append(tableCell14);
                orderedStockRow.Append(tableCell15);
                orderedStockRow.Append(tableCell16);
                orderedStockRow.Append(tableCell17);
                orderedStockRow.Append(tableCell18);

                //Add row for book into the table
                table2.Append(orderedStockRow);
            }
            /***************** End loop *******************/

            Paragraph paragraph38 = new Paragraph() { RsidParagraphAddition = "00B5104A", RsidParagraphProperties = "00116604", RsidRunAdditionDefault = "00B5104A" };

            ParagraphProperties paragraphProperties38 = new ParagraphProperties();

            Tabs tabs18 = new Tabs();
            TabStop tabStop70 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

            tabs18.Append(tabStop70);
            SpacingBetweenLines spacingBetweenLines32 = new SpacingBetweenLines() { Before = "40", After = "40" };

            ParagraphMarkRunProperties paragraphMarkRunProperties38 = new ParagraphMarkRunProperties();
            RunFonts runFonts71 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold5 = new Bold();
            FontSize fontSize57 = new FontSize() { Val = "18" };

            paragraphMarkRunProperties38.Append(runFonts71);
            paragraphMarkRunProperties38.Append(bold5);
            paragraphMarkRunProperties38.Append(fontSize57);

            paragraphProperties38.Append(tabs18);
            paragraphProperties38.Append(spacingBetweenLines32);
            paragraphProperties38.Append(paragraphMarkRunProperties38);

            paragraph38.Append(paragraphProperties38);

            Table table3 = new Table();

            TableProperties tableProperties3 = new TableProperties();
            TableStyle tableStyle3 = new TableStyle() { Val = "TableGrid" };
            TableWidth tableWidth3 = new TableWidth() { Width = "0", Type = TableWidthUnitValues.Auto };
            TableIndentation tableIndentation1 = new TableIndentation() { Width = 6516, Type = TableWidthUnitValues.Dxa };

            TableBorders tableBorders3 = new TableBorders();
            TopBorder topBorder2 = new TopBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };
            LeftBorder leftBorder3 = new LeftBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder2 = new BottomBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };
            RightBorder rightBorder3 = new RightBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder2 = new InsideHorizontalBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder3 = new InsideVerticalBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };

            tableBorders3.Append(topBorder2);
            tableBorders3.Append(leftBorder3);
            tableBorders3.Append(bottomBorder2);
            tableBorders3.Append(rightBorder3);
            tableBorders3.Append(insideHorizontalBorder2);
            tableBorders3.Append(insideVerticalBorder3);
            TableLook tableLook3 = new TableLook() { Val = "04A0", FirstRow = true, LastRow = false, FirstColumn = true, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = true };

            tableProperties3.Append(tableStyle3);
            tableProperties3.Append(tableWidth3);
            tableProperties3.Append(tableIndentation1);
            tableProperties3.Append(tableBorders3);
            tableProperties3.Append(tableLook3);

            TableGrid tableGrid3 = new TableGrid();
            GridColumn gridColumn10 = new GridColumn() { Width = "1559" };
            GridColumn gridColumn11 = new GridColumn() { Width = "941" };

            tableGrid3.Append(gridColumn10);
            tableGrid3.Append(gridColumn11);

            TableRow tableRow6 = new TableRow() { RsidTableRowAddition = "00B5104A", RsidTableRowProperties = "00BD60A1" };

            TableCell tableCell19 = new TableCell();

            TableCellProperties tableCellProperties19 = new TableCellProperties();
            TableCellWidth tableCellWidth19 = new TableCellWidth() { Width = "1559", Type = TableWidthUnitValues.Dxa };

            tableCellProperties19.Append(tableCellWidth19);

            Paragraph paragraph39 = new Paragraph() { RsidParagraphAddition = "00B5104A", RsidParagraphProperties = "00116604", RsidRunAdditionDefault = "00B5104A" };

            ParagraphProperties paragraphProperties39 = new ParagraphProperties();

            Tabs tabs19 = new Tabs();
            TabStop tabStop71 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

            tabs19.Append(tabStop71);
            SpacingBetweenLines spacingBetweenLines33 = new SpacingBetweenLines() { Before = "40", After = "40" };

            ParagraphMarkRunProperties paragraphMarkRunProperties39 = new ParagraphMarkRunProperties();
            RunFonts runFonts72 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold6 = new Bold();
            FontSize fontSize58 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties39.Append(runFonts72);
            paragraphMarkRunProperties39.Append(bold6);
            paragraphMarkRunProperties39.Append(fontSize58);

            paragraphProperties39.Append(tabs19);
            paragraphProperties39.Append(spacingBetweenLines33);
            paragraphProperties39.Append(paragraphMarkRunProperties39);

            Run run34 = new Run();

            RunProperties runProperties34 = new RunProperties();
            RunFonts runFonts73 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize59 = new FontSize() { Val = "20" };

            runProperties34.Append(runFonts73);
            runProperties34.Append(fontSize59);
            Text text33 = new Text();
            text33.Text = "Total:";

            run34.Append(runProperties34);
            run34.Append(text33);

            paragraph39.Append(paragraphProperties39);
            paragraph39.Append(run34);

            tableCell19.Append(tableCellProperties19);
            tableCell19.Append(paragraph39);

            TableCell tableCell20 = new TableCell();

            TableCellProperties tableCellProperties20 = new TableCellProperties();
            TableCellWidth tableCellWidth20 = new TableCellWidth() { Width = "941", Type = TableWidthUnitValues.Dxa };

            tableCellProperties20.Append(tableCellWidth20);

            Paragraph paragraph40 = new Paragraph() { RsidParagraphAddition = "00B5104A", RsidParagraphProperties = "00B5104A", RsidRunAdditionDefault = "00B5104A" };

            ParagraphProperties paragraphProperties40 = new ParagraphProperties();

            Tabs tabs20 = new Tabs();
            TabStop tabStop72 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

            tabs20.Append(tabStop72);
            SpacingBetweenLines spacingBetweenLines34 = new SpacingBetweenLines() { Before = "40", After = "40" };
            Justification justification17 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties40 = new ParagraphMarkRunProperties();
            RunFonts runFonts74 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold7 = new Bold();
            FontSize fontSize60 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties40.Append(runFonts74);
            paragraphMarkRunProperties40.Append(bold7);
            paragraphMarkRunProperties40.Append(fontSize60);

            paragraphProperties40.Append(tabs20);
            paragraphProperties40.Append(spacingBetweenLines34);
            paragraphProperties40.Append(justification17);
            paragraphProperties40.Append(paragraphMarkRunProperties40);

            Run run35 = new Run();

            RunProperties runProperties35 = new RunProperties();
            RunFonts runFonts75 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize61 = new FontSize() { Val = "20" };

            runProperties35.Append(runFonts75);
            runProperties35.Append(fontSize61);
            Text text34 = new Text();

            //TODO total after the table
            text34.Text = "$" + String.Format("{0:0.00}", grandTotal);

            run35.Append(runProperties35);
            run35.Append(text34);

            paragraph40.Append(paragraphProperties40);
            paragraph40.Append(run35);

            tableCell20.Append(tableCellProperties20);
            tableCell20.Append(paragraph40);

            tableRow6.Append(tableCell19);
            tableRow6.Append(tableCell20);

            TableRow tableRow7 = new TableRow() { RsidTableRowAddition = "00B5104A", RsidTableRowProperties = "00BD60A1" };

            TableCell tableCell21 = new TableCell();

            TableCellProperties tableCellProperties21 = new TableCellProperties();
            TableCellWidth tableCellWidth21 = new TableCellWidth() { Width = "1559", Type = TableWidthUnitValues.Dxa };

            tableCellProperties21.Append(tableCellWidth21);

            Paragraph paragraph41 = new Paragraph() { RsidParagraphAddition = "00B5104A", RsidParagraphProperties = "00116604", RsidRunAdditionDefault = "00B5104A" };

            ParagraphProperties paragraphProperties41 = new ParagraphProperties();

            Tabs tabs21 = new Tabs();
            TabStop tabStop73 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

            tabs21.Append(tabStop73);
            SpacingBetweenLines spacingBetweenLines35 = new SpacingBetweenLines() { Before = "40", After = "40" };

            ParagraphMarkRunProperties paragraphMarkRunProperties41 = new ParagraphMarkRunProperties();
            RunFonts runFonts76 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize62 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties41.Append(runFonts76);
            paragraphMarkRunProperties41.Append(fontSize62);

            paragraphProperties41.Append(tabs21);
            paragraphProperties41.Append(spacingBetweenLines35);
            paragraphProperties41.Append(paragraphMarkRunProperties41);

            Run run36 = new Run();

            RunProperties runProperties36 = new RunProperties();
            RunFonts runFonts77 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize63 = new FontSize() { Val = "20" };

            runProperties36.Append(runFonts77);
            runProperties36.Append(fontSize63);
            Text text35 = new Text();
            text35.Text = "Freight:";

            run36.Append(runProperties36);
            run36.Append(text35);

            paragraph41.Append(paragraphProperties41);
            paragraph41.Append(run36);

            tableCell21.Append(tableCellProperties21);
            tableCell21.Append(paragraph41);

            TableCell tableCell22 = new TableCell();

            TableCellProperties tableCellProperties22 = new TableCellProperties();
            TableCellWidth tableCellWidth22 = new TableCellWidth() { Width = "941", Type = TableWidthUnitValues.Dxa };

            tableCellProperties22.Append(tableCellWidth22);

            Paragraph paragraph42 = new Paragraph() { RsidParagraphAddition = "00B5104A", RsidParagraphProperties = "00B5104A", RsidRunAdditionDefault = "00B5104A" };

            ParagraphProperties paragraphProperties42 = new ParagraphProperties();

            Tabs tabs22 = new Tabs();
            TabStop tabStop74 = new TabStop() { Val = TabStopValues.Left, Position = 6663 };
            TabStop tabStop75 = new TabStop() { Val = TabStopValues.Left, Position = 8364 };

            tabs22.Append(tabStop74);
            tabs22.Append(tabStop75);
            SpacingBetweenLines spacingBetweenLines36 = new SpacingBetweenLines() { Before = "40", After = "40" };
            Justification justification18 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties42 = new ParagraphMarkRunProperties();
            RunFonts runFonts78 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize64 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties42.Append(runFonts78);
            paragraphMarkRunProperties42.Append(fontSize64);

            paragraphProperties42.Append(tabs22);
            paragraphProperties42.Append(spacingBetweenLines36);
            paragraphProperties42.Append(justification18);
            paragraphProperties42.Append(paragraphMarkRunProperties42);

            Run run37 = new Run();

            RunProperties runProperties37 = new RunProperties();
            RunFonts runFonts79 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize65 = new FontSize() { Val = "20" };

            runProperties37.Append(runFonts79);
            runProperties37.Append(fontSize65);
            Text text36 = new Text();

            //TODO freight price
            text36.Text = "$" + String.Format("{0:0.00}", order.freightCost);

            run37.Append(runProperties37);
            run37.Append(text36);

            paragraph42.Append(paragraphProperties42);
            paragraph42.Append(run37);

            tableCell22.Append(tableCellProperties22);
            tableCell22.Append(paragraph42);

            tableRow7.Append(tableCell21);
            tableRow7.Append(tableCell22);

            TableRow tableRow8 = new TableRow() { RsidTableRowAddition = "00B5104A", RsidTableRowProperties = "00BD60A1" };

            TableCell tableCell23 = new TableCell();

            TableCellProperties tableCellProperties23 = new TableCellProperties();
            TableCellWidth tableCellWidth23 = new TableCellWidth() { Width = "1559", Type = TableWidthUnitValues.Dxa };

            tableCellProperties23.Append(tableCellWidth23);

            Paragraph paragraph43 = new Paragraph() { RsidParagraphAddition = "00B5104A", RsidParagraphProperties = "00116604", RsidRunAdditionDefault = "00B5104A" };

            ParagraphProperties paragraphProperties43 = new ParagraphProperties();

            Tabs tabs23 = new Tabs();
            TabStop tabStop76 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

            tabs23.Append(tabStop76);
            SpacingBetweenLines spacingBetweenLines37 = new SpacingBetweenLines() { Before = "40", After = "40" };

            ParagraphMarkRunProperties paragraphMarkRunProperties43 = new ParagraphMarkRunProperties();
            RunFonts runFonts80 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize66 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties43.Append(runFonts80);
            paragraphMarkRunProperties43.Append(fontSize66);

            paragraphProperties43.Append(tabs23);
            paragraphProperties43.Append(spacingBetweenLines37);
            paragraphProperties43.Append(paragraphMarkRunProperties43);

            Run run38 = new Run() { RsidRunProperties = "00690638" };

            RunProperties runProperties38 = new RunProperties();
            RunFonts runFonts81 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold8 = new Bold();
            FontSize fontSize67 = new FontSize() { Val = "20" };

            runProperties38.Append(runFonts81);
            runProperties38.Append(bold8);
            runProperties38.Append(fontSize67);
            Text text37 = new Text();
            text37.Text = "Final Total";

            run38.Append(runProperties38);
            run38.Append(text37);

            Run run39 = new Run();

            RunProperties runProperties39 = new RunProperties();
            RunFonts runFonts82 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold9 = new Bold();
            FontSize fontSize68 = new FontSize() { Val = "20" };

            runProperties39.Append(runFonts82);
            runProperties39.Append(bold9);
            runProperties39.Append(fontSize68);
            Text text38 = new Text();
            text38.Text = ":";

            run39.Append(runProperties39);
            run39.Append(text38);

            paragraph43.Append(paragraphProperties43);
            paragraph43.Append(run38);
            paragraph43.Append(run39);

            tableCell23.Append(tableCellProperties23);
            tableCell23.Append(paragraph43);

            TableCell tableCell24 = new TableCell();

            TableCellProperties tableCellProperties24 = new TableCellProperties();
            TableCellWidth tableCellWidth24 = new TableCellWidth() { Width = "941", Type = TableWidthUnitValues.Dxa };

            tableCellProperties24.Append(tableCellWidth24);

            Paragraph paragraph44 = new Paragraph() { RsidParagraphAddition = "00B5104A", RsidParagraphProperties = "00B5104A", RsidRunAdditionDefault = "00B5104A" };

            ParagraphProperties paragraphProperties44 = new ParagraphProperties();

            Tabs tabs24 = new Tabs();
            TabStop tabStop77 = new TabStop() { Val = TabStopValues.Left, Position = 6663 };
            TabStop tabStop78 = new TabStop() { Val = TabStopValues.Left, Position = 8364 };

            tabs24.Append(tabStop77);
            tabs24.Append(tabStop78);
            SpacingBetweenLines spacingBetweenLines38 = new SpacingBetweenLines() { Before = "40", After = "40" };
            Justification justification19 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties44 = new ParagraphMarkRunProperties();
            RunFonts runFonts83 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            FontSize fontSize69 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties44.Append(runFonts83);
            paragraphMarkRunProperties44.Append(fontSize69);

            paragraphProperties44.Append(tabs24);
            paragraphProperties44.Append(spacingBetweenLines38);
            paragraphProperties44.Append(justification19);
            paragraphProperties44.Append(paragraphMarkRunProperties44);

            Run run40 = new Run() { RsidRunProperties = "00690638" };

            RunProperties runProperties40 = new RunProperties();
            RunFonts runFonts84 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold10 = new Bold();
            FontSize fontSize70 = new FontSize() { Val = "20" };

            runProperties40.Append(runFonts84);
            runProperties40.Append(bold10);
            runProperties40.Append(fontSize70);
            Text text39 = new Text();

            //TODO add in total + freightCost
            double finalTotal = grandTotal + order.freightCost;

            text39.Text = "$" + String.Format("{0:0.00}", finalTotal);

            run40.Append(runProperties40);
            run40.Append(text39);

            paragraph44.Append(paragraphProperties44);
            paragraph44.Append(run40);

            tableCell24.Append(tableCellProperties24);
            tableCell24.Append(paragraph44);

            tableRow8.Append(tableCell23);
            tableRow8.Append(tableCell24);

            TableRow tableRow9 = new TableRow() { RsidTableRowAddition = "00B5104A", RsidTableRowProperties = "00BD60A1" };

            TableCell tableCell25 = new TableCell();

            TableCellProperties tableCellProperties25 = new TableCellProperties();
            TableCellWidth tableCellWidth25 = new TableCellWidth() { Width = "2500", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan4 = new GridSpan() { Val = 2 };

            tableCellProperties25.Append(tableCellWidth25);
            tableCellProperties25.Append(gridSpan4);

            Paragraph paragraph45 = new Paragraph() { RsidParagraphMarkRevision = "00690638", RsidParagraphAddition = "00B5104A", RsidParagraphProperties = "00B5104A", RsidRunAdditionDefault = "00B5104A" };

            ParagraphProperties paragraphProperties45 = new ParagraphProperties();

            Tabs tabs25 = new Tabs();
            TabStop tabStop79 = new TabStop() { Val = TabStopValues.Left, Position = 6663 };
            TabStop tabStop80 = new TabStop() { Val = TabStopValues.Left, Position = 8364 };

            tabs25.Append(tabStop79);
            tabs25.Append(tabStop80);
            SpacingBetweenLines spacingBetweenLines39 = new SpacingBetweenLines() { Before = "40", After = "40" };
            Justification justification20 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties45 = new ParagraphMarkRunProperties();
            RunFonts runFonts85 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold11 = new Bold();
            FontSize fontSize71 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties45.Append(runFonts85);
            paragraphMarkRunProperties45.Append(bold11);
            paragraphMarkRunProperties45.Append(fontSize71);

            paragraphProperties45.Append(tabs25);
            paragraphProperties45.Append(spacingBetweenLines39);
            paragraphProperties45.Append(justification20);
            paragraphProperties45.Append(paragraphMarkRunProperties45);

            Run run41 = new Run() { RsidRunProperties = "00882792" };

            RunProperties runProperties41 = new RunProperties();
            RunFonts runFonts86 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold12 = new Bold();
            FontSize fontSize72 = new FontSize() { Val = "18" };

            runProperties41.Append(runFonts86);
            runProperties41.Append(bold12);
            runProperties41.Append(fontSize72);
            Text text40 = new Text();
            text40.Text = "Paid in Full";

            run41.Append(runProperties41);
            run41.Append(text40);

            paragraph45.Append(paragraphProperties45);
            paragraph45.Append(run41);

            tableCell25.Append(tableCellProperties25);
            tableCell25.Append(paragraph45);

            tableRow9.Append(tableCell25);

            table3.Append(tableProperties3);
            table3.Append(tableGrid3);
            table3.Append(tableRow6);
            table3.Append(tableRow7);
            table3.Append(tableRow8);
            table3.Append(tableRow9);

            Paragraph paragraph46 = new Paragraph() { RsidParagraphMarkRevision = "00690638", RsidParagraphAddition = "00B5104A", RsidParagraphProperties = "00116604", RsidRunAdditionDefault = "00B5104A" };

            ParagraphProperties paragraphProperties46 = new ParagraphProperties();

            Tabs tabs26 = new Tabs();
            TabStop tabStop81 = new TabStop() { Val = TabStopValues.Left, Position = 7938 };

            tabs26.Append(tabStop81);
            SpacingBetweenLines spacingBetweenLines40 = new SpacingBetweenLines() { Before = "40", After = "40" };

            ParagraphMarkRunProperties paragraphMarkRunProperties46 = new ParagraphMarkRunProperties();
            RunFonts runFonts87 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold13 = new Bold();
            FontSize fontSize73 = new FontSize() { Val = "20" };

            paragraphMarkRunProperties46.Append(runFonts87);
            paragraphMarkRunProperties46.Append(bold13);
            paragraphMarkRunProperties46.Append(fontSize73);

            paragraphProperties46.Append(tabs26);
            paragraphProperties46.Append(spacingBetweenLines40);
            paragraphProperties46.Append(paragraphMarkRunProperties46);

            paragraph46.Append(paragraphProperties46);

            SectionProperties sectionProperties3 = new SectionProperties() { RsidRPr = "00690638", RsidR = "00B5104A", RsidSect = "00EA7D1E" };
            SectionType sectionType2 = new SectionType() { Val = SectionMarkValues.Continuous };
            PageSize pageSize3 = new PageSize() { Width = (UInt32Value)11906U, Height = (UInt32Value)16838U };
            PageMargin pageMargin3 = new PageMargin() { Top = 1440, Right = (UInt32Value)1440U, Bottom = 1440, Left = (UInt32Value)1440U, Header = (UInt32Value)708U, Footer = (UInt32Value)708U, Gutter = (UInt32Value)0U };
            Columns columns3 = new Columns() { Space = "286" };
            DocGrid docGrid3 = new DocGrid() { LinePitch = 360 };

            sectionProperties3.Append(sectionType2);
            sectionProperties3.Append(pageSize3);
            sectionProperties3.Append(pageMargin3);
            sectionProperties3.Append(columns3);
            sectionProperties3.Append(docGrid3);

            body1.Append(paragraph1);
            body1.Append(paragraph2);
            body1.Append(paragraph3);
            body1.Append(paragraph4);
            body1.Append(paragraph5);
            body1.Append(paragraph6);
            body1.Append(paragraph7);
            body1.Append(paragraph8);

            if (customer != null)
            {
                if (customer.firstName != "" || customer.lastName != "")
                    body1.Append(paragraph9);
            }
            else
            {
                if(order.firstName != "" || order.lastName != "")
                    body1.Append(paragraph9);
            }

            if (customer.institution != "")
                body1.Append(paragraphInstitute);
            if(customer.address1 != "")
                body1.Append(paragraph10);
            if(customer.address2 != "")
                body1.Append(paragraph11);
            if(customer.address3 != "")
                body1.Append(paragraph12);
            if(customer.postCode != "")
                body1.Append(paragraph13);
            if(customer.country != "")
                body1.Append(paragraph14);
            body1.Append(paragraph15);
            body1.Append(table1);
            body1.Append(paragraph22);
            body1.Append(paragraph23);
            body1.Append(paragraph24);
            body1.Append(table2);
            body1.Append(paragraph38);
            body1.Append(table3);
            body1.Append(paragraph46);
            body1.Append(sectionProperties3);

            document1.Append(body1);

            mainDocumentPart1.Document = document1;
        }
Esempio n. 11
0
        // Creates an Table instance and adds its children.
        public static Table GenerateTable()
        {
            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableWidth      tableWidth1      = new TableWidth()
            {
                Width = "0", Type = TableWidthUnitValues.Auto
            };
            TableIndentation tableIndentation1 = new TableIndentation()
            {
                Width = 10, Type = TableWidthUnitValues.Dxa
            };

            TableBorders tableBorders1 = new TableBorders();
            TopBorder    topBorder1    = new TopBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder1 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder1 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder1 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };

            tableBorders1.Append(topBorder1);
            tableBorders1.Append(leftBorder1);
            tableBorders1.Append(bottomBorder1);
            tableBorders1.Append(rightBorder1);
            tableBorders1.Append(insideHorizontalBorder1);
            tableBorders1.Append(insideVerticalBorder1);

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TableCellLeftMargin    tableCellLeftMargin1    = new TableCellLeftMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };
            TableCellRightMargin tableCellRightMargin1 = new TableCellRightMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };

            tableCellMarginDefault1.Append(tableCellLeftMargin1);
            tableCellMarginDefault1.Append(tableCellRightMargin1);
            TableLook tableLook1 = new TableLook()
            {
                Val = "0000", FirstRow = false, LastRow = false, FirstColumn = false, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = false
            };

            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableIndentation1);
            tableProperties1.Append(tableBorders1);
            tableProperties1.Append(tableCellMarginDefault1);
            tableProperties1.Append(tableLook1);

            TableGrid  tableGrid1  = new TableGrid();
            GridColumn gridColumn1 = new GridColumn()
            {
                Width = "2552"
            };
            GridColumn gridColumn2 = new GridColumn()
            {
                Width = "509"
            };
            GridColumn gridColumn3 = new GridColumn()
            {
                Width = "5870"
            };

            tableGrid1.Append(gridColumn1);
            tableGrid1.Append(gridColumn2);
            tableGrid1.Append(gridColumn3);

            TableRow tableRow1 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", RsidTableRowProperties = "009E39C2", ParagraphId = "45B11039", TextId = "77777777"
            };

            TableRowProperties tableRowProperties1 = new TableRowProperties();
            GridAfter          gridAfter1          = new GridAfter()
            {
                Val = 1
            };
            WidthAfterTableRow widthAfterTableRow1 = new WidthAfterTableRow()
            {
                Width = "5870", Type = TableWidthUnitValues.Dxa
            };

            tableRowProperties1.Append(gridAfter1);
            tableRowProperties1.Append(widthAfterTableRow1);

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth      tableCellWidth1      = new TableCellWidth()
            {
                Width = "3061", Type = TableWidthUnitValues.Dxa
            };
            GridSpan gridSpan1 = new GridSpan()
            {
                Val = 2
            };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            TopBorder        topBorder2        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder2 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder2 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder2 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders1.Append(topBorder2);
            tableCellBorders1.Append(leftBorder2);
            tableCellBorders1.Append(bottomBorder2);
            tableCellBorders1.Append(rightBorder2);

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(gridSpan1);
            tableCellProperties1.Append(tableCellBorders1);

            Paragraph paragraph1 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "50E393FC", TextId = "77777777"
            };

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            Bold          bold1          = new Bold();
            FontSize      fontSize1      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties1.Append(bold1);
            runProperties1.Append(fontSize1);
            runProperties1.Append(fontSizeComplexScript1);
            Text text1 = new Text();

            text1.Text = "COMPENSATION";

            run1.Append(runProperties1);
            run1.Append(text1);

            Run run2 = new Run();

            RunProperties runProperties2 = new RunProperties();
            FontSize      fontSize2      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties2.Append(fontSize2);
            runProperties2.Append(fontSizeComplexScript2);
            Text text2 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text2.Text = "   ";

            run2.Append(runProperties2);
            run2.Append(text2);

            paragraph1.Append(run1);
            paragraph1.Append(run2);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph1);

            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);

            TableRow tableRow2 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", RsidTableRowProperties = "009E39C2", ParagraphId = "48C22992", TextId = "77777777"
            };

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth      tableCellWidth2      = new TableCellWidth()
            {
                Width = "2552", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders2 = new TableCellBorders();
            TopBorder        topBorder3        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder3 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder3 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder3 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders2.Append(topBorder3);
            tableCellBorders2.Append(leftBorder3);
            tableCellBorders2.Append(bottomBorder3);
            tableCellBorders2.Append(rightBorder3);

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(tableCellBorders2);

            Paragraph paragraph2 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "34C84734", TextId = "77777777"
            };

            Run run3 = new Run();

            RunProperties runProperties3 = new RunProperties();
            FontSize      fontSize3      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties3.Append(fontSize3);
            runProperties3.Append(fontSizeComplexScript3);
            Text text3 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text3.Text = "  ";

            run3.Append(runProperties3);
            run3.Append(text3);

            paragraph2.Append(run3);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph2);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth      tableCellWidth3      = new TableCellWidth()
            {
                Width = "6379", Type = TableWidthUnitValues.Dxa
            };
            GridSpan gridSpan2 = new GridSpan()
            {
                Val = 2
            };

            TableCellBorders tableCellBorders3 = new TableCellBorders();
            TopBorder        topBorder4        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder4 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)1U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder4 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder4 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders3.Append(topBorder4);
            tableCellBorders3.Append(leftBorder4);
            tableCellBorders3.Append(bottomBorder4);
            tableCellBorders3.Append(rightBorder4);

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(gridSpan2);
            tableCellProperties3.Append(tableCellBorders3);

            Paragraph paragraph3 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "02607055", TextId = "77777777"
            };

            Run run4 = new Run();

            RunProperties runProperties4 = new RunProperties();
            FontSize      fontSize4      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties4.Append(fontSize4);
            runProperties4.Append(fontSizeComplexScript4);
            Text text4 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text4.Text = "    ";

            run4.Append(runProperties4);
            run4.Append(text4);

            paragraph3.Append(run4);

            tableCell3.Append(tableCellProperties3);
            tableCell3.Append(paragraph3);

            tableRow2.Append(tableCell2);
            tableRow2.Append(tableCell3);

            TableRow tableRow3 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", RsidTableRowProperties = "009E39C2", ParagraphId = "735CF69D", TextId = "77777777"
            };

            TableCell tableCell4 = new TableCell();

            TableCellProperties tableCellProperties4 = new TableCellProperties();
            TableCellWidth      tableCellWidth4      = new TableCellWidth()
            {
                Width = "2552", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders4 = new TableCellBorders();
            TopBorder        topBorder5        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder5 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder5 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder5 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders4.Append(topBorder5);
            tableCellBorders4.Append(leftBorder5);
            tableCellBorders4.Append(bottomBorder5);
            tableCellBorders4.Append(rightBorder5);

            tableCellProperties4.Append(tableCellWidth4);
            tableCellProperties4.Append(tableCellBorders4);

            Paragraph paragraph4 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "5BC1A4D3", TextId = "77777777"
            };

            Run run5 = new Run();

            RunProperties runProperties5 = new RunProperties();
            FontSize      fontSize5      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript5 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties5.Append(fontSize5);
            runProperties5.Append(fontSizeComplexScript5);
            Text text5 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text5.Text = "Description: ";

            run5.Append(runProperties5);
            run5.Append(text5);

            paragraph4.Append(run5);

            tableCell4.Append(tableCellProperties4);
            tableCell4.Append(paragraph4);

            TableCell tableCell5 = new TableCell();

            TableCellProperties tableCellProperties5 = new TableCellProperties();
            TableCellWidth      tableCellWidth5      = new TableCellWidth()
            {
                Width = "6379", Type = TableWidthUnitValues.Dxa
            };
            GridSpan gridSpan3 = new GridSpan()
            {
                Val = 2
            };

            TableCellBorders tableCellBorders5 = new TableCellBorders();
            TopBorder        topBorder6        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder6 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)1U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder6 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder6 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders5.Append(topBorder6);
            tableCellBorders5.Append(leftBorder6);
            tableCellBorders5.Append(bottomBorder6);
            tableCellBorders5.Append(rightBorder6);

            tableCellProperties5.Append(tableCellWidth5);
            tableCellProperties5.Append(gridSpan3);
            tableCellProperties5.Append(tableCellBorders5);

            Paragraph paragraph5 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "2EDD1AE1", TextId = "566FE178"
            };

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines()
            {
                After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto
            };
            Indentation indentation1 = new Indentation()
            {
                Left = "144"
            };

            paragraphProperties1.Append(spacingBetweenLines1);
            paragraphProperties1.Append(indentation1);

            Run run6 = new Run();

            RunProperties runProperties6 = new RunProperties();
            FontSize      fontSize6      = new FontSize()
            {
                Val = "21"
            };
            FontSizeComplexScript fontSizeComplexScript6 = new FontSizeComplexScript()
            {
                Val = "21"
            };

            runProperties6.Append(fontSize6);
            runProperties6.Append(fontSizeComplexScript6);
            Text text6 = new Text();

            text6.Text = "Full investment executive remuneration package which includes base salary, short-term incentive/long-term incentive plan, relocation costs (if needed) including a car, full insurance package, travel costs, paid expenses, etc.";

            run6.Append(runProperties6);
            run6.Append(text6);

            paragraph5.Append(paragraphProperties1);
            paragraph5.Append(run6);

            tableCell5.Append(tableCellProperties5);
            tableCell5.Append(paragraph5);

            tableRow3.Append(tableCell4);
            tableRow3.Append(tableCell5);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);
            table1.Append(tableRow2);
            table1.Append(tableRow3);
            return(table1);
        }
        private TableCell BuildCell(string text, int gridSpan = 1, VerticalMerge vm = null, bool bold = false)
        {
            TableCell cell = new TableCell();
            Paragraph p = new Paragraph();
            ParagraphProperties paragraphProperties = new ParagraphProperties();

            Justification justification = new Justification() { Val = JustificationValues.Center };
            paragraphProperties.Append(justification);

            if (bold)
            {
                ParagraphMarkRunProperties paragraphMarkRunProperties = new ParagraphMarkRunProperties();
                Bold boldStyle = new Bold();

                paragraphMarkRunProperties.Append(boldStyle);
                paragraphProperties.Append(paragraphMarkRunProperties);
            }
            p.Append(paragraphProperties);

            if (!string.IsNullOrEmpty(text))
            {
                Run r = new Run();
                RunProperties runProperties = new RunProperties();

                if (bold)
                {
                    Bold boldStyle = new Bold();

                    runProperties.Append(boldStyle);
                }

                r.Append(runProperties);

                Text t = new Text { Text = text };
                r.AppendChild<Text>(t);

                p.AppendChild<Run>(r);
            }

            TableCellProperties cellProperty = new TableCellProperties();
            TableCellVerticalAlignment tableCellVerticalAlignment1 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            cellProperty.Append(tableCellVerticalAlignment1);

            if (gridSpan > 1)
            {
                GridSpan gs = new GridSpan { Val = gridSpan };
                cellProperty.Append(gs);
            }

            if (vm != null)
            {
                cellProperty.Append(vm);
            }

            cell.Append(cellProperty);
            cell.Append(p);

            return cell;
        }
Esempio n. 13
0
        /*Создание отчёта в Word*/
        private void saveReportToWord(string fileName)
        {
            // Create a Wordprocessing document.
            using (WordprocessingDocument myDoc =
                   WordprocessingDocument.Create(fileName,
                                 WordprocessingDocumentType.Document))
            {
                MainDocumentPart mainPart = myDoc.AddMainDocumentPart();
                mainPart.Document = new Document();
                Body body = new Body();

                Table resultTable = new Table();

                Table table = new Table();

                TableProperties tblPr = new TableProperties();
                TableBorders tblBorders = new TableBorders();
                tblBorders.TopBorder = new TopBorder();
                tblBorders.TopBorder.Val = BorderValues.Single;
                tblBorders.BottomBorder = new BottomBorder();
                tblBorders.BottomBorder.Val = BorderValues.Single;
                tblBorders.LeftBorder = new LeftBorder();
                tblBorders.LeftBorder.Val = BorderValues.Single;
                tblBorders.RightBorder = new RightBorder();
                tblBorders.RightBorder.Val = BorderValues.Single;
                tblBorders.InsideHorizontalBorder = new InsideHorizontalBorder();
                tblBorders.InsideHorizontalBorder.Val = BorderValues.Single;
                tblBorders.InsideVerticalBorder = new InsideVerticalBorder();
                tblBorders.InsideVerticalBorder.Val = BorderValues.Single;
                tblPr.Append(tblBorders);

                table.Append(tblPr);

                TableRow tr;
                TableCell tc;
                tr = new TableRow();

                body.Append(new Paragraph(new Run(new Text("Эксперимент: " + Experiment.Name.ToString() + "\n"))));
                body.Append(new Paragraph(new Run(new Text("Отклик: " + dgwExperiment.Columns[dgwExperiment.Columns.Count - 1].HeaderCell.Value.ToString() + "\n"))));
                if (dgwExperiment.Columns.Count == 2)
                {
                body.Append(new Paragraph(new Run(new Text("Фактор: "))));
                }
                else
                {
                body.Append(new Paragraph(new Run(new Text("Факторы: "))));
                }
                for (int col = 0; col < dgwExperiment.Columns.Count - 1; col++)
                {
                    body.Append(new Paragraph(new Run(new Text(dgwExperiment.Columns[col].HeaderCell.Value.ToString() + "\n"))));
                }

                body.Append(new Paragraph(new Run(new Text("\n\n"))));

                tc = new TableCell(new Paragraph(new Run(
                                   new Text("Экспериментальные данные"))));
                TableCellProperties tcp = new TableCellProperties();
                GridSpan gridSpan = new GridSpan();
                gridSpan.Val = 11;
                tcp.Append(gridSpan);
                tc.Append(tcp);
                tr.Append(tc);
                table.Append(tr);
                tr = new TableRow();
                tc = new TableCell();

                tc.Append(new Paragraph(new Run(new Text("*"))));
                tr.Append(tc);
                for (int i = 0; i < dgwExperiment.Columns.Count; i++)
                {
                    tr.Append(new TableCell(new Paragraph(new Run(new Text(dgwExperiment.Columns[i].HeaderCell.Value.ToString())))));
                }
                table.Append(tr);
                for (int i = 0; i < dgwExperiment.Rows.Count; i++)
                {
                    tr = new TableRow();
                    tr.Append(new TableCell(new Paragraph(new Run(new Text(dgwExperiment.Rows[i].HeaderCell.Value.ToString())))));
                    for (int j = 0; j < dgwExperiment.Columns.Count; j++)
                    {
                        tr.Append(new TableCell(new Paragraph(new Run(new Text(  dgwExperiment.Rows[i].Cells[j].Value.ToString())))));
                    }
                    table.Append(tr);
                }
                body.Append(table);

                body.Append(new Paragraph(new Run(new Text("\n\n"))));

                body.Append(new Paragraph(new Run(new Text("Результаты синтеза модели\n"))));
                for (int i = 0; i < txtCalcResult.Lines.Length; i++)
                {
                    body.Append(new Paragraph(new Run(new Text(txtCalcResult.Lines[i].ToString()))));
                }

                body.Append(new Paragraph(new Run(new Text("\n\n"))));

                /*
                TableRowHeight a = new TableRowHeight();
                a.HeightType = HeightRuleValues.Auto;
                */
                TableProperties tblPr2 = new TableProperties();
                TableBorders tblBorders2 = new TableBorders();
                tblBorders2.TopBorder = new TopBorder();
                tblBorders2.TopBorder.Val = BorderValues.Single;
                tblBorders2.BottomBorder = new BottomBorder();
                tblBorders2.BottomBorder.Val = BorderValues.Single;
                tblBorders2.LeftBorder = new LeftBorder();
                tblBorders2.LeftBorder.Val = BorderValues.Single;
                tblBorders2.RightBorder = new RightBorder();
                tblBorders2.RightBorder.Val = BorderValues.Single;
                tblBorders2.InsideHorizontalBorder = new InsideHorizontalBorder();
                tblBorders2.InsideHorizontalBorder.Val = BorderValues.Single;
                tblBorders2.InsideVerticalBorder = new InsideVerticalBorder();
                tblBorders2.InsideVerticalBorder.Val = BorderValues.Single;
                tblPr2.Append(tblBorders2);

                resultTable.Append(tblPr2);

                TableRow tr2;
                TableCell tc2;
                tr2 = new TableRow();
                tc2 = new TableCell(new Paragraph(new Run(
                                   new Text("Результаты расчёта по модели"))));
                TableCellProperties tcp2 = new TableCellProperties();
                GridSpan gridSpan2 = new GridSpan();
                gridSpan2.Val = 11;
                tcp2.Append(gridSpan2);
                tc2.Append(tcp2);
                tr2.Append(tc2);
                resultTable.Append(tr2);
                tr2 = new TableRow();
                tc2 = new TableCell();

                tc2.Append(new Paragraph(new Run(new Text(((dgwExperiment.ColumnCount == 2) ? "x1" : "x2  \\  x1")))));
                tr2.Append(tc2);
                for (int i = 0; i < resultForm.dataGridView1.ColumnCount - 1; i++)
                {
                    tr2.Append(new TableCell(new Paragraph(new Run(new Text(" " + resultForm.dataGridView1.Columns[i].HeaderCell.Value.ToString() + " ")))));
                }
                resultTable.Append(tr2);
                for (int i = 0; i < resultForm.dataGridView1.Rows.Count - 1; i++)
                {
                    tr2 = new TableRow();
                    tr2.Append(new TableCell(new Paragraph(new Run(new Text(resultForm.dataGridView1.Rows[i].HeaderCell.Value.ToString())))));
                    for (int j = 0; j < resultForm.dataGridView1.ColumnCount - 1; j++)
                    {
                        tr2.Append(new TableCell(new Paragraph(new Run(new Text(resultForm.dataGridView1.Rows[i].Cells[j].Value.ToString())))));
                    }
                    resultTable.Append(tr2);
                }

                body.Append(new Paragraph(new Run(resultTable)));

                nChartControl1.ImageExporter.SaveToFile(Path.GetDirectoryName(fileName) + "\\" + Experiment.Name.ToString() + ".bmp", new NSize(nChartControl1.Width, nChartControl1.Height), NResolution.ScreenResolution, new NBitmapImageFormat());

                mainPart.Document.Append(body);
                mainPart.Document.Save();
                saveResultToExcel(Path.GetDirectoryName(fileName) + "\\" + Experiment.Name.ToString() + ".xlsx");
            }
        }
Esempio n. 14
0
 private SelectGridSpan(int row, int a, int b)
 {
     Row  = row;
     Span = new GridSpan(a, b);
 }
Esempio n. 15
0
        public void CreateWordDoc(DataTable data, decimal t, string user)
        {
            string pathUser     = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
            string pathDownload = Path.Combine(pathUser, "Downloads");
            //string pathDownload = Server.MapPath("~/Content/");
            decimal total = t;

            try
            {
                //Set the current directory.
                Directory.SetCurrentDirectory(pathDownload);
            }
            catch (DirectoryNotFoundException e)
            {
                Console.WriteLine("The specified directory does not exist. {0}", e);
            }

            WordprocessingDocument doc         = WordprocessingDocument.Create("ExpenseReport.docx", WordprocessingDocumentType.Document);
            MainDocumentPart       mainDocPart = doc.AddMainDocumentPart();

            mainDocPart.Document = new DocumentFormat.OpenXml.Wordprocessing.Document();
            DocumentFormat.OpenXml.Wordprocessing.Body body = new DocumentFormat.OpenXml.Wordprocessing.Body();
            mainDocPart.Document.Append(body);
            DocumentFormat.OpenXml.Wordprocessing.Table table = new DocumentFormat.OpenXml.Wordprocessing.Table();

            //border
            TableProperties tblProp = new TableProperties(
                new TableBorders(
                    new InsideHorizontalBorder()
            {
                Val = new EnumValue <BorderValues>(BorderValues.BasicThinLines), Size = 10
            })
                );

            // Append the TableProperties object to the empty table.
            table.AppendChild <TableProperties>(tblProp);

            //setting header
            DocumentFormat.OpenXml.Wordprocessing.TableRow      tr = new DocumentFormat.OpenXml.Wordprocessing.TableRow();
            DocumentFormat.OpenXml.Wordprocessing.RunProperties rp = new DocumentFormat.OpenXml.Wordprocessing.RunProperties();
            rp.Append(new DocumentFormat.OpenXml.Wordprocessing.Color()
            {
                Val = "#FF0000"
            });
            RunFonts rFont1 = new RunFonts();

            rFont1.Ascii = "Arial";
            rp.Append(rFont1);
            rp.Append(new Bold());
            rp.Append(new DocumentFormat.OpenXml.Wordprocessing.FontSize()
            {
                Val = "28"
            });

            DocumentFormat.OpenXml.Wordprocessing.Run run = new DocumentFormat.OpenXml.Wordprocessing.Run();
            run.RunProperties = rp;
            run.Append(new Text("Expense Report for " + user));
            DocumentFormat.OpenXml.Wordprocessing.Paragraph           para = new DocumentFormat.OpenXml.Wordprocessing.Paragraph(run);
            DocumentFormat.OpenXml.Wordprocessing.TableCellProperties tcpp = new DocumentFormat.OpenXml.Wordprocessing.TableCellProperties();
            tcpp.Append(new DocumentFormat.OpenXml.Wordprocessing.TableCellWidth {
                Type = DocumentFormat.OpenXml.Wordprocessing.TableWidthUnitValues.Dxa, Width = "2200"
            });
            GridSpan gs = new GridSpan();

            gs.Val = 5;
            tcpp.Append(gs);
            DocumentFormat.OpenXml.Wordprocessing.TableCell tc = new DocumentFormat.OpenXml.Wordprocessing.TableCell(tcpp, para);
            tr.Append(tc);
            table.Append(tr);

            DocumentFormat.OpenXml.Wordprocessing.TableRow row_header = new DocumentFormat.OpenXml.Wordprocessing.TableRow();
            foreach (DataColumn column in data.Columns)
            {
                DocumentFormat.OpenXml.Wordprocessing.TableCell cell = new DocumentFormat.OpenXml.Wordprocessing.TableCell();
                cell.Append(new DocumentFormat.OpenXml.Wordprocessing.Paragraph(
                                new DocumentFormat.OpenXml.Wordprocessing.Run(new DocumentFormat.OpenXml.Wordprocessing.Text(column.ToString()))));
                cell.Append(new DocumentFormat.OpenXml.Wordprocessing.TableCellProperties(new DocumentFormat.OpenXml.Wordprocessing.TableCellWidth {
                    Type = DocumentFormat.OpenXml.Wordprocessing.TableWidthUnitValues.Dxa, Width = "2200"
                }));
                row_header.Append(cell);
            }

            table.Append(row_header);

            for (int i = 0; i < data.Rows.Count; ++i)
            {
                DocumentFormat.OpenXml.Wordprocessing.TableRow row = new DocumentFormat.OpenXml.Wordprocessing.TableRow();
                for (int j = 0; j < data.Columns.Count; j++)
                {
                    DocumentFormat.OpenXml.Wordprocessing.TableCell cell = new DocumentFormat.OpenXml.Wordprocessing.TableCell();
                    cell.Append(new DocumentFormat.OpenXml.Wordprocessing.Paragraph(new DocumentFormat.OpenXml.Wordprocessing.Run(new DocumentFormat.OpenXml.Wordprocessing.Text(data.Rows[i][j].ToString()))));
                    cell.Append(new DocumentFormat.OpenXml.Wordprocessing.TableCellProperties(new DocumentFormat.OpenXml.Wordprocessing.TableCellWidth {
                        Type = DocumentFormat.OpenXml.Wordprocessing.TableWidthUnitValues.Dxa, Width = "2200"
                    }));
                    row.Append(cell);
                }
                table.Append(row);
            }
            body.Append(table);

            Run       run1  = new Run();
            Paragraph para1 = new Paragraph(run1);

            run1.AppendChild(new Text("The total Expenditure is " + total));
            body.Append(para1);
            doc.MainDocumentPart.Document.Save();
            doc.Dispose();
        }
Esempio n. 16
0
        // Creates an Table instance and adds its children.
        public static Table GenerateTable(GenerationData data)
        {
            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableWidth      tableWidth1      = new TableWidth()
            {
                Width = "0", Type = TableWidthUnitValues.Auto
            };
            TableIndentation tableIndentation1 = new TableIndentation()
            {
                Width = 10, Type = TableWidthUnitValues.Dxa
            };

            TableBorders tableBorders1 = new TableBorders();
            TopBorder    topBorder1    = new TopBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder1 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder1 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder1 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };

            tableBorders1.Append(topBorder1);
            tableBorders1.Append(leftBorder1);
            tableBorders1.Append(bottomBorder1);
            tableBorders1.Append(rightBorder1);
            tableBorders1.Append(insideHorizontalBorder1);
            tableBorders1.Append(insideVerticalBorder1);

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TableCellLeftMargin    tableCellLeftMargin1    = new TableCellLeftMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };
            TableCellRightMargin tableCellRightMargin1 = new TableCellRightMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };

            tableCellMarginDefault1.Append(tableCellLeftMargin1);
            tableCellMarginDefault1.Append(tableCellRightMargin1);
            TableLook tableLook1 = new TableLook()
            {
                Val = "0000", FirstRow = false, LastRow = false, FirstColumn = false, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = false
            };

            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableIndentation1);
            tableProperties1.Append(tableBorders1);
            tableProperties1.Append(tableCellMarginDefault1);
            tableProperties1.Append(tableLook1);

            TableGrid  tableGrid1  = new TableGrid();
            GridColumn gridColumn1 = new GridColumn()
            {
                Width = "7770"
            };
            GridColumn gridColumn2 = new GridColumn()
            {
                Width = "1161"
            };

            tableGrid1.Append(gridColumn1);
            tableGrid1.Append(gridColumn2);

            TableRow tableRow1 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", RsidTableRowProperties = "009E39C2", ParagraphId = "168B729F", TextId = "77777777"
            };

            TableRowProperties tableRowProperties1 = new TableRowProperties();
            GridAfter          gridAfter1          = new GridAfter()
            {
                Val = 1
            };
            WidthAfterTableRow widthAfterTableRow1 = new WidthAfterTableRow()
            {
                Width = "1161", Type = TableWidthUnitValues.Dxa
            };

            tableRowProperties1.Append(gridAfter1);
            tableRowProperties1.Append(widthAfterTableRow1);

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth      tableCellWidth1      = new TableCellWidth()
            {
                Width = "7770", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            TopBorder        topBorder2        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder2 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder2 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder2 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders1.Append(topBorder2);
            tableCellBorders1.Append(leftBorder2);
            tableCellBorders1.Append(bottomBorder2);
            tableCellBorders1.Append(rightBorder2);

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(tableCellBorders1);

            Paragraph paragraph1 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "255059A2", TextId = "77777777"
            };

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            Bold          bold1          = new Bold();
            FontSize      fontSize1      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties1.Append(bold1);
            runProperties1.Append(fontSize1);
            runProperties1.Append(fontSizeComplexScript1);
            Text text1 = new Text();

            text1.Text = DocumentMetadataTexts.GetText(MetadataTexts.CV_ADDITIONAL_COMMENTS, data.Language)?.ToUpper();

            run1.Append(runProperties1);
            run1.Append(text1);

            Run run2 = new Run();

            RunProperties runProperties2 = new RunProperties();
            FontSize      fontSize2      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties2.Append(fontSize2);
            runProperties2.Append(fontSizeComplexScript2);
            Text text2 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text2.Text = "   ";

            run2.Append(runProperties2);
            run2.Append(text2);

            paragraph1.Append(run1);
            paragraph1.Append(run2);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph1);

            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);

            TableRow tableRow2 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", RsidTableRowProperties = "009E39C2", ParagraphId = "0082F7BF", TextId = "77777777"
            };

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth      tableCellWidth2      = new TableCellWidth()
            {
                Width = "8931", Type = TableWidthUnitValues.Dxa
            };
            GridSpan gridSpan1 = new GridSpan()
            {
                Val = 2
            };

            TableCellBorders tableCellBorders2 = new TableCellBorders();
            TopBorder        topBorder3        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder3 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder3 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder3 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders2.Append(topBorder3);
            tableCellBorders2.Append(leftBorder3);
            tableCellBorders2.Append(bottomBorder3);
            tableCellBorders2.Append(rightBorder3);

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(gridSpan1);
            tableCellProperties2.Append(tableCellBorders2);

            Paragraph paragraph2 = new Paragraph()
            {
                RsidParagraphAddition = "009E39C2", RsidParagraphProperties = "009E39C2", RsidRunAdditionDefault = "009E39C2", ParagraphId = "68D140B4", TextId = "77777777"
            };

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
            FontSize fontSize3 = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            paragraphMarkRunProperties1.Append(fontSize3);
            paragraphMarkRunProperties1.Append(fontSizeComplexScript3);

            paragraphProperties1.Append(paragraphMarkRunProperties1);

            Run run3 = new Run();

            RunProperties runProperties3 = new RunProperties();
            FontSize      fontSize4      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties3.Append(fontSize4);
            runProperties3.Append(fontSizeComplexScript4);
            Text text3 = new Text();

            text3.Text = data.AdditionalComments;

            run3.Append(runProperties3);
            run3.Append(text3);

            paragraph2.Append(paragraphProperties1);
            paragraph2.Append(run3);

            Paragraph paragraph4 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidParagraphProperties = "009E39C2", RsidRunAdditionDefault = "009E39C2", ParagraphId = "19FFAC55", TextId = "07256EAB"
            };

            ParagraphProperties paragraphProperties3 = new ParagraphProperties();
            Indentation         indentation2         = new Indentation()
            {
                Left = "128", Hanging = "128"
            };

            paragraphProperties3.Append(indentation2);

            Run run5 = new Run();

            RunProperties runProperties5 = new RunProperties();
            FontSize      fontSize7      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript7 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties5.Append(fontSize7);
            runProperties5.Append(fontSizeComplexScript7);
            Text text5 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text5.Text = " ";

            run5.Append(runProperties5);
            run5.Append(text5);

            paragraph4.Append(paragraphProperties3);
            paragraph4.Append(run5);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph2);
            tableCell2.Append(paragraph4);

            tableRow2.Append(tableCell2);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);
            table1.Append(tableRow2);
            return(table1);
        }
Esempio n. 17
0
        public void Create(HtmlParser parser, Calculator calculator)
        {
            // Создание Wordprocessing документа
            try
            {
                myDoc =
                   WordprocessingDocument.Create(MainWindow.Folder + Path.DirectorySeparatorChar + parser.ResultDirName + Path.DirectorySeparatorChar + parser.ResultFileNameWordTable,
                                 WordprocessingDocumentType.Document);
            }
            catch
            {
                // Укорачивание наименование файла в 2 раза, если превышает допустимое кол-во символов
                int halfLenghtWordFile = parser.ResultFileNameWordTable.Length / 2;
                string tmpWordStr = parser.ResultFileNameWordTable.Substring(0, halfLenghtWordFile);

                myDoc =
                   WordprocessingDocument.Create(MainWindow.Folder + Path.DirectorySeparatorChar + parser.ResultDirName + Path.DirectorySeparatorChar + tmpWordStr + ".docx",
                                 WordprocessingDocumentType.Document);
            }

            // Добавление главной части документа
            MainDocumentPart mainPart = myDoc.AddMainDocumentPart();

            // Создание дерева DOM для простого документа
            mainPart.Document = new Document();
            Body body = new Body();
            Table table = new Table();
            TableProperties tblPr = new TableProperties();
            TableBorders tblBorders = new TableBorders();
            tblBorders.TopBorder = new TopBorder();
            tblBorders.TopBorder.Val = new EnumValue<BorderValues>(BorderValues.Single);
            tblBorders.BottomBorder = new BottomBorder();
            tblBorders.BottomBorder.Val = new EnumValue<BorderValues>(BorderValues.Single);
            tblBorders.LeftBorder = new LeftBorder();
            tblBorders.LeftBorder.Val = new EnumValue<BorderValues>(BorderValues.Single);
            tblBorders.RightBorder = new RightBorder();
            tblBorders.RightBorder.Val = new EnumValue<BorderValues>(BorderValues.Single);
            tblBorders.InsideHorizontalBorder = new InsideHorizontalBorder();
            tblBorders.InsideHorizontalBorder.Val = BorderValues.Single;
            tblBorders.InsideVerticalBorder = new InsideVerticalBorder();
            tblBorders.InsideVerticalBorder.Val = BorderValues.Single;
            tblPr.Append(tblBorders);
            table.Append(tblPr);
            // Первый ряд с наименованием файла
            TableRow tr;
            TableCell tc;
            tr = new TableRow();
            tc = new TableCell(new Paragraph(new Run(
                               new Text(parser.ResultFileNameWordTable.Replace(".docx", "")))));
            TableCellProperties tcp = new TableCellProperties();
            GridSpan gridSpan = new GridSpan();
            gridSpan.Val = 5;
            tcp.Append(gridSpan);
            tc.Append(tcp);
            tr.Append(tc);
            table.Append(tr);
            // Последующие ряды
            tr = new TableRow();
            tc = new TableCell();
            for (int i = 1; i <= 5; i++)
            {
                switch (i)
                {
                    case 1:
                        tr.Append(new TableCell(new Paragraph(new Run(new Text("№")))));
                        break;
                    case 2:
                        tr.Append(new TableCell(new Paragraph(new Run(new Text("Показатель")))));
                        break;
                    case 3:
                        tr.Append(new TableCell(new Paragraph(new Run(new Text("Взвешенная оценка")))));
                        break;
                    case 4:
                        tr.Append(new TableCell(new Paragraph(new Run(new Text("Оценка")))));
                        break;
                    case 5:
                        tr.Append(new TableCell(new Paragraph(new Run(new Text("Вес показателя")))));
                        break;
                }
            }
            table.Append(tr);
            int tmpInt = 1;
            for (int i = 1; i <= 9; i++)
            {
                tr = new TableRow();
                if (i <= 7)
                {
                    tc = new TableCell(new Paragraph(new Run(new Text(i.ToString()))));
                }
                else
                {
                    tc = new TableCell(new Paragraph(new Run(new Text(""))));
                }
                tr.Append(tc);
                for (int j = 1; j <= 4; j++)
                {
                    switch (tmpInt)
                    {
                        case 1:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("Изменение выручки")))));
                            break;
                        case 2:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text(calculator.VzvesheniyItogIzmeneniyaViruchki.ToString())))));
                            break;
                        case 3:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text(calculator.ItogIzmeneniyaViruchki.ToString())))));
                            break;
                        case 4:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("0,2")))));
                            break;
                        case 5:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("Коэффициент текущей ликвидности")))));
                            break;
                        case 6:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text(calculator.VzvesheniyItogKoeficientaTekucsheyLikvidnosti.ToString())))));
                            break;
                        case 7:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text(calculator.ItogKoeficientaTekucsheyLikvidnosti.ToString())))));
                            break;
                        case 8:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("0,2")))));
                            break;
                        case 9:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("Коэффициент финансовой независимости")))));
                            break;
                        case 10:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text(calculator.VzvesheniyItogKoeficientaFinNezavisimosti.ToString())))));
                            break;
                        case 11:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text(calculator.ItogKoeficientaFinNezavisimosti.ToString())))));
                            break;
                        case 12:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("0,2")))));
                            break;
                        case 13:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("Чистые активы")))));
                            break;
                        case 14:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text(calculator.VzvesheniyItogChistihActivov.ToString())))));
                            break;
                        case 15:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text(calculator.ItogChistihActivov.ToString())))));
                            break;
                        case 16:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("0,2")))));
                            break;
                        case 17:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("Рентабельность продаж")))));
                            break;
                        case 18:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text(calculator.VzvesheniyItogRentabelnostiProdag.ToString())))));
                            break;
                        case 19:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text(calculator.ItogRentabelnostiProdag.ToString())))));
                            break;
                        case 20:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("0,05")))));
                            break;
                        case 21:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("Рентабельность деятельности")))));
                            break;
                        case 22:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text(calculator.VzvesheniyItogRentabelnostiDeyatelnosti.ToString())))));
                            break;
                        case 23:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text(calculator.ItogRentabelnostiDeyatelnosti.ToString())))));
                            break;
                        case 24:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("0,15")))));
                            break;
                        case 25:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("Коэффициент оборачиваемости (динамика)")))));
                            break;
                        case 26:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text()))));
                            break;
                        case 27:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text()))));
                            break;
                        case 28:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("0,1")))));
                            break;
                        case 29:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("Итого: ")))));
                            break;
                        case 30:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text()))));
                            break;
                        case 31:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text()))));
                            break;
                        case 32:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text()))));
                            break;
                        case 33:
                            tr.Append(new TableCell(new Paragraph(new Run(new Text("Оценка финансового положения заемщика")))));
                            break;
                        case 34:
                            tc = new TableCell(new Paragraph(new Run(
                               new Text(""))));
                            tcp = new TableCellProperties();
                            gridSpan = new GridSpan();
                            gridSpan.Val = 3;
                            tcp.Append(gridSpan);
                            tc.Append(tcp);
                            tr.Append(tc);
                            break;
                    }

                    tmpInt++;
                }
                table.Append(tr);
            }
            // Добавления таблицы к основе
            body.Append(table);
            // Добавление основы к документу
            mainPart.Document.Append(body);
            // Сохрание изменений главной части документа
            mainPart.Document.Save();
            myDoc.Dispose();
        }
Esempio n. 18
0
        /// <summary>
        /// Возвращает ячейку с настройками может применятся для создания строки
        /// </summary>
        /// <param name="paragraph">1 Параграф для добавления в ячейку</param>
        /// <param name="width">Длина ячейки 567 - 1 см </param>
        /// <param name="type">Тип выравнивания</param>
        /// <param name="leftmargin">Левый отступ в пикселях</param>
        /// <param name="rightmargin">Правый отступ в пикселях</param>
        /// <param name="borders">Стиль отражение границы ячейки</param>
        /// <param name="gridNumber">Объединение ячеек</param>
        /// <param name="verticalmerge">1 Начало объединения 2 конец объединения</param>
        /// <param name="colorHex">Цвет ячейки</param>
        /// <returns></returns>
        public static TableCell GenerateCell(Paragraph paragraph, string width, TableWidthUnitValues type, string leftmargin = "0", string rightmargin = "0", TableVerticalAlignmentValues verticalAlignment = TableVerticalAlignmentValues.Bottom, TableCellBorders borders = null, int gridNumber = 0, int verticalmerge = 0, string colorHex = "FFFFFF")
        {
            TableCell           tableCell           = new TableCell();
            TableCellProperties tableCellProperties = new TableCellProperties();
            TableCellWidth      tableCellWidth      = new TableCellWidth()
            {
                Width = width, Type = type
            };
            GridSpan gridSpan = new GridSpan()
            {
                Val = gridNumber
            };
            TableCellVerticalAlignment tcVA = new TableCellVerticalAlignment()
            {
                Val = verticalAlignment
            };

            if (verticalmerge == 1)
            {
                VerticalMerge vertical = new VerticalMerge()
                {
                    Val = MergedCellValues.Restart
                };
                tableCellProperties.Append(vertical);
            }
            if (verticalmerge == 2)
            {
                VerticalMerge vertical = new VerticalMerge()
                {
                    Val = MergedCellValues.Continue
                };
                tableCellProperties.Append(vertical);
            }
            TableCellMargin tableCellMargin = new TableCellMargin();

            if (leftmargin != "0")
            {
                LeftMargin leftMargin = new LeftMargin()
                {
                    Width = leftmargin, Type = TableWidthUnitValues.Dxa
                };
                tableCellMargin.Append(leftMargin);
            }

            if (rightmargin != "0")
            {
                RightMargin rightMargin = new RightMargin()
                {
                    Width = rightmargin, Type = TableWidthUnitValues.Dxa
                };
                tableCellMargin.Append(rightMargin);
            }

            Shading shading = new Shading()
            {
                Color = "auto", Fill = colorHex, Val = ShadingPatternValues.Clear
            };

            tableCellProperties.Append(shading);
            tableCellProperties.Append(tcVA);
            tableCellProperties.Append(tableCellWidth);
            tableCellProperties.Append(tableCellMargin);
            tableCellProperties.Append(gridSpan);

            if (borders != null)
            {
                tableCellProperties.Append(borders);
            }

            tableCell.Append(tableCellProperties);
            tableCell.Append(paragraph);

            return(tableCell);
        }
Esempio n. 19
0
        // Generates content of mainDocumentPart1.
        private void GenerateMainDocumentPart1Content(MainDocumentPart mainDocumentPart1)
        {
            Document document1 = new Document() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "w14 wp14" } };
            document1.AddNamespaceDeclaration("o", "urn:schemas-microsoft-com:office:office");
            document1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            document1.AddNamespaceDeclaration("v", "urn:schemas-microsoft-com:vml");
            document1.AddNamespaceDeclaration("w", "http://schemas.openxmlformats.org/wordprocessingml/2006/main");
            document1.AddNamespaceDeclaration("w10", "urn:schemas-microsoft-com:office:word");
            document1.AddNamespaceDeclaration("wp", "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing");
            document1.AddNamespaceDeclaration("wps", "http://schemas.microsoft.com/office/word/2010/wordprocessingShape");
            document1.AddNamespaceDeclaration("wpg", "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup");
            document1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            document1.AddNamespaceDeclaration("wp14", "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing");
            document1.AddNamespaceDeclaration("w14", "http://schemas.microsoft.com/office/word/2010/wordml");

            Body body1 = new Body();

            Paragraph paragraph1 = new Paragraph();

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();

            paragraphProperties1.Append(paragraphStyleId1);
            paragraphProperties1.Append(paragraphMarkRunProperties1);

            Run run1 = new Run();
            RunProperties runProperties1 = new RunProperties();

            run1.Append(runProperties1);

            paragraph1.Append(paragraphProperties1);
            paragraph1.Append(run1);

            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableWidth tableWidth1 = new TableWidth() { Width = "9636", Type = TableWidthUnitValues.Dxa };
            TableJustification tableJustification1 = new TableJustification() { Val = new EnumValue<TableRowAlignmentValues>() { InnerText = "start" } };
            TableIndentation tableIndentation1 = new TableIndentation() { Width = 111, Type = TableWidthUnitValues.Dxa };
            TableBorders tableBorders1 = new TableBorders();

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TopMargin topMargin1 = new TopMargin() { Width = "0", Type = TableWidthUnitValues.Dxa };
            StartMargin startMargin1 = new StartMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin1 = new BottomMargin() { Width = "0", Type = TableWidthUnitValues.Dxa };
            EndMargin endMargin1 = new EndMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMarginDefault1.Append(topMargin1);
            tableCellMarginDefault1.Append(startMargin1);
            tableCellMarginDefault1.Append(bottomMargin1);
            tableCellMarginDefault1.Append(endMargin1);
            TableLook tableLook1 = new TableLook() { Val = "04a0" };

            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableJustification1);
            tableProperties1.Append(tableIndentation1);
            tableProperties1.Append(tableBorders1);
            tableProperties1.Append(tableCellMarginDefault1);
            tableProperties1.Append(tableLook1);

            TableGrid tableGrid1 = new TableGrid();
            GridColumn gridColumn1 = new GridColumn() { Width = "10" };
            GridColumn gridColumn2 = new GridColumn() { Width = "626" };
            GridColumn gridColumn3 = new GridColumn() { Width = "237" };
            GridColumn gridColumn4 = new GridColumn() { Width = "185" };
            GridColumn gridColumn5 = new GridColumn() { Width = "39" };
            GridColumn gridColumn6 = new GridColumn() { Width = "41" };
            GridColumn gridColumn7 = new GridColumn() { Width = "157" };
            GridColumn gridColumn8 = new GridColumn() { Width = "235" };
            GridColumn gridColumn9 = new GridColumn() { Width = "226" };
            GridColumn gridColumn10 = new GridColumn() { Width = "30" };
            GridColumn gridColumn11 = new GridColumn() { Width = "48" };
            GridColumn gridColumn12 = new GridColumn() { Width = "99" };
            GridColumn gridColumn13 = new GridColumn() { Width = "450" };
            GridColumn gridColumn14 = new GridColumn() { Width = "52" };
            GridColumn gridColumn15 = new GridColumn() { Width = "548" };
            GridColumn gridColumn16 = new GridColumn() { Width = "87" };
            GridColumn gridColumn17 = new GridColumn() { Width = "51" };
            GridColumn gridColumn18 = new GridColumn() { Width = "587" };
            GridColumn gridColumn19 = new GridColumn() { Width = "38" };
            GridColumn gridColumn20 = new GridColumn() { Width = "3" };
            GridColumn gridColumn21 = new GridColumn() { Width = "47" };
            GridColumn gridColumn22 = new GridColumn() { Width = "120" };
            GridColumn gridColumn23 = new GridColumn() { Width = "48" };
            GridColumn gridColumn24 = new GridColumn() { Width = "28" };
            GridColumn gridColumn25 = new GridColumn() { Width = "773" };
            GridColumn gridColumn26 = new GridColumn() { Width = "148" };
            GridColumn gridColumn27 = new GridColumn() { Width = "40" };
            GridColumn gridColumn28 = new GridColumn() { Width = "138" };
            GridColumn gridColumn29 = new GridColumn() { Width = "233" };
            GridColumn gridColumn30 = new GridColumn() { Width = "342" };
            GridColumn gridColumn31 = new GridColumn() { Width = "43" };
            GridColumn gridColumn32 = new GridColumn() { Width = "468" };
            GridColumn gridColumn33 = new GridColumn() { Width = "189" };
            GridColumn gridColumn34 = new GridColumn() { Width = "339" };
            GridColumn gridColumn35 = new GridColumn() { Width = "47" };
            GridColumn gridColumn36 = new GridColumn() { Width = "130" };
            GridColumn gridColumn37 = new GridColumn() { Width = "100" };
            GridColumn gridColumn38 = new GridColumn() { Width = "46" };
            GridColumn gridColumn39 = new GridColumn() { Width = "1" };
            GridColumn gridColumn40 = new GridColumn() { Width = "1" };
            GridColumn gridColumn41 = new GridColumn() { Width = "245" };
            GridColumn gridColumn42 = new GridColumn() { Width = "57" };
            GridColumn gridColumn43 = new GridColumn() { Width = "139" };
            GridColumn gridColumn44 = new GridColumn() { Width = "199" };
            GridColumn gridColumn45 = new GridColumn() { Width = "1" };
            GridColumn gridColumn46 = new GridColumn() { Width = "547" };
            GridColumn gridColumn47 = new GridColumn() { Width = "110" };
            GridColumn gridColumn48 = new GridColumn() { Width = "152" };
            GridColumn gridColumn49 = new GridColumn() { Width = "502" };
            GridColumn gridColumn50 = new GridColumn() { Width = "653" };

            tableGrid1.Append(gridColumn1);
            tableGrid1.Append(gridColumn2);
            tableGrid1.Append(gridColumn3);
            tableGrid1.Append(gridColumn4);
            tableGrid1.Append(gridColumn5);
            tableGrid1.Append(gridColumn6);
            tableGrid1.Append(gridColumn7);
            tableGrid1.Append(gridColumn8);
            tableGrid1.Append(gridColumn9);
            tableGrid1.Append(gridColumn10);
            tableGrid1.Append(gridColumn11);
            tableGrid1.Append(gridColumn12);
            tableGrid1.Append(gridColumn13);
            tableGrid1.Append(gridColumn14);
            tableGrid1.Append(gridColumn15);
            tableGrid1.Append(gridColumn16);
            tableGrid1.Append(gridColumn17);
            tableGrid1.Append(gridColumn18);
            tableGrid1.Append(gridColumn19);
            tableGrid1.Append(gridColumn20);
            tableGrid1.Append(gridColumn21);
            tableGrid1.Append(gridColumn22);
            tableGrid1.Append(gridColumn23);
            tableGrid1.Append(gridColumn24);
            tableGrid1.Append(gridColumn25);
            tableGrid1.Append(gridColumn26);
            tableGrid1.Append(gridColumn27);
            tableGrid1.Append(gridColumn28);
            tableGrid1.Append(gridColumn29);
            tableGrid1.Append(gridColumn30);
            tableGrid1.Append(gridColumn31);
            tableGrid1.Append(gridColumn32);
            tableGrid1.Append(gridColumn33);
            tableGrid1.Append(gridColumn34);
            tableGrid1.Append(gridColumn35);
            tableGrid1.Append(gridColumn36);
            tableGrid1.Append(gridColumn37);
            tableGrid1.Append(gridColumn38);
            tableGrid1.Append(gridColumn39);
            tableGrid1.Append(gridColumn40);
            tableGrid1.Append(gridColumn41);
            tableGrid1.Append(gridColumn42);
            tableGrid1.Append(gridColumn43);
            tableGrid1.Append(gridColumn44);
            tableGrid1.Append(gridColumn45);
            tableGrid1.Append(gridColumn46);
            tableGrid1.Append(gridColumn47);
            tableGrid1.Append(gridColumn48);
            tableGrid1.Append(gridColumn49);
            tableGrid1.Append(gridColumn50);

            TableRow tableRow1 = new TableRow();
            TableRowProperties tableRowProperties1 = new TableRowProperties();

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth tableCellWidth1 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan1 = new GridSpan() { Val = 17 };
            VerticalMerge verticalMerge1 = new VerticalMerge() { Val = MergedCellValues.Restart };
            TableCellBorders tableCellBorders1 = new TableCellBorders();
            Shading shading1 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(gridSpan1);
            tableCellProperties1.Append(verticalMerge1);
            tableCellProperties1.Append(tableCellBorders1);
            tableCellProperties1.Append(shading1);

            Paragraph paragraph2 = new Paragraph();

            ParagraphProperties paragraphProperties2 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId2 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();

            paragraphProperties2.Append(paragraphStyleId2);
            paragraphProperties2.Append(paragraphMarkRunProperties2);

            Run run2 = new Run();

            RunProperties runProperties2 = new RunProperties();
            FontSize fontSize1 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript() { Val = "26" };

            runProperties2.Append(fontSize1);
            runProperties2.Append(fontSizeComplexScript1);
            Text text1 = new Text();
            text1.Text = "Срок действия";
            
            run2.Append(runProperties2);
            run2.Append(text1);

            paragraph2.Append(paragraphProperties2);
            paragraph2.Append(run2);

            Paragraph paragraph3 = new Paragraph();

            ParagraphProperties paragraphProperties3 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId3 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();

            paragraphProperties3.Append(paragraphStyleId3);
            paragraphProperties3.Append(paragraphMarkRunProperties3);

            Run run3 = new Run();

            RunProperties runProperties3 = new RunProperties();
            FontSize fontSize2 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript() { Val = "26" };

            runProperties3.Append(fontSize2);
            runProperties3.Append(fontSizeComplexScript2);
            Text text2 = new Text();
            text2.Text = "паспорта:";

            run3.Append(runProperties3);
            run3.Append(text2);

            paragraph3.Append(paragraphProperties3);
            paragraph3.Append(run3);

            Paragraph paragraph4 = new Paragraph();

            ParagraphProperties paragraphProperties4 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId4 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties4 = new ParagraphMarkRunProperties();

            paragraphProperties4.Append(paragraphStyleId4);
            paragraphProperties4.Append(paragraphMarkRunProperties4);

            Run run4 = new Run();

            RunProperties runProperties4 = new RunProperties();
            FontSize fontSize3 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript() { Val = "26" };

            runProperties4.Append(fontSize3);
            runProperties4.Append(fontSizeComplexScript3);
            Text text3 = new Text();
            text3.Text = "до «___» _______ 20__ г.";

            run4.Append(runProperties4);
            run4.Append(text3);

            paragraph4.Append(paragraphProperties4);
            paragraph4.Append(run4);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph2);
            tableCell1.Append(paragraph3);
            tableCell1.Append(paragraph4);

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth tableCellWidth2 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan2 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders2 = new TableCellBorders();
            Shading shading2 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(gridSpan2);
            tableCellProperties2.Append(tableCellBorders2);
            tableCellProperties2.Append(shading2);

            Paragraph paragraph5 = new Paragraph();

            ParagraphProperties paragraphProperties5 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId5 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties5 = new ParagraphMarkRunProperties();
            FontSize fontSize4 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties5.Append(fontSize4);
            paragraphMarkRunProperties5.Append(fontSizeComplexScript4);

            paragraphProperties5.Append(paragraphStyleId5);
            paragraphProperties5.Append(paragraphMarkRunProperties5);

            Run run5 = new Run();

            RunProperties runProperties5 = new RunProperties();
            FontSize fontSize5 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript5 = new FontSizeComplexScript() { Val = "26" };

            runProperties5.Append(fontSize5);
            runProperties5.Append(fontSizeComplexScript5);

            run5.Append(runProperties5);

            paragraph5.Append(paragraphProperties5);
            paragraph5.Append(run5);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph5);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth tableCellWidth3 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan3 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge2 = new VerticalMerge() { Val = MergedCellValues.Restart };
            TableCellBorders tableCellBorders3 = new TableCellBorders();
            Shading shading3 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(gridSpan3);
            tableCellProperties3.Append(verticalMerge2);
            tableCellProperties3.Append(tableCellBorders3);
            tableCellProperties3.Append(shading3);

            Paragraph paragraph6 = new Paragraph();

            ParagraphProperties paragraphProperties6 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId6 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification1 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties6 = new ParagraphMarkRunProperties();

            paragraphProperties6.Append(paragraphStyleId6);
            paragraphProperties6.Append(justification1);
            paragraphProperties6.Append(paragraphMarkRunProperties6);

            Run run6 = new Run();

            RunProperties runProperties6 = new RunProperties();
            Bold bold1 = new Bold();
            FontSize fontSize6 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript6 = new FontSizeComplexScript() { Val = "26" };

            runProperties6.Append(bold1);
            runProperties6.Append(fontSize6);
            runProperties6.Append(fontSizeComplexScript6);
            Text text4 = new Text();
            text4.Text = "Коммерческая тайна";

            run6.Append(runProperties6);
            run6.Append(text4);

            paragraph6.Append(paragraphProperties6);
            paragraph6.Append(run6);

            Paragraph paragraph7 = new Paragraph();

            ParagraphProperties paragraphProperties7 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId7 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification2 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties7 = new ParagraphMarkRunProperties();

            paragraphProperties7.Append(paragraphStyleId7);
            paragraphProperties7.Append(justification2);
            paragraphProperties7.Append(paragraphMarkRunProperties7);

            Run run7 = new Run();

            RunProperties runProperties7 = new RunProperties();
            FontSize fontSize7 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript7 = new FontSizeComplexScript() { Val = "26" };

            runProperties7.Append(fontSize7);
            runProperties7.Append(fontSizeComplexScript7);
            Text text5 = new Text();
            text5.Text = CommertialSecurity;

            run7.Append(runProperties7);
            run7.Append(text5);

            paragraph7.Append(paragraphProperties7);
            paragraph7.Append(run7);

            Paragraph paragraph10 = new Paragraph();

            ParagraphProperties paragraphProperties10 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId10 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification5 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties10 = new ParagraphMarkRunProperties();

            paragraphProperties10.Append(paragraphStyleId10);
            paragraphProperties10.Append(justification5);
            paragraphProperties10.Append(paragraphMarkRunProperties10);

            Run run10 = new Run();

            RunProperties runProperties10 = new RunProperties();
            FontSize fontSize10 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript10 = new FontSizeComplexScript() { Val = "26" };

            runProperties10.Append(fontSize10);
            runProperties10.Append(fontSizeComplexScript10);
            Text text8 = new Text();
            text8.Text = "Экз. № ______";

            run10.Append(runProperties10);
            run10.Append(text8);

            paragraph10.Append(paragraphProperties10);
            paragraph10.Append(run10);

            tableCell3.Append(tableCellProperties3);
            tableCell3.Append(paragraph6);
            tableCell3.Append(paragraph7);
          
            tableCell3.Append(paragraph10);

            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);
            tableRow1.Append(tableCell2);
            tableRow1.Append(tableCell3);

            TableRow tableRow2 = new TableRow();
            TableRowProperties tableRowProperties2 = new TableRowProperties();

            TableCell tableCell4 = new TableCell();

            TableCellProperties tableCellProperties4 = new TableCellProperties();
            TableCellWidth tableCellWidth4 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan4 = new GridSpan() { Val = 17 };
            VerticalMerge verticalMerge3 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders4 = new TableCellBorders();
            Shading shading4 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties4.Append(tableCellWidth4);
            tableCellProperties4.Append(gridSpan4);
            tableCellProperties4.Append(verticalMerge3);
            tableCellProperties4.Append(tableCellBorders4);
            tableCellProperties4.Append(shading4);

            Paragraph paragraph11 = new Paragraph();

            ParagraphProperties paragraphProperties11 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId11 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties11 = new ParagraphMarkRunProperties();

            paragraphProperties11.Append(paragraphStyleId11);
            paragraphProperties11.Append(paragraphMarkRunProperties11);

            Run run11 = new Run();
            RunProperties runProperties11 = new RunProperties();

            run11.Append(runProperties11);

            paragraph11.Append(paragraphProperties11);
            paragraph11.Append(run11);

            tableCell4.Append(tableCellProperties4);
            tableCell4.Append(paragraph11);

            TableCell tableCell5 = new TableCell();

            TableCellProperties tableCellProperties5 = new TableCellProperties();
            TableCellWidth tableCellWidth5 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan5 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders5 = new TableCellBorders();
            Shading shading5 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties5.Append(tableCellWidth5);
            tableCellProperties5.Append(gridSpan5);
            tableCellProperties5.Append(tableCellBorders5);
            tableCellProperties5.Append(shading5);

            Paragraph paragraph12 = new Paragraph();

            ParagraphProperties paragraphProperties12 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId12 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties12 = new ParagraphMarkRunProperties();
            FontSize fontSize11 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript11 = new FontSizeComplexScript() { Val = "26" };
            Shading shading6 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties12.Append(fontSize11);
            paragraphMarkRunProperties12.Append(fontSizeComplexScript11);
            paragraphMarkRunProperties12.Append(shading6);

            paragraphProperties12.Append(paragraphStyleId12);
            paragraphProperties12.Append(paragraphMarkRunProperties12);

            Run run12 = new Run();

            RunProperties runProperties12 = new RunProperties();
            FontSize fontSize12 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript12 = new FontSizeComplexScript() { Val = "26" };
            Shading shading7 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties12.Append(fontSize12);
            runProperties12.Append(fontSizeComplexScript12);
            runProperties12.Append(shading7);

            run12.Append(runProperties12);

            paragraph12.Append(paragraphProperties12);
            paragraph12.Append(run12);

            tableCell5.Append(tableCellProperties5);
            tableCell5.Append(paragraph12);

            TableCell tableCell6 = new TableCell();

            TableCellProperties tableCellProperties6 = new TableCellProperties();
            TableCellWidth tableCellWidth6 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan6 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge4 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders6 = new TableCellBorders();
            Shading shading8 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties6.Append(tableCellWidth6);
            tableCellProperties6.Append(gridSpan6);
            tableCellProperties6.Append(verticalMerge4);
            tableCellProperties6.Append(tableCellBorders6);
            tableCellProperties6.Append(shading8);

            Paragraph paragraph13 = new Paragraph();

            ParagraphProperties paragraphProperties13 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId13 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification6 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties13 = new ParagraphMarkRunProperties();

            paragraphProperties13.Append(paragraphStyleId13);
            paragraphProperties13.Append(justification6);
            paragraphProperties13.Append(paragraphMarkRunProperties13);

            Run run13 = new Run();
            RunProperties runProperties13 = new RunProperties();

            run13.Append(runProperties13);

            paragraph13.Append(paragraphProperties13);
            paragraph13.Append(run13);

            tableCell6.Append(tableCellProperties6);
            tableCell6.Append(paragraph13);

            tableRow2.Append(tableRowProperties2);
            tableRow2.Append(tableCell4);
            tableRow2.Append(tableCell5);
            tableRow2.Append(tableCell6);

            TableRow tableRow3 = new TableRow();
            TableRowProperties tableRowProperties3 = new TableRowProperties();

            TableCell tableCell7 = new TableCell();

            TableCellProperties tableCellProperties7 = new TableCellProperties();
            TableCellWidth tableCellWidth7 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan7 = new GridSpan() { Val = 17 };
            VerticalMerge verticalMerge5 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders7 = new TableCellBorders();
            Shading shading9 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties7.Append(tableCellWidth7);
            tableCellProperties7.Append(gridSpan7);
            tableCellProperties7.Append(verticalMerge5);
            tableCellProperties7.Append(tableCellBorders7);
            tableCellProperties7.Append(shading9);

            Paragraph paragraph14 = new Paragraph();

            ParagraphProperties paragraphProperties14 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId14 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties14 = new ParagraphMarkRunProperties();

            paragraphProperties14.Append(paragraphStyleId14);
            paragraphProperties14.Append(paragraphMarkRunProperties14);

            Run run14 = new Run();
            RunProperties runProperties14 = new RunProperties();

            run14.Append(runProperties14);

            paragraph14.Append(paragraphProperties14);
            paragraph14.Append(run14);

            tableCell7.Append(tableCellProperties7);
            tableCell7.Append(paragraph14);

            TableCell tableCell8 = new TableCell();

            TableCellProperties tableCellProperties8 = new TableCellProperties();
            TableCellWidth tableCellWidth8 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan8 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders8 = new TableCellBorders();
            Shading shading10 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties8.Append(tableCellWidth8);
            tableCellProperties8.Append(gridSpan8);
            tableCellProperties8.Append(tableCellBorders8);
            tableCellProperties8.Append(shading10);

            Paragraph paragraph15 = new Paragraph();

            ParagraphProperties paragraphProperties15 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId15 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties15 = new ParagraphMarkRunProperties();
            FontSize fontSize13 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript13 = new FontSizeComplexScript() { Val = "26" };
            Shading shading11 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties15.Append(fontSize13);
            paragraphMarkRunProperties15.Append(fontSizeComplexScript13);
            paragraphMarkRunProperties15.Append(shading11);

            paragraphProperties15.Append(paragraphStyleId15);
            paragraphProperties15.Append(paragraphMarkRunProperties15);

            Run run15 = new Run();

            RunProperties runProperties15 = new RunProperties();
            FontSize fontSize14 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript14 = new FontSizeComplexScript() { Val = "26" };
            Shading shading12 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties15.Append(fontSize14);
            runProperties15.Append(fontSizeComplexScript14);
            runProperties15.Append(shading12);

            run15.Append(runProperties15);

            paragraph15.Append(paragraphProperties15);
            paragraph15.Append(run15);

            tableCell8.Append(tableCellProperties8);
            tableCell8.Append(paragraph15);

            TableCell tableCell9 = new TableCell();

            TableCellProperties tableCellProperties9 = new TableCellProperties();
            TableCellWidth tableCellWidth9 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan9 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge6 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders9 = new TableCellBorders();
            Shading shading13 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties9.Append(tableCellWidth9);
            tableCellProperties9.Append(gridSpan9);
            tableCellProperties9.Append(verticalMerge6);
            tableCellProperties9.Append(tableCellBorders9);
            tableCellProperties9.Append(shading13);

            Paragraph paragraph16 = new Paragraph();

            ParagraphProperties paragraphProperties16 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId16 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification7 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties16 = new ParagraphMarkRunProperties();

            paragraphProperties16.Append(paragraphStyleId16);
            paragraphProperties16.Append(justification7);
            paragraphProperties16.Append(paragraphMarkRunProperties16);

            Run run16 = new Run();
            RunProperties runProperties16 = new RunProperties();

            run16.Append(runProperties16);

            paragraph16.Append(paragraphProperties16);
            paragraph16.Append(run16);

            tableCell9.Append(tableCellProperties9);
            tableCell9.Append(paragraph16);

            tableRow3.Append(tableRowProperties3);
            tableRow3.Append(tableCell7);
            tableRow3.Append(tableCell8);
            tableRow3.Append(tableCell9);

            TableRow tableRow4 = new TableRow();
            TableRowProperties tableRowProperties4 = new TableRowProperties();

            TableCell tableCell10 = new TableCell();

            TableCellProperties tableCellProperties10 = new TableCellProperties();
            TableCellWidth tableCellWidth10 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan10 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders10 = new TableCellBorders();
            Shading shading14 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties10.Append(tableCellWidth10);
            tableCellProperties10.Append(gridSpan10);
            tableCellProperties10.Append(tableCellBorders10);
            tableCellProperties10.Append(shading14);

            Paragraph paragraph17 = new Paragraph();

            ParagraphProperties paragraphProperties17 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId17 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties17 = new ParagraphMarkRunProperties();
            FontSize fontSize15 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript15 = new FontSizeComplexScript() { Val = "26" };
            Shading shading15 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties17.Append(fontSize15);
            paragraphMarkRunProperties17.Append(fontSizeComplexScript15);
            paragraphMarkRunProperties17.Append(shading15);

            paragraphProperties17.Append(paragraphStyleId17);
            paragraphProperties17.Append(paragraphMarkRunProperties17);

            Run run17 = new Run();

            RunProperties runProperties17 = new RunProperties();
            FontSize fontSize16 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript16 = new FontSizeComplexScript() { Val = "26" };
            Shading shading16 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties17.Append(fontSize16);
            runProperties17.Append(fontSizeComplexScript16);
            runProperties17.Append(shading16);

            run17.Append(runProperties17);

            paragraph17.Append(paragraphProperties17);
            paragraph17.Append(run17);

            tableCell10.Append(tableCellProperties10);
            tableCell10.Append(paragraph17);

            TableCell tableCell11 = new TableCell();

            TableCellProperties tableCellProperties11 = new TableCellProperties();
            TableCellWidth tableCellWidth11 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan11 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders11 = new TableCellBorders();
            Shading shading17 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties11.Append(tableCellWidth11);
            tableCellProperties11.Append(gridSpan11);
            tableCellProperties11.Append(tableCellBorders11);
            tableCellProperties11.Append(shading17);

            Paragraph paragraph18 = new Paragraph();

            ParagraphProperties paragraphProperties18 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId18 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties18 = new ParagraphMarkRunProperties();
            FontSize fontSize17 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript17 = new FontSizeComplexScript() { Val = "26" };
            Shading shading18 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties18.Append(fontSize17);
            paragraphMarkRunProperties18.Append(fontSizeComplexScript17);
            paragraphMarkRunProperties18.Append(shading18);

            paragraphProperties18.Append(paragraphStyleId18);
            paragraphProperties18.Append(paragraphMarkRunProperties18);

            Run run18 = new Run();

            RunProperties runProperties18 = new RunProperties();
            FontSize fontSize18 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript18 = new FontSizeComplexScript() { Val = "26" };
            Shading shading19 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties18.Append(fontSize18);
            runProperties18.Append(fontSizeComplexScript18);
            runProperties18.Append(shading19);

            run18.Append(runProperties18);

            paragraph18.Append(paragraphProperties18);
            paragraph18.Append(run18);

            tableCell11.Append(tableCellProperties11);
            tableCell11.Append(paragraph18);

            TableCell tableCell12 = new TableCell();

            TableCellProperties tableCellProperties12 = new TableCellProperties();
            TableCellWidth tableCellWidth12 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan12 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge7 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders12 = new TableCellBorders();
            Shading shading20 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties12.Append(tableCellWidth12);
            tableCellProperties12.Append(gridSpan12);
            tableCellProperties12.Append(verticalMerge7);
            tableCellProperties12.Append(tableCellBorders12);
            tableCellProperties12.Append(shading20);

            Paragraph paragraph19 = new Paragraph();

            ParagraphProperties paragraphProperties19 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId19 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification8 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties19 = new ParagraphMarkRunProperties();

            paragraphProperties19.Append(paragraphStyleId19);
            paragraphProperties19.Append(justification8);
            paragraphProperties19.Append(paragraphMarkRunProperties19);

            Run run19 = new Run();
            RunProperties runProperties19 = new RunProperties();

            run19.Append(runProperties19);

            paragraph19.Append(paragraphProperties19);
            paragraph19.Append(run19);

            tableCell12.Append(tableCellProperties12);
            tableCell12.Append(paragraph19);

            tableRow4.Append(tableRowProperties4);
            tableRow4.Append(tableCell10);
            tableRow4.Append(tableCell11);
            tableRow4.Append(tableCell12);

            TableRow tableRow5 = new TableRow();
            TableRowProperties tableRowProperties5 = new TableRowProperties();

            TableCell tableCell13 = new TableCell();

            TableCellProperties tableCellProperties13 = new TableCellProperties();
            TableCellWidth tableCellWidth13 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan13 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders13 = new TableCellBorders();
            Shading shading21 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties13.Append(tableCellWidth13);
            tableCellProperties13.Append(gridSpan13);
            tableCellProperties13.Append(tableCellBorders13);
            tableCellProperties13.Append(shading21);

            Paragraph paragraph20 = new Paragraph();

            ParagraphProperties paragraphProperties20 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId20 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties20 = new ParagraphMarkRunProperties();
            FontSize fontSize19 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript19 = new FontSizeComplexScript() { Val = "26" };
            Shading shading22 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties20.Append(fontSize19);
            paragraphMarkRunProperties20.Append(fontSizeComplexScript19);
            paragraphMarkRunProperties20.Append(shading22);

            paragraphProperties20.Append(paragraphStyleId20);
            paragraphProperties20.Append(paragraphMarkRunProperties20);

            Run run20 = new Run();

            RunProperties runProperties20 = new RunProperties();
            FontSize fontSize20 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript20 = new FontSizeComplexScript() { Val = "26" };
            Shading shading23 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties20.Append(fontSize20);
            runProperties20.Append(fontSizeComplexScript20);
            runProperties20.Append(shading23);

            run20.Append(runProperties20);

            paragraph20.Append(paragraphProperties20);
            paragraph20.Append(run20);

            tableCell13.Append(tableCellProperties13);
            tableCell13.Append(paragraph20);

            TableCell tableCell14 = new TableCell();

            TableCellProperties tableCellProperties14 = new TableCellProperties();
            TableCellWidth tableCellWidth14 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan14 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders14 = new TableCellBorders();
            Shading shading24 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties14.Append(tableCellWidth14);
            tableCellProperties14.Append(gridSpan14);
            tableCellProperties14.Append(tableCellBorders14);
            tableCellProperties14.Append(shading24);

            Paragraph paragraph21 = new Paragraph();

            ParagraphProperties paragraphProperties21 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId21 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties21 = new ParagraphMarkRunProperties();
            FontSize fontSize21 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript21 = new FontSizeComplexScript() { Val = "26" };
            Shading shading25 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties21.Append(fontSize21);
            paragraphMarkRunProperties21.Append(fontSizeComplexScript21);
            paragraphMarkRunProperties21.Append(shading25);

            paragraphProperties21.Append(paragraphStyleId21);
            paragraphProperties21.Append(paragraphMarkRunProperties21);

            Run run21 = new Run();

            RunProperties runProperties21 = new RunProperties();
            FontSize fontSize22 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript22 = new FontSizeComplexScript() { Val = "26" };
            Shading shading26 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties21.Append(fontSize22);
            runProperties21.Append(fontSizeComplexScript22);
            runProperties21.Append(shading26);

            run21.Append(runProperties21);

            paragraph21.Append(paragraphProperties21);
            paragraph21.Append(run21);

            tableCell14.Append(tableCellProperties14);
            tableCell14.Append(paragraph21);

            TableCell tableCell15 = new TableCell();

            TableCellProperties tableCellProperties15 = new TableCellProperties();
            TableCellWidth tableCellWidth15 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan15 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge8 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders15 = new TableCellBorders();
            Shading shading27 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties15.Append(tableCellWidth15);
            tableCellProperties15.Append(gridSpan15);
            tableCellProperties15.Append(verticalMerge8);
            tableCellProperties15.Append(tableCellBorders15);
            tableCellProperties15.Append(shading27);

            Paragraph paragraph22 = new Paragraph();

            ParagraphProperties paragraphProperties22 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId22 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification9 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties22 = new ParagraphMarkRunProperties();

            paragraphProperties22.Append(paragraphStyleId22);
            paragraphProperties22.Append(justification9);
            paragraphProperties22.Append(paragraphMarkRunProperties22);

            Run run22 = new Run();
            RunProperties runProperties22 = new RunProperties();

            run22.Append(runProperties22);

            paragraph22.Append(paragraphProperties22);
            paragraph22.Append(run22);

            tableCell15.Append(tableCellProperties15);
            tableCell15.Append(paragraph22);

            tableRow5.Append(tableRowProperties5);
            tableRow5.Append(tableCell13);
            tableRow5.Append(tableCell14);
            tableRow5.Append(tableCell15);

            TableRow tableRow6 = new TableRow();
            TableRowProperties tableRowProperties6 = new TableRowProperties();

            TableCell tableCell16 = new TableCell();

            TableCellProperties tableCellProperties16 = new TableCellProperties();
            TableCellWidth tableCellWidth16 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan16 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders16 = new TableCellBorders();
            Shading shading28 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties16.Append(tableCellWidth16);
            tableCellProperties16.Append(gridSpan16);
            tableCellProperties16.Append(tableCellBorders16);
            tableCellProperties16.Append(shading28);

            Paragraph paragraph23 = new Paragraph();

            ParagraphProperties paragraphProperties23 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId23 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties23 = new ParagraphMarkRunProperties();
            FontSize fontSize23 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript23 = new FontSizeComplexScript() { Val = "26" };
            Shading shading29 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties23.Append(fontSize23);
            paragraphMarkRunProperties23.Append(fontSizeComplexScript23);
            paragraphMarkRunProperties23.Append(shading29);

            paragraphProperties23.Append(paragraphStyleId23);
            paragraphProperties23.Append(paragraphMarkRunProperties23);

            Run run23 = new Run();

            RunProperties runProperties23 = new RunProperties();
            FontSize fontSize24 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript24 = new FontSizeComplexScript() { Val = "26" };
            Shading shading30 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties23.Append(fontSize24);
            runProperties23.Append(fontSizeComplexScript24);
            runProperties23.Append(shading30);

            run23.Append(runProperties23);

            paragraph23.Append(paragraphProperties23);
            paragraph23.Append(run23);

            tableCell16.Append(tableCellProperties16);
            tableCell16.Append(paragraph23);

            TableCell tableCell17 = new TableCell();

            TableCellProperties tableCellProperties17 = new TableCellProperties();
            TableCellWidth tableCellWidth17 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan17 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders17 = new TableCellBorders();
            Shading shading31 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties17.Append(tableCellWidth17);
            tableCellProperties17.Append(gridSpan17);
            tableCellProperties17.Append(tableCellBorders17);
            tableCellProperties17.Append(shading31);

            Paragraph paragraph24 = new Paragraph();

            ParagraphProperties paragraphProperties24 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId24 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties24 = new ParagraphMarkRunProperties();
            FontSize fontSize25 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript25 = new FontSizeComplexScript() { Val = "26" };
            Shading shading32 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties24.Append(fontSize25);
            paragraphMarkRunProperties24.Append(fontSizeComplexScript25);
            paragraphMarkRunProperties24.Append(shading32);

            paragraphProperties24.Append(paragraphStyleId24);
            paragraphProperties24.Append(paragraphMarkRunProperties24);

            Run run24 = new Run();

            RunProperties runProperties24 = new RunProperties();
            FontSize fontSize26 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript26 = new FontSizeComplexScript() { Val = "26" };
            Shading shading33 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties24.Append(fontSize26);
            runProperties24.Append(fontSizeComplexScript26);
            runProperties24.Append(shading33);

            run24.Append(runProperties24);

            paragraph24.Append(paragraphProperties24);
            paragraph24.Append(run24);

            tableCell17.Append(tableCellProperties17);
            tableCell17.Append(paragraph24);

            TableCell tableCell18 = new TableCell();

            TableCellProperties tableCellProperties18 = new TableCellProperties();
            TableCellWidth tableCellWidth18 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan18 = new GridSpan() { Val = 25 };
            TableCellBorders tableCellBorders18 = new TableCellBorders();
            Shading shading34 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties18.Append(tableCellWidth18);
            tableCellProperties18.Append(gridSpan18);
            tableCellProperties18.Append(tableCellBorders18);
            tableCellProperties18.Append(shading34);

            Paragraph paragraph25 = new Paragraph();

            ParagraphProperties paragraphProperties25 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId25 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties25 = new ParagraphMarkRunProperties();
            FontSize fontSize27 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript27 = new FontSizeComplexScript() { Val = "26" };
            Shading shading35 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties25.Append(fontSize27);
            paragraphMarkRunProperties25.Append(fontSizeComplexScript27);
            paragraphMarkRunProperties25.Append(shading35);

            paragraphProperties25.Append(paragraphStyleId25);
            paragraphProperties25.Append(paragraphMarkRunProperties25);

            Run run25 = new Run();

            RunProperties runProperties25 = new RunProperties();
            FontSize fontSize28 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript28 = new FontSizeComplexScript() { Val = "26" };
            Shading shading36 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties25.Append(fontSize28);
            runProperties25.Append(fontSizeComplexScript28);
            runProperties25.Append(shading36);

            run25.Append(runProperties25);

            paragraph25.Append(paragraphProperties25);
            paragraph25.Append(run25);

            tableCell18.Append(tableCellProperties18);
            tableCell18.Append(paragraph25);

            tableRow6.Append(tableRowProperties6);
            tableRow6.Append(tableCell16);
            tableRow6.Append(tableCell17);
            tableRow6.Append(tableCell18);

            TableRow tableRow7 = new TableRow();
            TableRowProperties tableRowProperties7 = new TableRowProperties();

            TableCell tableCell19 = new TableCell();

            TableCellProperties tableCellProperties19 = new TableCellProperties();
            TableCellWidth tableCellWidth19 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan19 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders19 = new TableCellBorders();
            Shading shading37 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties19.Append(tableCellWidth19);
            tableCellProperties19.Append(gridSpan19);
            tableCellProperties19.Append(tableCellBorders19);
            tableCellProperties19.Append(shading37);

            Paragraph paragraph26 = new Paragraph();

            ParagraphProperties paragraphProperties26 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId26 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties26 = new ParagraphMarkRunProperties();
            FontSize fontSize29 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript29 = new FontSizeComplexScript() { Val = "26" };
            Shading shading38 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties26.Append(fontSize29);
            paragraphMarkRunProperties26.Append(fontSizeComplexScript29);
            paragraphMarkRunProperties26.Append(shading38);

            paragraphProperties26.Append(paragraphStyleId26);
            paragraphProperties26.Append(paragraphMarkRunProperties26);

            Run run26 = new Run();

            RunProperties runProperties26 = new RunProperties();
            FontSize fontSize30 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript30 = new FontSizeComplexScript() { Val = "26" };
            Shading shading39 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties26.Append(fontSize30);
            runProperties26.Append(fontSizeComplexScript30);
            runProperties26.Append(shading39);

            run26.Append(runProperties26);

            paragraph26.Append(paragraphProperties26);
            paragraph26.Append(run26);

            tableCell19.Append(tableCellProperties19);
            tableCell19.Append(paragraph26);

            TableCell tableCell20 = new TableCell();

            TableCellProperties tableCellProperties20 = new TableCellProperties();
            TableCellWidth tableCellWidth20 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan20 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders20 = new TableCellBorders();
            Shading shading40 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties20.Append(tableCellWidth20);
            tableCellProperties20.Append(gridSpan20);
            tableCellProperties20.Append(tableCellBorders20);
            tableCellProperties20.Append(shading40);

            Paragraph paragraph27 = new Paragraph();

            ParagraphProperties paragraphProperties27 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId27 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties27 = new ParagraphMarkRunProperties();
            FontSize fontSize31 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript31 = new FontSizeComplexScript() { Val = "26" };
            Shading shading41 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties27.Append(fontSize31);
            paragraphMarkRunProperties27.Append(fontSizeComplexScript31);
            paragraphMarkRunProperties27.Append(shading41);

            paragraphProperties27.Append(paragraphStyleId27);
            paragraphProperties27.Append(paragraphMarkRunProperties27);

            Run run27 = new Run();

            RunProperties runProperties27 = new RunProperties();
            FontSize fontSize32 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript32 = new FontSizeComplexScript() { Val = "26" };
            Shading shading42 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties27.Append(fontSize32);
            runProperties27.Append(fontSizeComplexScript32);
            runProperties27.Append(shading42);

            run27.Append(runProperties27);

            paragraph27.Append(paragraphProperties27);
            paragraph27.Append(run27);

            tableCell20.Append(tableCellProperties20);
            tableCell20.Append(paragraph27);

            TableCell tableCell21 = new TableCell();

            TableCellProperties tableCellProperties21 = new TableCellProperties();
            TableCellWidth tableCellWidth21 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan21 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge9 = new VerticalMerge() { Val = MergedCellValues.Restart };
            TableCellBorders tableCellBorders21 = new TableCellBorders();
            Shading shading43 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties21.Append(tableCellWidth21);
            tableCellProperties21.Append(gridSpan21);
            tableCellProperties21.Append(verticalMerge9);
            tableCellProperties21.Append(tableCellBorders21);
            tableCellProperties21.Append(shading43);

            Paragraph paragraph28 = new Paragraph();

            ParagraphProperties paragraphProperties28 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId28 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification10 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties28 = new ParagraphMarkRunProperties();

            paragraphProperties28.Append(paragraphStyleId28);
            paragraphProperties28.Append(justification10);
            paragraphProperties28.Append(paragraphMarkRunProperties28);

            Run run28 = new Run();

            RunProperties runProperties28 = new RunProperties();
            Bold bold2 = new Bold();
            FontSize fontSize33 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript33 = new FontSizeComplexScript() { Val = "26" };

            runProperties28.Append(bold2);
            runProperties28.Append(fontSize33);
            runProperties28.Append(fontSizeComplexScript33);
            Text text9 = new Text();
            text9.Text = "СОГЛАСОВАНО";

            run28.Append(runProperties28);
            run28.Append(text9);

            paragraph28.Append(paragraphProperties28);
            paragraph28.Append(run28);

            Paragraph paragraph29 = new Paragraph();

            ParagraphProperties paragraphProperties29 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId29 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification11 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties29 = new ParagraphMarkRunProperties();

            paragraphProperties29.Append(paragraphStyleId29);
            paragraphProperties29.Append(justification11);
            paragraphProperties29.Append(paragraphMarkRunProperties29);

            Run run29 = new Run();

            RunProperties runProperties29 = new RunProperties();
            FontSize fontSize34 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript34 = new FontSizeComplexScript() { Val = "26" };

            runProperties29.Append(fontSize34);
            runProperties29.Append(fontSizeComplexScript34);
            Text text10 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text10.Text = Agreed;

            run29.Append(runProperties29);
            run29.Append(text10);

            paragraph29.Append(paragraphProperties29);
            paragraph29.Append(run29);



            Paragraph paragraph33 = new Paragraph();

            ParagraphProperties paragraphProperties33 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId33 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties33 = new ParagraphMarkRunProperties();

            paragraphProperties33.Append(paragraphStyleId33);
            paragraphProperties33.Append(paragraphMarkRunProperties33);

            Run run33 = new Run();

            RunProperties runProperties33 = new RunProperties();
            FontSize fontSize39 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript39 = new FontSizeComplexScript() { Val = "26" };

            runProperties33.Append(fontSize39);
            runProperties33.Append(fontSizeComplexScript39);
            Text text13 = new Text();
            text13.Text = "«____» ____________2015 г.";

            run33.Append(runProperties33);
            run33.Append(text13);

            paragraph33.Append(paragraphProperties33);
            paragraph33.Append(run33);

            tableCell21.Append(tableCellProperties21);
            tableCell21.Append(paragraph28);
            tableCell21.Append(paragraph29);
           
            tableCell21.Append(paragraph33);

            tableRow7.Append(tableRowProperties7);
            tableRow7.Append(tableCell19);
            tableRow7.Append(tableCell20);
            tableRow7.Append(tableCell21);

            TableRow tableRow8 = new TableRow();
            TableRowProperties tableRowProperties8 = new TableRowProperties();

            TableCell tableCell22 = new TableCell();

            TableCellProperties tableCellProperties22 = new TableCellProperties();
            TableCellWidth tableCellWidth22 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan22 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders22 = new TableCellBorders();
            Shading shading44 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties22.Append(tableCellWidth22);
            tableCellProperties22.Append(gridSpan22);
            tableCellProperties22.Append(tableCellBorders22);
            tableCellProperties22.Append(shading44);

            Paragraph paragraph34 = new Paragraph();

            ParagraphProperties paragraphProperties34 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId34 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties34 = new ParagraphMarkRunProperties();
            FontSize fontSize40 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript40 = new FontSizeComplexScript() { Val = "26" };
            Shading shading45 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties34.Append(fontSize40);
            paragraphMarkRunProperties34.Append(fontSizeComplexScript40);
            paragraphMarkRunProperties34.Append(shading45);

            paragraphProperties34.Append(paragraphStyleId34);
            paragraphProperties34.Append(paragraphMarkRunProperties34);

            Run run34 = new Run();

            RunProperties runProperties34 = new RunProperties();
            FontSize fontSize41 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript41 = new FontSizeComplexScript() { Val = "26" };
            Shading shading46 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties34.Append(fontSize41);
            runProperties34.Append(fontSizeComplexScript41);
            runProperties34.Append(shading46);

            run34.Append(runProperties34);

            paragraph34.Append(paragraphProperties34);
            paragraph34.Append(run34);

            tableCell22.Append(tableCellProperties22);
            tableCell22.Append(paragraph34);

            TableCell tableCell23 = new TableCell();

            TableCellProperties tableCellProperties23 = new TableCellProperties();
            TableCellWidth tableCellWidth23 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan23 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders23 = new TableCellBorders();
            Shading shading47 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties23.Append(tableCellWidth23);
            tableCellProperties23.Append(gridSpan23);
            tableCellProperties23.Append(tableCellBorders23);
            tableCellProperties23.Append(shading47);

            Paragraph paragraph35 = new Paragraph();

            ParagraphProperties paragraphProperties35 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId35 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties35 = new ParagraphMarkRunProperties();
            FontSize fontSize42 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript42 = new FontSizeComplexScript() { Val = "26" };
            Shading shading48 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties35.Append(fontSize42);
            paragraphMarkRunProperties35.Append(fontSizeComplexScript42);
            paragraphMarkRunProperties35.Append(shading48);

            paragraphProperties35.Append(paragraphStyleId35);
            paragraphProperties35.Append(paragraphMarkRunProperties35);

            Run run35 = new Run();

            RunProperties runProperties35 = new RunProperties();
            FontSize fontSize43 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript43 = new FontSizeComplexScript() { Val = "26" };
            Shading shading49 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties35.Append(fontSize43);
            runProperties35.Append(fontSizeComplexScript43);
            runProperties35.Append(shading49);

            run35.Append(runProperties35);

            paragraph35.Append(paragraphProperties35);
            paragraph35.Append(run35);

            tableCell23.Append(tableCellProperties23);
            tableCell23.Append(paragraph35);

            TableCell tableCell24 = new TableCell();

            TableCellProperties tableCellProperties24 = new TableCellProperties();
            TableCellWidth tableCellWidth24 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan24 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge10 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders24 = new TableCellBorders();
            Shading shading50 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties24.Append(tableCellWidth24);
            tableCellProperties24.Append(gridSpan24);
            tableCellProperties24.Append(verticalMerge10);
            tableCellProperties24.Append(tableCellBorders24);
            tableCellProperties24.Append(shading50);

            Paragraph paragraph36 = new Paragraph();

            ParagraphProperties paragraphProperties36 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId36 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification15 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties36 = new ParagraphMarkRunProperties();

            paragraphProperties36.Append(paragraphStyleId36);
            paragraphProperties36.Append(justification15);
            paragraphProperties36.Append(paragraphMarkRunProperties36);

            Run run36 = new Run();
            RunProperties runProperties36 = new RunProperties();

            run36.Append(runProperties36);

            paragraph36.Append(paragraphProperties36);
            paragraph36.Append(run36);

            tableCell24.Append(tableCellProperties24);
            tableCell24.Append(paragraph36);

            tableRow8.Append(tableRowProperties8);
            tableRow8.Append(tableCell22);
            tableRow8.Append(tableCell23);
            tableRow8.Append(tableCell24);

            TableRow tableRow9 = new TableRow();
            TableRowProperties tableRowProperties9 = new TableRowProperties();

            TableCell tableCell25 = new TableCell();

            TableCellProperties tableCellProperties25 = new TableCellProperties();
            TableCellWidth tableCellWidth25 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan25 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders25 = new TableCellBorders();
            Shading shading51 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties25.Append(tableCellWidth25);
            tableCellProperties25.Append(gridSpan25);
            tableCellProperties25.Append(tableCellBorders25);
            tableCellProperties25.Append(shading51);

            Paragraph paragraph37 = new Paragraph();

            ParagraphProperties paragraphProperties37 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId37 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties37 = new ParagraphMarkRunProperties();
            FontSize fontSize44 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript44 = new FontSizeComplexScript() { Val = "26" };
            Shading shading52 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties37.Append(fontSize44);
            paragraphMarkRunProperties37.Append(fontSizeComplexScript44);
            paragraphMarkRunProperties37.Append(shading52);

            paragraphProperties37.Append(paragraphStyleId37);
            paragraphProperties37.Append(paragraphMarkRunProperties37);

            Run run37 = new Run();

            RunProperties runProperties37 = new RunProperties();
            FontSize fontSize45 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript45 = new FontSizeComplexScript() { Val = "26" };
            Shading shading53 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties37.Append(fontSize45);
            runProperties37.Append(fontSizeComplexScript45);
            runProperties37.Append(shading53);

            run37.Append(runProperties37);

            paragraph37.Append(paragraphProperties37);
            paragraph37.Append(run37);

            tableCell25.Append(tableCellProperties25);
            tableCell25.Append(paragraph37);

            TableCell tableCell26 = new TableCell();

            TableCellProperties tableCellProperties26 = new TableCellProperties();
            TableCellWidth tableCellWidth26 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan26 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders26 = new TableCellBorders();
            Shading shading54 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties26.Append(tableCellWidth26);
            tableCellProperties26.Append(gridSpan26);
            tableCellProperties26.Append(tableCellBorders26);
            tableCellProperties26.Append(shading54);

            Paragraph paragraph38 = new Paragraph();

            ParagraphProperties paragraphProperties38 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId38 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties38 = new ParagraphMarkRunProperties();
            FontSize fontSize46 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript46 = new FontSizeComplexScript() { Val = "26" };
            Shading shading55 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties38.Append(fontSize46);
            paragraphMarkRunProperties38.Append(fontSizeComplexScript46);
            paragraphMarkRunProperties38.Append(shading55);

            paragraphProperties38.Append(paragraphStyleId38);
            paragraphProperties38.Append(paragraphMarkRunProperties38);

            Run run38 = new Run();

            RunProperties runProperties38 = new RunProperties();
            FontSize fontSize47 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript47 = new FontSizeComplexScript() { Val = "26" };
            Shading shading56 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties38.Append(fontSize47);
            runProperties38.Append(fontSizeComplexScript47);
            runProperties38.Append(shading56);

            run38.Append(runProperties38);

            paragraph38.Append(paragraphProperties38);
            paragraph38.Append(run38);

            tableCell26.Append(tableCellProperties26);
            tableCell26.Append(paragraph38);

            TableCell tableCell27 = new TableCell();

            TableCellProperties tableCellProperties27 = new TableCellProperties();
            TableCellWidth tableCellWidth27 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan27 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge11 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders27 = new TableCellBorders();
            Shading shading57 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties27.Append(tableCellWidth27);
            tableCellProperties27.Append(gridSpan27);
            tableCellProperties27.Append(verticalMerge11);
            tableCellProperties27.Append(tableCellBorders27);
            tableCellProperties27.Append(shading57);

            Paragraph paragraph39 = new Paragraph();

            ParagraphProperties paragraphProperties39 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId39 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification16 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties39 = new ParagraphMarkRunProperties();
            FontSize fontSize48 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript48 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties39.Append(fontSize48);
            paragraphMarkRunProperties39.Append(fontSizeComplexScript48);

            paragraphProperties39.Append(paragraphStyleId39);
            paragraphProperties39.Append(justification16);
            paragraphProperties39.Append(paragraphMarkRunProperties39);

            Run run39 = new Run();

            RunProperties runProperties39 = new RunProperties();
            FontSize fontSize49 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript49 = new FontSizeComplexScript() { Val = "26" };

            runProperties39.Append(fontSize49);
            runProperties39.Append(fontSizeComplexScript49);

            run39.Append(runProperties39);

            paragraph39.Append(paragraphProperties39);
            paragraph39.Append(run39);

            tableCell27.Append(tableCellProperties27);
            tableCell27.Append(paragraph39);

            tableRow9.Append(tableRowProperties9);
            tableRow9.Append(tableCell25);
            tableRow9.Append(tableCell26);
            tableRow9.Append(tableCell27);

            TableRow tableRow10 = new TableRow();
            TableRowProperties tableRowProperties10 = new TableRowProperties();

            TableCell tableCell28 = new TableCell();

            TableCellProperties tableCellProperties28 = new TableCellProperties();
            TableCellWidth tableCellWidth28 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan28 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders28 = new TableCellBorders();
            Shading shading58 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties28.Append(tableCellWidth28);
            tableCellProperties28.Append(gridSpan28);
            tableCellProperties28.Append(tableCellBorders28);
            tableCellProperties28.Append(shading58);

            Paragraph paragraph40 = new Paragraph();

            ParagraphProperties paragraphProperties40 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId40 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties40 = new ParagraphMarkRunProperties();
            FontSize fontSize50 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript50 = new FontSizeComplexScript() { Val = "26" };
            Shading shading59 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties40.Append(fontSize50);
            paragraphMarkRunProperties40.Append(fontSizeComplexScript50);
            paragraphMarkRunProperties40.Append(shading59);

            paragraphProperties40.Append(paragraphStyleId40);
            paragraphProperties40.Append(paragraphMarkRunProperties40);

            Run run40 = new Run();

            RunProperties runProperties40 = new RunProperties();
            FontSize fontSize51 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript51 = new FontSizeComplexScript() { Val = "26" };
            Shading shading60 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties40.Append(fontSize51);
            runProperties40.Append(fontSizeComplexScript51);
            runProperties40.Append(shading60);

            run40.Append(runProperties40);

            paragraph40.Append(paragraphProperties40);
            paragraph40.Append(run40);

            tableCell28.Append(tableCellProperties28);
            tableCell28.Append(paragraph40);

            TableCell tableCell29 = new TableCell();

            TableCellProperties tableCellProperties29 = new TableCellProperties();
            TableCellWidth tableCellWidth29 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan29 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders29 = new TableCellBorders();
            Shading shading61 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties29.Append(tableCellWidth29);
            tableCellProperties29.Append(gridSpan29);
            tableCellProperties29.Append(tableCellBorders29);
            tableCellProperties29.Append(shading61);

            Paragraph paragraph41 = new Paragraph();

            ParagraphProperties paragraphProperties41 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId41 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties41 = new ParagraphMarkRunProperties();
            FontSize fontSize52 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript52 = new FontSizeComplexScript() { Val = "26" };
            Shading shading62 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties41.Append(fontSize52);
            paragraphMarkRunProperties41.Append(fontSizeComplexScript52);
            paragraphMarkRunProperties41.Append(shading62);

            paragraphProperties41.Append(paragraphStyleId41);
            paragraphProperties41.Append(paragraphMarkRunProperties41);

            Run run41 = new Run();

            RunProperties runProperties41 = new RunProperties();
            FontSize fontSize53 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript53 = new FontSizeComplexScript() { Val = "26" };
            Shading shading63 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties41.Append(fontSize53);
            runProperties41.Append(fontSizeComplexScript53);
            runProperties41.Append(shading63);

            run41.Append(runProperties41);

            paragraph41.Append(paragraphProperties41);
            paragraph41.Append(run41);

            tableCell29.Append(tableCellProperties29);
            tableCell29.Append(paragraph41);

            TableCell tableCell30 = new TableCell();

            TableCellProperties tableCellProperties30 = new TableCellProperties();
            TableCellWidth tableCellWidth30 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan30 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge12 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders30 = new TableCellBorders();
            Shading shading64 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties30.Append(tableCellWidth30);
            tableCellProperties30.Append(gridSpan30);
            tableCellProperties30.Append(verticalMerge12);
            tableCellProperties30.Append(tableCellBorders30);
            tableCellProperties30.Append(shading64);

            Paragraph paragraph42 = new Paragraph();

            ParagraphProperties paragraphProperties42 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId42 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification17 = new Justification() { Val = JustificationValues.End };
            ParagraphMarkRunProperties paragraphMarkRunProperties42 = new ParagraphMarkRunProperties();

            paragraphProperties42.Append(paragraphStyleId42);
            paragraphProperties42.Append(justification17);
            paragraphProperties42.Append(paragraphMarkRunProperties42);

            Run run42 = new Run();
            RunProperties runProperties42 = new RunProperties();

            run42.Append(runProperties42);

            paragraph42.Append(paragraphProperties42);
            paragraph42.Append(run42);

            tableCell30.Append(tableCellProperties30);
            tableCell30.Append(paragraph42);

            tableRow10.Append(tableRowProperties10);
            tableRow10.Append(tableCell28);
            tableRow10.Append(tableCell29);
            tableRow10.Append(tableCell30);

            TableRow tableRow11 = new TableRow();
            TableRowProperties tableRowProperties11 = new TableRowProperties();

            TableCell tableCell31 = new TableCell();

            TableCellProperties tableCellProperties31 = new TableCellProperties();
            TableCellWidth tableCellWidth31 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan31 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders31 = new TableCellBorders();
            Shading shading65 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties31.Append(tableCellWidth31);
            tableCellProperties31.Append(gridSpan31);
            tableCellProperties31.Append(tableCellBorders31);
            tableCellProperties31.Append(shading65);

            Paragraph paragraph43 = new Paragraph();

            ParagraphProperties paragraphProperties43 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId43 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties43 = new ParagraphMarkRunProperties();
            FontSize fontSize54 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript54 = new FontSizeComplexScript() { Val = "26" };
            Shading shading66 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties43.Append(fontSize54);
            paragraphMarkRunProperties43.Append(fontSizeComplexScript54);
            paragraphMarkRunProperties43.Append(shading66);

            paragraphProperties43.Append(paragraphStyleId43);
            paragraphProperties43.Append(paragraphMarkRunProperties43);

            Run run43 = new Run();

            RunProperties runProperties43 = new RunProperties();
            FontSize fontSize55 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript55 = new FontSizeComplexScript() { Val = "26" };
            Shading shading67 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties43.Append(fontSize55);
            runProperties43.Append(fontSizeComplexScript55);
            runProperties43.Append(shading67);

            run43.Append(runProperties43);

            paragraph43.Append(paragraphProperties43);
            paragraph43.Append(run43);

            tableCell31.Append(tableCellProperties31);
            tableCell31.Append(paragraph43);

            TableCell tableCell32 = new TableCell();

            TableCellProperties tableCellProperties32 = new TableCellProperties();
            TableCellWidth tableCellWidth32 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan32 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders32 = new TableCellBorders();
            Shading shading68 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties32.Append(tableCellWidth32);
            tableCellProperties32.Append(gridSpan32);
            tableCellProperties32.Append(tableCellBorders32);
            tableCellProperties32.Append(shading68);

            Paragraph paragraph44 = new Paragraph();

            ParagraphProperties paragraphProperties44 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId44 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties44 = new ParagraphMarkRunProperties();
            FontSize fontSize56 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript56 = new FontSizeComplexScript() { Val = "26" };
            Shading shading69 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            paragraphMarkRunProperties44.Append(fontSize56);
            paragraphMarkRunProperties44.Append(fontSizeComplexScript56);
            paragraphMarkRunProperties44.Append(shading69);

            paragraphProperties44.Append(paragraphStyleId44);
            paragraphProperties44.Append(paragraphMarkRunProperties44);

            Run run44 = new Run();

            RunProperties runProperties44 = new RunProperties();
            FontSize fontSize57 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript57 = new FontSizeComplexScript() { Val = "26" };
            Shading shading70 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            runProperties44.Append(fontSize57);
            runProperties44.Append(fontSizeComplexScript57);
            runProperties44.Append(shading70);

            run44.Append(runProperties44);

            paragraph44.Append(paragraphProperties44);
            paragraph44.Append(run44);

            tableCell32.Append(tableCellProperties32);
            tableCell32.Append(paragraph44);

            TableCell tableCell33 = new TableCell();

            TableCellProperties tableCellProperties33 = new TableCellProperties();
            TableCellWidth tableCellWidth33 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan33 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge13 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders33 = new TableCellBorders();
            Shading shading71 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties33.Append(tableCellWidth33);
            tableCellProperties33.Append(gridSpan33);
            tableCellProperties33.Append(verticalMerge13);
            tableCellProperties33.Append(tableCellBorders33);
            tableCellProperties33.Append(shading71);

            Paragraph paragraph45 = new Paragraph();

            ParagraphProperties paragraphProperties45 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId45 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties45 = new ParagraphMarkRunProperties();
            Shading shading72 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            paragraphMarkRunProperties45.Append(shading72);

            paragraphProperties45.Append(paragraphStyleId45);
            paragraphProperties45.Append(paragraphMarkRunProperties45);

            Run run45 = new Run();

            RunProperties runProperties45 = new RunProperties();
            Shading shading73 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            runProperties45.Append(shading73);

            run45.Append(runProperties45);

            paragraph45.Append(paragraphProperties45);
            paragraph45.Append(run45);

            tableCell33.Append(tableCellProperties33);
            tableCell33.Append(paragraph45);

            tableRow11.Append(tableRowProperties11);
            tableRow11.Append(tableCell31);
            tableRow11.Append(tableCell32);
            tableRow11.Append(tableCell33);

            TableRow tableRow12 = new TableRow();
            TableRowProperties tableRowProperties12 = new TableRowProperties();

            TableCell tableCell34 = new TableCell();

            TableCellProperties tableCellProperties34 = new TableCellProperties();
            TableCellWidth tableCellWidth34 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan34 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders34 = new TableCellBorders();
            Shading shading74 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties34.Append(tableCellWidth34);
            tableCellProperties34.Append(gridSpan34);
            tableCellProperties34.Append(tableCellBorders34);
            tableCellProperties34.Append(shading74);

            Paragraph paragraph46 = new Paragraph();

            ParagraphProperties paragraphProperties46 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId46 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties46 = new ParagraphMarkRunProperties();
            FontSize fontSize58 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript58 = new FontSizeComplexScript() { Val = "26" };
            Shading shading75 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties46.Append(fontSize58);
            paragraphMarkRunProperties46.Append(fontSizeComplexScript58);
            paragraphMarkRunProperties46.Append(shading75);

            paragraphProperties46.Append(paragraphStyleId46);
            paragraphProperties46.Append(paragraphMarkRunProperties46);

            Run run46 = new Run();

            RunProperties runProperties46 = new RunProperties();
            FontSize fontSize59 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript59 = new FontSizeComplexScript() { Val = "26" };
            Shading shading76 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties46.Append(fontSize59);
            runProperties46.Append(fontSizeComplexScript59);
            runProperties46.Append(shading76);

            run46.Append(runProperties46);

            paragraph46.Append(paragraphProperties46);
            paragraph46.Append(run46);

            tableCell34.Append(tableCellProperties34);
            tableCell34.Append(paragraph46);

            TableCell tableCell35 = new TableCell();

            TableCellProperties tableCellProperties35 = new TableCellProperties();
            TableCellWidth tableCellWidth35 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan35 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders35 = new TableCellBorders();
            Shading shading77 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties35.Append(tableCellWidth35);
            tableCellProperties35.Append(gridSpan35);
            tableCellProperties35.Append(tableCellBorders35);
            tableCellProperties35.Append(shading77);

            Paragraph paragraph47 = new Paragraph();

            ParagraphProperties paragraphProperties47 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId47 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties47 = new ParagraphMarkRunProperties();
            FontSize fontSize60 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript60 = new FontSizeComplexScript() { Val = "26" };
            Shading shading78 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            paragraphMarkRunProperties47.Append(fontSize60);
            paragraphMarkRunProperties47.Append(fontSizeComplexScript60);
            paragraphMarkRunProperties47.Append(shading78);

            paragraphProperties47.Append(paragraphStyleId47);
            paragraphProperties47.Append(paragraphMarkRunProperties47);

            Run run47 = new Run();

            RunProperties runProperties47 = new RunProperties();
            FontSize fontSize61 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript61 = new FontSizeComplexScript() { Val = "26" };
            Shading shading79 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            runProperties47.Append(fontSize61);
            runProperties47.Append(fontSizeComplexScript61);
            runProperties47.Append(shading79);

            run47.Append(runProperties47);

            paragraph47.Append(paragraphProperties47);
            paragraph47.Append(run47);

            tableCell35.Append(tableCellProperties35);
            tableCell35.Append(paragraph47);

            TableCell tableCell36 = new TableCell();

            TableCellProperties tableCellProperties36 = new TableCellProperties();
            TableCellWidth tableCellWidth36 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan36 = new GridSpan() { Val = 25 };
            TableCellBorders tableCellBorders36 = new TableCellBorders();
            Shading shading80 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties36.Append(tableCellWidth36);
            tableCellProperties36.Append(gridSpan36);
            tableCellProperties36.Append(tableCellBorders36);
            tableCellProperties36.Append(shading80);

            Paragraph paragraph48 = new Paragraph();

            ParagraphProperties paragraphProperties48 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId48 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification18 = new Justification() { Val = JustificationValues.Start };
            ParagraphMarkRunProperties paragraphMarkRunProperties48 = new ParagraphMarkRunProperties();

            paragraphProperties48.Append(paragraphStyleId48);
            paragraphProperties48.Append(justification18);
            paragraphProperties48.Append(paragraphMarkRunProperties48);

            Run run48 = new Run();

            RunProperties runProperties48 = new RunProperties();
            FontSize fontSize62 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript62 = new FontSizeComplexScript() { Val = "26" };
            Shading shading81 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            runProperties48.Append(fontSize62);
            runProperties48.Append(fontSizeComplexScript62);
            runProperties48.Append(shading81);
            Text text14 = new Text();
            text14.Text = "М.П.";

            run48.Append(runProperties48);
            run48.Append(text14);

            paragraph48.Append(paragraphProperties48);
            paragraph48.Append(run48);

            tableCell36.Append(tableCellProperties36);
            tableCell36.Append(paragraph48);

            tableRow12.Append(tableRowProperties12);
            tableRow12.Append(tableCell34);
            tableRow12.Append(tableCell35);
            tableRow12.Append(tableCell36);

            TableRow tableRow13 = new TableRow();
            TableRowProperties tableRowProperties13 = new TableRowProperties();

            TableCell tableCell37 = new TableCell();

            TableCellProperties tableCellProperties37 = new TableCellProperties();
            TableCellWidth tableCellWidth37 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan37 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders37 = new TableCellBorders();
            Shading shading82 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties37.Append(tableCellWidth37);
            tableCellProperties37.Append(gridSpan37);
            tableCellProperties37.Append(tableCellBorders37);
            tableCellProperties37.Append(shading82);

            Paragraph paragraph49 = new Paragraph();

            ParagraphProperties paragraphProperties49 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId49 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties49 = new ParagraphMarkRunProperties();
            FontSize fontSize63 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript63 = new FontSizeComplexScript() { Val = "26" };
            Shading shading83 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties49.Append(fontSize63);
            paragraphMarkRunProperties49.Append(fontSizeComplexScript63);
            paragraphMarkRunProperties49.Append(shading83);

            paragraphProperties49.Append(paragraphStyleId49);
            paragraphProperties49.Append(paragraphMarkRunProperties49);

            Run run49 = new Run();

            RunProperties runProperties49 = new RunProperties();
            FontSize fontSize64 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript64 = new FontSizeComplexScript() { Val = "26" };
            Shading shading84 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties49.Append(fontSize64);
            runProperties49.Append(fontSizeComplexScript64);
            runProperties49.Append(shading84);

            run49.Append(runProperties49);

            paragraph49.Append(paragraphProperties49);
            paragraph49.Append(run49);

            tableCell37.Append(tableCellProperties37);
            tableCell37.Append(paragraph49);

            TableCell tableCell38 = new TableCell();

            TableCellProperties tableCellProperties38 = new TableCellProperties();
            TableCellWidth tableCellWidth38 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan38 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders38 = new TableCellBorders();
            Shading shading85 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties38.Append(tableCellWidth38);
            tableCellProperties38.Append(gridSpan38);
            tableCellProperties38.Append(tableCellBorders38);
            tableCellProperties38.Append(shading85);

            Paragraph paragraph50 = new Paragraph();

            ParagraphProperties paragraphProperties50 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId50 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties50 = new ParagraphMarkRunProperties();
            FontSize fontSize65 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript65 = new FontSizeComplexScript() { Val = "26" };
            Shading shading86 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties50.Append(fontSize65);
            paragraphMarkRunProperties50.Append(fontSizeComplexScript65);
            paragraphMarkRunProperties50.Append(shading86);

            paragraphProperties50.Append(paragraphStyleId50);
            paragraphProperties50.Append(paragraphMarkRunProperties50);

            Run run50 = new Run();

            RunProperties runProperties50 = new RunProperties();
            FontSize fontSize66 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript66 = new FontSizeComplexScript() { Val = "26" };
            Shading shading87 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties50.Append(fontSize66);
            runProperties50.Append(fontSizeComplexScript66);
            runProperties50.Append(shading87);

            run50.Append(runProperties50);

            paragraph50.Append(paragraphProperties50);
            paragraph50.Append(run50);

            tableCell38.Append(tableCellProperties38);
            tableCell38.Append(paragraph50);

            TableCell tableCell39 = new TableCell();

            TableCellProperties tableCellProperties39 = new TableCellProperties();
            TableCellWidth tableCellWidth39 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan39 = new GridSpan() { Val = 25 };
            TableCellBorders tableCellBorders39 = new TableCellBorders();
            Shading shading88 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties39.Append(tableCellWidth39);
            tableCellProperties39.Append(gridSpan39);
            tableCellProperties39.Append(tableCellBorders39);
            tableCellProperties39.Append(shading88);

            Paragraph paragraph51 = new Paragraph();

            ParagraphProperties paragraphProperties51 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId51 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties51 = new ParagraphMarkRunProperties();
            FontSize fontSize67 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript67 = new FontSizeComplexScript() { Val = "26" };
            Shading shading89 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties51.Append(fontSize67);
            paragraphMarkRunProperties51.Append(fontSizeComplexScript67);
            paragraphMarkRunProperties51.Append(shading89);

            paragraphProperties51.Append(paragraphStyleId51);
            paragraphProperties51.Append(paragraphMarkRunProperties51);

            Run run51 = new Run();

            RunProperties runProperties51 = new RunProperties();
            FontSize fontSize68 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript68 = new FontSizeComplexScript() { Val = "26" };
            Shading shading90 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties51.Append(fontSize68);
            runProperties51.Append(fontSizeComplexScript68);
            runProperties51.Append(shading90);

            run51.Append(runProperties51);

            paragraph51.Append(paragraphProperties51);
            paragraph51.Append(run51);

            tableCell39.Append(tableCellProperties39);
            tableCell39.Append(paragraph51);

            tableRow13.Append(tableRowProperties13);
            tableRow13.Append(tableCell37);
            tableRow13.Append(tableCell38);
            tableRow13.Append(tableCell39);

            TableRow tableRow14 = new TableRow();
            TableRowProperties tableRowProperties14 = new TableRowProperties();

            TableCell tableCell40 = new TableCell();

            TableCellProperties tableCellProperties40 = new TableCellProperties();
            TableCellWidth tableCellWidth40 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan40 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders40 = new TableCellBorders();
            Shading shading91 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties40.Append(tableCellWidth40);
            tableCellProperties40.Append(gridSpan40);
            tableCellProperties40.Append(tableCellBorders40);
            tableCellProperties40.Append(shading91);

            Paragraph paragraph52 = new Paragraph();

            ParagraphProperties paragraphProperties52 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId52 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties52 = new ParagraphMarkRunProperties();
            FontSize fontSize69 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript69 = new FontSizeComplexScript() { Val = "26" };
            Shading shading92 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties52.Append(fontSize69);
            paragraphMarkRunProperties52.Append(fontSizeComplexScript69);
            paragraphMarkRunProperties52.Append(shading92);

            paragraphProperties52.Append(paragraphStyleId52);
            paragraphProperties52.Append(paragraphMarkRunProperties52);

            Run run52 = new Run();

            RunProperties runProperties52 = new RunProperties();
            FontSize fontSize70 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript70 = new FontSizeComplexScript() { Val = "26" };
            Shading shading93 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties52.Append(fontSize70);
            runProperties52.Append(fontSizeComplexScript70);
            runProperties52.Append(shading93);

            run52.Append(runProperties52);

            paragraph52.Append(paragraphProperties52);
            paragraph52.Append(run52);

            tableCell40.Append(tableCellProperties40);
            tableCell40.Append(paragraph52);

            TableCell tableCell41 = new TableCell();

            TableCellProperties tableCellProperties41 = new TableCellProperties();
            TableCellWidth tableCellWidth41 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan41 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders41 = new TableCellBorders();
            Shading shading94 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties41.Append(tableCellWidth41);
            tableCellProperties41.Append(gridSpan41);
            tableCellProperties41.Append(tableCellBorders41);
            tableCellProperties41.Append(shading94);

            Paragraph paragraph53 = new Paragraph();

            ParagraphProperties paragraphProperties53 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId53 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties53 = new ParagraphMarkRunProperties();
            FontSize fontSize71 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript71 = new FontSizeComplexScript() { Val = "26" };
            Shading shading95 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties53.Append(fontSize71);
            paragraphMarkRunProperties53.Append(fontSizeComplexScript71);
            paragraphMarkRunProperties53.Append(shading95);

            paragraphProperties53.Append(paragraphStyleId53);
            paragraphProperties53.Append(paragraphMarkRunProperties53);

            Run run53 = new Run();

            RunProperties runProperties53 = new RunProperties();
            FontSize fontSize72 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript72 = new FontSizeComplexScript() { Val = "26" };
            Shading shading96 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties53.Append(fontSize72);
            runProperties53.Append(fontSizeComplexScript72);
            runProperties53.Append(shading96);

            run53.Append(runProperties53);

            paragraph53.Append(paragraphProperties53);
            paragraph53.Append(run53);

            tableCell41.Append(tableCellProperties41);
            tableCell41.Append(paragraph53);

            TableCell tableCell42 = new TableCell();

            TableCellProperties tableCellProperties42 = new TableCellProperties();
            TableCellWidth tableCellWidth42 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan42 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge14 = new VerticalMerge() { Val = MergedCellValues.Restart };
            TableCellBorders tableCellBorders42 = new TableCellBorders();
            Shading shading97 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties42.Append(tableCellWidth42);
            tableCellProperties42.Append(gridSpan42);
            tableCellProperties42.Append(verticalMerge14);
            tableCellProperties42.Append(tableCellBorders42);
            tableCellProperties42.Append(shading97);

            Paragraph paragraph54 = new Paragraph();

            ParagraphProperties paragraphProperties54 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId54 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification19 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties54 = new ParagraphMarkRunProperties();

            paragraphProperties54.Append(paragraphStyleId54);
            paragraphProperties54.Append(justification19);
            paragraphProperties54.Append(paragraphMarkRunProperties54);

            Run run54 = new Run();

            RunProperties runProperties54 = new RunProperties();
            Bold bold3 = new Bold();
            FontSize fontSize73 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript73 = new FontSizeComplexScript() { Val = "26" };

            runProperties54.Append(bold3);
            runProperties54.Append(fontSize73);
            runProperties54.Append(fontSizeComplexScript73);
            Text text15 = new Text();
            text15.Text = "УТВЕРЖДАЮ";

            run54.Append(runProperties54);
            run54.Append(text15);

            paragraph54.Append(paragraphProperties54);
            paragraph54.Append(run54);

            Paragraph paragraph55 = new Paragraph();

            ParagraphProperties paragraphProperties55 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId55 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification20 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties55 = new ParagraphMarkRunProperties();

            paragraphProperties55.Append(paragraphStyleId55);
            paragraphProperties55.Append(justification20);
            paragraphProperties55.Append(paragraphMarkRunProperties55);

            Run run55 = new Run();

            RunProperties runProperties55 = new RunProperties();
            FontSize fontSize74 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript74 = new FontSizeComplexScript() { Val = "26" };

            runProperties55.Append(fontSize74);
            runProperties55.Append(fontSizeComplexScript74);
            Text text16 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text16.Text = "Генеральный директор ";

            run55.Append(runProperties55);
            run55.Append(text16);

            paragraph55.Append(paragraphProperties55);
            paragraph55.Append(run55);

            Paragraph paragraph56 = new Paragraph();

            ParagraphProperties paragraphProperties56 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId56 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification21 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties56 = new ParagraphMarkRunProperties();

            paragraphProperties56.Append(paragraphStyleId56);
            paragraphProperties56.Append(justification21);
            paragraphProperties56.Append(paragraphMarkRunProperties56);

            Run run56 = new Run();

            RunProperties runProperties56 = new RunProperties();
            FontSize fontSize75 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript75 = new FontSizeComplexScript() { Val = "26" };

            runProperties56.Append(fontSize75);
            runProperties56.Append(fontSizeComplexScript75);
            Text text17 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text17.Text = "ООО «Газпром энергохолдинг» - управляющей организации ";

            run56.Append(runProperties56);
            run56.Append(text17);

            paragraph56.Append(paragraphProperties56);
            paragraph56.Append(run56);

            Paragraph paragraph57 = new Paragraph();

            ParagraphProperties paragraphProperties57 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId57 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification22 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties57 = new ParagraphMarkRunProperties();

            paragraphProperties57.Append(paragraphStyleId57);
            paragraphProperties57.Append(justification22);
            paragraphProperties57.Append(paragraphMarkRunProperties57);

            Run run57 = new Run();

            RunProperties runProperties57 = new RunProperties();
            FontSize fontSize76 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript76 = new FontSizeComplexScript() { Val = "26" };

            runProperties57.Append(fontSize76);
            runProperties57.Append(fontSizeComplexScript76);
            Text text18 = new Text();
            text18.Text = "ПАО «МОЭК»";

            run57.Append(runProperties57);
            run57.Append(text18);

            paragraph57.Append(paragraphProperties57);
            paragraph57.Append(run57);

            Paragraph paragraph58 = new Paragraph();

            ParagraphProperties paragraphProperties58 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId58 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification23 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties58 = new ParagraphMarkRunProperties();
            FontSize fontSize77 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript77 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties58.Append(fontSize77);
            paragraphMarkRunProperties58.Append(fontSizeComplexScript77);

            paragraphProperties58.Append(paragraphStyleId58);
            paragraphProperties58.Append(justification23);
            paragraphProperties58.Append(paragraphMarkRunProperties58);

            Run run58 = new Run();

            RunProperties runProperties58 = new RunProperties();
            FontSize fontSize78 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript78 = new FontSizeComplexScript() { Val = "26" };

            runProperties58.Append(fontSize78);
            runProperties58.Append(fontSizeComplexScript78);

            run58.Append(runProperties58);

            paragraph58.Append(paragraphProperties58);
            paragraph58.Append(run58);

            Paragraph paragraph59 = new Paragraph();

            ParagraphProperties paragraphProperties59 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId59 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification24 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties59 = new ParagraphMarkRunProperties();

            paragraphProperties59.Append(paragraphStyleId59);
            paragraphProperties59.Append(justification24);
            paragraphProperties59.Append(paragraphMarkRunProperties59);

            Run run59 = new Run();

            RunProperties runProperties59 = new RunProperties();
            FontSize fontSize79 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript79 = new FontSizeComplexScript() { Val = "26" };

            runProperties59.Append(fontSize79);
            runProperties59.Append(fontSizeComplexScript79);
            Text text19 = new Text();
            text19.Text = "_________________ Д.В. Федоров";

            run59.Append(runProperties59);
            run59.Append(text19);

            paragraph59.Append(paragraphProperties59);
            paragraph59.Append(run59);

            Paragraph paragraph60 = new Paragraph();

            ParagraphProperties paragraphProperties60 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId60 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties60 = new ParagraphMarkRunProperties();

            paragraphProperties60.Append(paragraphStyleId60);
            paragraphProperties60.Append(paragraphMarkRunProperties60);

            Run run60 = new Run();

            RunProperties runProperties60 = new RunProperties();
            FontSize fontSize80 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript80 = new FontSizeComplexScript() { Val = "26" };

            runProperties60.Append(fontSize80);
            runProperties60.Append(fontSizeComplexScript80);
            Text text20 = new Text();
            text20.Text = "«____» ____________2015 г.";

            run60.Append(runProperties60);
            run60.Append(text20);

            paragraph60.Append(paragraphProperties60);
            paragraph60.Append(run60);

            tableCell42.Append(tableCellProperties42);
            tableCell42.Append(paragraph54);
            tableCell42.Append(paragraph55);
            tableCell42.Append(paragraph56);
            tableCell42.Append(paragraph57);
            tableCell42.Append(paragraph58);
            tableCell42.Append(paragraph59);
            tableCell42.Append(paragraph60);

            tableRow14.Append(tableRowProperties14);
            tableRow14.Append(tableCell40);
            tableRow14.Append(tableCell41);
            tableRow14.Append(tableCell42);

            TableRow tableRow15 = new TableRow();
            TableRowProperties tableRowProperties15 = new TableRowProperties();

            TableCell tableCell43 = new TableCell();

            TableCellProperties tableCellProperties43 = new TableCellProperties();
            TableCellWidth tableCellWidth43 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan43 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders43 = new TableCellBorders();
            Shading shading98 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties43.Append(tableCellWidth43);
            tableCellProperties43.Append(gridSpan43);
            tableCellProperties43.Append(tableCellBorders43);
            tableCellProperties43.Append(shading98);

            Paragraph paragraph61 = new Paragraph();

            ParagraphProperties paragraphProperties61 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId61 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties61 = new ParagraphMarkRunProperties();
            FontSize fontSize81 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript81 = new FontSizeComplexScript() { Val = "26" };
            Shading shading99 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties61.Append(fontSize81);
            paragraphMarkRunProperties61.Append(fontSizeComplexScript81);
            paragraphMarkRunProperties61.Append(shading99);

            paragraphProperties61.Append(paragraphStyleId61);
            paragraphProperties61.Append(paragraphMarkRunProperties61);

            Run run61 = new Run();

            RunProperties runProperties61 = new RunProperties();
            FontSize fontSize82 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript82 = new FontSizeComplexScript() { Val = "26" };
            Shading shading100 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties61.Append(fontSize82);
            runProperties61.Append(fontSizeComplexScript82);
            runProperties61.Append(shading100);

            run61.Append(runProperties61);

            paragraph61.Append(paragraphProperties61);
            paragraph61.Append(run61);

            tableCell43.Append(tableCellProperties43);
            tableCell43.Append(paragraph61);

            TableCell tableCell44 = new TableCell();

            TableCellProperties tableCellProperties44 = new TableCellProperties();
            TableCellWidth tableCellWidth44 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan44 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders44 = new TableCellBorders();
            Shading shading101 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties44.Append(tableCellWidth44);
            tableCellProperties44.Append(gridSpan44);
            tableCellProperties44.Append(tableCellBorders44);
            tableCellProperties44.Append(shading101);

            Paragraph paragraph62 = new Paragraph();

            ParagraphProperties paragraphProperties62 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId62 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties62 = new ParagraphMarkRunProperties();
            FontSize fontSize83 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript83 = new FontSizeComplexScript() { Val = "26" };
            Shading shading102 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties62.Append(fontSize83);
            paragraphMarkRunProperties62.Append(fontSizeComplexScript83);
            paragraphMarkRunProperties62.Append(shading102);

            paragraphProperties62.Append(paragraphStyleId62);
            paragraphProperties62.Append(paragraphMarkRunProperties62);

            Run run62 = new Run();

            RunProperties runProperties62 = new RunProperties();
            FontSize fontSize84 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript84 = new FontSizeComplexScript() { Val = "26" };
            Shading shading103 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties62.Append(fontSize84);
            runProperties62.Append(fontSizeComplexScript84);
            runProperties62.Append(shading103);

            run62.Append(runProperties62);

            paragraph62.Append(paragraphProperties62);
            paragraph62.Append(run62);

            tableCell44.Append(tableCellProperties44);
            tableCell44.Append(paragraph62);

            TableCell tableCell45 = new TableCell();

            TableCellProperties tableCellProperties45 = new TableCellProperties();
            TableCellWidth tableCellWidth45 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan45 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge15 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders45 = new TableCellBorders();
            Shading shading104 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties45.Append(tableCellWidth45);
            tableCellProperties45.Append(gridSpan45);
            tableCellProperties45.Append(verticalMerge15);
            tableCellProperties45.Append(tableCellBorders45);
            tableCellProperties45.Append(shading104);

            Paragraph paragraph63 = new Paragraph();

            ParagraphProperties paragraphProperties63 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId63 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification25 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties63 = new ParagraphMarkRunProperties();

            paragraphProperties63.Append(paragraphStyleId63);
            paragraphProperties63.Append(justification25);
            paragraphProperties63.Append(paragraphMarkRunProperties63);

            Run run63 = new Run();
            RunProperties runProperties63 = new RunProperties();

            run63.Append(runProperties63);

            paragraph63.Append(paragraphProperties63);
            paragraph63.Append(run63);

            tableCell45.Append(tableCellProperties45);
            tableCell45.Append(paragraph63);

            tableRow15.Append(tableRowProperties15);
            tableRow15.Append(tableCell43);
            tableRow15.Append(tableCell44);
            tableRow15.Append(tableCell45);

            TableRow tableRow16 = new TableRow();
            TableRowProperties tableRowProperties16 = new TableRowProperties();

            TableCell tableCell46 = new TableCell();

            TableCellProperties tableCellProperties46 = new TableCellProperties();
            TableCellWidth tableCellWidth46 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan46 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders46 = new TableCellBorders();
            Shading shading105 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties46.Append(tableCellWidth46);
            tableCellProperties46.Append(gridSpan46);
            tableCellProperties46.Append(tableCellBorders46);
            tableCellProperties46.Append(shading105);

            Paragraph paragraph64 = new Paragraph();

            ParagraphProperties paragraphProperties64 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId64 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties64 = new ParagraphMarkRunProperties();
            FontSize fontSize85 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript85 = new FontSizeComplexScript() { Val = "26" };
            Shading shading106 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties64.Append(fontSize85);
            paragraphMarkRunProperties64.Append(fontSizeComplexScript85);
            paragraphMarkRunProperties64.Append(shading106);

            paragraphProperties64.Append(paragraphStyleId64);
            paragraphProperties64.Append(paragraphMarkRunProperties64);

            Run run64 = new Run();

            RunProperties runProperties64 = new RunProperties();
            FontSize fontSize86 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript86 = new FontSizeComplexScript() { Val = "26" };
            Shading shading107 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties64.Append(fontSize86);
            runProperties64.Append(fontSizeComplexScript86);
            runProperties64.Append(shading107);

            run64.Append(runProperties64);

            paragraph64.Append(paragraphProperties64);
            paragraph64.Append(run64);

            tableCell46.Append(tableCellProperties46);
            tableCell46.Append(paragraph64);

            TableCell tableCell47 = new TableCell();

            TableCellProperties tableCellProperties47 = new TableCellProperties();
            TableCellWidth tableCellWidth47 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan47 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders47 = new TableCellBorders();
            Shading shading108 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties47.Append(tableCellWidth47);
            tableCellProperties47.Append(gridSpan47);
            tableCellProperties47.Append(tableCellBorders47);
            tableCellProperties47.Append(shading108);

            Paragraph paragraph65 = new Paragraph();

            ParagraphProperties paragraphProperties65 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId65 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties65 = new ParagraphMarkRunProperties();
            FontSize fontSize87 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript87 = new FontSizeComplexScript() { Val = "26" };
            Shading shading109 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties65.Append(fontSize87);
            paragraphMarkRunProperties65.Append(fontSizeComplexScript87);
            paragraphMarkRunProperties65.Append(shading109);

            paragraphProperties65.Append(paragraphStyleId65);
            paragraphProperties65.Append(paragraphMarkRunProperties65);

            Run run65 = new Run();

            RunProperties runProperties65 = new RunProperties();
            FontSize fontSize88 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript88 = new FontSizeComplexScript() { Val = "26" };
            Shading shading110 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties65.Append(fontSize88);
            runProperties65.Append(fontSizeComplexScript88);
            runProperties65.Append(shading110);

            run65.Append(runProperties65);

            paragraph65.Append(paragraphProperties65);
            paragraph65.Append(run65);

            tableCell47.Append(tableCellProperties47);
            tableCell47.Append(paragraph65);

            TableCell tableCell48 = new TableCell();

            TableCellProperties tableCellProperties48 = new TableCellProperties();
            TableCellWidth tableCellWidth48 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan48 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge16 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders48 = new TableCellBorders();
            Shading shading111 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties48.Append(tableCellWidth48);
            tableCellProperties48.Append(gridSpan48);
            tableCellProperties48.Append(verticalMerge16);
            tableCellProperties48.Append(tableCellBorders48);
            tableCellProperties48.Append(shading111);

            Paragraph paragraph66 = new Paragraph();

            ParagraphProperties paragraphProperties66 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId66 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification26 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties66 = new ParagraphMarkRunProperties();
            FontSize fontSize89 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript89 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties66.Append(fontSize89);
            paragraphMarkRunProperties66.Append(fontSizeComplexScript89);

            paragraphProperties66.Append(paragraphStyleId66);
            paragraphProperties66.Append(justification26);
            paragraphProperties66.Append(paragraphMarkRunProperties66);

            Run run66 = new Run();

            RunProperties runProperties66 = new RunProperties();
            FontSize fontSize90 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript90 = new FontSizeComplexScript() { Val = "26" };

            runProperties66.Append(fontSize90);
            runProperties66.Append(fontSizeComplexScript90);

            run66.Append(runProperties66);

            paragraph66.Append(paragraphProperties66);
            paragraph66.Append(run66);

            tableCell48.Append(tableCellProperties48);
            tableCell48.Append(paragraph66);

            tableRow16.Append(tableRowProperties16);
            tableRow16.Append(tableCell46);
            tableRow16.Append(tableCell47);
            tableRow16.Append(tableCell48);

            TableRow tableRow17 = new TableRow();
            TableRowProperties tableRowProperties17 = new TableRowProperties();

            TableCell tableCell49 = new TableCell();

            TableCellProperties tableCellProperties49 = new TableCellProperties();
            TableCellWidth tableCellWidth49 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan49 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders49 = new TableCellBorders();
            Shading shading112 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties49.Append(tableCellWidth49);
            tableCellProperties49.Append(gridSpan49);
            tableCellProperties49.Append(tableCellBorders49);
            tableCellProperties49.Append(shading112);

            Paragraph paragraph67 = new Paragraph();

            ParagraphProperties paragraphProperties67 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId67 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties67 = new ParagraphMarkRunProperties();
            FontSize fontSize91 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript91 = new FontSizeComplexScript() { Val = "26" };
            Shading shading113 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties67.Append(fontSize91);
            paragraphMarkRunProperties67.Append(fontSizeComplexScript91);
            paragraphMarkRunProperties67.Append(shading113);

            paragraphProperties67.Append(paragraphStyleId67);
            paragraphProperties67.Append(paragraphMarkRunProperties67);

            Run run67 = new Run();

            RunProperties runProperties67 = new RunProperties();
            FontSize fontSize92 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript92 = new FontSizeComplexScript() { Val = "26" };
            Shading shading114 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties67.Append(fontSize92);
            runProperties67.Append(fontSizeComplexScript92);
            runProperties67.Append(shading114);

            run67.Append(runProperties67);

            paragraph67.Append(paragraphProperties67);
            paragraph67.Append(run67);

            tableCell49.Append(tableCellProperties49);
            tableCell49.Append(paragraph67);

            TableCell tableCell50 = new TableCell();

            TableCellProperties tableCellProperties50 = new TableCellProperties();
            TableCellWidth tableCellWidth50 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan50 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders50 = new TableCellBorders();
            Shading shading115 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties50.Append(tableCellWidth50);
            tableCellProperties50.Append(gridSpan50);
            tableCellProperties50.Append(tableCellBorders50);
            tableCellProperties50.Append(shading115);

            Paragraph paragraph68 = new Paragraph();

            ParagraphProperties paragraphProperties68 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId68 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties68 = new ParagraphMarkRunProperties();
            FontSize fontSize93 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript93 = new FontSizeComplexScript() { Val = "26" };
            Shading shading116 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties68.Append(fontSize93);
            paragraphMarkRunProperties68.Append(fontSizeComplexScript93);
            paragraphMarkRunProperties68.Append(shading116);

            paragraphProperties68.Append(paragraphStyleId68);
            paragraphProperties68.Append(paragraphMarkRunProperties68);

            Run run68 = new Run();

            RunProperties runProperties68 = new RunProperties();
            FontSize fontSize94 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript94 = new FontSizeComplexScript() { Val = "26" };
            Shading shading117 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties68.Append(fontSize94);
            runProperties68.Append(fontSizeComplexScript94);
            runProperties68.Append(shading117);

            run68.Append(runProperties68);

            paragraph68.Append(paragraphProperties68);
            paragraph68.Append(run68);

            tableCell50.Append(tableCellProperties50);
            tableCell50.Append(paragraph68);

            TableCell tableCell51 = new TableCell();

            TableCellProperties tableCellProperties51 = new TableCellProperties();
            TableCellWidth tableCellWidth51 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan51 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge17 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders51 = new TableCellBorders();
            Shading shading118 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties51.Append(tableCellWidth51);
            tableCellProperties51.Append(gridSpan51);
            tableCellProperties51.Append(verticalMerge17);
            tableCellProperties51.Append(tableCellBorders51);
            tableCellProperties51.Append(shading118);

            Paragraph paragraph69 = new Paragraph();

            ParagraphProperties paragraphProperties69 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId69 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification27 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties69 = new ParagraphMarkRunProperties();

            paragraphProperties69.Append(paragraphStyleId69);
            paragraphProperties69.Append(justification27);
            paragraphProperties69.Append(paragraphMarkRunProperties69);

            Run run69 = new Run();
            RunProperties runProperties69 = new RunProperties();

            run69.Append(runProperties69);

            paragraph69.Append(paragraphProperties69);
            paragraph69.Append(run69);

            tableCell51.Append(tableCellProperties51);
            tableCell51.Append(paragraph69);

            tableRow17.Append(tableRowProperties17);
            tableRow17.Append(tableCell49);
            tableRow17.Append(tableCell50);
            tableRow17.Append(tableCell51);

            TableRow tableRow18 = new TableRow();
            TableRowProperties tableRowProperties18 = new TableRowProperties();

            TableCell tableCell52 = new TableCell();

            TableCellProperties tableCellProperties52 = new TableCellProperties();
            TableCellWidth tableCellWidth52 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan52 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders52 = new TableCellBorders();
            Shading shading119 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties52.Append(tableCellWidth52);
            tableCellProperties52.Append(gridSpan52);
            tableCellProperties52.Append(tableCellBorders52);
            tableCellProperties52.Append(shading119);

            Paragraph paragraph70 = new Paragraph();

            ParagraphProperties paragraphProperties70 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId70 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties70 = new ParagraphMarkRunProperties();
            FontSize fontSize95 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript95 = new FontSizeComplexScript() { Val = "26" };
            Shading shading120 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties70.Append(fontSize95);
            paragraphMarkRunProperties70.Append(fontSizeComplexScript95);
            paragraphMarkRunProperties70.Append(shading120);

            paragraphProperties70.Append(paragraphStyleId70);
            paragraphProperties70.Append(paragraphMarkRunProperties70);

            Run run70 = new Run();

            RunProperties runProperties70 = new RunProperties();
            FontSize fontSize96 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript96 = new FontSizeComplexScript() { Val = "26" };
            Shading shading121 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties70.Append(fontSize96);
            runProperties70.Append(fontSizeComplexScript96);
            runProperties70.Append(shading121);

            run70.Append(runProperties70);

            paragraph70.Append(paragraphProperties70);
            paragraph70.Append(run70);

            tableCell52.Append(tableCellProperties52);
            tableCell52.Append(paragraph70);

            TableCell tableCell53 = new TableCell();

            TableCellProperties tableCellProperties53 = new TableCellProperties();
            TableCellWidth tableCellWidth53 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan53 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders53 = new TableCellBorders();
            Shading shading122 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties53.Append(tableCellWidth53);
            tableCellProperties53.Append(gridSpan53);
            tableCellProperties53.Append(tableCellBorders53);
            tableCellProperties53.Append(shading122);

            Paragraph paragraph71 = new Paragraph();

            ParagraphProperties paragraphProperties71 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId71 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties71 = new ParagraphMarkRunProperties();
            FontSize fontSize97 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript97 = new FontSizeComplexScript() { Val = "26" };
            Shading shading123 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties71.Append(fontSize97);
            paragraphMarkRunProperties71.Append(fontSizeComplexScript97);
            paragraphMarkRunProperties71.Append(shading123);

            paragraphProperties71.Append(paragraphStyleId71);
            paragraphProperties71.Append(paragraphMarkRunProperties71);

            Run run71 = new Run();

            RunProperties runProperties71 = new RunProperties();
            FontSize fontSize98 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript98 = new FontSizeComplexScript() { Val = "26" };
            Shading shading124 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties71.Append(fontSize98);
            runProperties71.Append(fontSizeComplexScript98);
            runProperties71.Append(shading124);

            run71.Append(runProperties71);

            paragraph71.Append(paragraphProperties71);
            paragraph71.Append(run71);

            tableCell53.Append(tableCellProperties53);
            tableCell53.Append(paragraph71);

            TableCell tableCell54 = new TableCell();

            TableCellProperties tableCellProperties54 = new TableCellProperties();
            TableCellWidth tableCellWidth54 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan54 = new GridSpan() { Val = 25 };
            VerticalMerge verticalMerge18 = new VerticalMerge() { Val = MergedCellValues.Continue };
            TableCellBorders tableCellBorders54 = new TableCellBorders();
            Shading shading125 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties54.Append(tableCellWidth54);
            tableCellProperties54.Append(gridSpan54);
            tableCellProperties54.Append(verticalMerge18);
            tableCellProperties54.Append(tableCellBorders54);
            tableCellProperties54.Append(shading125);

            Paragraph paragraph72 = new Paragraph();

            ParagraphProperties paragraphProperties72 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId72 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties72 = new ParagraphMarkRunProperties();

            paragraphProperties72.Append(paragraphStyleId72);
            paragraphProperties72.Append(paragraphMarkRunProperties72);

            Run run72 = new Run();
            RunProperties runProperties72 = new RunProperties();

            run72.Append(runProperties72);

            paragraph72.Append(paragraphProperties72);
            paragraph72.Append(run72);

            tableCell54.Append(tableCellProperties54);
            tableCell54.Append(paragraph72);

            tableRow18.Append(tableRowProperties18);
            tableRow18.Append(tableCell52);
            tableRow18.Append(tableCell53);
            tableRow18.Append(tableCell54);

            TableRow tableRow19 = new TableRow();
            TableRowProperties tableRowProperties19 = new TableRowProperties();

            TableCell tableCell55 = new TableCell();

            TableCellProperties tableCellProperties55 = new TableCellProperties();
            TableCellWidth tableCellWidth55 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan55 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders55 = new TableCellBorders();
            Shading shading126 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties55.Append(tableCellWidth55);
            tableCellProperties55.Append(gridSpan55);
            tableCellProperties55.Append(tableCellBorders55);
            tableCellProperties55.Append(shading126);

            Paragraph paragraph73 = new Paragraph();

            ParagraphProperties paragraphProperties73 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId73 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties73 = new ParagraphMarkRunProperties();
            FontSize fontSize99 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript99 = new FontSizeComplexScript() { Val = "26" };
            Shading shading127 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties73.Append(fontSize99);
            paragraphMarkRunProperties73.Append(fontSizeComplexScript99);
            paragraphMarkRunProperties73.Append(shading127);

            paragraphProperties73.Append(paragraphStyleId73);
            paragraphProperties73.Append(paragraphMarkRunProperties73);

            Run run73 = new Run();

            RunProperties runProperties73 = new RunProperties();
            FontSize fontSize100 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript100 = new FontSizeComplexScript() { Val = "26" };
            Shading shading128 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties73.Append(fontSize100);
            runProperties73.Append(fontSizeComplexScript100);
            runProperties73.Append(shading128);

            run73.Append(runProperties73);

            paragraph73.Append(paragraphProperties73);
            paragraph73.Append(run73);

            tableCell55.Append(tableCellProperties55);
            tableCell55.Append(paragraph73);

            TableCell tableCell56 = new TableCell();

            TableCellProperties tableCellProperties56 = new TableCellProperties();
            TableCellWidth tableCellWidth56 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan56 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders56 = new TableCellBorders();
            Shading shading129 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties56.Append(tableCellWidth56);
            tableCellProperties56.Append(gridSpan56);
            tableCellProperties56.Append(tableCellBorders56);
            tableCellProperties56.Append(shading129);

            Paragraph paragraph74 = new Paragraph();

            ParagraphProperties paragraphProperties74 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId74 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties74 = new ParagraphMarkRunProperties();
            FontSize fontSize101 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript101 = new FontSizeComplexScript() { Val = "26" };
            Shading shading130 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            paragraphMarkRunProperties74.Append(fontSize101);
            paragraphMarkRunProperties74.Append(fontSizeComplexScript101);
            paragraphMarkRunProperties74.Append(shading130);

            paragraphProperties74.Append(paragraphStyleId74);
            paragraphProperties74.Append(paragraphMarkRunProperties74);

            Run run74 = new Run();

            RunProperties runProperties74 = new RunProperties();
            FontSize fontSize102 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript102 = new FontSizeComplexScript() { Val = "26" };
            Shading shading131 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            runProperties74.Append(fontSize102);
            runProperties74.Append(fontSizeComplexScript102);
            runProperties74.Append(shading131);

            run74.Append(runProperties74);

            paragraph74.Append(paragraphProperties74);
            paragraph74.Append(run74);

            tableCell56.Append(tableCellProperties56);
            tableCell56.Append(paragraph74);

            TableCell tableCell57 = new TableCell();

            TableCellProperties tableCellProperties57 = new TableCellProperties();
            TableCellWidth tableCellWidth57 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan57 = new GridSpan() { Val = 25 };
            TableCellBorders tableCellBorders57 = new TableCellBorders();
            Shading shading132 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties57.Append(tableCellWidth57);
            tableCellProperties57.Append(gridSpan57);
            tableCellProperties57.Append(tableCellBorders57);
            tableCellProperties57.Append(shading132);

            Paragraph paragraph75 = new Paragraph();

            ParagraphProperties paragraphProperties75 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId75 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties75 = new ParagraphMarkRunProperties();

            paragraphProperties75.Append(paragraphStyleId75);
            paragraphProperties75.Append(paragraphMarkRunProperties75);

            Run run75 = new Run();

            RunProperties runProperties75 = new RunProperties();
            FontSize fontSize103 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript103 = new FontSizeComplexScript() { Val = "26" };
            Shading shading133 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFFFF" };

            runProperties75.Append(fontSize103);
            runProperties75.Append(fontSizeComplexScript103);
            runProperties75.Append(shading133);
            Text text21 = new Text();
            text21.Text = "М.П.";

            run75.Append(runProperties75);
            run75.Append(text21);

            paragraph75.Append(paragraphProperties75);
            paragraph75.Append(run75);

            tableCell57.Append(tableCellProperties57);
            tableCell57.Append(paragraph75);

            tableRow19.Append(tableRowProperties19);
            tableRow19.Append(tableCell55);
            tableRow19.Append(tableCell56);
            tableRow19.Append(tableCell57);

            TableRow tableRow20 = new TableRow();
            TableRowProperties tableRowProperties20 = new TableRowProperties();

            TableCell tableCell58 = new TableCell();

            TableCellProperties tableCellProperties58 = new TableCellProperties();
            TableCellWidth tableCellWidth58 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan58 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders58 = new TableCellBorders();
            Shading shading134 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties58.Append(tableCellWidth58);
            tableCellProperties58.Append(gridSpan58);
            tableCellProperties58.Append(tableCellBorders58);
            tableCellProperties58.Append(shading134);

            Paragraph paragraph76 = new Paragraph();

            ParagraphProperties paragraphProperties76 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId76 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties76 = new ParagraphMarkRunProperties();
            FontSize fontSize104 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript104 = new FontSizeComplexScript() { Val = "26" };
            Shading shading135 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties76.Append(fontSize104);
            paragraphMarkRunProperties76.Append(fontSizeComplexScript104);
            paragraphMarkRunProperties76.Append(shading135);

            paragraphProperties76.Append(paragraphStyleId76);
            paragraphProperties76.Append(paragraphMarkRunProperties76);

            Run run76 = new Run();

            RunProperties runProperties76 = new RunProperties();
            FontSize fontSize105 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript105 = new FontSizeComplexScript() { Val = "26" };
            Shading shading136 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties76.Append(fontSize105);
            runProperties76.Append(fontSizeComplexScript105);
            runProperties76.Append(shading136);

            run76.Append(runProperties76);

            paragraph76.Append(paragraphProperties76);
            paragraph76.Append(run76);

            tableCell58.Append(tableCellProperties58);
            tableCell58.Append(paragraph76);

            TableCell tableCell59 = new TableCell();

            TableCellProperties tableCellProperties59 = new TableCellProperties();
            TableCellWidth tableCellWidth59 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan59 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders59 = new TableCellBorders();
            Shading shading137 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties59.Append(tableCellWidth59);
            tableCellProperties59.Append(gridSpan59);
            tableCellProperties59.Append(tableCellBorders59);
            tableCellProperties59.Append(shading137);

            Paragraph paragraph77 = new Paragraph();

            ParagraphProperties paragraphProperties77 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId77 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties77 = new ParagraphMarkRunProperties();
            FontSize fontSize106 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript106 = new FontSizeComplexScript() { Val = "26" };
            Shading shading138 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties77.Append(fontSize106);
            paragraphMarkRunProperties77.Append(fontSizeComplexScript106);
            paragraphMarkRunProperties77.Append(shading138);

            paragraphProperties77.Append(paragraphStyleId77);
            paragraphProperties77.Append(paragraphMarkRunProperties77);

            Run run77 = new Run();

            RunProperties runProperties77 = new RunProperties();
            FontSize fontSize107 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript107 = new FontSizeComplexScript() { Val = "26" };
            Shading shading139 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties77.Append(fontSize107);
            runProperties77.Append(fontSizeComplexScript107);
            runProperties77.Append(shading139);

            run77.Append(runProperties77);

            paragraph77.Append(paragraphProperties77);
            paragraph77.Append(run77);

            tableCell59.Append(tableCellProperties59);
            tableCell59.Append(paragraph77);

            TableCell tableCell60 = new TableCell();

            TableCellProperties tableCellProperties60 = new TableCellProperties();
            TableCellWidth tableCellWidth60 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan60 = new GridSpan() { Val = 25 };
            TableCellBorders tableCellBorders60 = new TableCellBorders();
            Shading shading140 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties60.Append(tableCellWidth60);
            tableCellProperties60.Append(gridSpan60);
            tableCellProperties60.Append(tableCellBorders60);
            tableCellProperties60.Append(shading140);

            Paragraph paragraph78 = new Paragraph();

            ParagraphProperties paragraphProperties78 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId78 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties78 = new ParagraphMarkRunProperties();
            FontSize fontSize108 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript108 = new FontSizeComplexScript() { Val = "26" };
            Shading shading141 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties78.Append(fontSize108);
            paragraphMarkRunProperties78.Append(fontSizeComplexScript108);
            paragraphMarkRunProperties78.Append(shading141);

            paragraphProperties78.Append(paragraphStyleId78);
            paragraphProperties78.Append(paragraphMarkRunProperties78);

            Run run78 = new Run();

            RunProperties runProperties78 = new RunProperties();
            FontSize fontSize109 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript109 = new FontSizeComplexScript() { Val = "26" };
            Shading shading142 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties78.Append(fontSize109);
            runProperties78.Append(fontSizeComplexScript109);
            runProperties78.Append(shading142);

            run78.Append(runProperties78);

            paragraph78.Append(paragraphProperties78);
            paragraph78.Append(run78);

            tableCell60.Append(tableCellProperties60);
            tableCell60.Append(paragraph78);

            tableRow20.Append(tableRowProperties20);
            tableRow20.Append(tableCell58);
            tableRow20.Append(tableCell59);
            tableRow20.Append(tableCell60);

            TableRow tableRow21 = new TableRow();
            TableRowProperties tableRowProperties21 = new TableRowProperties();

            TableCell tableCell61 = new TableCell();

            TableCellProperties tableCellProperties61 = new TableCellProperties();
            TableCellWidth tableCellWidth61 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan61 = new GridSpan() { Val = 17 };
            TableCellBorders tableCellBorders61 = new TableCellBorders();
            Shading shading143 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties61.Append(tableCellWidth61);
            tableCellProperties61.Append(gridSpan61);
            tableCellProperties61.Append(tableCellBorders61);
            tableCellProperties61.Append(shading143);

            Paragraph paragraph79 = new Paragraph();

            ParagraphProperties paragraphProperties79 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId79 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties79 = new ParagraphMarkRunProperties();
            FontSize fontSize110 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript110 = new FontSizeComplexScript() { Val = "26" };
            Shading shading144 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties79.Append(fontSize110);
            paragraphMarkRunProperties79.Append(fontSizeComplexScript110);
            paragraphMarkRunProperties79.Append(shading144);

            paragraphProperties79.Append(paragraphStyleId79);
            paragraphProperties79.Append(paragraphMarkRunProperties79);

            Run run79 = new Run();

            RunProperties runProperties79 = new RunProperties();
            FontSize fontSize111 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript111 = new FontSizeComplexScript() { Val = "26" };
            Shading shading145 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties79.Append(fontSize111);
            runProperties79.Append(fontSizeComplexScript111);
            runProperties79.Append(shading145);

            run79.Append(runProperties79);

            paragraph79.Append(paragraphProperties79);
            paragraph79.Append(run79);

            tableCell61.Append(tableCellProperties61);
            tableCell61.Append(paragraph79);

            TableCell tableCell62 = new TableCell();

            TableCellProperties tableCellProperties62 = new TableCellProperties();
            TableCellWidth tableCellWidth62 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan62 = new GridSpan() { Val = 8 };
            TableCellBorders tableCellBorders62 = new TableCellBorders();
            Shading shading146 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties62.Append(tableCellWidth62);
            tableCellProperties62.Append(gridSpan62);
            tableCellProperties62.Append(tableCellBorders62);
            tableCellProperties62.Append(shading146);

            Paragraph paragraph80 = new Paragraph();

            ParagraphProperties paragraphProperties80 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId80 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties80 = new ParagraphMarkRunProperties();
            FontSize fontSize112 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript112 = new FontSizeComplexScript() { Val = "26" };
            Shading shading147 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties80.Append(fontSize112);
            paragraphMarkRunProperties80.Append(fontSizeComplexScript112);
            paragraphMarkRunProperties80.Append(shading147);

            paragraphProperties80.Append(paragraphStyleId80);
            paragraphProperties80.Append(paragraphMarkRunProperties80);

            Run run80 = new Run();

            RunProperties runProperties80 = new RunProperties();
            FontSize fontSize113 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript113 = new FontSizeComplexScript() { Val = "26" };
            Shading shading148 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties80.Append(fontSize113);
            runProperties80.Append(fontSizeComplexScript113);
            runProperties80.Append(shading148);

            run80.Append(runProperties80);

            paragraph80.Append(paragraphProperties80);
            paragraph80.Append(run80);

            tableCell62.Append(tableCellProperties62);
            tableCell62.Append(paragraph80);

            TableCell tableCell63 = new TableCell();

            TableCellProperties tableCellProperties63 = new TableCellProperties();
            TableCellWidth tableCellWidth63 = new TableCellWidth() { Width = "4870", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan63 = new GridSpan() { Val = 25 };
            TableCellBorders tableCellBorders63 = new TableCellBorders();
            Shading shading149 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties63.Append(tableCellWidth63);
            tableCellProperties63.Append(gridSpan63);
            tableCellProperties63.Append(tableCellBorders63);
            tableCellProperties63.Append(shading149);

            Paragraph paragraph81 = new Paragraph();

            ParagraphProperties paragraphProperties81 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId81 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties81 = new ParagraphMarkRunProperties();
            FontSize fontSize114 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript114 = new FontSizeComplexScript() { Val = "26" };
            Shading shading150 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties81.Append(fontSize114);
            paragraphMarkRunProperties81.Append(fontSizeComplexScript114);
            paragraphMarkRunProperties81.Append(shading150);

            paragraphProperties81.Append(paragraphStyleId81);
            paragraphProperties81.Append(paragraphMarkRunProperties81);

            Run run81 = new Run();

            RunProperties runProperties81 = new RunProperties();
            FontSize fontSize115 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript115 = new FontSizeComplexScript() { Val = "26" };
            Shading shading151 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties81.Append(fontSize115);
            runProperties81.Append(fontSizeComplexScript115);
            runProperties81.Append(shading151);

            run81.Append(runProperties81);

            paragraph81.Append(paragraphProperties81);
            paragraph81.Append(run81);

            tableCell63.Append(tableCellProperties63);
            tableCell63.Append(paragraph81);

            tableRow21.Append(tableRowProperties21);
            tableRow21.Append(tableCell61);
            tableRow21.Append(tableCell62);
            tableRow21.Append(tableCell63);

            TableRow tableRow22 = new TableRow();
            TableRowProperties tableRowProperties22 = new TableRowProperties();

            TableCell tableCell64 = new TableCell();

            TableCellProperties tableCellProperties64 = new TableCellProperties();
            TableCellWidth tableCellWidth64 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan64 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders64 = new TableCellBorders();
            Shading shading152 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties64.Append(tableCellWidth64);
            tableCellProperties64.Append(gridSpan64);
            tableCellProperties64.Append(tableCellBorders64);
            tableCellProperties64.Append(shading152);

            Paragraph paragraph82 = new Paragraph();

            ParagraphProperties paragraphProperties82 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId82 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification28 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties82 = new ParagraphMarkRunProperties();

            paragraphProperties82.Append(paragraphStyleId82);
            paragraphProperties82.Append(justification28);
            paragraphProperties82.Append(paragraphMarkRunProperties82);

            Run run82 = new Run();

            RunProperties runProperties82 = new RunProperties();
            Bold bold4 = new Bold();
            FontSize fontSize116 = new FontSize() { Val = "36" };
            FontSizeComplexScript fontSizeComplexScript116 = new FontSizeComplexScript() { Val = "36" };

            runProperties82.Append(bold4);
            runProperties82.Append(fontSize116);
            runProperties82.Append(fontSizeComplexScript116);
            Text text22 = new Text();
            text22.Text = "ПАСПОРТ";

            run82.Append(runProperties82);
            run82.Append(text22);

            paragraph82.Append(paragraphProperties82);
            paragraph82.Append(run82);

            tableCell64.Append(tableCellProperties64);
            tableCell64.Append(paragraph82);

            tableRow22.Append(tableRowProperties22);
            tableRow22.Append(tableCell64);

            TableRow tableRow23 = new TableRow();
            TableRowProperties tableRowProperties23 = new TableRowProperties();

            TableCell tableCell65 = new TableCell();

            TableCellProperties tableCellProperties65 = new TableCellProperties();
            TableCellWidth tableCellWidth65 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan65 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders65 = new TableCellBorders();
            Shading shading153 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties65.Append(tableCellWidth65);
            tableCellProperties65.Append(gridSpan65);
            tableCellProperties65.Append(tableCellBorders65);
            tableCellProperties65.Append(shading153);

            Paragraph paragraph83 = new Paragraph();

            ParagraphProperties paragraphProperties83 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId83 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification29 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties83 = new ParagraphMarkRunProperties();

            paragraphProperties83.Append(paragraphStyleId83);
            paragraphProperties83.Append(justification29);
            paragraphProperties83.Append(paragraphMarkRunProperties83);

            Run run83 = new Run();

            RunProperties runProperties83 = new RunProperties();
            Bold bold5 = new Bold();
            FontSize fontSize117 = new FontSize() { Val = "36" };
            FontSizeComplexScript fontSizeComplexScript117 = new FontSizeComplexScript() { Val = "36" };

            runProperties83.Append(bold5);
            runProperties83.Append(fontSize117);
            runProperties83.Append(fontSizeComplexScript117);
            Text text23 = new Text();
            text23.Text = "безопасности объекта топливно-энергетического комплекса";

            run83.Append(runProperties83);
            run83.Append(text23);

            paragraph83.Append(paragraphProperties83);
            paragraph83.Append(run83);

            tableCell65.Append(tableCellProperties65);
            tableCell65.Append(paragraph83);

            tableRow23.Append(tableRowProperties23);
            tableRow23.Append(tableCell65);

            TableRow tableRow24 = new TableRow();
            TableRowProperties tableRowProperties24 = new TableRowProperties();

            TableCell tableCell66 = new TableCell();

            TableCellProperties tableCellProperties66 = new TableCellProperties();
            TableCellWidth tableCellWidth66 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan66 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders66 = new TableCellBorders();
            Shading shading154 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties66.Append(tableCellWidth66);
            tableCellProperties66.Append(gridSpan66);
            tableCellProperties66.Append(tableCellBorders66);
            tableCellProperties66.Append(shading154);

            Paragraph paragraph84 = new Paragraph();

            ParagraphProperties paragraphProperties84 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId84 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification30 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties84 = new ParagraphMarkRunProperties();

            paragraphProperties84.Append(paragraphStyleId84);
            paragraphProperties84.Append(justification30);
            paragraphProperties84.Append(paragraphMarkRunProperties84);

            Run run84 = new Run();

            RunProperties runProperties84 = new RunProperties();
            Bold bold6 = new Bold();
            FontSize fontSize118 = new FontSize() { Val = "36" };
            FontSizeComplexScript fontSizeComplexScript118 = new FontSizeComplexScript() { Val = "36" };

            runProperties84.Append(bold6);
            runProperties84.Append(fontSize118);
            runProperties84.Append(fontSizeComplexScript118);
            Text text24 = new Text();
            text24.Text = NameObject;

            run84.Append(runProperties84);
            run84.Append(text24);

            paragraph84.Append(paragraphProperties84);
            paragraph84.Append(run84);

            tableCell66.Append(tableCellProperties66);
            tableCell66.Append(paragraph84);

            tableRow24.Append(tableRowProperties24);
            tableRow24.Append(tableCell66);

            TableRow tableRow25 = new TableRow();
            TableRowProperties tableRowProperties25 = new TableRowProperties();

            TableCell tableCell67 = new TableCell();

            TableCellProperties tableCellProperties67 = new TableCellProperties();
            TableCellWidth tableCellWidth67 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan67 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders67 = new TableCellBorders();
            Shading shading155 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties67.Append(tableCellWidth67);
            tableCellProperties67.Append(gridSpan67);
            tableCellProperties67.Append(tableCellBorders67);
            tableCellProperties67.Append(shading155);

            Paragraph paragraph85 = new Paragraph();

            ParagraphProperties paragraphProperties85 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId85 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification31 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties85 = new ParagraphMarkRunProperties();
            FontSize fontSize119 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript119 = new FontSizeComplexScript() { Val = "26" };
            Shading shading156 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties85.Append(fontSize119);
            paragraphMarkRunProperties85.Append(fontSizeComplexScript119);
            paragraphMarkRunProperties85.Append(shading156);

            paragraphProperties85.Append(paragraphStyleId85);
            paragraphProperties85.Append(justification31);
            paragraphProperties85.Append(paragraphMarkRunProperties85);

            Run run85 = new Run();

            RunProperties runProperties85 = new RunProperties();
            FontSize fontSize120 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript120 = new FontSizeComplexScript() { Val = "26" };
            Shading shading157 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties85.Append(fontSize120);
            runProperties85.Append(fontSizeComplexScript120);
            runProperties85.Append(shading157);

            run85.Append(runProperties85);

            paragraph85.Append(paragraphProperties85);
            paragraph85.Append(run85);

            tableCell67.Append(tableCellProperties67);
            tableCell67.Append(paragraph85);

            TableCell tableCell68 = new TableCell();

            TableCellProperties tableCellProperties68 = new TableCellProperties();
            TableCellWidth tableCellWidth68 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan68 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders68 = new TableCellBorders();
            Shading shading158 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties68.Append(tableCellWidth68);
            tableCellProperties68.Append(gridSpan68);
            tableCellProperties68.Append(tableCellBorders68);
            tableCellProperties68.Append(shading158);

            Paragraph paragraph86 = new Paragraph();

            ParagraphProperties paragraphProperties86 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId86 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification32 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties86 = new ParagraphMarkRunProperties();
            FontSize fontSize121 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript121 = new FontSizeComplexScript() { Val = "26" };
            Shading shading159 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties86.Append(fontSize121);
            paragraphMarkRunProperties86.Append(fontSizeComplexScript121);
            paragraphMarkRunProperties86.Append(shading159);

            paragraphProperties86.Append(paragraphStyleId86);
            paragraphProperties86.Append(justification32);
            paragraphProperties86.Append(paragraphMarkRunProperties86);

            Run run86 = new Run();

            RunProperties runProperties86 = new RunProperties();
            FontSize fontSize122 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript122 = new FontSizeComplexScript() { Val = "26" };
            Shading shading160 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties86.Append(fontSize122);
            runProperties86.Append(fontSizeComplexScript122);
            runProperties86.Append(shading160);

            run86.Append(runProperties86);

            paragraph86.Append(paragraphProperties86);
            paragraph86.Append(run86);

            tableCell68.Append(tableCellProperties68);
            tableCell68.Append(paragraph86);

            TableCell tableCell69 = new TableCell();

            TableCellProperties tableCellProperties69 = new TableCellProperties();
            TableCellWidth tableCellWidth69 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan69 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders69 = new TableCellBorders();
            Shading shading161 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties69.Append(tableCellWidth69);
            tableCellProperties69.Append(gridSpan69);
            tableCellProperties69.Append(tableCellBorders69);
            tableCellProperties69.Append(shading161);

            Paragraph paragraph87 = new Paragraph();

            ParagraphProperties paragraphProperties87 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId87 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification33 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties87 = new ParagraphMarkRunProperties();
            FontSize fontSize123 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript123 = new FontSizeComplexScript() { Val = "26" };
            Shading shading162 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties87.Append(fontSize123);
            paragraphMarkRunProperties87.Append(fontSizeComplexScript123);
            paragraphMarkRunProperties87.Append(shading162);

            paragraphProperties87.Append(paragraphStyleId87);
            paragraphProperties87.Append(justification33);
            paragraphProperties87.Append(paragraphMarkRunProperties87);

            Run run87 = new Run();

            RunProperties runProperties87 = new RunProperties();
            FontSize fontSize124 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript124 = new FontSizeComplexScript() { Val = "26" };
            Shading shading163 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties87.Append(fontSize124);
            runProperties87.Append(fontSizeComplexScript124);
            runProperties87.Append(shading163);

            run87.Append(runProperties87);

            paragraph87.Append(paragraphProperties87);
            paragraph87.Append(run87);

            tableCell69.Append(tableCellProperties69);
            tableCell69.Append(paragraph87);

            tableRow25.Append(tableRowProperties25);
            tableRow25.Append(tableCell67);
            tableRow25.Append(tableCell68);
            tableRow25.Append(tableCell69);

            TableRow tableRow26 = new TableRow();
            TableRowProperties tableRowProperties26 = new TableRowProperties();

            TableCell tableCell70 = new TableCell();

            TableCellProperties tableCellProperties70 = new TableCellProperties();
            TableCellWidth tableCellWidth70 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan70 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders70 = new TableCellBorders();
            Shading shading164 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties70.Append(tableCellWidth70);
            tableCellProperties70.Append(gridSpan70);
            tableCellProperties70.Append(tableCellBorders70);
            tableCellProperties70.Append(shading164);

            Paragraph paragraph88 = new Paragraph();

            ParagraphProperties paragraphProperties88 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId88 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification34 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties88 = new ParagraphMarkRunProperties();
            FontSize fontSize125 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript125 = new FontSizeComplexScript() { Val = "26" };
            Shading shading165 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties88.Append(fontSize125);
            paragraphMarkRunProperties88.Append(fontSizeComplexScript125);
            paragraphMarkRunProperties88.Append(shading165);

            paragraphProperties88.Append(paragraphStyleId88);
            paragraphProperties88.Append(justification34);
            paragraphProperties88.Append(paragraphMarkRunProperties88);

            Run run88 = new Run();

            RunProperties runProperties88 = new RunProperties();
            FontSize fontSize126 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript126 = new FontSizeComplexScript() { Val = "26" };
            Shading shading166 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties88.Append(fontSize126);
            runProperties88.Append(fontSizeComplexScript126);
            runProperties88.Append(shading166);

            run88.Append(runProperties88);

            paragraph88.Append(paragraphProperties88);
            paragraph88.Append(run88);

            tableCell70.Append(tableCellProperties70);
            tableCell70.Append(paragraph88);

            TableCell tableCell71 = new TableCell();

            TableCellProperties tableCellProperties71 = new TableCellProperties();
            TableCellWidth tableCellWidth71 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan71 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders71 = new TableCellBorders();
            Shading shading167 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties71.Append(tableCellWidth71);
            tableCellProperties71.Append(gridSpan71);
            tableCellProperties71.Append(tableCellBorders71);
            tableCellProperties71.Append(shading167);

            Paragraph paragraph89 = new Paragraph();

            ParagraphProperties paragraphProperties89 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId89 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification35 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties89 = new ParagraphMarkRunProperties();
            FontSize fontSize127 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript127 = new FontSizeComplexScript() { Val = "26" };
            Shading shading168 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties89.Append(fontSize127);
            paragraphMarkRunProperties89.Append(fontSizeComplexScript127);
            paragraphMarkRunProperties89.Append(shading168);

            paragraphProperties89.Append(paragraphStyleId89);
            paragraphProperties89.Append(justification35);
            paragraphProperties89.Append(paragraphMarkRunProperties89);

            Run run89 = new Run();

            RunProperties runProperties89 = new RunProperties();
            FontSize fontSize128 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript128 = new FontSizeComplexScript() { Val = "26" };
            Shading shading169 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties89.Append(fontSize128);
            runProperties89.Append(fontSizeComplexScript128);
            runProperties89.Append(shading169);

            run89.Append(runProperties89);

            paragraph89.Append(paragraphProperties89);
            paragraph89.Append(run89);

            tableCell71.Append(tableCellProperties71);
            tableCell71.Append(paragraph89);

            TableCell tableCell72 = new TableCell();

            TableCellProperties tableCellProperties72 = new TableCellProperties();
            TableCellWidth tableCellWidth72 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan72 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders72 = new TableCellBorders();
            Shading shading170 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties72.Append(tableCellWidth72);
            tableCellProperties72.Append(gridSpan72);
            tableCellProperties72.Append(tableCellBorders72);
            tableCellProperties72.Append(shading170);

            Paragraph paragraph90 = new Paragraph();

            ParagraphProperties paragraphProperties90 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId90 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification36 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties90 = new ParagraphMarkRunProperties();
            FontSize fontSize129 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript129 = new FontSizeComplexScript() { Val = "26" };
            Shading shading171 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties90.Append(fontSize129);
            paragraphMarkRunProperties90.Append(fontSizeComplexScript129);
            paragraphMarkRunProperties90.Append(shading171);

            paragraphProperties90.Append(paragraphStyleId90);
            paragraphProperties90.Append(justification36);
            paragraphProperties90.Append(paragraphMarkRunProperties90);

            Run run90 = new Run();

            RunProperties runProperties90 = new RunProperties();
            FontSize fontSize130 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript130 = new FontSizeComplexScript() { Val = "26" };
            Shading shading172 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties90.Append(fontSize130);
            runProperties90.Append(fontSizeComplexScript130);
            runProperties90.Append(shading172);

            run90.Append(runProperties90);

            paragraph90.Append(paragraphProperties90);
            paragraph90.Append(run90);

            tableCell72.Append(tableCellProperties72);
            tableCell72.Append(paragraph90);

            tableRow26.Append(tableRowProperties26);
            tableRow26.Append(tableCell70);
            tableRow26.Append(tableCell71);
            tableRow26.Append(tableCell72);

            TableRow tableRow27 = new TableRow();
            TableRowProperties tableRowProperties27 = new TableRowProperties();

            TableCell tableCell73 = new TableCell();

            TableCellProperties tableCellProperties73 = new TableCellProperties();
            TableCellWidth tableCellWidth73 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan73 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders73 = new TableCellBorders();
            Shading shading173 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties73.Append(tableCellWidth73);
            tableCellProperties73.Append(gridSpan73);
            tableCellProperties73.Append(tableCellBorders73);
            tableCellProperties73.Append(shading173);

            Paragraph paragraph91 = new Paragraph();

            ParagraphProperties paragraphProperties91 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId91 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification37 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties91 = new ParagraphMarkRunProperties();
            FontSize fontSize131 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript131 = new FontSizeComplexScript() { Val = "26" };
            Shading shading174 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties91.Append(fontSize131);
            paragraphMarkRunProperties91.Append(fontSizeComplexScript131);
            paragraphMarkRunProperties91.Append(shading174);

            paragraphProperties91.Append(paragraphStyleId91);
            paragraphProperties91.Append(justification37);
            paragraphProperties91.Append(paragraphMarkRunProperties91);

            Run run91 = new Run();

            RunProperties runProperties91 = new RunProperties();
            FontSize fontSize132 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript132 = new FontSizeComplexScript() { Val = "26" };
            Shading shading175 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties91.Append(fontSize132);
            runProperties91.Append(fontSizeComplexScript132);
            runProperties91.Append(shading175);

            run91.Append(runProperties91);

            paragraph91.Append(paragraphProperties91);
            paragraph91.Append(run91);

            tableCell73.Append(tableCellProperties73);
            tableCell73.Append(paragraph91);

            TableCell tableCell74 = new TableCell();

            TableCellProperties tableCellProperties74 = new TableCellProperties();
            TableCellWidth tableCellWidth74 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan74 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders74 = new TableCellBorders();
            Shading shading176 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties74.Append(tableCellWidth74);
            tableCellProperties74.Append(gridSpan74);
            tableCellProperties74.Append(tableCellBorders74);
            tableCellProperties74.Append(shading176);

            Paragraph paragraph92 = new Paragraph();

            ParagraphProperties paragraphProperties92 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId92 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification38 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties92 = new ParagraphMarkRunProperties();
            FontSize fontSize133 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript133 = new FontSizeComplexScript() { Val = "26" };
            Shading shading177 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties92.Append(fontSize133);
            paragraphMarkRunProperties92.Append(fontSizeComplexScript133);
            paragraphMarkRunProperties92.Append(shading177);

            paragraphProperties92.Append(paragraphStyleId92);
            paragraphProperties92.Append(justification38);
            paragraphProperties92.Append(paragraphMarkRunProperties92);

            Run run92 = new Run();

            RunProperties runProperties92 = new RunProperties();
            FontSize fontSize134 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript134 = new FontSizeComplexScript() { Val = "26" };
            Shading shading178 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties92.Append(fontSize134);
            runProperties92.Append(fontSizeComplexScript134);
            runProperties92.Append(shading178);

            run92.Append(runProperties92);

            paragraph92.Append(paragraphProperties92);
            paragraph92.Append(run92);

            tableCell74.Append(tableCellProperties74);
            tableCell74.Append(paragraph92);

            TableCell tableCell75 = new TableCell();

            TableCellProperties tableCellProperties75 = new TableCellProperties();
            TableCellWidth tableCellWidth75 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan75 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders75 = new TableCellBorders();
            Shading shading179 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties75.Append(tableCellWidth75);
            tableCellProperties75.Append(gridSpan75);
            tableCellProperties75.Append(tableCellBorders75);
            tableCellProperties75.Append(shading179);

            Paragraph paragraph93 = new Paragraph();

            ParagraphProperties paragraphProperties93 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId93 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification39 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties93 = new ParagraphMarkRunProperties();
            FontSize fontSize135 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript135 = new FontSizeComplexScript() { Val = "26" };
            Shading shading180 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties93.Append(fontSize135);
            paragraphMarkRunProperties93.Append(fontSizeComplexScript135);
            paragraphMarkRunProperties93.Append(shading180);

            paragraphProperties93.Append(paragraphStyleId93);
            paragraphProperties93.Append(justification39);
            paragraphProperties93.Append(paragraphMarkRunProperties93);

            Run run93 = new Run();

            RunProperties runProperties93 = new RunProperties();
            FontSize fontSize136 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript136 = new FontSizeComplexScript() { Val = "26" };
            Shading shading181 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties93.Append(fontSize136);
            runProperties93.Append(fontSizeComplexScript136);
            runProperties93.Append(shading181);

            run93.Append(runProperties93);

            paragraph93.Append(paragraphProperties93);
            paragraph93.Append(run93);

            tableCell75.Append(tableCellProperties75);
            tableCell75.Append(paragraph93);

            tableRow27.Append(tableRowProperties27);
            tableRow27.Append(tableCell73);
            tableRow27.Append(tableCell74);
            tableRow27.Append(tableCell75);

            TableRow tableRow28 = new TableRow();
            TableRowProperties tableRowProperties28 = new TableRowProperties();

            TableCell tableCell76 = new TableCell();

            TableCellProperties tableCellProperties76 = new TableCellProperties();
            TableCellWidth tableCellWidth76 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan76 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders76 = new TableCellBorders();
            Shading shading182 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties76.Append(tableCellWidth76);
            tableCellProperties76.Append(gridSpan76);
            tableCellProperties76.Append(tableCellBorders76);
            tableCellProperties76.Append(shading182);

            Paragraph paragraph94 = new Paragraph();

            ParagraphProperties paragraphProperties94 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId94 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification40 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties94 = new ParagraphMarkRunProperties();
            FontSize fontSize137 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript137 = new FontSizeComplexScript() { Val = "26" };
            Shading shading183 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties94.Append(fontSize137);
            paragraphMarkRunProperties94.Append(fontSizeComplexScript137);
            paragraphMarkRunProperties94.Append(shading183);

            paragraphProperties94.Append(paragraphStyleId94);
            paragraphProperties94.Append(justification40);
            paragraphProperties94.Append(paragraphMarkRunProperties94);

            Run run94 = new Run();

            RunProperties runProperties94 = new RunProperties();
            FontSize fontSize138 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript138 = new FontSizeComplexScript() { Val = "26" };
            Shading shading184 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties94.Append(fontSize138);
            runProperties94.Append(fontSizeComplexScript138);
            runProperties94.Append(shading184);

            run94.Append(runProperties94);

            paragraph94.Append(paragraphProperties94);
            paragraph94.Append(run94);

            tableCell76.Append(tableCellProperties76);
            tableCell76.Append(paragraph94);

            TableCell tableCell77 = new TableCell();

            TableCellProperties tableCellProperties77 = new TableCellProperties();
            TableCellWidth tableCellWidth77 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan77 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders77 = new TableCellBorders();
            Shading shading185 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties77.Append(tableCellWidth77);
            tableCellProperties77.Append(gridSpan77);
            tableCellProperties77.Append(tableCellBorders77);
            tableCellProperties77.Append(shading185);

            Paragraph paragraph95 = new Paragraph();

            ParagraphProperties paragraphProperties95 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId95 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification41 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties95 = new ParagraphMarkRunProperties();
            FontSize fontSize139 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript139 = new FontSizeComplexScript() { Val = "26" };
            Shading shading186 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties95.Append(fontSize139);
            paragraphMarkRunProperties95.Append(fontSizeComplexScript139);
            paragraphMarkRunProperties95.Append(shading186);

            paragraphProperties95.Append(paragraphStyleId95);
            paragraphProperties95.Append(justification41);
            paragraphProperties95.Append(paragraphMarkRunProperties95);

            Run run95 = new Run();

            RunProperties runProperties95 = new RunProperties();
            FontSize fontSize140 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript140 = new FontSizeComplexScript() { Val = "26" };
            Shading shading187 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties95.Append(fontSize140);
            runProperties95.Append(fontSizeComplexScript140);
            runProperties95.Append(shading187);

            run95.Append(runProperties95);

            paragraph95.Append(paragraphProperties95);
            paragraph95.Append(run95);

            tableCell77.Append(tableCellProperties77);
            tableCell77.Append(paragraph95);

            TableCell tableCell78 = new TableCell();

            TableCellProperties tableCellProperties78 = new TableCellProperties();
            TableCellWidth tableCellWidth78 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan78 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders78 = new TableCellBorders();
            Shading shading188 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties78.Append(tableCellWidth78);
            tableCellProperties78.Append(gridSpan78);
            tableCellProperties78.Append(tableCellBorders78);
            tableCellProperties78.Append(shading188);

            Paragraph paragraph96 = new Paragraph();

            ParagraphProperties paragraphProperties96 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId96 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification42 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties96 = new ParagraphMarkRunProperties();
            FontSize fontSize141 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript141 = new FontSizeComplexScript() { Val = "26" };
            Shading shading189 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties96.Append(fontSize141);
            paragraphMarkRunProperties96.Append(fontSizeComplexScript141);
            paragraphMarkRunProperties96.Append(shading189);

            paragraphProperties96.Append(paragraphStyleId96);
            paragraphProperties96.Append(justification42);
            paragraphProperties96.Append(paragraphMarkRunProperties96);

            Run run96 = new Run();

            RunProperties runProperties96 = new RunProperties();
            FontSize fontSize142 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript142 = new FontSizeComplexScript() { Val = "26" };
            Shading shading190 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties96.Append(fontSize142);
            runProperties96.Append(fontSizeComplexScript142);
            runProperties96.Append(shading190);

            run96.Append(runProperties96);

            paragraph96.Append(paragraphProperties96);
            paragraph96.Append(run96);

            tableCell78.Append(tableCellProperties78);
            tableCell78.Append(paragraph96);

            tableRow28.Append(tableRowProperties28);
            tableRow28.Append(tableCell76);
            tableRow28.Append(tableCell77);
            tableRow28.Append(tableCell78);

            TableRow tableRow29 = new TableRow();
            TableRowProperties tableRowProperties29 = new TableRowProperties();

            TableCell tableCell79 = new TableCell();

            TableCellProperties tableCellProperties79 = new TableCellProperties();
            TableCellWidth tableCellWidth79 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan79 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders79 = new TableCellBorders();
            Shading shading191 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties79.Append(tableCellWidth79);
            tableCellProperties79.Append(gridSpan79);
            tableCellProperties79.Append(tableCellBorders79);
            tableCellProperties79.Append(shading191);

            Paragraph paragraph97 = new Paragraph();

            ParagraphProperties paragraphProperties97 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId97 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification43 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties97 = new ParagraphMarkRunProperties();
            FontSize fontSize143 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript143 = new FontSizeComplexScript() { Val = "26" };
            Shading shading192 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties97.Append(fontSize143);
            paragraphMarkRunProperties97.Append(fontSizeComplexScript143);
            paragraphMarkRunProperties97.Append(shading192);

            paragraphProperties97.Append(paragraphStyleId97);
            paragraphProperties97.Append(justification43);
            paragraphProperties97.Append(paragraphMarkRunProperties97);

            Run run97 = new Run();

            RunProperties runProperties97 = new RunProperties();
            FontSize fontSize144 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript144 = new FontSizeComplexScript() { Val = "26" };
            Shading shading193 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties97.Append(fontSize144);
            runProperties97.Append(fontSizeComplexScript144);
            runProperties97.Append(shading193);

            run97.Append(runProperties97);

            paragraph97.Append(paragraphProperties97);
            paragraph97.Append(run97);

            tableCell79.Append(tableCellProperties79);
            tableCell79.Append(paragraph97);

            TableCell tableCell80 = new TableCell();

            TableCellProperties tableCellProperties80 = new TableCellProperties();
            TableCellWidth tableCellWidth80 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan80 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders80 = new TableCellBorders();
            Shading shading194 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties80.Append(tableCellWidth80);
            tableCellProperties80.Append(gridSpan80);
            tableCellProperties80.Append(tableCellBorders80);
            tableCellProperties80.Append(shading194);

            Paragraph paragraph98 = new Paragraph();

            ParagraphProperties paragraphProperties98 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId98 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification44 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties98 = new ParagraphMarkRunProperties();
            FontSize fontSize145 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript145 = new FontSizeComplexScript() { Val = "26" };
            Shading shading195 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties98.Append(fontSize145);
            paragraphMarkRunProperties98.Append(fontSizeComplexScript145);
            paragraphMarkRunProperties98.Append(shading195);

            paragraphProperties98.Append(paragraphStyleId98);
            paragraphProperties98.Append(justification44);
            paragraphProperties98.Append(paragraphMarkRunProperties98);

            Run run98 = new Run();

            RunProperties runProperties98 = new RunProperties();
            FontSize fontSize146 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript146 = new FontSizeComplexScript() { Val = "26" };
            Shading shading196 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties98.Append(fontSize146);
            runProperties98.Append(fontSizeComplexScript146);
            runProperties98.Append(shading196);

            run98.Append(runProperties98);

            paragraph98.Append(paragraphProperties98);
            paragraph98.Append(run98);

            tableCell80.Append(tableCellProperties80);
            tableCell80.Append(paragraph98);

            TableCell tableCell81 = new TableCell();

            TableCellProperties tableCellProperties81 = new TableCellProperties();
            TableCellWidth tableCellWidth81 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan81 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders81 = new TableCellBorders();
            Shading shading197 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties81.Append(tableCellWidth81);
            tableCellProperties81.Append(gridSpan81);
            tableCellProperties81.Append(tableCellBorders81);
            tableCellProperties81.Append(shading197);

            Paragraph paragraph99 = new Paragraph();

            ParagraphProperties paragraphProperties99 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId99 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification45 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties99 = new ParagraphMarkRunProperties();
            FontSize fontSize147 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript147 = new FontSizeComplexScript() { Val = "26" };
            Shading shading198 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties99.Append(fontSize147);
            paragraphMarkRunProperties99.Append(fontSizeComplexScript147);
            paragraphMarkRunProperties99.Append(shading198);

            paragraphProperties99.Append(paragraphStyleId99);
            paragraphProperties99.Append(justification45);
            paragraphProperties99.Append(paragraphMarkRunProperties99);

            Run run99 = new Run();

            RunProperties runProperties99 = new RunProperties();
            FontSize fontSize148 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript148 = new FontSizeComplexScript() { Val = "26" };
            Shading shading199 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties99.Append(fontSize148);
            runProperties99.Append(fontSizeComplexScript148);
            runProperties99.Append(shading199);

            run99.Append(runProperties99);

            paragraph99.Append(paragraphProperties99);
            paragraph99.Append(run99);

            tableCell81.Append(tableCellProperties81);
            tableCell81.Append(paragraph99);

            tableRow29.Append(tableRowProperties29);
            tableRow29.Append(tableCell79);
            tableRow29.Append(tableCell80);
            tableRow29.Append(tableCell81);

            TableRow tableRow30 = new TableRow();
            TableRowProperties tableRowProperties30 = new TableRowProperties();

            TableCell tableCell82 = new TableCell();

            TableCellProperties tableCellProperties82 = new TableCellProperties();
            TableCellWidth tableCellWidth82 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan82 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders82 = new TableCellBorders();
            Shading shading200 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties82.Append(tableCellWidth82);
            tableCellProperties82.Append(gridSpan82);
            tableCellProperties82.Append(tableCellBorders82);
            tableCellProperties82.Append(shading200);

            Paragraph paragraph100 = new Paragraph();

            ParagraphProperties paragraphProperties100 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId100 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification46 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties100 = new ParagraphMarkRunProperties();
            FontSize fontSize149 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript149 = new FontSizeComplexScript() { Val = "26" };
            Shading shading201 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties100.Append(fontSize149);
            paragraphMarkRunProperties100.Append(fontSizeComplexScript149);
            paragraphMarkRunProperties100.Append(shading201);

            paragraphProperties100.Append(paragraphStyleId100);
            paragraphProperties100.Append(justification46);
            paragraphProperties100.Append(paragraphMarkRunProperties100);

            Run run100 = new Run();

            RunProperties runProperties100 = new RunProperties();
            FontSize fontSize150 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript150 = new FontSizeComplexScript() { Val = "26" };
            Shading shading202 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties100.Append(fontSize150);
            runProperties100.Append(fontSizeComplexScript150);
            runProperties100.Append(shading202);

            run100.Append(runProperties100);

            paragraph100.Append(paragraphProperties100);
            paragraph100.Append(run100);

            tableCell82.Append(tableCellProperties82);
            tableCell82.Append(paragraph100);

            TableCell tableCell83 = new TableCell();

            TableCellProperties tableCellProperties83 = new TableCellProperties();
            TableCellWidth tableCellWidth83 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan83 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders83 = new TableCellBorders();
            Shading shading203 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties83.Append(tableCellWidth83);
            tableCellProperties83.Append(gridSpan83);
            tableCellProperties83.Append(tableCellBorders83);
            tableCellProperties83.Append(shading203);

            Paragraph paragraph101 = new Paragraph();

            ParagraphProperties paragraphProperties101 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId101 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification47 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties101 = new ParagraphMarkRunProperties();
            FontSize fontSize151 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript151 = new FontSizeComplexScript() { Val = "26" };
            Shading shading204 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties101.Append(fontSize151);
            paragraphMarkRunProperties101.Append(fontSizeComplexScript151);
            paragraphMarkRunProperties101.Append(shading204);

            paragraphProperties101.Append(paragraphStyleId101);
            paragraphProperties101.Append(justification47);
            paragraphProperties101.Append(paragraphMarkRunProperties101);

            Run run101 = new Run();

            RunProperties runProperties101 = new RunProperties();
            FontSize fontSize152 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript152 = new FontSizeComplexScript() { Val = "26" };
            Shading shading205 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties101.Append(fontSize152);
            runProperties101.Append(fontSizeComplexScript152);
            runProperties101.Append(shading205);

            run101.Append(runProperties101);

            paragraph101.Append(paragraphProperties101);
            paragraph101.Append(run101);

            tableCell83.Append(tableCellProperties83);
            tableCell83.Append(paragraph101);

            TableCell tableCell84 = new TableCell();

            TableCellProperties tableCellProperties84 = new TableCellProperties();
            TableCellWidth tableCellWidth84 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan84 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders84 = new TableCellBorders();
            Shading shading206 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties84.Append(tableCellWidth84);
            tableCellProperties84.Append(gridSpan84);
            tableCellProperties84.Append(tableCellBorders84);
            tableCellProperties84.Append(shading206);

            Paragraph paragraph102 = new Paragraph();

            ParagraphProperties paragraphProperties102 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId102 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification48 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties102 = new ParagraphMarkRunProperties();
            FontSize fontSize153 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript153 = new FontSizeComplexScript() { Val = "26" };
            Shading shading207 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties102.Append(fontSize153);
            paragraphMarkRunProperties102.Append(fontSizeComplexScript153);
            paragraphMarkRunProperties102.Append(shading207);

            paragraphProperties102.Append(paragraphStyleId102);
            paragraphProperties102.Append(justification48);
            paragraphProperties102.Append(paragraphMarkRunProperties102);

            Run run102 = new Run();

            RunProperties runProperties102 = new RunProperties();
            FontSize fontSize154 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript154 = new FontSizeComplexScript() { Val = "26" };
            Shading shading208 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties102.Append(fontSize154);
            runProperties102.Append(fontSizeComplexScript154);
            runProperties102.Append(shading208);

            run102.Append(runProperties102);

            paragraph102.Append(paragraphProperties102);
            paragraph102.Append(run102);

            tableCell84.Append(tableCellProperties84);
            tableCell84.Append(paragraph102);

            tableRow30.Append(tableRowProperties30);
            tableRow30.Append(tableCell82);
            tableRow30.Append(tableCell83);
            tableRow30.Append(tableCell84);

            TableRow tableRow31 = new TableRow();
            TableRowProperties tableRowProperties31 = new TableRowProperties();

            TableCell tableCell85 = new TableCell();

            TableCellProperties tableCellProperties85 = new TableCellProperties();
            TableCellWidth tableCellWidth85 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan85 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders85 = new TableCellBorders();
            Shading shading209 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties85.Append(tableCellWidth85);
            tableCellProperties85.Append(gridSpan85);
            tableCellProperties85.Append(tableCellBorders85);
            tableCellProperties85.Append(shading209);

            Paragraph paragraph103 = new Paragraph();

            ParagraphProperties paragraphProperties103 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId103 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification49 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties103 = new ParagraphMarkRunProperties();
            FontSize fontSize155 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript155 = new FontSizeComplexScript() { Val = "26" };
            Shading shading210 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties103.Append(fontSize155);
            paragraphMarkRunProperties103.Append(fontSizeComplexScript155);
            paragraphMarkRunProperties103.Append(shading210);

            paragraphProperties103.Append(paragraphStyleId103);
            paragraphProperties103.Append(justification49);
            paragraphProperties103.Append(paragraphMarkRunProperties103);

            Run run103 = new Run();

            RunProperties runProperties103 = new RunProperties();
            FontSize fontSize156 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript156 = new FontSizeComplexScript() { Val = "26" };
            Shading shading211 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties103.Append(fontSize156);
            runProperties103.Append(fontSizeComplexScript156);
            runProperties103.Append(shading211);

            run103.Append(runProperties103);

            paragraph103.Append(paragraphProperties103);
            paragraph103.Append(run103);

            tableCell85.Append(tableCellProperties85);
            tableCell85.Append(paragraph103);

            TableCell tableCell86 = new TableCell();

            TableCellProperties tableCellProperties86 = new TableCellProperties();
            TableCellWidth tableCellWidth86 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan86 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders86 = new TableCellBorders();
            Shading shading212 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties86.Append(tableCellWidth86);
            tableCellProperties86.Append(gridSpan86);
            tableCellProperties86.Append(tableCellBorders86);
            tableCellProperties86.Append(shading212);

            Paragraph paragraph104 = new Paragraph();

            ParagraphProperties paragraphProperties104 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId104 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification50 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties104 = new ParagraphMarkRunProperties();
            FontSize fontSize157 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript157 = new FontSizeComplexScript() { Val = "26" };
            Shading shading213 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties104.Append(fontSize157);
            paragraphMarkRunProperties104.Append(fontSizeComplexScript157);
            paragraphMarkRunProperties104.Append(shading213);

            paragraphProperties104.Append(paragraphStyleId104);
            paragraphProperties104.Append(justification50);
            paragraphProperties104.Append(paragraphMarkRunProperties104);

            Run run104 = new Run();

            RunProperties runProperties104 = new RunProperties();
            FontSize fontSize158 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript158 = new FontSizeComplexScript() { Val = "26" };
            Shading shading214 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties104.Append(fontSize158);
            runProperties104.Append(fontSizeComplexScript158);
            runProperties104.Append(shading214);

            run104.Append(runProperties104);

            paragraph104.Append(paragraphProperties104);
            paragraph104.Append(run104);

            tableCell86.Append(tableCellProperties86);
            tableCell86.Append(paragraph104);

            TableCell tableCell87 = new TableCell();

            TableCellProperties tableCellProperties87 = new TableCellProperties();
            TableCellWidth tableCellWidth87 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan87 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders87 = new TableCellBorders();
            Shading shading215 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties87.Append(tableCellWidth87);
            tableCellProperties87.Append(gridSpan87);
            tableCellProperties87.Append(tableCellBorders87);
            tableCellProperties87.Append(shading215);

            Paragraph paragraph105 = new Paragraph();

            ParagraphProperties paragraphProperties105 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId105 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification51 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties105 = new ParagraphMarkRunProperties();
            FontSize fontSize159 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript159 = new FontSizeComplexScript() { Val = "26" };
            Shading shading216 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties105.Append(fontSize159);
            paragraphMarkRunProperties105.Append(fontSizeComplexScript159);
            paragraphMarkRunProperties105.Append(shading216);

            paragraphProperties105.Append(paragraphStyleId105);
            paragraphProperties105.Append(justification51);
            paragraphProperties105.Append(paragraphMarkRunProperties105);

            Run run105 = new Run();

            RunProperties runProperties105 = new RunProperties();
            FontSize fontSize160 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript160 = new FontSizeComplexScript() { Val = "26" };
            Shading shading217 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties105.Append(fontSize160);
            runProperties105.Append(fontSizeComplexScript160);
            runProperties105.Append(shading217);

            run105.Append(runProperties105);

            paragraph105.Append(paragraphProperties105);
            paragraph105.Append(run105);

            tableCell87.Append(tableCellProperties87);
            tableCell87.Append(paragraph105);

            tableRow31.Append(tableRowProperties31);
            tableRow31.Append(tableCell85);
            tableRow31.Append(tableCell86);
            tableRow31.Append(tableCell87);

            TableRow tableRow32 = new TableRow();
            TableRowProperties tableRowProperties32 = new TableRowProperties();

            TableCell tableCell88 = new TableCell();

            TableCellProperties tableCellProperties88 = new TableCellProperties();
            TableCellWidth tableCellWidth88 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan88 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders88 = new TableCellBorders();
            Shading shading218 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties88.Append(tableCellWidth88);
            tableCellProperties88.Append(gridSpan88);
            tableCellProperties88.Append(tableCellBorders88);
            tableCellProperties88.Append(shading218);

            Paragraph paragraph106 = new Paragraph();

            ParagraphProperties paragraphProperties106 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId106 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification52 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties106 = new ParagraphMarkRunProperties();
            FontSize fontSize161 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript161 = new FontSizeComplexScript() { Val = "26" };
            Shading shading219 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties106.Append(fontSize161);
            paragraphMarkRunProperties106.Append(fontSizeComplexScript161);
            paragraphMarkRunProperties106.Append(shading219);

            paragraphProperties106.Append(paragraphStyleId106);
            paragraphProperties106.Append(justification52);
            paragraphProperties106.Append(paragraphMarkRunProperties106);

            Run run106 = new Run();

            RunProperties runProperties106 = new RunProperties();
            FontSize fontSize162 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript162 = new FontSizeComplexScript() { Val = "26" };
            Shading shading220 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties106.Append(fontSize162);
            runProperties106.Append(fontSizeComplexScript162);
            runProperties106.Append(shading220);

            run106.Append(runProperties106);

            paragraph106.Append(paragraphProperties106);
            paragraph106.Append(run106);

            tableCell88.Append(tableCellProperties88);
            tableCell88.Append(paragraph106);

            TableCell tableCell89 = new TableCell();

            TableCellProperties tableCellProperties89 = new TableCellProperties();
            TableCellWidth tableCellWidth89 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan89 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders89 = new TableCellBorders();
            Shading shading221 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties89.Append(tableCellWidth89);
            tableCellProperties89.Append(gridSpan89);
            tableCellProperties89.Append(tableCellBorders89);
            tableCellProperties89.Append(shading221);

            Paragraph paragraph107 = new Paragraph();

            ParagraphProperties paragraphProperties107 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId107 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification53 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties107 = new ParagraphMarkRunProperties();
            FontSize fontSize163 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript163 = new FontSizeComplexScript() { Val = "26" };
            Shading shading222 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties107.Append(fontSize163);
            paragraphMarkRunProperties107.Append(fontSizeComplexScript163);
            paragraphMarkRunProperties107.Append(shading222);

            paragraphProperties107.Append(paragraphStyleId107);
            paragraphProperties107.Append(justification53);
            paragraphProperties107.Append(paragraphMarkRunProperties107);

            Run run107 = new Run();

            RunProperties runProperties107 = new RunProperties();
            FontSize fontSize164 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript164 = new FontSizeComplexScript() { Val = "26" };
            Shading shading223 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties107.Append(fontSize164);
            runProperties107.Append(fontSizeComplexScript164);
            runProperties107.Append(shading223);

            run107.Append(runProperties107);

            paragraph107.Append(paragraphProperties107);
            paragraph107.Append(run107);

            tableCell89.Append(tableCellProperties89);
            tableCell89.Append(paragraph107);

            TableCell tableCell90 = new TableCell();

            TableCellProperties tableCellProperties90 = new TableCellProperties();
            TableCellWidth tableCellWidth90 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan90 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders90 = new TableCellBorders();
            Shading shading224 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties90.Append(tableCellWidth90);
            tableCellProperties90.Append(gridSpan90);
            tableCellProperties90.Append(tableCellBorders90);
            tableCellProperties90.Append(shading224);

            Paragraph paragraph108 = new Paragraph();

            ParagraphProperties paragraphProperties108 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId108 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification54 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties108 = new ParagraphMarkRunProperties();
            FontSize fontSize165 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript165 = new FontSizeComplexScript() { Val = "26" };
            Shading shading225 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties108.Append(fontSize165);
            paragraphMarkRunProperties108.Append(fontSizeComplexScript165);
            paragraphMarkRunProperties108.Append(shading225);

            paragraphProperties108.Append(paragraphStyleId108);
            paragraphProperties108.Append(justification54);
            paragraphProperties108.Append(paragraphMarkRunProperties108);

            Run run108 = new Run();

            RunProperties runProperties108 = new RunProperties();
            FontSize fontSize166 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript166 = new FontSizeComplexScript() { Val = "26" };
            Shading shading226 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties108.Append(fontSize166);
            runProperties108.Append(fontSizeComplexScript166);
            runProperties108.Append(shading226);

            run108.Append(runProperties108);

            paragraph108.Append(paragraphProperties108);
            paragraph108.Append(run108);

            tableCell90.Append(tableCellProperties90);
            tableCell90.Append(paragraph108);

            tableRow32.Append(tableRowProperties32);
            tableRow32.Append(tableCell88);
            tableRow32.Append(tableCell89);
            tableRow32.Append(tableCell90);

            TableRow tableRow33 = new TableRow();
            TableRowProperties tableRowProperties33 = new TableRowProperties();

            TableCell tableCell91 = new TableCell();

            TableCellProperties tableCellProperties91 = new TableCellProperties();
            TableCellWidth tableCellWidth91 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan91 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders91 = new TableCellBorders();
            Shading shading227 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties91.Append(tableCellWidth91);
            tableCellProperties91.Append(gridSpan91);
            tableCellProperties91.Append(tableCellBorders91);
            tableCellProperties91.Append(shading227);

            Paragraph paragraph109 = new Paragraph();

            ParagraphProperties paragraphProperties109 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId109 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification55 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties109 = new ParagraphMarkRunProperties();
            FontSize fontSize167 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript167 = new FontSizeComplexScript() { Val = "26" };
            Shading shading228 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties109.Append(fontSize167);
            paragraphMarkRunProperties109.Append(fontSizeComplexScript167);
            paragraphMarkRunProperties109.Append(shading228);

            paragraphProperties109.Append(paragraphStyleId109);
            paragraphProperties109.Append(justification55);
            paragraphProperties109.Append(paragraphMarkRunProperties109);

            Run run109 = new Run();

            RunProperties runProperties109 = new RunProperties();
            FontSize fontSize168 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript168 = new FontSizeComplexScript() { Val = "26" };
            Shading shading229 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties109.Append(fontSize168);
            runProperties109.Append(fontSizeComplexScript168);
            runProperties109.Append(shading229);

            run109.Append(runProperties109);

            paragraph109.Append(paragraphProperties109);
            paragraph109.Append(run109);

            tableCell91.Append(tableCellProperties91);
            tableCell91.Append(paragraph109);

            TableCell tableCell92 = new TableCell();

            TableCellProperties tableCellProperties92 = new TableCellProperties();
            TableCellWidth tableCellWidth92 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan92 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders92 = new TableCellBorders();
            Shading shading230 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties92.Append(tableCellWidth92);
            tableCellProperties92.Append(gridSpan92);
            tableCellProperties92.Append(tableCellBorders92);
            tableCellProperties92.Append(shading230);

            Paragraph paragraph110 = new Paragraph();

            ParagraphProperties paragraphProperties110 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId110 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification56 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties110 = new ParagraphMarkRunProperties();
            FontSize fontSize169 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript169 = new FontSizeComplexScript() { Val = "26" };
            Shading shading231 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties110.Append(fontSize169);
            paragraphMarkRunProperties110.Append(fontSizeComplexScript169);
            paragraphMarkRunProperties110.Append(shading231);

            paragraphProperties110.Append(paragraphStyleId110);
            paragraphProperties110.Append(justification56);
            paragraphProperties110.Append(paragraphMarkRunProperties110);

            Run run110 = new Run();

            RunProperties runProperties110 = new RunProperties();
            FontSize fontSize170 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript170 = new FontSizeComplexScript() { Val = "26" };
            Shading shading232 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties110.Append(fontSize170);
            runProperties110.Append(fontSizeComplexScript170);
            runProperties110.Append(shading232);

            run110.Append(runProperties110);

            paragraph110.Append(paragraphProperties110);
            paragraph110.Append(run110);

            tableCell92.Append(tableCellProperties92);
            tableCell92.Append(paragraph110);

            TableCell tableCell93 = new TableCell();

            TableCellProperties tableCellProperties93 = new TableCellProperties();
            TableCellWidth tableCellWidth93 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan93 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders93 = new TableCellBorders();
            Shading shading233 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties93.Append(tableCellWidth93);
            tableCellProperties93.Append(gridSpan93);
            tableCellProperties93.Append(tableCellBorders93);
            tableCellProperties93.Append(shading233);

            Paragraph paragraph111 = new Paragraph();

            ParagraphProperties paragraphProperties111 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId111 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification57 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties111 = new ParagraphMarkRunProperties();
            FontSize fontSize171 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript171 = new FontSizeComplexScript() { Val = "26" };
            Shading shading234 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties111.Append(fontSize171);
            paragraphMarkRunProperties111.Append(fontSizeComplexScript171);
            paragraphMarkRunProperties111.Append(shading234);

            paragraphProperties111.Append(paragraphStyleId111);
            paragraphProperties111.Append(justification57);
            paragraphProperties111.Append(paragraphMarkRunProperties111);

            Run run111 = new Run();

            RunProperties runProperties111 = new RunProperties();
            FontSize fontSize172 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript172 = new FontSizeComplexScript() { Val = "26" };
            Shading shading235 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties111.Append(fontSize172);
            runProperties111.Append(fontSizeComplexScript172);
            runProperties111.Append(shading235);

            run111.Append(runProperties111);

            paragraph111.Append(paragraphProperties111);
            paragraph111.Append(run111);

            tableCell93.Append(tableCellProperties93);
            tableCell93.Append(paragraph111);

            tableRow33.Append(tableRowProperties33);
            tableRow33.Append(tableCell91);
            tableRow33.Append(tableCell92);
            tableRow33.Append(tableCell93);

            TableRow tableRow34 = new TableRow();
            TableRowProperties tableRowProperties34 = new TableRowProperties();

            TableCell tableCell94 = new TableCell();

            TableCellProperties tableCellProperties94 = new TableCellProperties();
            TableCellWidth tableCellWidth94 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan94 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders94 = new TableCellBorders();
            Shading shading236 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties94.Append(tableCellWidth94);
            tableCellProperties94.Append(gridSpan94);
            tableCellProperties94.Append(tableCellBorders94);
            tableCellProperties94.Append(shading236);

            Paragraph paragraph112 = new Paragraph();

            ParagraphProperties paragraphProperties112 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId112 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification58 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties112 = new ParagraphMarkRunProperties();
            FontSize fontSize173 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript173 = new FontSizeComplexScript() { Val = "26" };
            Shading shading237 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties112.Append(fontSize173);
            paragraphMarkRunProperties112.Append(fontSizeComplexScript173);
            paragraphMarkRunProperties112.Append(shading237);

            paragraphProperties112.Append(paragraphStyleId112);
            paragraphProperties112.Append(justification58);
            paragraphProperties112.Append(paragraphMarkRunProperties112);

            Run run112 = new Run();

            RunProperties runProperties112 = new RunProperties();
            FontSize fontSize174 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript174 = new FontSizeComplexScript() { Val = "26" };
            Shading shading238 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties112.Append(fontSize174);
            runProperties112.Append(fontSizeComplexScript174);
            runProperties112.Append(shading238);

            run112.Append(runProperties112);

            paragraph112.Append(paragraphProperties112);
            paragraph112.Append(run112);

            tableCell94.Append(tableCellProperties94);
            tableCell94.Append(paragraph112);

            TableCell tableCell95 = new TableCell();

            TableCellProperties tableCellProperties95 = new TableCellProperties();
            TableCellWidth tableCellWidth95 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan95 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders95 = new TableCellBorders();
            Shading shading239 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties95.Append(tableCellWidth95);
            tableCellProperties95.Append(gridSpan95);
            tableCellProperties95.Append(tableCellBorders95);
            tableCellProperties95.Append(shading239);

            Paragraph paragraph113 = new Paragraph();

            ParagraphProperties paragraphProperties113 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId113 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification59 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties113 = new ParagraphMarkRunProperties();
            FontSize fontSize175 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript175 = new FontSizeComplexScript() { Val = "26" };
            Shading shading240 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties113.Append(fontSize175);
            paragraphMarkRunProperties113.Append(fontSizeComplexScript175);
            paragraphMarkRunProperties113.Append(shading240);

            paragraphProperties113.Append(paragraphStyleId113);
            paragraphProperties113.Append(justification59);
            paragraphProperties113.Append(paragraphMarkRunProperties113);

            Run run113 = new Run();

            RunProperties runProperties113 = new RunProperties();
            FontSize fontSize176 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript176 = new FontSizeComplexScript() { Val = "26" };
            Shading shading241 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties113.Append(fontSize176);
            runProperties113.Append(fontSizeComplexScript176);
            runProperties113.Append(shading241);

            run113.Append(runProperties113);

            paragraph113.Append(paragraphProperties113);
            paragraph113.Append(run113);

            tableCell95.Append(tableCellProperties95);
            tableCell95.Append(paragraph113);

            TableCell tableCell96 = new TableCell();

            TableCellProperties tableCellProperties96 = new TableCellProperties();
            TableCellWidth tableCellWidth96 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan96 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders96 = new TableCellBorders();
            Shading shading242 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties96.Append(tableCellWidth96);
            tableCellProperties96.Append(gridSpan96);
            tableCellProperties96.Append(tableCellBorders96);
            tableCellProperties96.Append(shading242);

            Paragraph paragraph114 = new Paragraph();

            ParagraphProperties paragraphProperties114 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId114 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification60 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties114 = new ParagraphMarkRunProperties();
            FontSize fontSize177 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript177 = new FontSizeComplexScript() { Val = "26" };
            Shading shading243 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties114.Append(fontSize177);
            paragraphMarkRunProperties114.Append(fontSizeComplexScript177);
            paragraphMarkRunProperties114.Append(shading243);

            paragraphProperties114.Append(paragraphStyleId114);
            paragraphProperties114.Append(justification60);
            paragraphProperties114.Append(paragraphMarkRunProperties114);

            Run run114 = new Run();

            RunProperties runProperties114 = new RunProperties();
            FontSize fontSize178 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript178 = new FontSizeComplexScript() { Val = "26" };
            Shading shading244 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties114.Append(fontSize178);
            runProperties114.Append(fontSizeComplexScript178);
            runProperties114.Append(shading244);

            run114.Append(runProperties114);

            paragraph114.Append(paragraphProperties114);
            paragraph114.Append(run114);

            tableCell96.Append(tableCellProperties96);
            tableCell96.Append(paragraph114);

            tableRow34.Append(tableRowProperties34);
            tableRow34.Append(tableCell94);
            tableRow34.Append(tableCell95);
            tableRow34.Append(tableCell96);

            TableRow tableRow35 = new TableRow();
            TableRowProperties tableRowProperties35 = new TableRowProperties();

            TableCell tableCell97 = new TableCell();

            TableCellProperties tableCellProperties97 = new TableCellProperties();
            TableCellWidth tableCellWidth97 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan97 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders97 = new TableCellBorders();
            Shading shading245 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties97.Append(tableCellWidth97);
            tableCellProperties97.Append(gridSpan97);
            tableCellProperties97.Append(tableCellBorders97);
            tableCellProperties97.Append(shading245);

            Paragraph paragraph115 = new Paragraph();

            ParagraphProperties paragraphProperties115 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId115 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification61 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties115 = new ParagraphMarkRunProperties();
            FontSize fontSize179 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript179 = new FontSizeComplexScript() { Val = "26" };
            Shading shading246 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties115.Append(fontSize179);
            paragraphMarkRunProperties115.Append(fontSizeComplexScript179);
            paragraphMarkRunProperties115.Append(shading246);

            paragraphProperties115.Append(paragraphStyleId115);
            paragraphProperties115.Append(justification61);
            paragraphProperties115.Append(paragraphMarkRunProperties115);

            Run run115 = new Run();

            RunProperties runProperties115 = new RunProperties();
            FontSize fontSize180 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript180 = new FontSizeComplexScript() { Val = "26" };
            Shading shading247 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties115.Append(fontSize180);
            runProperties115.Append(fontSizeComplexScript180);
            runProperties115.Append(shading247);

            run115.Append(runProperties115);

            paragraph115.Append(paragraphProperties115);
            paragraph115.Append(run115);

            tableCell97.Append(tableCellProperties97);
            tableCell97.Append(paragraph115);

            TableCell tableCell98 = new TableCell();

            TableCellProperties tableCellProperties98 = new TableCellProperties();
            TableCellWidth tableCellWidth98 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan98 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders98 = new TableCellBorders();
            Shading shading248 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties98.Append(tableCellWidth98);
            tableCellProperties98.Append(gridSpan98);
            tableCellProperties98.Append(tableCellBorders98);
            tableCellProperties98.Append(shading248);

            Paragraph paragraph116 = new Paragraph();

            ParagraphProperties paragraphProperties116 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId116 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification62 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties116 = new ParagraphMarkRunProperties();
            FontSize fontSize181 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript181 = new FontSizeComplexScript() { Val = "26" };
            Shading shading249 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties116.Append(fontSize181);
            paragraphMarkRunProperties116.Append(fontSizeComplexScript181);
            paragraphMarkRunProperties116.Append(shading249);

            paragraphProperties116.Append(paragraphStyleId116);
            paragraphProperties116.Append(justification62);
            paragraphProperties116.Append(paragraphMarkRunProperties116);

            Run run116 = new Run();

            RunProperties runProperties116 = new RunProperties();
            FontSize fontSize182 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript182 = new FontSizeComplexScript() { Val = "26" };
            Shading shading250 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties116.Append(fontSize182);
            runProperties116.Append(fontSizeComplexScript182);
            runProperties116.Append(shading250);

            run116.Append(runProperties116);

            paragraph116.Append(paragraphProperties116);
            paragraph116.Append(run116);

            tableCell98.Append(tableCellProperties98);
            tableCell98.Append(paragraph116);

            TableCell tableCell99 = new TableCell();

            TableCellProperties tableCellProperties99 = new TableCellProperties();
            TableCellWidth tableCellWidth99 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan99 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders99 = new TableCellBorders();
            Shading shading251 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties99.Append(tableCellWidth99);
            tableCellProperties99.Append(gridSpan99);
            tableCellProperties99.Append(tableCellBorders99);
            tableCellProperties99.Append(shading251);

            Paragraph paragraph117 = new Paragraph();

            ParagraphProperties paragraphProperties117 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId117 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification63 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties117 = new ParagraphMarkRunProperties();
            FontSize fontSize183 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript183 = new FontSizeComplexScript() { Val = "26" };
            Shading shading252 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties117.Append(fontSize183);
            paragraphMarkRunProperties117.Append(fontSizeComplexScript183);
            paragraphMarkRunProperties117.Append(shading252);

            paragraphProperties117.Append(paragraphStyleId117);
            paragraphProperties117.Append(justification63);
            paragraphProperties117.Append(paragraphMarkRunProperties117);

            Run run117 = new Run();

            RunProperties runProperties117 = new RunProperties();
            FontSize fontSize184 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript184 = new FontSizeComplexScript() { Val = "26" };
            Shading shading253 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties117.Append(fontSize184);
            runProperties117.Append(fontSizeComplexScript184);
            runProperties117.Append(shading253);

            run117.Append(runProperties117);

            paragraph117.Append(paragraphProperties117);
            paragraph117.Append(run117);

            tableCell99.Append(tableCellProperties99);
            tableCell99.Append(paragraph117);

            tableRow35.Append(tableRowProperties35);
            tableRow35.Append(tableCell97);
            tableRow35.Append(tableCell98);
            tableRow35.Append(tableCell99);

            TableRow tableRow36 = new TableRow();
            TableRowProperties tableRowProperties36 = new TableRowProperties();

            TableCell tableCell100 = new TableCell();

            TableCellProperties tableCellProperties100 = new TableCellProperties();
            TableCellWidth tableCellWidth100 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan100 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders100 = new TableCellBorders();
            Shading shading254 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties100.Append(tableCellWidth100);
            tableCellProperties100.Append(gridSpan100);
            tableCellProperties100.Append(tableCellBorders100);
            tableCellProperties100.Append(shading254);

            Paragraph paragraph118 = new Paragraph();

            ParagraphProperties paragraphProperties118 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId118 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification64 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties118 = new ParagraphMarkRunProperties();
            FontSize fontSize185 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript185 = new FontSizeComplexScript() { Val = "26" };
            Shading shading255 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties118.Append(fontSize185);
            paragraphMarkRunProperties118.Append(fontSizeComplexScript185);
            paragraphMarkRunProperties118.Append(shading255);

            paragraphProperties118.Append(paragraphStyleId118);
            paragraphProperties118.Append(justification64);
            paragraphProperties118.Append(paragraphMarkRunProperties118);

            Run run118 = new Run();

            RunProperties runProperties118 = new RunProperties();
            FontSize fontSize186 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript186 = new FontSizeComplexScript() { Val = "26" };
            Shading shading256 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties118.Append(fontSize186);
            runProperties118.Append(fontSizeComplexScript186);
            runProperties118.Append(shading256);

            run118.Append(runProperties118);

            paragraph118.Append(paragraphProperties118);
            paragraph118.Append(run118);

            tableCell100.Append(tableCellProperties100);
            tableCell100.Append(paragraph118);

            TableCell tableCell101 = new TableCell();

            TableCellProperties tableCellProperties101 = new TableCellProperties();
            TableCellWidth tableCellWidth101 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan101 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders101 = new TableCellBorders();
            Shading shading257 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties101.Append(tableCellWidth101);
            tableCellProperties101.Append(gridSpan101);
            tableCellProperties101.Append(tableCellBorders101);
            tableCellProperties101.Append(shading257);

            Paragraph paragraph119 = new Paragraph();

            ParagraphProperties paragraphProperties119 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId119 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification65 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties119 = new ParagraphMarkRunProperties();
            FontSize fontSize187 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript187 = new FontSizeComplexScript() { Val = "26" };
            Shading shading258 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties119.Append(fontSize187);
            paragraphMarkRunProperties119.Append(fontSizeComplexScript187);
            paragraphMarkRunProperties119.Append(shading258);

            paragraphProperties119.Append(paragraphStyleId119);
            paragraphProperties119.Append(justification65);
            paragraphProperties119.Append(paragraphMarkRunProperties119);

            Run run119 = new Run();

            RunProperties runProperties119 = new RunProperties();
            FontSize fontSize188 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript188 = new FontSizeComplexScript() { Val = "26" };
            Shading shading259 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties119.Append(fontSize188);
            runProperties119.Append(fontSizeComplexScript188);
            runProperties119.Append(shading259);

            run119.Append(runProperties119);

            paragraph119.Append(paragraphProperties119);
            paragraph119.Append(run119);

            tableCell101.Append(tableCellProperties101);
            tableCell101.Append(paragraph119);

            TableCell tableCell102 = new TableCell();

            TableCellProperties tableCellProperties102 = new TableCellProperties();
            TableCellWidth tableCellWidth102 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan102 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders102 = new TableCellBorders();
            Shading shading260 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties102.Append(tableCellWidth102);
            tableCellProperties102.Append(gridSpan102);
            tableCellProperties102.Append(tableCellBorders102);
            tableCellProperties102.Append(shading260);

            Paragraph paragraph120 = new Paragraph();

            ParagraphProperties paragraphProperties120 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId120 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification66 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties120 = new ParagraphMarkRunProperties();
            FontSize fontSize189 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript189 = new FontSizeComplexScript() { Val = "26" };
            Shading shading261 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties120.Append(fontSize189);
            paragraphMarkRunProperties120.Append(fontSizeComplexScript189);
            paragraphMarkRunProperties120.Append(shading261);

            paragraphProperties120.Append(paragraphStyleId120);
            paragraphProperties120.Append(justification66);
            paragraphProperties120.Append(paragraphMarkRunProperties120);

            Run run120 = new Run();

            RunProperties runProperties120 = new RunProperties();
            FontSize fontSize190 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript190 = new FontSizeComplexScript() { Val = "26" };
            Shading shading262 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties120.Append(fontSize190);
            runProperties120.Append(fontSizeComplexScript190);
            runProperties120.Append(shading262);

            run120.Append(runProperties120);

            paragraph120.Append(paragraphProperties120);
            paragraph120.Append(run120);

            tableCell102.Append(tableCellProperties102);
            tableCell102.Append(paragraph120);

            tableRow36.Append(tableRowProperties36);
            tableRow36.Append(tableCell100);
            tableRow36.Append(tableCell101);
            tableRow36.Append(tableCell102);

            TableRow tableRow37 = new TableRow();
            TableRowProperties tableRowProperties37 = new TableRowProperties();

            TableCell tableCell103 = new TableCell();

            TableCellProperties tableCellProperties103 = new TableCellProperties();
            TableCellWidth tableCellWidth103 = new TableCellWidth() { Width = "1933", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan103 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders103 = new TableCellBorders();
            Shading shading263 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties103.Append(tableCellWidth103);
            tableCellProperties103.Append(gridSpan103);
            tableCellProperties103.Append(tableCellBorders103);
            tableCellProperties103.Append(shading263);

            Paragraph paragraph121 = new Paragraph();

            ParagraphProperties paragraphProperties121 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId121 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification67 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties121 = new ParagraphMarkRunProperties();
            FontSize fontSize191 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript191 = new FontSizeComplexScript() { Val = "26" };
            Shading shading264 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties121.Append(fontSize191);
            paragraphMarkRunProperties121.Append(fontSizeComplexScript191);
            paragraphMarkRunProperties121.Append(shading264);

            paragraphProperties121.Append(paragraphStyleId121);
            paragraphProperties121.Append(justification67);
            paragraphProperties121.Append(paragraphMarkRunProperties121);

            Run run121 = new Run();

            RunProperties runProperties121 = new RunProperties();
            FontSize fontSize192 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript192 = new FontSizeComplexScript() { Val = "26" };
            Shading shading265 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties121.Append(fontSize192);
            runProperties121.Append(fontSizeComplexScript192);
            runProperties121.Append(shading265);

            run121.Append(runProperties121);

            paragraph121.Append(paragraphProperties121);
            paragraph121.Append(run121);

            tableCell103.Append(tableCellProperties103);
            tableCell103.Append(paragraph121);

            TableCell tableCell104 = new TableCell();

            TableCellProperties tableCellProperties104 = new TableCellProperties();
            TableCellWidth tableCellWidth104 = new TableCellWidth() { Width = "5095", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan104 = new GridSpan() { Val = 26 };
            TableCellBorders tableCellBorders104 = new TableCellBorders();
            Shading shading266 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties104.Append(tableCellWidth104);
            tableCellProperties104.Append(gridSpan104);
            tableCellProperties104.Append(tableCellBorders104);
            tableCellProperties104.Append(shading266);

            Paragraph paragraph122 = new Paragraph();

            ParagraphProperties paragraphProperties122 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId122 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification68 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties122 = new ParagraphMarkRunProperties();

            paragraphProperties122.Append(paragraphStyleId122);
            paragraphProperties122.Append(justification68);
            paragraphProperties122.Append(paragraphMarkRunProperties122);

            Run run122 = new Run();

            RunProperties runProperties122 = new RunProperties();
            FontSize fontSize193 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript193 = new FontSizeComplexScript() { Val = "26" };

            runProperties122.Append(fontSize193);
            runProperties122.Append(fontSizeComplexScript193);
            Text text25 = new Text();
            text25.Text = "г. Москва";

            run122.Append(runProperties122);
            run122.Append(text25);

            paragraph122.Append(paragraphProperties122);
            paragraph122.Append(run122);

            Paragraph paragraph123 = new Paragraph();

            ParagraphProperties paragraphProperties123 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId123 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification69 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties123 = new ParagraphMarkRunProperties();

            paragraphProperties123.Append(paragraphStyleId123);
            paragraphProperties123.Append(justification69);
            paragraphProperties123.Append(paragraphMarkRunProperties123);

            Run run123 = new Run();

            RunProperties runProperties123 = new RunProperties();
            FontSize fontSize194 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript194 = new FontSizeComplexScript() { Val = "26" };
            Languages languages1 = new Languages() { Val = "en-US" };

            runProperties123.Append(fontSize194);
            runProperties123.Append(fontSizeComplexScript194);
            runProperties123.Append(languages1);
            Text text26 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text26.Text = "2015 ";

            run123.Append(runProperties123);
            run123.Append(text26);

            Run run124 = new Run();

            RunProperties runProperties124 = new RunProperties();
            FontSize fontSize195 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript195 = new FontSizeComplexScript() { Val = "26" };

            runProperties124.Append(fontSize195);
            runProperties124.Append(fontSizeComplexScript195);
            Text text27 = new Text();
            text27.Text = "г.";

            run124.Append(runProperties124);
            run124.Append(text27);

            paragraph123.Append(paragraphProperties123);
            paragraph123.Append(run123);
            paragraph123.Append(run124);

            tableCell104.Append(tableCellProperties104);
            tableCell104.Append(paragraph122);
            tableCell104.Append(paragraph123);

            TableCell tableCell105 = new TableCell();

            TableCellProperties tableCellProperties105 = new TableCellProperties();
            TableCellWidth tableCellWidth105 = new TableCellWidth() { Width = "2607", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan105 = new GridSpan() { Val = 12 };
            TableCellBorders tableCellBorders105 = new TableCellBorders();
            Shading shading267 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties105.Append(tableCellWidth105);
            tableCellProperties105.Append(gridSpan105);
            tableCellProperties105.Append(tableCellBorders105);
            tableCellProperties105.Append(shading267);

            Paragraph paragraph124 = new Paragraph();

            ParagraphProperties paragraphProperties124 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId124 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification70 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties124 = new ParagraphMarkRunProperties();
            FontSize fontSize196 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript196 = new FontSizeComplexScript() { Val = "26" };
            Shading shading268 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties124.Append(fontSize196);
            paragraphMarkRunProperties124.Append(fontSizeComplexScript196);
            paragraphMarkRunProperties124.Append(shading268);

            paragraphProperties124.Append(paragraphStyleId124);
            paragraphProperties124.Append(justification70);
            paragraphProperties124.Append(paragraphMarkRunProperties124);

            Run run125 = new Run();

            RunProperties runProperties125 = new RunProperties();
            FontSize fontSize197 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript197 = new FontSizeComplexScript() { Val = "26" };
            Shading shading269 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties125.Append(fontSize197);
            runProperties125.Append(fontSizeComplexScript197);
            runProperties125.Append(shading269);

            run125.Append(runProperties125);

            paragraph124.Append(paragraphProperties124);
            paragraph124.Append(run125);

            tableCell105.Append(tableCellProperties105);
            tableCell105.Append(paragraph124);

            tableRow37.Append(tableRowProperties37);
            tableRow37.Append(tableCell103);
            tableRow37.Append(tableCell104);
            tableRow37.Append(tableCell105);

            TableRow tableRow38 = new TableRow();
            TableRowProperties tableRowProperties38 = new TableRowProperties();

            TableCell tableCell106 = new TableCell();

            TableCellProperties tableCellProperties106 = new TableCellProperties();
            TableCellWidth tableCellWidth106 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan106 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders106 = new TableCellBorders();
            TopBorder topBorder1 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder1 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder1 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder1 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders106.Append(topBorder1);
            tableCellBorders106.Append(startBorder1);
            tableCellBorders106.Append(bottomBorder1);
            tableCellBorders106.Append(endBorder1);
            tableCellBorders106.Append(insideHorizontalBorder1);
            tableCellBorders106.Append(insideVerticalBorder1);
            Shading shading270 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin1 = new TableCellMargin();
            StartMargin startMargin2 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin1.Append(startMargin2);

            tableCellProperties106.Append(tableCellWidth106);
            tableCellProperties106.Append(gridSpan106);
            tableCellProperties106.Append(tableCellBorders106);
            tableCellProperties106.Append(shading270);
            tableCellProperties106.Append(tableCellMargin1);

            Paragraph paragraph125 = new Paragraph();

            ParagraphProperties paragraphProperties125 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId125 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation1 = new Indentation() { FirstLine = "459" };
            Justification justification71 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties125 = new ParagraphMarkRunProperties();

            paragraphProperties125.Append(paragraphStyleId125);
            paragraphProperties125.Append(indentation1);
            paragraphProperties125.Append(justification71);
            paragraphProperties125.Append(paragraphMarkRunProperties125);

            Run run126 = new Run();

            RunProperties runProperties126 = new RunProperties();
            FontSize fontSize198 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript198 = new FontSizeComplexScript() { Val = "26" };

            runProperties126.Append(fontSize198);
            runProperties126.Append(fontSizeComplexScript198);
            Text text28 = new Text();
            text28.Text = "Паспорт безопасности объекта топливно-энергетического комплекса "+NameObject+" разработан в соответствии с:";

            run126.Append(runProperties126);
            run126.Append(text28);

            paragraph125.Append(paragraphProperties125);
            paragraph125.Append(run126);

            Paragraph paragraph126 = new Paragraph();

            ParagraphProperties paragraphProperties126 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId126 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation2 = new Indentation() { FirstLine = "459" };
            Justification justification72 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties126 = new ParagraphMarkRunProperties();

            paragraphProperties126.Append(paragraphStyleId126);
            paragraphProperties126.Append(indentation2);
            paragraphProperties126.Append(justification72);
            paragraphProperties126.Append(paragraphMarkRunProperties126);

            Run run127 = new Run();

            RunProperties runProperties127 = new RunProperties();
            FontSize fontSize199 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript199 = new FontSizeComplexScript() { Val = "26" };

            runProperties127.Append(fontSize199);
            runProperties127.Append(fontSizeComplexScript199);
            Text text29 = new Text();
            text29.Text = "- Федеральном законом от 21 июля 2011 г. № 256-ФЗ «О безопасности объектов топливно- энергетического комплекса» (принят Государственной думой 6 июля 2011 года, одобрен Советом Федерации 13 июля 2011года);";

            run127.Append(runProperties127);
            run127.Append(text29);

            paragraph126.Append(paragraphProperties126);
            paragraph126.Append(run127);

            Paragraph paragraph127 = new Paragraph();

            ParagraphProperties paragraphProperties127 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId127 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation3 = new Indentation() { FirstLine = "459" };
            Justification justification73 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties127 = new ParagraphMarkRunProperties();

            paragraphProperties127.Append(paragraphStyleId127);
            paragraphProperties127.Append(indentation3);
            paragraphProperties127.Append(justification73);
            paragraphProperties127.Append(paragraphMarkRunProperties127);

            Run run128 = new Run();

            RunProperties runProperties128 = new RunProperties();
            FontSize fontSize200 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript200 = new FontSizeComplexScript() { Val = "26" };

            runProperties128.Append(fontSize200);
            runProperties128.Append(fontSizeComplexScript200);
            Text text30 = new Text();
            text30.Text = "- Постановлением правительства РФ от 05 мая 2012 г. № 458 «Об утверждении Правил по обеспечению безопасности и антитеррористической защищенности объектов топливно-энергетического комплекса»;";

            run128.Append(runProperties128);
            run128.Append(text30);

            paragraph127.Append(paragraphProperties127);
            paragraph127.Append(run128);

            Paragraph paragraph128 = new Paragraph();

            ParagraphProperties paragraphProperties128 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId128 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation4 = new Indentation() { FirstLine = "459" };
            Justification justification74 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties128 = new ParagraphMarkRunProperties();

            paragraphProperties128.Append(paragraphStyleId128);
            paragraphProperties128.Append(indentation4);
            paragraphProperties128.Append(justification74);
            paragraphProperties128.Append(paragraphMarkRunProperties128);

            Run run129 = new Run();

            RunProperties runProperties129 = new RunProperties();
            FontSize fontSize201 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript201 = new FontSizeComplexScript() { Val = "26" };

            runProperties129.Append(fontSize201);
            runProperties129.Append(fontSizeComplexScript201);
            Text text31 = new Text();
            text31.Text = "- Постановлением Правительства РФ от 05 мая 2012 г. №459 « Об утверждении Положения об исходных данных для проведения категорирования объекта топливно- энергетического комплекса , порядке его проведения и критериях категорирования»;";

            run129.Append(runProperties129);
            run129.Append(text31);

            paragraph128.Append(paragraphProperties128);
            paragraph128.Append(run129);

            Paragraph paragraph129 = new Paragraph();

            ParagraphProperties paragraphProperties129 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId129 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation5 = new Indentation() { FirstLine = "459" };
            Justification justification75 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties129 = new ParagraphMarkRunProperties();

            paragraphProperties129.Append(paragraphStyleId129);
            paragraphProperties129.Append(indentation5);
            paragraphProperties129.Append(justification75);
            paragraphProperties129.Append(paragraphMarkRunProperties129);

            Run run130 = new Run();

            RunProperties runProperties130 = new RunProperties();
            FontSize fontSize202 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript202 = new FontSizeComplexScript() { Val = "26" };

            runProperties130.Append(fontSize202);
            runProperties130.Append(fontSizeComplexScript202);
            Text text32 = new Text();
            text32.Text = "- Постановлением Правительства РФ от 05 мая 20122 г. № 460 «Об утверждении Правил актуализации паспорта безопасности объекта, топливно- энергетического комплекса»;";

            run130.Append(runProperties130);
            run130.Append(text32);

            paragraph129.Append(paragraphProperties129);
            paragraph129.Append(run130);

            Paragraph paragraph130 = new Paragraph();

            ParagraphProperties paragraphProperties130 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId130 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation6 = new Indentation() { FirstLine = "459" };
            Justification justification76 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties130 = new ParagraphMarkRunProperties();

            paragraphProperties130.Append(paragraphStyleId130);
            paragraphProperties130.Append(indentation6);
            paragraphProperties130.Append(justification76);
            paragraphProperties130.Append(paragraphMarkRunProperties130);

            Run run131 = new Run();

            RunProperties runProperties131 = new RunProperties();
            FontSize fontSize203 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript203 = new FontSizeComplexScript() { Val = "26" };

            runProperties131.Append(fontSize203);
            runProperties131.Append(fontSizeComplexScript203);
            Text text33 = new Text();
            text33.Text = "- Приказом Генерального директора ООО «Газпром энергохолдинг» - управляющей организации ОАО «МОЭК» от 09.07.2015 № П-130/15 «Об организации работ по актуализации паспортов безопасности категорированных объектов ОАО «МОЭК».";

            run131.Append(runProperties131);
            run131.Append(text33);

            paragraph130.Append(paragraphProperties130);
            paragraph130.Append(run131);

            tableCell106.Append(tableCellProperties106);
            tableCell106.Append(paragraph125);
            tableCell106.Append(paragraph126);
            tableCell106.Append(paragraph127);
            tableCell106.Append(paragraph128);
            tableCell106.Append(paragraph129);
            tableCell106.Append(paragraph130);

            tableRow38.Append(tableRowProperties38);
            tableRow38.Append(tableCell106);

            TableRow tableRow39 = new TableRow();
            TableRowProperties tableRowProperties39 = new TableRowProperties();

            TableCell tableCell107 = new TableCell();

            TableCellProperties tableCellProperties107 = new TableCellProperties();
            TableCellWidth tableCellWidth107 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan107 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders107 = new TableCellBorders();
            TopBorder topBorder2 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder2 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder2 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder2 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder2 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder2 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders107.Append(topBorder2);
            tableCellBorders107.Append(startBorder2);
            tableCellBorders107.Append(bottomBorder2);
            tableCellBorders107.Append(endBorder2);
            tableCellBorders107.Append(insideHorizontalBorder2);
            tableCellBorders107.Append(insideVerticalBorder2);
            Shading shading271 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin2 = new TableCellMargin();
            StartMargin startMargin3 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin2.Append(startMargin3);

            tableCellProperties107.Append(tableCellWidth107);
            tableCellProperties107.Append(gridSpan107);
            tableCellProperties107.Append(tableCellBorders107);
            tableCellProperties107.Append(shading271);
            tableCellProperties107.Append(tableCellMargin2);

            Paragraph paragraph131 = new Paragraph();

            ParagraphProperties paragraphProperties131 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId131 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation7 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties131 = new ParagraphMarkRunProperties();

            paragraphProperties131.Append(paragraphStyleId131);
            paragraphProperties131.Append(indentation7);
            paragraphProperties131.Append(paragraphMarkRunProperties131);

            Run run132 = new Run();

            RunProperties runProperties132 = new RunProperties();
            FontSize fontSize204 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript204 = new FontSizeComplexScript() { Val = "26" };

            runProperties132.Append(fontSize204);
            runProperties132.Append(fontSizeComplexScript204);
            Text text34 = new Text();
            text34.Text = NameObject;

            run132.Append(runProperties132);
            run132.Append(text34);

            paragraph131.Append(paragraphProperties131);
            paragraph131.Append(run132);

            Paragraph paragraph132 = new Paragraph();

            ParagraphProperties paragraphProperties132 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId132 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation8 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties132 = new ParagraphMarkRunProperties();

            paragraphProperties132.Append(paragraphStyleId132);
            paragraphProperties132.Append(indentation8);
            paragraphProperties132.Append(paragraphMarkRunProperties132);

            Run run133 = new Run();

            RunProperties runProperties133 = new RunProperties();
            FontSize fontSize205 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript205 = new FontSizeComplexScript() { Val = "26" };

            runProperties133.Append(fontSize205);
            runProperties133.Append(fontSizeComplexScript205);
            Text text35 = new Text();
            text35.Text = "Фактический адрес: ул. Вилиса Лациса, д. 29, корп. 1";

            run133.Append(runProperties133);
            run133.Append(text35);

            paragraph132.Append(paragraphProperties132);
            paragraph132.Append(run133);

            Paragraph paragraph133 = new Paragraph();

            ParagraphProperties paragraphProperties133 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId133 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation9 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties133 = new ParagraphMarkRunProperties();

            paragraphProperties133.Append(paragraphStyleId133);
            paragraphProperties133.Append(indentation9);
            paragraphProperties133.Append(paragraphMarkRunProperties133);

            Run run134 = new Run();

            RunProperties runProperties134 = new RunProperties();
            FontSize fontSize206 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript206 = new FontSizeComplexScript() { Val = "26" };

            runProperties134.Append(fontSize206);
            runProperties134.Append(fontSizeComplexScript206);
            Text text36 = new Text();
            text36.Text = "Почтовый адрес: ул. Вилиса Лациса, д. 29, корп. 1";

            run134.Append(runProperties134);
            run134.Append(text36);

            paragraph133.Append(paragraphProperties133);
            paragraph133.Append(run134);

            Paragraph paragraph134 = new Paragraph();

            ParagraphProperties paragraphProperties134 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId134 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation10 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties134 = new ParagraphMarkRunProperties();

            paragraphProperties134.Append(paragraphStyleId134);
            paragraphProperties134.Append(indentation10);
            paragraphProperties134.Append(paragraphMarkRunProperties134);

            Run run135 = new Run();

            RunProperties runProperties135 = new RunProperties();
            FontSize fontSize207 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript207 = new FontSizeComplexScript() { Val = "26" };

            runProperties135.Append(fontSize207);
            runProperties135.Append(fontSizeComplexScript207);
            Text text37 = new Text();
            text37.Text = "Телефон: +7 (495) 497-91-88";

            run135.Append(runProperties135);
            run135.Append(text37);

            paragraph134.Append(paragraphProperties134);
            paragraph134.Append(run135);

            tableCell107.Append(tableCellProperties107);
            tableCell107.Append(paragraph131);
            tableCell107.Append(paragraph132);
            tableCell107.Append(paragraph133);
            tableCell107.Append(paragraph134);

            tableRow39.Append(tableRowProperties39);
            tableRow39.Append(tableCell107);

            TableRow tableRow40 = new TableRow();
            TableRowProperties tableRowProperties40 = new TableRowProperties();

            TableCell tableCell108 = new TableCell();

            TableCellProperties tableCellProperties108 = new TableCellProperties();
            TableCellWidth tableCellWidth108 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan108 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders108 = new TableCellBorders();
            TopBorder topBorder3 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder3 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder3 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder3 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder3 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder3 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders108.Append(topBorder3);
            tableCellBorders108.Append(startBorder3);
            tableCellBorders108.Append(bottomBorder3);
            tableCellBorders108.Append(endBorder3);
            tableCellBorders108.Append(insideHorizontalBorder3);
            tableCellBorders108.Append(insideVerticalBorder3);
            Shading shading272 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin3 = new TableCellMargin();
            StartMargin startMargin4 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin3.Append(startMargin4);

            tableCellProperties108.Append(tableCellWidth108);
            tableCellProperties108.Append(gridSpan108);
            tableCellProperties108.Append(tableCellBorders108);
            tableCellProperties108.Append(shading272);
            tableCellProperties108.Append(tableCellMargin3);

            Paragraph paragraph135 = new Paragraph();

            ParagraphProperties paragraphProperties135 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId135 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation11 = new Indentation() { FirstLine = "459" };
            Justification justification77 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties135 = new ParagraphMarkRunProperties();

            paragraphProperties135.Append(paragraphStyleId135);
            paragraphProperties135.Append(indentation11);
            paragraphProperties135.Append(justification77);
            paragraphProperties135.Append(paragraphMarkRunProperties135);

            Run run136 = new Run();

            RunProperties runProperties136 = new RunProperties();
            FontSize fontSize208 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript208 = new FontSizeComplexScript() { Val = "26" };

            runProperties136.Append(fontSize208);
            runProperties136.Append(fontSizeComplexScript208);
            Text text38 = new Text();
            text38.Text = "РТС «Тушино-5» филиал № 9 ПАО «МОЭК» объект топливно- энергетического комплекса. Основной вид деятельности: отопление, выработка тепловой и электрической энергии.";

            run136.Append(runProperties136);
            run136.Append(text38);

            paragraph135.Append(paragraphProperties135);
            paragraph135.Append(run136);

            tableCell108.Append(tableCellProperties108);
            tableCell108.Append(paragraph135);

            tableRow40.Append(tableRowProperties40);
            tableRow40.Append(tableCell108);

            TableRow tableRow41 = new TableRow();
            TableRowProperties tableRowProperties41 = new TableRowProperties();

            TableCell tableCell109 = new TableCell();

            TableCellProperties tableCellProperties109 = new TableCellProperties();
            TableCellWidth tableCellWidth109 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan109 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders109 = new TableCellBorders();
            TopBorder topBorder4 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder4 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder4 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder4 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder4 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder4 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders109.Append(topBorder4);
            tableCellBorders109.Append(startBorder4);
            tableCellBorders109.Append(bottomBorder4);
            tableCellBorders109.Append(endBorder4);
            tableCellBorders109.Append(insideHorizontalBorder4);
            tableCellBorders109.Append(insideVerticalBorder4);
            Shading shading273 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin4 = new TableCellMargin();
            StartMargin startMargin5 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin4.Append(startMargin5);

            tableCellProperties109.Append(tableCellWidth109);
            tableCellProperties109.Append(gridSpan109);
            tableCellProperties109.Append(tableCellBorders109);
            tableCellProperties109.Append(shading273);
            tableCellProperties109.Append(tableCellMargin4);

            Paragraph paragraph136 = new Paragraph();

            ParagraphProperties paragraphProperties136 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId136 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation12 = new Indentation() { FirstLine = "459" };
            Justification justification78 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties136 = new ParagraphMarkRunProperties();

            paragraphProperties136.Append(paragraphStyleId136);
            paragraphProperties136.Append(indentation12);
            paragraphProperties136.Append(justification78);
            paragraphProperties136.Append(paragraphMarkRunProperties136);

            Run run137 = new Run();

            RunProperties runProperties137 = new RunProperties();
            FontSize fontSize209 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript209 = new FontSizeComplexScript() { Val = "26" };

            runProperties137.Append(fontSize209);
            runProperties137.Append(fontSizeComplexScript209);
            Text text39 = new Text();
            text39.Text = "Публичное акционерное общество «Московская объеденная энергетическая компания»";

            run137.Append(runProperties137);
            run137.Append(text39);

            paragraph136.Append(paragraphProperties136);
            paragraph136.Append(run137);

            Paragraph paragraph137 = new Paragraph();

            ParagraphProperties paragraphProperties137 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId137 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation13 = new Indentation() { FirstLine = "459" };
            Justification justification79 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties137 = new ParagraphMarkRunProperties();

            paragraphProperties137.Append(paragraphStyleId137);
            paragraphProperties137.Append(indentation13);
            paragraphProperties137.Append(justification79);
            paragraphProperties137.Append(paragraphMarkRunProperties137);

            Run run138 = new Run();

            RunProperties runProperties138 = new RunProperties();
            FontSize fontSize210 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript210 = new FontSizeComplexScript() { Val = "26" };

            runProperties138.Append(fontSize210);
            runProperties138.Append(fontSizeComplexScript210);
            Text text40 = new Text();
            text40.Text = "Юридический адрес: ул. Ефремова, д.10, г. Москва, 119048;";

            run138.Append(runProperties138);
            run138.Append(text40);

            paragraph137.Append(paragraphProperties137);
            paragraph137.Append(run138);

            Paragraph paragraph138 = new Paragraph();

            ParagraphProperties paragraphProperties138 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId138 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation14 = new Indentation() { FirstLine = "459" };
            Justification justification80 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties138 = new ParagraphMarkRunProperties();

            paragraphProperties138.Append(paragraphStyleId138);
            paragraphProperties138.Append(indentation14);
            paragraphProperties138.Append(justification80);
            paragraphProperties138.Append(paragraphMarkRunProperties138);

            Run run139 = new Run();

            RunProperties runProperties139 = new RunProperties();
            FontSize fontSize211 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript211 = new FontSizeComplexScript() { Val = "26" };

            runProperties139.Append(fontSize211);
            runProperties139.Append(fontSizeComplexScript211);
            Text text41 = new Text();
            text41.Text = "Почтовый адрес: ул. Ефремова, д.10, г. Москва, 119048;";

            run139.Append(runProperties139);
            run139.Append(text41);

            paragraph138.Append(paragraphProperties138);
            paragraph138.Append(run139);

            Paragraph paragraph139 = new Paragraph();

            ParagraphProperties paragraphProperties139 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId139 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation15 = new Indentation() { FirstLine = "459" };
            Justification justification81 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties139 = new ParagraphMarkRunProperties();

            paragraphProperties139.Append(paragraphStyleId139);
            paragraphProperties139.Append(indentation15);
            paragraphProperties139.Append(justification81);
            paragraphProperties139.Append(paragraphMarkRunProperties139);

            Run run140 = new Run();

            RunProperties runProperties140 = new RunProperties();
            FontSize fontSize212 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript212 = new FontSizeComplexScript() { Val = "26" };

            runProperties140.Append(fontSize212);
            runProperties140.Append(fontSizeComplexScript212);
            Text text42 = new Text();
            text42.Text = "Телефон: +7 (495) 662-50-50";

            run140.Append(runProperties140);
            run140.Append(text42);

            paragraph139.Append(paragraphProperties139);
            paragraph139.Append(run140);

            Paragraph paragraph140 = new Paragraph();

            ParagraphProperties paragraphProperties140 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId140 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation16 = new Indentation() { FirstLine = "459" };
            Justification justification82 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties140 = new ParagraphMarkRunProperties();

            paragraphProperties140.Append(paragraphStyleId140);
            paragraphProperties140.Append(indentation16);
            paragraphProperties140.Append(justification82);
            paragraphProperties140.Append(paragraphMarkRunProperties140);

            Run run141 = new Run();

            RunProperties runProperties141 = new RunProperties();
            FontSize fontSize213 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript213 = new FontSizeComplexScript() { Val = "26" };

            runProperties141.Append(fontSize213);
            runProperties141.Append(fontSizeComplexScript213);
            Text text43 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text43.Text = "Генеральный директор ООО «Газпром энергохолдинг» - управляющей организации ";

            run141.Append(runProperties141);
            run141.Append(text43);

            paragraph140.Append(paragraphProperties140);
            paragraph140.Append(run141);

            Paragraph paragraph141 = new Paragraph();

            ParagraphProperties paragraphProperties141 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId141 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation17 = new Indentation() { FirstLine = "459" };
            Justification justification83 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties141 = new ParagraphMarkRunProperties();

            paragraphProperties141.Append(paragraphStyleId141);
            paragraphProperties141.Append(indentation17);
            paragraphProperties141.Append(justification83);
            paragraphProperties141.Append(paragraphMarkRunProperties141);

            Run run142 = new Run();

            RunProperties runProperties142 = new RunProperties();
            FontSize fontSize214 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript214 = new FontSizeComplexScript() { Val = "26" };

            runProperties142.Append(fontSize214);
            runProperties142.Append(fontSizeComplexScript214);
            Text text44 = new Text();
            text44.Text = "ПАО «МОЭК» - Федоров Денис Владимирович";

            run142.Append(runProperties142);
            run142.Append(text44);

            paragraph141.Append(paragraphProperties141);
            paragraph141.Append(run142);

            Paragraph paragraph142 = new Paragraph();

            ParagraphProperties paragraphProperties142 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId142 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation18 = new Indentation() { FirstLine = "459" };
            Justification justification84 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties142 = new ParagraphMarkRunProperties();

            paragraphProperties142.Append(paragraphStyleId142);
            paragraphProperties142.Append(indentation18);
            paragraphProperties142.Append(justification84);
            paragraphProperties142.Append(paragraphMarkRunProperties142);

            Run run143 = new Run();

            RunProperties runProperties143 = new RunProperties();
            FontSize fontSize215 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript215 = new FontSizeComplexScript() { Val = "26" };

            runProperties143.Append(fontSize215);
            runProperties143.Append(fontSizeComplexScript215);
            Text text45 = new Text();
            text45.Text = "телефон: +7 (495) 662-50-50";

            run143.Append(runProperties143);
            run143.Append(text45);

            paragraph142.Append(paragraphProperties142);
            paragraph142.Append(run143);

            Paragraph paragraph143 = new Paragraph();

            ParagraphProperties paragraphProperties143 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId143 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation19 = new Indentation() { FirstLine = "459" };
            Justification justification85 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties143 = new ParagraphMarkRunProperties();

            paragraphProperties143.Append(paragraphStyleId143);
            paragraphProperties143.Append(indentation19);
            paragraphProperties143.Append(justification85);
            paragraphProperties143.Append(paragraphMarkRunProperties143);

            Run run144 = new Run();

            RunProperties runProperties144 = new RunProperties();
            FontSize fontSize216 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript216 = new FontSizeComplexScript() { Val = "26" };

            runProperties144.Append(fontSize216);
            runProperties144.Append(fontSizeComplexScript216);
            Text text46 = new Text();
            text46.Text = "Заместитель генерального директора по безопасности и режиму ПАО «МОЭК» -";

            run144.Append(runProperties144);
            run144.Append(text46);

            paragraph143.Append(paragraphProperties143);
            paragraph143.Append(run144);

            Paragraph paragraph144 = new Paragraph();

            ParagraphProperties paragraphProperties144 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId144 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation20 = new Indentation() { FirstLine = "459" };
            Justification justification86 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties144 = new ParagraphMarkRunProperties();

            paragraphProperties144.Append(paragraphStyleId144);
            paragraphProperties144.Append(indentation20);
            paragraphProperties144.Append(justification86);
            paragraphProperties144.Append(paragraphMarkRunProperties144);

            Run run145 = new Run();

            RunProperties runProperties145 = new RunProperties();
            FontSize fontSize217 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript217 = new FontSizeComplexScript() { Val = "26" };

            runProperties145.Append(fontSize217);
            runProperties145.Append(fontSizeComplexScript217);
            Text text47 = new Text();
            text47.Text = "Солодовников Андрей Петрович";

            run145.Append(runProperties145);
            run145.Append(text47);

            paragraph144.Append(paragraphProperties144);
            paragraph144.Append(run145);

            Paragraph paragraph145 = new Paragraph();

            ParagraphProperties paragraphProperties145 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId145 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation21 = new Indentation() { FirstLine = "459" };
            Justification justification87 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties145 = new ParagraphMarkRunProperties();

            paragraphProperties145.Append(paragraphStyleId145);
            paragraphProperties145.Append(indentation21);
            paragraphProperties145.Append(justification87);
            paragraphProperties145.Append(paragraphMarkRunProperties145);

            Run run146 = new Run();

            RunProperties runProperties146 = new RunProperties();
            FontSize fontSize218 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript218 = new FontSizeComplexScript() { Val = "26" };

            runProperties146.Append(fontSize218);
            runProperties146.Append(fontSizeComplexScript218);
            Text text48 = new Text();
            text48.Text = "телефон: +7 (495) 662-50-50";

            run146.Append(runProperties146);
            run146.Append(text48);

            paragraph145.Append(paragraphProperties145);
            paragraph145.Append(run146);

            tableCell109.Append(tableCellProperties109);
            tableCell109.Append(paragraph136);
            tableCell109.Append(paragraph137);
            tableCell109.Append(paragraph138);
            tableCell109.Append(paragraph139);
            tableCell109.Append(paragraph140);
            tableCell109.Append(paragraph141);
            tableCell109.Append(paragraph142);
            tableCell109.Append(paragraph143);
            tableCell109.Append(paragraph144);
            tableCell109.Append(paragraph145);

            tableRow41.Append(tableRowProperties41);
            tableRow41.Append(tableCell109);

            TableRow tableRow42 = new TableRow();
            TableRowProperties tableRowProperties42 = new TableRowProperties();

            TableCell tableCell110 = new TableCell();

            TableCellProperties tableCellProperties110 = new TableCellProperties();
            TableCellWidth tableCellWidth110 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan110 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders110 = new TableCellBorders();
            TopBorder topBorder5 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder5 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder5 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder5 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder5 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder5 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders110.Append(topBorder5);
            tableCellBorders110.Append(startBorder5);
            tableCellBorders110.Append(bottomBorder5);
            tableCellBorders110.Append(endBorder5);
            tableCellBorders110.Append(insideHorizontalBorder5);
            tableCellBorders110.Append(insideVerticalBorder5);
            Shading shading274 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin5 = new TableCellMargin();
            StartMargin startMargin6 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin5.Append(startMargin6);

            tableCellProperties110.Append(tableCellWidth110);
            tableCellProperties110.Append(gridSpan110);
            tableCellProperties110.Append(tableCellBorders110);
            tableCellProperties110.Append(shading274);
            tableCellProperties110.Append(tableCellMargin5);

            Paragraph paragraph146 = new Paragraph();

            ParagraphProperties paragraphProperties146 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId146 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation22 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties146 = new ParagraphMarkRunProperties();

            paragraphProperties146.Append(paragraphStyleId146);
            paragraphProperties146.Append(indentation22);
            paragraphProperties146.Append(paragraphMarkRunProperties146);

            Run run147 = new Run();

            RunProperties runProperties147 = new RunProperties();
            FontSize fontSize219 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript219 = new FontSizeComplexScript() { Val = "26" };

            runProperties147.Append(fontSize219);
            runProperties147.Append(fontSizeComplexScript219);
            Text text49 = new Text();
            text49.Text = "Филиал № 9 ПАО « МОЭК»";

            run147.Append(runProperties147);
            run147.Append(text49);

            paragraph146.Append(paragraphProperties146);
            paragraph146.Append(run147);

            Paragraph paragraph147 = new Paragraph();

            ParagraphProperties paragraphProperties147 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId147 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation23 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties147 = new ParagraphMarkRunProperties();

            paragraphProperties147.Append(paragraphStyleId147);
            paragraphProperties147.Append(indentation23);
            paragraphProperties147.Append(paragraphMarkRunProperties147);

            Run run148 = new Run();

            RunProperties runProperties148 = new RunProperties();
            FontSize fontSize220 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript220 = new FontSizeComplexScript() { Val = "26" };

            runProperties148.Append(fontSize220);
            runProperties148.Append(fontSizeComplexScript220);
            Text text50 = new Text();
            text50.Text = "Юридический адрес: 125480, г. Москва, ул. Героев Панфиловцев, д.10, корп.1;";

            run148.Append(runProperties148);
            run148.Append(text50);

            paragraph147.Append(paragraphProperties147);
            paragraph147.Append(run148);

            Paragraph paragraph148 = new Paragraph();

            ParagraphProperties paragraphProperties148 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId148 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation24 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties148 = new ParagraphMarkRunProperties();

            paragraphProperties148.Append(paragraphStyleId148);
            paragraphProperties148.Append(indentation24);
            paragraphProperties148.Append(paragraphMarkRunProperties148);

            Run run149 = new Run();

            RunProperties runProperties149 = new RunProperties();
            FontSize fontSize221 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript221 = new FontSizeComplexScript() { Val = "26" };

            runProperties149.Append(fontSize221);
            runProperties149.Append(fontSizeComplexScript221);
            Text text51 = new Text();
            text51.Text = "Почтовый адрес: 125480, г. Москва, ул. Героев Панфиловцев, д.10, корп.1;";

            run149.Append(runProperties149);
            run149.Append(text51);

            paragraph148.Append(paragraphProperties148);
            paragraph148.Append(run149);

            Paragraph paragraph149 = new Paragraph();

            ParagraphProperties paragraphProperties149 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId149 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation25 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties149 = new ParagraphMarkRunProperties();

            paragraphProperties149.Append(paragraphStyleId149);
            paragraphProperties149.Append(indentation25);
            paragraphProperties149.Append(paragraphMarkRunProperties149);

            Run run150 = new Run();

            RunProperties runProperties150 = new RunProperties();
            FontSize fontSize222 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript222 = new FontSizeComplexScript() { Val = "26" };

            runProperties150.Append(fontSize222);
            runProperties150.Append(fontSizeComplexScript222);
            Text text52 = new Text();
            text52.Text = "Исполнительный директор филиала № 9 ПАО « МОЭК» - Афанасьев Виктор Николаевич";

            run150.Append(runProperties150);
            run150.Append(text52);

            paragraph149.Append(paragraphProperties149);
            paragraph149.Append(run150);

            Paragraph paragraph150 = new Paragraph();

            ParagraphProperties paragraphProperties150 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId150 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation26 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties150 = new ParagraphMarkRunProperties();

            paragraphProperties150.Append(paragraphStyleId150);
            paragraphProperties150.Append(indentation26);
            paragraphProperties150.Append(paragraphMarkRunProperties150);

            Run run151 = new Run();

            RunProperties runProperties151 = new RunProperties();
            FontSize fontSize223 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript223 = new FontSizeComplexScript() { Val = "26" };

            runProperties151.Append(fontSize223);
            runProperties151.Append(fontSizeComplexScript223);
            Text text53 = new Text();
            text53.Text = "телефон: +7 (495) 657-94-82";

            run151.Append(runProperties151);
            run151.Append(text53);

            paragraph150.Append(paragraphProperties150);
            paragraph150.Append(run151);

            tableCell110.Append(tableCellProperties110);
            tableCell110.Append(paragraph146);
            tableCell110.Append(paragraph147);
            tableCell110.Append(paragraph148);
            tableCell110.Append(paragraph149);
            tableCell110.Append(paragraph150);

            tableRow42.Append(tableRowProperties42);
            tableRow42.Append(tableCell110);

            TableRow tableRow43 = new TableRow();
            TableRowProperties tableRowProperties43 = new TableRowProperties();

            TableCell tableCell111 = new TableCell();

            TableCellProperties tableCellProperties111 = new TableCellProperties();
            TableCellWidth tableCellWidth111 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan111 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders111 = new TableCellBorders();
            TopBorder topBorder6 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder6 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder6 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder6 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder6 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder6 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders111.Append(topBorder6);
            tableCellBorders111.Append(startBorder6);
            tableCellBorders111.Append(bottomBorder6);
            tableCellBorders111.Append(endBorder6);
            tableCellBorders111.Append(insideHorizontalBorder6);
            tableCellBorders111.Append(insideVerticalBorder6);
            Shading shading275 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin6 = new TableCellMargin();
            StartMargin startMargin7 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin6.Append(startMargin7);

            tableCellProperties111.Append(tableCellWidth111);
            tableCellProperties111.Append(gridSpan111);
            tableCellProperties111.Append(tableCellBorders111);
            tableCellProperties111.Append(shading275);
            tableCellProperties111.Append(tableCellMargin6);

            Paragraph paragraph151 = new Paragraph();

            ParagraphProperties paragraphProperties151 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId151 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation27 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties151 = new ParagraphMarkRunProperties();

            paragraphProperties151.Append(paragraphStyleId151);
            paragraphProperties151.Append(indentation27);
            paragraphProperties151.Append(paragraphMarkRunProperties151);

            Run run152 = new Run();

            RunProperties runProperties152 = new RunProperties();
            FontSize fontSize224 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript224 = new FontSizeComplexScript() { Val = "26" };

            runProperties152.Append(fontSize224);
            runProperties152.Append(fontSizeComplexScript224);
            Text text54 = new Text();
            text54.Text = "Руководитель подразделения охраны – генеральный директор ООО ЧОП «МЕГУР» Ветров Леонид Александрович";

            run152.Append(runProperties152);
            run152.Append(text54);

            paragraph151.Append(paragraphProperties151);
            paragraph151.Append(run152);

            Paragraph paragraph152 = new Paragraph();

            ParagraphProperties paragraphProperties152 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId152 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation28 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties152 = new ParagraphMarkRunProperties();

            paragraphProperties152.Append(paragraphStyleId152);
            paragraphProperties152.Append(indentation28);
            paragraphProperties152.Append(paragraphMarkRunProperties152);

            Run run153 = new Run();

            RunProperties runProperties153 = new RunProperties();
            FontSize fontSize225 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript225 = new FontSizeComplexScript() { Val = "26" };

            runProperties153.Append(fontSize225);
            runProperties153.Append(fontSizeComplexScript225);
            Text text55 = new Text();
            text55.Text = "телефон: +7 (499) 142-05-45";

            run153.Append(runProperties153);
            run153.Append(text55);

            paragraph152.Append(paragraphProperties152);
            paragraph152.Append(run153);

            tableCell111.Append(tableCellProperties111);
            tableCell111.Append(paragraph151);
            tableCell111.Append(paragraph152);

            tableRow43.Append(tableRowProperties43);
            tableRow43.Append(tableCell111);

            TableRow tableRow44 = new TableRow();
            TableRowProperties tableRowProperties44 = new TableRowProperties();

            TableCell tableCell112 = new TableCell();

            TableCellProperties tableCellProperties112 = new TableCellProperties();
            TableCellWidth tableCellWidth112 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan112 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders112 = new TableCellBorders();
            Shading shading276 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties112.Append(tableCellWidth112);
            tableCellProperties112.Append(gridSpan112);
            tableCellProperties112.Append(tableCellBorders112);
            tableCellProperties112.Append(shading276);

            Paragraph paragraph153 = new Paragraph();

            ParagraphProperties paragraphProperties153 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId153 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification88 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties153 = new ParagraphMarkRunProperties();

            paragraphProperties153.Append(paragraphStyleId153);
            paragraphProperties153.Append(justification88);
            paragraphProperties153.Append(paragraphMarkRunProperties153);

            Run run154 = new Run();

            RunProperties runProperties154 = new RunProperties();
            Bold bold7 = new Bold();
            FontSize fontSize226 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript226 = new FontSizeComplexScript() { Val = "26" };

            runProperties154.Append(bold7);
            runProperties154.Append(fontSize226);
            runProperties154.Append(fontSizeComplexScript226);
            Text text56 = new Text();
            text56.Text = "1. Общие сведения об объекте:";

            run154.Append(runProperties154);
            run154.Append(text56);

            paragraph153.Append(paragraphProperties153);
            paragraph153.Append(run154);

            tableCell112.Append(tableCellProperties112);
            tableCell112.Append(paragraph153);

            tableRow44.Append(tableRowProperties44);
            tableRow44.Append(tableCell112);

            TableRow tableRow45 = new TableRow();
            TableRowProperties tableRowProperties45 = new TableRowProperties();

            TableCell tableCell113 = new TableCell();

            TableCellProperties tableCellProperties113 = new TableCellProperties();
            TableCellWidth tableCellWidth113 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan113 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders113 = new TableCellBorders();
            TopBorder topBorder7 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder7 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder7 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders113.Append(topBorder7);
            tableCellBorders113.Append(bottomBorder7);
            tableCellBorders113.Append(insideHorizontalBorder7);
            Shading shading277 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties113.Append(tableCellWidth113);
            tableCellProperties113.Append(gridSpan113);
            tableCellProperties113.Append(tableCellBorders113);
            tableCellProperties113.Append(shading277);

            Paragraph paragraph154 = new Paragraph();

            ParagraphProperties paragraphProperties154 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId154 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification89 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties154 = new ParagraphMarkRunProperties();
            FontSize fontSize227 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript227 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties154.Append(fontSize227);
            paragraphMarkRunProperties154.Append(fontSizeComplexScript227);

            paragraphProperties154.Append(paragraphStyleId154);
            paragraphProperties154.Append(justification89);
            paragraphProperties154.Append(paragraphMarkRunProperties154);

            Run run155 = new Run();

            RunProperties runProperties155 = new RunProperties();
            FontSize fontSize228 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript228 = new FontSizeComplexScript() { Val = "26" };

            runProperties155.Append(fontSize228);
            runProperties155.Append(fontSizeComplexScript228);

            run155.Append(runProperties155);

            paragraph154.Append(paragraphProperties154);
            paragraph154.Append(run155);

            tableCell113.Append(tableCellProperties113);
            tableCell113.Append(paragraph154);

            tableRow45.Append(tableRowProperties45);
            tableRow45.Append(tableCell113);

            TableRow tableRow46 = new TableRow();
            TableRowProperties tableRowProperties46 = new TableRowProperties();

            TableCell tableCell114 = new TableCell();

            TableCellProperties tableCellProperties114 = new TableCellProperties();
            TableCellWidth tableCellWidth114 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan114 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders114 = new TableCellBorders();
            TopBorder topBorder8 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder7 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder8 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder7 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder8 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder7 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders114.Append(topBorder8);
            tableCellBorders114.Append(startBorder7);
            tableCellBorders114.Append(bottomBorder8);
            tableCellBorders114.Append(endBorder7);
            tableCellBorders114.Append(insideHorizontalBorder8);
            tableCellBorders114.Append(insideVerticalBorder7);
            Shading shading278 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin7 = new TableCellMargin();
            StartMargin startMargin8 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin7.Append(startMargin8);

            tableCellProperties114.Append(tableCellWidth114);
            tableCellProperties114.Append(gridSpan114);
            tableCellProperties114.Append(tableCellBorders114);
            tableCellProperties114.Append(shading278);
            tableCellProperties114.Append(tableCellMargin7);

            Paragraph paragraph155 = new Paragraph();

            ParagraphProperties paragraphProperties155 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId155 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation29 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties155 = new ParagraphMarkRunProperties();

            paragraphProperties155.Append(paragraphStyleId155);
            paragraphProperties155.Append(indentation29);
            paragraphProperties155.Append(paragraphMarkRunProperties155);

            Run run156 = new Run();

            RunProperties runProperties156 = new RunProperties();
            RunStyle runStyle1 = new RunStyle() { Val = "FontStyle48" };

            runProperties156.Append(runStyle1);
            Text text57 = new Text();
            text57.Text = "РТС «Тушино-5» филиал № 9 ПАО «МОЭК» мощностью 240 Гкал/ч (два водогрейных котла ПТВМ-120Э производства «Дорогобужкотломаш») предназначена для покрытия расчетного прироста тепловых нагрузок, а также создания резерва мощности централизованных источников теплоснабжения районов Северное и Южное Тушино и Покровское-Стрешнево Северо-Западного административного округа. Ввод в эксплуатацию 2006 г.";

            run156.Append(runProperties156);
            run156.Append(text57);

            paragraph155.Append(paragraphProperties155);
            paragraph155.Append(run156);

            tableCell114.Append(tableCellProperties114);
            tableCell114.Append(paragraph155);

            tableRow46.Append(tableRowProperties46);
            tableRow46.Append(tableCell114);

            TableRow tableRow47 = new TableRow();
            TableRowProperties tableRowProperties47 = new TableRowProperties();

            TableCell tableCell115 = new TableCell();

            TableCellProperties tableCellProperties115 = new TableCellProperties();
            TableCellWidth tableCellWidth115 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan115 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders115 = new TableCellBorders();
            TopBorder topBorder9 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders115.Append(topBorder9);
            Shading shading279 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties115.Append(tableCellWidth115);
            tableCellProperties115.Append(gridSpan115);
            tableCellProperties115.Append(tableCellBorders115);
            tableCellProperties115.Append(shading279);

            Paragraph paragraph156 = new Paragraph();

            ParagraphProperties paragraphProperties156 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId156 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification90 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties156 = new ParagraphMarkRunProperties();
            FontSize fontSize229 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript229 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties156.Append(fontSize229);
            paragraphMarkRunProperties156.Append(fontSizeComplexScript229);

            paragraphProperties156.Append(paragraphStyleId156);
            paragraphProperties156.Append(justification90);
            paragraphProperties156.Append(paragraphMarkRunProperties156);

            Run run157 = new Run();

            RunProperties runProperties157 = new RunProperties();
            FontSize fontSize230 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript230 = new FontSizeComplexScript() { Val = "26" };

            runProperties157.Append(fontSize230);
            runProperties157.Append(fontSizeComplexScript230);

            run157.Append(runProperties157);

            paragraph156.Append(paragraphProperties156);
            paragraph156.Append(run157);

            tableCell115.Append(tableCellProperties115);
            tableCell115.Append(paragraph156);

            tableRow47.Append(tableRowProperties47);
            tableRow47.Append(tableCell115);

            TableRow tableRow48 = new TableRow();
            TableRowProperties tableRowProperties48 = new TableRowProperties();

            TableCell tableCell116 = new TableCell();

            TableCellProperties tableCellProperties116 = new TableCellProperties();
            TableCellWidth tableCellWidth116 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan116 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders116 = new TableCellBorders();
            Shading shading280 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties116.Append(tableCellWidth116);
            tableCellProperties116.Append(gridSpan116);
            tableCellProperties116.Append(tableCellBorders116);
            tableCellProperties116.Append(shading280);

            Paragraph paragraph157 = new Paragraph();

            ParagraphProperties paragraphProperties157 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId157 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties157 = new ParagraphMarkRunProperties();

            paragraphProperties157.Append(paragraphStyleId157);
            paragraphProperties157.Append(paragraphMarkRunProperties157);

            Run run158 = new Run();

            RunProperties runProperties158 = new RunProperties();
            Bold bold8 = new Bold();
            FontSize fontSize231 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript231 = new FontSizeComplexScript() { Val = "26" };

            runProperties158.Append(bold8);
            runProperties158.Append(fontSize231);
            runProperties158.Append(fontSizeComplexScript231);
            Text text58 = new Text();
            text58.Text = "1.1. Основная территория:";

            run158.Append(runProperties158);
            run158.Append(text58);

            paragraph157.Append(paragraphProperties157);
            paragraph157.Append(run158);

            tableCell116.Append(tableCellProperties116);
            tableCell116.Append(paragraph157);

            tableRow48.Append(tableRowProperties48);
            tableRow48.Append(tableCell116);

            TableRow tableRow49 = new TableRow();
            TableRowProperties tableRowProperties49 = new TableRowProperties();

            TableCell tableCell117 = new TableCell();

            TableCellProperties tableCellProperties117 = new TableCellProperties();
            TableCellWidth tableCellWidth117 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan117 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders117 = new TableCellBorders();
            TopBorder topBorder10 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder8 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder9 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder8 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder9 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder8 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders117.Append(topBorder10);
            tableCellBorders117.Append(startBorder8);
            tableCellBorders117.Append(bottomBorder9);
            tableCellBorders117.Append(endBorder8);
            tableCellBorders117.Append(insideHorizontalBorder9);
            tableCellBorders117.Append(insideVerticalBorder8);
            Shading shading281 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin8 = new TableCellMargin();
            StartMargin startMargin9 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin8.Append(startMargin9);

            tableCellProperties117.Append(tableCellWidth117);
            tableCellProperties117.Append(gridSpan117);
            tableCellProperties117.Append(tableCellBorders117);
            tableCellProperties117.Append(shading281);
            tableCellProperties117.Append(tableCellMargin8);

            Paragraph paragraph158 = new Paragraph();

            ParagraphProperties paragraphProperties158 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId158 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification91 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties158 = new ParagraphMarkRunProperties();

            paragraphProperties158.Append(paragraphStyleId158);
            paragraphProperties158.Append(justification91);
            paragraphProperties158.Append(paragraphMarkRunProperties158);

            Run run159 = new Run();

            RunProperties runProperties159 = new RunProperties();
            FontSize fontSize232 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript232 = new FontSizeComplexScript() { Val = "20" };

            runProperties159.Append(fontSize232);
            runProperties159.Append(fontSizeComplexScript232);
            Text text59 = new Text();
            text59.Text = "№";

            run159.Append(runProperties159);
            run159.Append(text59);

            Run run160 = new Run();

            RunProperties runProperties160 = new RunProperties();
            FontSize fontSize233 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript233 = new FontSizeComplexScript() { Val = "20" };
            Languages languages2 = new Languages() { Val = "en-US" };

            runProperties160.Append(fontSize233);
            runProperties160.Append(fontSizeComplexScript233);
            runProperties160.Append(languages2);
            Text text60 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text60.Text = " ";

            run160.Append(runProperties160);
            run160.Append(text60);

            Run run161 = new Run();

            RunProperties runProperties161 = new RunProperties();
            FontSize fontSize234 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript234 = new FontSizeComplexScript() { Val = "20" };

            runProperties161.Append(fontSize234);
            runProperties161.Append(fontSizeComplexScript234);
            Text text61 = new Text();
            text61.Text = "п/п";

            run161.Append(runProperties161);
            run161.Append(text61);

            paragraph158.Append(paragraphProperties158);
            paragraph158.Append(run159);
            paragraph158.Append(run160);
            paragraph158.Append(run161);

            tableCell117.Append(tableCellProperties117);
            tableCell117.Append(paragraph158);

            TableCell tableCell118 = new TableCell();

            TableCellProperties tableCellProperties118 = new TableCellProperties();
            TableCellWidth tableCellWidth118 = new TableCellWidth() { Width = "1983", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan118 = new GridSpan() { Val = 11 };

            TableCellBorders tableCellBorders118 = new TableCellBorders();
            TopBorder topBorder11 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder9 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder10 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder9 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder10 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder9 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders118.Append(topBorder11);
            tableCellBorders118.Append(startBorder9);
            tableCellBorders118.Append(bottomBorder10);
            tableCellBorders118.Append(endBorder9);
            tableCellBorders118.Append(insideHorizontalBorder10);
            tableCellBorders118.Append(insideVerticalBorder9);
            Shading shading282 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin9 = new TableCellMargin();
            StartMargin startMargin10 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin9.Append(startMargin10);

            tableCellProperties118.Append(tableCellWidth118);
            tableCellProperties118.Append(gridSpan118);
            tableCellProperties118.Append(tableCellBorders118);
            tableCellProperties118.Append(shading282);
            tableCellProperties118.Append(tableCellMargin9);

            Paragraph paragraph159 = new Paragraph();

            ParagraphProperties paragraphProperties159 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId159 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification92 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties159 = new ParagraphMarkRunProperties();

            paragraphProperties159.Append(paragraphStyleId159);
            paragraphProperties159.Append(justification92);
            paragraphProperties159.Append(paragraphMarkRunProperties159);

            Run run162 = new Run();

            RunProperties runProperties162 = new RunProperties();
            FontSize fontSize235 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript235 = new FontSizeComplexScript() { Val = "20" };

            runProperties162.Append(fontSize235);
            runProperties162.Append(fontSizeComplexScript235);
            Text text62 = new Text();
            text62.Text = "Производственные здания и сооружения";

            run162.Append(runProperties162);
            run162.Append(text62);

            paragraph159.Append(paragraphProperties159);
            paragraph159.Append(run162);

            tableCell118.Append(tableCellProperties118);
            tableCell118.Append(paragraph159);

            TableCell tableCell119 = new TableCell();

            TableCellProperties tableCellProperties119 = new TableCellProperties();
            TableCellWidth tableCellWidth119 = new TableCellWidth() { Width = "6514", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan119 = new GridSpan() { Val = 33 };

            TableCellBorders tableCellBorders119 = new TableCellBorders();
            TopBorder topBorder12 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder10 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder11 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder10 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder11 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder10 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders119.Append(topBorder12);
            tableCellBorders119.Append(startBorder10);
            tableCellBorders119.Append(bottomBorder11);
            tableCellBorders119.Append(endBorder10);
            tableCellBorders119.Append(insideHorizontalBorder11);
            tableCellBorders119.Append(insideVerticalBorder10);
            Shading shading283 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin10 = new TableCellMargin();
            StartMargin startMargin11 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin10.Append(startMargin11);

            tableCellProperties119.Append(tableCellWidth119);
            tableCellProperties119.Append(gridSpan119);
            tableCellProperties119.Append(tableCellBorders119);
            tableCellProperties119.Append(shading283);
            tableCellProperties119.Append(tableCellMargin10);

            Paragraph paragraph160 = new Paragraph();

            ParagraphProperties paragraphProperties160 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId160 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification93 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties160 = new ParagraphMarkRunProperties();

            paragraphProperties160.Append(paragraphStyleId160);
            paragraphProperties160.Append(justification93);
            paragraphProperties160.Append(paragraphMarkRunProperties160);

            Run run163 = new Run();

            RunProperties runProperties163 = new RunProperties();
            FontSize fontSize236 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript236 = new FontSizeComplexScript() { Val = "20" };

            runProperties163.Append(fontSize236);
            runProperties163.Append(fontSizeComplexScript236);
            Text text63 = new Text();
            text63.Text = "Конструктивные и технологические элементы";

            run163.Append(runProperties163);
            run163.Append(text63);

            paragraph160.Append(paragraphProperties160);
            paragraph160.Append(run163);

            tableCell119.Append(tableCellProperties119);
            tableCell119.Append(paragraph160);

            tableRow49.Append(tableRowProperties49);
            tableRow49.Append(tableCell117);
            tableRow49.Append(tableCell118);
            tableRow49.Append(tableCell119);

            TableRow tableRow50 = new TableRow();
            TableRowProperties tableRowProperties50 = new TableRowProperties();

            TableCell tableCell120 = new TableCell();

            TableCellProperties tableCellProperties120 = new TableCellProperties();
            TableCellWidth tableCellWidth120 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan120 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders120 = new TableCellBorders();
            TopBorder topBorder13 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder11 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder12 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder11 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder12 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder11 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders120.Append(topBorder13);
            tableCellBorders120.Append(startBorder11);
            tableCellBorders120.Append(bottomBorder12);
            tableCellBorders120.Append(endBorder11);
            tableCellBorders120.Append(insideHorizontalBorder12);
            tableCellBorders120.Append(insideVerticalBorder11);
            Shading shading284 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin11 = new TableCellMargin();
            StartMargin startMargin12 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin11.Append(startMargin12);
            TableCellVerticalAlignment tableCellVerticalAlignment1 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties120.Append(tableCellWidth120);
            tableCellProperties120.Append(gridSpan120);
            tableCellProperties120.Append(tableCellBorders120);
            tableCellProperties120.Append(shading284);
            tableCellProperties120.Append(tableCellMargin11);
            tableCellProperties120.Append(tableCellVerticalAlignment1);

            Paragraph paragraph161 = new Paragraph();

            ParagraphProperties paragraphProperties161 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId161 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification94 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties161 = new ParagraphMarkRunProperties();

            paragraphProperties161.Append(paragraphStyleId161);
            paragraphProperties161.Append(justification94);
            paragraphProperties161.Append(paragraphMarkRunProperties161);

            Run run164 = new Run();

            RunProperties runProperties164 = new RunProperties();
            FontSize fontSize237 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript237 = new FontSizeComplexScript() { Val = "20" };

            runProperties164.Append(fontSize237);
            runProperties164.Append(fontSizeComplexScript237);
            Text text64 = new Text();
            text64.Text = "1";

            run164.Append(runProperties164);
            run164.Append(text64);

            paragraph161.Append(paragraphProperties161);
            paragraph161.Append(run164);

            tableCell120.Append(tableCellProperties120);
            tableCell120.Append(paragraph161);

            TableCell tableCell121 = new TableCell();

            TableCellProperties tableCellProperties121 = new TableCellProperties();
            TableCellWidth tableCellWidth121 = new TableCellWidth() { Width = "1983", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan121 = new GridSpan() { Val = 11 };

            TableCellBorders tableCellBorders121 = new TableCellBorders();
            TopBorder topBorder14 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder12 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder13 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder12 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder13 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder12 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders121.Append(topBorder14);
            tableCellBorders121.Append(startBorder12);
            tableCellBorders121.Append(bottomBorder13);
            tableCellBorders121.Append(endBorder12);
            tableCellBorders121.Append(insideHorizontalBorder13);
            tableCellBorders121.Append(insideVerticalBorder12);
            Shading shading285 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin12 = new TableCellMargin();
            StartMargin startMargin13 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin12.Append(startMargin13);
            TableCellVerticalAlignment tableCellVerticalAlignment2 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties121.Append(tableCellWidth121);
            tableCellProperties121.Append(gridSpan121);
            tableCellProperties121.Append(tableCellBorders121);
            tableCellProperties121.Append(shading285);
            tableCellProperties121.Append(tableCellMargin12);
            tableCellProperties121.Append(tableCellVerticalAlignment2);

            Paragraph paragraph162 = new Paragraph();

            ParagraphProperties paragraphProperties162 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId162 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification95 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties162 = new ParagraphMarkRunProperties();

            paragraphProperties162.Append(paragraphStyleId162);
            paragraphProperties162.Append(justification95);
            paragraphProperties162.Append(paragraphMarkRunProperties162);

            Run run165 = new Run();

            RunProperties runProperties165 = new RunProperties();
            FontSize fontSize238 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript238 = new FontSizeComplexScript() { Val = "20" };

            runProperties165.Append(fontSize238);
            runProperties165.Append(fontSizeComplexScript238);
            Text text65 = new Text();
            text65.Text = "Здание газораспределительного пункта";

            run165.Append(runProperties165);
            run165.Append(text65);

            paragraph162.Append(paragraphProperties162);
            paragraph162.Append(run165);

            tableCell121.Append(tableCellProperties121);
            tableCell121.Append(paragraph162);

            TableCell tableCell122 = new TableCell();

            TableCellProperties tableCellProperties122 = new TableCellProperties();
            TableCellWidth tableCellWidth122 = new TableCellWidth() { Width = "6514", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan122 = new GridSpan() { Val = 33 };

            TableCellBorders tableCellBorders122 = new TableCellBorders();
            TopBorder topBorder15 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder13 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder14 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder13 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder14 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder13 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders122.Append(topBorder15);
            tableCellBorders122.Append(startBorder13);
            tableCellBorders122.Append(bottomBorder14);
            tableCellBorders122.Append(endBorder13);
            tableCellBorders122.Append(insideHorizontalBorder14);
            tableCellBorders122.Append(insideVerticalBorder13);
            Shading shading286 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin13 = new TableCellMargin();
            StartMargin startMargin14 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin13.Append(startMargin14);
            TableCellVerticalAlignment tableCellVerticalAlignment3 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties122.Append(tableCellWidth122);
            tableCellProperties122.Append(gridSpan122);
            tableCellProperties122.Append(tableCellBorders122);
            tableCellProperties122.Append(shading286);
            tableCellProperties122.Append(tableCellMargin13);
            tableCellProperties122.Append(tableCellVerticalAlignment3);

            Paragraph paragraph163 = new Paragraph();

            ParagraphProperties paragraphProperties163 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId163 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification96 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties163 = new ParagraphMarkRunProperties();

            paragraphProperties163.Append(paragraphStyleId163);
            paragraphProperties163.Append(justification96);
            paragraphProperties163.Append(paragraphMarkRunProperties163);

            Run run166 = new Run();

            RunProperties runProperties166 = new RunProperties();
            FontSize fontSize239 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript239 = new FontSizeComplexScript() { Val = "20" };

            runProperties166.Append(fontSize239);
            runProperties166.Append(fontSizeComplexScript239);
            Text text66 = new Text();
            text66.Text = "Отдельно стоящее одноэтажное кирпичное здание с облегченной кровлей, предназначенное для размещения технологического оборудования по обеспечению процесса распределения газа. Площадь-562,6м².";

            run166.Append(runProperties166);
            run166.Append(text66);

            paragraph163.Append(paragraphProperties163);
            paragraph163.Append(run166);

            Paragraph paragraph164 = new Paragraph();

            ParagraphProperties paragraphProperties164 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId164 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification97 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties164 = new ParagraphMarkRunProperties();

            paragraphProperties164.Append(paragraphStyleId164);
            paragraphProperties164.Append(justification97);
            paragraphProperties164.Append(paragraphMarkRunProperties164);

            Run run167 = new Run();

            RunProperties runProperties167 = new RunProperties();
            FontSize fontSize240 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript240 = new FontSizeComplexScript() { Val = "20" };

            runProperties167.Append(fontSize240);
            runProperties167.Append(fontSizeComplexScript240);
            Text text67 = new Text();
            text67.Text = "Входное давление газа в городской части ГРП =12 кгс/см2";

            run167.Append(runProperties167);
            run167.Append(text67);

            paragraph164.Append(paragraphProperties164);
            paragraph164.Append(run167);

            Paragraph paragraph165 = new Paragraph();

            ParagraphProperties paragraphProperties165 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId165 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification98 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties165 = new ParagraphMarkRunProperties();

            paragraphProperties165.Append(paragraphStyleId165);
            paragraphProperties165.Append(justification98);
            paragraphProperties165.Append(paragraphMarkRunProperties165);

            Run run168 = new Run();

            RunProperties runProperties168 = new RunProperties();
            FontSize fontSize241 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript241 = new FontSizeComplexScript() { Val = "20" };

            runProperties168.Append(fontSize241);
            runProperties168.Append(fontSizeComplexScript241);
            Text text68 = new Text();
            text68.Text = "Входное давление газа в станционной части ГРП =3 кгс/см2";

            run168.Append(runProperties168);
            run168.Append(text68);

            paragraph165.Append(paragraphProperties165);
            paragraph165.Append(run168);

            Paragraph paragraph166 = new Paragraph();

            ParagraphProperties paragraphProperties166 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId166 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification99 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties166 = new ParagraphMarkRunProperties();

            paragraphProperties166.Append(paragraphStyleId166);
            paragraphProperties166.Append(justification99);
            paragraphProperties166.Append(paragraphMarkRunProperties166);

            Run run169 = new Run();

            RunProperties runProperties169 = new RunProperties();
            FontSize fontSize242 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript242 = new FontSizeComplexScript() { Val = "20" };

            runProperties169.Append(fontSize242);
            runProperties169.Append(fontSizeComplexScript242);
            Text text69 = new Text();
            text69.Text = "Рабочее давление на котлы = 0.7 кгс/см2";

            run169.Append(runProperties169);
            run169.Append(text69);

            paragraph166.Append(paragraphProperties166);
            paragraph166.Append(run169);

            tableCell122.Append(tableCellProperties122);
            tableCell122.Append(paragraph163);
            tableCell122.Append(paragraph164);
            tableCell122.Append(paragraph165);
            tableCell122.Append(paragraph166);

            tableRow50.Append(tableRowProperties50);
            tableRow50.Append(tableCell120);
            tableRow50.Append(tableCell121);
            tableRow50.Append(tableCell122);

            TableRow tableRow51 = new TableRow();
            TableRowProperties tableRowProperties51 = new TableRowProperties();

            TableCell tableCell123 = new TableCell();

            TableCellProperties tableCellProperties123 = new TableCellProperties();
            TableCellWidth tableCellWidth123 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan123 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders123 = new TableCellBorders();
            TopBorder topBorder16 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder14 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder15 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder14 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder15 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder14 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders123.Append(topBorder16);
            tableCellBorders123.Append(startBorder14);
            tableCellBorders123.Append(bottomBorder15);
            tableCellBorders123.Append(endBorder14);
            tableCellBorders123.Append(insideHorizontalBorder15);
            tableCellBorders123.Append(insideVerticalBorder14);
            Shading shading287 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin14 = new TableCellMargin();
            StartMargin startMargin15 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin14.Append(startMargin15);
            TableCellVerticalAlignment tableCellVerticalAlignment4 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties123.Append(tableCellWidth123);
            tableCellProperties123.Append(gridSpan123);
            tableCellProperties123.Append(tableCellBorders123);
            tableCellProperties123.Append(shading287);
            tableCellProperties123.Append(tableCellMargin14);
            tableCellProperties123.Append(tableCellVerticalAlignment4);

            Paragraph paragraph167 = new Paragraph();

            ParagraphProperties paragraphProperties167 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId167 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification100 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties167 = new ParagraphMarkRunProperties();

            paragraphProperties167.Append(paragraphStyleId167);
            paragraphProperties167.Append(justification100);
            paragraphProperties167.Append(paragraphMarkRunProperties167);

            Run run170 = new Run();

            RunProperties runProperties170 = new RunProperties();
            FontSize fontSize243 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript243 = new FontSizeComplexScript() { Val = "20" };

            runProperties170.Append(fontSize243);
            runProperties170.Append(fontSizeComplexScript243);
            Text text70 = new Text();
            text70.Text = "2";

            run170.Append(runProperties170);
            run170.Append(text70);

            paragraph167.Append(paragraphProperties167);
            paragraph167.Append(run170);

            tableCell123.Append(tableCellProperties123);
            tableCell123.Append(paragraph167);

            TableCell tableCell124 = new TableCell();

            TableCellProperties tableCellProperties124 = new TableCellProperties();
            TableCellWidth tableCellWidth124 = new TableCellWidth() { Width = "1983", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan124 = new GridSpan() { Val = 11 };

            TableCellBorders tableCellBorders124 = new TableCellBorders();
            TopBorder topBorder17 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder15 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder16 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder15 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder16 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder15 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders124.Append(topBorder17);
            tableCellBorders124.Append(startBorder15);
            tableCellBorders124.Append(bottomBorder16);
            tableCellBorders124.Append(endBorder15);
            tableCellBorders124.Append(insideHorizontalBorder16);
            tableCellBorders124.Append(insideVerticalBorder15);
            Shading shading288 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin15 = new TableCellMargin();
            StartMargin startMargin16 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin15.Append(startMargin16);
            TableCellVerticalAlignment tableCellVerticalAlignment5 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties124.Append(tableCellWidth124);
            tableCellProperties124.Append(gridSpan124);
            tableCellProperties124.Append(tableCellBorders124);
            tableCellProperties124.Append(shading288);
            tableCellProperties124.Append(tableCellMargin15);
            tableCellProperties124.Append(tableCellVerticalAlignment5);

            Paragraph paragraph168 = new Paragraph();

            ParagraphProperties paragraphProperties168 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId168 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification101 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties168 = new ParagraphMarkRunProperties();

            paragraphProperties168.Append(paragraphStyleId168);
            paragraphProperties168.Append(justification101);
            paragraphProperties168.Append(paragraphMarkRunProperties168);

            Run run171 = new Run();

            RunProperties runProperties171 = new RunProperties();
            FontSize fontSize244 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript244 = new FontSizeComplexScript() { Val = "20" };

            runProperties171.Append(fontSize244);
            runProperties171.Append(fontSizeComplexScript244);
            Text text71 = new Text();
            text71.Text = "Здание объединённого вспомогательного корпуса";

            run171.Append(runProperties171);
            run171.Append(text71);

            paragraph168.Append(paragraphProperties168);
            paragraph168.Append(run171);

            tableCell124.Append(tableCellProperties124);
            tableCell124.Append(paragraph168);

            TableCell tableCell125 = new TableCell();

            TableCellProperties tableCellProperties125 = new TableCellProperties();
            TableCellWidth tableCellWidth125 = new TableCellWidth() { Width = "6514", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan125 = new GridSpan() { Val = 33 };

            TableCellBorders tableCellBorders125 = new TableCellBorders();
            TopBorder topBorder18 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder16 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder17 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder16 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder17 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder16 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders125.Append(topBorder18);
            tableCellBorders125.Append(startBorder16);
            tableCellBorders125.Append(bottomBorder17);
            tableCellBorders125.Append(endBorder16);
            tableCellBorders125.Append(insideHorizontalBorder17);
            tableCellBorders125.Append(insideVerticalBorder16);
            Shading shading289 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin16 = new TableCellMargin();
            StartMargin startMargin17 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin16.Append(startMargin17);
            TableCellVerticalAlignment tableCellVerticalAlignment6 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties125.Append(tableCellWidth125);
            tableCellProperties125.Append(gridSpan125);
            tableCellProperties125.Append(tableCellBorders125);
            tableCellProperties125.Append(shading289);
            tableCellProperties125.Append(tableCellMargin16);
            tableCellProperties125.Append(tableCellVerticalAlignment6);

            Paragraph paragraph169 = new Paragraph();

            ParagraphProperties paragraphProperties169 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId169 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification102 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties169 = new ParagraphMarkRunProperties();

            paragraphProperties169.Append(paragraphStyleId169);
            paragraphProperties169.Append(justification102);
            paragraphProperties169.Append(paragraphMarkRunProperties169);

            Run run172 = new Run();

            RunProperties runProperties172 = new RunProperties();
            FontSize fontSize245 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript245 = new FontSizeComplexScript() { Val = "20" };

            runProperties172.Append(fontSize245);
            runProperties172.Append(fontSizeComplexScript245);
            Text text72 = new Text();
            text72.Text = "4-х этажное здание, предназначенное для размещения персонала             РТС «Тушино-5», специалистов службы диагностики тепловых сетей Филиала №9, а так же в нем размещена механическая мастерская. Наружные стены выполнены из сэндвич-панелей. Площадь- 673,6 м².";

            run172.Append(runProperties172);
            run172.Append(text72);

            paragraph169.Append(paragraphProperties169);
            paragraph169.Append(run172);

            tableCell125.Append(tableCellProperties125);
            tableCell125.Append(paragraph169);

            tableRow51.Append(tableRowProperties51);
            tableRow51.Append(tableCell123);
            tableRow51.Append(tableCell124);
            tableRow51.Append(tableCell125);

            TableRow tableRow52 = new TableRow();
            TableRowProperties tableRowProperties52 = new TableRowProperties();

            TableCell tableCell126 = new TableCell();

            TableCellProperties tableCellProperties126 = new TableCellProperties();
            TableCellWidth tableCellWidth126 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan126 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders126 = new TableCellBorders();
            TopBorder topBorder19 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder17 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder18 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder17 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder18 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder17 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders126.Append(topBorder19);
            tableCellBorders126.Append(startBorder17);
            tableCellBorders126.Append(bottomBorder18);
            tableCellBorders126.Append(endBorder17);
            tableCellBorders126.Append(insideHorizontalBorder18);
            tableCellBorders126.Append(insideVerticalBorder17);
            Shading shading290 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin17 = new TableCellMargin();
            StartMargin startMargin18 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin17.Append(startMargin18);
            TableCellVerticalAlignment tableCellVerticalAlignment7 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties126.Append(tableCellWidth126);
            tableCellProperties126.Append(gridSpan126);
            tableCellProperties126.Append(tableCellBorders126);
            tableCellProperties126.Append(shading290);
            tableCellProperties126.Append(tableCellMargin17);
            tableCellProperties126.Append(tableCellVerticalAlignment7);

            Paragraph paragraph170 = new Paragraph();

            ParagraphProperties paragraphProperties170 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId170 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification103 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties170 = new ParagraphMarkRunProperties();

            paragraphProperties170.Append(paragraphStyleId170);
            paragraphProperties170.Append(justification103);
            paragraphProperties170.Append(paragraphMarkRunProperties170);

            Run run173 = new Run();

            RunProperties runProperties173 = new RunProperties();
            FontSize fontSize246 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript246 = new FontSizeComplexScript() { Val = "20" };

            runProperties173.Append(fontSize246);
            runProperties173.Append(fontSizeComplexScript246);
            Text text73 = new Text();
            text73.Text = "3";

            run173.Append(runProperties173);
            run173.Append(text73);

            paragraph170.Append(paragraphProperties170);
            paragraph170.Append(run173);

            tableCell126.Append(tableCellProperties126);
            tableCell126.Append(paragraph170);

            TableCell tableCell127 = new TableCell();

            TableCellProperties tableCellProperties127 = new TableCellProperties();
            TableCellWidth tableCellWidth127 = new TableCellWidth() { Width = "1983", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan127 = new GridSpan() { Val = 11 };

            TableCellBorders tableCellBorders127 = new TableCellBorders();
            TopBorder topBorder20 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder18 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder19 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder18 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder19 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder18 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders127.Append(topBorder20);
            tableCellBorders127.Append(startBorder18);
            tableCellBorders127.Append(bottomBorder19);
            tableCellBorders127.Append(endBorder18);
            tableCellBorders127.Append(insideHorizontalBorder19);
            tableCellBorders127.Append(insideVerticalBorder18);
            Shading shading291 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin18 = new TableCellMargin();
            StartMargin startMargin19 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin18.Append(startMargin19);
            TableCellVerticalAlignment tableCellVerticalAlignment8 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties127.Append(tableCellWidth127);
            tableCellProperties127.Append(gridSpan127);
            tableCellProperties127.Append(tableCellBorders127);
            tableCellProperties127.Append(shading291);
            tableCellProperties127.Append(tableCellMargin18);
            tableCellProperties127.Append(tableCellVerticalAlignment8);

            Paragraph paragraph171 = new Paragraph();

            ParagraphProperties paragraphProperties171 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId171 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification104 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties171 = new ParagraphMarkRunProperties();

            paragraphProperties171.Append(paragraphStyleId171);
            paragraphProperties171.Append(justification104);
            paragraphProperties171.Append(paragraphMarkRunProperties171);

            Run run174 = new Run();

            RunProperties runProperties174 = new RunProperties();
            FontSize fontSize247 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript247 = new FontSizeComplexScript() { Val = "20" };

            runProperties174.Append(fontSize247);
            runProperties174.Append(fontSizeComplexScript247);
            Text text74 = new Text();
            text74.Text = "Главный корпус";

            run174.Append(runProperties174);
            run174.Append(text74);

            paragraph171.Append(paragraphProperties171);
            paragraph171.Append(run174);

            tableCell127.Append(tableCellProperties127);
            tableCell127.Append(paragraph171);

            TableCell tableCell128 = new TableCell();

            TableCellProperties tableCellProperties128 = new TableCellProperties();
            TableCellWidth tableCellWidth128 = new TableCellWidth() { Width = "6514", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan128 = new GridSpan() { Val = 33 };

            TableCellBorders tableCellBorders128 = new TableCellBorders();
            TopBorder topBorder21 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder19 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder20 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder19 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder20 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder19 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders128.Append(topBorder21);
            tableCellBorders128.Append(startBorder19);
            tableCellBorders128.Append(bottomBorder20);
            tableCellBorders128.Append(endBorder19);
            tableCellBorders128.Append(insideHorizontalBorder20);
            tableCellBorders128.Append(insideVerticalBorder19);
            Shading shading292 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin19 = new TableCellMargin();
            StartMargin startMargin20 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin19.Append(startMargin20);
            TableCellVerticalAlignment tableCellVerticalAlignment9 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties128.Append(tableCellWidth128);
            tableCellProperties128.Append(gridSpan128);
            tableCellProperties128.Append(tableCellBorders128);
            tableCellProperties128.Append(shading292);
            tableCellProperties128.Append(tableCellMargin19);
            tableCellProperties128.Append(tableCellVerticalAlignment9);

            Paragraph paragraph172 = new Paragraph();

            ParagraphProperties paragraphProperties172 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId172 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification105 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties172 = new ParagraphMarkRunProperties();

            paragraphProperties172.Append(paragraphStyleId172);
            paragraphProperties172.Append(justification105);
            paragraphProperties172.Append(paragraphMarkRunProperties172);

            Run run175 = new Run();

            RunProperties runProperties175 = new RunProperties();
            FontSize fontSize248 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript248 = new FontSizeComplexScript() { Val = "20" };

            runProperties175.Append(fontSize248);
            runProperties175.Append(fontSizeComplexScript248);
            Text text75 = new Text();
            text75.Text = "5-и этажное здание, предназначенное для размещения технологического оборудования по выработке и поставке теплоносителя потребителям (население, организации и учреждения) в границах обслуживаемого района и персонала станции. Наружные стены выполнены из сэндвич-панелей. Площадь- 7447,2 м².";

            run175.Append(runProperties175);
            run175.Append(text75);

            paragraph172.Append(paragraphProperties172);
            paragraph172.Append(run175);

            Paragraph paragraph173 = new Paragraph();

            ParagraphProperties paragraphProperties173 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId173 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification106 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties173 = new ParagraphMarkRunProperties();

            paragraphProperties173.Append(paragraphStyleId173);
            paragraphProperties173.Append(justification106);
            paragraphProperties173.Append(paragraphMarkRunProperties173);

            Run run176 = new Run();

            RunProperties runProperties176 = new RunProperties();
            FontSize fontSize249 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript249 = new FontSizeComplexScript() { Val = "20" };

            runProperties176.Append(fontSize249);
            runProperties176.Append(fontSizeComplexScript249);
            Text text76 = new Text();
            text76.Text = "В главном корпусе находятся машинный и котельный залы, ВПУ-ДПУ, ЧРП, РТП, административная часть.";

            run176.Append(runProperties176);
            run176.Append(text76);

            paragraph173.Append(paragraphProperties173);
            paragraph173.Append(run176);

            tableCell128.Append(tableCellProperties128);
            tableCell128.Append(paragraph172);
            tableCell128.Append(paragraph173);

            tableRow52.Append(tableRowProperties52);
            tableRow52.Append(tableCell126);
            tableRow52.Append(tableCell127);
            tableRow52.Append(tableCell128);

            TableRow tableRow53 = new TableRow();
            TableRowProperties tableRowProperties53 = new TableRowProperties();

            TableCell tableCell129 = new TableCell();

            TableCellProperties tableCellProperties129 = new TableCellProperties();
            TableCellWidth tableCellWidth129 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan129 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders129 = new TableCellBorders();
            TopBorder topBorder22 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder20 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder21 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder20 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder21 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder20 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders129.Append(topBorder22);
            tableCellBorders129.Append(startBorder20);
            tableCellBorders129.Append(bottomBorder21);
            tableCellBorders129.Append(endBorder20);
            tableCellBorders129.Append(insideHorizontalBorder21);
            tableCellBorders129.Append(insideVerticalBorder20);
            Shading shading293 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin20 = new TableCellMargin();
            StartMargin startMargin21 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin20.Append(startMargin21);
            TableCellVerticalAlignment tableCellVerticalAlignment10 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties129.Append(tableCellWidth129);
            tableCellProperties129.Append(gridSpan129);
            tableCellProperties129.Append(tableCellBorders129);
            tableCellProperties129.Append(shading293);
            tableCellProperties129.Append(tableCellMargin20);
            tableCellProperties129.Append(tableCellVerticalAlignment10);

            Paragraph paragraph174 = new Paragraph();

            ParagraphProperties paragraphProperties174 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId174 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification107 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties174 = new ParagraphMarkRunProperties();

            paragraphProperties174.Append(paragraphStyleId174);
            paragraphProperties174.Append(justification107);
            paragraphProperties174.Append(paragraphMarkRunProperties174);

            Run run177 = new Run();

            RunProperties runProperties177 = new RunProperties();
            FontSize fontSize250 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript250 = new FontSizeComplexScript() { Val = "20" };

            runProperties177.Append(fontSize250);
            runProperties177.Append(fontSizeComplexScript250);
            Text text77 = new Text();
            text77.Text = "4";

            run177.Append(runProperties177);
            run177.Append(text77);

            paragraph174.Append(paragraphProperties174);
            paragraph174.Append(run177);

            tableCell129.Append(tableCellProperties129);
            tableCell129.Append(paragraph174);

            TableCell tableCell130 = new TableCell();

            TableCellProperties tableCellProperties130 = new TableCellProperties();
            TableCellWidth tableCellWidth130 = new TableCellWidth() { Width = "1983", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan130 = new GridSpan() { Val = 11 };

            TableCellBorders tableCellBorders130 = new TableCellBorders();
            TopBorder topBorder23 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder21 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder22 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder21 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder22 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder21 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders130.Append(topBorder23);
            tableCellBorders130.Append(startBorder21);
            tableCellBorders130.Append(bottomBorder22);
            tableCellBorders130.Append(endBorder21);
            tableCellBorders130.Append(insideHorizontalBorder22);
            tableCellBorders130.Append(insideVerticalBorder21);
            Shading shading294 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin21 = new TableCellMargin();
            StartMargin startMargin22 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin21.Append(startMargin22);
            TableCellVerticalAlignment tableCellVerticalAlignment11 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties130.Append(tableCellWidth130);
            tableCellProperties130.Append(gridSpan130);
            tableCellProperties130.Append(tableCellBorders130);
            tableCellProperties130.Append(shading294);
            tableCellProperties130.Append(tableCellMargin21);
            tableCellProperties130.Append(tableCellVerticalAlignment11);

            Paragraph paragraph175 = new Paragraph();

            ParagraphProperties paragraphProperties175 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId175 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification108 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties175 = new ParagraphMarkRunProperties();

            paragraphProperties175.Append(paragraphStyleId175);
            paragraphProperties175.Append(justification108);
            paragraphProperties175.Append(paragraphMarkRunProperties175);

            Run run178 = new Run();

            RunProperties runProperties178 = new RunProperties();
            FontSize fontSize251 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript251 = new FontSizeComplexScript() { Val = "20" };

            runProperties178.Append(fontSize251);
            runProperties178.Append(fontSizeComplexScript251);
            Text text78 = new Text();
            text78.Text = "Здание проходной";

            run178.Append(runProperties178);
            run178.Append(text78);

            paragraph175.Append(paragraphProperties175);
            paragraph175.Append(run178);

            tableCell130.Append(tableCellProperties130);
            tableCell130.Append(paragraph175);

            TableCell tableCell131 = new TableCell();

            TableCellProperties tableCellProperties131 = new TableCellProperties();
            TableCellWidth tableCellWidth131 = new TableCellWidth() { Width = "6514", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan131 = new GridSpan() { Val = 33 };

            TableCellBorders tableCellBorders131 = new TableCellBorders();
            TopBorder topBorder24 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder22 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder23 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder22 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder23 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder22 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders131.Append(topBorder24);
            tableCellBorders131.Append(startBorder22);
            tableCellBorders131.Append(bottomBorder23);
            tableCellBorders131.Append(endBorder22);
            tableCellBorders131.Append(insideHorizontalBorder23);
            tableCellBorders131.Append(insideVerticalBorder22);
            Shading shading295 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin22 = new TableCellMargin();
            StartMargin startMargin23 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin22.Append(startMargin23);
            TableCellVerticalAlignment tableCellVerticalAlignment12 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties131.Append(tableCellWidth131);
            tableCellProperties131.Append(gridSpan131);
            tableCellProperties131.Append(tableCellBorders131);
            tableCellProperties131.Append(shading295);
            tableCellProperties131.Append(tableCellMargin22);
            tableCellProperties131.Append(tableCellVerticalAlignment12);

            Paragraph paragraph176 = new Paragraph();

            ParagraphProperties paragraphProperties176 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId176 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification109 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties176 = new ParagraphMarkRunProperties();

            paragraphProperties176.Append(paragraphStyleId176);
            paragraphProperties176.Append(justification109);
            paragraphProperties176.Append(paragraphMarkRunProperties176);

            Run run179 = new Run();

            RunProperties runProperties179 = new RunProperties();
            FontSize fontSize252 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript252 = new FontSizeComplexScript() { Val = "20" };

            runProperties179.Append(fontSize252);
            runProperties179.Append(fontSizeComplexScript252);
            Text text79 = new Text();
            text79.Text = "Кирпичное одноэтажное здание, предназначенное для пропуска людей, размещения сотрудников охраны и технических средств безопасности. Площадь-63,9м².";

            run179.Append(runProperties179);
            run179.Append(text79);

            paragraph176.Append(paragraphProperties176);
            paragraph176.Append(run179);

            tableCell131.Append(tableCellProperties131);
            tableCell131.Append(paragraph176);

            tableRow53.Append(tableRowProperties53);
            tableRow53.Append(tableCell129);
            tableRow53.Append(tableCell130);
            tableRow53.Append(tableCell131);

            TableRow tableRow54 = new TableRow();
            TableRowProperties tableRowProperties54 = new TableRowProperties();

            TableCell tableCell132 = new TableCell();

            TableCellProperties tableCellProperties132 = new TableCellProperties();
            TableCellWidth tableCellWidth132 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan132 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders132 = new TableCellBorders();
            TopBorder topBorder25 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder23 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder24 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder23 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder24 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder23 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders132.Append(topBorder25);
            tableCellBorders132.Append(startBorder23);
            tableCellBorders132.Append(bottomBorder24);
            tableCellBorders132.Append(endBorder23);
            tableCellBorders132.Append(insideHorizontalBorder24);
            tableCellBorders132.Append(insideVerticalBorder23);
            Shading shading296 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin23 = new TableCellMargin();
            StartMargin startMargin24 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin23.Append(startMargin24);

            tableCellProperties132.Append(tableCellWidth132);
            tableCellProperties132.Append(gridSpan132);
            tableCellProperties132.Append(tableCellBorders132);
            tableCellProperties132.Append(shading296);
            tableCellProperties132.Append(tableCellMargin23);

            Paragraph paragraph177 = new Paragraph();

            ParagraphProperties paragraphProperties177 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId177 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties177 = new ParagraphMarkRunProperties();

            paragraphProperties177.Append(paragraphStyleId177);
            paragraphProperties177.Append(paragraphMarkRunProperties177);

            Run run180 = new Run();

            RunProperties runProperties180 = new RunProperties();
            Bold bold9 = new Bold();
            FontSize fontSize253 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript253 = new FontSizeComplexScript() { Val = "26" };

            runProperties180.Append(bold9);
            runProperties180.Append(fontSize253);
            runProperties180.Append(fontSizeComplexScript253);
            Text text80 = new Text();
            text80.Text = "Общая площадь объекта";

            run180.Append(runProperties180);
            run180.Append(text80);

            Run run181 = new Run();

            RunProperties runProperties181 = new RunProperties();
            FontSize fontSize254 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript254 = new FontSizeComplexScript() { Val = "26" };

            runProperties181.Append(fontSize254);
            runProperties181.Append(fontSizeComplexScript254);
            Text text81 = new Text();
            text81.Text = ", м";

            run181.Append(runProperties181);
            run181.Append(text81);

            Run run182 = new Run();

            RunProperties runProperties182 = new RunProperties();
            FontSize fontSize255 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript255 = new FontSizeComplexScript() { Val = "26" };
            VerticalTextAlignment verticalTextAlignment1 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties182.Append(fontSize255);
            runProperties182.Append(fontSizeComplexScript255);
            runProperties182.Append(verticalTextAlignment1);
            Text text82 = new Text();
            text82.Text = "2";

            run182.Append(runProperties182);
            run182.Append(text82);

            Run run183 = new Run();

            RunProperties runProperties183 = new RunProperties();
            FontSize fontSize256 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript256 = new FontSizeComplexScript() { Val = "26" };

            runProperties183.Append(fontSize256);
            runProperties183.Append(fontSizeComplexScript256);
            Text text83 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text83.Text = " -9200. ";

            run183.Append(runProperties183);
            run183.Append(text83);

            Run run184 = new Run();

            RunProperties runProperties184 = new RunProperties();
            Bold bold10 = new Bold();
            FontSize fontSize257 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript257 = new FontSizeComplexScript() { Val = "26" };

            runProperties184.Append(bold10);
            runProperties184.Append(fontSize257);
            runProperties184.Append(fontSizeComplexScript257);
            Text text84 = new Text();
            text84.Text = "Периметр";

            run184.Append(runProperties184);
            run184.Append(text84);

            Run run185 = new Run();

            RunProperties runProperties185 = new RunProperties();
            FontSize fontSize258 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript258 = new FontSizeComplexScript() { Val = "26" };

            runProperties185.Append(fontSize258);
            runProperties185.Append(fontSizeComplexScript258);
            Text text85 = new Text();
            text85.Text = ", м. – 360.";

            run185.Append(runProperties185);
            run185.Append(text85);

            paragraph177.Append(paragraphProperties177);
            paragraph177.Append(run180);
            paragraph177.Append(run181);
            paragraph177.Append(run182);
            paragraph177.Append(run183);
            paragraph177.Append(run184);
            paragraph177.Append(run185);

            Paragraph paragraph178 = new Paragraph();

            ParagraphProperties paragraphProperties178 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId178 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties178 = new ParagraphMarkRunProperties();

            paragraphProperties178.Append(paragraphStyleId178);
            paragraphProperties178.Append(paragraphMarkRunProperties178);

            Run run186 = new Run();

            RunProperties runProperties186 = new RunProperties();
            FontSize fontSize259 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript259 = new FontSizeComplexScript() { Val = "26" };

            runProperties186.Append(fontSize259);
            runProperties186.Append(fontSizeComplexScript259);
            Text text86 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text86.Text = "Электроснабжение РП 20079 осуществляется по 2-м основным ПКЛ (питающая кабельная линия) питающих центров п/ст 111 ПАО «МОЭСК» и п/ст 837 ПАО «ОЭК» и резервной линии 20076 ПАО «ОЭК»: ";

            run186.Append(runProperties186);
            run186.Append(text86);

            paragraph178.Append(paragraphProperties178);
            paragraph178.Append(run186);

            Paragraph paragraph179 = new Paragraph();

            ParagraphProperties paragraphProperties179 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId179 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties179 = new ParagraphMarkRunProperties();

            paragraphProperties179.Append(paragraphStyleId179);
            paragraphProperties179.Append(paragraphMarkRunProperties179);

            Run run187 = new Run();

            RunProperties runProperties187 = new RunProperties();
            FontSize fontSize260 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript260 = new FontSizeComplexScript() { Val = "26" };

            runProperties187.Append(fontSize260);
            runProperties187.Append(fontSizeComplexScript260);
            Text text87 = new Text();
            text87.Text = "Секция № 1, яч. 15 - ПКЛ 3х240) от ПС № 837, 10 кВ (ПАО «ОЭК»)";

            run187.Append(runProperties187);
            run187.Append(text87);

            paragraph179.Append(paragraphProperties179);
            paragraph179.Append(run187);

            Paragraph paragraph180 = new Paragraph();

            ParagraphProperties paragraphProperties180 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId180 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties180 = new ParagraphMarkRunProperties();

            paragraphProperties180.Append(paragraphStyleId180);
            paragraphProperties180.Append(paragraphMarkRunProperties180);

            Run run188 = new Run();

            RunProperties runProperties188 = new RunProperties();
            FontSize fontSize261 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript261 = new FontSizeComplexScript() { Val = "26" };

            runProperties188.Append(fontSize261);
            runProperties188.Append(fontSizeComplexScript261);
            Text text88 = new Text();
            text88.Text = "Секция № 1, яч. 13 - ПКЛ 3х240) от РП 20076, 10 кВ (ПАО «ОЭК»)";

            run188.Append(runProperties188);
            run188.Append(text88);

            paragraph180.Append(paragraphProperties180);
            paragraph180.Append(run188);

            Paragraph paragraph181 = new Paragraph();

            ParagraphProperties paragraphProperties181 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId181 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties181 = new ParagraphMarkRunProperties();

            paragraphProperties181.Append(paragraphStyleId181);
            paragraphProperties181.Append(paragraphMarkRunProperties181);

            Run run189 = new Run();

            RunProperties runProperties189 = new RunProperties();
            FontSize fontSize262 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript262 = new FontSizeComplexScript() { Val = "26" };

            runProperties189.Append(fontSize262);
            runProperties189.Append(fontSizeComplexScript262);
            Text text89 = new Text();
            text89.Text = "Секция № 2, яч. 12 - ПКЛ 3х240 от ПС № 111 , 10 кВ (ПАО «МОЭСК»)";

            run189.Append(runProperties189);
            run189.Append(text89);

            paragraph181.Append(paragraphProperties181);
            paragraph181.Append(run189);

            Paragraph paragraph182 = new Paragraph();

            ParagraphProperties paragraphProperties182 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId182 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties182 = new ParagraphMarkRunProperties();

            paragraphProperties182.Append(paragraphStyleId182);
            paragraphProperties182.Append(paragraphMarkRunProperties182);

            Run run190 = new Run();

            RunProperties runProperties190 = new RunProperties();
            FontSize fontSize263 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript263 = new FontSizeComplexScript() { Val = "26" };

            runProperties190.Append(fontSize263);
            runProperties190.Append(fontSizeComplexScript263);
            Text text90 = new Text();
            text90.Text = "Секция № 2, яч. 8 - ПКЛ 3х240 от РП 20076, 10 кВ (ПАО «ОЭК»)";

            run190.Append(runProperties190);
            run190.Append(text90);

            paragraph182.Append(paragraphProperties182);
            paragraph182.Append(run190);

            Paragraph paragraph183 = new Paragraph();

            ParagraphProperties paragraphProperties183 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId183 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties183 = new ParagraphMarkRunProperties();

            paragraphProperties183.Append(paragraphStyleId183);
            paragraphProperties183.Append(paragraphMarkRunProperties183);

            Run run191 = new Run();

            RunProperties runProperties191 = new RunProperties();
            FontSize fontSize264 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript264 = new FontSizeComplexScript() { Val = "26" };

            runProperties191.Append(fontSize264);
            runProperties191.Append(fontSizeComplexScript264);
            Text text91 = new Text();
            text91.Text = "Между секциями предусмотрен АВР";

            run191.Append(runProperties191);
            run191.Append(text91);

            paragraph183.Append(paragraphProperties183);
            paragraph183.Append(run191);

            tableCell132.Append(tableCellProperties132);
            tableCell132.Append(paragraph177);
            tableCell132.Append(paragraph178);
            tableCell132.Append(paragraph179);
            tableCell132.Append(paragraph180);
            tableCell132.Append(paragraph181);
            tableCell132.Append(paragraph182);
            tableCell132.Append(paragraph183);

            tableRow54.Append(tableRowProperties54);
            tableRow54.Append(tableCell132);

            TableRow tableRow55 = new TableRow();
            TableRowProperties tableRowProperties55 = new TableRowProperties();

            TableCell tableCell133 = new TableCell();

            TableCellProperties tableCellProperties133 = new TableCellProperties();
            TableCellWidth tableCellWidth133 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan133 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders133 = new TableCellBorders();
            TopBorder topBorder26 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders133.Append(topBorder26);
            Shading shading297 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties133.Append(tableCellWidth133);
            tableCellProperties133.Append(gridSpan133);
            tableCellProperties133.Append(tableCellBorders133);
            tableCellProperties133.Append(shading297);

            Paragraph paragraph184 = new Paragraph();

            ParagraphProperties paragraphProperties184 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId184 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties184 = new ParagraphMarkRunProperties();
            FontSize fontSize265 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript265 = new FontSizeComplexScript() { Val = "26" };
            Shading shading298 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties184.Append(fontSize265);
            paragraphMarkRunProperties184.Append(fontSizeComplexScript265);
            paragraphMarkRunProperties184.Append(shading298);

            paragraphProperties184.Append(paragraphStyleId184);
            paragraphProperties184.Append(paragraphMarkRunProperties184);

            Run run192 = new Run();

            RunProperties runProperties192 = new RunProperties();
            FontSize fontSize266 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript266 = new FontSizeComplexScript() { Val = "26" };
            Shading shading299 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties192.Append(fontSize266);
            runProperties192.Append(fontSizeComplexScript266);
            runProperties192.Append(shading299);

            run192.Append(runProperties192);

            paragraph184.Append(paragraphProperties184);
            paragraph184.Append(run192);

            tableCell133.Append(tableCellProperties133);
            tableCell133.Append(paragraph184);

            tableRow55.Append(tableRowProperties55);
            tableRow55.Append(tableCell133);

            TableRow tableRow56 = new TableRow();
            TableRowProperties tableRowProperties56 = new TableRowProperties();

            TableCell tableCell134 = new TableCell();

            TableCellProperties tableCellProperties134 = new TableCellProperties();
            TableCellWidth tableCellWidth134 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan134 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders134 = new TableCellBorders();
            Shading shading300 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties134.Append(tableCellWidth134);
            tableCellProperties134.Append(gridSpan134);
            tableCellProperties134.Append(tableCellBorders134);
            tableCellProperties134.Append(shading300);

            Paragraph paragraph185 = new Paragraph();

            ParagraphProperties paragraphProperties185 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId185 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties185 = new ParagraphMarkRunProperties();

            paragraphProperties185.Append(paragraphStyleId185);
            paragraphProperties185.Append(paragraphMarkRunProperties185);

            Run run193 = new Run();

            RunProperties runProperties193 = new RunProperties();
            RunStyle runStyle2 = new RunStyle() { Val = "FontStyle48" };
            Bold bold11 = new Bold();

            runProperties193.Append(runStyle2);
            runProperties193.Append(bold11);
            Text text92 = new Text();
            text92.Text = "1.2. Объекты вне основной территории:";

            run193.Append(runProperties193);
            run193.Append(text92);

            paragraph185.Append(paragraphProperties185);
            paragraph185.Append(run193);

            tableCell134.Append(tableCellProperties134);
            tableCell134.Append(paragraph185);

            tableRow56.Append(tableRowProperties56);
            tableRow56.Append(tableCell134);

            TableRow tableRow57 = new TableRow();
            TableRowProperties tableRowProperties57 = new TableRowProperties();

            TableCell tableCell135 = new TableCell();

            TableCellProperties tableCellProperties135 = new TableCellProperties();
            TableCellWidth tableCellWidth135 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan135 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders135 = new TableCellBorders();
            TopBorder topBorder27 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder24 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder25 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder24 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder25 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder24 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders135.Append(topBorder27);
            tableCellBorders135.Append(startBorder24);
            tableCellBorders135.Append(bottomBorder25);
            tableCellBorders135.Append(endBorder24);
            tableCellBorders135.Append(insideHorizontalBorder25);
            tableCellBorders135.Append(insideVerticalBorder24);
            Shading shading301 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin24 = new TableCellMargin();
            StartMargin startMargin25 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin24.Append(startMargin25);

            tableCellProperties135.Append(tableCellWidth135);
            tableCellProperties135.Append(gridSpan135);
            tableCellProperties135.Append(tableCellBorders135);
            tableCellProperties135.Append(shading301);
            tableCellProperties135.Append(tableCellMargin24);

            Paragraph paragraph186 = new Paragraph();

            ParagraphProperties paragraphProperties186 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId186 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification110 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties186 = new ParagraphMarkRunProperties();

            paragraphProperties186.Append(paragraphStyleId186);
            paragraphProperties186.Append(justification110);
            paragraphProperties186.Append(paragraphMarkRunProperties186);

            Run run194 = new Run();

            RunProperties runProperties194 = new RunProperties();
            RunStyle runStyle3 = new RunStyle() { Val = "FontStyle48" };

            runProperties194.Append(runStyle3);
            Text text93 = new Text();
            text93.Text = "ОТСУТСТВУЮТ";

            run194.Append(runProperties194);
            run194.Append(text93);

            paragraph186.Append(paragraphProperties186);
            paragraph186.Append(run194);

            tableCell135.Append(tableCellProperties135);
            tableCell135.Append(paragraph186);

            tableRow57.Append(tableRowProperties57);
            tableRow57.Append(tableCell135);

            TableRow tableRow58 = new TableRow();
            TableRowProperties tableRowProperties58 = new TableRowProperties();

            TableCell tableCell136 = new TableCell();

            TableCellProperties tableCellProperties136 = new TableCellProperties();
            TableCellWidth tableCellWidth136 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan136 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders136 = new TableCellBorders();
            TopBorder topBorder28 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders136.Append(topBorder28);
            Shading shading302 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties136.Append(tableCellWidth136);
            tableCellProperties136.Append(gridSpan136);
            tableCellProperties136.Append(tableCellBorders136);
            tableCellProperties136.Append(shading302);

            Paragraph paragraph187 = new Paragraph();

            ParagraphProperties paragraphProperties187 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId187 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties187 = new ParagraphMarkRunProperties();
            FontSize fontSize267 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript267 = new FontSizeComplexScript() { Val = "26" };
            Shading shading303 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties187.Append(fontSize267);
            paragraphMarkRunProperties187.Append(fontSizeComplexScript267);
            paragraphMarkRunProperties187.Append(shading303);

            paragraphProperties187.Append(paragraphStyleId187);
            paragraphProperties187.Append(paragraphMarkRunProperties187);

            Run run195 = new Run();

            RunProperties runProperties195 = new RunProperties();
            FontSize fontSize268 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript268 = new FontSizeComplexScript() { Val = "26" };
            Shading shading304 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties195.Append(fontSize268);
            runProperties195.Append(fontSizeComplexScript268);
            runProperties195.Append(shading304);

            run195.Append(runProperties195);

            paragraph187.Append(paragraphProperties187);
            paragraph187.Append(run195);

            tableCell136.Append(tableCellProperties136);
            tableCell136.Append(paragraph187);

            tableRow58.Append(tableRowProperties58);
            tableRow58.Append(tableCell136);

            TableRow tableRow59 = new TableRow();
            TableRowProperties tableRowProperties59 = new TableRowProperties();

            TableCell tableCell137 = new TableCell();

            TableCellProperties tableCellProperties137 = new TableCellProperties();
            TableCellWidth tableCellWidth137 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan137 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders137 = new TableCellBorders();
            Shading shading305 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties137.Append(tableCellWidth137);
            tableCellProperties137.Append(gridSpan137);
            tableCellProperties137.Append(tableCellBorders137);
            tableCellProperties137.Append(shading305);

            Paragraph paragraph188 = new Paragraph();

            ParagraphProperties paragraphProperties188 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId188 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties188 = new ParagraphMarkRunProperties();

            paragraphProperties188.Append(paragraphStyleId188);
            paragraphProperties188.Append(paragraphMarkRunProperties188);

            Run run196 = new Run();

            RunProperties runProperties196 = new RunProperties();
            Bold bold12 = new Bold();
            FontSize fontSize269 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript269 = new FontSizeComplexScript() { Val = "26" };

            runProperties196.Append(bold12);
            runProperties196.Append(fontSize269);
            runProperties196.Append(fontSizeComplexScript269);
            Text text94 = new Text();
            text94.Text = "1.3. Сведения о персонале объекта (организации):";

            run196.Append(runProperties196);
            run196.Append(text94);

            paragraph188.Append(paragraphProperties188);
            paragraph188.Append(run196);

            tableCell137.Append(tableCellProperties137);
            tableCell137.Append(paragraph188);

            tableRow59.Append(tableRowProperties59);
            tableRow59.Append(tableCell137);

            TableRow tableRow60 = new TableRow();
            TableRowProperties tableRowProperties60 = new TableRowProperties();

            TableCell tableCell138 = new TableCell();

            TableCellProperties tableCellProperties138 = new TableCellProperties();
            TableCellWidth tableCellWidth138 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan138 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders138 = new TableCellBorders();
            TopBorder topBorder29 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder25 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder26 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder25 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder26 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder25 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders138.Append(topBorder29);
            tableCellBorders138.Append(startBorder25);
            tableCellBorders138.Append(bottomBorder26);
            tableCellBorders138.Append(endBorder25);
            tableCellBorders138.Append(insideHorizontalBorder26);
            tableCellBorders138.Append(insideVerticalBorder25);
            Shading shading306 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin25 = new TableCellMargin();
            StartMargin startMargin26 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin25.Append(startMargin26);

            tableCellProperties138.Append(tableCellWidth138);
            tableCellProperties138.Append(gridSpan138);
            tableCellProperties138.Append(tableCellBorders138);
            tableCellProperties138.Append(shading306);
            tableCellProperties138.Append(tableCellMargin25);

            Paragraph paragraph189 = new Paragraph();

            ParagraphProperties paragraphProperties189 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId189 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties189 = new ParagraphMarkRunProperties();

            paragraphProperties189.Append(paragraphStyleId189);
            paragraphProperties189.Append(paragraphMarkRunProperties189);

            Run run197 = new Run();

            RunProperties runProperties197 = new RunProperties();
            RunFonts runFonts1 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize270 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript270 = new FontSizeComplexScript() { Val = "26" };

            runProperties197.Append(runFonts1);
            runProperties197.Append(fontSize270);
            runProperties197.Append(fontSizeComplexScript270);
            Text text95 = new Text();
            text95.Text = "Общая численность – 35 чел.; из них: инженерный состав – 6 чел., сменный персонал – 29 чел., дневной персонал – 2 чел.";

            run197.Append(runProperties197);
            run197.Append(text95);

            paragraph189.Append(paragraphProperties189);
            paragraph189.Append(run197);

            tableCell138.Append(tableCellProperties138);
            tableCell138.Append(paragraph189);

            tableRow60.Append(tableRowProperties60);
            tableRow60.Append(tableCell138);

            TableRow tableRow61 = new TableRow();
            TableRowProperties tableRowProperties61 = new TableRowProperties();

            TableCell tableCell139 = new TableCell();

            TableCellProperties tableCellProperties139 = new TableCellProperties();
            TableCellWidth tableCellWidth139 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan139 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders139 = new TableCellBorders();
            Shading shading307 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties139.Append(tableCellWidth139);
            tableCellProperties139.Append(gridSpan139);
            tableCellProperties139.Append(tableCellBorders139);
            tableCellProperties139.Append(shading307);

            Paragraph paragraph190 = new Paragraph();

            ParagraphProperties paragraphProperties190 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId190 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties190 = new ParagraphMarkRunProperties();

            paragraphProperties190.Append(paragraphStyleId190);
            paragraphProperties190.Append(paragraphMarkRunProperties190);

            Run run198 = new Run();
            RunProperties runProperties198 = new RunProperties();

            run198.Append(runProperties198);

            paragraph190.Append(paragraphProperties190);
            paragraph190.Append(run198);

            tableCell139.Append(tableCellProperties139);
            tableCell139.Append(paragraph190);

            tableRow61.Append(tableRowProperties61);
            tableRow61.Append(tableCell139);

            TableRow tableRow62 = new TableRow();
            TableRowProperties tableRowProperties62 = new TableRowProperties();

            TableCell tableCell140 = new TableCell();

            TableCellProperties tableCellProperties140 = new TableCellProperties();
            TableCellWidth tableCellWidth140 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan140 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders140 = new TableCellBorders();
            Shading shading308 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties140.Append(tableCellWidth140);
            tableCellProperties140.Append(gridSpan140);
            tableCellProperties140.Append(tableCellBorders140);
            tableCellProperties140.Append(shading308);

            Paragraph paragraph191 = new Paragraph();

            ParagraphProperties paragraphProperties191 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId191 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties191 = new ParagraphMarkRunProperties();

            paragraphProperties191.Append(paragraphStyleId191);
            paragraphProperties191.Append(paragraphMarkRunProperties191);

            Run run199 = new Run();

            RunProperties runProperties199 = new RunProperties();
            Bold bold13 = new Bold();
            FontSize fontSize271 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript271 = new FontSizeComplexScript() { Val = "26" };

            runProperties199.Append(bold13);
            runProperties199.Append(fontSize271);
            runProperties199.Append(fontSizeComplexScript271);
            Text text96 = new Text();
            text96.Text = "1.4. Режим работы объектов (организации):";

            run199.Append(runProperties199);
            run199.Append(text96);

            paragraph191.Append(paragraphProperties191);
            paragraph191.Append(run199);

            tableCell140.Append(tableCellProperties140);
            tableCell140.Append(paragraph191);

            tableRow62.Append(tableRowProperties62);
            tableRow62.Append(tableCell140);

            TableRow tableRow63 = new TableRow();
            TableRowProperties tableRowProperties63 = new TableRowProperties();

            TableCell tableCell141 = new TableCell();

            TableCellProperties tableCellProperties141 = new TableCellProperties();
            TableCellWidth tableCellWidth141 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan141 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders141 = new TableCellBorders();
            TopBorder topBorder30 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder26 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder27 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder26 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder27 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder26 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders141.Append(topBorder30);
            tableCellBorders141.Append(startBorder26);
            tableCellBorders141.Append(bottomBorder27);
            tableCellBorders141.Append(endBorder26);
            tableCellBorders141.Append(insideHorizontalBorder27);
            tableCellBorders141.Append(insideVerticalBorder26);
            Shading shading309 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin26 = new TableCellMargin();
            StartMargin startMargin27 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin26.Append(startMargin27);

            tableCellProperties141.Append(tableCellWidth141);
            tableCellProperties141.Append(gridSpan141);
            tableCellProperties141.Append(tableCellBorders141);
            tableCellProperties141.Append(shading309);
            tableCellProperties141.Append(tableCellMargin26);

            Paragraph paragraph192 = new Paragraph();

            ParagraphProperties paragraphProperties192 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId192 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties192 = new ParagraphMarkRunProperties();

            paragraphProperties192.Append(paragraphStyleId192);
            paragraphProperties192.Append(paragraphMarkRunProperties192);

            Run run200 = new Run();

            RunProperties runProperties200 = new RunProperties();
            FontSize fontSize272 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript272 = new FontSizeComplexScript() { Val = "26" };

            runProperties200.Append(fontSize272);
            runProperties200.Append(fontSizeComplexScript272);
            Text text97 = new Text();
            text97.Text = "Режим работы-непрерывный: круглогодичный, односменный, для дежурных смен- двухсменный.";

            run200.Append(runProperties200);
            run200.Append(text97);

            paragraph192.Append(paragraphProperties192);
            paragraph192.Append(run200);

            tableCell141.Append(tableCellProperties141);
            tableCell141.Append(paragraph192);

            tableRow63.Append(tableRowProperties63);
            tableRow63.Append(tableCell141);

            TableRow tableRow64 = new TableRow();
            TableRowProperties tableRowProperties64 = new TableRowProperties();

            TableCell tableCell142 = new TableCell();

            TableCellProperties tableCellProperties142 = new TableCellProperties();
            TableCellWidth tableCellWidth142 = new TableCellWidth() { Width = "5324", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan142 = new GridSpan() { Val = 29 };

            TableCellBorders tableCellBorders142 = new TableCellBorders();
            TopBorder topBorder31 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder27 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder28 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder27 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder28 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder27 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders142.Append(topBorder31);
            tableCellBorders142.Append(startBorder27);
            tableCellBorders142.Append(bottomBorder28);
            tableCellBorders142.Append(endBorder27);
            tableCellBorders142.Append(insideHorizontalBorder28);
            tableCellBorders142.Append(insideVerticalBorder27);
            Shading shading310 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin27 = new TableCellMargin();
            StartMargin startMargin28 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin27.Append(startMargin28);

            tableCellProperties142.Append(tableCellWidth142);
            tableCellProperties142.Append(gridSpan142);
            tableCellProperties142.Append(tableCellBorders142);
            tableCellProperties142.Append(shading310);
            tableCellProperties142.Append(tableCellMargin27);

            Paragraph paragraph193 = new Paragraph();

            ParagraphProperties paragraphProperties193 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId193 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties193 = new ParagraphMarkRunProperties();

            paragraphProperties193.Append(paragraphStyleId193);
            paragraphProperties193.Append(paragraphMarkRunProperties193);

            Run run201 = new Run();

            RunProperties runProperties201 = new RunProperties();
            FontSize fontSize273 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript273 = new FontSizeComplexScript() { Val = "26" };

            runProperties201.Append(fontSize273);
            runProperties201.Append(fontSizeComplexScript273);
            Text text98 = new Text();
            text98.Text = "Максимальная численность работающих";

            run201.Append(runProperties201);
            run201.Append(text98);

            paragraph193.Append(paragraphProperties193);
            paragraph193.Append(run201);

            tableCell142.Append(tableCellProperties142);
            tableCell142.Append(paragraph193);

            TableCell tableCell143 = new TableCell();

            TableCellProperties tableCellProperties143 = new TableCellProperties();
            TableCellWidth tableCellWidth143 = new TableCellWidth() { Width = "2147", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan143 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders143 = new TableCellBorders();
            TopBorder topBorder32 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder28 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder29 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder28 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder29 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder28 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders143.Append(topBorder32);
            tableCellBorders143.Append(startBorder28);
            tableCellBorders143.Append(bottomBorder29);
            tableCellBorders143.Append(endBorder28);
            tableCellBorders143.Append(insideHorizontalBorder29);
            tableCellBorders143.Append(insideVerticalBorder28);
            Shading shading311 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin28 = new TableCellMargin();
            StartMargin startMargin29 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin28.Append(startMargin29);

            tableCellProperties143.Append(tableCellWidth143);
            tableCellProperties143.Append(gridSpan143);
            tableCellProperties143.Append(tableCellBorders143);
            tableCellProperties143.Append(shading311);
            tableCellProperties143.Append(tableCellMargin28);

            Paragraph paragraph194 = new Paragraph();

            ParagraphProperties paragraphProperties194 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId194 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification111 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties194 = new ParagraphMarkRunProperties();

            paragraphProperties194.Append(paragraphStyleId194);
            paragraphProperties194.Append(justification111);
            paragraphProperties194.Append(paragraphMarkRunProperties194);

            Run run202 = new Run();

            RunProperties runProperties202 = new RunProperties();
            FontSize fontSize274 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript274 = new FontSizeComplexScript() { Val = "26" };

            runProperties202.Append(fontSize274);
            runProperties202.Append(fontSizeComplexScript274);
            Text text99 = new Text();
            text99.Text = "В дневное время";

            run202.Append(runProperties202);
            run202.Append(text99);

            paragraph194.Append(paragraphProperties194);
            paragraph194.Append(run202);

            tableCell143.Append(tableCellProperties143);
            tableCell143.Append(paragraph194);

            TableCell tableCell144 = new TableCell();

            TableCellProperties tableCellProperties144 = new TableCellProperties();
            TableCellWidth tableCellWidth144 = new TableCellWidth() { Width = "2164", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan144 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders144 = new TableCellBorders();
            TopBorder topBorder33 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder29 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder30 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder29 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder30 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder29 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders144.Append(topBorder33);
            tableCellBorders144.Append(startBorder29);
            tableCellBorders144.Append(bottomBorder30);
            tableCellBorders144.Append(endBorder29);
            tableCellBorders144.Append(insideHorizontalBorder30);
            tableCellBorders144.Append(insideVerticalBorder29);
            Shading shading312 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin29 = new TableCellMargin();
            StartMargin startMargin30 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin29.Append(startMargin30);

            tableCellProperties144.Append(tableCellWidth144);
            tableCellProperties144.Append(gridSpan144);
            tableCellProperties144.Append(tableCellBorders144);
            tableCellProperties144.Append(shading312);
            tableCellProperties144.Append(tableCellMargin29);

            Paragraph paragraph195 = new Paragraph();

            ParagraphProperties paragraphProperties195 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId195 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification112 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties195 = new ParagraphMarkRunProperties();

            paragraphProperties195.Append(paragraphStyleId195);
            paragraphProperties195.Append(justification112);
            paragraphProperties195.Append(paragraphMarkRunProperties195);

            Run run203 = new Run();

            RunProperties runProperties203 = new RunProperties();
            FontSize fontSize275 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript275 = new FontSizeComplexScript() { Val = "26" };

            runProperties203.Append(fontSize275);
            runProperties203.Append(fontSizeComplexScript275);
            Text text100 = new Text();
            text100.Text = "20 человек";

            run203.Append(runProperties203);
            run203.Append(text100);

            paragraph195.Append(paragraphProperties195);
            paragraph195.Append(run203);

            tableCell144.Append(tableCellProperties144);
            tableCell144.Append(paragraph195);

            tableRow64.Append(tableRowProperties64);
            tableRow64.Append(tableCell142);
            tableRow64.Append(tableCell143);
            tableRow64.Append(tableCell144);

            TableRow tableRow65 = new TableRow();
            TableRowProperties tableRowProperties65 = new TableRowProperties();

            TableCell tableCell145 = new TableCell();

            TableCellProperties tableCellProperties145 = new TableCellProperties();
            TableCellWidth tableCellWidth145 = new TableCellWidth() { Width = "5324", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan145 = new GridSpan() { Val = 29 };

            TableCellBorders tableCellBorders145 = new TableCellBorders();
            TopBorder topBorder34 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder30 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder31 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder30 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder31 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder30 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders145.Append(topBorder34);
            tableCellBorders145.Append(startBorder30);
            tableCellBorders145.Append(bottomBorder31);
            tableCellBorders145.Append(endBorder30);
            tableCellBorders145.Append(insideHorizontalBorder31);
            tableCellBorders145.Append(insideVerticalBorder30);
            Shading shading313 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin30 = new TableCellMargin();
            StartMargin startMargin31 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin30.Append(startMargin31);

            tableCellProperties145.Append(tableCellWidth145);
            tableCellProperties145.Append(gridSpan145);
            tableCellProperties145.Append(tableCellBorders145);
            tableCellProperties145.Append(shading313);
            tableCellProperties145.Append(tableCellMargin30);

            Paragraph paragraph196 = new Paragraph();

            ParagraphProperties paragraphProperties196 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId196 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties196 = new ParagraphMarkRunProperties();
            FontSize fontSize276 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript276 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties196.Append(fontSize276);
            paragraphMarkRunProperties196.Append(fontSizeComplexScript276);

            paragraphProperties196.Append(paragraphStyleId196);
            paragraphProperties196.Append(paragraphMarkRunProperties196);

            Run run204 = new Run();

            RunProperties runProperties204 = new RunProperties();
            FontSize fontSize277 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript277 = new FontSizeComplexScript() { Val = "26" };

            runProperties204.Append(fontSize277);
            runProperties204.Append(fontSizeComplexScript277);

            run204.Append(runProperties204);

            paragraph196.Append(paragraphProperties196);
            paragraph196.Append(run204);

            tableCell145.Append(tableCellProperties145);
            tableCell145.Append(paragraph196);

            TableCell tableCell146 = new TableCell();

            TableCellProperties tableCellProperties146 = new TableCellProperties();
            TableCellWidth tableCellWidth146 = new TableCellWidth() { Width = "2147", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan146 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders146 = new TableCellBorders();
            TopBorder topBorder35 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder31 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder32 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder31 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder32 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder31 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders146.Append(topBorder35);
            tableCellBorders146.Append(startBorder31);
            tableCellBorders146.Append(bottomBorder32);
            tableCellBorders146.Append(endBorder31);
            tableCellBorders146.Append(insideHorizontalBorder32);
            tableCellBorders146.Append(insideVerticalBorder31);
            Shading shading314 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin31 = new TableCellMargin();
            StartMargin startMargin32 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin31.Append(startMargin32);

            tableCellProperties146.Append(tableCellWidth146);
            tableCellProperties146.Append(gridSpan146);
            tableCellProperties146.Append(tableCellBorders146);
            tableCellProperties146.Append(shading314);
            tableCellProperties146.Append(tableCellMargin31);

            Paragraph paragraph197 = new Paragraph();

            ParagraphProperties paragraphProperties197 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId197 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification113 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties197 = new ParagraphMarkRunProperties();

            paragraphProperties197.Append(paragraphStyleId197);
            paragraphProperties197.Append(justification113);
            paragraphProperties197.Append(paragraphMarkRunProperties197);

            Run run205 = new Run();

            RunProperties runProperties205 = new RunProperties();
            FontSize fontSize278 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript278 = new FontSizeComplexScript() { Val = "26" };

            runProperties205.Append(fontSize278);
            runProperties205.Append(fontSizeComplexScript278);
            Text text101 = new Text();
            text101.Text = "В ночное время";

            run205.Append(runProperties205);
            run205.Append(text101);

            paragraph197.Append(paragraphProperties197);
            paragraph197.Append(run205);

            tableCell146.Append(tableCellProperties146);
            tableCell146.Append(paragraph197);

            TableCell tableCell147 = new TableCell();

            TableCellProperties tableCellProperties147 = new TableCellProperties();
            TableCellWidth tableCellWidth147 = new TableCellWidth() { Width = "2164", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan147 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders147 = new TableCellBorders();
            TopBorder topBorder36 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder32 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder33 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder32 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder33 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder32 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders147.Append(topBorder36);
            tableCellBorders147.Append(startBorder32);
            tableCellBorders147.Append(bottomBorder33);
            tableCellBorders147.Append(endBorder32);
            tableCellBorders147.Append(insideHorizontalBorder33);
            tableCellBorders147.Append(insideVerticalBorder32);
            Shading shading315 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin32 = new TableCellMargin();
            StartMargin startMargin33 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin32.Append(startMargin33);

            tableCellProperties147.Append(tableCellWidth147);
            tableCellProperties147.Append(gridSpan147);
            tableCellProperties147.Append(tableCellBorders147);
            tableCellProperties147.Append(shading315);
            tableCellProperties147.Append(tableCellMargin32);

            Paragraph paragraph198 = new Paragraph();

            ParagraphProperties paragraphProperties198 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId198 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification114 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties198 = new ParagraphMarkRunProperties();

            paragraphProperties198.Append(paragraphStyleId198);
            paragraphProperties198.Append(justification114);
            paragraphProperties198.Append(paragraphMarkRunProperties198);

            Run run206 = new Run();

            RunProperties runProperties206 = new RunProperties();
            FontSize fontSize279 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript279 = new FontSizeComplexScript() { Val = "26" };

            runProperties206.Append(fontSize279);
            runProperties206.Append(fontSizeComplexScript279);
            Text text102 = new Text();
            text102.Text = "8 человек";

            run206.Append(runProperties206);
            run206.Append(text102);

            paragraph198.Append(paragraphProperties198);
            paragraph198.Append(run206);

            tableCell147.Append(tableCellProperties147);
            tableCell147.Append(paragraph198);

            tableRow65.Append(tableRowProperties65);
            tableRow65.Append(tableCell145);
            tableRow65.Append(tableCell146);
            tableRow65.Append(tableCell147);

            TableRow tableRow66 = new TableRow();
            TableRowProperties tableRowProperties66 = new TableRowProperties();

            TableCell tableCell148 = new TableCell();

            TableCellProperties tableCellProperties148 = new TableCellProperties();
            TableCellWidth tableCellWidth148 = new TableCellWidth() { Width = "5324", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan148 = new GridSpan() { Val = 29 };

            TableCellBorders tableCellBorders148 = new TableCellBorders();
            TopBorder topBorder37 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder33 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder34 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder33 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder34 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder33 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders148.Append(topBorder37);
            tableCellBorders148.Append(startBorder33);
            tableCellBorders148.Append(bottomBorder34);
            tableCellBorders148.Append(endBorder33);
            tableCellBorders148.Append(insideHorizontalBorder34);
            tableCellBorders148.Append(insideVerticalBorder33);
            Shading shading316 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin33 = new TableCellMargin();
            StartMargin startMargin34 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin33.Append(startMargin34);

            tableCellProperties148.Append(tableCellWidth148);
            tableCellProperties148.Append(gridSpan148);
            tableCellProperties148.Append(tableCellBorders148);
            tableCellProperties148.Append(shading316);
            tableCellProperties148.Append(tableCellMargin33);

            Paragraph paragraph199 = new Paragraph();

            ParagraphProperties paragraphProperties199 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId199 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs1 = new Tabs();
            TabStop tabStop1 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop2 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop3 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop4 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop5 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop6 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop7 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop8 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop9 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop10 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop11 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop12 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop13 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop14 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop15 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop16 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop17 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop18 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop19 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop20 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop21 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop22 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop23 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop24 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop25 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs1.Append(tabStop1);
            tabs1.Append(tabStop2);
            tabs1.Append(tabStop3);
            tabs1.Append(tabStop4);
            tabs1.Append(tabStop5);
            tabs1.Append(tabStop6);
            tabs1.Append(tabStop7);
            tabs1.Append(tabStop8);
            tabs1.Append(tabStop9);
            tabs1.Append(tabStop10);
            tabs1.Append(tabStop11);
            tabs1.Append(tabStop12);
            tabs1.Append(tabStop13);
            tabs1.Append(tabStop14);
            tabs1.Append(tabStop15);
            tabs1.Append(tabStop16);
            tabs1.Append(tabStop17);
            tabs1.Append(tabStop18);
            tabs1.Append(tabStop19);
            tabs1.Append(tabStop20);
            tabs1.Append(tabStop21);
            tabs1.Append(tabStop22);
            tabs1.Append(tabStop23);
            tabs1.Append(tabStop24);
            tabs1.Append(tabStop25);
            ParagraphMarkRunProperties paragraphMarkRunProperties199 = new ParagraphMarkRunProperties();

            paragraphProperties199.Append(paragraphStyleId199);
            paragraphProperties199.Append(tabs1);
            paragraphProperties199.Append(paragraphMarkRunProperties199);

            Run run207 = new Run();

            RunProperties runProperties207 = new RunProperties();
            FontSize fontSize280 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript280 = new FontSizeComplexScript() { Val = "26" };

            runProperties207.Append(fontSize280);
            runProperties207.Append(fontSizeComplexScript280);
            Text text103 = new Text();
            text103.Text = "Численность работающих на элементах";

            run207.Append(runProperties207);
            run207.Append(text103);

            paragraph199.Append(paragraphProperties199);
            paragraph199.Append(run207);

            tableCell148.Append(tableCellProperties148);
            tableCell148.Append(paragraph199);

            TableCell tableCell149 = new TableCell();

            TableCellProperties tableCellProperties149 = new TableCellProperties();
            TableCellWidth tableCellWidth149 = new TableCellWidth() { Width = "4311", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan149 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders149 = new TableCellBorders();
            TopBorder topBorder38 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder34 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder35 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder34 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder35 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder34 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders149.Append(topBorder38);
            tableCellBorders149.Append(startBorder34);
            tableCellBorders149.Append(bottomBorder35);
            tableCellBorders149.Append(endBorder34);
            tableCellBorders149.Append(insideHorizontalBorder35);
            tableCellBorders149.Append(insideVerticalBorder34);
            Shading shading317 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin34 = new TableCellMargin();
            StartMargin startMargin35 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin34.Append(startMargin35);

            tableCellProperties149.Append(tableCellWidth149);
            tableCellProperties149.Append(gridSpan149);
            tableCellProperties149.Append(tableCellBorders149);
            tableCellProperties149.Append(shading317);
            tableCellProperties149.Append(tableCellMargin34);

            Paragraph paragraph200 = new Paragraph();

            ParagraphProperties paragraphProperties200 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId200 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs2 = new Tabs();
            TabStop tabStop26 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop27 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop28 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop29 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop30 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop31 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop32 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop33 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop34 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop35 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop36 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop37 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop38 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop39 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop40 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop41 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop42 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop43 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop44 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop45 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop46 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop47 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop48 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop49 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop50 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs2.Append(tabStop26);
            tabs2.Append(tabStop27);
            tabs2.Append(tabStop28);
            tabs2.Append(tabStop29);
            tabs2.Append(tabStop30);
            tabs2.Append(tabStop31);
            tabs2.Append(tabStop32);
            tabs2.Append(tabStop33);
            tabs2.Append(tabStop34);
            tabs2.Append(tabStop35);
            tabs2.Append(tabStop36);
            tabs2.Append(tabStop37);
            tabs2.Append(tabStop38);
            tabs2.Append(tabStop39);
            tabs2.Append(tabStop40);
            tabs2.Append(tabStop41);
            tabs2.Append(tabStop42);
            tabs2.Append(tabStop43);
            tabs2.Append(tabStop44);
            tabs2.Append(tabStop45);
            tabs2.Append(tabStop46);
            tabs2.Append(tabStop47);
            tabs2.Append(tabStop48);
            tabs2.Append(tabStop49);
            tabs2.Append(tabStop50);
            Justification justification115 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties200 = new ParagraphMarkRunProperties();

            paragraphProperties200.Append(paragraphStyleId200);
            paragraphProperties200.Append(tabs2);
            paragraphProperties200.Append(justification115);
            paragraphProperties200.Append(paragraphMarkRunProperties200);

            Run run208 = new Run();

            RunProperties runProperties208 = new RunProperties();
            FontSize fontSize281 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript281 = new FontSizeComplexScript() { Val = "26" };

            runProperties208.Append(fontSize281);
            runProperties208.Append(fontSizeComplexScript281);
            Text text104 = new Text();
            text104.Text = "0 чел.";

            run208.Append(runProperties208);
            run208.Append(text104);

            paragraph200.Append(paragraphProperties200);
            paragraph200.Append(run208);

            tableCell149.Append(tableCellProperties149);
            tableCell149.Append(paragraph200);

            tableRow66.Append(tableRowProperties66);
            tableRow66.Append(tableCell148);
            tableRow66.Append(tableCell149);

            TableRow tableRow67 = new TableRow();
            TableRowProperties tableRowProperties67 = new TableRowProperties();

            TableCell tableCell150 = new TableCell();

            TableCellProperties tableCellProperties150 = new TableCellProperties();
            TableCellWidth tableCellWidth150 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan150 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders150 = new TableCellBorders();
            TopBorder topBorder39 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders150.Append(topBorder39);
            Shading shading318 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties150.Append(tableCellWidth150);
            tableCellProperties150.Append(gridSpan150);
            tableCellProperties150.Append(tableCellBorders150);
            tableCellProperties150.Append(shading318);

            Paragraph paragraph201 = new Paragraph();

            ParagraphProperties paragraphProperties201 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId201 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties201 = new ParagraphMarkRunProperties();
            FontSize fontSize282 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript282 = new FontSizeComplexScript() { Val = "26" };
            Shading shading319 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties201.Append(fontSize282);
            paragraphMarkRunProperties201.Append(fontSizeComplexScript282);
            paragraphMarkRunProperties201.Append(shading319);

            paragraphProperties201.Append(paragraphStyleId201);
            paragraphProperties201.Append(paragraphMarkRunProperties201);

            Run run209 = new Run();

            RunProperties runProperties209 = new RunProperties();
            FontSize fontSize283 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript283 = new FontSizeComplexScript() { Val = "26" };
            Shading shading320 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties209.Append(fontSize283);
            runProperties209.Append(fontSizeComplexScript283);
            runProperties209.Append(shading320);

            run209.Append(runProperties209);

            paragraph201.Append(paragraphProperties201);
            paragraph201.Append(run209);

            tableCell150.Append(tableCellProperties150);
            tableCell150.Append(paragraph201);

            tableRow67.Append(tableRowProperties67);
            tableRow67.Append(tableCell150);

            TableRow tableRow68 = new TableRow();
            TableRowProperties tableRowProperties68 = new TableRowProperties();

            TableCell tableCell151 = new TableCell();

            TableCellProperties tableCellProperties151 = new TableCellProperties();
            TableCellWidth tableCellWidth151 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan151 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders151 = new TableCellBorders();
            Shading shading321 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties151.Append(tableCellWidth151);
            tableCellProperties151.Append(gridSpan151);
            tableCellProperties151.Append(tableCellBorders151);
            tableCellProperties151.Append(shading321);

            Paragraph paragraph202 = new Paragraph();

            ParagraphProperties paragraphProperties202 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId202 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties202 = new ParagraphMarkRunProperties();

            paragraphProperties202.Append(paragraphStyleId202);
            paragraphProperties202.Append(paragraphMarkRunProperties202);

            Run run210 = new Run();

            RunProperties runProperties210 = new RunProperties();
            RunFonts runFonts2 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Bold bold14 = new Bold();
            FontSize fontSize284 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript284 = new FontSizeComplexScript() { Val = "26" };

            runProperties210.Append(runFonts2);
            runProperties210.Append(bold14);
            runProperties210.Append(fontSize284);
            runProperties210.Append(fontSizeComplexScript284);
            Text text105 = new Text();
            text105.Text = "1.5. Первоначальная балансовая стоимость основных";

            run210.Append(runProperties210);
            run210.Append(text105);

            Run run211 = new Run();

            RunProperties runProperties211 = new RunProperties();
            Bold bold15 = new Bold();
            FontSize fontSize285 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript285 = new FontSizeComplexScript() { Val = "26" };

            runProperties211.Append(bold15);
            runProperties211.Append(fontSize285);
            runProperties211.Append(fontSizeComplexScript285);
            Text text106 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text106.Text = " производственных фондов:";

            run211.Append(runProperties211);
            run211.Append(text106);

            paragraph202.Append(paragraphProperties202);
            paragraph202.Append(run210);
            paragraph202.Append(run211);

            tableCell151.Append(tableCellProperties151);
            tableCell151.Append(paragraph202);

            tableRow68.Append(tableRowProperties68);
            tableRow68.Append(tableCell151);

            TableRow tableRow69 = new TableRow();
            TableRowProperties tableRowProperties69 = new TableRowProperties();

            TableCell tableCell152 = new TableCell();

            TableCellProperties tableCellProperties152 = new TableCellProperties();
            TableCellWidth tableCellWidth152 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan152 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders152 = new TableCellBorders();
            TopBorder topBorder40 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder36 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder36 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders152.Append(topBorder40);
            tableCellBorders152.Append(bottomBorder36);
            tableCellBorders152.Append(insideHorizontalBorder36);
            Shading shading322 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties152.Append(tableCellWidth152);
            tableCellProperties152.Append(gridSpan152);
            tableCellProperties152.Append(tableCellBorders152);
            tableCellProperties152.Append(shading322);

            Paragraph paragraph203 = new Paragraph();

            ParagraphProperties paragraphProperties203 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId203 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties203 = new ParagraphMarkRunProperties();
            RunFonts runFonts3 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Bold bold16 = new Bold();
            Bold bold17 = new Bold();
            FontSize fontSize286 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript286 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties203.Append(runFonts3);
            paragraphMarkRunProperties203.Append(bold16);
            paragraphMarkRunProperties203.Append(bold17);
            paragraphMarkRunProperties203.Append(fontSize286);
            paragraphMarkRunProperties203.Append(fontSizeComplexScript286);

            paragraphProperties203.Append(paragraphStyleId203);
            paragraphProperties203.Append(paragraphMarkRunProperties203);

            Run run212 = new Run();

            RunProperties runProperties212 = new RunProperties();
            RunFonts runFonts4 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Bold bold18 = new Bold();
            FontSize fontSize287 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript287 = new FontSizeComplexScript() { Val = "26" };

            runProperties212.Append(runFonts4);
            runProperties212.Append(bold18);
            runProperties212.Append(fontSize287);
            runProperties212.Append(fontSizeComplexScript287);

            run212.Append(runProperties212);

            paragraph203.Append(paragraphProperties203);
            paragraph203.Append(run212);

            tableCell152.Append(tableCellProperties152);
            tableCell152.Append(paragraph203);

            tableRow69.Append(tableRowProperties69);
            tableRow69.Append(tableCell152);

            TableRow tableRow70 = new TableRow();
            TableRowProperties tableRowProperties70 = new TableRowProperties();

            TableCell tableCell153 = new TableCell();

            TableCellProperties tableCellProperties153 = new TableCellProperties();
            TableCellWidth tableCellWidth153 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan153 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders153 = new TableCellBorders();
            TopBorder topBorder41 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder35 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder37 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder35 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder37 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder35 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders153.Append(topBorder41);
            tableCellBorders153.Append(startBorder35);
            tableCellBorders153.Append(bottomBorder37);
            tableCellBorders153.Append(endBorder35);
            tableCellBorders153.Append(insideHorizontalBorder37);
            tableCellBorders153.Append(insideVerticalBorder35);
            Shading shading323 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin35 = new TableCellMargin();
            StartMargin startMargin36 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin35.Append(startMargin36);

            tableCellProperties153.Append(tableCellWidth153);
            tableCellProperties153.Append(gridSpan153);
            tableCellProperties153.Append(tableCellBorders153);
            tableCellProperties153.Append(shading323);
            tableCellProperties153.Append(tableCellMargin35);

            Paragraph paragraph204 = new Paragraph();

            ParagraphProperties paragraphProperties204 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId204 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs3 = new Tabs();
            TabStop tabStop51 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop52 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop53 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop54 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop55 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop56 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop57 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop58 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop59 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop60 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop61 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop62 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop63 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop64 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop65 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop66 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop67 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop68 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop69 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop70 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop71 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop72 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop73 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop74 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop75 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs3.Append(tabStop51);
            tabs3.Append(tabStop52);
            tabs3.Append(tabStop53);
            tabs3.Append(tabStop54);
            tabs3.Append(tabStop55);
            tabs3.Append(tabStop56);
            tabs3.Append(tabStop57);
            tabs3.Append(tabStop58);
            tabs3.Append(tabStop59);
            tabs3.Append(tabStop60);
            tabs3.Append(tabStop61);
            tabs3.Append(tabStop62);
            tabs3.Append(tabStop63);
            tabs3.Append(tabStop64);
            tabs3.Append(tabStop65);
            tabs3.Append(tabStop66);
            tabs3.Append(tabStop67);
            tabs3.Append(tabStop68);
            tabs3.Append(tabStop69);
            tabs3.Append(tabStop70);
            tabs3.Append(tabStop71);
            tabs3.Append(tabStop72);
            tabs3.Append(tabStop73);
            tabs3.Append(tabStop74);
            tabs3.Append(tabStop75);
            Indentation indentation30 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties204 = new ParagraphMarkRunProperties();

            paragraphProperties204.Append(paragraphStyleId204);
            paragraphProperties204.Append(tabs3);
            paragraphProperties204.Append(indentation30);
            paragraphProperties204.Append(paragraphMarkRunProperties204);

            Run run213 = new Run();

            RunProperties runProperties213 = new RunProperties();
            FontSize fontSize288 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript288 = new FontSizeComplexScript() { Val = "26" };

            runProperties213.Append(fontSize288);
            runProperties213.Append(fontSizeComplexScript288);
            Text text107 = new Text();
            text107.Text = "По состоянию на 30.06.2015г.:";

            run213.Append(runProperties213);
            run213.Append(text107);

            paragraph204.Append(paragraphProperties204);
            paragraph204.Append(run213);

            Paragraph paragraph205 = new Paragraph();

            ParagraphProperties paragraphProperties205 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId205 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs4 = new Tabs();
            TabStop tabStop76 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop77 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop78 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop79 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop80 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop81 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop82 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop83 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop84 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop85 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop86 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop87 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop88 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop89 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop90 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop91 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop92 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop93 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop94 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop95 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop96 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop97 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop98 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop99 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop100 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs4.Append(tabStop76);
            tabs4.Append(tabStop77);
            tabs4.Append(tabStop78);
            tabs4.Append(tabStop79);
            tabs4.Append(tabStop80);
            tabs4.Append(tabStop81);
            tabs4.Append(tabStop82);
            tabs4.Append(tabStop83);
            tabs4.Append(tabStop84);
            tabs4.Append(tabStop85);
            tabs4.Append(tabStop86);
            tabs4.Append(tabStop87);
            tabs4.Append(tabStop88);
            tabs4.Append(tabStop89);
            tabs4.Append(tabStop90);
            tabs4.Append(tabStop91);
            tabs4.Append(tabStop92);
            tabs4.Append(tabStop93);
            tabs4.Append(tabStop94);
            tabs4.Append(tabStop95);
            tabs4.Append(tabStop96);
            tabs4.Append(tabStop97);
            tabs4.Append(tabStop98);
            tabs4.Append(tabStop99);
            tabs4.Append(tabStop100);
            Indentation indentation31 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties205 = new ParagraphMarkRunProperties();

            paragraphProperties205.Append(paragraphStyleId205);
            paragraphProperties205.Append(tabs4);
            paragraphProperties205.Append(indentation31);
            paragraphProperties205.Append(paragraphMarkRunProperties205);

            Run run214 = new Run();

            RunProperties runProperties214 = new RunProperties();
            FontSize fontSize289 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript289 = new FontSizeComplexScript() { Val = "26" };

            runProperties214.Append(fontSize289);
            runProperties214.Append(fontSizeComplexScript289);
            Text text108 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text108.Text = "- суммарная первоначальная балансовая стоимость основных производственных фондов (активов) объекта ";

            run214.Append(runProperties214);
            run214.Append(text108);

            paragraph205.Append(paragraphProperties205);
            paragraph205.Append(run214);

            Paragraph paragraph206 = new Paragraph();

            ParagraphProperties paragraphProperties206 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId206 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs5 = new Tabs();
            TabStop tabStop101 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop102 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop103 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop104 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop105 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop106 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop107 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop108 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop109 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop110 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop111 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop112 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop113 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop114 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop115 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop116 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop117 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop118 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop119 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop120 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop121 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop122 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop123 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop124 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop125 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs5.Append(tabStop101);
            tabs5.Append(tabStop102);
            tabs5.Append(tabStop103);
            tabs5.Append(tabStop104);
            tabs5.Append(tabStop105);
            tabs5.Append(tabStop106);
            tabs5.Append(tabStop107);
            tabs5.Append(tabStop108);
            tabs5.Append(tabStop109);
            tabs5.Append(tabStop110);
            tabs5.Append(tabStop111);
            tabs5.Append(tabStop112);
            tabs5.Append(tabStop113);
            tabs5.Append(tabStop114);
            tabs5.Append(tabStop115);
            tabs5.Append(tabStop116);
            tabs5.Append(tabStop117);
            tabs5.Append(tabStop118);
            tabs5.Append(tabStop119);
            tabs5.Append(tabStop120);
            tabs5.Append(tabStop121);
            tabs5.Append(tabStop122);
            tabs5.Append(tabStop123);
            tabs5.Append(tabStop124);
            tabs5.Append(tabStop125);
            Indentation indentation32 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties206 = new ParagraphMarkRunProperties();

            paragraphProperties206.Append(paragraphStyleId206);
            paragraphProperties206.Append(tabs5);
            paragraphProperties206.Append(indentation32);
            paragraphProperties206.Append(paragraphMarkRunProperties206);

            Run run215 = new Run();

            RunProperties runProperties215 = new RunProperties();
            FontSize fontSize290 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript290 = new FontSizeComplexScript() { Val = "26" };

            runProperties215.Append(fontSize290);
            runProperties215.Append(fontSizeComplexScript290);
            Text text109 = new Text();
            text109.Text = "составляет 1785704,71 тыс. руб.;";

            run215.Append(runProperties215);
            run215.Append(text109);

            paragraph206.Append(paragraphProperties206);
            paragraph206.Append(run215);

            Paragraph paragraph207 = new Paragraph();

            ParagraphProperties paragraphProperties207 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId207 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs6 = new Tabs();
            TabStop tabStop126 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop127 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop128 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop129 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop130 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop131 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop132 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop133 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop134 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop135 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop136 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop137 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop138 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop139 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop140 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop141 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop142 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop143 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop144 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop145 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop146 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop147 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop148 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop149 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop150 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs6.Append(tabStop126);
            tabs6.Append(tabStop127);
            tabs6.Append(tabStop128);
            tabs6.Append(tabStop129);
            tabs6.Append(tabStop130);
            tabs6.Append(tabStop131);
            tabs6.Append(tabStop132);
            tabs6.Append(tabStop133);
            tabs6.Append(tabStop134);
            tabs6.Append(tabStop135);
            tabs6.Append(tabStop136);
            tabs6.Append(tabStop137);
            tabs6.Append(tabStop138);
            tabs6.Append(tabStop139);
            tabs6.Append(tabStop140);
            tabs6.Append(tabStop141);
            tabs6.Append(tabStop142);
            tabs6.Append(tabStop143);
            tabs6.Append(tabStop144);
            tabs6.Append(tabStop145);
            tabs6.Append(tabStop146);
            tabs6.Append(tabStop147);
            tabs6.Append(tabStop148);
            tabs6.Append(tabStop149);
            tabs6.Append(tabStop150);
            Indentation indentation33 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties207 = new ParagraphMarkRunProperties();

            paragraphProperties207.Append(paragraphStyleId207);
            paragraphProperties207.Append(tabs6);
            paragraphProperties207.Append(indentation33);
            paragraphProperties207.Append(paragraphMarkRunProperties207);

            Run run216 = new Run();

            RunProperties runProperties216 = new RunProperties();
            FontSize fontSize291 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript291 = new FontSizeComplexScript() { Val = "26" };

            runProperties216.Append(fontSize291);
            runProperties216.Append(fontSizeComplexScript291);
            Text text110 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text110.Text = "- суммарная остаточная стоимость основных производственных фондов (активов) объекта ";

            run216.Append(runProperties216);
            run216.Append(text110);

            paragraph207.Append(paragraphProperties207);
            paragraph207.Append(run216);

            Paragraph paragraph208 = new Paragraph();

            ParagraphProperties paragraphProperties208 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId208 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs7 = new Tabs();
            TabStop tabStop151 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop152 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop153 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop154 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop155 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop156 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop157 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop158 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop159 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop160 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop161 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop162 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop163 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop164 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop165 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop166 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop167 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop168 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop169 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop170 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop171 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop172 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop173 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop174 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop175 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs7.Append(tabStop151);
            tabs7.Append(tabStop152);
            tabs7.Append(tabStop153);
            tabs7.Append(tabStop154);
            tabs7.Append(tabStop155);
            tabs7.Append(tabStop156);
            tabs7.Append(tabStop157);
            tabs7.Append(tabStop158);
            tabs7.Append(tabStop159);
            tabs7.Append(tabStop160);
            tabs7.Append(tabStop161);
            tabs7.Append(tabStop162);
            tabs7.Append(tabStop163);
            tabs7.Append(tabStop164);
            tabs7.Append(tabStop165);
            tabs7.Append(tabStop166);
            tabs7.Append(tabStop167);
            tabs7.Append(tabStop168);
            tabs7.Append(tabStop169);
            tabs7.Append(tabStop170);
            tabs7.Append(tabStop171);
            tabs7.Append(tabStop172);
            tabs7.Append(tabStop173);
            tabs7.Append(tabStop174);
            tabs7.Append(tabStop175);
            Indentation indentation34 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties208 = new ParagraphMarkRunProperties();

            paragraphProperties208.Append(paragraphStyleId208);
            paragraphProperties208.Append(tabs7);
            paragraphProperties208.Append(indentation34);
            paragraphProperties208.Append(paragraphMarkRunProperties208);

            Run run217 = new Run();

            RunProperties runProperties217 = new RunProperties();
            FontSize fontSize292 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript292 = new FontSizeComplexScript() { Val = "26" };

            runProperties217.Append(fontSize292);
            runProperties217.Append(fontSizeComplexScript292);
            Text text111 = new Text();
            text111.Text = "составляет 1196380,68 тыс. руб., в том числе:";

            run217.Append(runProperties217);
            run217.Append(text111);

            paragraph208.Append(paragraphProperties208);
            paragraph208.Append(run217);

            tableCell153.Append(tableCellProperties153);
            tableCell153.Append(paragraph204);
            tableCell153.Append(paragraph205);
            tableCell153.Append(paragraph206);
            tableCell153.Append(paragraph207);
            tableCell153.Append(paragraph208);

            tableRow70.Append(tableRowProperties70);
            tableRow70.Append(tableCell153);

            TableRow tableRow71 = new TableRow();
            TableRowProperties tableRowProperties71 = new TableRowProperties();

            TableCell tableCell154 = new TableCell();

            TableCellProperties tableCellProperties154 = new TableCellProperties();
            TableCellWidth tableCellWidth154 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan154 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders154 = new TableCellBorders();
            TopBorder topBorder42 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders154.Append(topBorder42);
            Shading shading324 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties154.Append(tableCellWidth154);
            tableCellProperties154.Append(gridSpan154);
            tableCellProperties154.Append(tableCellBorders154);
            tableCellProperties154.Append(shading324);

            Paragraph paragraph209 = new Paragraph();

            ParagraphProperties paragraphProperties209 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId209 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs8 = new Tabs();
            TabStop tabStop176 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop177 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop178 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop179 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop180 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop181 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop182 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop183 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop184 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop185 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop186 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop187 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop188 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop189 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop190 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop191 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop192 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop193 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop194 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop195 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop196 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop197 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop198 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop199 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop200 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs8.Append(tabStop176);
            tabs8.Append(tabStop177);
            tabs8.Append(tabStop178);
            tabs8.Append(tabStop179);
            tabs8.Append(tabStop180);
            tabs8.Append(tabStop181);
            tabs8.Append(tabStop182);
            tabs8.Append(tabStop183);
            tabs8.Append(tabStop184);
            tabs8.Append(tabStop185);
            tabs8.Append(tabStop186);
            tabs8.Append(tabStop187);
            tabs8.Append(tabStop188);
            tabs8.Append(tabStop189);
            tabs8.Append(tabStop190);
            tabs8.Append(tabStop191);
            tabs8.Append(tabStop192);
            tabs8.Append(tabStop193);
            tabs8.Append(tabStop194);
            tabs8.Append(tabStop195);
            tabs8.Append(tabStop196);
            tabs8.Append(tabStop197);
            tabs8.Append(tabStop198);
            tabs8.Append(tabStop199);
            tabs8.Append(tabStop200);
            Justification justification116 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties209 = new ParagraphMarkRunProperties();
            FontSize fontSize293 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript293 = new FontSizeComplexScript() { Val = "26" };
            Shading shading325 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties209.Append(fontSize293);
            paragraphMarkRunProperties209.Append(fontSizeComplexScript293);
            paragraphMarkRunProperties209.Append(shading325);

            paragraphProperties209.Append(paragraphStyleId209);
            paragraphProperties209.Append(tabs8);
            paragraphProperties209.Append(justification116);
            paragraphProperties209.Append(paragraphMarkRunProperties209);

            Run run218 = new Run();

            RunProperties runProperties218 = new RunProperties();
            FontSize fontSize294 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript294 = new FontSizeComplexScript() { Val = "26" };
            Shading shading326 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties218.Append(fontSize294);
            runProperties218.Append(fontSizeComplexScript294);
            runProperties218.Append(shading326);

            run218.Append(runProperties218);

            paragraph209.Append(paragraphProperties209);
            paragraph209.Append(run218);

            tableCell154.Append(tableCellProperties154);
            tableCell154.Append(paragraph209);

            tableRow71.Append(tableRowProperties71);
            tableRow71.Append(tableCell154);

            TableRow tableRow72 = new TableRow();
            TableRowProperties tableRowProperties72 = new TableRowProperties();

            TableCell tableCell155 = new TableCell();

            TableCellProperties tableCellProperties155 = new TableCellProperties();
            TableCellWidth tableCellWidth155 = new TableCellWidth() { Width = "636", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan155 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders155 = new TableCellBorders();
            TopBorder topBorder43 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder36 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder36 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder36 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders155.Append(topBorder43);
            tableCellBorders155.Append(startBorder36);
            tableCellBorders155.Append(endBorder36);
            tableCellBorders155.Append(insideVerticalBorder36);
            Shading shading327 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin36 = new TableCellMargin();
            StartMargin startMargin37 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin36.Append(startMargin37);

            tableCellProperties155.Append(tableCellWidth155);
            tableCellProperties155.Append(gridSpan155);
            tableCellProperties155.Append(tableCellBorders155);
            tableCellProperties155.Append(shading327);
            tableCellProperties155.Append(tableCellMargin36);

            Paragraph paragraph210 = new Paragraph();

            ParagraphProperties paragraphProperties210 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId210 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs9 = new Tabs();
            TabStop tabStop201 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop202 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop203 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop204 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop205 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop206 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop207 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop208 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop209 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop210 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop211 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop212 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop213 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop214 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop215 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop216 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop217 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop218 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop219 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop220 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop221 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop222 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop223 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop224 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop225 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs9.Append(tabStop201);
            tabs9.Append(tabStop202);
            tabs9.Append(tabStop203);
            tabs9.Append(tabStop204);
            tabs9.Append(tabStop205);
            tabs9.Append(tabStop206);
            tabs9.Append(tabStop207);
            tabs9.Append(tabStop208);
            tabs9.Append(tabStop209);
            tabs9.Append(tabStop210);
            tabs9.Append(tabStop211);
            tabs9.Append(tabStop212);
            tabs9.Append(tabStop213);
            tabs9.Append(tabStop214);
            tabs9.Append(tabStop215);
            tabs9.Append(tabStop216);
            tabs9.Append(tabStop217);
            tabs9.Append(tabStop218);
            tabs9.Append(tabStop219);
            tabs9.Append(tabStop220);
            tabs9.Append(tabStop221);
            tabs9.Append(tabStop222);
            tabs9.Append(tabStop223);
            tabs9.Append(tabStop224);
            tabs9.Append(tabStop225);
            Justification justification117 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties210 = new ParagraphMarkRunProperties();

            paragraphProperties210.Append(paragraphStyleId210);
            paragraphProperties210.Append(tabs9);
            paragraphProperties210.Append(justification117);
            paragraphProperties210.Append(paragraphMarkRunProperties210);

            Run run219 = new Run();

            RunProperties runProperties219 = new RunProperties();
            FontSize fontSize295 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript295 = new FontSizeComplexScript() { Val = "26" };

            runProperties219.Append(fontSize295);
            runProperties219.Append(fontSizeComplexScript295);
            Text text112 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text112.Text = "№ ";

            run219.Append(runProperties219);
            run219.Append(text112);

            Run run220 = new Run();

            RunProperties runProperties220 = new RunProperties();
            FontSize fontSize296 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript296 = new FontSizeComplexScript() { Val = "26" };

            runProperties220.Append(fontSize296);
            runProperties220.Append(fontSizeComplexScript296);
            Text text113 = new Text();
            text113.Text = "п/п";

            run220.Append(runProperties220);
            run220.Append(text113);

            paragraph210.Append(paragraphProperties210);
            paragraph210.Append(run219);
            paragraph210.Append(run220);

            tableCell155.Append(tableCellProperties155);
            tableCell155.Append(paragraph210);

            TableCell tableCell156 = new TableCell();

            TableCellProperties tableCellProperties156 = new TableCellProperties();
            TableCellWidth tableCellWidth156 = new TableCellWidth() { Width = "3328", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan156 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders156 = new TableCellBorders();
            TopBorder topBorder44 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder37 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder37 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder37 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders156.Append(topBorder44);
            tableCellBorders156.Append(startBorder37);
            tableCellBorders156.Append(endBorder37);
            tableCellBorders156.Append(insideVerticalBorder37);
            Shading shading328 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin37 = new TableCellMargin();
            StartMargin startMargin38 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin37.Append(startMargin38);

            tableCellProperties156.Append(tableCellWidth156);
            tableCellProperties156.Append(gridSpan156);
            tableCellProperties156.Append(tableCellBorders156);
            tableCellProperties156.Append(shading328);
            tableCellProperties156.Append(tableCellMargin37);

            Paragraph paragraph211 = new Paragraph();

            ParagraphProperties paragraphProperties211 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId211 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs10 = new Tabs();
            TabStop tabStop226 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop227 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop228 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop229 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop230 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop231 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop232 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop233 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop234 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop235 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop236 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop237 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop238 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop239 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop240 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop241 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop242 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop243 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop244 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop245 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop246 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop247 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop248 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop249 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop250 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs10.Append(tabStop226);
            tabs10.Append(tabStop227);
            tabs10.Append(tabStop228);
            tabs10.Append(tabStop229);
            tabs10.Append(tabStop230);
            tabs10.Append(tabStop231);
            tabs10.Append(tabStop232);
            tabs10.Append(tabStop233);
            tabs10.Append(tabStop234);
            tabs10.Append(tabStop235);
            tabs10.Append(tabStop236);
            tabs10.Append(tabStop237);
            tabs10.Append(tabStop238);
            tabs10.Append(tabStop239);
            tabs10.Append(tabStop240);
            tabs10.Append(tabStop241);
            tabs10.Append(tabStop242);
            tabs10.Append(tabStop243);
            tabs10.Append(tabStop244);
            tabs10.Append(tabStop245);
            tabs10.Append(tabStop246);
            tabs10.Append(tabStop247);
            tabs10.Append(tabStop248);
            tabs10.Append(tabStop249);
            tabs10.Append(tabStop250);
            Justification justification118 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties211 = new ParagraphMarkRunProperties();

            paragraphProperties211.Append(paragraphStyleId211);
            paragraphProperties211.Append(tabs10);
            paragraphProperties211.Append(justification118);
            paragraphProperties211.Append(paragraphMarkRunProperties211);

            Run run221 = new Run();

            RunProperties runProperties221 = new RunProperties();
            FontSize fontSize297 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript297 = new FontSizeComplexScript() { Val = "26" };

            runProperties221.Append(fontSize297);
            runProperties221.Append(fontSizeComplexScript297);
            Text text114 = new Text();
            text114.Text = "Наименование критического элемента";

            run221.Append(runProperties221);
            run221.Append(text114);

            paragraph211.Append(paragraphProperties211);
            paragraph211.Append(run221);

            tableCell156.Append(tableCellProperties156);
            tableCell156.Append(paragraph211);

            TableCell tableCell157 = new TableCell();

            TableCellProperties tableCellProperties157 = new TableCellProperties();
            TableCellWidth tableCellWidth157 = new TableCellWidth() { Width = "3311", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan157 = new GridSpan() { Val = 18 };

            TableCellBorders tableCellBorders157 = new TableCellBorders();
            TopBorder topBorder45 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder38 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder38 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder38 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders157.Append(topBorder45);
            tableCellBorders157.Append(startBorder38);
            tableCellBorders157.Append(endBorder38);
            tableCellBorders157.Append(insideVerticalBorder38);
            Shading shading329 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin38 = new TableCellMargin();
            StartMargin startMargin39 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin38.Append(startMargin39);

            tableCellProperties157.Append(tableCellWidth157);
            tableCellProperties157.Append(gridSpan157);
            tableCellProperties157.Append(tableCellBorders157);
            tableCellProperties157.Append(shading329);
            tableCellProperties157.Append(tableCellMargin38);

            Paragraph paragraph212 = new Paragraph();

            ParagraphProperties paragraphProperties212 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId212 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs11 = new Tabs();
            TabStop tabStop251 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop252 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop253 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop254 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop255 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop256 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop257 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop258 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop259 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop260 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop261 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop262 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop263 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop264 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop265 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop266 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop267 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop268 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop269 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop270 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop271 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop272 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop273 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop274 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop275 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs11.Append(tabStop251);
            tabs11.Append(tabStop252);
            tabs11.Append(tabStop253);
            tabs11.Append(tabStop254);
            tabs11.Append(tabStop255);
            tabs11.Append(tabStop256);
            tabs11.Append(tabStop257);
            tabs11.Append(tabStop258);
            tabs11.Append(tabStop259);
            tabs11.Append(tabStop260);
            tabs11.Append(tabStop261);
            tabs11.Append(tabStop262);
            tabs11.Append(tabStop263);
            tabs11.Append(tabStop264);
            tabs11.Append(tabStop265);
            tabs11.Append(tabStop266);
            tabs11.Append(tabStop267);
            tabs11.Append(tabStop268);
            tabs11.Append(tabStop269);
            tabs11.Append(tabStop270);
            tabs11.Append(tabStop271);
            tabs11.Append(tabStop272);
            tabs11.Append(tabStop273);
            tabs11.Append(tabStop274);
            tabs11.Append(tabStop275);
            Justification justification119 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties212 = new ParagraphMarkRunProperties();

            paragraphProperties212.Append(paragraphStyleId212);
            paragraphProperties212.Append(tabs11);
            paragraphProperties212.Append(justification119);
            paragraphProperties212.Append(paragraphMarkRunProperties212);

            Run run222 = new Run();

            RunProperties runProperties222 = new RunProperties();
            FontSize fontSize298 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript298 = new FontSizeComplexScript() { Val = "26" };

            runProperties222.Append(fontSize298);
            runProperties222.Append(fontSizeComplexScript298);
            Text text115 = new Text();
            text115.Text = "Первоначальная стоимость (тыс. рублей)";

            run222.Append(runProperties222);
            run222.Append(text115);

            paragraph212.Append(paragraphProperties212);
            paragraph212.Append(run222);

            tableCell157.Append(tableCellProperties157);
            tableCell157.Append(paragraph212);

            TableCell tableCell158 = new TableCell();

            TableCellProperties tableCellProperties158 = new TableCellProperties();
            TableCellWidth tableCellWidth158 = new TableCellWidth() { Width = "2360", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan158 = new GridSpan() { Val = 9 };

            TableCellBorders tableCellBorders158 = new TableCellBorders();
            TopBorder topBorder46 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder39 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder39 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder39 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders158.Append(topBorder46);
            tableCellBorders158.Append(startBorder39);
            tableCellBorders158.Append(endBorder39);
            tableCellBorders158.Append(insideVerticalBorder39);
            Shading shading330 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin39 = new TableCellMargin();
            StartMargin startMargin40 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin39.Append(startMargin40);

            tableCellProperties158.Append(tableCellWidth158);
            tableCellProperties158.Append(gridSpan158);
            tableCellProperties158.Append(tableCellBorders158);
            tableCellProperties158.Append(shading330);
            tableCellProperties158.Append(tableCellMargin39);

            Paragraph paragraph213 = new Paragraph();

            ParagraphProperties paragraphProperties213 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId213 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs12 = new Tabs();
            TabStop tabStop276 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop277 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop278 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop279 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop280 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop281 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop282 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop283 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop284 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop285 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop286 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop287 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop288 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop289 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop290 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop291 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop292 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop293 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop294 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop295 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop296 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop297 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop298 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop299 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop300 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs12.Append(tabStop276);
            tabs12.Append(tabStop277);
            tabs12.Append(tabStop278);
            tabs12.Append(tabStop279);
            tabs12.Append(tabStop280);
            tabs12.Append(tabStop281);
            tabs12.Append(tabStop282);
            tabs12.Append(tabStop283);
            tabs12.Append(tabStop284);
            tabs12.Append(tabStop285);
            tabs12.Append(tabStop286);
            tabs12.Append(tabStop287);
            tabs12.Append(tabStop288);
            tabs12.Append(tabStop289);
            tabs12.Append(tabStop290);
            tabs12.Append(tabStop291);
            tabs12.Append(tabStop292);
            tabs12.Append(tabStop293);
            tabs12.Append(tabStop294);
            tabs12.Append(tabStop295);
            tabs12.Append(tabStop296);
            tabs12.Append(tabStop297);
            tabs12.Append(tabStop298);
            tabs12.Append(tabStop299);
            tabs12.Append(tabStop300);
            Justification justification120 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties213 = new ParagraphMarkRunProperties();

            paragraphProperties213.Append(paragraphStyleId213);
            paragraphProperties213.Append(tabs12);
            paragraphProperties213.Append(justification120);
            paragraphProperties213.Append(paragraphMarkRunProperties213);

            Run run223 = new Run();

            RunProperties runProperties223 = new RunProperties();
            FontSize fontSize299 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript299 = new FontSizeComplexScript() { Val = "26" };

            runProperties223.Append(fontSize299);
            runProperties223.Append(fontSizeComplexScript299);
            Text text116 = new Text();
            text116.Text = "Остаточная стоимость (тыс. рублей)";

            run223.Append(runProperties223);
            run223.Append(text116);

            paragraph213.Append(paragraphProperties213);
            paragraph213.Append(run223);

            tableCell158.Append(tableCellProperties158);
            tableCell158.Append(paragraph213);

            tableRow72.Append(tableRowProperties72);
            tableRow72.Append(tableCell155);
            tableRow72.Append(tableCell156);
            tableRow72.Append(tableCell157);
            tableRow72.Append(tableCell158);

            TableRow tableRow73 = new TableRow();
            TableRowProperties tableRowProperties73 = new TableRowProperties();

            TableCell tableCell159 = new TableCell();

            TableCellProperties tableCellProperties159 = new TableCellProperties();
            TableCellWidth tableCellWidth159 = new TableCellWidth() { Width = "636", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan159 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders159 = new TableCellBorders();
            TopBorder topBorder47 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder40 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder40 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder40 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders159.Append(topBorder47);
            tableCellBorders159.Append(startBorder40);
            tableCellBorders159.Append(endBorder40);
            tableCellBorders159.Append(insideVerticalBorder40);
            Shading shading331 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin40 = new TableCellMargin();
            StartMargin startMargin41 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin40.Append(startMargin41);

            tableCellProperties159.Append(tableCellWidth159);
            tableCellProperties159.Append(gridSpan159);
            tableCellProperties159.Append(tableCellBorders159);
            tableCellProperties159.Append(shading331);
            tableCellProperties159.Append(tableCellMargin40);

            Paragraph paragraph214 = new Paragraph();

            ParagraphProperties paragraphProperties214 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId214 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs13 = new Tabs();
            TabStop tabStop301 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop302 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop303 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop304 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop305 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop306 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop307 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop308 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop309 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop310 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop311 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop312 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop313 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop314 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop315 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop316 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop317 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop318 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop319 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop320 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop321 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop322 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop323 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop324 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop325 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs13.Append(tabStop301);
            tabs13.Append(tabStop302);
            tabs13.Append(tabStop303);
            tabs13.Append(tabStop304);
            tabs13.Append(tabStop305);
            tabs13.Append(tabStop306);
            tabs13.Append(tabStop307);
            tabs13.Append(tabStop308);
            tabs13.Append(tabStop309);
            tabs13.Append(tabStop310);
            tabs13.Append(tabStop311);
            tabs13.Append(tabStop312);
            tabs13.Append(tabStop313);
            tabs13.Append(tabStop314);
            tabs13.Append(tabStop315);
            tabs13.Append(tabStop316);
            tabs13.Append(tabStop317);
            tabs13.Append(tabStop318);
            tabs13.Append(tabStop319);
            tabs13.Append(tabStop320);
            tabs13.Append(tabStop321);
            tabs13.Append(tabStop322);
            tabs13.Append(tabStop323);
            tabs13.Append(tabStop324);
            tabs13.Append(tabStop325);
            Justification justification121 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties214 = new ParagraphMarkRunProperties();

            paragraphProperties214.Append(paragraphStyleId214);
            paragraphProperties214.Append(tabs13);
            paragraphProperties214.Append(justification121);
            paragraphProperties214.Append(paragraphMarkRunProperties214);

            Run run224 = new Run();

            RunProperties runProperties224 = new RunProperties();
            FontSize fontSize300 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript300 = new FontSizeComplexScript() { Val = "26" };

            runProperties224.Append(fontSize300);
            runProperties224.Append(fontSizeComplexScript300);
            Text text117 = new Text();
            text117.Text = "1.";

            run224.Append(runProperties224);
            run224.Append(text117);

            paragraph214.Append(paragraphProperties214);
            paragraph214.Append(run224);

            tableCell159.Append(tableCellProperties159);
            tableCell159.Append(paragraph214);

            TableCell tableCell160 = new TableCell();

            TableCellProperties tableCellProperties160 = new TableCellProperties();
            TableCellWidth tableCellWidth160 = new TableCellWidth() { Width = "3328", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan160 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders160 = new TableCellBorders();
            TopBorder topBorder48 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder41 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder41 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder41 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders160.Append(topBorder48);
            tableCellBorders160.Append(startBorder41);
            tableCellBorders160.Append(endBorder41);
            tableCellBorders160.Append(insideVerticalBorder41);
            Shading shading332 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin41 = new TableCellMargin();
            StartMargin startMargin42 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin41.Append(startMargin42);

            tableCellProperties160.Append(tableCellWidth160);
            tableCellProperties160.Append(gridSpan160);
            tableCellProperties160.Append(tableCellBorders160);
            tableCellProperties160.Append(shading332);
            tableCellProperties160.Append(tableCellMargin41);

            Paragraph paragraph215 = new Paragraph();

            ParagraphProperties paragraphProperties215 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId215 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification122 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties215 = new ParagraphMarkRunProperties();

            paragraphProperties215.Append(paragraphStyleId215);
            paragraphProperties215.Append(justification122);
            paragraphProperties215.Append(paragraphMarkRunProperties215);

            Run run225 = new Run();

            RunProperties runProperties225 = new RunProperties();
            RunStyle runStyle4 = new RunStyle() { Val = "FontStyle48" };

            runProperties225.Append(runStyle4);
            Text text118 = new Text();
            text118.Text = "Котельный зал";

            run225.Append(runProperties225);
            run225.Append(text118);

            paragraph215.Append(paragraphProperties215);
            paragraph215.Append(run225);

            tableCell160.Append(tableCellProperties160);
            tableCell160.Append(paragraph215);

            TableCell tableCell161 = new TableCell();

            TableCellProperties tableCellProperties161 = new TableCellProperties();
            TableCellWidth tableCellWidth161 = new TableCellWidth() { Width = "3311", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan161 = new GridSpan() { Val = 18 };

            TableCellBorders tableCellBorders161 = new TableCellBorders();
            TopBorder topBorder49 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder42 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder42 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder42 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders161.Append(topBorder49);
            tableCellBorders161.Append(startBorder42);
            tableCellBorders161.Append(endBorder42);
            tableCellBorders161.Append(insideVerticalBorder42);
            Shading shading333 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin42 = new TableCellMargin();
            StartMargin startMargin43 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin42.Append(startMargin43);
            TableCellVerticalAlignment tableCellVerticalAlignment13 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties161.Append(tableCellWidth161);
            tableCellProperties161.Append(gridSpan161);
            tableCellProperties161.Append(tableCellBorders161);
            tableCellProperties161.Append(shading333);
            tableCellProperties161.Append(tableCellMargin42);
            tableCellProperties161.Append(tableCellVerticalAlignment13);

            Paragraph paragraph216 = new Paragraph();

            ParagraphProperties paragraphProperties216 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId216 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification123 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties216 = new ParagraphMarkRunProperties();

            paragraphProperties216.Append(paragraphStyleId216);
            paragraphProperties216.Append(justification123);
            paragraphProperties216.Append(paragraphMarkRunProperties216);

            Run run226 = new Run();

            RunProperties runProperties226 = new RunProperties();
            FontSize fontSize301 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript301 = new FontSizeComplexScript() { Val = "26" };

            runProperties226.Append(fontSize301);
            runProperties226.Append(fontSizeComplexScript301);
            Text text119 = new Text();
            text119.Text = "232501,14";

            run226.Append(runProperties226);
            run226.Append(text119);

            paragraph216.Append(paragraphProperties216);
            paragraph216.Append(run226);

            tableCell161.Append(tableCellProperties161);
            tableCell161.Append(paragraph216);

            TableCell tableCell162 = new TableCell();

            TableCellProperties tableCellProperties162 = new TableCellProperties();
            TableCellWidth tableCellWidth162 = new TableCellWidth() { Width = "2360", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan162 = new GridSpan() { Val = 9 };

            TableCellBorders tableCellBorders162 = new TableCellBorders();
            TopBorder topBorder50 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder43 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder43 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder43 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders162.Append(topBorder50);
            tableCellBorders162.Append(startBorder43);
            tableCellBorders162.Append(endBorder43);
            tableCellBorders162.Append(insideVerticalBorder43);
            Shading shading334 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin43 = new TableCellMargin();
            StartMargin startMargin44 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin43.Append(startMargin44);
            TableCellVerticalAlignment tableCellVerticalAlignment14 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Bottom };

            tableCellProperties162.Append(tableCellWidth162);
            tableCellProperties162.Append(gridSpan162);
            tableCellProperties162.Append(tableCellBorders162);
            tableCellProperties162.Append(shading334);
            tableCellProperties162.Append(tableCellMargin43);
            tableCellProperties162.Append(tableCellVerticalAlignment14);

            Paragraph paragraph217 = new Paragraph();

            ParagraphProperties paragraphProperties217 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId217 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification124 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties217 = new ParagraphMarkRunProperties();

            paragraphProperties217.Append(paragraphStyleId217);
            paragraphProperties217.Append(justification124);
            paragraphProperties217.Append(paragraphMarkRunProperties217);

            Run run227 = new Run();

            RunProperties runProperties227 = new RunProperties();
            FontSize fontSize302 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript302 = new FontSizeComplexScript() { Val = "26" };

            runProperties227.Append(fontSize302);
            runProperties227.Append(fontSizeComplexScript302);
            Text text120 = new Text();
            text120.Text = "120325,47";

            run227.Append(runProperties227);
            run227.Append(text120);

            paragraph217.Append(paragraphProperties217);
            paragraph217.Append(run227);

            tableCell162.Append(tableCellProperties162);
            tableCell162.Append(paragraph217);

            tableRow73.Append(tableRowProperties73);
            tableRow73.Append(tableCell159);
            tableRow73.Append(tableCell160);
            tableRow73.Append(tableCell161);
            tableRow73.Append(tableCell162);

            TableRow tableRow74 = new TableRow();
            TableRowProperties tableRowProperties74 = new TableRowProperties();

            TableCell tableCell163 = new TableCell();

            TableCellProperties tableCellProperties163 = new TableCellProperties();
            TableCellWidth tableCellWidth163 = new TableCellWidth() { Width = "636", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan163 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders163 = new TableCellBorders();
            TopBorder topBorder51 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder44 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder44 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder44 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders163.Append(topBorder51);
            tableCellBorders163.Append(startBorder44);
            tableCellBorders163.Append(endBorder44);
            tableCellBorders163.Append(insideVerticalBorder44);
            Shading shading335 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin44 = new TableCellMargin();
            StartMargin startMargin45 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin44.Append(startMargin45);

            tableCellProperties163.Append(tableCellWidth163);
            tableCellProperties163.Append(gridSpan163);
            tableCellProperties163.Append(tableCellBorders163);
            tableCellProperties163.Append(shading335);
            tableCellProperties163.Append(tableCellMargin44);

            Paragraph paragraph218 = new Paragraph();

            ParagraphProperties paragraphProperties218 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId218 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs14 = new Tabs();
            TabStop tabStop326 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop327 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop328 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop329 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop330 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop331 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop332 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop333 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop334 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop335 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop336 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop337 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop338 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop339 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop340 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop341 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop342 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop343 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop344 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop345 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop346 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop347 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop348 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop349 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop350 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs14.Append(tabStop326);
            tabs14.Append(tabStop327);
            tabs14.Append(tabStop328);
            tabs14.Append(tabStop329);
            tabs14.Append(tabStop330);
            tabs14.Append(tabStop331);
            tabs14.Append(tabStop332);
            tabs14.Append(tabStop333);
            tabs14.Append(tabStop334);
            tabs14.Append(tabStop335);
            tabs14.Append(tabStop336);
            tabs14.Append(tabStop337);
            tabs14.Append(tabStop338);
            tabs14.Append(tabStop339);
            tabs14.Append(tabStop340);
            tabs14.Append(tabStop341);
            tabs14.Append(tabStop342);
            tabs14.Append(tabStop343);
            tabs14.Append(tabStop344);
            tabs14.Append(tabStop345);
            tabs14.Append(tabStop346);
            tabs14.Append(tabStop347);
            tabs14.Append(tabStop348);
            tabs14.Append(tabStop349);
            tabs14.Append(tabStop350);
            Justification justification125 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties218 = new ParagraphMarkRunProperties();

            paragraphProperties218.Append(paragraphStyleId218);
            paragraphProperties218.Append(tabs14);
            paragraphProperties218.Append(justification125);
            paragraphProperties218.Append(paragraphMarkRunProperties218);

            Run run228 = new Run();

            RunProperties runProperties228 = new RunProperties();
            FontSize fontSize303 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript303 = new FontSizeComplexScript() { Val = "26" };

            runProperties228.Append(fontSize303);
            runProperties228.Append(fontSizeComplexScript303);
            Text text121 = new Text();
            text121.Text = "2.";

            run228.Append(runProperties228);
            run228.Append(text121);

            paragraph218.Append(paragraphProperties218);
            paragraph218.Append(run228);

            tableCell163.Append(tableCellProperties163);
            tableCell163.Append(paragraph218);

            TableCell tableCell164 = new TableCell();

            TableCellProperties tableCellProperties164 = new TableCellProperties();
            TableCellWidth tableCellWidth164 = new TableCellWidth() { Width = "3328", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan164 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders164 = new TableCellBorders();
            TopBorder topBorder52 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder45 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder45 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder45 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders164.Append(topBorder52);
            tableCellBorders164.Append(startBorder45);
            tableCellBorders164.Append(endBorder45);
            tableCellBorders164.Append(insideVerticalBorder45);
            Shading shading336 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin45 = new TableCellMargin();
            StartMargin startMargin46 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin45.Append(startMargin46);

            tableCellProperties164.Append(tableCellWidth164);
            tableCellProperties164.Append(gridSpan164);
            tableCellProperties164.Append(tableCellBorders164);
            tableCellProperties164.Append(shading336);
            tableCellProperties164.Append(tableCellMargin45);

            Paragraph paragraph219 = new Paragraph();

            ParagraphProperties paragraphProperties219 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId219 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification126 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties219 = new ParagraphMarkRunProperties();

            paragraphProperties219.Append(paragraphStyleId219);
            paragraphProperties219.Append(justification126);
            paragraphProperties219.Append(paragraphMarkRunProperties219);

            Run run229 = new Run();

            RunProperties runProperties229 = new RunProperties();
            FontSize fontSize304 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript304 = new FontSizeComplexScript() { Val = "26" };

            runProperties229.Append(fontSize304);
            runProperties229.Append(fontSizeComplexScript304);
            Text text122 = new Text();
            text122.Text = "Газораспределительный пункт";

            run229.Append(runProperties229);
            run229.Append(text122);

            paragraph219.Append(paragraphProperties219);
            paragraph219.Append(run229);

            tableCell164.Append(tableCellProperties164);
            tableCell164.Append(paragraph219);

            TableCell tableCell165 = new TableCell();

            TableCellProperties tableCellProperties165 = new TableCellProperties();
            TableCellWidth tableCellWidth165 = new TableCellWidth() { Width = "3311", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan165 = new GridSpan() { Val = 18 };

            TableCellBorders tableCellBorders165 = new TableCellBorders();
            TopBorder topBorder53 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder46 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder46 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder46 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders165.Append(topBorder53);
            tableCellBorders165.Append(startBorder46);
            tableCellBorders165.Append(endBorder46);
            tableCellBorders165.Append(insideVerticalBorder46);
            Shading shading337 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin46 = new TableCellMargin();
            StartMargin startMargin47 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin46.Append(startMargin47);
            TableCellVerticalAlignment tableCellVerticalAlignment15 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Bottom };

            tableCellProperties165.Append(tableCellWidth165);
            tableCellProperties165.Append(gridSpan165);
            tableCellProperties165.Append(tableCellBorders165);
            tableCellProperties165.Append(shading337);
            tableCellProperties165.Append(tableCellMargin46);
            tableCellProperties165.Append(tableCellVerticalAlignment15);

            Paragraph paragraph220 = new Paragraph();

            ParagraphProperties paragraphProperties220 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId220 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification127 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties220 = new ParagraphMarkRunProperties();

            paragraphProperties220.Append(paragraphStyleId220);
            paragraphProperties220.Append(justification127);
            paragraphProperties220.Append(paragraphMarkRunProperties220);

            Run run230 = new Run();

            RunProperties runProperties230 = new RunProperties();
            FontSize fontSize305 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript305 = new FontSizeComplexScript() { Val = "26" };

            runProperties230.Append(fontSize305);
            runProperties230.Append(fontSizeComplexScript305);
            Text text123 = new Text();
            text123.Text = "71459,97";

            run230.Append(runProperties230);
            run230.Append(text123);

            paragraph220.Append(paragraphProperties220);
            paragraph220.Append(run230);

            tableCell165.Append(tableCellProperties165);
            tableCell165.Append(paragraph220);

            TableCell tableCell166 = new TableCell();

            TableCellProperties tableCellProperties166 = new TableCellProperties();
            TableCellWidth tableCellWidth166 = new TableCellWidth() { Width = "2360", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan166 = new GridSpan() { Val = 9 };

            TableCellBorders tableCellBorders166 = new TableCellBorders();
            TopBorder topBorder54 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder47 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder47 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder47 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders166.Append(topBorder54);
            tableCellBorders166.Append(startBorder47);
            tableCellBorders166.Append(endBorder47);
            tableCellBorders166.Append(insideVerticalBorder47);
            Shading shading338 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin47 = new TableCellMargin();
            StartMargin startMargin48 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin47.Append(startMargin48);
            TableCellVerticalAlignment tableCellVerticalAlignment16 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Bottom };

            tableCellProperties166.Append(tableCellWidth166);
            tableCellProperties166.Append(gridSpan166);
            tableCellProperties166.Append(tableCellBorders166);
            tableCellProperties166.Append(shading338);
            tableCellProperties166.Append(tableCellMargin47);
            tableCellProperties166.Append(tableCellVerticalAlignment16);

            Paragraph paragraph221 = new Paragraph();

            ParagraphProperties paragraphProperties221 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId221 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification128 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties221 = new ParagraphMarkRunProperties();

            paragraphProperties221.Append(paragraphStyleId221);
            paragraphProperties221.Append(justification128);
            paragraphProperties221.Append(paragraphMarkRunProperties221);

            Run run231 = new Run();

            RunProperties runProperties231 = new RunProperties();
            FontSize fontSize306 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript306 = new FontSizeComplexScript() { Val = "26" };

            runProperties231.Append(fontSize306);
            runProperties231.Append(fontSizeComplexScript306);
            Text text124 = new Text();
            text124.Text = "54250,56";

            run231.Append(runProperties231);
            run231.Append(text124);

            paragraph221.Append(paragraphProperties221);
            paragraph221.Append(run231);

            tableCell166.Append(tableCellProperties166);
            tableCell166.Append(paragraph221);

            tableRow74.Append(tableRowProperties74);
            tableRow74.Append(tableCell163);
            tableRow74.Append(tableCell164);
            tableRow74.Append(tableCell165);
            tableRow74.Append(tableCell166);

            TableRow tableRow75 = new TableRow();
            TableRowProperties tableRowProperties75 = new TableRowProperties();

            TableCell tableCell167 = new TableCell();

            TableCellProperties tableCellProperties167 = new TableCellProperties();
            TableCellWidth tableCellWidth167 = new TableCellWidth() { Width = "636", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan167 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders167 = new TableCellBorders();
            TopBorder topBorder55 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder48 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder48 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder48 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders167.Append(topBorder55);
            tableCellBorders167.Append(startBorder48);
            tableCellBorders167.Append(endBorder48);
            tableCellBorders167.Append(insideVerticalBorder48);
            Shading shading339 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin48 = new TableCellMargin();
            StartMargin startMargin49 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin48.Append(startMargin49);

            tableCellProperties167.Append(tableCellWidth167);
            tableCellProperties167.Append(gridSpan167);
            tableCellProperties167.Append(tableCellBorders167);
            tableCellProperties167.Append(shading339);
            tableCellProperties167.Append(tableCellMargin48);

            Paragraph paragraph222 = new Paragraph();

            ParagraphProperties paragraphProperties222 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId222 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs15 = new Tabs();
            TabStop tabStop351 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop352 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop353 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop354 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop355 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop356 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop357 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop358 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop359 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop360 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop361 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop362 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop363 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop364 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop365 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop366 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop367 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop368 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop369 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop370 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop371 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop372 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop373 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop374 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop375 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs15.Append(tabStop351);
            tabs15.Append(tabStop352);
            tabs15.Append(tabStop353);
            tabs15.Append(tabStop354);
            tabs15.Append(tabStop355);
            tabs15.Append(tabStop356);
            tabs15.Append(tabStop357);
            tabs15.Append(tabStop358);
            tabs15.Append(tabStop359);
            tabs15.Append(tabStop360);
            tabs15.Append(tabStop361);
            tabs15.Append(tabStop362);
            tabs15.Append(tabStop363);
            tabs15.Append(tabStop364);
            tabs15.Append(tabStop365);
            tabs15.Append(tabStop366);
            tabs15.Append(tabStop367);
            tabs15.Append(tabStop368);
            tabs15.Append(tabStop369);
            tabs15.Append(tabStop370);
            tabs15.Append(tabStop371);
            tabs15.Append(tabStop372);
            tabs15.Append(tabStop373);
            tabs15.Append(tabStop374);
            tabs15.Append(tabStop375);
            Justification justification129 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties222 = new ParagraphMarkRunProperties();

            paragraphProperties222.Append(paragraphStyleId222);
            paragraphProperties222.Append(tabs15);
            paragraphProperties222.Append(justification129);
            paragraphProperties222.Append(paragraphMarkRunProperties222);

            Run run232 = new Run();

            RunProperties runProperties232 = new RunProperties();
            FontSize fontSize307 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript307 = new FontSizeComplexScript() { Val = "26" };

            runProperties232.Append(fontSize307);
            runProperties232.Append(fontSizeComplexScript307);
            Text text125 = new Text();
            text125.Text = "3.";

            run232.Append(runProperties232);
            run232.Append(text125);

            paragraph222.Append(paragraphProperties222);
            paragraph222.Append(run232);

            tableCell167.Append(tableCellProperties167);
            tableCell167.Append(paragraph222);

            TableCell tableCell168 = new TableCell();

            TableCellProperties tableCellProperties168 = new TableCellProperties();
            TableCellWidth tableCellWidth168 = new TableCellWidth() { Width = "3328", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan168 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders168 = new TableCellBorders();
            TopBorder topBorder56 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder49 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder49 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder49 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders168.Append(topBorder56);
            tableCellBorders168.Append(startBorder49);
            tableCellBorders168.Append(endBorder49);
            tableCellBorders168.Append(insideVerticalBorder49);
            Shading shading340 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin49 = new TableCellMargin();
            StartMargin startMargin50 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin49.Append(startMargin50);

            tableCellProperties168.Append(tableCellWidth168);
            tableCellProperties168.Append(gridSpan168);
            tableCellProperties168.Append(tableCellBorders168);
            tableCellProperties168.Append(shading340);
            tableCellProperties168.Append(tableCellMargin49);

            Paragraph paragraph223 = new Paragraph();

            ParagraphProperties paragraphProperties223 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId223 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification130 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties223 = new ParagraphMarkRunProperties();

            paragraphProperties223.Append(paragraphStyleId223);
            paragraphProperties223.Append(justification130);
            paragraphProperties223.Append(paragraphMarkRunProperties223);

            Run run233 = new Run();

            RunProperties runProperties233 = new RunProperties();
            FontSize fontSize308 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript308 = new FontSizeComplexScript() { Val = "26" };

            runProperties233.Append(fontSize308);
            runProperties233.Append(fontSizeComplexScript308);
            Text text126 = new Text();
            text126.Text = "Распределительная трансформаторная подстанция 2079";

            run233.Append(runProperties233);
            run233.Append(text126);

            paragraph223.Append(paragraphProperties223);
            paragraph223.Append(run233);

            tableCell168.Append(tableCellProperties168);
            tableCell168.Append(paragraph223);

            TableCell tableCell169 = new TableCell();

            TableCellProperties tableCellProperties169 = new TableCellProperties();
            TableCellWidth tableCellWidth169 = new TableCellWidth() { Width = "3311", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan169 = new GridSpan() { Val = 18 };

            TableCellBorders tableCellBorders169 = new TableCellBorders();
            TopBorder topBorder57 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder50 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder50 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder50 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders169.Append(topBorder57);
            tableCellBorders169.Append(startBorder50);
            tableCellBorders169.Append(endBorder50);
            tableCellBorders169.Append(insideVerticalBorder50);
            Shading shading341 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin50 = new TableCellMargin();
            StartMargin startMargin51 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin50.Append(startMargin51);
            TableCellVerticalAlignment tableCellVerticalAlignment17 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Bottom };

            tableCellProperties169.Append(tableCellWidth169);
            tableCellProperties169.Append(gridSpan169);
            tableCellProperties169.Append(tableCellBorders169);
            tableCellProperties169.Append(shading341);
            tableCellProperties169.Append(tableCellMargin50);
            tableCellProperties169.Append(tableCellVerticalAlignment17);

            Paragraph paragraph224 = new Paragraph();

            ParagraphProperties paragraphProperties224 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId224 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification131 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties224 = new ParagraphMarkRunProperties();

            paragraphProperties224.Append(paragraphStyleId224);
            paragraphProperties224.Append(justification131);
            paragraphProperties224.Append(paragraphMarkRunProperties224);

            Run run234 = new Run();

            RunProperties runProperties234 = new RunProperties();
            FontSize fontSize309 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript309 = new FontSizeComplexScript() { Val = "26" };

            runProperties234.Append(fontSize309);
            runProperties234.Append(fontSizeComplexScript309);
            Text text127 = new Text();
            text127.Text = "70284,3";

            run234.Append(runProperties234);
            run234.Append(text127);

            paragraph224.Append(paragraphProperties224);
            paragraph224.Append(run234);

            tableCell169.Append(tableCellProperties169);
            tableCell169.Append(paragraph224);

            TableCell tableCell170 = new TableCell();

            TableCellProperties tableCellProperties170 = new TableCellProperties();
            TableCellWidth tableCellWidth170 = new TableCellWidth() { Width = "2360", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan170 = new GridSpan() { Val = 9 };

            TableCellBorders tableCellBorders170 = new TableCellBorders();
            TopBorder topBorder58 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder51 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder51 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder51 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders170.Append(topBorder58);
            tableCellBorders170.Append(startBorder51);
            tableCellBorders170.Append(endBorder51);
            tableCellBorders170.Append(insideVerticalBorder51);
            Shading shading342 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin51 = new TableCellMargin();
            StartMargin startMargin52 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin51.Append(startMargin52);
            TableCellVerticalAlignment tableCellVerticalAlignment18 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Bottom };

            tableCellProperties170.Append(tableCellWidth170);
            tableCellProperties170.Append(gridSpan170);
            tableCellProperties170.Append(tableCellBorders170);
            tableCellProperties170.Append(shading342);
            tableCellProperties170.Append(tableCellMargin51);
            tableCellProperties170.Append(tableCellVerticalAlignment18);

            Paragraph paragraph225 = new Paragraph();

            ParagraphProperties paragraphProperties225 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId225 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification132 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties225 = new ParagraphMarkRunProperties();

            paragraphProperties225.Append(paragraphStyleId225);
            paragraphProperties225.Append(justification132);
            paragraphProperties225.Append(paragraphMarkRunProperties225);

            Run run235 = new Run();

            RunProperties runProperties235 = new RunProperties();
            FontSize fontSize310 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript310 = new FontSizeComplexScript() { Val = "26" };

            runProperties235.Append(fontSize310);
            runProperties235.Append(fontSizeComplexScript310);
            Text text128 = new Text();
            text128.Text = "26829,47";

            run235.Append(runProperties235);
            run235.Append(text128);

            paragraph225.Append(paragraphProperties225);
            paragraph225.Append(run235);

            tableCell170.Append(tableCellProperties170);
            tableCell170.Append(paragraph225);

            tableRow75.Append(tableRowProperties75);
            tableRow75.Append(tableCell167);
            tableRow75.Append(tableCell168);
            tableRow75.Append(tableCell169);
            tableRow75.Append(tableCell170);

            TableRow tableRow76 = new TableRow();
            TableRowProperties tableRowProperties76 = new TableRowProperties();

            TableCell tableCell171 = new TableCell();

            TableCellProperties tableCellProperties171 = new TableCellProperties();
            TableCellWidth tableCellWidth171 = new TableCellWidth() { Width = "636", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan171 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders171 = new TableCellBorders();
            TopBorder topBorder59 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder52 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder52 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder52 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders171.Append(topBorder59);
            tableCellBorders171.Append(startBorder52);
            tableCellBorders171.Append(endBorder52);
            tableCellBorders171.Append(insideVerticalBorder52);
            Shading shading343 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin52 = new TableCellMargin();
            StartMargin startMargin53 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin52.Append(startMargin53);

            tableCellProperties171.Append(tableCellWidth171);
            tableCellProperties171.Append(gridSpan171);
            tableCellProperties171.Append(tableCellBorders171);
            tableCellProperties171.Append(shading343);
            tableCellProperties171.Append(tableCellMargin52);

            Paragraph paragraph226 = new Paragraph();

            ParagraphProperties paragraphProperties226 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId226 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs16 = new Tabs();
            TabStop tabStop376 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop377 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop378 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop379 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop380 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop381 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop382 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop383 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop384 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop385 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop386 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop387 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop388 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop389 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop390 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop391 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop392 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop393 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop394 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop395 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop396 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop397 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop398 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop399 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop400 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs16.Append(tabStop376);
            tabs16.Append(tabStop377);
            tabs16.Append(tabStop378);
            tabs16.Append(tabStop379);
            tabs16.Append(tabStop380);
            tabs16.Append(tabStop381);
            tabs16.Append(tabStop382);
            tabs16.Append(tabStop383);
            tabs16.Append(tabStop384);
            tabs16.Append(tabStop385);
            tabs16.Append(tabStop386);
            tabs16.Append(tabStop387);
            tabs16.Append(tabStop388);
            tabs16.Append(tabStop389);
            tabs16.Append(tabStop390);
            tabs16.Append(tabStop391);
            tabs16.Append(tabStop392);
            tabs16.Append(tabStop393);
            tabs16.Append(tabStop394);
            tabs16.Append(tabStop395);
            tabs16.Append(tabStop396);
            tabs16.Append(tabStop397);
            tabs16.Append(tabStop398);
            tabs16.Append(tabStop399);
            tabs16.Append(tabStop400);
            Justification justification133 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties226 = new ParagraphMarkRunProperties();

            paragraphProperties226.Append(paragraphStyleId226);
            paragraphProperties226.Append(tabs16);
            paragraphProperties226.Append(justification133);
            paragraphProperties226.Append(paragraphMarkRunProperties226);

            Run run236 = new Run();

            RunProperties runProperties236 = new RunProperties();
            FontSize fontSize311 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript311 = new FontSizeComplexScript() { Val = "26" };

            runProperties236.Append(fontSize311);
            runProperties236.Append(fontSizeComplexScript311);
            Text text129 = new Text();
            text129.Text = "4.";

            run236.Append(runProperties236);
            run236.Append(text129);

            paragraph226.Append(paragraphProperties226);
            paragraph226.Append(run236);

            tableCell171.Append(tableCellProperties171);
            tableCell171.Append(paragraph226);

            TableCell tableCell172 = new TableCell();

            TableCellProperties tableCellProperties172 = new TableCellProperties();
            TableCellWidth tableCellWidth172 = new TableCellWidth() { Width = "3328", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan172 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders172 = new TableCellBorders();
            TopBorder topBorder60 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder53 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder53 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder53 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders172.Append(topBorder60);
            tableCellBorders172.Append(startBorder53);
            tableCellBorders172.Append(endBorder53);
            tableCellBorders172.Append(insideVerticalBorder53);
            Shading shading344 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin53 = new TableCellMargin();
            StartMargin startMargin54 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin53.Append(startMargin54);

            tableCellProperties172.Append(tableCellWidth172);
            tableCellProperties172.Append(gridSpan172);
            tableCellProperties172.Append(tableCellBorders172);
            tableCellProperties172.Append(shading344);
            tableCellProperties172.Append(tableCellMargin53);

            Paragraph paragraph227 = new Paragraph();

            ParagraphProperties paragraphProperties227 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId227 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification134 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties227 = new ParagraphMarkRunProperties();

            paragraphProperties227.Append(paragraphStyleId227);
            paragraphProperties227.Append(justification134);
            paragraphProperties227.Append(paragraphMarkRunProperties227);

            Run run237 = new Run();

            RunProperties runProperties237 = new RunProperties();
            FontSize fontSize312 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript312 = new FontSizeComplexScript() { Val = "26" };

            runProperties237.Append(fontSize312);
            runProperties237.Append(fontSizeComplexScript312);
            Text text130 = new Text();
            text130.Text = "Центральный пульт управления";

            run237.Append(runProperties237);
            run237.Append(text130);

            paragraph227.Append(paragraphProperties227);
            paragraph227.Append(run237);

            tableCell172.Append(tableCellProperties172);
            tableCell172.Append(paragraph227);

            TableCell tableCell173 = new TableCell();

            TableCellProperties tableCellProperties173 = new TableCellProperties();
            TableCellWidth tableCellWidth173 = new TableCellWidth() { Width = "3311", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan173 = new GridSpan() { Val = 18 };

            TableCellBorders tableCellBorders173 = new TableCellBorders();
            TopBorder topBorder61 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder54 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder54 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder54 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders173.Append(topBorder61);
            tableCellBorders173.Append(startBorder54);
            tableCellBorders173.Append(endBorder54);
            tableCellBorders173.Append(insideVerticalBorder54);
            Shading shading345 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin54 = new TableCellMargin();
            StartMargin startMargin55 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin54.Append(startMargin55);
            TableCellVerticalAlignment tableCellVerticalAlignment19 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Bottom };

            tableCellProperties173.Append(tableCellWidth173);
            tableCellProperties173.Append(gridSpan173);
            tableCellProperties173.Append(tableCellBorders173);
            tableCellProperties173.Append(shading345);
            tableCellProperties173.Append(tableCellMargin54);
            tableCellProperties173.Append(tableCellVerticalAlignment19);

            Paragraph paragraph228 = new Paragraph();

            ParagraphProperties paragraphProperties228 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId228 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification135 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties228 = new ParagraphMarkRunProperties();

            paragraphProperties228.Append(paragraphStyleId228);
            paragraphProperties228.Append(justification135);
            paragraphProperties228.Append(paragraphMarkRunProperties228);

            Run run238 = new Run();

            RunProperties runProperties238 = new RunProperties();
            FontSize fontSize313 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript313 = new FontSizeComplexScript() { Val = "26" };

            runProperties238.Append(fontSize313);
            runProperties238.Append(fontSizeComplexScript313);
            Text text131 = new Text();
            text131.Text = "8850,06";

            run238.Append(runProperties238);
            run238.Append(text131);

            paragraph228.Append(paragraphProperties228);
            paragraph228.Append(run238);

            tableCell173.Append(tableCellProperties173);
            tableCell173.Append(paragraph228);

            TableCell tableCell174 = new TableCell();

            TableCellProperties tableCellProperties174 = new TableCellProperties();
            TableCellWidth tableCellWidth174 = new TableCellWidth() { Width = "2360", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan174 = new GridSpan() { Val = 9 };

            TableCellBorders tableCellBorders174 = new TableCellBorders();
            TopBorder topBorder62 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder55 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder55 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder55 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders174.Append(topBorder62);
            tableCellBorders174.Append(startBorder55);
            tableCellBorders174.Append(endBorder55);
            tableCellBorders174.Append(insideVerticalBorder55);
            Shading shading346 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin55 = new TableCellMargin();
            StartMargin startMargin56 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin55.Append(startMargin56);
            TableCellVerticalAlignment tableCellVerticalAlignment20 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Bottom };

            tableCellProperties174.Append(tableCellWidth174);
            tableCellProperties174.Append(gridSpan174);
            tableCellProperties174.Append(tableCellBorders174);
            tableCellProperties174.Append(shading346);
            tableCellProperties174.Append(tableCellMargin55);
            tableCellProperties174.Append(tableCellVerticalAlignment20);

            Paragraph paragraph229 = new Paragraph();

            ParagraphProperties paragraphProperties229 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId229 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification136 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties229 = new ParagraphMarkRunProperties();

            paragraphProperties229.Append(paragraphStyleId229);
            paragraphProperties229.Append(justification136);
            paragraphProperties229.Append(paragraphMarkRunProperties229);

            Run run239 = new Run();

            RunProperties runProperties239 = new RunProperties();
            FontSize fontSize314 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript314 = new FontSizeComplexScript() { Val = "26" };

            runProperties239.Append(fontSize314);
            runProperties239.Append(fontSizeComplexScript314);
            Text text132 = new Text();
            text132.Text = "1397,17";

            run239.Append(runProperties239);
            run239.Append(text132);

            paragraph229.Append(paragraphProperties229);
            paragraph229.Append(run239);

            tableCell174.Append(tableCellProperties174);
            tableCell174.Append(paragraph229);

            tableRow76.Append(tableRowProperties76);
            tableRow76.Append(tableCell171);
            tableRow76.Append(tableCell172);
            tableRow76.Append(tableCell173);
            tableRow76.Append(tableCell174);

            TableRow tableRow77 = new TableRow();
            TableRowProperties tableRowProperties77 = new TableRowProperties();

            TableCell tableCell175 = new TableCell();

            TableCellProperties tableCellProperties175 = new TableCellProperties();
            TableCellWidth tableCellWidth175 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan175 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders175 = new TableCellBorders();
            TopBorder topBorder63 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders175.Append(topBorder63);
            Shading shading347 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties175.Append(tableCellWidth175);
            tableCellProperties175.Append(gridSpan175);
            tableCellProperties175.Append(tableCellBorders175);
            tableCellProperties175.Append(shading347);

            Paragraph paragraph230 = new Paragraph();

            ParagraphProperties paragraphProperties230 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId230 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs17 = new Tabs();
            TabStop tabStop401 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop402 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop403 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop404 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop405 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop406 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop407 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop408 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop409 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop410 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop411 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop412 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop413 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop414 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop415 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop416 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop417 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop418 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop419 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop420 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop421 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop422 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop423 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop424 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop425 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs17.Append(tabStop401);
            tabs17.Append(tabStop402);
            tabs17.Append(tabStop403);
            tabs17.Append(tabStop404);
            tabs17.Append(tabStop405);
            tabs17.Append(tabStop406);
            tabs17.Append(tabStop407);
            tabs17.Append(tabStop408);
            tabs17.Append(tabStop409);
            tabs17.Append(tabStop410);
            tabs17.Append(tabStop411);
            tabs17.Append(tabStop412);
            tabs17.Append(tabStop413);
            tabs17.Append(tabStop414);
            tabs17.Append(tabStop415);
            tabs17.Append(tabStop416);
            tabs17.Append(tabStop417);
            tabs17.Append(tabStop418);
            tabs17.Append(tabStop419);
            tabs17.Append(tabStop420);
            tabs17.Append(tabStop421);
            tabs17.Append(tabStop422);
            tabs17.Append(tabStop423);
            tabs17.Append(tabStop424);
            tabs17.Append(tabStop425);
            Justification justification137 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties230 = new ParagraphMarkRunProperties();
            FontSize fontSize315 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript315 = new FontSizeComplexScript() { Val = "26" };
            Shading shading348 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties230.Append(fontSize315);
            paragraphMarkRunProperties230.Append(fontSizeComplexScript315);
            paragraphMarkRunProperties230.Append(shading348);

            paragraphProperties230.Append(paragraphStyleId230);
            paragraphProperties230.Append(tabs17);
            paragraphProperties230.Append(justification137);
            paragraphProperties230.Append(paragraphMarkRunProperties230);

            Run run240 = new Run();

            RunProperties runProperties240 = new RunProperties();
            FontSize fontSize316 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript316 = new FontSizeComplexScript() { Val = "26" };
            Shading shading349 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties240.Append(fontSize316);
            runProperties240.Append(fontSizeComplexScript316);
            runProperties240.Append(shading349);

            run240.Append(runProperties240);

            paragraph230.Append(paragraphProperties230);
            paragraph230.Append(run240);

            tableCell175.Append(tableCellProperties175);
            tableCell175.Append(paragraph230);

            tableRow77.Append(tableRowProperties77);
            tableRow77.Append(tableCell175);

            TableRow tableRow78 = new TableRow();
            TableRowProperties tableRowProperties78 = new TableRowProperties();

            TableCell tableCell176 = new TableCell();

            TableCellProperties tableCellProperties176 = new TableCellProperties();
            TableCellWidth tableCellWidth176 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan176 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders176 = new TableCellBorders();
            Shading shading350 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties176.Append(tableCellWidth176);
            tableCellProperties176.Append(gridSpan176);
            tableCellProperties176.Append(tableCellBorders176);
            tableCellProperties176.Append(shading350);

            Paragraph paragraph231 = new Paragraph();

            ParagraphProperties paragraphProperties231 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId231 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs18 = new Tabs();
            TabStop tabStop426 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop427 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop428 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop429 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop430 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop431 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop432 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop433 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop434 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop435 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop436 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop437 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop438 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop439 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop440 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop441 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop442 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop443 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop444 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop445 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop446 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop447 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop448 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop449 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop450 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs18.Append(tabStop426);
            tabs18.Append(tabStop427);
            tabs18.Append(tabStop428);
            tabs18.Append(tabStop429);
            tabs18.Append(tabStop430);
            tabs18.Append(tabStop431);
            tabs18.Append(tabStop432);
            tabs18.Append(tabStop433);
            tabs18.Append(tabStop434);
            tabs18.Append(tabStop435);
            tabs18.Append(tabStop436);
            tabs18.Append(tabStop437);
            tabs18.Append(tabStop438);
            tabs18.Append(tabStop439);
            tabs18.Append(tabStop440);
            tabs18.Append(tabStop441);
            tabs18.Append(tabStop442);
            tabs18.Append(tabStop443);
            tabs18.Append(tabStop444);
            tabs18.Append(tabStop445);
            tabs18.Append(tabStop446);
            tabs18.Append(tabStop447);
            tabs18.Append(tabStop448);
            tabs18.Append(tabStop449);
            tabs18.Append(tabStop450);
            ParagraphMarkRunProperties paragraphMarkRunProperties231 = new ParagraphMarkRunProperties();

            paragraphProperties231.Append(paragraphStyleId231);
            paragraphProperties231.Append(tabs18);
            paragraphProperties231.Append(paragraphMarkRunProperties231);

            Run run241 = new Run();

            RunProperties runProperties241 = new RunProperties();
            RunFonts runFonts5 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Bold bold19 = new Bold();
            FontSize fontSize317 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript317 = new FontSizeComplexScript() { Val = "26" };

            runProperties241.Append(runFonts5);
            runProperties241.Append(bold19);
            runProperties241.Append(fontSize317);
            runProperties241.Append(fontSizeComplexScript317);
            Text text133 = new Text();
            text133.Text = "1.6. Износ основных производственных фондов:";

            run241.Append(runProperties241);
            run241.Append(text133);

            paragraph231.Append(paragraphProperties231);
            paragraph231.Append(run241);

            tableCell176.Append(tableCellProperties176);
            tableCell176.Append(paragraph231);

            tableRow78.Append(tableRowProperties78);
            tableRow78.Append(tableCell176);

            TableRow tableRow79 = new TableRow();
            TableRowProperties tableRowProperties79 = new TableRowProperties();

            TableCell tableCell177 = new TableCell();

            TableCellProperties tableCellProperties177 = new TableCellProperties();
            TableCellWidth tableCellWidth177 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan177 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders177 = new TableCellBorders();
            TopBorder topBorder64 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder56 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder38 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder56 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder38 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder56 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders177.Append(topBorder64);
            tableCellBorders177.Append(startBorder56);
            tableCellBorders177.Append(bottomBorder38);
            tableCellBorders177.Append(endBorder56);
            tableCellBorders177.Append(insideHorizontalBorder38);
            tableCellBorders177.Append(insideVerticalBorder56);
            Shading shading351 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin56 = new TableCellMargin();
            StartMargin startMargin57 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin56.Append(startMargin57);

            tableCellProperties177.Append(tableCellWidth177);
            tableCellProperties177.Append(gridSpan177);
            tableCellProperties177.Append(tableCellBorders177);
            tableCellProperties177.Append(shading351);
            tableCellProperties177.Append(tableCellMargin56);

            Paragraph paragraph232 = new Paragraph();

            ParagraphProperties paragraphProperties232 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId232 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs19 = new Tabs();
            TabStop tabStop451 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop452 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop453 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop454 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop455 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop456 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop457 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop458 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop459 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop460 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop461 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop462 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop463 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop464 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop465 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop466 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop467 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop468 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop469 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop470 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop471 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop472 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop473 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop474 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop475 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs19.Append(tabStop451);
            tabs19.Append(tabStop452);
            tabs19.Append(tabStop453);
            tabs19.Append(tabStop454);
            tabs19.Append(tabStop455);
            tabs19.Append(tabStop456);
            tabs19.Append(tabStop457);
            tabs19.Append(tabStop458);
            tabs19.Append(tabStop459);
            tabs19.Append(tabStop460);
            tabs19.Append(tabStop461);
            tabs19.Append(tabStop462);
            tabs19.Append(tabStop463);
            tabs19.Append(tabStop464);
            tabs19.Append(tabStop465);
            tabs19.Append(tabStop466);
            tabs19.Append(tabStop467);
            tabs19.Append(tabStop468);
            tabs19.Append(tabStop469);
            tabs19.Append(tabStop470);
            tabs19.Append(tabStop471);
            tabs19.Append(tabStop472);
            tabs19.Append(tabStop473);
            tabs19.Append(tabStop474);
            tabs19.Append(tabStop475);
            Indentation indentation35 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties232 = new ParagraphMarkRunProperties();

            paragraphProperties232.Append(paragraphStyleId232);
            paragraphProperties232.Append(tabs19);
            paragraphProperties232.Append(indentation35);
            paragraphProperties232.Append(paragraphMarkRunProperties232);

            Run run242 = new Run();

            RunProperties runProperties242 = new RunProperties();
            RunFonts runFonts6 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize318 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript318 = new FontSizeComplexScript() { Val = "26" };

            runProperties242.Append(runFonts6);
            runProperties242.Append(fontSize318);
            runProperties242.Append(fontSizeComplexScript318);
            Text text134 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text134.Text = "Среднее значение морального и физического износа основного производственного оборудования, зданий и сооружений ";

            run242.Append(runProperties242);
            run242.Append(text134);

            paragraph232.Append(paragraphProperties232);
            paragraph232.Append(run242);

            Paragraph paragraph233 = new Paragraph();

            ParagraphProperties paragraphProperties233 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId233 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs20 = new Tabs();
            TabStop tabStop476 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop477 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop478 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop479 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop480 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop481 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop482 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop483 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop484 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop485 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop486 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop487 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop488 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop489 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop490 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop491 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop492 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop493 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop494 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop495 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop496 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop497 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop498 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop499 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop500 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs20.Append(tabStop476);
            tabs20.Append(tabStop477);
            tabs20.Append(tabStop478);
            tabs20.Append(tabStop479);
            tabs20.Append(tabStop480);
            tabs20.Append(tabStop481);
            tabs20.Append(tabStop482);
            tabs20.Append(tabStop483);
            tabs20.Append(tabStop484);
            tabs20.Append(tabStop485);
            tabs20.Append(tabStop486);
            tabs20.Append(tabStop487);
            tabs20.Append(tabStop488);
            tabs20.Append(tabStop489);
            tabs20.Append(tabStop490);
            tabs20.Append(tabStop491);
            tabs20.Append(tabStop492);
            tabs20.Append(tabStop493);
            tabs20.Append(tabStop494);
            tabs20.Append(tabStop495);
            tabs20.Append(tabStop496);
            tabs20.Append(tabStop497);
            tabs20.Append(tabStop498);
            tabs20.Append(tabStop499);
            tabs20.Append(tabStop500);
            Indentation indentation36 = new Indentation() { FirstLine = "459" };
            ParagraphMarkRunProperties paragraphMarkRunProperties233 = new ParagraphMarkRunProperties();

            paragraphProperties233.Append(paragraphStyleId233);
            paragraphProperties233.Append(tabs20);
            paragraphProperties233.Append(indentation36);
            paragraphProperties233.Append(paragraphMarkRunProperties233);

            Run run243 = new Run();

            RunProperties runProperties243 = new RunProperties();
            RunFonts runFonts7 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize319 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript319 = new FontSizeComplexScript() { Val = "26" };

            runProperties243.Append(runFonts7);
            runProperties243.Append(fontSize319);
            runProperties243.Append(fontSizeComplexScript319);
            Text text135 = new Text();
            text135.Text = "составляет 33 процента по состоянию на 30.06.2015";

            run243.Append(runProperties243);
            run243.Append(text135);

            paragraph233.Append(paragraphProperties233);
            paragraph233.Append(run243);

            tableCell177.Append(tableCellProperties177);
            tableCell177.Append(paragraph232);
            tableCell177.Append(paragraph233);

            tableRow79.Append(tableRowProperties79);
            tableRow79.Append(tableCell177);

            TableRow tableRow80 = new TableRow();
            TableRowProperties tableRowProperties80 = new TableRowProperties();

            TableCell tableCell178 = new TableCell();

            TableCellProperties tableCellProperties178 = new TableCellProperties();
            TableCellWidth tableCellWidth178 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan178 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders178 = new TableCellBorders();
            TopBorder topBorder65 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders178.Append(topBorder65);
            Shading shading352 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties178.Append(tableCellWidth178);
            tableCellProperties178.Append(gridSpan178);
            tableCellProperties178.Append(tableCellBorders178);
            tableCellProperties178.Append(shading352);

            Paragraph paragraph234 = new Paragraph();

            ParagraphProperties paragraphProperties234 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId234 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs21 = new Tabs();
            TabStop tabStop501 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop502 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop503 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop504 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop505 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop506 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop507 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop508 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop509 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop510 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop511 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop512 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop513 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop514 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop515 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop516 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop517 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop518 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop519 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop520 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop521 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop522 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop523 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop524 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop525 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs21.Append(tabStop501);
            tabs21.Append(tabStop502);
            tabs21.Append(tabStop503);
            tabs21.Append(tabStop504);
            tabs21.Append(tabStop505);
            tabs21.Append(tabStop506);
            tabs21.Append(tabStop507);
            tabs21.Append(tabStop508);
            tabs21.Append(tabStop509);
            tabs21.Append(tabStop510);
            tabs21.Append(tabStop511);
            tabs21.Append(tabStop512);
            tabs21.Append(tabStop513);
            tabs21.Append(tabStop514);
            tabs21.Append(tabStop515);
            tabs21.Append(tabStop516);
            tabs21.Append(tabStop517);
            tabs21.Append(tabStop518);
            tabs21.Append(tabStop519);
            tabs21.Append(tabStop520);
            tabs21.Append(tabStop521);
            tabs21.Append(tabStop522);
            tabs21.Append(tabStop523);
            tabs21.Append(tabStop524);
            tabs21.Append(tabStop525);
            Justification justification138 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties234 = new ParagraphMarkRunProperties();
            FontSize fontSize320 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript320 = new FontSizeComplexScript() { Val = "26" };
            Shading shading353 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };
            VerticalTextAlignment verticalTextAlignment2 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            paragraphMarkRunProperties234.Append(fontSize320);
            paragraphMarkRunProperties234.Append(fontSizeComplexScript320);
            paragraphMarkRunProperties234.Append(shading353);
            paragraphMarkRunProperties234.Append(verticalTextAlignment2);

            paragraphProperties234.Append(paragraphStyleId234);
            paragraphProperties234.Append(tabs21);
            paragraphProperties234.Append(justification138);
            paragraphProperties234.Append(paragraphMarkRunProperties234);

            Run run244 = new Run();

            RunProperties runProperties244 = new RunProperties();
            FontSize fontSize321 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript321 = new FontSizeComplexScript() { Val = "26" };
            Shading shading354 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };
            VerticalTextAlignment verticalTextAlignment3 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties244.Append(fontSize321);
            runProperties244.Append(fontSizeComplexScript321);
            runProperties244.Append(shading354);
            runProperties244.Append(verticalTextAlignment3);

            run244.Append(runProperties244);

            paragraph234.Append(paragraphProperties234);
            paragraph234.Append(run244);

            tableCell178.Append(tableCellProperties178);
            tableCell178.Append(paragraph234);

            tableRow80.Append(tableRowProperties80);
            tableRow80.Append(tableCell178);

            TableRow tableRow81 = new TableRow();
            TableRowProperties tableRowProperties81 = new TableRowProperties();

            TableCell tableCell179 = new TableCell();

            TableCellProperties tableCellProperties179 = new TableCellProperties();
            TableCellWidth tableCellWidth179 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan179 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders179 = new TableCellBorders();
            Shading shading355 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties179.Append(tableCellWidth179);
            tableCellProperties179.Append(gridSpan179);
            tableCellProperties179.Append(tableCellBorders179);
            tableCellProperties179.Append(shading355);

            Paragraph paragraph235 = new Paragraph();

            ParagraphProperties paragraphProperties235 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId235 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs22 = new Tabs();
            TabStop tabStop526 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop527 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop528 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop529 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop530 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop531 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop532 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop533 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop534 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop535 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop536 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop537 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop538 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop539 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop540 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop541 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop542 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop543 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop544 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop545 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop546 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop547 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop548 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop549 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop550 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs22.Append(tabStop526);
            tabs22.Append(tabStop527);
            tabs22.Append(tabStop528);
            tabs22.Append(tabStop529);
            tabs22.Append(tabStop530);
            tabs22.Append(tabStop531);
            tabs22.Append(tabStop532);
            tabs22.Append(tabStop533);
            tabs22.Append(tabStop534);
            tabs22.Append(tabStop535);
            tabs22.Append(tabStop536);
            tabs22.Append(tabStop537);
            tabs22.Append(tabStop538);
            tabs22.Append(tabStop539);
            tabs22.Append(tabStop540);
            tabs22.Append(tabStop541);
            tabs22.Append(tabStop542);
            tabs22.Append(tabStop543);
            tabs22.Append(tabStop544);
            tabs22.Append(tabStop545);
            tabs22.Append(tabStop546);
            tabs22.Append(tabStop547);
            tabs22.Append(tabStop548);
            tabs22.Append(tabStop549);
            tabs22.Append(tabStop550);
            ParagraphMarkRunProperties paragraphMarkRunProperties235 = new ParagraphMarkRunProperties();

            paragraphProperties235.Append(paragraphStyleId235);
            paragraphProperties235.Append(tabs22);
            paragraphProperties235.Append(paragraphMarkRunProperties235);

            Run run245 = new Run();

            RunProperties runProperties245 = new RunProperties();
            Bold bold20 = new Bold();
            FontSize fontSize322 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript322 = new FontSizeComplexScript() { Val = "26" };

            runProperties245.Append(bold20);
            runProperties245.Append(fontSize322);
            runProperties245.Append(fontSizeComplexScript322);
            Text text136 = new Text();
            text136.Text = "1.7. Наличие на объекте подразделения по защите государственной тайны и соблюдение режима секретности:";

            run245.Append(runProperties245);
            run245.Append(text136);

            paragraph235.Append(paragraphProperties235);
            paragraph235.Append(run245);

            tableCell179.Append(tableCellProperties179);
            tableCell179.Append(paragraph235);

            tableRow81.Append(tableRowProperties81);
            tableRow81.Append(tableCell179);

            TableRow tableRow82 = new TableRow();
            TableRowProperties tableRowProperties82 = new TableRowProperties();

            TableCell tableCell180 = new TableCell();

            TableCellProperties tableCellProperties180 = new TableCellProperties();
            TableCellWidth tableCellWidth180 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan180 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders180 = new TableCellBorders();
            TopBorder topBorder66 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder57 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder39 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder57 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder39 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder57 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders180.Append(topBorder66);
            tableCellBorders180.Append(startBorder57);
            tableCellBorders180.Append(bottomBorder39);
            tableCellBorders180.Append(endBorder57);
            tableCellBorders180.Append(insideHorizontalBorder39);
            tableCellBorders180.Append(insideVerticalBorder57);
            Shading shading356 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin57 = new TableCellMargin();
            StartMargin startMargin58 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin57.Append(startMargin58);

            tableCellProperties180.Append(tableCellWidth180);
            tableCellProperties180.Append(gridSpan180);
            tableCellProperties180.Append(tableCellBorders180);
            tableCellProperties180.Append(shading356);
            tableCellProperties180.Append(tableCellMargin57);

            Paragraph paragraph236 = new Paragraph();

            ParagraphProperties paragraphProperties236 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId236 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs23 = new Tabs();
            TabStop tabStop551 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop552 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop553 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop554 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop555 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop556 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop557 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop558 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop559 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop560 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop561 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop562 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop563 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop564 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop565 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop566 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop567 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop568 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop569 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop570 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop571 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop572 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop573 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop574 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop575 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs23.Append(tabStop551);
            tabs23.Append(tabStop552);
            tabs23.Append(tabStop553);
            tabs23.Append(tabStop554);
            tabs23.Append(tabStop555);
            tabs23.Append(tabStop556);
            tabs23.Append(tabStop557);
            tabs23.Append(tabStop558);
            tabs23.Append(tabStop559);
            tabs23.Append(tabStop560);
            tabs23.Append(tabStop561);
            tabs23.Append(tabStop562);
            tabs23.Append(tabStop563);
            tabs23.Append(tabStop564);
            tabs23.Append(tabStop565);
            tabs23.Append(tabStop566);
            tabs23.Append(tabStop567);
            tabs23.Append(tabStop568);
            tabs23.Append(tabStop569);
            tabs23.Append(tabStop570);
            tabs23.Append(tabStop571);
            tabs23.Append(tabStop572);
            tabs23.Append(tabStop573);
            tabs23.Append(tabStop574);
            tabs23.Append(tabStop575);
            ParagraphMarkRunProperties paragraphMarkRunProperties236 = new ParagraphMarkRunProperties();

            paragraphProperties236.Append(paragraphStyleId236);
            paragraphProperties236.Append(tabs23);
            paragraphProperties236.Append(paragraphMarkRunProperties236);

            Run run246 = new Run();

            RunProperties runProperties246 = new RunProperties();
            FontSize fontSize323 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript323 = new FontSizeComplexScript() { Val = "26" };

            runProperties246.Append(fontSize323);
            runProperties246.Append(fontSizeComplexScript323);
            Text text137 = new Text();
            text137.Text = "Подразделение по защите государственной тайны отсутствует.";

            run246.Append(runProperties246);
            run246.Append(text137);

            paragraph236.Append(paragraphProperties236);
            paragraph236.Append(run246);

            tableCell180.Append(tableCellProperties180);
            tableCell180.Append(paragraph236);

            tableRow82.Append(tableRowProperties82);
            tableRow82.Append(tableCell180);

            TableRow tableRow83 = new TableRow();
            TableRowProperties tableRowProperties83 = new TableRowProperties();

            TableCell tableCell181 = new TableCell();

            TableCellProperties tableCellProperties181 = new TableCellProperties();
            TableCellWidth tableCellWidth181 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan181 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders181 = new TableCellBorders();
            TopBorder topBorder67 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders181.Append(topBorder67);
            Shading shading357 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties181.Append(tableCellWidth181);
            tableCellProperties181.Append(gridSpan181);
            tableCellProperties181.Append(tableCellBorders181);
            tableCellProperties181.Append(shading357);

            Paragraph paragraph237 = new Paragraph();

            ParagraphProperties paragraphProperties237 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId237 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs24 = new Tabs();
            TabStop tabStop576 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop577 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop578 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop579 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop580 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop581 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop582 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop583 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop584 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop585 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop586 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop587 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop588 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop589 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop590 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop591 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop592 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop593 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop594 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop595 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop596 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop597 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop598 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop599 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop600 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs24.Append(tabStop576);
            tabs24.Append(tabStop577);
            tabs24.Append(tabStop578);
            tabs24.Append(tabStop579);
            tabs24.Append(tabStop580);
            tabs24.Append(tabStop581);
            tabs24.Append(tabStop582);
            tabs24.Append(tabStop583);
            tabs24.Append(tabStop584);
            tabs24.Append(tabStop585);
            tabs24.Append(tabStop586);
            tabs24.Append(tabStop587);
            tabs24.Append(tabStop588);
            tabs24.Append(tabStop589);
            tabs24.Append(tabStop590);
            tabs24.Append(tabStop591);
            tabs24.Append(tabStop592);
            tabs24.Append(tabStop593);
            tabs24.Append(tabStop594);
            tabs24.Append(tabStop595);
            tabs24.Append(tabStop596);
            tabs24.Append(tabStop597);
            tabs24.Append(tabStop598);
            tabs24.Append(tabStop599);
            tabs24.Append(tabStop600);
            Justification justification139 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties237 = new ParagraphMarkRunProperties();
            FontSize fontSize324 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript324 = new FontSizeComplexScript() { Val = "26" };
            Shading shading358 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties237.Append(fontSize324);
            paragraphMarkRunProperties237.Append(fontSizeComplexScript324);
            paragraphMarkRunProperties237.Append(shading358);

            paragraphProperties237.Append(paragraphStyleId237);
            paragraphProperties237.Append(tabs24);
            paragraphProperties237.Append(justification139);
            paragraphProperties237.Append(paragraphMarkRunProperties237);

            Run run247 = new Run();

            RunProperties runProperties247 = new RunProperties();
            FontSize fontSize325 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript325 = new FontSizeComplexScript() { Val = "26" };
            Shading shading359 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties247.Append(fontSize325);
            runProperties247.Append(fontSizeComplexScript325);
            runProperties247.Append(shading359);

            run247.Append(runProperties247);

            paragraph237.Append(paragraphProperties237);
            paragraph237.Append(run247);

            tableCell181.Append(tableCellProperties181);
            tableCell181.Append(paragraph237);

            tableRow83.Append(tableRowProperties83);
            tableRow83.Append(tableCell181);

            TableRow tableRow84 = new TableRow();
            TableRowProperties tableRowProperties84 = new TableRowProperties();

            TableCell tableCell182 = new TableCell();

            TableCellProperties tableCellProperties182 = new TableCellProperties();
            TableCellWidth tableCellWidth182 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan182 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders182 = new TableCellBorders();
            Shading shading360 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties182.Append(tableCellWidth182);
            tableCellProperties182.Append(gridSpan182);
            tableCellProperties182.Append(tableCellBorders182);
            tableCellProperties182.Append(shading360);

            Paragraph paragraph238 = new Paragraph();

            ParagraphProperties paragraphProperties238 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId238 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification140 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties238 = new ParagraphMarkRunProperties();

            paragraphProperties238.Append(paragraphStyleId238);
            paragraphProperties238.Append(justification140);
            paragraphProperties238.Append(paragraphMarkRunProperties238);

            Run run248 = new Run();

            RunProperties runProperties248 = new RunProperties();
            Bold bold21 = new Bold();
            FontSize fontSize326 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript326 = new FontSizeComplexScript() { Val = "26" };

            runProperties248.Append(bold21);
            runProperties248.Append(fontSize326);
            runProperties248.Append(fontSizeComplexScript326);
            Text text138 = new Text();
            text138.Text = "1.8. Характеристика местности и природно-климатические условия:";

            run248.Append(runProperties248);
            run248.Append(text138);

            paragraph238.Append(paragraphProperties238);
            paragraph238.Append(run248);

            tableCell182.Append(tableCellProperties182);
            tableCell182.Append(paragraph238);

            tableRow84.Append(tableRowProperties84);
            tableRow84.Append(tableCell182);

            TableRow tableRow85 = new TableRow();
            TableRowProperties tableRowProperties85 = new TableRowProperties();

            TableCell tableCell183 = new TableCell();

            TableCellProperties tableCellProperties183 = new TableCellProperties();
            TableCellWidth tableCellWidth183 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan183 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders183 = new TableCellBorders();
            Shading shading361 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties183.Append(tableCellWidth183);
            tableCellProperties183.Append(gridSpan183);
            tableCellProperties183.Append(tableCellBorders183);
            tableCellProperties183.Append(shading361);

            Paragraph paragraph239 = new Paragraph();

            ParagraphProperties paragraphProperties239 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId239 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation37 = new Indentation() { FirstLine = "601" };
            ParagraphMarkRunProperties paragraphMarkRunProperties239 = new ParagraphMarkRunProperties();

            paragraphProperties239.Append(paragraphStyleId239);
            paragraphProperties239.Append(indentation37);
            paragraphProperties239.Append(paragraphMarkRunProperties239);

            Run run249 = new Run();

            RunProperties runProperties249 = new RunProperties();
            RunFonts runFonts8 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize327 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript327 = new FontSizeComplexScript() { Val = "26" };

            runProperties249.Append(runFonts8);
            runProperties249.Append(fontSize327);
            runProperties249.Append(fontSizeComplexScript327);
            Text text139 = new Text();
            text139.Text = "Площадка объекта расположена в районе 71 км МКАД.";

            run249.Append(runProperties249);
            run249.Append(text139);
            BookmarkStart bookmarkStart1 = new BookmarkStart() { Name = "_GoBack", Id = "0" };
            BookmarkEnd bookmarkEnd1 = new BookmarkEnd() { Id = "0" };

            Run run250 = new Run();

            RunProperties runProperties250 = new RunProperties();
            RunFonts runFonts9 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize328 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript328 = new FontSizeComplexScript() { Val = "26" };

            runProperties250.Append(runFonts9);
            runProperties250.Append(fontSize328);
            runProperties250.Append(fontSizeComplexScript328);
            Text text140 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text140.Text = " Рельеф площадки ровный, спланированный. ";

            run250.Append(runProperties250);
            run250.Append(text140);

            paragraph239.Append(paragraphProperties239);
            paragraph239.Append(run249);
            paragraph239.Append(bookmarkStart1);
            paragraph239.Append(bookmarkEnd1);
            paragraph239.Append(run250);

            Paragraph paragraph240 = new Paragraph();

            ParagraphProperties paragraphProperties240 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId240 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties240 = new ParagraphMarkRunProperties();

            paragraphProperties240.Append(paragraphStyleId240);
            paragraphProperties240.Append(paragraphMarkRunProperties240);

            Run run251 = new Run();

            RunProperties runProperties251 = new RunProperties();
            RunFonts runFonts10 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize329 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript329 = new FontSizeComplexScript() { Val = "26" };

            runProperties251.Append(runFonts10);
            runProperties251.Append(fontSize329);
            runProperties251.Append(fontSizeComplexScript329);
            Text text141 = new Text();
            text141.Text = "Абсолютные отметки поверхности изменяются в пределах 124,5-152,2 м.";

            run251.Append(runProperties251);
            run251.Append(text141);

            paragraph240.Append(paragraphProperties240);
            paragraph240.Append(run251);

            Paragraph paragraph241 = new Paragraph();

            ParagraphProperties paragraphProperties241 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId241 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation38 = new Indentation() { FirstLine = "601" };
            ParagraphMarkRunProperties paragraphMarkRunProperties241 = new ParagraphMarkRunProperties();

            paragraphProperties241.Append(paragraphStyleId241);
            paragraphProperties241.Append(indentation38);
            paragraphProperties241.Append(paragraphMarkRunProperties241);

            Run run252 = new Run();

            RunProperties runProperties252 = new RunProperties();
            RunFonts runFonts11 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize330 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript330 = new FontSizeComplexScript() { Val = "26" };

            runProperties252.Append(runFonts11);
            runProperties252.Append(fontSize330);
            runProperties252.Append(fontSizeComplexScript330);
            Text text142 = new Text();
            text142.Text = "Территория частично покрыта асфальтобетонным покрытием. На территории имеются деревья, кустарники и газоны.";

            run252.Append(runProperties252);
            run252.Append(text142);

            paragraph241.Append(paragraphProperties241);
            paragraph241.Append(run252);

            Paragraph paragraph242 = new Paragraph();

            ParagraphProperties paragraphProperties242 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId242 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation39 = new Indentation() { FirstLine = "601" };
            ParagraphMarkRunProperties paragraphMarkRunProperties242 = new ParagraphMarkRunProperties();

            paragraphProperties242.Append(paragraphStyleId242);
            paragraphProperties242.Append(indentation39);
            paragraphProperties242.Append(paragraphMarkRunProperties242);

            Run run253 = new Run();

            RunProperties runProperties253 = new RunProperties();
            RunFonts runFonts12 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize331 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript331 = new FontSizeComplexScript() { Val = "26" };

            runProperties253.Append(runFonts12);
            runProperties253.Append(fontSize331);
            runProperties253.Append(fontSizeComplexScript331);
            Text text143 = new Text();
            text143.Text = "Неблагоприятные физико-геологические процессы, кроме сезонного промерзания грунтов и подтопления, на площадке отсутствуют.";

            run253.Append(runProperties253);
            run253.Append(text143);

            paragraph242.Append(paragraphProperties242);
            paragraph242.Append(run253);

            Paragraph paragraph243 = new Paragraph();

            ParagraphProperties paragraphProperties243 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId243 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation40 = new Indentation() { FirstLine = "601" };
            ParagraphMarkRunProperties paragraphMarkRunProperties243 = new ParagraphMarkRunProperties();

            paragraphProperties243.Append(paragraphStyleId243);
            paragraphProperties243.Append(indentation40);
            paragraphProperties243.Append(paragraphMarkRunProperties243);

            Run run254 = new Run();

            RunProperties runProperties254 = new RunProperties();
            RunFonts runFonts13 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize332 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript332 = new FontSizeComplexScript() { Val = "26" };

            runProperties254.Append(runFonts13);
            runProperties254.Append(fontSize332);
            runProperties254.Append(fontSizeComplexScript332);
            Text text144 = new Text();
            text144.Text = "Участок расположен в Северо-Западном административном округе г. Москвы, имеющим развитую транспортную инфраструктуру.";

            run254.Append(runProperties254);
            run254.Append(text144);

            paragraph243.Append(paragraphProperties243);
            paragraph243.Append(run254);

            Paragraph paragraph244 = new Paragraph();

            ParagraphProperties paragraphProperties244 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId244 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification141 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties244 = new ParagraphMarkRunProperties();

            paragraphProperties244.Append(paragraphStyleId244);
            paragraphProperties244.Append(justification141);
            paragraphProperties244.Append(paragraphMarkRunProperties244);

            Run run255 = new Run();

            RunProperties runProperties255 = new RunProperties();
            RunFonts runFonts14 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            FontSize fontSize333 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript333 = new FontSizeComplexScript() { Val = "26" };

            runProperties255.Append(runFonts14);
            runProperties255.Append(fontSize333);
            runProperties255.Append(fontSizeComplexScript333);
            Text text145 = new Text();
            text145.Text = "Подъезд технологического транспорта, строительной техники и пожарных машин к станции предусмотрен с ул. Вилиса Лациса.";

            run255.Append(runProperties255);
            run255.Append(text145);

            paragraph244.Append(paragraphProperties244);
            paragraph244.Append(run255);

            Paragraph paragraph245 = new Paragraph();

            ParagraphProperties paragraphProperties245 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId245 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification142 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties245 = new ParagraphMarkRunProperties();

            paragraphProperties245.Append(paragraphStyleId245);
            paragraphProperties245.Append(justification142);
            paragraphProperties245.Append(paragraphMarkRunProperties245);

            Run run256 = new Run();

            RunProperties runProperties256 = new RunProperties();
            RunFonts runFonts15 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Bold bold22 = new Bold();
            FontSize fontSize334 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript334 = new FontSizeComplexScript() { Val = "26" };

            runProperties256.Append(runFonts15);
            runProperties256.Append(bold22);
            runProperties256.Append(fontSize334);
            runProperties256.Append(fontSizeComplexScript334);
            Text text146 = new Text();
            text146.Text = "Климатические особенности района.";

            run256.Append(runProperties256);
            run256.Append(text146);

            paragraph245.Append(paragraphProperties245);
            paragraph245.Append(run256);

            Paragraph paragraph246 = new Paragraph();

            ParagraphProperties paragraphProperties246 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId246 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation41 = new Indentation() { FirstLine = "601" };
            Justification justification143 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties246 = new ParagraphMarkRunProperties();

            paragraphProperties246.Append(paragraphStyleId246);
            paragraphProperties246.Append(indentation41);
            paragraphProperties246.Append(justification143);
            paragraphProperties246.Append(paragraphMarkRunProperties246);

            Run run257 = new Run();

            RunProperties runProperties257 = new RunProperties();
            RunFonts runFonts16 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Spacing spacing1 = new Spacing() { Val = 0 };
            FontSize fontSize335 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript335 = new FontSizeComplexScript() { Val = "26" };

            runProperties257.Append(runFonts16);
            runProperties257.Append(spacing1);
            runProperties257.Append(fontSize335);
            runProperties257.Append(fontSizeComplexScript335);
            Text text147 = new Text();
            text147.Text = "Средняя скорость ветра - 3,5 м/с, в зимние месяцы - 5-7 м/с, в летние месяцы - 3-5 м/с; сильные ветры дуют 10-15 дней в году, достигают скорости 10 м/с, в тёплое время преобладают юго-восточные ветра, в холодное время – западные.";

            run257.Append(runProperties257);
            run257.Append(text147);

            paragraph246.Append(paragraphProperties246);
            paragraph246.Append(run257);

            Paragraph paragraph247 = new Paragraph();

            ParagraphProperties paragraphProperties247 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId247 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation42 = new Indentation() { FirstLine = "601" };
            Justification justification144 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties247 = new ParagraphMarkRunProperties();

            paragraphProperties247.Append(paragraphStyleId247);
            paragraphProperties247.Append(indentation42);
            paragraphProperties247.Append(justification144);
            paragraphProperties247.Append(paragraphMarkRunProperties247);

            Run run258 = new Run();

            RunProperties runProperties258 = new RunProperties();
            RunFonts runFonts17 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Spacing spacing2 = new Spacing() { Val = 0 };
            FontSize fontSize336 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript336 = new FontSizeComplexScript() { Val = "26" };

            runProperties258.Append(runFonts17);
            runProperties258.Append(spacing2);
            runProperties258.Append(fontSize336);
            runProperties258.Append(fontSizeComplexScript336);
            Text text148 = new Text();
            text148.Text = "Годовая сумма осадков в среднем 650-700 мм, около 40% выпадает в холодный период года с ноября по март, 60% - в течение апреля - октября, максимальное выпадение осадков - в июне - до 90 мм и в июле – августе – 80 мм.";

            run258.Append(runProperties258);
            run258.Append(text148);

            paragraph247.Append(paragraphProperties247);
            paragraph247.Append(run258);

            Paragraph paragraph248 = new Paragraph();

            ParagraphProperties paragraphProperties248 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId248 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation43 = new Indentation() { FirstLine = "601" };
            Justification justification145 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties248 = new ParagraphMarkRunProperties();

            paragraphProperties248.Append(paragraphStyleId248);
            paragraphProperties248.Append(indentation43);
            paragraphProperties248.Append(justification145);
            paragraphProperties248.Append(paragraphMarkRunProperties248);

            Run run259 = new Run();

            RunProperties runProperties259 = new RunProperties();
            RunFonts runFonts18 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Spacing spacing3 = new Spacing() { Val = 0 };
            FontSize fontSize337 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript337 = new FontSizeComplexScript() { Val = "26" };

            runProperties259.Append(runFonts18);
            runProperties259.Append(spacing3);
            runProperties259.Append(fontSize337);
            runProperties259.Append(fontSizeComplexScript337);
            Text text149 = new Text();
            text149.Text = "Средняя годовая температура - 3,3○С, средняя температура января – (минус) 10○С (рекордная – (минус) 35○С) , июля - 20○С (рекордная +35○С).";

            run259.Append(runProperties259);
            run259.Append(text149);

            paragraph248.Append(paragraphProperties248);
            paragraph248.Append(run259);

            Paragraph paragraph249 = new Paragraph();

            ParagraphProperties paragraphProperties249 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId249 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs25 = new Tabs();
            TabStop tabStop601 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 720 };
            TabStop tabStop602 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 1440 };
            TabStop tabStop603 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2160 };
            TabStop tabStop604 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2880 };
            TabStop tabStop605 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 3600 };
            TabStop tabStop606 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 4320 };
            TabStop tabStop607 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5040 };
            TabStop tabStop608 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 5760 };
            TabStop tabStop609 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 6480 };
            TabStop tabStop610 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7200 };
            TabStop tabStop611 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 7920 };
            TabStop tabStop612 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 8640 };
            TabStop tabStop613 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 9360 };
            TabStop tabStop614 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10080 };
            TabStop tabStop615 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 10800 };
            TabStop tabStop616 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 11520 };
            TabStop tabStop617 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12240 };
            TabStop tabStop618 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 12960 };
            TabStop tabStop619 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 13680 };
            TabStop tabStop620 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 14400 };
            TabStop tabStop621 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15120 };
            TabStop tabStop622 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 15840 };
            TabStop tabStop623 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 16560 };
            TabStop tabStop624 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 17280 };
            TabStop tabStop625 = new TabStop() { Val = TabStopValues.Right, Leader = TabStopLeaderCharValues.None, Position = 20135 };

            tabs25.Append(tabStop601);
            tabs25.Append(tabStop602);
            tabs25.Append(tabStop603);
            tabs25.Append(tabStop604);
            tabs25.Append(tabStop605);
            tabs25.Append(tabStop606);
            tabs25.Append(tabStop607);
            tabs25.Append(tabStop608);
            tabs25.Append(tabStop609);
            tabs25.Append(tabStop610);
            tabs25.Append(tabStop611);
            tabs25.Append(tabStop612);
            tabs25.Append(tabStop613);
            tabs25.Append(tabStop614);
            tabs25.Append(tabStop615);
            tabs25.Append(tabStop616);
            tabs25.Append(tabStop617);
            tabs25.Append(tabStop618);
            tabs25.Append(tabStop619);
            tabs25.Append(tabStop620);
            tabs25.Append(tabStop621);
            tabs25.Append(tabStop622);
            tabs25.Append(tabStop623);
            tabs25.Append(tabStop624);
            tabs25.Append(tabStop625);
            Indentation indentation44 = new Indentation() { FirstLine = "459" };
            Justification justification146 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties249 = new ParagraphMarkRunProperties();

            paragraphProperties249.Append(paragraphStyleId249);
            paragraphProperties249.Append(tabs25);
            paragraphProperties249.Append(indentation44);
            paragraphProperties249.Append(justification146);
            paragraphProperties249.Append(paragraphMarkRunProperties249);

            Run run260 = new Run();

            RunProperties runProperties260 = new RunProperties();
            RunFonts runFonts19 = new RunFonts() { EastAsia = "", EastAsiaTheme = ThemeFontValues.MinorEastAsia };
            Spacing spacing4 = new Spacing() { Val = 0 };
            FontSize fontSize338 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript338 = new FontSizeComplexScript() { Val = "26" };

            runProperties260.Append(runFonts19);
            runProperties260.Append(spacing4);
            runProperties260.Append(fontSize338);
            runProperties260.Append(fontSizeComplexScript338);
            Text text150 = new Text();
            text150.Text = "Относительная влажность воздуха в течение всего года повышенная до 83%, в период с мая по июнь - 55-60%.";

            run260.Append(runProperties260);
            run260.Append(text150);

            paragraph249.Append(paragraphProperties249);
            paragraph249.Append(run260);

            tableCell183.Append(tableCellProperties183);
            tableCell183.Append(paragraph239);
            tableCell183.Append(paragraph240);
            tableCell183.Append(paragraph241);
            tableCell183.Append(paragraph242);
            tableCell183.Append(paragraph243);
            tableCell183.Append(paragraph244);
            tableCell183.Append(paragraph245);
            tableCell183.Append(paragraph246);
            tableCell183.Append(paragraph247);
            tableCell183.Append(paragraph248);
            tableCell183.Append(paragraph249);

            tableRow85.Append(tableRowProperties85);
            tableRow85.Append(tableCell183);

            TableRow tableRow86 = new TableRow();

            TableRowProperties tableRowProperties86 = new TableRowProperties();
            TableRowHeight tableRowHeight1 = new TableRowHeight() { Val = (UInt32Value)717U, HeightType = HeightRuleValues.AtLeast };

            tableRowProperties86.Append(tableRowHeight1);

            TableCell tableCell184 = new TableCell();

            TableCellProperties tableCellProperties184 = new TableCellProperties();
            TableCellWidth tableCellWidth184 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan184 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders184 = new TableCellBorders();
            Shading shading362 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties184.Append(tableCellWidth184);
            tableCellProperties184.Append(gridSpan184);
            tableCellProperties184.Append(tableCellBorders184);
            tableCellProperties184.Append(shading362);

            Paragraph paragraph250 = new Paragraph();

            ParagraphProperties paragraphProperties250 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId250 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation45 = new Indentation() { FirstLine = "459" };
            Justification justification147 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties250 = new ParagraphMarkRunProperties();

            paragraphProperties250.Append(paragraphStyleId250);
            paragraphProperties250.Append(indentation45);
            paragraphProperties250.Append(justification147);
            paragraphProperties250.Append(paragraphMarkRunProperties250);

            Run run261 = new Run();

            RunProperties runProperties261 = new RunProperties();
            FontSize fontSize339 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript339 = new FontSizeComplexScript() { Val = "26" };

            runProperties261.Append(fontSize339);
            runProperties261.Append(fontSizeComplexScript339);
            Text text151 = new Text();
            text151.Text = "Сезонные и среднегодовые климатические характеристики.";

            run261.Append(runProperties261);
            run261.Append(text151);

            paragraph250.Append(paragraphProperties250);
            paragraph250.Append(run261);

            Paragraph paragraph251 = new Paragraph();

            ParagraphProperties paragraphProperties251 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId251 = new ParagraphStyleId() { Val = "Normal" };
            Indentation indentation46 = new Indentation() { FirstLine = "459" };
            Justification justification148 = new Justification() { Val = JustificationValues.Both };
            ParagraphMarkRunProperties paragraphMarkRunProperties251 = new ParagraphMarkRunProperties();

            paragraphProperties251.Append(paragraphStyleId251);
            paragraphProperties251.Append(indentation46);
            paragraphProperties251.Append(justification148);
            paragraphProperties251.Append(paragraphMarkRunProperties251);

            Run run262 = new Run();

            RunProperties runProperties262 = new RunProperties();
            FontSize fontSize340 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript340 = new FontSizeComplexScript() { Val = "26" };

            runProperties262.Append(fontSize340);
            runProperties262.Append(fontSizeComplexScript340);
            Text text152 = new Text();
            text152.Text = "Температура воздуха.";

            run262.Append(runProperties262);
            run262.Append(text152);

            paragraph251.Append(paragraphProperties251);
            paragraph251.Append(run262);

            tableCell184.Append(tableCellProperties184);
            tableCell184.Append(paragraph250);
            tableCell184.Append(paragraph251);

            tableRow86.Append(tableRowProperties86);
            tableRow86.Append(tableCell184);

            TableRow tableRow87 = new TableRow();
            TableRowProperties tableRowProperties87 = new TableRowProperties();

            TableCell tableCell185 = new TableCell();

            TableCellProperties tableCellProperties185 = new TableCellProperties();
            TableCellWidth tableCellWidth185 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan185 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders185 = new TableCellBorders();
            TopBorder topBorder68 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder40 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder40 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders185.Append(topBorder68);
            tableCellBorders185.Append(bottomBorder40);
            tableCellBorders185.Append(insideHorizontalBorder40);
            Shading shading363 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties185.Append(tableCellWidth185);
            tableCellProperties185.Append(gridSpan185);
            tableCellProperties185.Append(tableCellBorders185);
            tableCellProperties185.Append(shading363);

            Paragraph paragraph252 = new Paragraph();

            ParagraphProperties paragraphProperties252 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId252 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties252 = new ParagraphMarkRunProperties();

            paragraphProperties252.Append(paragraphStyleId252);
            paragraphProperties252.Append(paragraphMarkRunProperties252);

            Run run263 = new Run();

            RunProperties runProperties263 = new RunProperties();
            FontSize fontSize341 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript341 = new FontSizeComplexScript() { Val = "26" };

            runProperties263.Append(fontSize341);
            runProperties263.Append(fontSizeComplexScript341);
            Text text153 = new Text();
            text153.Text = "Средняя месячная и годовая температура воздуха по СП 131.13330.2012, °С.";

            run263.Append(runProperties263);
            run263.Append(text153);

            paragraph252.Append(paragraphProperties252);
            paragraph252.Append(run263);

            tableCell185.Append(tableCellProperties185);
            tableCell185.Append(paragraph252);

            tableRow87.Append(tableRowProperties87);
            tableRow87.Append(tableCell185);

            TableRow tableRow88 = new TableRow();
            TableRowProperties tableRowProperties88 = new TableRowProperties();

            TableCell tableCell186 = new TableCell();

            TableCellProperties tableCellProperties186 = new TableCellProperties();
            TableCellWidth tableCellWidth186 = new TableCellWidth() { Width = "1295", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan186 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders186 = new TableCellBorders();
            TopBorder topBorder69 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder58 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder41 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder58 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder41 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder58 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders186.Append(topBorder69);
            tableCellBorders186.Append(startBorder58);
            tableCellBorders186.Append(bottomBorder41);
            tableCellBorders186.Append(endBorder58);
            tableCellBorders186.Append(insideHorizontalBorder41);
            tableCellBorders186.Append(insideVerticalBorder58);
            Shading shading364 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin58 = new TableCellMargin();
            StartMargin startMargin59 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin58.Append(startMargin59);

            tableCellProperties186.Append(tableCellWidth186);
            tableCellProperties186.Append(gridSpan186);
            tableCellProperties186.Append(tableCellBorders186);
            tableCellProperties186.Append(shading364);
            tableCellProperties186.Append(tableCellMargin58);

            Paragraph paragraph253 = new Paragraph();

            ParagraphProperties paragraphProperties253 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId253 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties253 = new ParagraphMarkRunProperties();

            paragraphProperties253.Append(paragraphStyleId253);
            paragraphProperties253.Append(paragraphMarkRunProperties253);

            Run run264 = new Run();

            RunProperties runProperties264 = new RunProperties();
            FontSize fontSize342 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript342 = new FontSizeComplexScript() { Val = "20" };

            runProperties264.Append(fontSize342);
            runProperties264.Append(fontSizeComplexScript342);
            Text text154 = new Text();
            text154.Text = "Республика, край, область, пункт";

            run264.Append(runProperties264);
            run264.Append(text154);

            paragraph253.Append(paragraphProperties253);
            paragraph253.Append(run264);

            tableCell186.Append(tableCellProperties186);
            tableCell186.Append(paragraph253);

            TableCell tableCell187 = new TableCell();

            TableCellProperties tableCellProperties187 = new TableCellProperties();
            TableCellWidth tableCellWidth187 = new TableCellWidth() { Width = "491", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan187 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders187 = new TableCellBorders();
            TopBorder topBorder70 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder59 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder42 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder42 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders187.Append(topBorder70);
            tableCellBorders187.Append(startBorder59);
            tableCellBorders187.Append(bottomBorder42);
            tableCellBorders187.Append(insideHorizontalBorder42);
            Shading shading365 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin59 = new TableCellMargin();
            StartMargin startMargin60 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin59.Append(startMargin60);

            tableCellProperties187.Append(tableCellWidth187);
            tableCellProperties187.Append(gridSpan187);
            tableCellProperties187.Append(tableCellBorders187);
            tableCellProperties187.Append(shading365);
            tableCellProperties187.Append(tableCellMargin59);

            Paragraph paragraph254 = new Paragraph();

            ParagraphProperties paragraphProperties254 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId254 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties254 = new ParagraphMarkRunProperties();

            paragraphProperties254.Append(paragraphStyleId254);
            paragraphProperties254.Append(paragraphMarkRunProperties254);

            Run run265 = new Run();

            RunProperties runProperties265 = new RunProperties();
            FontSize fontSize343 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript343 = new FontSizeComplexScript() { Val = "20" };

            runProperties265.Append(fontSize343);
            runProperties265.Append(fontSizeComplexScript343);
            Text text155 = new Text();
            text155.Text = "I";

            run265.Append(runProperties265);
            run265.Append(text155);

            paragraph254.Append(paragraphProperties254);
            paragraph254.Append(run265);

            tableCell187.Append(tableCellProperties187);
            tableCell187.Append(paragraph254);

            TableCell tableCell188 = new TableCell();

            TableCellProperties tableCellProperties188 = new TableCellProperties();
            TableCellWidth tableCellWidth188 = new TableCellWidth() { Width = "649", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan188 = new GridSpan() { Val = 4 };

            TableCellBorders tableCellBorders188 = new TableCellBorders();
            TopBorder topBorder71 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder60 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder43 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder43 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders188.Append(topBorder71);
            tableCellBorders188.Append(startBorder60);
            tableCellBorders188.Append(bottomBorder43);
            tableCellBorders188.Append(insideHorizontalBorder43);
            Shading shading366 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin60 = new TableCellMargin();
            StartMargin startMargin61 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin60.Append(startMargin61);

            tableCellProperties188.Append(tableCellWidth188);
            tableCellProperties188.Append(gridSpan188);
            tableCellProperties188.Append(tableCellBorders188);
            tableCellProperties188.Append(shading366);
            tableCellProperties188.Append(tableCellMargin60);

            Paragraph paragraph255 = new Paragraph();

            ParagraphProperties paragraphProperties255 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId255 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties255 = new ParagraphMarkRunProperties();

            paragraphProperties255.Append(paragraphStyleId255);
            paragraphProperties255.Append(paragraphMarkRunProperties255);

            Run run266 = new Run();

            RunProperties runProperties266 = new RunProperties();
            FontSize fontSize344 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript344 = new FontSizeComplexScript() { Val = "20" };

            runProperties266.Append(fontSize344);
            runProperties266.Append(fontSizeComplexScript344);
            Text text156 = new Text();
            text156.Text = "II";

            run266.Append(runProperties266);
            run266.Append(text156);

            paragraph255.Append(paragraphProperties255);
            paragraph255.Append(run266);

            tableCell188.Append(tableCellProperties188);
            tableCell188.Append(paragraph255);

            TableCell tableCell189 = new TableCell();

            TableCellProperties tableCellProperties189 = new TableCellProperties();
            TableCellWidth tableCellWidth189 = new TableCellWidth() { Width = "686", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan189 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders189 = new TableCellBorders();
            TopBorder topBorder72 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder61 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder44 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder44 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders189.Append(topBorder72);
            tableCellBorders189.Append(startBorder61);
            tableCellBorders189.Append(bottomBorder44);
            tableCellBorders189.Append(insideHorizontalBorder44);
            Shading shading367 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin61 = new TableCellMargin();
            StartMargin startMargin62 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin61.Append(startMargin62);

            tableCellProperties189.Append(tableCellWidth189);
            tableCellProperties189.Append(gridSpan189);
            tableCellProperties189.Append(tableCellBorders189);
            tableCellProperties189.Append(shading367);
            tableCellProperties189.Append(tableCellMargin61);

            Paragraph paragraph256 = new Paragraph();

            ParagraphProperties paragraphProperties256 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId256 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties256 = new ParagraphMarkRunProperties();

            paragraphProperties256.Append(paragraphStyleId256);
            paragraphProperties256.Append(paragraphMarkRunProperties256);

            Run run267 = new Run();

            RunProperties runProperties267 = new RunProperties();
            FontSize fontSize345 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript345 = new FontSizeComplexScript() { Val = "20" };

            runProperties267.Append(fontSize345);
            runProperties267.Append(fontSizeComplexScript345);
            Text text157 = new Text();
            text157.Text = "III";

            run267.Append(runProperties267);
            run267.Append(text157);

            paragraph256.Append(paragraphProperties256);
            paragraph256.Append(run267);

            tableCell189.Append(tableCellProperties189);
            tableCell189.Append(paragraph256);

            TableCell tableCell190 = new TableCell();

            TableCellProperties tableCellProperties190 = new TableCellProperties();
            TableCellWidth tableCellWidth190 = new TableCellWidth() { Width = "628", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan190 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders190 = new TableCellBorders();
            TopBorder topBorder73 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder62 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder45 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder45 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders190.Append(topBorder73);
            tableCellBorders190.Append(startBorder62);
            tableCellBorders190.Append(bottomBorder45);
            tableCellBorders190.Append(insideHorizontalBorder45);
            Shading shading368 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin62 = new TableCellMargin();
            StartMargin startMargin63 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin62.Append(startMargin63);

            tableCellProperties190.Append(tableCellWidth190);
            tableCellProperties190.Append(gridSpan190);
            tableCellProperties190.Append(tableCellBorders190);
            tableCellProperties190.Append(shading368);
            tableCellProperties190.Append(tableCellMargin62);

            Paragraph paragraph257 = new Paragraph();

            ParagraphProperties paragraphProperties257 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId257 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties257 = new ParagraphMarkRunProperties();

            paragraphProperties257.Append(paragraphStyleId257);
            paragraphProperties257.Append(paragraphMarkRunProperties257);

            Run run268 = new Run();

            RunProperties runProperties268 = new RunProperties();
            FontSize fontSize346 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript346 = new FontSizeComplexScript() { Val = "20" };

            runProperties268.Append(fontSize346);
            runProperties268.Append(fontSizeComplexScript346);
            Text text158 = new Text();
            text158.Text = "IV";

            run268.Append(runProperties268);
            run268.Append(text158);

            paragraph257.Append(paragraphProperties257);
            paragraph257.Append(run268);

            tableCell190.Append(tableCellProperties190);
            tableCell190.Append(paragraph257);

            TableCell tableCell191 = new TableCell();

            TableCellProperties tableCellProperties191 = new TableCellProperties();
            TableCellWidth tableCellWidth191 = new TableCellWidth() { Width = "1016", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan191 = new GridSpan() { Val = 5 };

            TableCellBorders tableCellBorders191 = new TableCellBorders();
            TopBorder topBorder74 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder63 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder46 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder46 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders191.Append(topBorder74);
            tableCellBorders191.Append(startBorder63);
            tableCellBorders191.Append(bottomBorder46);
            tableCellBorders191.Append(insideHorizontalBorder46);
            Shading shading369 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin63 = new TableCellMargin();
            StartMargin startMargin64 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin63.Append(startMargin64);

            tableCellProperties191.Append(tableCellWidth191);
            tableCellProperties191.Append(gridSpan191);
            tableCellProperties191.Append(tableCellBorders191);
            tableCellProperties191.Append(shading369);
            tableCellProperties191.Append(tableCellMargin63);

            Paragraph paragraph258 = new Paragraph();

            ParagraphProperties paragraphProperties258 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId258 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties258 = new ParagraphMarkRunProperties();

            paragraphProperties258.Append(paragraphStyleId258);
            paragraphProperties258.Append(paragraphMarkRunProperties258);

            Run run269 = new Run();

            RunProperties runProperties269 = new RunProperties();
            FontSize fontSize347 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript347 = new FontSizeComplexScript() { Val = "20" };

            runProperties269.Append(fontSize347);
            runProperties269.Append(fontSizeComplexScript347);
            Text text159 = new Text();
            text159.Text = "V";

            run269.Append(runProperties269);
            run269.Append(text159);

            paragraph258.Append(paragraphProperties258);
            paragraph258.Append(run269);

            tableCell191.Append(tableCellProperties191);
            tableCell191.Append(paragraph258);

            TableCell tableCell192 = new TableCell();

            TableCellProperties tableCellProperties192 = new TableCellProperties();
            TableCellWidth tableCellWidth192 = new TableCellWidth() { Width = "326", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan192 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders192 = new TableCellBorders();
            TopBorder topBorder75 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder64 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder47 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder47 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders192.Append(topBorder75);
            tableCellBorders192.Append(startBorder64);
            tableCellBorders192.Append(bottomBorder47);
            tableCellBorders192.Append(insideHorizontalBorder47);
            Shading shading370 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin64 = new TableCellMargin();
            StartMargin startMargin65 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin64.Append(startMargin65);

            tableCellProperties192.Append(tableCellWidth192);
            tableCellProperties192.Append(gridSpan192);
            tableCellProperties192.Append(tableCellBorders192);
            tableCellProperties192.Append(shading370);
            tableCellProperties192.Append(tableCellMargin64);

            Paragraph paragraph259 = new Paragraph();

            ParagraphProperties paragraphProperties259 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId259 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties259 = new ParagraphMarkRunProperties();

            paragraphProperties259.Append(paragraphStyleId259);
            paragraphProperties259.Append(paragraphMarkRunProperties259);

            Run run270 = new Run();

            RunProperties runProperties270 = new RunProperties();
            FontSize fontSize348 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript348 = new FontSizeComplexScript() { Val = "20" };

            runProperties270.Append(fontSize348);
            runProperties270.Append(fontSizeComplexScript348);
            Text text160 = new Text();
            text160.Text = "VI";

            run270.Append(runProperties270);
            run270.Append(text160);

            paragraph259.Append(paragraphProperties259);
            paragraph259.Append(run270);

            tableCell192.Append(tableCellProperties192);
            tableCell192.Append(paragraph259);

            TableCell tableCell193 = new TableCell();

            TableCellProperties tableCellProperties193 = new TableCellProperties();
            TableCellWidth tableCellWidth193 = new TableCellWidth() { Width = "618", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan193 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders193 = new TableCellBorders();
            TopBorder topBorder76 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder65 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder48 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder48 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders193.Append(topBorder76);
            tableCellBorders193.Append(startBorder65);
            tableCellBorders193.Append(bottomBorder48);
            tableCellBorders193.Append(insideHorizontalBorder48);
            Shading shading371 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin65 = new TableCellMargin();
            StartMargin startMargin66 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin65.Append(startMargin66);

            tableCellProperties193.Append(tableCellWidth193);
            tableCellProperties193.Append(gridSpan193);
            tableCellProperties193.Append(tableCellBorders193);
            tableCellProperties193.Append(shading371);
            tableCellProperties193.Append(tableCellMargin65);

            Paragraph paragraph260 = new Paragraph();

            ParagraphProperties paragraphProperties260 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId260 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties260 = new ParagraphMarkRunProperties();

            paragraphProperties260.Append(paragraphStyleId260);
            paragraphProperties260.Append(paragraphMarkRunProperties260);

            Run run271 = new Run();

            RunProperties runProperties271 = new RunProperties();
            FontSize fontSize349 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript349 = new FontSizeComplexScript() { Val = "20" };

            runProperties271.Append(fontSize349);
            runProperties271.Append(fontSizeComplexScript349);
            Text text161 = new Text();
            text161.Text = "VII";

            run271.Append(runProperties271);
            run271.Append(text161);

            paragraph260.Append(paragraphProperties260);
            paragraph260.Append(run271);

            tableCell193.Append(tableCellProperties193);
            tableCell193.Append(paragraph260);

            TableCell tableCell194 = new TableCell();

            TableCellProperties tableCellProperties194 = new TableCellProperties();
            TableCellWidth tableCellWidth194 = new TableCellWidth() { Width = "657", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan194 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders194 = new TableCellBorders();
            TopBorder topBorder77 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder66 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder49 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder49 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders194.Append(topBorder77);
            tableCellBorders194.Append(startBorder66);
            tableCellBorders194.Append(bottomBorder49);
            tableCellBorders194.Append(insideHorizontalBorder49);
            Shading shading372 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin66 = new TableCellMargin();
            StartMargin startMargin67 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin66.Append(startMargin67);

            tableCellProperties194.Append(tableCellWidth194);
            tableCellProperties194.Append(gridSpan194);
            tableCellProperties194.Append(tableCellBorders194);
            tableCellProperties194.Append(shading372);
            tableCellProperties194.Append(tableCellMargin66);

            Paragraph paragraph261 = new Paragraph();

            ParagraphProperties paragraphProperties261 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId261 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties261 = new ParagraphMarkRunProperties();

            paragraphProperties261.Append(paragraphStyleId261);
            paragraphProperties261.Append(paragraphMarkRunProperties261);

            Run run272 = new Run();

            RunProperties runProperties272 = new RunProperties();
            FontSize fontSize350 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript350 = new FontSizeComplexScript() { Val = "20" };

            runProperties272.Append(fontSize350);
            runProperties272.Append(fontSizeComplexScript350);
            Text text162 = new Text();
            text162.Text = "VIII";

            run272.Append(runProperties272);
            run272.Append(text162);

            paragraph261.Append(paragraphProperties261);
            paragraph261.Append(run272);

            tableCell194.Append(tableCellProperties194);
            tableCell194.Append(paragraph261);

            TableCell tableCell195 = new TableCell();

            TableCellProperties tableCellProperties195 = new TableCellProperties();
            TableCellWidth tableCellWidth195 = new TableCellWidth() { Width = "663", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan195 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders195 = new TableCellBorders();
            TopBorder topBorder78 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder67 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder50 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder50 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders195.Append(topBorder78);
            tableCellBorders195.Append(startBorder67);
            tableCellBorders195.Append(bottomBorder50);
            tableCellBorders195.Append(insideHorizontalBorder50);
            Shading shading373 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin67 = new TableCellMargin();
            StartMargin startMargin68 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin67.Append(startMargin68);

            tableCellProperties195.Append(tableCellWidth195);
            tableCellProperties195.Append(gridSpan195);
            tableCellProperties195.Append(tableCellBorders195);
            tableCellProperties195.Append(shading373);
            tableCellProperties195.Append(tableCellMargin67);

            Paragraph paragraph262 = new Paragraph();

            ParagraphProperties paragraphProperties262 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId262 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties262 = new ParagraphMarkRunProperties();

            paragraphProperties262.Append(paragraphStyleId262);
            paragraphProperties262.Append(paragraphMarkRunProperties262);

            Run run273 = new Run();

            RunProperties runProperties273 = new RunProperties();
            FontSize fontSize351 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript351 = new FontSizeComplexScript() { Val = "20" };

            runProperties273.Append(fontSize351);
            runProperties273.Append(fontSizeComplexScript351);
            Text text163 = new Text();
            text163.Text = "IX";

            run273.Append(runProperties273);
            run273.Append(text163);

            paragraph262.Append(paragraphProperties262);
            paragraph262.Append(run273);

            tableCell195.Append(tableCellProperties195);
            tableCell195.Append(paragraph262);

            TableCell tableCell196 = new TableCell();

            TableCellProperties tableCellProperties196 = new TableCellProperties();
            TableCellWidth tableCellWidth196 = new TableCellWidth() { Width = "642", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan196 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders196 = new TableCellBorders();
            TopBorder topBorder79 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder68 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder51 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder51 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders196.Append(topBorder79);
            tableCellBorders196.Append(startBorder68);
            tableCellBorders196.Append(bottomBorder51);
            tableCellBorders196.Append(insideHorizontalBorder51);
            Shading shading374 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin68 = new TableCellMargin();
            StartMargin startMargin69 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin68.Append(startMargin69);

            tableCellProperties196.Append(tableCellWidth196);
            tableCellProperties196.Append(gridSpan196);
            tableCellProperties196.Append(tableCellBorders196);
            tableCellProperties196.Append(shading374);
            tableCellProperties196.Append(tableCellMargin68);

            Paragraph paragraph263 = new Paragraph();

            ParagraphProperties paragraphProperties263 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId263 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties263 = new ParagraphMarkRunProperties();

            paragraphProperties263.Append(paragraphStyleId263);
            paragraphProperties263.Append(paragraphMarkRunProperties263);

            Run run274 = new Run();

            RunProperties runProperties274 = new RunProperties();
            FontSize fontSize352 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript352 = new FontSizeComplexScript() { Val = "20" };

            runProperties274.Append(fontSize352);
            runProperties274.Append(fontSizeComplexScript352);
            Text text164 = new Text();
            text164.Text = "X";

            run274.Append(runProperties274);
            run274.Append(text164);

            paragraph263.Append(paragraphProperties263);
            paragraph263.Append(run274);

            tableCell196.Append(tableCellProperties196);
            tableCell196.Append(paragraph263);

            TableCell tableCell197 = new TableCell();

            TableCellProperties tableCellProperties197 = new TableCellProperties();
            TableCellWidth tableCellWidth197 = new TableCellWidth() { Width = "657", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan197 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders197 = new TableCellBorders();
            TopBorder topBorder80 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder69 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder52 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder52 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders197.Append(topBorder80);
            tableCellBorders197.Append(startBorder69);
            tableCellBorders197.Append(bottomBorder52);
            tableCellBorders197.Append(insideHorizontalBorder52);
            Shading shading375 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin69 = new TableCellMargin();
            StartMargin startMargin70 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin69.Append(startMargin70);

            tableCellProperties197.Append(tableCellWidth197);
            tableCellProperties197.Append(gridSpan197);
            tableCellProperties197.Append(tableCellBorders197);
            tableCellProperties197.Append(shading375);
            tableCellProperties197.Append(tableCellMargin69);

            Paragraph paragraph264 = new Paragraph();

            ParagraphProperties paragraphProperties264 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId264 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties264 = new ParagraphMarkRunProperties();

            paragraphProperties264.Append(paragraphStyleId264);
            paragraphProperties264.Append(paragraphMarkRunProperties264);

            Run run275 = new Run();

            RunProperties runProperties275 = new RunProperties();
            FontSize fontSize353 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript353 = new FontSizeComplexScript() { Val = "20" };

            runProperties275.Append(fontSize353);
            runProperties275.Append(fontSizeComplexScript353);
            Text text165 = new Text();
            text165.Text = "XI";

            run275.Append(runProperties275);
            run275.Append(text165);

            paragraph264.Append(paragraphProperties264);
            paragraph264.Append(run275);

            tableCell197.Append(tableCellProperties197);
            tableCell197.Append(paragraph264);

            TableCell tableCell198 = new TableCell();

            TableCellProperties tableCellProperties198 = new TableCellProperties();
            TableCellWidth tableCellWidth198 = new TableCellWidth() { Width = "654", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan198 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders198 = new TableCellBorders();
            TopBorder topBorder81 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder70 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder53 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder53 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders198.Append(topBorder81);
            tableCellBorders198.Append(startBorder70);
            tableCellBorders198.Append(bottomBorder53);
            tableCellBorders198.Append(insideHorizontalBorder53);
            Shading shading376 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin70 = new TableCellMargin();
            StartMargin startMargin71 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin70.Append(startMargin71);

            tableCellProperties198.Append(tableCellWidth198);
            tableCellProperties198.Append(gridSpan198);
            tableCellProperties198.Append(tableCellBorders198);
            tableCellProperties198.Append(shading376);
            tableCellProperties198.Append(tableCellMargin70);

            Paragraph paragraph265 = new Paragraph();

            ParagraphProperties paragraphProperties265 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId265 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties265 = new ParagraphMarkRunProperties();

            paragraphProperties265.Append(paragraphStyleId265);
            paragraphProperties265.Append(paragraphMarkRunProperties265);

            Run run276 = new Run();

            RunProperties runProperties276 = new RunProperties();
            FontSize fontSize354 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript354 = new FontSizeComplexScript() { Val = "20" };

            runProperties276.Append(fontSize354);
            runProperties276.Append(fontSizeComplexScript354);
            Text text166 = new Text();
            text166.Text = "XII";

            run276.Append(runProperties276);
            run276.Append(text166);

            paragraph265.Append(paragraphProperties265);
            paragraph265.Append(run276);

            tableCell198.Append(tableCellProperties198);
            tableCell198.Append(paragraph265);

            TableCell tableCell199 = new TableCell();

            TableCellProperties tableCellProperties199 = new TableCellProperties();
            TableCellWidth tableCellWidth199 = new TableCellWidth() { Width = "653", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders199 = new TableCellBorders();
            TopBorder topBorder82 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder71 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder54 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder59 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder54 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder59 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders199.Append(topBorder82);
            tableCellBorders199.Append(startBorder71);
            tableCellBorders199.Append(bottomBorder54);
            tableCellBorders199.Append(endBorder59);
            tableCellBorders199.Append(insideHorizontalBorder54);
            tableCellBorders199.Append(insideVerticalBorder59);
            Shading shading377 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin71 = new TableCellMargin();
            StartMargin startMargin72 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin71.Append(startMargin72);

            tableCellProperties199.Append(tableCellWidth199);
            tableCellProperties199.Append(tableCellBorders199);
            tableCellProperties199.Append(shading377);
            tableCellProperties199.Append(tableCellMargin71);

            Paragraph paragraph266 = new Paragraph();

            ParagraphProperties paragraphProperties266 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId266 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties266 = new ParagraphMarkRunProperties();

            paragraphProperties266.Append(paragraphStyleId266);
            paragraphProperties266.Append(paragraphMarkRunProperties266);

            Run run277 = new Run();

            RunProperties runProperties277 = new RunProperties();
            FontSize fontSize355 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript355 = new FontSizeComplexScript() { Val = "20" };

            runProperties277.Append(fontSize355);
            runProperties277.Append(fontSizeComplexScript355);
            Text text167 = new Text();
            text167.Text = "Год";

            run277.Append(runProperties277);
            run277.Append(text167);

            paragraph266.Append(paragraphProperties266);
            paragraph266.Append(run277);

            tableCell199.Append(tableCellProperties199);
            tableCell199.Append(paragraph266);

            tableRow88.Append(tableRowProperties88);
            tableRow88.Append(tableCell186);
            tableRow88.Append(tableCell187);
            tableRow88.Append(tableCell188);
            tableRow88.Append(tableCell189);
            tableRow88.Append(tableCell190);
            tableRow88.Append(tableCell191);
            tableRow88.Append(tableCell192);
            tableRow88.Append(tableCell193);
            tableRow88.Append(tableCell194);
            tableRow88.Append(tableCell195);
            tableRow88.Append(tableCell196);
            tableRow88.Append(tableCell197);
            tableRow88.Append(tableCell198);
            tableRow88.Append(tableCell199);

            TableRow tableRow89 = new TableRow();
            TableRowProperties tableRowProperties89 = new TableRowProperties();

            TableCell tableCell200 = new TableCell();

            TableCellProperties tableCellProperties200 = new TableCellProperties();
            TableCellWidth tableCellWidth200 = new TableCellWidth() { Width = "1295", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan199 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders200 = new TableCellBorders();
            TopBorder topBorder83 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder72 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder55 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder60 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder55 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder60 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders200.Append(topBorder83);
            tableCellBorders200.Append(startBorder72);
            tableCellBorders200.Append(bottomBorder55);
            tableCellBorders200.Append(endBorder60);
            tableCellBorders200.Append(insideHorizontalBorder55);
            tableCellBorders200.Append(insideVerticalBorder60);
            Shading shading378 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin72 = new TableCellMargin();
            StartMargin startMargin73 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin72.Append(startMargin73);

            tableCellProperties200.Append(tableCellWidth200);
            tableCellProperties200.Append(gridSpan199);
            tableCellProperties200.Append(tableCellBorders200);
            tableCellProperties200.Append(shading378);
            tableCellProperties200.Append(tableCellMargin72);

            Paragraph paragraph267 = new Paragraph();

            ParagraphProperties paragraphProperties267 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId267 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties267 = new ParagraphMarkRunProperties();

            paragraphProperties267.Append(paragraphStyleId267);
            paragraphProperties267.Append(paragraphMarkRunProperties267);

            Run run278 = new Run();

            RunProperties runProperties278 = new RunProperties();
            FontSize fontSize356 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript356 = new FontSizeComplexScript() { Val = "20" };

            runProperties278.Append(fontSize356);
            runProperties278.Append(fontSizeComplexScript356);
            Text text168 = new Text();
            text168.Text = "г. Москва";

            run278.Append(runProperties278);
            run278.Append(text168);

            paragraph267.Append(paragraphProperties267);
            paragraph267.Append(run278);

            tableCell200.Append(tableCellProperties200);
            tableCell200.Append(paragraph267);

            TableCell tableCell201 = new TableCell();

            TableCellProperties tableCellProperties201 = new TableCellProperties();
            TableCellWidth tableCellWidth201 = new TableCellWidth() { Width = "491", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan200 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders201 = new TableCellBorders();
            TopBorder topBorder84 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder73 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder56 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder56 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders201.Append(topBorder84);
            tableCellBorders201.Append(startBorder73);
            tableCellBorders201.Append(bottomBorder56);
            tableCellBorders201.Append(insideHorizontalBorder56);
            Shading shading379 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin73 = new TableCellMargin();
            StartMargin startMargin74 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin73.Append(startMargin74);

            tableCellProperties201.Append(tableCellWidth201);
            tableCellProperties201.Append(gridSpan200);
            tableCellProperties201.Append(tableCellBorders201);
            tableCellProperties201.Append(shading379);
            tableCellProperties201.Append(tableCellMargin73);

            Paragraph paragraph268 = new Paragraph();

            ParagraphProperties paragraphProperties268 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId268 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties268 = new ParagraphMarkRunProperties();

            paragraphProperties268.Append(paragraphStyleId268);
            paragraphProperties268.Append(paragraphMarkRunProperties268);

            Run run279 = new Run();

            RunProperties runProperties279 = new RunProperties();
            FontSize fontSize357 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript357 = new FontSizeComplexScript() { Val = "20" };

            runProperties279.Append(fontSize357);
            runProperties279.Append(fontSizeComplexScript357);
            Text text169 = new Text();
            text169.Text = "-7,8";

            run279.Append(runProperties279);
            run279.Append(text169);

            paragraph268.Append(paragraphProperties268);
            paragraph268.Append(run279);

            tableCell201.Append(tableCellProperties201);
            tableCell201.Append(paragraph268);

            TableCell tableCell202 = new TableCell();

            TableCellProperties tableCellProperties202 = new TableCellProperties();
            TableCellWidth tableCellWidth202 = new TableCellWidth() { Width = "649", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan201 = new GridSpan() { Val = 4 };

            TableCellBorders tableCellBorders202 = new TableCellBorders();
            TopBorder topBorder85 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder74 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder57 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder57 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders202.Append(topBorder85);
            tableCellBorders202.Append(startBorder74);
            tableCellBorders202.Append(bottomBorder57);
            tableCellBorders202.Append(insideHorizontalBorder57);
            Shading shading380 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin74 = new TableCellMargin();
            StartMargin startMargin75 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin74.Append(startMargin75);

            tableCellProperties202.Append(tableCellWidth202);
            tableCellProperties202.Append(gridSpan201);
            tableCellProperties202.Append(tableCellBorders202);
            tableCellProperties202.Append(shading380);
            tableCellProperties202.Append(tableCellMargin74);

            Paragraph paragraph269 = new Paragraph();

            ParagraphProperties paragraphProperties269 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId269 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties269 = new ParagraphMarkRunProperties();

            paragraphProperties269.Append(paragraphStyleId269);
            paragraphProperties269.Append(paragraphMarkRunProperties269);

            Run run280 = new Run();

            RunProperties runProperties280 = new RunProperties();
            FontSize fontSize358 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript358 = new FontSizeComplexScript() { Val = "20" };

            runProperties280.Append(fontSize358);
            runProperties280.Append(fontSizeComplexScript358);
            Text text170 = new Text();
            text170.Text = "-7,1";

            run280.Append(runProperties280);
            run280.Append(text170);

            paragraph269.Append(paragraphProperties269);
            paragraph269.Append(run280);

            tableCell202.Append(tableCellProperties202);
            tableCell202.Append(paragraph269);

            TableCell tableCell203 = new TableCell();

            TableCellProperties tableCellProperties203 = new TableCellProperties();
            TableCellWidth tableCellWidth203 = new TableCellWidth() { Width = "686", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan202 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders203 = new TableCellBorders();
            TopBorder topBorder86 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder75 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder58 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder58 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders203.Append(topBorder86);
            tableCellBorders203.Append(startBorder75);
            tableCellBorders203.Append(bottomBorder58);
            tableCellBorders203.Append(insideHorizontalBorder58);
            Shading shading381 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin75 = new TableCellMargin();
            StartMargin startMargin76 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin75.Append(startMargin76);

            tableCellProperties203.Append(tableCellWidth203);
            tableCellProperties203.Append(gridSpan202);
            tableCellProperties203.Append(tableCellBorders203);
            tableCellProperties203.Append(shading381);
            tableCellProperties203.Append(tableCellMargin75);

            Paragraph paragraph270 = new Paragraph();

            ParagraphProperties paragraphProperties270 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId270 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties270 = new ParagraphMarkRunProperties();

            paragraphProperties270.Append(paragraphStyleId270);
            paragraphProperties270.Append(paragraphMarkRunProperties270);

            Run run281 = new Run();

            RunProperties runProperties281 = new RunProperties();
            FontSize fontSize359 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript359 = new FontSizeComplexScript() { Val = "20" };

            runProperties281.Append(fontSize359);
            runProperties281.Append(fontSizeComplexScript359);
            Text text171 = new Text();
            text171.Text = "-1,3";

            run281.Append(runProperties281);
            run281.Append(text171);

            paragraph270.Append(paragraphProperties270);
            paragraph270.Append(run281);

            tableCell203.Append(tableCellProperties203);
            tableCell203.Append(paragraph270);

            TableCell tableCell204 = new TableCell();

            TableCellProperties tableCellProperties204 = new TableCellProperties();
            TableCellWidth tableCellWidth204 = new TableCellWidth() { Width = "628", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan203 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders204 = new TableCellBorders();
            TopBorder topBorder87 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder76 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder59 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder59 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders204.Append(topBorder87);
            tableCellBorders204.Append(startBorder76);
            tableCellBorders204.Append(bottomBorder59);
            tableCellBorders204.Append(insideHorizontalBorder59);
            Shading shading382 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin76 = new TableCellMargin();
            StartMargin startMargin77 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin76.Append(startMargin77);

            tableCellProperties204.Append(tableCellWidth204);
            tableCellProperties204.Append(gridSpan203);
            tableCellProperties204.Append(tableCellBorders204);
            tableCellProperties204.Append(shading382);
            tableCellProperties204.Append(tableCellMargin76);

            Paragraph paragraph271 = new Paragraph();

            ParagraphProperties paragraphProperties271 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId271 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties271 = new ParagraphMarkRunProperties();

            paragraphProperties271.Append(paragraphStyleId271);
            paragraphProperties271.Append(paragraphMarkRunProperties271);

            Run run282 = new Run();

            RunProperties runProperties282 = new RunProperties();
            FontSize fontSize360 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript360 = new FontSizeComplexScript() { Val = "20" };

            runProperties282.Append(fontSize360);
            runProperties282.Append(fontSizeComplexScript360);
            Text text172 = new Text();
            text172.Text = "6,4";

            run282.Append(runProperties282);
            run282.Append(text172);

            paragraph271.Append(paragraphProperties271);
            paragraph271.Append(run282);

            tableCell204.Append(tableCellProperties204);
            tableCell204.Append(paragraph271);

            TableCell tableCell205 = new TableCell();

            TableCellProperties tableCellProperties205 = new TableCellProperties();
            TableCellWidth tableCellWidth205 = new TableCellWidth() { Width = "1016", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan204 = new GridSpan() { Val = 5 };

            TableCellBorders tableCellBorders205 = new TableCellBorders();
            TopBorder topBorder88 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder77 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder60 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder60 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders205.Append(topBorder88);
            tableCellBorders205.Append(startBorder77);
            tableCellBorders205.Append(bottomBorder60);
            tableCellBorders205.Append(insideHorizontalBorder60);
            Shading shading383 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin77 = new TableCellMargin();
            StartMargin startMargin78 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin77.Append(startMargin78);

            tableCellProperties205.Append(tableCellWidth205);
            tableCellProperties205.Append(gridSpan204);
            tableCellProperties205.Append(tableCellBorders205);
            tableCellProperties205.Append(shading383);
            tableCellProperties205.Append(tableCellMargin77);

            Paragraph paragraph272 = new Paragraph();

            ParagraphProperties paragraphProperties272 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId272 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties272 = new ParagraphMarkRunProperties();

            paragraphProperties272.Append(paragraphStyleId272);
            paragraphProperties272.Append(paragraphMarkRunProperties272);

            Run run283 = new Run();

            RunProperties runProperties283 = new RunProperties();
            FontSize fontSize361 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript361 = new FontSizeComplexScript() { Val = "20" };

            runProperties283.Append(fontSize361);
            runProperties283.Append(fontSizeComplexScript361);
            Text text173 = new Text();
            text173.Text = "13,0";

            run283.Append(runProperties283);
            run283.Append(text173);

            paragraph272.Append(paragraphProperties272);
            paragraph272.Append(run283);

            tableCell205.Append(tableCellProperties205);
            tableCell205.Append(paragraph272);

            TableCell tableCell206 = new TableCell();

            TableCellProperties tableCellProperties206 = new TableCellProperties();
            TableCellWidth tableCellWidth206 = new TableCellWidth() { Width = "326", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan205 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders206 = new TableCellBorders();
            TopBorder topBorder89 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder78 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder61 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder61 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders206.Append(topBorder89);
            tableCellBorders206.Append(startBorder78);
            tableCellBorders206.Append(bottomBorder61);
            tableCellBorders206.Append(insideHorizontalBorder61);
            Shading shading384 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin78 = new TableCellMargin();
            StartMargin startMargin79 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin78.Append(startMargin79);

            tableCellProperties206.Append(tableCellWidth206);
            tableCellProperties206.Append(gridSpan205);
            tableCellProperties206.Append(tableCellBorders206);
            tableCellProperties206.Append(shading384);
            tableCellProperties206.Append(tableCellMargin78);

            Paragraph paragraph273 = new Paragraph();

            ParagraphProperties paragraphProperties273 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId273 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties273 = new ParagraphMarkRunProperties();

            paragraphProperties273.Append(paragraphStyleId273);
            paragraphProperties273.Append(paragraphMarkRunProperties273);

            Run run284 = new Run();

            RunProperties runProperties284 = new RunProperties();
            FontSize fontSize362 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript362 = new FontSizeComplexScript() { Val = "20" };

            runProperties284.Append(fontSize362);
            runProperties284.Append(fontSizeComplexScript362);
            Text text174 = new Text();
            text174.Text = "16,9";

            run284.Append(runProperties284);
            run284.Append(text174);

            paragraph273.Append(paragraphProperties273);
            paragraph273.Append(run284);

            tableCell206.Append(tableCellProperties206);
            tableCell206.Append(paragraph273);

            TableCell tableCell207 = new TableCell();

            TableCellProperties tableCellProperties207 = new TableCellProperties();
            TableCellWidth tableCellWidth207 = new TableCellWidth() { Width = "618", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan206 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders207 = new TableCellBorders();
            TopBorder topBorder90 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder79 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder62 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder62 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders207.Append(topBorder90);
            tableCellBorders207.Append(startBorder79);
            tableCellBorders207.Append(bottomBorder62);
            tableCellBorders207.Append(insideHorizontalBorder62);
            Shading shading385 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin79 = new TableCellMargin();
            StartMargin startMargin80 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin79.Append(startMargin80);

            tableCellProperties207.Append(tableCellWidth207);
            tableCellProperties207.Append(gridSpan206);
            tableCellProperties207.Append(tableCellBorders207);
            tableCellProperties207.Append(shading385);
            tableCellProperties207.Append(tableCellMargin79);

            Paragraph paragraph274 = new Paragraph();

            ParagraphProperties paragraphProperties274 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId274 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties274 = new ParagraphMarkRunProperties();

            paragraphProperties274.Append(paragraphStyleId274);
            paragraphProperties274.Append(paragraphMarkRunProperties274);

            Run run285 = new Run();

            RunProperties runProperties285 = new RunProperties();
            FontSize fontSize363 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript363 = new FontSizeComplexScript() { Val = "20" };

            runProperties285.Append(fontSize363);
            runProperties285.Append(fontSizeComplexScript363);
            Text text175 = new Text();
            text175.Text = "18,7";

            run285.Append(runProperties285);
            run285.Append(text175);

            paragraph274.Append(paragraphProperties274);
            paragraph274.Append(run285);

            tableCell207.Append(tableCellProperties207);
            tableCell207.Append(paragraph274);

            TableCell tableCell208 = new TableCell();

            TableCellProperties tableCellProperties208 = new TableCellProperties();
            TableCellWidth tableCellWidth208 = new TableCellWidth() { Width = "657", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan207 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders208 = new TableCellBorders();
            TopBorder topBorder91 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder80 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder63 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder63 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders208.Append(topBorder91);
            tableCellBorders208.Append(startBorder80);
            tableCellBorders208.Append(bottomBorder63);
            tableCellBorders208.Append(insideHorizontalBorder63);
            Shading shading386 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin80 = new TableCellMargin();
            StartMargin startMargin81 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin80.Append(startMargin81);

            tableCellProperties208.Append(tableCellWidth208);
            tableCellProperties208.Append(gridSpan207);
            tableCellProperties208.Append(tableCellBorders208);
            tableCellProperties208.Append(shading386);
            tableCellProperties208.Append(tableCellMargin80);

            Paragraph paragraph275 = new Paragraph();

            ParagraphProperties paragraphProperties275 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId275 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties275 = new ParagraphMarkRunProperties();

            paragraphProperties275.Append(paragraphStyleId275);
            paragraphProperties275.Append(paragraphMarkRunProperties275);

            Run run286 = new Run();

            RunProperties runProperties286 = new RunProperties();
            FontSize fontSize364 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript364 = new FontSizeComplexScript() { Val = "20" };

            runProperties286.Append(fontSize364);
            runProperties286.Append(fontSizeComplexScript364);
            Text text176 = new Text();
            text176.Text = "16,8";

            run286.Append(runProperties286);
            run286.Append(text176);

            paragraph275.Append(paragraphProperties275);
            paragraph275.Append(run286);

            tableCell208.Append(tableCellProperties208);
            tableCell208.Append(paragraph275);

            TableCell tableCell209 = new TableCell();

            TableCellProperties tableCellProperties209 = new TableCellProperties();
            TableCellWidth tableCellWidth209 = new TableCellWidth() { Width = "663", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan208 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders209 = new TableCellBorders();
            TopBorder topBorder92 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder81 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder64 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder64 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders209.Append(topBorder92);
            tableCellBorders209.Append(startBorder81);
            tableCellBorders209.Append(bottomBorder64);
            tableCellBorders209.Append(insideHorizontalBorder64);
            Shading shading387 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin81 = new TableCellMargin();
            StartMargin startMargin82 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin81.Append(startMargin82);

            tableCellProperties209.Append(tableCellWidth209);
            tableCellProperties209.Append(gridSpan208);
            tableCellProperties209.Append(tableCellBorders209);
            tableCellProperties209.Append(shading387);
            tableCellProperties209.Append(tableCellMargin81);

            Paragraph paragraph276 = new Paragraph();

            ParagraphProperties paragraphProperties276 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId276 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties276 = new ParagraphMarkRunProperties();

            paragraphProperties276.Append(paragraphStyleId276);
            paragraphProperties276.Append(paragraphMarkRunProperties276);

            Run run287 = new Run();

            RunProperties runProperties287 = new RunProperties();
            FontSize fontSize365 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript365 = new FontSizeComplexScript() { Val = "20" };

            runProperties287.Append(fontSize365);
            runProperties287.Append(fontSizeComplexScript365);
            Text text177 = new Text();
            text177.Text = "11,1";

            run287.Append(runProperties287);
            run287.Append(text177);

            paragraph276.Append(paragraphProperties276);
            paragraph276.Append(run287);

            tableCell209.Append(tableCellProperties209);
            tableCell209.Append(paragraph276);

            TableCell tableCell210 = new TableCell();

            TableCellProperties tableCellProperties210 = new TableCellProperties();
            TableCellWidth tableCellWidth210 = new TableCellWidth() { Width = "642", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan209 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders210 = new TableCellBorders();
            TopBorder topBorder93 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder82 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder65 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder65 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders210.Append(topBorder93);
            tableCellBorders210.Append(startBorder82);
            tableCellBorders210.Append(bottomBorder65);
            tableCellBorders210.Append(insideHorizontalBorder65);
            Shading shading388 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin82 = new TableCellMargin();
            StartMargin startMargin83 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin82.Append(startMargin83);

            tableCellProperties210.Append(tableCellWidth210);
            tableCellProperties210.Append(gridSpan209);
            tableCellProperties210.Append(tableCellBorders210);
            tableCellProperties210.Append(shading388);
            tableCellProperties210.Append(tableCellMargin82);

            Paragraph paragraph277 = new Paragraph();

            ParagraphProperties paragraphProperties277 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId277 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties277 = new ParagraphMarkRunProperties();

            paragraphProperties277.Append(paragraphStyleId277);
            paragraphProperties277.Append(paragraphMarkRunProperties277);

            Run run288 = new Run();

            RunProperties runProperties288 = new RunProperties();
            FontSize fontSize366 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript366 = new FontSizeComplexScript() { Val = "20" };

            runProperties288.Append(fontSize366);
            runProperties288.Append(fontSizeComplexScript366);
            Text text178 = new Text();
            text178.Text = "5,2";

            run288.Append(runProperties288);
            run288.Append(text178);

            paragraph277.Append(paragraphProperties277);
            paragraph277.Append(run288);

            tableCell210.Append(tableCellProperties210);
            tableCell210.Append(paragraph277);

            TableCell tableCell211 = new TableCell();

            TableCellProperties tableCellProperties211 = new TableCellProperties();
            TableCellWidth tableCellWidth211 = new TableCellWidth() { Width = "657", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan210 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders211 = new TableCellBorders();
            TopBorder topBorder94 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder83 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder66 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder66 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders211.Append(topBorder94);
            tableCellBorders211.Append(startBorder83);
            tableCellBorders211.Append(bottomBorder66);
            tableCellBorders211.Append(insideHorizontalBorder66);
            Shading shading389 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin83 = new TableCellMargin();
            StartMargin startMargin84 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin83.Append(startMargin84);

            tableCellProperties211.Append(tableCellWidth211);
            tableCellProperties211.Append(gridSpan210);
            tableCellProperties211.Append(tableCellBorders211);
            tableCellProperties211.Append(shading389);
            tableCellProperties211.Append(tableCellMargin83);

            Paragraph paragraph278 = new Paragraph();

            ParagraphProperties paragraphProperties278 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId278 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties278 = new ParagraphMarkRunProperties();

            paragraphProperties278.Append(paragraphStyleId278);
            paragraphProperties278.Append(paragraphMarkRunProperties278);

            Run run289 = new Run();

            RunProperties runProperties289 = new RunProperties();
            FontSize fontSize367 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript367 = new FontSizeComplexScript() { Val = "20" };

            runProperties289.Append(fontSize367);
            runProperties289.Append(fontSizeComplexScript367);
            Text text179 = new Text();
            text179.Text = "-1,1";

            run289.Append(runProperties289);
            run289.Append(text179);

            paragraph278.Append(paragraphProperties278);
            paragraph278.Append(run289);

            tableCell211.Append(tableCellProperties211);
            tableCell211.Append(paragraph278);

            TableCell tableCell212 = new TableCell();

            TableCellProperties tableCellProperties212 = new TableCellProperties();
            TableCellWidth tableCellWidth212 = new TableCellWidth() { Width = "654", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan211 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders212 = new TableCellBorders();
            TopBorder topBorder95 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder84 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder67 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder67 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders212.Append(topBorder95);
            tableCellBorders212.Append(startBorder84);
            tableCellBorders212.Append(bottomBorder67);
            tableCellBorders212.Append(insideHorizontalBorder67);
            Shading shading390 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin84 = new TableCellMargin();
            StartMargin startMargin85 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin84.Append(startMargin85);

            tableCellProperties212.Append(tableCellWidth212);
            tableCellProperties212.Append(gridSpan211);
            tableCellProperties212.Append(tableCellBorders212);
            tableCellProperties212.Append(shading390);
            tableCellProperties212.Append(tableCellMargin84);

            Paragraph paragraph279 = new Paragraph();

            ParagraphProperties paragraphProperties279 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId279 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties279 = new ParagraphMarkRunProperties();

            paragraphProperties279.Append(paragraphStyleId279);
            paragraphProperties279.Append(paragraphMarkRunProperties279);

            Run run290 = new Run();

            RunProperties runProperties290 = new RunProperties();
            FontSize fontSize368 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript368 = new FontSizeComplexScript() { Val = "20" };

            runProperties290.Append(fontSize368);
            runProperties290.Append(fontSizeComplexScript368);
            Text text180 = new Text();
            text180.Text = "-5,6";

            run290.Append(runProperties290);
            run290.Append(text180);

            paragraph279.Append(paragraphProperties279);
            paragraph279.Append(run290);

            tableCell212.Append(tableCellProperties212);
            tableCell212.Append(paragraph279);

            TableCell tableCell213 = new TableCell();

            TableCellProperties tableCellProperties213 = new TableCellProperties();
            TableCellWidth tableCellWidth213 = new TableCellWidth() { Width = "653", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders213 = new TableCellBorders();
            TopBorder topBorder96 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder85 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder68 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder61 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder68 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder61 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders213.Append(topBorder96);
            tableCellBorders213.Append(startBorder85);
            tableCellBorders213.Append(bottomBorder68);
            tableCellBorders213.Append(endBorder61);
            tableCellBorders213.Append(insideHorizontalBorder68);
            tableCellBorders213.Append(insideVerticalBorder61);
            Shading shading391 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin85 = new TableCellMargin();
            StartMargin startMargin86 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin85.Append(startMargin86);

            tableCellProperties213.Append(tableCellWidth213);
            tableCellProperties213.Append(tableCellBorders213);
            tableCellProperties213.Append(shading391);
            tableCellProperties213.Append(tableCellMargin85);

            Paragraph paragraph280 = new Paragraph();

            ParagraphProperties paragraphProperties280 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId280 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties280 = new ParagraphMarkRunProperties();

            paragraphProperties280.Append(paragraphStyleId280);
            paragraphProperties280.Append(paragraphMarkRunProperties280);

            Run run291 = new Run();

            RunProperties runProperties291 = new RunProperties();
            FontSize fontSize369 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript369 = new FontSizeComplexScript() { Val = "20" };

            runProperties291.Append(fontSize369);
            runProperties291.Append(fontSizeComplexScript369);
            Text text181 = new Text();
            text181.Text = "5,4";

            run291.Append(runProperties291);
            run291.Append(text181);

            paragraph280.Append(paragraphProperties280);
            paragraph280.Append(run291);

            tableCell213.Append(tableCellProperties213);
            tableCell213.Append(paragraph280);

            tableRow89.Append(tableRowProperties89);
            tableRow89.Append(tableCell200);
            tableRow89.Append(tableCell201);
            tableRow89.Append(tableCell202);
            tableRow89.Append(tableCell203);
            tableRow89.Append(tableCell204);
            tableRow89.Append(tableCell205);
            tableRow89.Append(tableCell206);
            tableRow89.Append(tableCell207);
            tableRow89.Append(tableCell208);
            tableRow89.Append(tableCell209);
            tableRow89.Append(tableCell210);
            tableRow89.Append(tableCell211);
            tableRow89.Append(tableCell212);
            tableRow89.Append(tableCell213);

            TableRow tableRow90 = new TableRow();
            TableRowProperties tableRowProperties90 = new TableRowProperties();

            TableCell tableCell214 = new TableCell();

            TableCellProperties tableCellProperties214 = new TableCellProperties();
            TableCellWidth tableCellWidth214 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan212 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders214 = new TableCellBorders();
            TopBorder topBorder97 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder69 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder69 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders214.Append(topBorder97);
            tableCellBorders214.Append(bottomBorder69);
            tableCellBorders214.Append(insideHorizontalBorder69);
            Shading shading392 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties214.Append(tableCellWidth214);
            tableCellProperties214.Append(gridSpan212);
            tableCellProperties214.Append(tableCellBorders214);
            tableCellProperties214.Append(shading392);

            Paragraph paragraph281 = new Paragraph();

            ParagraphProperties paragraphProperties281 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId281 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties281 = new ParagraphMarkRunProperties();
            FontSize fontSize370 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript370 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties281.Append(fontSize370);
            paragraphMarkRunProperties281.Append(fontSizeComplexScript370);

            paragraphProperties281.Append(paragraphStyleId281);
            paragraphProperties281.Append(paragraphMarkRunProperties281);

            Run run292 = new Run();

            RunProperties runProperties292 = new RunProperties();
            FontSize fontSize371 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript371 = new FontSizeComplexScript() { Val = "26" };

            runProperties292.Append(fontSize371);
            runProperties292.Append(fontSizeComplexScript371);

            run292.Append(runProperties292);

            paragraph281.Append(paragraphProperties281);
            paragraph281.Append(run292);

            Paragraph paragraph282 = new Paragraph();

            ParagraphProperties paragraphProperties282 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId282 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties282 = new ParagraphMarkRunProperties();

            paragraphProperties282.Append(paragraphStyleId282);
            paragraphProperties282.Append(paragraphMarkRunProperties282);

            Run run293 = new Run();

            RunProperties runProperties293 = new RunProperties();
            FontSize fontSize372 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript372 = new FontSizeComplexScript() { Val = "26" };

            runProperties293.Append(fontSize372);
            runProperties293.Append(fontSizeComplexScript372);
            Text text182 = new Text();
            text182.Text = "Климатические параметры холодного периода года по СП 131.13330.2012.";

            run293.Append(runProperties293);
            run293.Append(text182);

            paragraph282.Append(paragraphProperties282);
            paragraph282.Append(run293);

            tableCell214.Append(tableCellProperties214);
            tableCell214.Append(paragraph281);
            tableCell214.Append(paragraph282);

            tableRow90.Append(tableRowProperties90);
            tableRow90.Append(tableCell214);

            TableRow tableRow91 = new TableRow();
            TableRowProperties tableRowProperties91 = new TableRowProperties();

            TableCell tableCell215 = new TableCell();

            TableCellProperties tableCellProperties215 = new TableCellProperties();
            TableCellWidth tableCellWidth215 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan213 = new GridSpan() { Val = 6 };
            VerticalMerge verticalMerge19 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders215 = new TableCellBorders();
            TopBorder topBorder98 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder86 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder62 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder62 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders215.Append(topBorder98);
            tableCellBorders215.Append(startBorder86);
            tableCellBorders215.Append(endBorder62);
            tableCellBorders215.Append(insideVerticalBorder62);
            Shading shading393 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin86 = new TableCellMargin();
            StartMargin startMargin87 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin86.Append(startMargin87);

            tableCellProperties215.Append(tableCellWidth215);
            tableCellProperties215.Append(gridSpan213);
            tableCellProperties215.Append(verticalMerge19);
            tableCellProperties215.Append(tableCellBorders215);
            tableCellProperties215.Append(shading393);
            tableCellProperties215.Append(tableCellMargin86);

            Paragraph paragraph283 = new Paragraph();

            ParagraphProperties paragraphProperties283 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId283 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification149 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties283 = new ParagraphMarkRunProperties();

            paragraphProperties283.Append(paragraphStyleId283);
            paragraphProperties283.Append(justification149);
            paragraphProperties283.Append(paragraphMarkRunProperties283);

            Run run294 = new Run();

            RunProperties runProperties294 = new RunProperties();
            FontSize fontSize373 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript373 = new FontSizeComplexScript() { Val = "20" };

            runProperties294.Append(fontSize373);
            runProperties294.Append(fontSizeComplexScript373);
            Text text183 = new Text();
            text183.Text = "Республика, край, область, пункт";

            run294.Append(runProperties294);
            run294.Append(text183);

            paragraph283.Append(paragraphProperties283);
            paragraph283.Append(run294);

            Paragraph paragraph284 = new Paragraph();

            ParagraphProperties paragraphProperties284 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId284 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification150 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties284 = new ParagraphMarkRunProperties();
            FontSize fontSize374 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript374 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties284.Append(fontSize374);
            paragraphMarkRunProperties284.Append(fontSizeComplexScript374);

            paragraphProperties284.Append(paragraphStyleId284);
            paragraphProperties284.Append(justification150);
            paragraphProperties284.Append(paragraphMarkRunProperties284);

            Run run295 = new Run();

            RunProperties runProperties295 = new RunProperties();
            FontSize fontSize375 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript375 = new FontSizeComplexScript() { Val = "20" };

            runProperties295.Append(fontSize375);
            runProperties295.Append(fontSizeComplexScript375);

            run295.Append(runProperties295);

            paragraph284.Append(paragraphProperties284);
            paragraph284.Append(run295);

            tableCell215.Append(tableCellProperties215);
            tableCell215.Append(paragraph283);
            tableCell215.Append(paragraph284);

            TableCell tableCell216 = new TableCell();

            TableCellProperties tableCellProperties216 = new TableCellProperties();
            TableCellWidth tableCellWidth216 = new TableCellWidth() { Width = "1245", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan214 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders216 = new TableCellBorders();
            TopBorder topBorder99 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder87 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder70 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder70 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders216.Append(topBorder99);
            tableCellBorders216.Append(startBorder87);
            tableCellBorders216.Append(bottomBorder70);
            tableCellBorders216.Append(insideHorizontalBorder70);
            Shading shading394 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin87 = new TableCellMargin();
            StartMargin startMargin88 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin87.Append(startMargin88);

            tableCellProperties216.Append(tableCellWidth216);
            tableCellProperties216.Append(gridSpan214);
            tableCellProperties216.Append(tableCellBorders216);
            tableCellProperties216.Append(shading394);
            tableCellProperties216.Append(tableCellMargin87);

            Paragraph paragraph285 = new Paragraph();

            ParagraphProperties paragraphProperties285 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId285 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification151 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties285 = new ParagraphMarkRunProperties();

            paragraphProperties285.Append(paragraphStyleId285);
            paragraphProperties285.Append(justification151);
            paragraphProperties285.Append(paragraphMarkRunProperties285);

            Run run296 = new Run();

            RunProperties runProperties296 = new RunProperties();
            FontSize fontSize376 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript376 = new FontSizeComplexScript() { Val = "20" };

            runProperties296.Append(fontSize376);
            runProperties296.Append(fontSizeComplexScript376);
            Text text184 = new Text();
            text184.Text = "Температура воздуха наиболее холодных суток, °С, обеспеченностью";

            run296.Append(runProperties296);
            run296.Append(text184);

            paragraph285.Append(paragraphProperties285);
            paragraph285.Append(run296);

            tableCell216.Append(tableCellProperties216);
            tableCell216.Append(paragraph285);

            TableCell tableCell217 = new TableCell();

            TableCellProperties tableCellProperties217 = new TableCellProperties();
            TableCellWidth tableCellWidth217 = new TableCellWidth() { Width = "1363", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan215 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders217 = new TableCellBorders();
            TopBorder topBorder100 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder88 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder71 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder71 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders217.Append(topBorder100);
            tableCellBorders217.Append(startBorder88);
            tableCellBorders217.Append(bottomBorder71);
            tableCellBorders217.Append(insideHorizontalBorder71);
            Shading shading395 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin88 = new TableCellMargin();
            StartMargin startMargin89 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin88.Append(startMargin89);

            tableCellProperties217.Append(tableCellWidth217);
            tableCellProperties217.Append(gridSpan215);
            tableCellProperties217.Append(tableCellBorders217);
            tableCellProperties217.Append(shading395);
            tableCellProperties217.Append(tableCellMargin88);

            Paragraph paragraph286 = new Paragraph();

            ParagraphProperties paragraphProperties286 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId286 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification152 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties286 = new ParagraphMarkRunProperties();

            paragraphProperties286.Append(paragraphStyleId286);
            paragraphProperties286.Append(justification152);
            paragraphProperties286.Append(paragraphMarkRunProperties286);

            Run run297 = new Run();

            RunProperties runProperties297 = new RunProperties();
            FontSize fontSize377 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript377 = new FontSizeComplexScript() { Val = "20" };

            runProperties297.Append(fontSize377);
            runProperties297.Append(fontSizeComplexScript377);
            Text text185 = new Text();
            text185.Text = "Температура воздуха наиболее холодной пятидневки, °С, обеспеченностью";

            run297.Append(runProperties297);
            run297.Append(text185);

            paragraph286.Append(paragraphProperties286);
            paragraph286.Append(run297);

            tableCell217.Append(tableCellProperties217);
            tableCell217.Append(paragraph286);

            TableCell tableCell218 = new TableCell();

            TableCellProperties tableCellProperties218 = new TableCellProperties();
            TableCellWidth tableCellWidth218 = new TableCellWidth() { Width = "1019", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan216 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders218 = new TableCellBorders();
            TopBorder topBorder101 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder89 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder72 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder72 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders218.Append(topBorder101);
            tableCellBorders218.Append(startBorder89);
            tableCellBorders218.Append(bottomBorder72);
            tableCellBorders218.Append(insideHorizontalBorder72);
            Shading shading396 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin89 = new TableCellMargin();
            StartMargin startMargin90 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin89.Append(startMargin90);

            tableCellProperties218.Append(tableCellWidth218);
            tableCellProperties218.Append(gridSpan216);
            tableCellProperties218.Append(tableCellBorders218);
            tableCellProperties218.Append(shading396);
            tableCellProperties218.Append(tableCellMargin89);

            Paragraph paragraph287 = new Paragraph();

            ParagraphProperties paragraphProperties287 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId287 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification153 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties287 = new ParagraphMarkRunProperties();

            paragraphProperties287.Append(paragraphStyleId287);
            paragraphProperties287.Append(justification153);
            paragraphProperties287.Append(paragraphMarkRunProperties287);

            Run run298 = new Run();

            RunProperties runProperties298 = new RunProperties();
            FontSize fontSize378 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript378 = new FontSizeComplexScript() { Val = "20" };

            runProperties298.Append(fontSize378);
            runProperties298.Append(fontSizeComplexScript378);
            Text text186 = new Text();
            text186.Text = "Температура воздуха, °С, обеспеченностью 0,94";

            run298.Append(runProperties298);
            run298.Append(text186);

            paragraph287.Append(paragraphProperties287);
            paragraph287.Append(run298);

            tableCell218.Append(tableCellProperties218);
            tableCell218.Append(paragraph287);

            TableCell tableCell219 = new TableCell();

            TableCellProperties tableCellProperties219 = new TableCellProperties();
            TableCellWidth tableCellWidth219 = new TableCellWidth() { Width = "901", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan217 = new GridSpan() { Val = 5 };

            TableCellBorders tableCellBorders219 = new TableCellBorders();
            TopBorder topBorder102 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder90 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder73 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder73 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders219.Append(topBorder102);
            tableCellBorders219.Append(startBorder90);
            tableCellBorders219.Append(bottomBorder73);
            tableCellBorders219.Append(insideHorizontalBorder73);
            Shading shading397 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin90 = new TableCellMargin();
            StartMargin startMargin91 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin90.Append(startMargin91);

            tableCellProperties219.Append(tableCellWidth219);
            tableCellProperties219.Append(gridSpan217);
            tableCellProperties219.Append(tableCellBorders219);
            tableCellProperties219.Append(shading397);
            tableCellProperties219.Append(tableCellMargin90);

            Paragraph paragraph288 = new Paragraph();

            ParagraphProperties paragraphProperties288 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId288 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification154 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties288 = new ParagraphMarkRunProperties();

            paragraphProperties288.Append(paragraphStyleId288);
            paragraphProperties288.Append(justification154);
            paragraphProperties288.Append(paragraphMarkRunProperties288);

            Run run299 = new Run();

            RunProperties runProperties299 = new RunProperties();
            FontSize fontSize379 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript379 = new FontSizeComplexScript() { Val = "20" };

            runProperties299.Append(fontSize379);
            runProperties299.Append(fontSizeComplexScript379);
            Text text187 = new Text();
            text187.Text = "Абсолютная минимальная температура воздуха, °С";

            run299.Append(runProperties299);
            run299.Append(text187);

            paragraph288.Append(paragraphProperties288);
            paragraph288.Append(run299);

            tableCell219.Append(tableCellProperties219);
            tableCell219.Append(paragraph288);

            TableCell tableCell220 = new TableCell();

            TableCellProperties tableCellProperties220 = new TableCellProperties();
            TableCellWidth tableCellWidth220 = new TableCellWidth() { Width = "1364", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan218 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders220 = new TableCellBorders();
            TopBorder topBorder103 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder91 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder74 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder74 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders220.Append(topBorder103);
            tableCellBorders220.Append(startBorder91);
            tableCellBorders220.Append(bottomBorder74);
            tableCellBorders220.Append(insideHorizontalBorder74);
            Shading shading398 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin91 = new TableCellMargin();
            StartMargin startMargin92 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin91.Append(startMargin92);

            tableCellProperties220.Append(tableCellWidth220);
            tableCellProperties220.Append(gridSpan218);
            tableCellProperties220.Append(tableCellBorders220);
            tableCellProperties220.Append(shading398);
            tableCellProperties220.Append(tableCellMargin91);

            Paragraph paragraph289 = new Paragraph();

            ParagraphProperties paragraphProperties289 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId289 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification155 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties289 = new ParagraphMarkRunProperties();

            paragraphProperties289.Append(paragraphStyleId289);
            paragraphProperties289.Append(justification155);
            paragraphProperties289.Append(paragraphMarkRunProperties289);

            Run run300 = new Run();

            RunProperties runProperties300 = new RunProperties();
            FontSize fontSize380 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript380 = new FontSizeComplexScript() { Val = "20" };

            runProperties300.Append(fontSize380);
            runProperties300.Append(fontSizeComplexScript380);
            Text text188 = new Text();
            text188.Text = "Средняя суточная амплитуда температуры воздуха наиболее холодного месяца, °%";

            run300.Append(runProperties300);
            run300.Append(text188);

            paragraph289.Append(paragraphProperties289);
            paragraph289.Append(run300);

            tableCell220.Append(tableCellProperties220);
            tableCell220.Append(paragraph289);

            TableCell tableCell221 = new TableCell();

            TableCellProperties tableCellProperties221 = new TableCellProperties();
            TableCellWidth tableCellWidth221 = new TableCellWidth() { Width = "1188", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan219 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders221 = new TableCellBorders();
            TopBorder topBorder104 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder92 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder75 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder75 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders221.Append(topBorder104);
            tableCellBorders221.Append(startBorder92);
            tableCellBorders221.Append(bottomBorder75);
            tableCellBorders221.Append(insideHorizontalBorder75);
            Shading shading399 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin92 = new TableCellMargin();
            StartMargin startMargin93 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin92.Append(startMargin93);

            tableCellProperties221.Append(tableCellWidth221);
            tableCellProperties221.Append(gridSpan219);
            tableCellProperties221.Append(tableCellBorders221);
            tableCellProperties221.Append(shading399);
            tableCellProperties221.Append(tableCellMargin92);

            Paragraph paragraph290 = new Paragraph();

            ParagraphProperties paragraphProperties290 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId290 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification156 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties290 = new ParagraphMarkRunProperties();

            paragraphProperties290.Append(paragraphStyleId290);
            paragraphProperties290.Append(justification156);
            paragraphProperties290.Append(paragraphMarkRunProperties290);

            Run run301 = new Run();

            RunProperties runProperties301 = new RunProperties();
            FontSize fontSize381 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript381 = new FontSizeComplexScript() { Val = "20" };

            runProperties301.Append(fontSize381);
            runProperties301.Append(fontSizeComplexScript381);
            Text text189 = new Text();
            text189.Text = "Средняя месячная относительная влажность воздуха наиболее холодного месяца, %";

            run301.Append(runProperties301);
            run301.Append(text189);

            paragraph290.Append(paragraphProperties290);
            paragraph290.Append(run301);

            tableCell221.Append(tableCellProperties221);
            tableCell221.Append(paragraph290);

            TableCell tableCell222 = new TableCell();

            TableCellProperties tableCellProperties222 = new TableCellProperties();
            TableCellWidth tableCellWidth222 = new TableCellWidth() { Width = "1417", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan220 = new GridSpan() { Val = 4 };

            TableCellBorders tableCellBorders222 = new TableCellBorders();
            TopBorder topBorder105 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder93 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder63 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder63 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders222.Append(topBorder105);
            tableCellBorders222.Append(startBorder93);
            tableCellBorders222.Append(endBorder63);
            tableCellBorders222.Append(insideVerticalBorder63);
            Shading shading400 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin93 = new TableCellMargin();
            StartMargin startMargin94 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin93.Append(startMargin94);

            tableCellProperties222.Append(tableCellWidth222);
            tableCellProperties222.Append(gridSpan220);
            tableCellProperties222.Append(tableCellBorders222);
            tableCellProperties222.Append(shading400);
            tableCellProperties222.Append(tableCellMargin93);

            Paragraph paragraph291 = new Paragraph();

            ParagraphProperties paragraphProperties291 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId291 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification157 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties291 = new ParagraphMarkRunProperties();

            paragraphProperties291.Append(paragraphStyleId291);
            paragraphProperties291.Append(justification157);
            paragraphProperties291.Append(paragraphMarkRunProperties291);

            Run run302 = new Run();

            RunProperties runProperties302 = new RunProperties();
            FontSize fontSize382 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript382 = new FontSizeComplexScript() { Val = "20" };

            runProperties302.Append(fontSize382);
            runProperties302.Append(fontSizeComplexScript382);
            Text text190 = new Text();
            text190.Text = "Средняя месячная относительная влажность воздуха в 15 ч. наиболее холодного месяца, %";

            run302.Append(runProperties302);
            run302.Append(text190);

            paragraph291.Append(paragraphProperties291);
            paragraph291.Append(run302);

            tableCell222.Append(tableCellProperties222);
            tableCell222.Append(paragraph291);

            tableRow91.Append(tableRowProperties91);
            tableRow91.Append(tableCell215);
            tableRow91.Append(tableCell216);
            tableRow91.Append(tableCell217);
            tableRow91.Append(tableCell218);
            tableRow91.Append(tableCell219);
            tableRow91.Append(tableCell220);
            tableRow91.Append(tableCell221);
            tableRow91.Append(tableCell222);

            TableRow tableRow92 = new TableRow();
            TableRowProperties tableRowProperties92 = new TableRowProperties();

            TableCell tableCell223 = new TableCell();

            TableCellProperties tableCellProperties223 = new TableCellProperties();
            TableCellWidth tableCellWidth223 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan221 = new GridSpan() { Val = 6 };
            VerticalMerge verticalMerge20 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders223 = new TableCellBorders();
            TopBorder topBorder106 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder94 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder76 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder64 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder76 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder64 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders223.Append(topBorder106);
            tableCellBorders223.Append(startBorder94);
            tableCellBorders223.Append(bottomBorder76);
            tableCellBorders223.Append(endBorder64);
            tableCellBorders223.Append(insideHorizontalBorder76);
            tableCellBorders223.Append(insideVerticalBorder64);
            Shading shading401 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin94 = new TableCellMargin();
            StartMargin startMargin95 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin94.Append(startMargin95);

            tableCellProperties223.Append(tableCellWidth223);
            tableCellProperties223.Append(gridSpan221);
            tableCellProperties223.Append(verticalMerge20);
            tableCellProperties223.Append(tableCellBorders223);
            tableCellProperties223.Append(shading401);
            tableCellProperties223.Append(tableCellMargin94);

            Paragraph paragraph292 = new Paragraph();

            ParagraphProperties paragraphProperties292 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId292 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification158 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties292 = new ParagraphMarkRunProperties();
            FontSize fontSize383 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript383 = new FontSizeComplexScript() { Val = "20" };
            Shading shading402 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties292.Append(fontSize383);
            paragraphMarkRunProperties292.Append(fontSizeComplexScript383);
            paragraphMarkRunProperties292.Append(shading402);

            paragraphProperties292.Append(paragraphStyleId292);
            paragraphProperties292.Append(justification158);
            paragraphProperties292.Append(paragraphMarkRunProperties292);

            Run run303 = new Run();

            RunProperties runProperties303 = new RunProperties();
            FontSize fontSize384 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript384 = new FontSizeComplexScript() { Val = "20" };
            Shading shading403 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties303.Append(fontSize384);
            runProperties303.Append(fontSizeComplexScript384);
            runProperties303.Append(shading403);

            run303.Append(runProperties303);

            paragraph292.Append(paragraphProperties292);
            paragraph292.Append(run303);

            tableCell223.Append(tableCellProperties223);
            tableCell223.Append(paragraph292);

            TableCell tableCell224 = new TableCell();

            TableCellProperties tableCellProperties224 = new TableCellProperties();
            TableCellWidth tableCellWidth224 = new TableCellWidth() { Width = "618", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan222 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders224 = new TableCellBorders();
            TopBorder topBorder107 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder95 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder77 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder77 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders224.Append(topBorder107);
            tableCellBorders224.Append(startBorder95);
            tableCellBorders224.Append(bottomBorder77);
            tableCellBorders224.Append(insideHorizontalBorder77);
            Shading shading404 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin95 = new TableCellMargin();
            StartMargin startMargin96 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin95.Append(startMargin96);

            tableCellProperties224.Append(tableCellWidth224);
            tableCellProperties224.Append(gridSpan222);
            tableCellProperties224.Append(tableCellBorders224);
            tableCellProperties224.Append(shading404);
            tableCellProperties224.Append(tableCellMargin95);

            Paragraph paragraph293 = new Paragraph();

            ParagraphProperties paragraphProperties293 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId293 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification159 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties293 = new ParagraphMarkRunProperties();

            paragraphProperties293.Append(paragraphStyleId293);
            paragraphProperties293.Append(justification159);
            paragraphProperties293.Append(paragraphMarkRunProperties293);

            Run run304 = new Run();

            RunProperties runProperties304 = new RunProperties();
            FontSize fontSize385 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript385 = new FontSizeComplexScript() { Val = "20" };

            runProperties304.Append(fontSize385);
            runProperties304.Append(fontSizeComplexScript385);
            Text text191 = new Text();
            text191.Text = "0,98";

            run304.Append(runProperties304);
            run304.Append(text191);

            paragraph293.Append(paragraphProperties293);
            paragraph293.Append(run304);

            tableCell224.Append(tableCellProperties224);
            tableCell224.Append(paragraph293);

            TableCell tableCell225 = new TableCell();

            TableCellProperties tableCellProperties225 = new TableCellProperties();
            TableCellWidth tableCellWidth225 = new TableCellWidth() { Width = "627", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan223 = new GridSpan() { Val = 4 };

            TableCellBorders tableCellBorders225 = new TableCellBorders();
            TopBorder topBorder108 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder96 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder78 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder78 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders225.Append(topBorder108);
            tableCellBorders225.Append(startBorder96);
            tableCellBorders225.Append(bottomBorder78);
            tableCellBorders225.Append(insideHorizontalBorder78);
            Shading shading405 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin96 = new TableCellMargin();
            StartMargin startMargin97 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin96.Append(startMargin97);

            tableCellProperties225.Append(tableCellWidth225);
            tableCellProperties225.Append(gridSpan223);
            tableCellProperties225.Append(tableCellBorders225);
            tableCellProperties225.Append(shading405);
            tableCellProperties225.Append(tableCellMargin96);

            Paragraph paragraph294 = new Paragraph();

            ParagraphProperties paragraphProperties294 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId294 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification160 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties294 = new ParagraphMarkRunProperties();

            paragraphProperties294.Append(paragraphStyleId294);
            paragraphProperties294.Append(justification160);
            paragraphProperties294.Append(paragraphMarkRunProperties294);

            Run run305 = new Run();

            RunProperties runProperties305 = new RunProperties();
            FontSize fontSize386 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript386 = new FontSizeComplexScript() { Val = "20" };

            runProperties305.Append(fontSize386);
            runProperties305.Append(fontSizeComplexScript386);
            Text text192 = new Text();
            text192.Text = "0,92";

            run305.Append(runProperties305);
            run305.Append(text192);

            paragraph294.Append(paragraphProperties294);
            paragraph294.Append(run305);

            tableCell225.Append(tableCellProperties225);
            tableCell225.Append(paragraph294);

            TableCell tableCell226 = new TableCell();

            TableCellProperties tableCellProperties226 = new TableCellProperties();
            TableCellWidth tableCellWidth226 = new TableCellWidth() { Width = "687", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan224 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders226 = new TableCellBorders();
            TopBorder topBorder109 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder97 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder79 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder79 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders226.Append(topBorder109);
            tableCellBorders226.Append(startBorder97);
            tableCellBorders226.Append(bottomBorder79);
            tableCellBorders226.Append(insideHorizontalBorder79);
            Shading shading406 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin97 = new TableCellMargin();
            StartMargin startMargin98 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin97.Append(startMargin98);

            tableCellProperties226.Append(tableCellWidth226);
            tableCellProperties226.Append(gridSpan224);
            tableCellProperties226.Append(tableCellBorders226);
            tableCellProperties226.Append(shading406);
            tableCellProperties226.Append(tableCellMargin97);

            Paragraph paragraph295 = new Paragraph();

            ParagraphProperties paragraphProperties295 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId295 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification161 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties295 = new ParagraphMarkRunProperties();

            paragraphProperties295.Append(paragraphStyleId295);
            paragraphProperties295.Append(justification161);
            paragraphProperties295.Append(paragraphMarkRunProperties295);

            Run run306 = new Run();

            RunProperties runProperties306 = new RunProperties();
            FontSize fontSize387 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript387 = new FontSizeComplexScript() { Val = "20" };
            Languages languages3 = new Languages() { Val = "en-US" };

            runProperties306.Append(fontSize387);
            runProperties306.Append(fontSizeComplexScript387);
            runProperties306.Append(languages3);
            Text text193 = new Text();
            text193.Text = "0,";

            run306.Append(runProperties306);
            run306.Append(text193);

            Run run307 = new Run();

            RunProperties runProperties307 = new RunProperties();
            FontSize fontSize388 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript388 = new FontSizeComplexScript() { Val = "20" };
            Languages languages4 = new Languages() { Val = "ru-RU" };

            runProperties307.Append(fontSize388);
            runProperties307.Append(fontSizeComplexScript388);
            runProperties307.Append(languages4);
            Text text194 = new Text();
            text194.Text = "98";

            run307.Append(runProperties307);
            run307.Append(text194);

            paragraph295.Append(paragraphProperties295);
            paragraph295.Append(run306);
            paragraph295.Append(run307);

            tableCell226.Append(tableCellProperties226);
            tableCell226.Append(paragraph295);

            TableCell tableCell227 = new TableCell();

            TableCellProperties tableCellProperties227 = new TableCellProperties();
            TableCellWidth tableCellWidth227 = new TableCellWidth() { Width = "676", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan225 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders227 = new TableCellBorders();
            TopBorder topBorder110 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder98 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder80 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder80 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders227.Append(topBorder110);
            tableCellBorders227.Append(startBorder98);
            tableCellBorders227.Append(bottomBorder80);
            tableCellBorders227.Append(insideHorizontalBorder80);
            Shading shading407 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin98 = new TableCellMargin();
            StartMargin startMargin99 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin98.Append(startMargin99);

            tableCellProperties227.Append(tableCellWidth227);
            tableCellProperties227.Append(gridSpan225);
            tableCellProperties227.Append(tableCellBorders227);
            tableCellProperties227.Append(shading407);
            tableCellProperties227.Append(tableCellMargin98);

            Paragraph paragraph296 = new Paragraph();

            ParagraphProperties paragraphProperties296 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId296 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification162 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties296 = new ParagraphMarkRunProperties();

            paragraphProperties296.Append(paragraphStyleId296);
            paragraphProperties296.Append(justification162);
            paragraphProperties296.Append(paragraphMarkRunProperties296);

            Run run308 = new Run();

            RunProperties runProperties308 = new RunProperties();
            FontSize fontSize389 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript389 = new FontSizeComplexScript() { Val = "20" };

            runProperties308.Append(fontSize389);
            runProperties308.Append(fontSizeComplexScript389);
            Text text195 = new Text();
            text195.Text = "0,92";

            run308.Append(runProperties308);
            run308.Append(text195);

            paragraph296.Append(paragraphProperties296);
            paragraph296.Append(run308);

            tableCell227.Append(tableCellProperties227);
            tableCell227.Append(paragraph296);

            TableCell tableCell228 = new TableCell();

            TableCellProperties tableCellProperties228 = new TableCellProperties();
            TableCellWidth tableCellWidth228 = new TableCellWidth() { Width = "1019", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan226 = new GridSpan() { Val = 6 };
            VerticalMerge verticalMerge21 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders228 = new TableCellBorders();
            TopBorder topBorder111 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder99 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders228.Append(topBorder111);
            tableCellBorders228.Append(startBorder99);
            Shading shading408 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin99 = new TableCellMargin();
            StartMargin startMargin100 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin99.Append(startMargin100);

            tableCellProperties228.Append(tableCellWidth228);
            tableCellProperties228.Append(gridSpan226);
            tableCellProperties228.Append(verticalMerge21);
            tableCellProperties228.Append(tableCellBorders228);
            tableCellProperties228.Append(shading408);
            tableCellProperties228.Append(tableCellMargin99);

            Paragraph paragraph297 = new Paragraph();

            ParagraphProperties paragraphProperties297 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId297 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification163 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties297 = new ParagraphMarkRunProperties();

            paragraphProperties297.Append(paragraphStyleId297);
            paragraphProperties297.Append(justification163);
            paragraphProperties297.Append(paragraphMarkRunProperties297);

            Run run309 = new Run();

            RunProperties runProperties309 = new RunProperties();
            FontSize fontSize390 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript390 = new FontSizeComplexScript() { Val = "20" };

            runProperties309.Append(fontSize390);
            runProperties309.Append(fontSizeComplexScript390);
            Text text196 = new Text();
            text196.Text = "-13";

            run309.Append(runProperties309);
            run309.Append(text196);

            paragraph297.Append(paragraphProperties297);
            paragraph297.Append(run309);

            tableCell228.Append(tableCellProperties228);
            tableCell228.Append(paragraph297);

            TableCell tableCell229 = new TableCell();

            TableCellProperties tableCellProperties229 = new TableCellProperties();
            TableCellWidth tableCellWidth229 = new TableCellWidth() { Width = "901", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan227 = new GridSpan() { Val = 5 };
            VerticalMerge verticalMerge22 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders229 = new TableCellBorders();
            TopBorder topBorder112 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder100 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders229.Append(topBorder112);
            tableCellBorders229.Append(startBorder100);
            Shading shading409 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin100 = new TableCellMargin();
            StartMargin startMargin101 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin100.Append(startMargin101);

            tableCellProperties229.Append(tableCellWidth229);
            tableCellProperties229.Append(gridSpan227);
            tableCellProperties229.Append(verticalMerge22);
            tableCellProperties229.Append(tableCellBorders229);
            tableCellProperties229.Append(shading409);
            tableCellProperties229.Append(tableCellMargin100);

            Paragraph paragraph298 = new Paragraph();

            ParagraphProperties paragraphProperties298 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId298 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification164 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties298 = new ParagraphMarkRunProperties();

            paragraphProperties298.Append(paragraphStyleId298);
            paragraphProperties298.Append(justification164);
            paragraphProperties298.Append(paragraphMarkRunProperties298);

            Run run310 = new Run();

            RunProperties runProperties310 = new RunProperties();
            FontSize fontSize391 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript391 = new FontSizeComplexScript() { Val = "20" };

            runProperties310.Append(fontSize391);
            runProperties310.Append(fontSizeComplexScript391);
            Text text197 = new Text();
            text197.Text = "-43";

            run310.Append(runProperties310);
            run310.Append(text197);

            paragraph298.Append(paragraphProperties298);
            paragraph298.Append(run310);

            tableCell229.Append(tableCellProperties229);
            tableCell229.Append(paragraph298);

            TableCell tableCell230 = new TableCell();

            TableCellProperties tableCellProperties230 = new TableCellProperties();
            TableCellWidth tableCellWidth230 = new TableCellWidth() { Width = "1364", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan228 = new GridSpan() { Val = 10 };
            VerticalMerge verticalMerge23 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders230 = new TableCellBorders();
            TopBorder topBorder113 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder101 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders230.Append(topBorder113);
            tableCellBorders230.Append(startBorder101);
            Shading shading410 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin101 = new TableCellMargin();
            StartMargin startMargin102 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin101.Append(startMargin102);

            tableCellProperties230.Append(tableCellWidth230);
            tableCellProperties230.Append(gridSpan228);
            tableCellProperties230.Append(verticalMerge23);
            tableCellProperties230.Append(tableCellBorders230);
            tableCellProperties230.Append(shading410);
            tableCellProperties230.Append(tableCellMargin101);

            Paragraph paragraph299 = new Paragraph();

            ParagraphProperties paragraphProperties299 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId299 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification165 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties299 = new ParagraphMarkRunProperties();

            paragraphProperties299.Append(paragraphStyleId299);
            paragraphProperties299.Append(justification165);
            paragraphProperties299.Append(paragraphMarkRunProperties299);

            Run run311 = new Run();

            RunProperties runProperties311 = new RunProperties();
            FontSize fontSize392 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript392 = new FontSizeComplexScript() { Val = "20" };

            runProperties311.Append(fontSize392);
            runProperties311.Append(fontSizeComplexScript392);
            Text text198 = new Text();
            text198.Text = "5,4";

            run311.Append(runProperties311);
            run311.Append(text198);

            paragraph299.Append(paragraphProperties299);
            paragraph299.Append(run311);

            tableCell230.Append(tableCellProperties230);
            tableCell230.Append(paragraph299);

            TableCell tableCell231 = new TableCell();

            TableCellProperties tableCellProperties231 = new TableCellProperties();
            TableCellWidth tableCellWidth231 = new TableCellWidth() { Width = "1188", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan229 = new GridSpan() { Val = 6 };
            VerticalMerge verticalMerge24 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders231 = new TableCellBorders();
            TopBorder topBorder114 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder102 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders231.Append(topBorder114);
            tableCellBorders231.Append(startBorder102);
            Shading shading411 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin102 = new TableCellMargin();
            StartMargin startMargin103 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin102.Append(startMargin103);

            tableCellProperties231.Append(tableCellWidth231);
            tableCellProperties231.Append(gridSpan229);
            tableCellProperties231.Append(verticalMerge24);
            tableCellProperties231.Append(tableCellBorders231);
            tableCellProperties231.Append(shading411);
            tableCellProperties231.Append(tableCellMargin102);

            Paragraph paragraph300 = new Paragraph();

            ParagraphProperties paragraphProperties300 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId300 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification166 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties300 = new ParagraphMarkRunProperties();

            paragraphProperties300.Append(paragraphStyleId300);
            paragraphProperties300.Append(justification166);
            paragraphProperties300.Append(paragraphMarkRunProperties300);

            Run run312 = new Run();

            RunProperties runProperties312 = new RunProperties();
            FontSize fontSize393 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript393 = new FontSizeComplexScript() { Val = "20" };

            runProperties312.Append(fontSize393);
            runProperties312.Append(fontSizeComplexScript393);
            Text text199 = new Text();
            text199.Text = "83";

            run312.Append(runProperties312);
            run312.Append(text199);

            paragraph300.Append(paragraphProperties300);
            paragraph300.Append(run312);

            tableCell231.Append(tableCellProperties231);
            tableCell231.Append(paragraph300);

            TableCell tableCell232 = new TableCell();

            TableCellProperties tableCellProperties232 = new TableCellProperties();
            TableCellWidth tableCellWidth232 = new TableCellWidth() { Width = "1417", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan230 = new GridSpan() { Val = 4 };
            VerticalMerge verticalMerge25 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders232 = new TableCellBorders();
            TopBorder topBorder115 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder103 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder65 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder65 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders232.Append(topBorder115);
            tableCellBorders232.Append(startBorder103);
            tableCellBorders232.Append(endBorder65);
            tableCellBorders232.Append(insideVerticalBorder65);
            Shading shading412 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin103 = new TableCellMargin();
            StartMargin startMargin104 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin103.Append(startMargin104);

            tableCellProperties232.Append(tableCellWidth232);
            tableCellProperties232.Append(gridSpan230);
            tableCellProperties232.Append(verticalMerge25);
            tableCellProperties232.Append(tableCellBorders232);
            tableCellProperties232.Append(shading412);
            tableCellProperties232.Append(tableCellMargin103);

            Paragraph paragraph301 = new Paragraph();

            ParagraphProperties paragraphProperties301 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId301 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification167 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties301 = new ParagraphMarkRunProperties();

            paragraphProperties301.Append(paragraphStyleId301);
            paragraphProperties301.Append(justification167);
            paragraphProperties301.Append(paragraphMarkRunProperties301);

            Run run313 = new Run();

            RunProperties runProperties313 = new RunProperties();
            FontSize fontSize394 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript394 = new FontSizeComplexScript() { Val = "20" };

            runProperties313.Append(fontSize394);
            runProperties313.Append(fontSizeComplexScript394);
            Text text200 = new Text();
            text200.Text = "82";

            run313.Append(runProperties313);
            run313.Append(text200);

            paragraph301.Append(paragraphProperties301);
            paragraph301.Append(run313);

            tableCell232.Append(tableCellProperties232);
            tableCell232.Append(paragraph301);

            tableRow92.Append(tableRowProperties92);
            tableRow92.Append(tableCell223);
            tableRow92.Append(tableCell224);
            tableRow92.Append(tableCell225);
            tableRow92.Append(tableCell226);
            tableRow92.Append(tableCell227);
            tableRow92.Append(tableCell228);
            tableRow92.Append(tableCell229);
            tableRow92.Append(tableCell230);
            tableRow92.Append(tableCell231);
            tableRow92.Append(tableCell232);

            TableRow tableRow93 = new TableRow();
            TableRowProperties tableRowProperties93 = new TableRowProperties();

            TableCell tableCell233 = new TableCell();

            TableCellProperties tableCellProperties233 = new TableCellProperties();
            TableCellWidth tableCellWidth233 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan231 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders233 = new TableCellBorders();
            TopBorder topBorder116 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder104 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder81 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder66 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder81 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder66 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders233.Append(topBorder116);
            tableCellBorders233.Append(startBorder104);
            tableCellBorders233.Append(bottomBorder81);
            tableCellBorders233.Append(endBorder66);
            tableCellBorders233.Append(insideHorizontalBorder81);
            tableCellBorders233.Append(insideVerticalBorder66);
            Shading shading413 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin104 = new TableCellMargin();
            StartMargin startMargin105 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin104.Append(startMargin105);

            tableCellProperties233.Append(tableCellWidth233);
            tableCellProperties233.Append(gridSpan231);
            tableCellProperties233.Append(tableCellBorders233);
            tableCellProperties233.Append(shading413);
            tableCellProperties233.Append(tableCellMargin104);

            Paragraph paragraph302 = new Paragraph();

            ParagraphProperties paragraphProperties302 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId302 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification168 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties302 = new ParagraphMarkRunProperties();

            paragraphProperties302.Append(paragraphStyleId302);
            paragraphProperties302.Append(justification168);
            paragraphProperties302.Append(paragraphMarkRunProperties302);

            Run run314 = new Run();

            RunProperties runProperties314 = new RunProperties();
            FontSize fontSize395 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript395 = new FontSizeComplexScript() { Val = "20" };

            runProperties314.Append(fontSize395);
            runProperties314.Append(fontSizeComplexScript395);
            Text text201 = new Text();
            text201.Text = "г. Москва";

            run314.Append(runProperties314);
            run314.Append(text201);

            paragraph302.Append(paragraphProperties302);
            paragraph302.Append(run314);

            tableCell233.Append(tableCellProperties233);
            tableCell233.Append(paragraph302);

            TableCell tableCell234 = new TableCell();

            TableCellProperties tableCellProperties234 = new TableCellProperties();
            TableCellWidth tableCellWidth234 = new TableCellWidth() { Width = "618", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan232 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders234 = new TableCellBorders();
            TopBorder topBorder117 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder105 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder82 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder82 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders234.Append(topBorder117);
            tableCellBorders234.Append(startBorder105);
            tableCellBorders234.Append(bottomBorder82);
            tableCellBorders234.Append(insideHorizontalBorder82);
            Shading shading414 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin105 = new TableCellMargin();
            StartMargin startMargin106 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin105.Append(startMargin106);

            tableCellProperties234.Append(tableCellWidth234);
            tableCellProperties234.Append(gridSpan232);
            tableCellProperties234.Append(tableCellBorders234);
            tableCellProperties234.Append(shading414);
            tableCellProperties234.Append(tableCellMargin105);

            Paragraph paragraph303 = new Paragraph();

            ParagraphProperties paragraphProperties303 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId303 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification169 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties303 = new ParagraphMarkRunProperties();

            paragraphProperties303.Append(paragraphStyleId303);
            paragraphProperties303.Append(justification169);
            paragraphProperties303.Append(paragraphMarkRunProperties303);

            Run run315 = new Run();

            RunProperties runProperties315 = new RunProperties();
            FontSize fontSize396 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript396 = new FontSizeComplexScript() { Val = "20" };

            runProperties315.Append(fontSize396);
            runProperties315.Append(fontSizeComplexScript396);
            Text text202 = new Text();
            text202.Text = "-35";

            run315.Append(runProperties315);
            run315.Append(text202);

            paragraph303.Append(paragraphProperties303);
            paragraph303.Append(run315);

            tableCell234.Append(tableCellProperties234);
            tableCell234.Append(paragraph303);

            TableCell tableCell235 = new TableCell();

            TableCellProperties tableCellProperties235 = new TableCellProperties();
            TableCellWidth tableCellWidth235 = new TableCellWidth() { Width = "627", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan233 = new GridSpan() { Val = 4 };

            TableCellBorders tableCellBorders235 = new TableCellBorders();
            TopBorder topBorder118 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder106 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder83 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder83 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders235.Append(topBorder118);
            tableCellBorders235.Append(startBorder106);
            tableCellBorders235.Append(bottomBorder83);
            tableCellBorders235.Append(insideHorizontalBorder83);
            Shading shading415 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin106 = new TableCellMargin();
            StartMargin startMargin107 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin106.Append(startMargin107);

            tableCellProperties235.Append(tableCellWidth235);
            tableCellProperties235.Append(gridSpan233);
            tableCellProperties235.Append(tableCellBorders235);
            tableCellProperties235.Append(shading415);
            tableCellProperties235.Append(tableCellMargin106);

            Paragraph paragraph304 = new Paragraph();

            ParagraphProperties paragraphProperties304 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId304 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification170 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties304 = new ParagraphMarkRunProperties();

            paragraphProperties304.Append(paragraphStyleId304);
            paragraphProperties304.Append(justification170);
            paragraphProperties304.Append(paragraphMarkRunProperties304);

            Run run316 = new Run();

            RunProperties runProperties316 = new RunProperties();
            FontSize fontSize397 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript397 = new FontSizeComplexScript() { Val = "20" };

            runProperties316.Append(fontSize397);
            runProperties316.Append(fontSizeComplexScript397);
            Text text203 = new Text();
            text203.Text = "-28";

            run316.Append(runProperties316);
            run316.Append(text203);

            paragraph304.Append(paragraphProperties304);
            paragraph304.Append(run316);

            tableCell235.Append(tableCellProperties235);
            tableCell235.Append(paragraph304);

            TableCell tableCell236 = new TableCell();

            TableCellProperties tableCellProperties236 = new TableCellProperties();
            TableCellWidth tableCellWidth236 = new TableCellWidth() { Width = "687", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan234 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders236 = new TableCellBorders();
            TopBorder topBorder119 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder107 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder84 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder84 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders236.Append(topBorder119);
            tableCellBorders236.Append(startBorder107);
            tableCellBorders236.Append(bottomBorder84);
            tableCellBorders236.Append(insideHorizontalBorder84);
            Shading shading416 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin107 = new TableCellMargin();
            StartMargin startMargin108 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin107.Append(startMargin108);

            tableCellProperties236.Append(tableCellWidth236);
            tableCellProperties236.Append(gridSpan234);
            tableCellProperties236.Append(tableCellBorders236);
            tableCellProperties236.Append(shading416);
            tableCellProperties236.Append(tableCellMargin107);

            Paragraph paragraph305 = new Paragraph();

            ParagraphProperties paragraphProperties305 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId305 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification171 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties305 = new ParagraphMarkRunProperties();

            paragraphProperties305.Append(paragraphStyleId305);
            paragraphProperties305.Append(justification171);
            paragraphProperties305.Append(paragraphMarkRunProperties305);

            Run run317 = new Run();

            RunProperties runProperties317 = new RunProperties();
            FontSize fontSize398 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript398 = new FontSizeComplexScript() { Val = "20" };

            runProperties317.Append(fontSize398);
            runProperties317.Append(fontSizeComplexScript398);
            Text text204 = new Text();
            text204.Text = "-29";

            run317.Append(runProperties317);
            run317.Append(text204);

            paragraph305.Append(paragraphProperties305);
            paragraph305.Append(run317);

            tableCell236.Append(tableCellProperties236);
            tableCell236.Append(paragraph305);

            TableCell tableCell237 = new TableCell();

            TableCellProperties tableCellProperties237 = new TableCellProperties();
            TableCellWidth tableCellWidth237 = new TableCellWidth() { Width = "676", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan235 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders237 = new TableCellBorders();
            TopBorder topBorder120 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder108 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder85 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder85 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders237.Append(topBorder120);
            tableCellBorders237.Append(startBorder108);
            tableCellBorders237.Append(bottomBorder85);
            tableCellBorders237.Append(insideHorizontalBorder85);
            Shading shading417 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin108 = new TableCellMargin();
            StartMargin startMargin109 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin108.Append(startMargin109);

            tableCellProperties237.Append(tableCellWidth237);
            tableCellProperties237.Append(gridSpan235);
            tableCellProperties237.Append(tableCellBorders237);
            tableCellProperties237.Append(shading417);
            tableCellProperties237.Append(tableCellMargin108);

            Paragraph paragraph306 = new Paragraph();

            ParagraphProperties paragraphProperties306 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId306 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification172 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties306 = new ParagraphMarkRunProperties();

            paragraphProperties306.Append(paragraphStyleId306);
            paragraphProperties306.Append(justification172);
            paragraphProperties306.Append(paragraphMarkRunProperties306);

            Run run318 = new Run();

            RunProperties runProperties318 = new RunProperties();
            FontSize fontSize399 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript399 = new FontSizeComplexScript() { Val = "20" };

            runProperties318.Append(fontSize399);
            runProperties318.Append(fontSizeComplexScript399);
            Text text205 = new Text();
            text205.Text = "-25";

            run318.Append(runProperties318);
            run318.Append(text205);

            paragraph306.Append(paragraphProperties306);
            paragraph306.Append(run318);

            tableCell237.Append(tableCellProperties237);
            tableCell237.Append(paragraph306);

            TableCell tableCell238 = new TableCell();

            TableCellProperties tableCellProperties238 = new TableCellProperties();
            TableCellWidth tableCellWidth238 = new TableCellWidth() { Width = "1019", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan236 = new GridSpan() { Val = 6 };
            VerticalMerge verticalMerge26 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders238 = new TableCellBorders();
            TopBorder topBorder121 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder109 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder86 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder86 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders238.Append(topBorder121);
            tableCellBorders238.Append(startBorder109);
            tableCellBorders238.Append(bottomBorder86);
            tableCellBorders238.Append(insideHorizontalBorder86);
            Shading shading418 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin109 = new TableCellMargin();
            StartMargin startMargin110 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin109.Append(startMargin110);

            tableCellProperties238.Append(tableCellWidth238);
            tableCellProperties238.Append(gridSpan236);
            tableCellProperties238.Append(verticalMerge26);
            tableCellProperties238.Append(tableCellBorders238);
            tableCellProperties238.Append(shading418);
            tableCellProperties238.Append(tableCellMargin109);

            Paragraph paragraph307 = new Paragraph();

            ParagraphProperties paragraphProperties307 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId307 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification173 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties307 = new ParagraphMarkRunProperties();
            FontSize fontSize400 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript400 = new FontSizeComplexScript() { Val = "26" };
            Shading shading419 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties307.Append(fontSize400);
            paragraphMarkRunProperties307.Append(fontSizeComplexScript400);
            paragraphMarkRunProperties307.Append(shading419);

            paragraphProperties307.Append(paragraphStyleId307);
            paragraphProperties307.Append(justification173);
            paragraphProperties307.Append(paragraphMarkRunProperties307);

            Run run319 = new Run();

            RunProperties runProperties319 = new RunProperties();
            FontSize fontSize401 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript401 = new FontSizeComplexScript() { Val = "26" };
            Shading shading420 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties319.Append(fontSize401);
            runProperties319.Append(fontSizeComplexScript401);
            runProperties319.Append(shading420);

            run319.Append(runProperties319);

            paragraph307.Append(paragraphProperties307);
            paragraph307.Append(run319);

            tableCell238.Append(tableCellProperties238);
            tableCell238.Append(paragraph307);

            TableCell tableCell239 = new TableCell();

            TableCellProperties tableCellProperties239 = new TableCellProperties();
            TableCellWidth tableCellWidth239 = new TableCellWidth() { Width = "901", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan237 = new GridSpan() { Val = 5 };
            VerticalMerge verticalMerge27 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders239 = new TableCellBorders();
            TopBorder topBorder122 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder110 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder87 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder87 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders239.Append(topBorder122);
            tableCellBorders239.Append(startBorder110);
            tableCellBorders239.Append(bottomBorder87);
            tableCellBorders239.Append(insideHorizontalBorder87);
            Shading shading421 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin110 = new TableCellMargin();
            StartMargin startMargin111 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin110.Append(startMargin111);

            tableCellProperties239.Append(tableCellWidth239);
            tableCellProperties239.Append(gridSpan237);
            tableCellProperties239.Append(verticalMerge27);
            tableCellProperties239.Append(tableCellBorders239);
            tableCellProperties239.Append(shading421);
            tableCellProperties239.Append(tableCellMargin110);

            Paragraph paragraph308 = new Paragraph();

            ParagraphProperties paragraphProperties308 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId308 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification174 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties308 = new ParagraphMarkRunProperties();
            FontSize fontSize402 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript402 = new FontSizeComplexScript() { Val = "26" };
            Shading shading422 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties308.Append(fontSize402);
            paragraphMarkRunProperties308.Append(fontSizeComplexScript402);
            paragraphMarkRunProperties308.Append(shading422);

            paragraphProperties308.Append(paragraphStyleId308);
            paragraphProperties308.Append(justification174);
            paragraphProperties308.Append(paragraphMarkRunProperties308);

            Run run320 = new Run();

            RunProperties runProperties320 = new RunProperties();
            FontSize fontSize403 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript403 = new FontSizeComplexScript() { Val = "26" };
            Shading shading423 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties320.Append(fontSize403);
            runProperties320.Append(fontSizeComplexScript403);
            runProperties320.Append(shading423);

            run320.Append(runProperties320);

            paragraph308.Append(paragraphProperties308);
            paragraph308.Append(run320);

            tableCell239.Append(tableCellProperties239);
            tableCell239.Append(paragraph308);

            TableCell tableCell240 = new TableCell();

            TableCellProperties tableCellProperties240 = new TableCellProperties();
            TableCellWidth tableCellWidth240 = new TableCellWidth() { Width = "1364", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan238 = new GridSpan() { Val = 10 };
            VerticalMerge verticalMerge28 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders240 = new TableCellBorders();
            TopBorder topBorder123 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder111 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder88 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder88 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders240.Append(topBorder123);
            tableCellBorders240.Append(startBorder111);
            tableCellBorders240.Append(bottomBorder88);
            tableCellBorders240.Append(insideHorizontalBorder88);
            Shading shading424 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin111 = new TableCellMargin();
            StartMargin startMargin112 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin111.Append(startMargin112);

            tableCellProperties240.Append(tableCellWidth240);
            tableCellProperties240.Append(gridSpan238);
            tableCellProperties240.Append(verticalMerge28);
            tableCellProperties240.Append(tableCellBorders240);
            tableCellProperties240.Append(shading424);
            tableCellProperties240.Append(tableCellMargin111);

            Paragraph paragraph309 = new Paragraph();

            ParagraphProperties paragraphProperties309 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId309 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification175 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties309 = new ParagraphMarkRunProperties();
            FontSize fontSize404 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript404 = new FontSizeComplexScript() { Val = "26" };
            Shading shading425 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties309.Append(fontSize404);
            paragraphMarkRunProperties309.Append(fontSizeComplexScript404);
            paragraphMarkRunProperties309.Append(shading425);

            paragraphProperties309.Append(paragraphStyleId309);
            paragraphProperties309.Append(justification175);
            paragraphProperties309.Append(paragraphMarkRunProperties309);

            Run run321 = new Run();

            RunProperties runProperties321 = new RunProperties();
            FontSize fontSize405 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript405 = new FontSizeComplexScript() { Val = "26" };
            Shading shading426 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties321.Append(fontSize405);
            runProperties321.Append(fontSizeComplexScript405);
            runProperties321.Append(shading426);

            run321.Append(runProperties321);

            paragraph309.Append(paragraphProperties309);
            paragraph309.Append(run321);

            tableCell240.Append(tableCellProperties240);
            tableCell240.Append(paragraph309);

            TableCell tableCell241 = new TableCell();

            TableCellProperties tableCellProperties241 = new TableCellProperties();
            TableCellWidth tableCellWidth241 = new TableCellWidth() { Width = "1188", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan239 = new GridSpan() { Val = 6 };
            VerticalMerge verticalMerge29 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders241 = new TableCellBorders();
            TopBorder topBorder124 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder112 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder89 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder89 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders241.Append(topBorder124);
            tableCellBorders241.Append(startBorder112);
            tableCellBorders241.Append(bottomBorder89);
            tableCellBorders241.Append(insideHorizontalBorder89);
            Shading shading427 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin112 = new TableCellMargin();
            StartMargin startMargin113 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin112.Append(startMargin113);

            tableCellProperties241.Append(tableCellWidth241);
            tableCellProperties241.Append(gridSpan239);
            tableCellProperties241.Append(verticalMerge29);
            tableCellProperties241.Append(tableCellBorders241);
            tableCellProperties241.Append(shading427);
            tableCellProperties241.Append(tableCellMargin112);

            Paragraph paragraph310 = new Paragraph();

            ParagraphProperties paragraphProperties310 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId310 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification176 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties310 = new ParagraphMarkRunProperties();
            FontSize fontSize406 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript406 = new FontSizeComplexScript() { Val = "26" };
            Shading shading428 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties310.Append(fontSize406);
            paragraphMarkRunProperties310.Append(fontSizeComplexScript406);
            paragraphMarkRunProperties310.Append(shading428);

            paragraphProperties310.Append(paragraphStyleId310);
            paragraphProperties310.Append(justification176);
            paragraphProperties310.Append(paragraphMarkRunProperties310);

            Run run322 = new Run();

            RunProperties runProperties322 = new RunProperties();
            FontSize fontSize407 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript407 = new FontSizeComplexScript() { Val = "26" };
            Shading shading429 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties322.Append(fontSize407);
            runProperties322.Append(fontSizeComplexScript407);
            runProperties322.Append(shading429);

            run322.Append(runProperties322);

            paragraph310.Append(paragraphProperties310);
            paragraph310.Append(run322);

            tableCell241.Append(tableCellProperties241);
            tableCell241.Append(paragraph310);

            TableCell tableCell242 = new TableCell();

            TableCellProperties tableCellProperties242 = new TableCellProperties();
            TableCellWidth tableCellWidth242 = new TableCellWidth() { Width = "1417", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan240 = new GridSpan() { Val = 4 };
            VerticalMerge verticalMerge30 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders242 = new TableCellBorders();
            TopBorder topBorder125 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder113 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder67 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder67 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders242.Append(topBorder125);
            tableCellBorders242.Append(startBorder113);
            tableCellBorders242.Append(endBorder67);
            tableCellBorders242.Append(insideVerticalBorder67);
            Shading shading430 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin113 = new TableCellMargin();
            StartMargin startMargin114 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin113.Append(startMargin114);

            tableCellProperties242.Append(tableCellWidth242);
            tableCellProperties242.Append(gridSpan240);
            tableCellProperties242.Append(verticalMerge30);
            tableCellProperties242.Append(tableCellBorders242);
            tableCellProperties242.Append(shading430);
            tableCellProperties242.Append(tableCellMargin113);

            Paragraph paragraph311 = new Paragraph();

            ParagraphProperties paragraphProperties311 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId311 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification177 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties311 = new ParagraphMarkRunProperties();
            FontSize fontSize408 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript408 = new FontSizeComplexScript() { Val = "26" };
            Shading shading431 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties311.Append(fontSize408);
            paragraphMarkRunProperties311.Append(fontSizeComplexScript408);
            paragraphMarkRunProperties311.Append(shading431);

            paragraphProperties311.Append(paragraphStyleId311);
            paragraphProperties311.Append(justification177);
            paragraphProperties311.Append(paragraphMarkRunProperties311);

            Run run323 = new Run();

            RunProperties runProperties323 = new RunProperties();
            FontSize fontSize409 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript409 = new FontSizeComplexScript() { Val = "26" };
            Shading shading432 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties323.Append(fontSize409);
            runProperties323.Append(fontSizeComplexScript409);
            runProperties323.Append(shading432);

            run323.Append(runProperties323);

            paragraph311.Append(paragraphProperties311);
            paragraph311.Append(run323);

            tableCell242.Append(tableCellProperties242);
            tableCell242.Append(paragraph311);

            tableRow93.Append(tableRowProperties93);
            tableRow93.Append(tableCell233);
            tableRow93.Append(tableCell234);
            tableRow93.Append(tableCell235);
            tableRow93.Append(tableCell236);
            tableRow93.Append(tableCell237);
            tableRow93.Append(tableCell238);
            tableRow93.Append(tableCell239);
            tableRow93.Append(tableCell240);
            tableRow93.Append(tableCell241);
            tableRow93.Append(tableCell242);

            TableRow tableRow94 = new TableRow();
            TableRowProperties tableRowProperties94 = new TableRowProperties();

            TableCell tableCell243 = new TableCell();

            TableCellProperties tableCellProperties243 = new TableCellProperties();
            TableCellWidth tableCellWidth243 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan241 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders243 = new TableCellBorders();
            TopBorder topBorder126 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder90 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder90 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders243.Append(topBorder126);
            tableCellBorders243.Append(bottomBorder90);
            tableCellBorders243.Append(insideHorizontalBorder90);
            Shading shading433 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties243.Append(tableCellWidth243);
            tableCellProperties243.Append(gridSpan241);
            tableCellProperties243.Append(tableCellBorders243);
            tableCellProperties243.Append(shading433);

            Paragraph paragraph312 = new Paragraph();

            ParagraphProperties paragraphProperties312 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId312 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties312 = new ParagraphMarkRunProperties();
            FontSize fontSize410 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript410 = new FontSizeComplexScript() { Val = "26" };
            Shading shading434 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            paragraphMarkRunProperties312.Append(fontSize410);
            paragraphMarkRunProperties312.Append(fontSizeComplexScript410);
            paragraphMarkRunProperties312.Append(shading434);

            paragraphProperties312.Append(paragraphStyleId312);
            paragraphProperties312.Append(paragraphMarkRunProperties312);

            Run run324 = new Run();

            RunProperties runProperties324 = new RunProperties();
            FontSize fontSize411 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript411 = new FontSizeComplexScript() { Val = "26" };
            Shading shading435 = new Shading() { Val = ShadingPatternValues.Clear, Fill = "FFFF00" };

            runProperties324.Append(fontSize411);
            runProperties324.Append(fontSizeComplexScript411);
            runProperties324.Append(shading435);

            run324.Append(runProperties324);

            paragraph312.Append(paragraphProperties312);
            paragraph312.Append(run324);

            tableCell243.Append(tableCellProperties243);
            tableCell243.Append(paragraph312);

            tableRow94.Append(tableRowProperties94);
            tableRow94.Append(tableCell243);

            TableRow tableRow95 = new TableRow();
            TableRowProperties tableRowProperties95 = new TableRowProperties();

            TableCell tableCell244 = new TableCell();

            TableCellProperties tableCellProperties244 = new TableCellProperties();
            TableCellWidth tableCellWidth244 = new TableCellWidth() { Width = "873", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan242 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders244 = new TableCellBorders();
            TopBorder topBorder127 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder114 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder91 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder68 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder91 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder68 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders244.Append(topBorder127);
            tableCellBorders244.Append(startBorder114);
            tableCellBorders244.Append(bottomBorder91);
            tableCellBorders244.Append(endBorder68);
            tableCellBorders244.Append(insideHorizontalBorder91);
            tableCellBorders244.Append(insideVerticalBorder68);
            Shading shading436 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin114 = new TableCellMargin();
            StartMargin startMargin115 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin114.Append(startMargin115);

            tableCellProperties244.Append(tableCellWidth244);
            tableCellProperties244.Append(gridSpan242);
            tableCellProperties244.Append(tableCellBorders244);
            tableCellProperties244.Append(shading436);
            tableCellProperties244.Append(tableCellMargin114);

            Paragraph paragraph313 = new Paragraph();

            ParagraphProperties paragraphProperties313 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId313 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification178 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties313 = new ParagraphMarkRunProperties();

            paragraphProperties313.Append(paragraphStyleId313);
            paragraphProperties313.Append(justification178);
            paragraphProperties313.Append(paragraphMarkRunProperties313);

            Run run325 = new Run();

            RunProperties runProperties325 = new RunProperties();
            FontSize fontSize412 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript412 = new FontSizeComplexScript() { Val = "16" };

            runProperties325.Append(fontSize412);
            runProperties325.Append(fontSizeComplexScript412);
            Text text206 = new Text();
            text206.Text = "Республика, край, область, пункт";

            run325.Append(runProperties325);
            run325.Append(text206);

            paragraph313.Append(paragraphProperties313);
            paragraph313.Append(run325);

            tableCell244.Append(tableCellProperties244);
            tableCell244.Append(paragraph313);

            TableCell tableCell245 = new TableCell();

            TableCellProperties tableCellProperties245 = new TableCellProperties();
            TableCellWidth tableCellWidth245 = new TableCellWidth() { Width = "961", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan243 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders245 = new TableCellBorders();
            TopBorder topBorder128 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder115 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder92 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder92 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders245.Append(topBorder128);
            tableCellBorders245.Append(startBorder115);
            tableCellBorders245.Append(bottomBorder92);
            tableCellBorders245.Append(insideHorizontalBorder92);
            Shading shading437 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin115 = new TableCellMargin();
            StartMargin startMargin116 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin115.Append(startMargin116);

            tableCellProperties245.Append(tableCellWidth245);
            tableCellProperties245.Append(gridSpan243);
            tableCellProperties245.Append(tableCellBorders245);
            tableCellProperties245.Append(shading437);
            tableCellProperties245.Append(tableCellMargin115);

            Paragraph paragraph314 = new Paragraph();

            ParagraphProperties paragraphProperties314 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId314 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification179 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties314 = new ParagraphMarkRunProperties();

            paragraphProperties314.Append(paragraphStyleId314);
            paragraphProperties314.Append(justification179);
            paragraphProperties314.Append(paragraphMarkRunProperties314);

            Run run326 = new Run();

            RunProperties runProperties326 = new RunProperties();
            FontSize fontSize413 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript413 = new FontSizeComplexScript() { Val = "16" };

            runProperties326.Append(fontSize413);
            runProperties326.Append(fontSizeComplexScript413);
            Text text207 = new Text();
            text207.Text = "Барометрическое давление, гПа";

            run326.Append(runProperties326);
            run326.Append(text207);

            paragraph314.Append(paragraphProperties314);
            paragraph314.Append(run326);

            tableCell245.Append(tableCellProperties245);
            tableCell245.Append(paragraph314);

            TableCell tableCell246 = new TableCell();

            TableCellProperties tableCellProperties246 = new TableCellProperties();
            TableCellWidth tableCellWidth246 = new TableCellWidth() { Width = "1287", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan244 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders246 = new TableCellBorders();
            TopBorder topBorder129 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder116 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder93 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder93 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders246.Append(topBorder129);
            tableCellBorders246.Append(startBorder116);
            tableCellBorders246.Append(bottomBorder93);
            tableCellBorders246.Append(insideHorizontalBorder93);
            Shading shading438 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin116 = new TableCellMargin();
            StartMargin startMargin117 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin116.Append(startMargin117);

            tableCellProperties246.Append(tableCellWidth246);
            tableCellProperties246.Append(gridSpan244);
            tableCellProperties246.Append(tableCellBorders246);
            tableCellProperties246.Append(shading438);
            tableCellProperties246.Append(tableCellMargin116);

            Paragraph paragraph315 = new Paragraph();

            ParagraphProperties paragraphProperties315 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId315 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification180 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties315 = new ParagraphMarkRunProperties();

            paragraphProperties315.Append(paragraphStyleId315);
            paragraphProperties315.Append(justification180);
            paragraphProperties315.Append(paragraphMarkRunProperties315);

            Run run327 = new Run();

            RunProperties runProperties327 = new RunProperties();
            FontSize fontSize414 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript414 = new FontSizeComplexScript() { Val = "16" };

            runProperties327.Append(fontSize414);
            runProperties327.Append(fontSizeComplexScript414);
            Text text208 = new Text();
            text208.Text = "Температура воздуха, °С, обеспеченностью 0,95";

            run327.Append(runProperties327);
            run327.Append(text208);

            paragraph315.Append(paragraphProperties315);
            paragraph315.Append(run327);

            tableCell246.Append(tableCellProperties246);
            tableCell246.Append(paragraph315);

            TableCell tableCell247 = new TableCell();

            TableCellProperties tableCellProperties247 = new TableCellProperties();
            TableCellWidth tableCellWidth247 = new TableCellWidth() { Width = "871", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan245 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders247 = new TableCellBorders();
            TopBorder topBorder130 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder117 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder94 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder94 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders247.Append(topBorder130);
            tableCellBorders247.Append(startBorder117);
            tableCellBorders247.Append(bottomBorder94);
            tableCellBorders247.Append(insideHorizontalBorder94);
            Shading shading439 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin117 = new TableCellMargin();
            StartMargin startMargin118 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin117.Append(startMargin118);

            tableCellProperties247.Append(tableCellWidth247);
            tableCellProperties247.Append(gridSpan245);
            tableCellProperties247.Append(tableCellBorders247);
            tableCellProperties247.Append(shading439);
            tableCellProperties247.Append(tableCellMargin117);

            Paragraph paragraph316 = new Paragraph();

            ParagraphProperties paragraphProperties316 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId316 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification181 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties316 = new ParagraphMarkRunProperties();

            paragraphProperties316.Append(paragraphStyleId316);
            paragraphProperties316.Append(justification181);
            paragraphProperties316.Append(paragraphMarkRunProperties316);

            Run run328 = new Run();

            RunProperties runProperties328 = new RunProperties();
            FontSize fontSize415 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript415 = new FontSizeComplexScript() { Val = "16" };

            runProperties328.Append(fontSize415);
            runProperties328.Append(fontSizeComplexScript415);
            Text text209 = new Text();
            text209.Text = "Температура воздуха, °С, обеспеченностью 0,98";

            run328.Append(runProperties328);
            run328.Append(text209);

            paragraph316.Append(paragraphProperties316);
            paragraph316.Append(run328);

            tableCell247.Append(tableCellProperties247);
            tableCell247.Append(paragraph316);

            TableCell tableCell248 = new TableCell();

            TableCellProperties tableCellProperties248 = new TableCellProperties();
            TableCellWidth tableCellWidth248 = new TableCellWidth() { Width = "961", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan246 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders248 = new TableCellBorders();
            TopBorder topBorder131 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder118 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder95 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder95 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders248.Append(topBorder131);
            tableCellBorders248.Append(startBorder118);
            tableCellBorders248.Append(bottomBorder95);
            tableCellBorders248.Append(insideHorizontalBorder95);
            Shading shading440 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin118 = new TableCellMargin();
            StartMargin startMargin119 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin118.Append(startMargin119);

            tableCellProperties248.Append(tableCellWidth248);
            tableCellProperties248.Append(gridSpan246);
            tableCellProperties248.Append(tableCellBorders248);
            tableCellProperties248.Append(shading440);
            tableCellProperties248.Append(tableCellMargin118);

            Paragraph paragraph317 = new Paragraph();

            ParagraphProperties paragraphProperties317 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId317 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification182 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties317 = new ParagraphMarkRunProperties();

            paragraphProperties317.Append(paragraphStyleId317);
            paragraphProperties317.Append(justification182);
            paragraphProperties317.Append(paragraphMarkRunProperties317);

            Run run329 = new Run();

            RunProperties runProperties329 = new RunProperties();
            FontSize fontSize416 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript416 = new FontSizeComplexScript() { Val = "16" };

            runProperties329.Append(fontSize416);
            runProperties329.Append(fontSizeComplexScript416);
            Text text210 = new Text();
            text210.Text = "Средняя максимальная температура воздуха наиболее теплого месяца, °С";

            run329.Append(runProperties329);
            run329.Append(text210);

            paragraph317.Append(paragraphProperties317);
            paragraph317.Append(run329);

            tableCell248.Append(tableCellProperties248);
            tableCell248.Append(paragraph317);

            TableCell tableCell249 = new TableCell();

            TableCellProperties tableCellProperties249 = new TableCellProperties();
            TableCellWidth tableCellWidth249 = new TableCellWidth() { Width = "1224", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan247 = new GridSpan() { Val = 5 };

            TableCellBorders tableCellBorders249 = new TableCellBorders();
            TopBorder topBorder132 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder119 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder96 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder96 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders249.Append(topBorder132);
            tableCellBorders249.Append(startBorder119);
            tableCellBorders249.Append(bottomBorder96);
            tableCellBorders249.Append(insideHorizontalBorder96);
            Shading shading441 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin119 = new TableCellMargin();
            StartMargin startMargin120 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin119.Append(startMargin120);

            tableCellProperties249.Append(tableCellWidth249);
            tableCellProperties249.Append(gridSpan247);
            tableCellProperties249.Append(tableCellBorders249);
            tableCellProperties249.Append(shading441);
            tableCellProperties249.Append(tableCellMargin119);

            Paragraph paragraph318 = new Paragraph();

            ParagraphProperties paragraphProperties318 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId318 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification183 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties318 = new ParagraphMarkRunProperties();

            paragraphProperties318.Append(paragraphStyleId318);
            paragraphProperties318.Append(justification183);
            paragraphProperties318.Append(paragraphMarkRunProperties318);

            Run run330 = new Run();

            RunProperties runProperties330 = new RunProperties();
            FontSize fontSize417 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript417 = new FontSizeComplexScript() { Val = "16" };

            runProperties330.Append(fontSize417);
            runProperties330.Append(fontSizeComplexScript417);
            Text text211 = new Text();
            text211.Text = "Абсолютная максимальная температура воздуха, °С";

            run330.Append(runProperties330);
            run330.Append(text211);

            paragraph318.Append(paragraphProperties318);
            paragraph318.Append(run330);

            tableCell249.Append(tableCellProperties249);
            tableCell249.Append(paragraph318);

            TableCell tableCell250 = new TableCell();

            TableCellProperties tableCellProperties250 = new TableCellProperties();
            TableCellWidth tableCellWidth250 = new TableCellWidth() { Width = "1155", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan248 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders250 = new TableCellBorders();
            TopBorder topBorder133 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder120 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder97 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder97 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders250.Append(topBorder133);
            tableCellBorders250.Append(startBorder120);
            tableCellBorders250.Append(bottomBorder97);
            tableCellBorders250.Append(insideHorizontalBorder97);
            Shading shading442 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin120 = new TableCellMargin();
            StartMargin startMargin121 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin120.Append(startMargin121);

            tableCellProperties250.Append(tableCellWidth250);
            tableCellProperties250.Append(gridSpan248);
            tableCellProperties250.Append(tableCellBorders250);
            tableCellProperties250.Append(shading442);
            tableCellProperties250.Append(tableCellMargin120);

            Paragraph paragraph319 = new Paragraph();

            ParagraphProperties paragraphProperties319 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId319 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification184 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties319 = new ParagraphMarkRunProperties();

            paragraphProperties319.Append(paragraphStyleId319);
            paragraphProperties319.Append(justification184);
            paragraphProperties319.Append(paragraphMarkRunProperties319);

            Run run331 = new Run();

            RunProperties runProperties331 = new RunProperties();
            FontSize fontSize418 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript418 = new FontSizeComplexScript() { Val = "16" };

            runProperties331.Append(fontSize418);
            runProperties331.Append(fontSizeComplexScript418);
            Text text212 = new Text();
            text212.Text = "Средняя суточная амплитуда температуры воздуха наиболее теплого месяца, °С";

            run331.Append(runProperties331);
            run331.Append(text212);

            paragraph319.Append(paragraphProperties319);
            paragraph319.Append(run331);

            tableCell250.Append(tableCellProperties250);
            tableCell250.Append(paragraph319);

            TableCell tableCell251 = new TableCell();

            TableCellProperties tableCellProperties251 = new TableCellProperties();
            TableCellWidth tableCellWidth251 = new TableCellWidth() { Width = "1148", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan249 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders251 = new TableCellBorders();
            TopBorder topBorder134 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder121 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder98 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder98 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders251.Append(topBorder134);
            tableCellBorders251.Append(startBorder121);
            tableCellBorders251.Append(bottomBorder98);
            tableCellBorders251.Append(insideHorizontalBorder98);
            Shading shading443 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin121 = new TableCellMargin();
            StartMargin startMargin122 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin121.Append(startMargin122);

            tableCellProperties251.Append(tableCellWidth251);
            tableCellProperties251.Append(gridSpan249);
            tableCellProperties251.Append(tableCellBorders251);
            tableCellProperties251.Append(shading443);
            tableCellProperties251.Append(tableCellMargin121);

            Paragraph paragraph320 = new Paragraph();

            ParagraphProperties paragraphProperties320 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId320 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification185 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties320 = new ParagraphMarkRunProperties();

            paragraphProperties320.Append(paragraphStyleId320);
            paragraphProperties320.Append(justification185);
            paragraphProperties320.Append(paragraphMarkRunProperties320);

            Run run332 = new Run();

            RunProperties runProperties332 = new RunProperties();
            FontSize fontSize419 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript419 = new FontSizeComplexScript() { Val = "16" };

            runProperties332.Append(fontSize419);
            runProperties332.Append(fontSizeComplexScript419);
            Text text213 = new Text();
            text213.Text = "Средняя месячная относительная влажность воздуха наиболее теплого месяца, %";

            run332.Append(runProperties332);
            run332.Append(text213);

            paragraph320.Append(paragraphProperties320);
            paragraph320.Append(run332);

            tableCell251.Append(tableCellProperties251);
            tableCell251.Append(paragraph320);

            TableCell tableCell252 = new TableCell();

            TableCellProperties tableCellProperties252 = new TableCellProperties();
            TableCellWidth tableCellWidth252 = new TableCellWidth() { Width = "1155", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan250 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders252 = new TableCellBorders();
            TopBorder topBorder135 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder122 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder99 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder69 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder99 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder69 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders252.Append(topBorder135);
            tableCellBorders252.Append(startBorder122);
            tableCellBorders252.Append(bottomBorder99);
            tableCellBorders252.Append(endBorder69);
            tableCellBorders252.Append(insideHorizontalBorder99);
            tableCellBorders252.Append(insideVerticalBorder69);
            Shading shading444 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin122 = new TableCellMargin();
            StartMargin startMargin123 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin122.Append(startMargin123);

            tableCellProperties252.Append(tableCellWidth252);
            tableCellProperties252.Append(gridSpan250);
            tableCellProperties252.Append(tableCellBorders252);
            tableCellProperties252.Append(shading444);
            tableCellProperties252.Append(tableCellMargin122);

            Paragraph paragraph321 = new Paragraph();

            ParagraphProperties paragraphProperties321 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId321 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification186 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties321 = new ParagraphMarkRunProperties();

            paragraphProperties321.Append(paragraphStyleId321);
            paragraphProperties321.Append(justification186);
            paragraphProperties321.Append(paragraphMarkRunProperties321);

            Run run333 = new Run();

            RunProperties runProperties333 = new RunProperties();
            FontSize fontSize420 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript420 = new FontSizeComplexScript() { Val = "16" };

            runProperties333.Append(fontSize420);
            runProperties333.Append(fontSizeComplexScript420);
            Text text214 = new Text();
            text214.Text = "Средняя месячная относительная влажность воздуха в 15 ч наиболее теплого месяца, %";

            run333.Append(runProperties333);
            run333.Append(text214);

            paragraph321.Append(paragraphProperties321);
            paragraph321.Append(run333);

            tableCell252.Append(tableCellProperties252);
            tableCell252.Append(paragraph321);

            tableRow95.Append(tableRowProperties95);
            tableRow95.Append(tableCell244);
            tableRow95.Append(tableCell245);
            tableRow95.Append(tableCell246);
            tableRow95.Append(tableCell247);
            tableRow95.Append(tableCell248);
            tableRow95.Append(tableCell249);
            tableRow95.Append(tableCell250);
            tableRow95.Append(tableCell251);
            tableRow95.Append(tableCell252);

            TableRow tableRow96 = new TableRow();
            TableRowProperties tableRowProperties96 = new TableRowProperties();

            TableCell tableCell253 = new TableCell();

            TableCellProperties tableCellProperties253 = new TableCellProperties();
            TableCellWidth tableCellWidth253 = new TableCellWidth() { Width = "873", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan251 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders253 = new TableCellBorders();
            TopBorder topBorder136 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder123 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder100 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder70 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder100 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder70 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders253.Append(topBorder136);
            tableCellBorders253.Append(startBorder123);
            tableCellBorders253.Append(bottomBorder100);
            tableCellBorders253.Append(endBorder70);
            tableCellBorders253.Append(insideHorizontalBorder100);
            tableCellBorders253.Append(insideVerticalBorder70);
            Shading shading445 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin123 = new TableCellMargin();
            StartMargin startMargin124 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin123.Append(startMargin124);

            tableCellProperties253.Append(tableCellWidth253);
            tableCellProperties253.Append(gridSpan251);
            tableCellProperties253.Append(tableCellBorders253);
            tableCellProperties253.Append(shading445);
            tableCellProperties253.Append(tableCellMargin123);

            Paragraph paragraph322 = new Paragraph();

            ParagraphProperties paragraphProperties322 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId322 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification187 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties322 = new ParagraphMarkRunProperties();

            paragraphProperties322.Append(paragraphStyleId322);
            paragraphProperties322.Append(justification187);
            paragraphProperties322.Append(paragraphMarkRunProperties322);

            Run run334 = new Run();

            RunProperties runProperties334 = new RunProperties();
            FontSize fontSize421 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript421 = new FontSizeComplexScript() { Val = "16" };

            runProperties334.Append(fontSize421);
            runProperties334.Append(fontSizeComplexScript421);
            Text text215 = new Text();
            text215.Text = "г. Москва";

            run334.Append(runProperties334);
            run334.Append(text215);

            paragraph322.Append(paragraphProperties322);
            paragraph322.Append(run334);

            tableCell253.Append(tableCellProperties253);
            tableCell253.Append(paragraph322);

            TableCell tableCell254 = new TableCell();

            TableCellProperties tableCellProperties254 = new TableCellProperties();
            TableCellWidth tableCellWidth254 = new TableCellWidth() { Width = "961", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan252 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders254 = new TableCellBorders();
            TopBorder topBorder137 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder124 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder101 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder101 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders254.Append(topBorder137);
            tableCellBorders254.Append(startBorder124);
            tableCellBorders254.Append(bottomBorder101);
            tableCellBorders254.Append(insideHorizontalBorder101);
            Shading shading446 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin124 = new TableCellMargin();
            StartMargin startMargin125 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin124.Append(startMargin125);

            tableCellProperties254.Append(tableCellWidth254);
            tableCellProperties254.Append(gridSpan252);
            tableCellProperties254.Append(tableCellBorders254);
            tableCellProperties254.Append(shading446);
            tableCellProperties254.Append(tableCellMargin124);

            Paragraph paragraph323 = new Paragraph();

            ParagraphProperties paragraphProperties323 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId323 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification188 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties323 = new ParagraphMarkRunProperties();

            paragraphProperties323.Append(paragraphStyleId323);
            paragraphProperties323.Append(justification188);
            paragraphProperties323.Append(paragraphMarkRunProperties323);

            Run run335 = new Run();

            RunProperties runProperties335 = new RunProperties();
            FontSize fontSize422 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript422 = new FontSizeComplexScript() { Val = "16" };

            runProperties335.Append(fontSize422);
            runProperties335.Append(fontSizeComplexScript422);
            Text text216 = new Text();
            text216.Text = "997";

            run335.Append(runProperties335);
            run335.Append(text216);

            paragraph323.Append(paragraphProperties323);
            paragraph323.Append(run335);

            tableCell254.Append(tableCellProperties254);
            tableCell254.Append(paragraph323);

            TableCell tableCell255 = new TableCell();

            TableCellProperties tableCellProperties255 = new TableCellProperties();
            TableCellWidth tableCellWidth255 = new TableCellWidth() { Width = "1287", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan253 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders255 = new TableCellBorders();
            TopBorder topBorder138 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder125 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder102 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder102 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders255.Append(topBorder138);
            tableCellBorders255.Append(startBorder125);
            tableCellBorders255.Append(bottomBorder102);
            tableCellBorders255.Append(insideHorizontalBorder102);
            Shading shading447 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin125 = new TableCellMargin();
            StartMargin startMargin126 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin125.Append(startMargin126);

            tableCellProperties255.Append(tableCellWidth255);
            tableCellProperties255.Append(gridSpan253);
            tableCellProperties255.Append(tableCellBorders255);
            tableCellProperties255.Append(shading447);
            tableCellProperties255.Append(tableCellMargin125);

            Paragraph paragraph324 = new Paragraph();

            ParagraphProperties paragraphProperties324 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId324 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification189 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties324 = new ParagraphMarkRunProperties();

            paragraphProperties324.Append(paragraphStyleId324);
            paragraphProperties324.Append(justification189);
            paragraphProperties324.Append(paragraphMarkRunProperties324);

            Run run336 = new Run();

            RunProperties runProperties336 = new RunProperties();
            FontSize fontSize423 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript423 = new FontSizeComplexScript() { Val = "16" };

            runProperties336.Append(fontSize423);
            runProperties336.Append(fontSizeComplexScript423);
            Text text217 = new Text();
            text217.Text = "23";

            run336.Append(runProperties336);
            run336.Append(text217);

            paragraph324.Append(paragraphProperties324);
            paragraph324.Append(run336);

            tableCell255.Append(tableCellProperties255);
            tableCell255.Append(paragraph324);

            TableCell tableCell256 = new TableCell();

            TableCellProperties tableCellProperties256 = new TableCellProperties();
            TableCellWidth tableCellWidth256 = new TableCellWidth() { Width = "871", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan254 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders256 = new TableCellBorders();
            TopBorder topBorder139 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder126 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder103 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder103 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders256.Append(topBorder139);
            tableCellBorders256.Append(startBorder126);
            tableCellBorders256.Append(bottomBorder103);
            tableCellBorders256.Append(insideHorizontalBorder103);
            Shading shading448 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin126 = new TableCellMargin();
            StartMargin startMargin127 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin126.Append(startMargin127);

            tableCellProperties256.Append(tableCellWidth256);
            tableCellProperties256.Append(gridSpan254);
            tableCellProperties256.Append(tableCellBorders256);
            tableCellProperties256.Append(shading448);
            tableCellProperties256.Append(tableCellMargin126);

            Paragraph paragraph325 = new Paragraph();

            ParagraphProperties paragraphProperties325 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId325 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification190 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties325 = new ParagraphMarkRunProperties();

            paragraphProperties325.Append(paragraphStyleId325);
            paragraphProperties325.Append(justification190);
            paragraphProperties325.Append(paragraphMarkRunProperties325);

            Run run337 = new Run();

            RunProperties runProperties337 = new RunProperties();
            FontSize fontSize424 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript424 = new FontSizeComplexScript() { Val = "16" };

            runProperties337.Append(fontSize424);
            runProperties337.Append(fontSizeComplexScript424);
            Text text218 = new Text();
            text218.Text = "26";

            run337.Append(runProperties337);
            run337.Append(text218);

            paragraph325.Append(paragraphProperties325);
            paragraph325.Append(run337);

            tableCell256.Append(tableCellProperties256);
            tableCell256.Append(paragraph325);

            TableCell tableCell257 = new TableCell();

            TableCellProperties tableCellProperties257 = new TableCellProperties();
            TableCellWidth tableCellWidth257 = new TableCellWidth() { Width = "961", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan255 = new GridSpan() { Val = 3 };

            TableCellBorders tableCellBorders257 = new TableCellBorders();
            TopBorder topBorder140 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder127 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder104 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder104 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders257.Append(topBorder140);
            tableCellBorders257.Append(startBorder127);
            tableCellBorders257.Append(bottomBorder104);
            tableCellBorders257.Append(insideHorizontalBorder104);
            Shading shading449 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin127 = new TableCellMargin();
            StartMargin startMargin128 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin127.Append(startMargin128);

            tableCellProperties257.Append(tableCellWidth257);
            tableCellProperties257.Append(gridSpan255);
            tableCellProperties257.Append(tableCellBorders257);
            tableCellProperties257.Append(shading449);
            tableCellProperties257.Append(tableCellMargin127);

            Paragraph paragraph326 = new Paragraph();

            ParagraphProperties paragraphProperties326 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId326 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification191 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties326 = new ParagraphMarkRunProperties();

            paragraphProperties326.Append(paragraphStyleId326);
            paragraphProperties326.Append(justification191);
            paragraphProperties326.Append(paragraphMarkRunProperties326);

            Run run338 = new Run();

            RunProperties runProperties338 = new RunProperties();
            FontSize fontSize425 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript425 = new FontSizeComplexScript() { Val = "16" };

            runProperties338.Append(fontSize425);
            runProperties338.Append(fontSizeComplexScript425);
            Text text219 = new Text();
            text219.Text = "23,5";

            run338.Append(runProperties338);
            run338.Append(text219);

            paragraph326.Append(paragraphProperties326);
            paragraph326.Append(run338);

            tableCell257.Append(tableCellProperties257);
            tableCell257.Append(paragraph326);

            TableCell tableCell258 = new TableCell();

            TableCellProperties tableCellProperties258 = new TableCellProperties();
            TableCellWidth tableCellWidth258 = new TableCellWidth() { Width = "1224", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan256 = new GridSpan() { Val = 5 };

            TableCellBorders tableCellBorders258 = new TableCellBorders();
            TopBorder topBorder141 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder128 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder105 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder105 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders258.Append(topBorder141);
            tableCellBorders258.Append(startBorder128);
            tableCellBorders258.Append(bottomBorder105);
            tableCellBorders258.Append(insideHorizontalBorder105);
            Shading shading450 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin128 = new TableCellMargin();
            StartMargin startMargin129 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin128.Append(startMargin129);

            tableCellProperties258.Append(tableCellWidth258);
            tableCellProperties258.Append(gridSpan256);
            tableCellProperties258.Append(tableCellBorders258);
            tableCellProperties258.Append(shading450);
            tableCellProperties258.Append(tableCellMargin128);

            Paragraph paragraph327 = new Paragraph();

            ParagraphProperties paragraphProperties327 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId327 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification192 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties327 = new ParagraphMarkRunProperties();

            paragraphProperties327.Append(paragraphStyleId327);
            paragraphProperties327.Append(justification192);
            paragraphProperties327.Append(paragraphMarkRunProperties327);

            Run run339 = new Run();

            RunProperties runProperties339 = new RunProperties();
            FontSize fontSize426 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript426 = new FontSizeComplexScript() { Val = "16" };

            runProperties339.Append(fontSize426);
            runProperties339.Append(fontSizeComplexScript426);
            Text text220 = new Text();
            text220.Text = "38";

            run339.Append(runProperties339);
            run339.Append(text220);

            paragraph327.Append(paragraphProperties327);
            paragraph327.Append(run339);

            tableCell258.Append(tableCellProperties258);
            tableCell258.Append(paragraph327);

            TableCell tableCell259 = new TableCell();

            TableCellProperties tableCellProperties259 = new TableCellProperties();
            TableCellWidth tableCellWidth259 = new TableCellWidth() { Width = "1155", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan257 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders259 = new TableCellBorders();
            TopBorder topBorder142 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder129 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder106 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder106 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders259.Append(topBorder142);
            tableCellBorders259.Append(startBorder129);
            tableCellBorders259.Append(bottomBorder106);
            tableCellBorders259.Append(insideHorizontalBorder106);
            Shading shading451 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin129 = new TableCellMargin();
            StartMargin startMargin130 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin129.Append(startMargin130);

            tableCellProperties259.Append(tableCellWidth259);
            tableCellProperties259.Append(gridSpan257);
            tableCellProperties259.Append(tableCellBorders259);
            tableCellProperties259.Append(shading451);
            tableCellProperties259.Append(tableCellMargin129);

            Paragraph paragraph328 = new Paragraph();

            ParagraphProperties paragraphProperties328 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId328 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification193 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties328 = new ParagraphMarkRunProperties();

            paragraphProperties328.Append(paragraphStyleId328);
            paragraphProperties328.Append(justification193);
            paragraphProperties328.Append(paragraphMarkRunProperties328);

            Run run340 = new Run();

            RunProperties runProperties340 = new RunProperties();
            FontSize fontSize427 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript427 = new FontSizeComplexScript() { Val = "16" };

            runProperties340.Append(fontSize427);
            runProperties340.Append(fontSizeComplexScript427);
            Text text221 = new Text();
            text221.Text = "9,6";

            run340.Append(runProperties340);
            run340.Append(text221);

            paragraph328.Append(paragraphProperties328);
            paragraph328.Append(run340);

            tableCell259.Append(tableCellProperties259);
            tableCell259.Append(paragraph328);

            TableCell tableCell260 = new TableCell();

            TableCellProperties tableCellProperties260 = new TableCellProperties();
            TableCellWidth tableCellWidth260 = new TableCellWidth() { Width = "1148", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan258 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders260 = new TableCellBorders();
            TopBorder topBorder143 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder130 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder107 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder107 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders260.Append(topBorder143);
            tableCellBorders260.Append(startBorder130);
            tableCellBorders260.Append(bottomBorder107);
            tableCellBorders260.Append(insideHorizontalBorder107);
            Shading shading452 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin130 = new TableCellMargin();
            StartMargin startMargin131 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin130.Append(startMargin131);

            tableCellProperties260.Append(tableCellWidth260);
            tableCellProperties260.Append(gridSpan258);
            tableCellProperties260.Append(tableCellBorders260);
            tableCellProperties260.Append(shading452);
            tableCellProperties260.Append(tableCellMargin130);

            Paragraph paragraph329 = new Paragraph();

            ParagraphProperties paragraphProperties329 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId329 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification194 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties329 = new ParagraphMarkRunProperties();

            paragraphProperties329.Append(paragraphStyleId329);
            paragraphProperties329.Append(justification194);
            paragraphProperties329.Append(paragraphMarkRunProperties329);

            Run run341 = new Run();

            RunProperties runProperties341 = new RunProperties();
            FontSize fontSize428 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript428 = new FontSizeComplexScript() { Val = "16" };

            runProperties341.Append(fontSize428);
            runProperties341.Append(fontSizeComplexScript428);
            Text text222 = new Text();
            text222.Text = "73";

            run341.Append(runProperties341);
            run341.Append(text222);

            paragraph329.Append(paragraphProperties329);
            paragraph329.Append(run341);

            tableCell260.Append(tableCellProperties260);
            tableCell260.Append(paragraph329);

            TableCell tableCell261 = new TableCell();

            TableCellProperties tableCellProperties261 = new TableCellProperties();
            TableCellWidth tableCellWidth261 = new TableCellWidth() { Width = "1155", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan259 = new GridSpan() { Val = 2 };

            TableCellBorders tableCellBorders261 = new TableCellBorders();
            TopBorder topBorder144 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder131 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder108 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder71 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder108 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder71 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders261.Append(topBorder144);
            tableCellBorders261.Append(startBorder131);
            tableCellBorders261.Append(bottomBorder108);
            tableCellBorders261.Append(endBorder71);
            tableCellBorders261.Append(insideHorizontalBorder108);
            tableCellBorders261.Append(insideVerticalBorder71);
            Shading shading453 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin131 = new TableCellMargin();
            StartMargin startMargin132 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin131.Append(startMargin132);

            tableCellProperties261.Append(tableCellWidth261);
            tableCellProperties261.Append(gridSpan259);
            tableCellProperties261.Append(tableCellBorders261);
            tableCellProperties261.Append(shading453);
            tableCellProperties261.Append(tableCellMargin131);

            Paragraph paragraph330 = new Paragraph();

            ParagraphProperties paragraphProperties330 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId330 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification195 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties330 = new ParagraphMarkRunProperties();

            paragraphProperties330.Append(paragraphStyleId330);
            paragraphProperties330.Append(justification195);
            paragraphProperties330.Append(paragraphMarkRunProperties330);

            Run run342 = new Run();

            RunProperties runProperties342 = new RunProperties();
            FontSize fontSize429 = new FontSize() { Val = "16" };
            FontSizeComplexScript fontSizeComplexScript429 = new FontSizeComplexScript() { Val = "16" };

            runProperties342.Append(fontSize429);
            runProperties342.Append(fontSizeComplexScript429);
            Text text223 = new Text();
            text223.Text = "60";

            run342.Append(runProperties342);
            run342.Append(text223);

            paragraph330.Append(paragraphProperties330);
            paragraph330.Append(run342);

            tableCell261.Append(tableCellProperties261);
            tableCell261.Append(paragraph330);

            tableRow96.Append(tableRowProperties96);
            tableRow96.Append(tableCell253);
            tableRow96.Append(tableCell254);
            tableRow96.Append(tableCell255);
            tableRow96.Append(tableCell256);
            tableRow96.Append(tableCell257);
            tableRow96.Append(tableCell258);
            tableRow96.Append(tableCell259);
            tableRow96.Append(tableCell260);
            tableRow96.Append(tableCell261);

            TableRow tableRow97 = new TableRow();
            TableRowProperties tableRowProperties97 = new TableRowProperties();

            TableCell tableCell262 = new TableCell();

            TableCellProperties tableCellProperties262 = new TableCellProperties();
            TableCellWidth tableCellWidth262 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan260 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders262 = new TableCellBorders();
            TopBorder topBorder145 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders262.Append(topBorder145);
            Shading shading454 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties262.Append(tableCellWidth262);
            tableCellProperties262.Append(gridSpan260);
            tableCellProperties262.Append(tableCellBorders262);
            tableCellProperties262.Append(shading454);

            Paragraph paragraph331 = new Paragraph();

            ParagraphProperties paragraphProperties331 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId331 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs26 = new Tabs();
            TabStop tabStop626 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2220 };

            tabs26.Append(tabStop626);

            ParagraphMarkRunProperties paragraphMarkRunProperties331 = new ParagraphMarkRunProperties();
            FontSize fontSize430 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript430 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties331.Append(fontSize430);
            paragraphMarkRunProperties331.Append(fontSizeComplexScript430);

            paragraphProperties331.Append(paragraphStyleId331);
            paragraphProperties331.Append(tabs26);
            paragraphProperties331.Append(paragraphMarkRunProperties331);

            Run run343 = new Run();

            RunProperties runProperties343 = new RunProperties();
            FontSize fontSize431 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript431 = new FontSizeComplexScript() { Val = "26" };

            runProperties343.Append(fontSize431);
            runProperties343.Append(fontSizeComplexScript431);

            run343.Append(runProperties343);

            paragraph331.Append(paragraphProperties331);
            paragraph331.Append(run343);

            Paragraph paragraph332 = new Paragraph();

            ParagraphProperties paragraphProperties332 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId332 = new ParagraphStyleId() { Val = "Normal" };

            Tabs tabs27 = new Tabs();
            TabStop tabStop627 = new TabStop() { Val = TabStopValues.Left, Leader = TabStopLeaderCharValues.None, Position = 2220 };

            tabs27.Append(tabStop627);
            ParagraphMarkRunProperties paragraphMarkRunProperties332 = new ParagraphMarkRunProperties();

            paragraphProperties332.Append(paragraphStyleId332);
            paragraphProperties332.Append(tabs27);
            paragraphProperties332.Append(paragraphMarkRunProperties332);

            Run run344 = new Run();

            RunProperties runProperties344 = new RunProperties();
            FontSize fontSize432 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript432 = new FontSizeComplexScript() { Val = "26" };

            runProperties344.Append(fontSize432);
            runProperties344.Append(fontSizeComplexScript432);
            Text text224 = new Text();
            text224.Text = "Климатические параметры теплого периода года по СП 131.13330.2012.";

            run344.Append(runProperties344);
            run344.Append(text224);

            paragraph332.Append(paragraphProperties332);
            paragraph332.Append(run344);

            tableCell262.Append(tableCellProperties262);
            tableCell262.Append(paragraph331);
            tableCell262.Append(paragraph332);

            tableRow97.Append(tableRowProperties97);
            tableRow97.Append(tableCell262);

            TableRow tableRow98 = new TableRow();
            TableRowProperties tableRowProperties98 = new TableRowProperties();

            TableCell tableCell263 = new TableCell();

            TableCellProperties tableCellProperties263 = new TableCellProperties();
            TableCellWidth tableCellWidth263 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan261 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders263 = new TableCellBorders();
            Shading shading455 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties263.Append(tableCellWidth263);
            tableCellProperties263.Append(gridSpan261);
            tableCellProperties263.Append(tableCellBorders263);
            tableCellProperties263.Append(shading455);

            Paragraph paragraph333 = new Paragraph();

            ParagraphProperties paragraphProperties333 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId333 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties333 = new ParagraphMarkRunProperties();

            paragraphProperties333.Append(paragraphStyleId333);
            paragraphProperties333.Append(paragraphMarkRunProperties333);

            Run run345 = new Run();

            RunProperties runProperties345 = new RunProperties();
            FontSize fontSize433 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript433 = new FontSizeComplexScript() { Val = "26" };

            runProperties345.Append(fontSize433);
            runProperties345.Append(fontSizeComplexScript433);
            Text text225 = new Text();
            text225.Text = "Ветровой режим";

            run345.Append(runProperties345);
            run345.Append(text225);

            paragraph333.Append(paragraphProperties333);
            paragraph333.Append(run345);

            tableCell263.Append(tableCellProperties263);
            tableCell263.Append(paragraph333);

            tableRow98.Append(tableRowProperties98);
            tableRow98.Append(tableCell263);

            TableRow tableRow99 = new TableRow();
            TableRowProperties tableRowProperties99 = new TableRowProperties();

            TableCell tableCell264 = new TableCell();

            TableCellProperties tableCellProperties264 = new TableCellProperties();
            TableCellWidth tableCellWidth264 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan262 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders264 = new TableCellBorders();
            TopBorder topBorder146 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder109 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder109 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders264.Append(topBorder146);
            tableCellBorders264.Append(bottomBorder109);
            tableCellBorders264.Append(insideHorizontalBorder109);
            Shading shading456 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties264.Append(tableCellWidth264);
            tableCellProperties264.Append(gridSpan262);
            tableCellProperties264.Append(tableCellBorders264);
            tableCellProperties264.Append(shading456);

            Paragraph paragraph334 = new Paragraph();

            ParagraphProperties paragraphProperties334 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId334 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties334 = new ParagraphMarkRunProperties();

            paragraphProperties334.Append(paragraphStyleId334);
            paragraphProperties334.Append(paragraphMarkRunProperties334);

            Run run346 = new Run();

            RunProperties runProperties346 = new RunProperties();
            FontSize fontSize434 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript434 = new FontSizeComplexScript() { Val = "26" };

            runProperties346.Append(fontSize434);
            runProperties346.Append(fontSizeComplexScript434);
            Text text226 = new Text();
            text226.Text = "Повторяемость направления ветра и осадки холодного периода года по СП 131.13330.2012";

            run346.Append(runProperties346);
            run346.Append(text226);

            paragraph334.Append(paragraphProperties334);
            paragraph334.Append(run346);

            tableCell264.Append(tableCellProperties264);
            tableCell264.Append(paragraph334);

            tableRow99.Append(tableRowProperties99);
            tableRow99.Append(tableCell264);

            TableRow tableRow100 = new TableRow();
            TableRowProperties tableRowProperties100 = new TableRowProperties();

            TableCell tableCell265 = new TableCell();

            TableCellProperties tableCellProperties265 = new TableCellProperties();
            TableCellWidth tableCellWidth265 = new TableCellWidth() { Width = "1058", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan263 = new GridSpan() { Val = 4 };

            TableCellBorders tableCellBorders265 = new TableCellBorders();
            TopBorder topBorder147 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder132 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder110 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder72 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder110 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder72 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders265.Append(topBorder147);
            tableCellBorders265.Append(startBorder132);
            tableCellBorders265.Append(bottomBorder110);
            tableCellBorders265.Append(endBorder72);
            tableCellBorders265.Append(insideHorizontalBorder110);
            tableCellBorders265.Append(insideVerticalBorder72);
            Shading shading457 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin132 = new TableCellMargin();
            StartMargin startMargin133 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin132.Append(startMargin133);
            TableCellVerticalAlignment tableCellVerticalAlignment21 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties265.Append(tableCellWidth265);
            tableCellProperties265.Append(gridSpan263);
            tableCellProperties265.Append(tableCellBorders265);
            tableCellProperties265.Append(shading457);
            tableCellProperties265.Append(tableCellMargin132);
            tableCellProperties265.Append(tableCellVerticalAlignment21);

            Paragraph paragraph335 = new Paragraph();

            ParagraphProperties paragraphProperties335 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId335 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification196 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties335 = new ParagraphMarkRunProperties();

            paragraphProperties335.Append(paragraphStyleId335);
            paragraphProperties335.Append(justification196);
            paragraphProperties335.Append(paragraphMarkRunProperties335);

            Run run347 = new Run();

            RunProperties runProperties347 = new RunProperties();
            Color color1 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize435 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript435 = new FontSizeComplexScript() { Val = "20" };

            runProperties347.Append(color1);
            runProperties347.Append(fontSize435);
            runProperties347.Append(fontSizeComplexScript435);
            Text text227 = new Text();
            text227.Text = "Количество осадков за ноябрь-март, мм";

            run347.Append(runProperties347);
            run347.Append(text227);

            paragraph335.Append(paragraphProperties335);
            paragraph335.Append(run347);

            tableCell265.Append(tableCellProperties265);
            tableCell265.Append(paragraph335);

            TableCell tableCell266 = new TableCell();

            TableCellProperties tableCellProperties266 = new TableCellProperties();
            TableCellWidth tableCellWidth266 = new TableCellWidth() { Width = "2650", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan264 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders266 = new TableCellBorders();
            TopBorder topBorder148 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder133 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder111 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder111 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders266.Append(topBorder148);
            tableCellBorders266.Append(startBorder133);
            tableCellBorders266.Append(bottomBorder111);
            tableCellBorders266.Append(insideHorizontalBorder111);
            Shading shading458 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin133 = new TableCellMargin();
            StartMargin startMargin134 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin133.Append(startMargin134);
            TableCellVerticalAlignment tableCellVerticalAlignment22 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties266.Append(tableCellWidth266);
            tableCellProperties266.Append(gridSpan264);
            tableCellProperties266.Append(tableCellBorders266);
            tableCellProperties266.Append(shading458);
            tableCellProperties266.Append(tableCellMargin133);
            tableCellProperties266.Append(tableCellVerticalAlignment22);

            Paragraph paragraph336 = new Paragraph();

            ParagraphProperties paragraphProperties336 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId336 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification197 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties336 = new ParagraphMarkRunProperties();

            paragraphProperties336.Append(paragraphStyleId336);
            paragraphProperties336.Append(justification197);
            paragraphProperties336.Append(paragraphMarkRunProperties336);

            Run run348 = new Run();

            RunProperties runProperties348 = new RunProperties();
            Color color2 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize436 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript436 = new FontSizeComplexScript() { Val = "20" };

            runProperties348.Append(color2);
            runProperties348.Append(fontSize436);
            runProperties348.Append(fontSizeComplexScript436);
            Text text228 = new Text();
            text228.Text = "Преобладающее направление ветра за декабрь-февраль";

            run348.Append(runProperties348);
            run348.Append(text228);

            paragraph336.Append(paragraphProperties336);
            paragraph336.Append(run348);

            tableCell266.Append(tableCellProperties266);
            tableCell266.Append(paragraph336);

            TableCell tableCell267 = new TableCell();

            TableCellProperties tableCellProperties267 = new TableCellProperties();
            TableCellWidth tableCellWidth267 = new TableCellWidth() { Width = "2997", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan265 = new GridSpan() { Val = 16 };

            TableCellBorders tableCellBorders267 = new TableCellBorders();
            TopBorder topBorder149 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder134 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder112 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder112 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders267.Append(topBorder149);
            tableCellBorders267.Append(startBorder134);
            tableCellBorders267.Append(bottomBorder112);
            tableCellBorders267.Append(insideHorizontalBorder112);
            Shading shading459 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin134 = new TableCellMargin();
            StartMargin startMargin135 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin134.Append(startMargin135);
            TableCellVerticalAlignment tableCellVerticalAlignment23 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties267.Append(tableCellWidth267);
            tableCellProperties267.Append(gridSpan265);
            tableCellProperties267.Append(tableCellBorders267);
            tableCellProperties267.Append(shading459);
            tableCellProperties267.Append(tableCellMargin134);
            tableCellProperties267.Append(tableCellVerticalAlignment23);

            Paragraph paragraph337 = new Paragraph();

            ParagraphProperties paragraphProperties337 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId337 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification198 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties337 = new ParagraphMarkRunProperties();

            paragraphProperties337.Append(paragraphStyleId337);
            paragraphProperties337.Append(justification198);
            paragraphProperties337.Append(paragraphMarkRunProperties337);

            Run run349 = new Run();

            RunProperties runProperties349 = new RunProperties();
            Color color3 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize437 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript437 = new FontSizeComplexScript() { Val = "20" };

            runProperties349.Append(color3);
            runProperties349.Append(fontSize437);
            runProperties349.Append(fontSizeComplexScript437);
            Text text229 = new Text();
            text229.Text = "Максимальная из средних скоростей ветра по румбам за январь, м/с";

            run349.Append(runProperties349);
            run349.Append(text229);

            paragraph337.Append(paragraphProperties337);
            paragraph337.Append(run349);

            tableCell267.Append(tableCellProperties267);
            tableCell267.Append(paragraph337);

            TableCell tableCell268 = new TableCell();

            TableCellProperties tableCellProperties268 = new TableCellProperties();
            TableCellWidth tableCellWidth268 = new TableCellWidth() { Width = "2930", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan266 = new GridSpan() { Val = 16 };

            TableCellBorders tableCellBorders268 = new TableCellBorders();
            TopBorder topBorder150 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder135 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder113 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder73 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder113 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder73 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders268.Append(topBorder150);
            tableCellBorders268.Append(startBorder135);
            tableCellBorders268.Append(bottomBorder113);
            tableCellBorders268.Append(endBorder73);
            tableCellBorders268.Append(insideHorizontalBorder113);
            tableCellBorders268.Append(insideVerticalBorder73);
            Shading shading460 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin135 = new TableCellMargin();
            StartMargin startMargin136 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin135.Append(startMargin136);
            TableCellVerticalAlignment tableCellVerticalAlignment24 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties268.Append(tableCellWidth268);
            tableCellProperties268.Append(gridSpan266);
            tableCellProperties268.Append(tableCellBorders268);
            tableCellProperties268.Append(shading460);
            tableCellProperties268.Append(tableCellMargin135);
            tableCellProperties268.Append(tableCellVerticalAlignment24);

            Paragraph paragraph338 = new Paragraph();

            ParagraphProperties paragraphProperties338 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId338 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification199 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties338 = new ParagraphMarkRunProperties();

            paragraphProperties338.Append(paragraphStyleId338);
            paragraphProperties338.Append(justification199);
            paragraphProperties338.Append(paragraphMarkRunProperties338);

            Run run350 = new Run();

            RunProperties runProperties350 = new RunProperties();
            Color color4 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize438 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript438 = new FontSizeComplexScript() { Val = "20" };

            runProperties350.Append(color4);
            runProperties350.Append(fontSize438);
            runProperties350.Append(fontSizeComplexScript438);
            Text text230 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text230.Text = "Средняя скорость ветра, м/с, за период со средней суточной температурой воздуха ";

            run350.Append(runProperties350);
            run350.Append(text230);

            Run run351 = new Run();

            RunProperties runProperties351 = new RunProperties();
            RunFonts runFonts20 = new RunFonts() { Ascii = "Symbol", HighAnsi = "Symbol" };
            Color color5 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize439 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript439 = new FontSizeComplexScript() { Val = "20" };

            runProperties351.Append(runFonts20);
            runProperties351.Append(color5);
            runProperties351.Append(fontSize439);
            runProperties351.Append(fontSizeComplexScript439);
            Text text231 = new Text();
            text231.Text = "?";

            run351.Append(runProperties351);
            run351.Append(text231);

            Run run352 = new Run();

            RunProperties runProperties352 = new RunProperties();
            Color color6 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize440 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript440 = new FontSizeComplexScript() { Val = "20" };

            runProperties352.Append(color6);
            runProperties352.Append(fontSize440);
            runProperties352.Append(fontSizeComplexScript440);
            Text text232 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text232.Text = " 8 ";

            run352.Append(runProperties352);
            run352.Append(text232);

            Run run353 = new Run();

            RunProperties runProperties353 = new RunProperties();
            RunFonts runFonts21 = new RunFonts() { Ascii = "Symbol", HighAnsi = "Symbol" };
            Color color7 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize441 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript441 = new FontSizeComplexScript() { Val = "20" };

            runProperties353.Append(runFonts21);
            runProperties353.Append(color7);
            runProperties353.Append(fontSize441);
            runProperties353.Append(fontSizeComplexScript441);
            Text text233 = new Text();
            text233.Text = "Ј";

            run353.Append(runProperties353);
            run353.Append(text233);

            Run run354 = new Run();

            RunProperties runProperties354 = new RunProperties();
            Color color8 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize442 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript442 = new FontSizeComplexScript() { Val = "20" };

            runProperties354.Append(color8);
            runProperties354.Append(fontSize442);
            runProperties354.Append(fontSizeComplexScript442);
            Text text234 = new Text();
            text234.Text = "С";

            run354.Append(runProperties354);
            run354.Append(text234);

            paragraph338.Append(paragraphProperties338);
            paragraph338.Append(run350);
            paragraph338.Append(run351);
            paragraph338.Append(run352);
            paragraph338.Append(run353);
            paragraph338.Append(run354);

            tableCell268.Append(tableCellProperties268);
            tableCell268.Append(paragraph338);

            tableRow100.Append(tableRowProperties100);
            tableRow100.Append(tableCell265);
            tableRow100.Append(tableCell266);
            tableRow100.Append(tableCell267);
            tableRow100.Append(tableCell268);

            TableRow tableRow101 = new TableRow();
            TableRowProperties tableRowProperties101 = new TableRowProperties();

            TableCell tableCell269 = new TableCell();

            TableCellProperties tableCellProperties269 = new TableCellProperties();
            TableCellWidth tableCellWidth269 = new TableCellWidth() { Width = "1058", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan267 = new GridSpan() { Val = 4 };

            TableCellBorders tableCellBorders269 = new TableCellBorders();
            TopBorder topBorder151 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder136 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder114 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder74 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder114 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder74 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders269.Append(topBorder151);
            tableCellBorders269.Append(startBorder136);
            tableCellBorders269.Append(bottomBorder114);
            tableCellBorders269.Append(endBorder74);
            tableCellBorders269.Append(insideHorizontalBorder114);
            tableCellBorders269.Append(insideVerticalBorder74);
            Shading shading461 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin136 = new TableCellMargin();
            StartMargin startMargin137 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin136.Append(startMargin137);
            TableCellVerticalAlignment tableCellVerticalAlignment25 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties269.Append(tableCellWidth269);
            tableCellProperties269.Append(gridSpan267);
            tableCellProperties269.Append(tableCellBorders269);
            tableCellProperties269.Append(shading461);
            tableCellProperties269.Append(tableCellMargin136);
            tableCellProperties269.Append(tableCellVerticalAlignment25);

            Paragraph paragraph339 = new Paragraph();

            ParagraphProperties paragraphProperties339 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId339 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification200 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties339 = new ParagraphMarkRunProperties();

            paragraphProperties339.Append(paragraphStyleId339);
            paragraphProperties339.Append(justification200);
            paragraphProperties339.Append(paragraphMarkRunProperties339);

            Run run355 = new Run();

            RunProperties runProperties355 = new RunProperties();
            FontSize fontSize443 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript443 = new FontSizeComplexScript() { Val = "20" };

            runProperties355.Append(fontSize443);
            runProperties355.Append(fontSizeComplexScript443);
            Text text235 = new Text();
            text235.Text = "225";

            run355.Append(runProperties355);
            run355.Append(text235);

            paragraph339.Append(paragraphProperties339);
            paragraph339.Append(run355);

            tableCell269.Append(tableCellProperties269);
            tableCell269.Append(paragraph339);

            TableCell tableCell270 = new TableCell();

            TableCellProperties tableCellProperties270 = new TableCellProperties();
            TableCellWidth tableCellWidth270 = new TableCellWidth() { Width = "2650", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan268 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders270 = new TableCellBorders();
            TopBorder topBorder152 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder137 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder115 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder115 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders270.Append(topBorder152);
            tableCellBorders270.Append(startBorder137);
            tableCellBorders270.Append(bottomBorder115);
            tableCellBorders270.Append(insideHorizontalBorder115);
            Shading shading462 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin137 = new TableCellMargin();
            StartMargin startMargin138 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin137.Append(startMargin138);
            TableCellVerticalAlignment tableCellVerticalAlignment26 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties270.Append(tableCellWidth270);
            tableCellProperties270.Append(gridSpan268);
            tableCellProperties270.Append(tableCellBorders270);
            tableCellProperties270.Append(shading462);
            tableCellProperties270.Append(tableCellMargin137);
            tableCellProperties270.Append(tableCellVerticalAlignment26);

            Paragraph paragraph340 = new Paragraph();

            ParagraphProperties paragraphProperties340 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId340 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification201 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties340 = new ParagraphMarkRunProperties();

            paragraphProperties340.Append(paragraphStyleId340);
            paragraphProperties340.Append(justification201);
            paragraphProperties340.Append(paragraphMarkRunProperties340);

            Run run356 = new Run();

            RunProperties runProperties356 = new RunProperties();
            FontSize fontSize444 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript444 = new FontSizeComplexScript() { Val = "20" };

            runProperties356.Append(fontSize444);
            runProperties356.Append(fontSizeComplexScript444);
            Text text236 = new Text();
            text236.Text = "З";

            run356.Append(runProperties356);
            run356.Append(text236);

            paragraph340.Append(paragraphProperties340);
            paragraph340.Append(run356);

            tableCell270.Append(tableCellProperties270);
            tableCell270.Append(paragraph340);

            TableCell tableCell271 = new TableCell();

            TableCellProperties tableCellProperties271 = new TableCellProperties();
            TableCellWidth tableCellWidth271 = new TableCellWidth() { Width = "2997", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan269 = new GridSpan() { Val = 16 };

            TableCellBorders tableCellBorders271 = new TableCellBorders();
            TopBorder topBorder153 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder138 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder116 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder116 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders271.Append(topBorder153);
            tableCellBorders271.Append(startBorder138);
            tableCellBorders271.Append(bottomBorder116);
            tableCellBorders271.Append(insideHorizontalBorder116);
            Shading shading463 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin138 = new TableCellMargin();
            StartMargin startMargin139 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin138.Append(startMargin139);
            TableCellVerticalAlignment tableCellVerticalAlignment27 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties271.Append(tableCellWidth271);
            tableCellProperties271.Append(gridSpan269);
            tableCellProperties271.Append(tableCellBorders271);
            tableCellProperties271.Append(shading463);
            tableCellProperties271.Append(tableCellMargin138);
            tableCellProperties271.Append(tableCellVerticalAlignment27);

            Paragraph paragraph341 = new Paragraph();

            ParagraphProperties paragraphProperties341 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId341 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification202 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties341 = new ParagraphMarkRunProperties();

            paragraphProperties341.Append(paragraphStyleId341);
            paragraphProperties341.Append(justification202);
            paragraphProperties341.Append(paragraphMarkRunProperties341);

            Run run357 = new Run();

            RunProperties runProperties357 = new RunProperties();
            FontSize fontSize445 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript445 = new FontSizeComplexScript() { Val = "20" };

            runProperties357.Append(fontSize445);
            runProperties357.Append(fontSizeComplexScript445);
            Text text237 = new Text();
            text237.Text = "2";

            run357.Append(runProperties357);
            run357.Append(text237);

            paragraph341.Append(paragraphProperties341);
            paragraph341.Append(run357);

            tableCell271.Append(tableCellProperties271);
            tableCell271.Append(paragraph341);

            TableCell tableCell272 = new TableCell();

            TableCellProperties tableCellProperties272 = new TableCellProperties();
            TableCellWidth tableCellWidth272 = new TableCellWidth() { Width = "2930", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan270 = new GridSpan() { Val = 16 };

            TableCellBorders tableCellBorders272 = new TableCellBorders();
            TopBorder topBorder154 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder139 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder117 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder75 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder117 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder75 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders272.Append(topBorder154);
            tableCellBorders272.Append(startBorder139);
            tableCellBorders272.Append(bottomBorder117);
            tableCellBorders272.Append(endBorder75);
            tableCellBorders272.Append(insideHorizontalBorder117);
            tableCellBorders272.Append(insideVerticalBorder75);
            Shading shading464 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin139 = new TableCellMargin();
            StartMargin startMargin140 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin139.Append(startMargin140);
            TableCellVerticalAlignment tableCellVerticalAlignment28 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties272.Append(tableCellWidth272);
            tableCellProperties272.Append(gridSpan270);
            tableCellProperties272.Append(tableCellBorders272);
            tableCellProperties272.Append(shading464);
            tableCellProperties272.Append(tableCellMargin139);
            tableCellProperties272.Append(tableCellVerticalAlignment28);

            Paragraph paragraph342 = new Paragraph();

            ParagraphProperties paragraphProperties342 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId342 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification203 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties342 = new ParagraphMarkRunProperties();

            paragraphProperties342.Append(paragraphStyleId342);
            paragraphProperties342.Append(justification203);
            paragraphProperties342.Append(paragraphMarkRunProperties342);

            Run run358 = new Run();

            RunProperties runProperties358 = new RunProperties();
            FontSize fontSize446 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript446 = new FontSizeComplexScript() { Val = "20" };

            runProperties358.Append(fontSize446);
            runProperties358.Append(fontSizeComplexScript446);
            Text text238 = new Text();
            text238.Text = "2";

            run358.Append(runProperties358);
            run358.Append(text238);

            paragraph342.Append(paragraphProperties342);
            paragraph342.Append(run358);

            tableCell272.Append(tableCellProperties272);
            tableCell272.Append(paragraph342);

            tableRow101.Append(tableRowProperties101);
            tableRow101.Append(tableCell269);
            tableRow101.Append(tableCell270);
            tableRow101.Append(tableCell271);
            tableRow101.Append(tableCell272);

            TableRow tableRow102 = new TableRow();
            TableRowProperties tableRowProperties102 = new TableRowProperties();

            TableCell tableCell273 = new TableCell();

            TableCellProperties tableCellProperties273 = new TableCellProperties();
            TableCellWidth tableCellWidth273 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan271 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders273 = new TableCellBorders();
            TopBorder topBorder155 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder118 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder118 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders273.Append(topBorder155);
            tableCellBorders273.Append(bottomBorder118);
            tableCellBorders273.Append(insideHorizontalBorder118);
            Shading shading465 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties273.Append(tableCellWidth273);
            tableCellProperties273.Append(gridSpan271);
            tableCellProperties273.Append(tableCellBorders273);
            tableCellProperties273.Append(shading465);

            Paragraph paragraph343 = new Paragraph();

            ParagraphProperties paragraphProperties343 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId343 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties343 = new ParagraphMarkRunProperties();

            paragraphProperties343.Append(paragraphStyleId343);
            paragraphProperties343.Append(paragraphMarkRunProperties343);

            Run run359 = new Run();

            RunProperties runProperties359 = new RunProperties();
            FontSize fontSize447 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript447 = new FontSizeComplexScript() { Val = "26" };

            runProperties359.Append(fontSize447);
            runProperties359.Append(fontSizeComplexScript447);
            Text text239 = new Text();
            text239.Text = "Повторяемость направления ветра и осадки теплого периода года по СП 131.13330.2012";

            run359.Append(runProperties359);
            run359.Append(text239);

            paragraph343.Append(paragraphProperties343);
            paragraph343.Append(run359);

            tableCell273.Append(tableCellProperties273);
            tableCell273.Append(paragraph343);

            tableRow102.Append(tableRowProperties102);
            tableRow102.Append(tableCell273);

            TableRow tableRow103 = new TableRow();
            TableRowProperties tableRowProperties103 = new TableRowProperties();

            TableCell tableCell274 = new TableCell();

            TableCellProperties tableCellProperties274 = new TableCellProperties();
            TableCellWidth tableCellWidth274 = new TableCellWidth() { Width = "1097", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan272 = new GridSpan() { Val = 5 };

            TableCellBorders tableCellBorders274 = new TableCellBorders();
            TopBorder topBorder156 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder140 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder119 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder76 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder119 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder76 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders274.Append(topBorder156);
            tableCellBorders274.Append(startBorder140);
            tableCellBorders274.Append(bottomBorder119);
            tableCellBorders274.Append(endBorder76);
            tableCellBorders274.Append(insideHorizontalBorder119);
            tableCellBorders274.Append(insideVerticalBorder76);
            Shading shading466 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin140 = new TableCellMargin();
            StartMargin startMargin141 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin140.Append(startMargin141);
            TableCellVerticalAlignment tableCellVerticalAlignment29 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties274.Append(tableCellWidth274);
            tableCellProperties274.Append(gridSpan272);
            tableCellProperties274.Append(tableCellBorders274);
            tableCellProperties274.Append(shading466);
            tableCellProperties274.Append(tableCellMargin140);
            tableCellProperties274.Append(tableCellVerticalAlignment29);

            Paragraph paragraph344 = new Paragraph();

            ParagraphProperties paragraphProperties344 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId344 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification204 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties344 = new ParagraphMarkRunProperties();

            paragraphProperties344.Append(paragraphStyleId344);
            paragraphProperties344.Append(justification204);
            paragraphProperties344.Append(paragraphMarkRunProperties344);

            Run run360 = new Run();

            RunProperties runProperties360 = new RunProperties();
            Color color9 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize448 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript448 = new FontSizeComplexScript() { Val = "20" };

            runProperties360.Append(color9);
            runProperties360.Append(fontSize448);
            runProperties360.Append(fontSizeComplexScript448);
            Text text240 = new Text();
            text240.Text = "Количество осадков за апрель-октябрь, мм";

            run360.Append(runProperties360);
            run360.Append(text240);

            paragraph344.Append(paragraphProperties344);
            paragraph344.Append(run360);

            tableCell274.Append(tableCellProperties274);
            tableCell274.Append(paragraph344);

            TableCell tableCell275 = new TableCell();

            TableCellProperties tableCellProperties275 = new TableCellProperties();
            TableCellWidth tableCellWidth275 = new TableCellWidth() { Width = "2699", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan273 = new GridSpan() { Val = 16 };

            TableCellBorders tableCellBorders275 = new TableCellBorders();
            TopBorder topBorder157 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder141 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder120 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder120 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders275.Append(topBorder157);
            tableCellBorders275.Append(startBorder141);
            tableCellBorders275.Append(bottomBorder120);
            tableCellBorders275.Append(insideHorizontalBorder120);
            Shading shading467 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin141 = new TableCellMargin();
            StartMargin startMargin142 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin141.Append(startMargin142);
            TableCellVerticalAlignment tableCellVerticalAlignment30 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties275.Append(tableCellWidth275);
            tableCellProperties275.Append(gridSpan273);
            tableCellProperties275.Append(tableCellBorders275);
            tableCellProperties275.Append(shading467);
            tableCellProperties275.Append(tableCellMargin141);
            tableCellProperties275.Append(tableCellVerticalAlignment30);

            Paragraph paragraph345 = new Paragraph();

            ParagraphProperties paragraphProperties345 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId345 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification205 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties345 = new ParagraphMarkRunProperties();

            paragraphProperties345.Append(paragraphStyleId345);
            paragraphProperties345.Append(justification205);
            paragraphProperties345.Append(paragraphMarkRunProperties345);

            Run run361 = new Run();

            RunProperties runProperties361 = new RunProperties();
            Color color10 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize449 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript449 = new FontSizeComplexScript() { Val = "20" };

            runProperties361.Append(color10);
            runProperties361.Append(fontSize449);
            runProperties361.Append(fontSizeComplexScript449);
            Text text241 = new Text();
            text241.Text = "Суточный максимум осадков мм";

            run361.Append(runProperties361);
            run361.Append(text241);

            paragraph345.Append(paragraphProperties345);
            paragraph345.Append(run361);

            tableCell275.Append(tableCellProperties275);
            tableCell275.Append(paragraph345);

            TableCell tableCell276 = new TableCell();

            TableCellProperties tableCellProperties276 = new TableCellProperties();
            TableCellWidth tableCellWidth276 = new TableCellWidth() { Width = "2956", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan274 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders276 = new TableCellBorders();
            TopBorder topBorder158 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder142 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder121 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder121 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders276.Append(topBorder158);
            tableCellBorders276.Append(startBorder142);
            tableCellBorders276.Append(bottomBorder121);
            tableCellBorders276.Append(insideHorizontalBorder121);
            Shading shading468 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin142 = new TableCellMargin();
            StartMargin startMargin143 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin142.Append(startMargin143);
            TableCellVerticalAlignment tableCellVerticalAlignment31 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties276.Append(tableCellWidth276);
            tableCellProperties276.Append(gridSpan274);
            tableCellProperties276.Append(tableCellBorders276);
            tableCellProperties276.Append(shading468);
            tableCellProperties276.Append(tableCellMargin142);
            tableCellProperties276.Append(tableCellVerticalAlignment31);

            Paragraph paragraph346 = new Paragraph();

            ParagraphProperties paragraphProperties346 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId346 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification206 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties346 = new ParagraphMarkRunProperties();

            paragraphProperties346.Append(paragraphStyleId346);
            paragraphProperties346.Append(justification206);
            paragraphProperties346.Append(paragraphMarkRunProperties346);

            Run run362 = new Run();

            RunProperties runProperties362 = new RunProperties();
            Color color11 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize450 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript450 = new FontSizeComplexScript() { Val = "20" };

            runProperties362.Append(color11);
            runProperties362.Append(fontSize450);
            runProperties362.Append(fontSizeComplexScript450);
            Text text242 = new Text();
            text242.Text = "Преобладающее направление ветра за июнь-август";

            run362.Append(runProperties362);
            run362.Append(text242);

            paragraph346.Append(paragraphProperties346);
            paragraph346.Append(run362);

            tableCell276.Append(tableCellProperties276);
            tableCell276.Append(paragraph346);

            TableCell tableCell277 = new TableCell();

            TableCellProperties tableCellProperties277 = new TableCellProperties();
            TableCellWidth tableCellWidth277 = new TableCellWidth() { Width = "2883", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan275 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders277 = new TableCellBorders();
            TopBorder topBorder159 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder143 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder122 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder77 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder122 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder77 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders277.Append(topBorder159);
            tableCellBorders277.Append(startBorder143);
            tableCellBorders277.Append(bottomBorder122);
            tableCellBorders277.Append(endBorder77);
            tableCellBorders277.Append(insideHorizontalBorder122);
            tableCellBorders277.Append(insideVerticalBorder77);
            Shading shading469 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin143 = new TableCellMargin();
            StartMargin startMargin144 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin143.Append(startMargin144);
            TableCellVerticalAlignment tableCellVerticalAlignment32 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties277.Append(tableCellWidth277);
            tableCellProperties277.Append(gridSpan275);
            tableCellProperties277.Append(tableCellBorders277);
            tableCellProperties277.Append(shading469);
            tableCellProperties277.Append(tableCellMargin143);
            tableCellProperties277.Append(tableCellVerticalAlignment32);

            Paragraph paragraph347 = new Paragraph();

            ParagraphProperties paragraphProperties347 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId347 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification207 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties347 = new ParagraphMarkRunProperties();

            paragraphProperties347.Append(paragraphStyleId347);
            paragraphProperties347.Append(justification207);
            paragraphProperties347.Append(paragraphMarkRunProperties347);

            Run run363 = new Run();

            RunProperties runProperties363 = new RunProperties();
            Color color12 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize451 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript451 = new FontSizeComplexScript() { Val = "20" };

            runProperties363.Append(color12);
            runProperties363.Append(fontSize451);
            runProperties363.Append(fontSizeComplexScript451);
            Text text243 = new Text();
            text243.Text = "Минимальная из средних скоростей ветра по румбам за июль, м/с";

            run363.Append(runProperties363);
            run363.Append(text243);

            paragraph347.Append(paragraphProperties347);
            paragraph347.Append(run363);

            tableCell277.Append(tableCellProperties277);
            tableCell277.Append(paragraph347);

            tableRow103.Append(tableRowProperties103);
            tableRow103.Append(tableCell274);
            tableRow103.Append(tableCell275);
            tableRow103.Append(tableCell276);
            tableRow103.Append(tableCell277);

            TableRow tableRow104 = new TableRow();
            TableRowProperties tableRowProperties104 = new TableRowProperties();

            TableCell tableCell278 = new TableCell();

            TableCellProperties tableCellProperties278 = new TableCellProperties();
            TableCellWidth tableCellWidth278 = new TableCellWidth() { Width = "1097", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan276 = new GridSpan() { Val = 5 };

            TableCellBorders tableCellBorders278 = new TableCellBorders();
            TopBorder topBorder160 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder144 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder123 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder123 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders278.Append(topBorder160);
            tableCellBorders278.Append(startBorder144);
            tableCellBorders278.Append(bottomBorder123);
            tableCellBorders278.Append(insideHorizontalBorder123);
            Shading shading470 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin144 = new TableCellMargin();
            StartMargin startMargin145 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin144.Append(startMargin145);

            tableCellProperties278.Append(tableCellWidth278);
            tableCellProperties278.Append(gridSpan276);
            tableCellProperties278.Append(tableCellBorders278);
            tableCellProperties278.Append(shading470);
            tableCellProperties278.Append(tableCellMargin144);

            Paragraph paragraph348 = new Paragraph();

            ParagraphProperties paragraphProperties348 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId348 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification208 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties348 = new ParagraphMarkRunProperties();

            paragraphProperties348.Append(paragraphStyleId348);
            paragraphProperties348.Append(justification208);
            paragraphProperties348.Append(paragraphMarkRunProperties348);

            Run run364 = new Run();

            RunProperties runProperties364 = new RunProperties();
            RunFonts runFonts22 = new RunFonts() { EastAsia = "TimesNewRomanPSMT" };
            FontSize fontSize452 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript452 = new FontSizeComplexScript() { Val = "20" };

            runProperties364.Append(runFonts22);
            runProperties364.Append(fontSize452);
            runProperties364.Append(fontSizeComplexScript452);
            Text text244 = new Text();
            text244.Text = "465";

            run364.Append(runProperties364);
            run364.Append(text244);

            paragraph348.Append(paragraphProperties348);
            paragraph348.Append(run364);

            tableCell278.Append(tableCellProperties278);
            tableCell278.Append(paragraph348);

            TableCell tableCell279 = new TableCell();

            TableCellProperties tableCellProperties279 = new TableCellProperties();
            TableCellWidth tableCellWidth279 = new TableCellWidth() { Width = "2699", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan277 = new GridSpan() { Val = 16 };

            TableCellBorders tableCellBorders279 = new TableCellBorders();
            TopBorder topBorder161 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder145 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder124 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder124 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders279.Append(topBorder161);
            tableCellBorders279.Append(startBorder145);
            tableCellBorders279.Append(bottomBorder124);
            tableCellBorders279.Append(insideHorizontalBorder124);
            Shading shading471 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin145 = new TableCellMargin();
            StartMargin startMargin146 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin145.Append(startMargin146);

            tableCellProperties279.Append(tableCellWidth279);
            tableCellProperties279.Append(gridSpan277);
            tableCellProperties279.Append(tableCellBorders279);
            tableCellProperties279.Append(shading471);
            tableCellProperties279.Append(tableCellMargin145);

            Paragraph paragraph349 = new Paragraph();

            ParagraphProperties paragraphProperties349 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId349 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification209 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties349 = new ParagraphMarkRunProperties();

            paragraphProperties349.Append(paragraphStyleId349);
            paragraphProperties349.Append(justification209);
            paragraphProperties349.Append(paragraphMarkRunProperties349);

            Run run365 = new Run();

            RunProperties runProperties365 = new RunProperties();
            RunFonts runFonts23 = new RunFonts() { EastAsia = "TimesNewRomanPSMT" };
            FontSize fontSize453 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript453 = new FontSizeComplexScript() { Val = "20" };

            runProperties365.Append(runFonts23);
            runProperties365.Append(fontSize453);
            runProperties365.Append(fontSizeComplexScript453);
            Text text245 = new Text();
            text245.Text = "63";

            run365.Append(runProperties365);
            run365.Append(text245);

            paragraph349.Append(paragraphProperties349);
            paragraph349.Append(run365);

            tableCell279.Append(tableCellProperties279);
            tableCell279.Append(paragraph349);

            TableCell tableCell280 = new TableCell();

            TableCellProperties tableCellProperties280 = new TableCellProperties();
            TableCellWidth tableCellWidth280 = new TableCellWidth() { Width = "2956", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan278 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders280 = new TableCellBorders();
            TopBorder topBorder162 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder146 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder125 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder125 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders280.Append(topBorder162);
            tableCellBorders280.Append(startBorder146);
            tableCellBorders280.Append(bottomBorder125);
            tableCellBorders280.Append(insideHorizontalBorder125);
            Shading shading472 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin146 = new TableCellMargin();
            StartMargin startMargin147 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin146.Append(startMargin147);

            tableCellProperties280.Append(tableCellWidth280);
            tableCellProperties280.Append(gridSpan278);
            tableCellProperties280.Append(tableCellBorders280);
            tableCellProperties280.Append(shading472);
            tableCellProperties280.Append(tableCellMargin146);

            Paragraph paragraph350 = new Paragraph();

            ParagraphProperties paragraphProperties350 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId350 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification210 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties350 = new ParagraphMarkRunProperties();

            paragraphProperties350.Append(paragraphStyleId350);
            paragraphProperties350.Append(justification210);
            paragraphProperties350.Append(paragraphMarkRunProperties350);

            Run run366 = new Run();

            RunProperties runProperties366 = new RunProperties();
            FontSize fontSize454 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript454 = new FontSizeComplexScript() { Val = "20" };

            runProperties366.Append(fontSize454);
            runProperties366.Append(fontSizeComplexScript454);
            Text text246 = new Text();
            text246.Text = "Ю-В";

            run366.Append(runProperties366);
            run366.Append(text246);

            paragraph350.Append(paragraphProperties350);
            paragraph350.Append(run366);

            tableCell280.Append(tableCellProperties280);
            tableCell280.Append(paragraph350);

            TableCell tableCell281 = new TableCell();

            TableCellProperties tableCellProperties281 = new TableCellProperties();
            TableCellWidth tableCellWidth281 = new TableCellWidth() { Width = "2883", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan279 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders281 = new TableCellBorders();
            TopBorder topBorder163 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder147 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder126 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder78 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder126 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder78 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders281.Append(topBorder163);
            tableCellBorders281.Append(startBorder147);
            tableCellBorders281.Append(bottomBorder126);
            tableCellBorders281.Append(endBorder78);
            tableCellBorders281.Append(insideHorizontalBorder126);
            tableCellBorders281.Append(insideVerticalBorder78);
            Shading shading473 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin147 = new TableCellMargin();
            StartMargin startMargin148 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin147.Append(startMargin148);

            tableCellProperties281.Append(tableCellWidth281);
            tableCellProperties281.Append(gridSpan279);
            tableCellProperties281.Append(tableCellBorders281);
            tableCellProperties281.Append(shading473);
            tableCellProperties281.Append(tableCellMargin147);

            Paragraph paragraph351 = new Paragraph();

            ParagraphProperties paragraphProperties351 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId351 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification211 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties351 = new ParagraphMarkRunProperties();

            paragraphProperties351.Append(paragraphStyleId351);
            paragraphProperties351.Append(justification211);
            paragraphProperties351.Append(paragraphMarkRunProperties351);

            Run run367 = new Run();

            RunProperties runProperties367 = new RunProperties();
            FontSize fontSize455 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript455 = new FontSizeComplexScript() { Val = "20" };

            runProperties367.Append(fontSize455);
            runProperties367.Append(fontSizeComplexScript455);
            Text text247 = new Text();
            text247.Text = "0";

            run367.Append(runProperties367);
            run367.Append(text247);

            paragraph351.Append(paragraphProperties351);
            paragraph351.Append(run367);

            tableCell281.Append(tableCellProperties281);
            tableCell281.Append(paragraph351);

            tableRow104.Append(tableRowProperties104);
            tableRow104.Append(tableCell278);
            tableRow104.Append(tableCell279);
            tableRow104.Append(tableCell280);
            tableRow104.Append(tableCell281);

            TableRow tableRow105 = new TableRow();
            TableRowProperties tableRowProperties105 = new TableRowProperties();

            TableCell tableCell282 = new TableCell();

            TableCellProperties tableCellProperties282 = new TableCellProperties();
            TableCellWidth tableCellWidth282 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan280 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders282 = new TableCellBorders();
            Shading shading474 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties282.Append(tableCellWidth282);
            tableCellProperties282.Append(gridSpan280);
            tableCellProperties282.Append(tableCellBorders282);
            tableCellProperties282.Append(shading474);

            Paragraph paragraph352 = new Paragraph();

            ParagraphProperties paragraphProperties352 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId352 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties352 = new ParagraphMarkRunProperties();

            paragraphProperties352.Append(paragraphStyleId352);
            paragraphProperties352.Append(paragraphMarkRunProperties352);

            Run run368 = new Run();
            RunProperties runProperties368 = new RunProperties();

            run368.Append(runProperties368);

            paragraph352.Append(paragraphProperties352);
            paragraph352.Append(run368);

            tableCell282.Append(tableCellProperties282);
            tableCell282.Append(paragraph352);

            tableRow105.Append(tableRowProperties105);
            tableRow105.Append(tableCell282);

            TableRow tableRow106 = new TableRow();
            TableRowProperties tableRowProperties106 = new TableRowProperties();

            TableCell tableCell283 = new TableCell();

            TableCellProperties tableCellProperties283 = new TableCellProperties();
            TableCellWidth tableCellWidth283 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan281 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders283 = new TableCellBorders();
            Shading shading475 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties283.Append(tableCellWidth283);
            tableCellProperties283.Append(gridSpan281);
            tableCellProperties283.Append(tableCellBorders283);
            tableCellProperties283.Append(shading475);

            Paragraph paragraph353 = new Paragraph();

            ParagraphProperties paragraphProperties353 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId353 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties353 = new ParagraphMarkRunProperties();

            paragraphProperties353.Append(paragraphStyleId353);
            paragraphProperties353.Append(paragraphMarkRunProperties353);

            Run run369 = new Run();

            RunProperties runProperties369 = new RunProperties();
            Bold bold23 = new Bold();
            FontSize fontSize456 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript456 = new FontSizeComplexScript() { Val = "26" };

            runProperties369.Append(bold23);
            runProperties369.Append(fontSize456);
            runProperties369.Append(fontSizeComplexScript456);
            Text text248 = new Text();
            text248.Text = "1.9. Наличие вокруг объекта других производств, населенных пунктов, жилых зданий и иных объектов массового скопления людей, их размещение по отношению к объекту:";

            run369.Append(runProperties369);
            run369.Append(text248);

            paragraph353.Append(paragraphProperties353);
            paragraph353.Append(run369);

            tableCell283.Append(tableCellProperties283);
            tableCell283.Append(paragraph353);

            tableRow106.Append(tableRowProperties106);
            tableRow106.Append(tableCell283);

            TableRow tableRow107 = new TableRow();
            TableRowProperties tableRowProperties107 = new TableRowProperties();

            TableCell tableCell284 = new TableCell();

            TableCellProperties tableCellProperties284 = new TableCellProperties();
            TableCellWidth tableCellWidth284 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan282 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders284 = new TableCellBorders();
            TopBorder topBorder164 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            StartBorder startBorder148 = new StartBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder127 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder127 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders284.Append(topBorder164);
            tableCellBorders284.Append(startBorder148);
            tableCellBorders284.Append(bottomBorder127);
            tableCellBorders284.Append(insideHorizontalBorder127);
            Shading shading476 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin148 = new TableCellMargin();
            TopMargin topMargin2 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            StartMargin startMargin149 = new StartMargin() { Width = "105", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin2 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin148.Append(topMargin2);
            tableCellMargin148.Append(startMargin149);
            tableCellMargin148.Append(bottomMargin2);
            TableCellVerticalAlignment tableCellVerticalAlignment33 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties284.Append(tableCellWidth284);
            tableCellProperties284.Append(gridSpan282);
            tableCellProperties284.Append(tableCellBorders284);
            tableCellProperties284.Append(shading476);
            tableCellProperties284.Append(tableCellMargin148);
            tableCellProperties284.Append(tableCellVerticalAlignment33);

            Paragraph paragraph354 = new Paragraph();

            ParagraphProperties paragraphProperties354 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId354 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification212 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties354 = new ParagraphMarkRunProperties();

            paragraphProperties354.Append(paragraphStyleId354);
            paragraphProperties354.Append(justification212);
            paragraphProperties354.Append(paragraphMarkRunProperties354);

            Run run370 = new Run();

            RunProperties runProperties370 = new RunProperties();
            RunStyle runStyle5 = new RunStyle() { Val = "FontStyle62" };
            Bold bold24 = new Bold() { Val = false };
            FontSize fontSize457 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript457 = new FontSizeComplexScript() { Val = "26" };

            runProperties370.Append(runStyle5);
            runProperties370.Append(bold24);
            runProperties370.Append(fontSize457);
            runProperties370.Append(fontSizeComplexScript457);
            Text text249 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text249.Text = "№ ";

            run370.Append(runProperties370);
            run370.Append(text249);

            Run run371 = new Run();

            RunProperties runProperties371 = new RunProperties();
            RunStyle runStyle6 = new RunStyle() { Val = "FontStyle62" };
            Bold bold25 = new Bold() { Val = false };
            FontSize fontSize458 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript458 = new FontSizeComplexScript() { Val = "26" };

            runProperties371.Append(runStyle6);
            runProperties371.Append(bold25);
            runProperties371.Append(fontSize458);
            runProperties371.Append(fontSizeComplexScript458);
            Text text250 = new Text();
            text250.Text = "п/п";

            run371.Append(runProperties371);
            run371.Append(text250);

            paragraph354.Append(paragraphProperties354);
            paragraph354.Append(run370);
            paragraph354.Append(run371);

            tableCell284.Append(tableCellProperties284);
            tableCell284.Append(paragraph354);

            TableCell tableCell285 = new TableCell();

            TableCellProperties tableCellProperties285 = new TableCellProperties();
            TableCellWidth tableCellWidth285 = new TableCellWidth() { Width = "2608", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan283 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders285 = new TableCellBorders();
            TopBorder topBorder165 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder128 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder128 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders285.Append(topBorder165);
            tableCellBorders285.Append(bottomBorder128);
            tableCellBorders285.Append(insideHorizontalBorder128);
            Shading shading477 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin149 = new TableCellMargin();
            TopMargin topMargin3 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin3 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin149.Append(topMargin3);
            tableCellMargin149.Append(bottomMargin3);
            TableCellVerticalAlignment tableCellVerticalAlignment34 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties285.Append(tableCellWidth285);
            tableCellProperties285.Append(gridSpan283);
            tableCellProperties285.Append(tableCellBorders285);
            tableCellProperties285.Append(shading477);
            tableCellProperties285.Append(tableCellMargin149);
            tableCellProperties285.Append(tableCellVerticalAlignment34);

            Paragraph paragraph355 = new Paragraph();

            ParagraphProperties paragraphProperties355 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId355 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification213 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties355 = new ParagraphMarkRunProperties();

            paragraphProperties355.Append(paragraphStyleId355);
            paragraphProperties355.Append(justification213);
            paragraphProperties355.Append(paragraphMarkRunProperties355);

            Run run372 = new Run();

            RunProperties runProperties372 = new RunProperties();
            RunStyle runStyle7 = new RunStyle() { Val = "FontStyle62" };
            Bold bold26 = new Bold() { Val = false };
            FontSize fontSize459 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript459 = new FontSizeComplexScript() { Val = "26" };

            runProperties372.Append(runStyle7);
            runProperties372.Append(bold26);
            runProperties372.Append(fontSize459);
            runProperties372.Append(fontSizeComplexScript459);
            Text text251 = new Text();
            text251.Text = "Наименование объекта";

            run372.Append(runProperties372);
            run372.Append(text251);

            paragraph355.Append(paragraphProperties355);
            paragraph355.Append(run372);

            tableCell285.Append(tableCellProperties285);
            tableCell285.Append(paragraph355);

            TableCell tableCell286 = new TableCell();

            TableCellProperties tableCellProperties286 = new TableCellProperties();
            TableCellWidth tableCellWidth286 = new TableCellWidth() { Width = "1167", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan284 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders286 = new TableCellBorders();
            TopBorder topBorder166 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder129 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder129 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders286.Append(topBorder166);
            tableCellBorders286.Append(bottomBorder129);
            tableCellBorders286.Append(insideHorizontalBorder129);
            Shading shading478 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin150 = new TableCellMargin();
            TopMargin topMargin4 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin4 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin150.Append(topMargin4);
            tableCellMargin150.Append(bottomMargin4);

            tableCellProperties286.Append(tableCellWidth286);
            tableCellProperties286.Append(gridSpan284);
            tableCellProperties286.Append(tableCellBorders286);
            tableCellProperties286.Append(shading478);
            tableCellProperties286.Append(tableCellMargin150);

            Paragraph paragraph356 = new Paragraph();

            ParagraphProperties paragraphProperties356 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId356 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification214 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties356 = new ParagraphMarkRunProperties();

            paragraphProperties356.Append(paragraphStyleId356);
            paragraphProperties356.Append(justification214);
            paragraphProperties356.Append(paragraphMarkRunProperties356);

            Run run373 = new Run();

            RunProperties runProperties373 = new RunProperties();
            RunStyle runStyle8 = new RunStyle() { Val = "FontStyle62" };
            Bold bold27 = new Bold() { Val = false };
            FontSize fontSize460 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript460 = new FontSizeComplexScript() { Val = "26" };

            runProperties373.Append(runStyle8);
            runProperties373.Append(bold27);
            runProperties373.Append(fontSize460);
            runProperties373.Append(fontSizeComplexScript460);
            Text text252 = new Text();
            text252.Text = "Кол-во людей";

            run373.Append(runProperties373);
            run373.Append(text252);

            paragraph356.Append(paragraphProperties356);
            paragraph356.Append(run373);

            tableCell286.Append(tableCellProperties286);
            tableCell286.Append(paragraph356);

            TableCell tableCell287 = new TableCell();

            TableCellProperties tableCellProperties287 = new TableCellProperties();
            TableCellWidth tableCellWidth287 = new TableCellWidth() { Width = "1969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan285 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders287 = new TableCellBorders();
            TopBorder topBorder167 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder130 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder130 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders287.Append(topBorder167);
            tableCellBorders287.Append(bottomBorder130);
            tableCellBorders287.Append(insideHorizontalBorder130);
            Shading shading479 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin151 = new TableCellMargin();
            TopMargin topMargin5 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin5 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin151.Append(topMargin5);
            tableCellMargin151.Append(bottomMargin5);

            tableCellProperties287.Append(tableCellWidth287);
            tableCellProperties287.Append(gridSpan285);
            tableCellProperties287.Append(tableCellBorders287);
            tableCellProperties287.Append(shading479);
            tableCellProperties287.Append(tableCellMargin151);

            Paragraph paragraph357 = new Paragraph();

            ParagraphProperties paragraphProperties357 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId357 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification215 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties357 = new ParagraphMarkRunProperties();

            paragraphProperties357.Append(paragraphStyleId357);
            paragraphProperties357.Append(justification215);
            paragraphProperties357.Append(paragraphMarkRunProperties357);

            Run run374 = new Run();

            RunProperties runProperties374 = new RunProperties();
            RunStyle runStyle9 = new RunStyle() { Val = "FontStyle62" };
            Bold bold28 = new Bold() { Val = false };
            FontSize fontSize461 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript461 = new FontSizeComplexScript() { Val = "26" };

            runProperties374.Append(runStyle9);
            runProperties374.Append(bold28);
            runProperties374.Append(fontSize461);
            runProperties374.Append(fontSizeComplexScript461);
            Text text253 = new Text();
            text253.Text = "Сторона расположения";

            run374.Append(runProperties374);
            run374.Append(text253);

            paragraph357.Append(paragraphProperties357);
            paragraph357.Append(run374);

            tableCell287.Append(tableCellProperties287);
            tableCell287.Append(paragraph357);

            TableCell tableCell288 = new TableCell();

            TableCellProperties tableCellProperties288 = new TableCellProperties();
            TableCellWidth tableCellWidth288 = new TableCellWidth() { Width = "2753", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan286 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders288 = new TableCellBorders();
            TopBorder topBorder168 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            StartBorder startBorder149 = new StartBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder131 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            EndBorder endBorder79 = new EndBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder131 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder79 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders288.Append(topBorder168);
            tableCellBorders288.Append(startBorder149);
            tableCellBorders288.Append(bottomBorder131);
            tableCellBorders288.Append(endBorder79);
            tableCellBorders288.Append(insideHorizontalBorder131);
            tableCellBorders288.Append(insideVerticalBorder79);
            Shading shading480 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin152 = new TableCellMargin();
            TopMargin topMargin6 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            StartMargin startMargin150 = new StartMargin() { Width = "105", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin6 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin152.Append(topMargin6);
            tableCellMargin152.Append(startMargin150);
            tableCellMargin152.Append(bottomMargin6);

            tableCellProperties288.Append(tableCellWidth288);
            tableCellProperties288.Append(gridSpan286);
            tableCellProperties288.Append(tableCellBorders288);
            tableCellProperties288.Append(shading480);
            tableCellProperties288.Append(tableCellMargin152);

            Paragraph paragraph358 = new Paragraph();

            ParagraphProperties paragraphProperties358 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId358 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification216 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties358 = new ParagraphMarkRunProperties();

            paragraphProperties358.Append(paragraphStyleId358);
            paragraphProperties358.Append(justification216);
            paragraphProperties358.Append(paragraphMarkRunProperties358);

            Run run375 = new Run();

            RunProperties runProperties375 = new RunProperties();
            RunStyle runStyle10 = new RunStyle() { Val = "FontStyle62" };
            Bold bold29 = new Bold() { Val = false };
            FontSize fontSize462 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript462 = new FontSizeComplexScript() { Val = "26" };

            runProperties375.Append(runStyle10);
            runProperties375.Append(bold29);
            runProperties375.Append(fontSize462);
            runProperties375.Append(fontSizeComplexScript462);
            Text text254 = new Text();
            text254.Text = "Расстояние до объекта, м";

            run375.Append(runProperties375);
            run375.Append(text254);

            paragraph358.Append(paragraphProperties358);
            paragraph358.Append(run375);

            tableCell288.Append(tableCellProperties288);
            tableCell288.Append(paragraph358);

            tableRow107.Append(tableRowProperties107);
            tableRow107.Append(tableCell284);
            tableRow107.Append(tableCell285);
            tableRow107.Append(tableCell286);
            tableRow107.Append(tableCell287);
            tableRow107.Append(tableCell288);

            TableRow tableRow108 = new TableRow();
            TableRowProperties tableRowProperties108 = new TableRowProperties();

            TableCell tableCell289 = new TableCell();

            TableCellProperties tableCellProperties289 = new TableCellProperties();
            TableCellWidth tableCellWidth289 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan287 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders289 = new TableCellBorders();
            TopBorder topBorder169 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            StartBorder startBorder150 = new StartBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder132 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder132 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders289.Append(topBorder169);
            tableCellBorders289.Append(startBorder150);
            tableCellBorders289.Append(bottomBorder132);
            tableCellBorders289.Append(insideHorizontalBorder132);
            Shading shading481 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin153 = new TableCellMargin();
            TopMargin topMargin7 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            StartMargin startMargin151 = new StartMargin() { Width = "105", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin7 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin153.Append(topMargin7);
            tableCellMargin153.Append(startMargin151);
            tableCellMargin153.Append(bottomMargin7);

            tableCellProperties289.Append(tableCellWidth289);
            tableCellProperties289.Append(gridSpan287);
            tableCellProperties289.Append(tableCellBorders289);
            tableCellProperties289.Append(shading481);
            tableCellProperties289.Append(tableCellMargin153);

            Paragraph paragraph359 = new Paragraph();

            ParagraphProperties paragraphProperties359 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId359 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification217 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties359 = new ParagraphMarkRunProperties();

            paragraphProperties359.Append(paragraphStyleId359);
            paragraphProperties359.Append(justification217);
            paragraphProperties359.Append(paragraphMarkRunProperties359);

            Run run376 = new Run();

            RunProperties runProperties376 = new RunProperties();
            RunStyle runStyle11 = new RunStyle() { Val = "FontStyle62" };
            Bold bold30 = new Bold() { Val = false };
            FontSize fontSize463 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript463 = new FontSizeComplexScript() { Val = "26" };

            runProperties376.Append(runStyle11);
            runProperties376.Append(bold30);
            runProperties376.Append(fontSize463);
            runProperties376.Append(fontSizeComplexScript463);
            Text text255 = new Text();
            text255.Text = "1";

            run376.Append(runProperties376);
            run376.Append(text255);

            paragraph359.Append(paragraphProperties359);
            paragraph359.Append(run376);

            tableCell289.Append(tableCellProperties289);
            tableCell289.Append(paragraph359);

            TableCell tableCell290 = new TableCell();

            TableCellProperties tableCellProperties290 = new TableCellProperties();
            TableCellWidth tableCellWidth290 = new TableCellWidth() { Width = "2608", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan288 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders290 = new TableCellBorders();
            TopBorder topBorder170 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder133 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder133 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders290.Append(topBorder170);
            tableCellBorders290.Append(bottomBorder133);
            tableCellBorders290.Append(insideHorizontalBorder133);
            Shading shading482 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin154 = new TableCellMargin();
            TopMargin topMargin8 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin8 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin154.Append(topMargin8);
            tableCellMargin154.Append(bottomMargin8);

            tableCellProperties290.Append(tableCellWidth290);
            tableCellProperties290.Append(gridSpan288);
            tableCellProperties290.Append(tableCellBorders290);
            tableCellProperties290.Append(shading482);
            tableCellProperties290.Append(tableCellMargin154);

            Paragraph paragraph360 = new Paragraph();

            ParagraphProperties paragraphProperties360 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId360 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification218 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties360 = new ParagraphMarkRunProperties();

            paragraphProperties360.Append(paragraphStyleId360);
            paragraphProperties360.Append(justification218);
            paragraphProperties360.Append(paragraphMarkRunProperties360);

            Run run377 = new Run();

            RunProperties runProperties377 = new RunProperties();
            RunStyle runStyle12 = new RunStyle() { Val = "FontStyle62" };
            Bold bold31 = new Bold() { Val = false };
            FontSize fontSize464 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript464 = new FontSizeComplexScript() { Val = "26" };

            runProperties377.Append(runStyle12);
            runProperties377.Append(bold31);
            runProperties377.Append(fontSize464);
            runProperties377.Append(fontSizeComplexScript464);
            Text text256 = new Text();
            text256.Text = "2";

            run377.Append(runProperties377);
            run377.Append(text256);

            paragraph360.Append(paragraphProperties360);
            paragraph360.Append(run377);

            tableCell290.Append(tableCellProperties290);
            tableCell290.Append(paragraph360);

            TableCell tableCell291 = new TableCell();

            TableCellProperties tableCellProperties291 = new TableCellProperties();
            TableCellWidth tableCellWidth291 = new TableCellWidth() { Width = "1167", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan289 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders291 = new TableCellBorders();
            TopBorder topBorder171 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder134 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder134 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders291.Append(topBorder171);
            tableCellBorders291.Append(bottomBorder134);
            tableCellBorders291.Append(insideHorizontalBorder134);
            Shading shading483 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin155 = new TableCellMargin();
            TopMargin topMargin9 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin9 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin155.Append(topMargin9);
            tableCellMargin155.Append(bottomMargin9);

            tableCellProperties291.Append(tableCellWidth291);
            tableCellProperties291.Append(gridSpan289);
            tableCellProperties291.Append(tableCellBorders291);
            tableCellProperties291.Append(shading483);
            tableCellProperties291.Append(tableCellMargin155);

            Paragraph paragraph361 = new Paragraph();

            ParagraphProperties paragraphProperties361 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId361 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification219 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties361 = new ParagraphMarkRunProperties();

            paragraphProperties361.Append(paragraphStyleId361);
            paragraphProperties361.Append(justification219);
            paragraphProperties361.Append(paragraphMarkRunProperties361);

            Run run378 = new Run();

            RunProperties runProperties378 = new RunProperties();
            RunStyle runStyle13 = new RunStyle() { Val = "FontStyle62" };
            Bold bold32 = new Bold() { Val = false };
            FontSize fontSize465 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript465 = new FontSizeComplexScript() { Val = "26" };

            runProperties378.Append(runStyle13);
            runProperties378.Append(bold32);
            runProperties378.Append(fontSize465);
            runProperties378.Append(fontSizeComplexScript465);
            Text text257 = new Text();
            text257.Text = "3";

            run378.Append(runProperties378);
            run378.Append(text257);

            paragraph361.Append(paragraphProperties361);
            paragraph361.Append(run378);

            tableCell291.Append(tableCellProperties291);
            tableCell291.Append(paragraph361);

            TableCell tableCell292 = new TableCell();

            TableCellProperties tableCellProperties292 = new TableCellProperties();
            TableCellWidth tableCellWidth292 = new TableCellWidth() { Width = "1969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan290 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders292 = new TableCellBorders();
            TopBorder topBorder172 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder135 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder135 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders292.Append(topBorder172);
            tableCellBorders292.Append(bottomBorder135);
            tableCellBorders292.Append(insideHorizontalBorder135);
            Shading shading484 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin156 = new TableCellMargin();
            TopMargin topMargin10 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin10 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin156.Append(topMargin10);
            tableCellMargin156.Append(bottomMargin10);

            tableCellProperties292.Append(tableCellWidth292);
            tableCellProperties292.Append(gridSpan290);
            tableCellProperties292.Append(tableCellBorders292);
            tableCellProperties292.Append(shading484);
            tableCellProperties292.Append(tableCellMargin156);

            Paragraph paragraph362 = new Paragraph();

            ParagraphProperties paragraphProperties362 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId362 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification220 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties362 = new ParagraphMarkRunProperties();

            paragraphProperties362.Append(paragraphStyleId362);
            paragraphProperties362.Append(justification220);
            paragraphProperties362.Append(paragraphMarkRunProperties362);

            Run run379 = new Run();

            RunProperties runProperties379 = new RunProperties();
            RunStyle runStyle14 = new RunStyle() { Val = "FontStyle62" };
            Bold bold33 = new Bold() { Val = false };
            FontSize fontSize466 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript466 = new FontSizeComplexScript() { Val = "26" };

            runProperties379.Append(runStyle14);
            runProperties379.Append(bold33);
            runProperties379.Append(fontSize466);
            runProperties379.Append(fontSizeComplexScript466);
            Text text258 = new Text();
            text258.Text = "4";

            run379.Append(runProperties379);
            run379.Append(text258);

            paragraph362.Append(paragraphProperties362);
            paragraph362.Append(run379);

            tableCell292.Append(tableCellProperties292);
            tableCell292.Append(paragraph362);

            TableCell tableCell293 = new TableCell();

            TableCellProperties tableCellProperties293 = new TableCellProperties();
            TableCellWidth tableCellWidth293 = new TableCellWidth() { Width = "2753", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan291 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders293 = new TableCellBorders();
            TopBorder topBorder173 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            StartBorder startBorder151 = new StartBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder136 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            EndBorder endBorder80 = new EndBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder136 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder80 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders293.Append(topBorder173);
            tableCellBorders293.Append(startBorder151);
            tableCellBorders293.Append(bottomBorder136);
            tableCellBorders293.Append(endBorder80);
            tableCellBorders293.Append(insideHorizontalBorder136);
            tableCellBorders293.Append(insideVerticalBorder80);
            Shading shading485 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin157 = new TableCellMargin();
            TopMargin topMargin11 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            StartMargin startMargin152 = new StartMargin() { Width = "105", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin11 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin157.Append(topMargin11);
            tableCellMargin157.Append(startMargin152);
            tableCellMargin157.Append(bottomMargin11);

            tableCellProperties293.Append(tableCellWidth293);
            tableCellProperties293.Append(gridSpan291);
            tableCellProperties293.Append(tableCellBorders293);
            tableCellProperties293.Append(shading485);
            tableCellProperties293.Append(tableCellMargin157);

            Paragraph paragraph363 = new Paragraph();

            ParagraphProperties paragraphProperties363 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId363 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification221 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties363 = new ParagraphMarkRunProperties();

            paragraphProperties363.Append(paragraphStyleId363);
            paragraphProperties363.Append(justification221);
            paragraphProperties363.Append(paragraphMarkRunProperties363);

            Run run380 = new Run();

            RunProperties runProperties380 = new RunProperties();
            RunStyle runStyle15 = new RunStyle() { Val = "FontStyle62" };
            Bold bold34 = new Bold() { Val = false };
            FontSize fontSize467 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript467 = new FontSizeComplexScript() { Val = "26" };

            runProperties380.Append(runStyle15);
            runProperties380.Append(bold34);
            runProperties380.Append(fontSize467);
            runProperties380.Append(fontSizeComplexScript467);
            Text text259 = new Text();
            text259.Text = "5";

            run380.Append(runProperties380);
            run380.Append(text259);

            paragraph363.Append(paragraphProperties363);
            paragraph363.Append(run380);

            tableCell293.Append(tableCellProperties293);
            tableCell293.Append(paragraph363);

            tableRow108.Append(tableRowProperties108);
            tableRow108.Append(tableCell289);
            tableRow108.Append(tableCell290);
            tableRow108.Append(tableCell291);
            tableRow108.Append(tableCell292);
            tableRow108.Append(tableCell293);

            TableRow tableRow109 = new TableRow();
            TableRowProperties tableRowProperties109 = new TableRowProperties();

            TableCell tableCell294 = new TableCell();

            TableCellProperties tableCellProperties294 = new TableCellProperties();
            TableCellWidth tableCellWidth294 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan292 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders294 = new TableCellBorders();
            TopBorder topBorder174 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            StartBorder startBorder152 = new StartBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder137 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder137 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders294.Append(topBorder174);
            tableCellBorders294.Append(startBorder152);
            tableCellBorders294.Append(bottomBorder137);
            tableCellBorders294.Append(insideHorizontalBorder137);
            Shading shading486 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin158 = new TableCellMargin();
            TopMargin topMargin12 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            StartMargin startMargin153 = new StartMargin() { Width = "105", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin12 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin158.Append(topMargin12);
            tableCellMargin158.Append(startMargin153);
            tableCellMargin158.Append(bottomMargin12);

            tableCellProperties294.Append(tableCellWidth294);
            tableCellProperties294.Append(gridSpan292);
            tableCellProperties294.Append(tableCellBorders294);
            tableCellProperties294.Append(shading486);
            tableCellProperties294.Append(tableCellMargin158);

            Paragraph paragraph364 = new Paragraph();

            ParagraphProperties paragraphProperties364 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId364 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification222 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties364 = new ParagraphMarkRunProperties();

            paragraphProperties364.Append(paragraphStyleId364);
            paragraphProperties364.Append(justification222);
            paragraphProperties364.Append(paragraphMarkRunProperties364);

            Run run381 = new Run();

            RunProperties runProperties381 = new RunProperties();
            FontSize fontSize468 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript468 = new FontSizeComplexScript() { Val = "26" };

            runProperties381.Append(fontSize468);
            runProperties381.Append(fontSizeComplexScript468);
            Text text260 = new Text();
            text260.Text = "1";

            run381.Append(runProperties381);
            run381.Append(text260);

            paragraph364.Append(paragraphProperties364);
            paragraph364.Append(run381);

            tableCell294.Append(tableCellProperties294);
            tableCell294.Append(paragraph364);

            TableCell tableCell295 = new TableCell();

            TableCellProperties tableCellProperties295 = new TableCellProperties();
            TableCellWidth tableCellWidth295 = new TableCellWidth() { Width = "2608", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan293 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders295 = new TableCellBorders();
            TopBorder topBorder175 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder138 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder138 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders295.Append(topBorder175);
            tableCellBorders295.Append(bottomBorder138);
            tableCellBorders295.Append(insideHorizontalBorder138);
            Shading shading487 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin159 = new TableCellMargin();
            TopMargin topMargin13 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin13 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin159.Append(topMargin13);
            tableCellMargin159.Append(bottomMargin13);

            tableCellProperties295.Append(tableCellWidth295);
            tableCellProperties295.Append(gridSpan293);
            tableCellProperties295.Append(tableCellBorders295);
            tableCellProperties295.Append(shading487);
            tableCellProperties295.Append(tableCellMargin159);

            Paragraph paragraph365 = new Paragraph();

            ParagraphProperties paragraphProperties365 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId365 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification223 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties365 = new ParagraphMarkRunProperties();

            paragraphProperties365.Append(paragraphStyleId365);
            paragraphProperties365.Append(justification223);
            paragraphProperties365.Append(paragraphMarkRunProperties365);

            Run run382 = new Run();

            RunProperties runProperties382 = new RunProperties();
            FontSize fontSize469 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript469 = new FontSizeComplexScript() { Val = "26" };

            runProperties382.Append(fontSize469);
            runProperties382.Append(fontSizeComplexScript469);
            Text text261 = new Text();
            text261.Text = "Жилой массив по улице Вилиса Лациса";

            run382.Append(runProperties382);
            run382.Append(text261);

            paragraph365.Append(paragraphProperties365);
            paragraph365.Append(run382);

            tableCell295.Append(tableCellProperties295);
            tableCell295.Append(paragraph365);

            TableCell tableCell296 = new TableCell();

            TableCellProperties tableCellProperties296 = new TableCellProperties();
            TableCellWidth tableCellWidth296 = new TableCellWidth() { Width = "1167", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan294 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders296 = new TableCellBorders();
            TopBorder topBorder176 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder139 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder139 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders296.Append(topBorder176);
            tableCellBorders296.Append(bottomBorder139);
            tableCellBorders296.Append(insideHorizontalBorder139);
            Shading shading488 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin160 = new TableCellMargin();
            TopMargin topMargin14 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin14 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin160.Append(topMargin14);
            tableCellMargin160.Append(bottomMargin14);

            tableCellProperties296.Append(tableCellWidth296);
            tableCellProperties296.Append(gridSpan294);
            tableCellProperties296.Append(tableCellBorders296);
            tableCellProperties296.Append(shading488);
            tableCellProperties296.Append(tableCellMargin160);

            Paragraph paragraph366 = new Paragraph();

            ParagraphProperties paragraphProperties366 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId366 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification224 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties366 = new ParagraphMarkRunProperties();

            paragraphProperties366.Append(paragraphStyleId366);
            paragraphProperties366.Append(justification224);
            paragraphProperties366.Append(paragraphMarkRunProperties366);

            Run run383 = new Run();

            RunProperties runProperties383 = new RunProperties();
            FontSize fontSize470 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript470 = new FontSizeComplexScript() { Val = "26" };

            runProperties383.Append(fontSize470);
            runProperties383.Append(fontSizeComplexScript470);
            Text text262 = new Text();
            text262.Text = "1500";

            run383.Append(runProperties383);
            run383.Append(text262);

            paragraph366.Append(paragraphProperties366);
            paragraph366.Append(run383);

            tableCell296.Append(tableCellProperties296);
            tableCell296.Append(paragraph366);

            TableCell tableCell297 = new TableCell();

            TableCellProperties tableCellProperties297 = new TableCellProperties();
            TableCellWidth tableCellWidth297 = new TableCellWidth() { Width = "1969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan295 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders297 = new TableCellBorders();
            TopBorder topBorder177 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder140 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder140 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders297.Append(topBorder177);
            tableCellBorders297.Append(bottomBorder140);
            tableCellBorders297.Append(insideHorizontalBorder140);
            Shading shading489 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin161 = new TableCellMargin();
            TopMargin topMargin15 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin15 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin161.Append(topMargin15);
            tableCellMargin161.Append(bottomMargin15);

            tableCellProperties297.Append(tableCellWidth297);
            tableCellProperties297.Append(gridSpan295);
            tableCellProperties297.Append(tableCellBorders297);
            tableCellProperties297.Append(shading489);
            tableCellProperties297.Append(tableCellMargin161);

            Paragraph paragraph367 = new Paragraph();

            ParagraphProperties paragraphProperties367 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId367 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification225 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties367 = new ParagraphMarkRunProperties();

            paragraphProperties367.Append(paragraphStyleId367);
            paragraphProperties367.Append(justification225);
            paragraphProperties367.Append(paragraphMarkRunProperties367);

            Run run384 = new Run();

            RunProperties runProperties384 = new RunProperties();
            FontSize fontSize471 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript471 = new FontSizeComplexScript() { Val = "26" };

            runProperties384.Append(fontSize471);
            runProperties384.Append(fontSizeComplexScript471);
            Text text263 = new Text();
            text263.Text = "Юг";

            run384.Append(runProperties384);
            run384.Append(text263);

            paragraph367.Append(paragraphProperties367);
            paragraph367.Append(run384);

            tableCell297.Append(tableCellProperties297);
            tableCell297.Append(paragraph367);

            TableCell tableCell298 = new TableCell();

            TableCellProperties tableCellProperties298 = new TableCellProperties();
            TableCellWidth tableCellWidth298 = new TableCellWidth() { Width = "2753", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan296 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders298 = new TableCellBorders();
            TopBorder topBorder178 = new TopBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            StartBorder startBorder153 = new StartBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder141 = new BottomBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            EndBorder endBorder81 = new EndBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder141 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder81 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "000001", Size = (UInt32Value)2U, Space = (UInt32Value)0U };

            tableCellBorders298.Append(topBorder178);
            tableCellBorders298.Append(startBorder153);
            tableCellBorders298.Append(bottomBorder141);
            tableCellBorders298.Append(endBorder81);
            tableCellBorders298.Append(insideHorizontalBorder141);
            tableCellBorders298.Append(insideVerticalBorder81);
            Shading shading490 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin162 = new TableCellMargin();
            TopMargin topMargin16 = new TopMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };
            StartMargin startMargin154 = new StartMargin() { Width = "105", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin16 = new BottomMargin() { Width = "55", Type = TableWidthUnitValues.Dxa };

            tableCellMargin162.Append(topMargin16);
            tableCellMargin162.Append(startMargin154);
            tableCellMargin162.Append(bottomMargin16);

            tableCellProperties298.Append(tableCellWidth298);
            tableCellProperties298.Append(gridSpan296);
            tableCellProperties298.Append(tableCellBorders298);
            tableCellProperties298.Append(shading490);
            tableCellProperties298.Append(tableCellMargin162);

            Paragraph paragraph368 = new Paragraph();

            ParagraphProperties paragraphProperties368 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId368 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification226 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties368 = new ParagraphMarkRunProperties();

            paragraphProperties368.Append(paragraphStyleId368);
            paragraphProperties368.Append(justification226);
            paragraphProperties368.Append(paragraphMarkRunProperties368);

            Run run385 = new Run();

            RunProperties runProperties385 = new RunProperties();
            FontSize fontSize472 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript472 = new FontSizeComplexScript() { Val = "26" };

            runProperties385.Append(fontSize472);
            runProperties385.Append(fontSizeComplexScript472);
            Text text264 = new Text();
            text264.Text = "250";

            run385.Append(runProperties385);
            run385.Append(text264);

            paragraph368.Append(paragraphProperties368);
            paragraph368.Append(run385);

            tableCell298.Append(tableCellProperties298);
            tableCell298.Append(paragraph368);

            tableRow109.Append(tableRowProperties109);
            tableRow109.Append(tableCell294);
            tableRow109.Append(tableCell295);
            tableRow109.Append(tableCell296);
            tableRow109.Append(tableCell297);
            tableRow109.Append(tableCell298);

            TableRow tableRow110 = new TableRow();
            TableRowProperties tableRowProperties110 = new TableRowProperties();

            TableCell tableCell299 = new TableCell();

            TableCellProperties tableCellProperties299 = new TableCellProperties();
            TableCellWidth tableCellWidth299 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan297 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders299 = new TableCellBorders();
            TopBorder topBorder179 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder154 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder142 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder82 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder142 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder82 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders299.Append(topBorder179);
            tableCellBorders299.Append(startBorder154);
            tableCellBorders299.Append(bottomBorder142);
            tableCellBorders299.Append(endBorder82);
            tableCellBorders299.Append(insideHorizontalBorder142);
            tableCellBorders299.Append(insideVerticalBorder82);
            Shading shading491 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin163 = new TableCellMargin();
            StartMargin startMargin155 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin163.Append(startMargin155);

            tableCellProperties299.Append(tableCellWidth299);
            tableCellProperties299.Append(gridSpan297);
            tableCellProperties299.Append(tableCellBorders299);
            tableCellProperties299.Append(shading491);
            tableCellProperties299.Append(tableCellMargin163);

            Paragraph paragraph369 = new Paragraph();

            ParagraphProperties paragraphProperties369 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId369 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification227 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties369 = new ParagraphMarkRunProperties();

            paragraphProperties369.Append(paragraphStyleId369);
            paragraphProperties369.Append(justification227);
            paragraphProperties369.Append(paragraphMarkRunProperties369);

            Run run386 = new Run();

            RunProperties runProperties386 = new RunProperties();
            FontSize fontSize473 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript473 = new FontSizeComplexScript() { Val = "26" };

            runProperties386.Append(fontSize473);
            runProperties386.Append(fontSizeComplexScript473);
            Text text265 = new Text();
            text265.Text = "2";

            run386.Append(runProperties386);
            run386.Append(text265);

            paragraph369.Append(paragraphProperties369);
            paragraph369.Append(run386);

            tableCell299.Append(tableCellProperties299);
            tableCell299.Append(paragraph369);

            TableCell tableCell300 = new TableCell();

            TableCellProperties tableCellProperties300 = new TableCellProperties();
            TableCellWidth tableCellWidth300 = new TableCellWidth() { Width = "2608", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan298 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders300 = new TableCellBorders();
            TopBorder topBorder180 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder155 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder143 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder143 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders300.Append(topBorder180);
            tableCellBorders300.Append(startBorder155);
            tableCellBorders300.Append(bottomBorder143);
            tableCellBorders300.Append(insideHorizontalBorder143);
            Shading shading492 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin164 = new TableCellMargin();
            StartMargin startMargin156 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin164.Append(startMargin156);

            tableCellProperties300.Append(tableCellWidth300);
            tableCellProperties300.Append(gridSpan298);
            tableCellProperties300.Append(tableCellBorders300);
            tableCellProperties300.Append(shading492);
            tableCellProperties300.Append(tableCellMargin164);

            Paragraph paragraph370 = new Paragraph();

            ParagraphProperties paragraphProperties370 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId370 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification228 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties370 = new ParagraphMarkRunProperties();

            paragraphProperties370.Append(paragraphStyleId370);
            paragraphProperties370.Append(justification228);
            paragraphProperties370.Append(paragraphMarkRunProperties370);

            Run run387 = new Run();

            RunProperties runProperties387 = new RunProperties();
            FontSize fontSize474 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript474 = new FontSizeComplexScript() { Val = "26" };

            runProperties387.Append(fontSize474);
            runProperties387.Append(fontSizeComplexScript474);
            Text text266 = new Text();
            text266.Text = "Колледж малого бизнеса";

            run387.Append(runProperties387);
            run387.Append(text266);

            paragraph370.Append(paragraphProperties370);
            paragraph370.Append(run387);

            tableCell300.Append(tableCellProperties300);
            tableCell300.Append(paragraph370);

            TableCell tableCell301 = new TableCell();

            TableCellProperties tableCellProperties301 = new TableCellProperties();
            TableCellWidth tableCellWidth301 = new TableCellWidth() { Width = "1167", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan299 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders301 = new TableCellBorders();
            TopBorder topBorder181 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder156 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder144 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder144 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders301.Append(topBorder181);
            tableCellBorders301.Append(startBorder156);
            tableCellBorders301.Append(bottomBorder144);
            tableCellBorders301.Append(insideHorizontalBorder144);
            Shading shading493 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin165 = new TableCellMargin();
            StartMargin startMargin157 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin165.Append(startMargin157);

            tableCellProperties301.Append(tableCellWidth301);
            tableCellProperties301.Append(gridSpan299);
            tableCellProperties301.Append(tableCellBorders301);
            tableCellProperties301.Append(shading493);
            tableCellProperties301.Append(tableCellMargin165);

            Paragraph paragraph371 = new Paragraph();

            ParagraphProperties paragraphProperties371 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId371 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification229 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties371 = new ParagraphMarkRunProperties();

            paragraphProperties371.Append(paragraphStyleId371);
            paragraphProperties371.Append(justification229);
            paragraphProperties371.Append(paragraphMarkRunProperties371);

            Run run388 = new Run();

            RunProperties runProperties388 = new RunProperties();
            FontSize fontSize475 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript475 = new FontSizeComplexScript() { Val = "26" };

            runProperties388.Append(fontSize475);
            runProperties388.Append(fontSizeComplexScript475);
            Text text267 = new Text();
            text267.Text = "150";

            run388.Append(runProperties388);
            run388.Append(text267);

            paragraph371.Append(paragraphProperties371);
            paragraph371.Append(run388);

            tableCell301.Append(tableCellProperties301);
            tableCell301.Append(paragraph371);

            TableCell tableCell302 = new TableCell();

            TableCellProperties tableCellProperties302 = new TableCellProperties();
            TableCellWidth tableCellWidth302 = new TableCellWidth() { Width = "1969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan300 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders302 = new TableCellBorders();
            TopBorder topBorder182 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder157 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder145 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder145 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders302.Append(topBorder182);
            tableCellBorders302.Append(startBorder157);
            tableCellBorders302.Append(bottomBorder145);
            tableCellBorders302.Append(insideHorizontalBorder145);
            Shading shading494 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin166 = new TableCellMargin();
            StartMargin startMargin158 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin166.Append(startMargin158);

            tableCellProperties302.Append(tableCellWidth302);
            tableCellProperties302.Append(gridSpan300);
            tableCellProperties302.Append(tableCellBorders302);
            tableCellProperties302.Append(shading494);
            tableCellProperties302.Append(tableCellMargin166);

            Paragraph paragraph372 = new Paragraph();

            ParagraphProperties paragraphProperties372 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId372 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification230 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties372 = new ParagraphMarkRunProperties();

            paragraphProperties372.Append(paragraphStyleId372);
            paragraphProperties372.Append(justification230);
            paragraphProperties372.Append(paragraphMarkRunProperties372);

            Run run389 = new Run();

            RunProperties runProperties389 = new RunProperties();
            FontSize fontSize476 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript476 = new FontSizeComplexScript() { Val = "26" };

            runProperties389.Append(fontSize476);
            runProperties389.Append(fontSizeComplexScript476);
            Text text268 = new Text();
            text268.Text = "Юго-запад";

            run389.Append(runProperties389);
            run389.Append(text268);

            paragraph372.Append(paragraphProperties372);
            paragraph372.Append(run389);

            tableCell302.Append(tableCellProperties302);
            tableCell302.Append(paragraph372);

            TableCell tableCell303 = new TableCell();

            TableCellProperties tableCellProperties303 = new TableCellProperties();
            TableCellWidth tableCellWidth303 = new TableCellWidth() { Width = "2753", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan301 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders303 = new TableCellBorders();
            TopBorder topBorder183 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder158 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder146 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder83 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder146 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder83 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders303.Append(topBorder183);
            tableCellBorders303.Append(startBorder158);
            tableCellBorders303.Append(bottomBorder146);
            tableCellBorders303.Append(endBorder83);
            tableCellBorders303.Append(insideHorizontalBorder146);
            tableCellBorders303.Append(insideVerticalBorder83);
            Shading shading495 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin167 = new TableCellMargin();
            StartMargin startMargin159 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin167.Append(startMargin159);

            tableCellProperties303.Append(tableCellWidth303);
            tableCellProperties303.Append(gridSpan301);
            tableCellProperties303.Append(tableCellBorders303);
            tableCellProperties303.Append(shading495);
            tableCellProperties303.Append(tableCellMargin167);

            Paragraph paragraph373 = new Paragraph();

            ParagraphProperties paragraphProperties373 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId373 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification231 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties373 = new ParagraphMarkRunProperties();

            paragraphProperties373.Append(paragraphStyleId373);
            paragraphProperties373.Append(justification231);
            paragraphProperties373.Append(paragraphMarkRunProperties373);

            Run run390 = new Run();

            RunProperties runProperties390 = new RunProperties();
            FontSize fontSize477 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript477 = new FontSizeComplexScript() { Val = "26" };

            runProperties390.Append(fontSize477);
            runProperties390.Append(fontSizeComplexScript477);
            Text text269 = new Text();
            text269.Text = "500";

            run390.Append(runProperties390);
            run390.Append(text269);

            paragraph373.Append(paragraphProperties373);
            paragraph373.Append(run390);

            tableCell303.Append(tableCellProperties303);
            tableCell303.Append(paragraph373);

            tableRow110.Append(tableRowProperties110);
            tableRow110.Append(tableCell299);
            tableRow110.Append(tableCell300);
            tableRow110.Append(tableCell301);
            tableRow110.Append(tableCell302);
            tableRow110.Append(tableCell303);

            TableRow tableRow111 = new TableRow();
            TableRowProperties tableRowProperties111 = new TableRowProperties();

            TableCell tableCell304 = new TableCell();

            TableCellProperties tableCellProperties304 = new TableCellProperties();
            TableCellWidth tableCellWidth304 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan302 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders304 = new TableCellBorders();
            TopBorder topBorder184 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder159 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder147 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder84 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder147 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder84 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders304.Append(topBorder184);
            tableCellBorders304.Append(startBorder159);
            tableCellBorders304.Append(bottomBorder147);
            tableCellBorders304.Append(endBorder84);
            tableCellBorders304.Append(insideHorizontalBorder147);
            tableCellBorders304.Append(insideVerticalBorder84);
            Shading shading496 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin168 = new TableCellMargin();
            StartMargin startMargin160 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin168.Append(startMargin160);

            tableCellProperties304.Append(tableCellWidth304);
            tableCellProperties304.Append(gridSpan302);
            tableCellProperties304.Append(tableCellBorders304);
            tableCellProperties304.Append(shading496);
            tableCellProperties304.Append(tableCellMargin168);

            Paragraph paragraph374 = new Paragraph();

            ParagraphProperties paragraphProperties374 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId374 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification232 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties374 = new ParagraphMarkRunProperties();

            paragraphProperties374.Append(paragraphStyleId374);
            paragraphProperties374.Append(justification232);
            paragraphProperties374.Append(paragraphMarkRunProperties374);

            Run run391 = new Run();

            RunProperties runProperties391 = new RunProperties();
            FontSize fontSize478 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript478 = new FontSizeComplexScript() { Val = "26" };

            runProperties391.Append(fontSize478);
            runProperties391.Append(fontSizeComplexScript478);
            Text text270 = new Text();
            text270.Text = "3";

            run391.Append(runProperties391);
            run391.Append(text270);

            paragraph374.Append(paragraphProperties374);
            paragraph374.Append(run391);

            tableCell304.Append(tableCellProperties304);
            tableCell304.Append(paragraph374);

            TableCell tableCell305 = new TableCell();

            TableCellProperties tableCellProperties305 = new TableCellProperties();
            TableCellWidth tableCellWidth305 = new TableCellWidth() { Width = "2608", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan303 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders305 = new TableCellBorders();
            TopBorder topBorder185 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder160 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder148 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder148 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders305.Append(topBorder185);
            tableCellBorders305.Append(startBorder160);
            tableCellBorders305.Append(bottomBorder148);
            tableCellBorders305.Append(insideHorizontalBorder148);
            Shading shading497 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin169 = new TableCellMargin();
            StartMargin startMargin161 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin169.Append(startMargin161);

            tableCellProperties305.Append(tableCellWidth305);
            tableCellProperties305.Append(gridSpan303);
            tableCellProperties305.Append(tableCellBorders305);
            tableCellProperties305.Append(shading497);
            tableCellProperties305.Append(tableCellMargin169);

            Paragraph paragraph375 = new Paragraph();

            ParagraphProperties paragraphProperties375 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId375 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification233 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties375 = new ParagraphMarkRunProperties();

            paragraphProperties375.Append(paragraphStyleId375);
            paragraphProperties375.Append(justification233);
            paragraphProperties375.Append(paragraphMarkRunProperties375);

            Run run392 = new Run();

            RunProperties runProperties392 = new RunProperties();
            FontSize fontSize479 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript479 = new FontSizeComplexScript() { Val = "26" };

            runProperties392.Append(fontSize479);
            runProperties392.Append(fontSizeComplexScript479);
            Text text271 = new Text();
            text271.Text = "Металлический ангар «автосервис»";

            run392.Append(runProperties392);
            run392.Append(text271);

            paragraph375.Append(paragraphProperties375);
            paragraph375.Append(run392);

            tableCell305.Append(tableCellProperties305);
            tableCell305.Append(paragraph375);

            TableCell tableCell306 = new TableCell();

            TableCellProperties tableCellProperties306 = new TableCellProperties();
            TableCellWidth tableCellWidth306 = new TableCellWidth() { Width = "1167", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan304 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders306 = new TableCellBorders();
            TopBorder topBorder186 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder161 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder149 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder149 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders306.Append(topBorder186);
            tableCellBorders306.Append(startBorder161);
            tableCellBorders306.Append(bottomBorder149);
            tableCellBorders306.Append(insideHorizontalBorder149);
            Shading shading498 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin170 = new TableCellMargin();
            StartMargin startMargin162 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin170.Append(startMargin162);

            tableCellProperties306.Append(tableCellWidth306);
            tableCellProperties306.Append(gridSpan304);
            tableCellProperties306.Append(tableCellBorders306);
            tableCellProperties306.Append(shading498);
            tableCellProperties306.Append(tableCellMargin170);

            Paragraph paragraph376 = new Paragraph();

            ParagraphProperties paragraphProperties376 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId376 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification234 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties376 = new ParagraphMarkRunProperties();

            paragraphProperties376.Append(paragraphStyleId376);
            paragraphProperties376.Append(justification234);
            paragraphProperties376.Append(paragraphMarkRunProperties376);

            Run run393 = new Run();

            RunProperties runProperties393 = new RunProperties();
            FontSize fontSize480 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript480 = new FontSizeComplexScript() { Val = "26" };

            runProperties393.Append(fontSize480);
            runProperties393.Append(fontSizeComplexScript480);
            Text text272 = new Text();
            text272.Text = "2";

            run393.Append(runProperties393);
            run393.Append(text272);

            paragraph376.Append(paragraphProperties376);
            paragraph376.Append(run393);

            tableCell306.Append(tableCellProperties306);
            tableCell306.Append(paragraph376);

            TableCell tableCell307 = new TableCell();

            TableCellProperties tableCellProperties307 = new TableCellProperties();
            TableCellWidth tableCellWidth307 = new TableCellWidth() { Width = "1969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan305 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders307 = new TableCellBorders();
            TopBorder topBorder187 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder162 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder150 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder150 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders307.Append(topBorder187);
            tableCellBorders307.Append(startBorder162);
            tableCellBorders307.Append(bottomBorder150);
            tableCellBorders307.Append(insideHorizontalBorder150);
            Shading shading499 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin171 = new TableCellMargin();
            StartMargin startMargin163 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin171.Append(startMargin163);

            tableCellProperties307.Append(tableCellWidth307);
            tableCellProperties307.Append(gridSpan305);
            tableCellProperties307.Append(tableCellBorders307);
            tableCellProperties307.Append(shading499);
            tableCellProperties307.Append(tableCellMargin171);

            Paragraph paragraph377 = new Paragraph();

            ParagraphProperties paragraphProperties377 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId377 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification235 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties377 = new ParagraphMarkRunProperties();

            paragraphProperties377.Append(paragraphStyleId377);
            paragraphProperties377.Append(justification235);
            paragraphProperties377.Append(paragraphMarkRunProperties377);

            Run run394 = new Run();

            RunProperties runProperties394 = new RunProperties();
            FontSize fontSize481 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript481 = new FontSizeComplexScript() { Val = "26" };

            runProperties394.Append(fontSize481);
            runProperties394.Append(fontSizeComplexScript481);
            Text text273 = new Text();
            text273.Text = "Запад";

            run394.Append(runProperties394);
            run394.Append(text273);

            paragraph377.Append(paragraphProperties377);
            paragraph377.Append(run394);

            tableCell307.Append(tableCellProperties307);
            tableCell307.Append(paragraph377);

            TableCell tableCell308 = new TableCell();

            TableCellProperties tableCellProperties308 = new TableCellProperties();
            TableCellWidth tableCellWidth308 = new TableCellWidth() { Width = "2753", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan306 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders308 = new TableCellBorders();
            TopBorder topBorder188 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder163 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder151 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder85 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder151 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder85 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders308.Append(topBorder188);
            tableCellBorders308.Append(startBorder163);
            tableCellBorders308.Append(bottomBorder151);
            tableCellBorders308.Append(endBorder85);
            tableCellBorders308.Append(insideHorizontalBorder151);
            tableCellBorders308.Append(insideVerticalBorder85);
            Shading shading500 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin172 = new TableCellMargin();
            StartMargin startMargin164 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin172.Append(startMargin164);

            tableCellProperties308.Append(tableCellWidth308);
            tableCellProperties308.Append(gridSpan306);
            tableCellProperties308.Append(tableCellBorders308);
            tableCellProperties308.Append(shading500);
            tableCellProperties308.Append(tableCellMargin172);

            Paragraph paragraph378 = new Paragraph();

            ParagraphProperties paragraphProperties378 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId378 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification236 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties378 = new ParagraphMarkRunProperties();

            paragraphProperties378.Append(paragraphStyleId378);
            paragraphProperties378.Append(justification236);
            paragraphProperties378.Append(paragraphMarkRunProperties378);

            Run run395 = new Run();

            RunProperties runProperties395 = new RunProperties();
            FontSize fontSize482 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript482 = new FontSizeComplexScript() { Val = "26" };

            runProperties395.Append(fontSize482);
            runProperties395.Append(fontSizeComplexScript482);
            Text text274 = new Text();
            text274.Text = "50";

            run395.Append(runProperties395);
            run395.Append(text274);

            paragraph378.Append(paragraphProperties378);
            paragraph378.Append(run395);

            tableCell308.Append(tableCellProperties308);
            tableCell308.Append(paragraph378);

            tableRow111.Append(tableRowProperties111);
            tableRow111.Append(tableCell304);
            tableRow111.Append(tableCell305);
            tableRow111.Append(tableCell306);
            tableRow111.Append(tableCell307);
            tableRow111.Append(tableCell308);

            TableRow tableRow112 = new TableRow();
            TableRowProperties tableRowProperties112 = new TableRowProperties();

            TableCell tableCell309 = new TableCell();

            TableCellProperties tableCellProperties309 = new TableCellProperties();
            TableCellWidth tableCellWidth309 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan307 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders309 = new TableCellBorders();
            TopBorder topBorder189 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder164 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder152 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder86 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder152 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder86 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders309.Append(topBorder189);
            tableCellBorders309.Append(startBorder164);
            tableCellBorders309.Append(bottomBorder152);
            tableCellBorders309.Append(endBorder86);
            tableCellBorders309.Append(insideHorizontalBorder152);
            tableCellBorders309.Append(insideVerticalBorder86);
            Shading shading501 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin173 = new TableCellMargin();
            StartMargin startMargin165 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin173.Append(startMargin165);

            tableCellProperties309.Append(tableCellWidth309);
            tableCellProperties309.Append(gridSpan307);
            tableCellProperties309.Append(tableCellBorders309);
            tableCellProperties309.Append(shading501);
            tableCellProperties309.Append(tableCellMargin173);

            Paragraph paragraph379 = new Paragraph();

            ParagraphProperties paragraphProperties379 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId379 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification237 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties379 = new ParagraphMarkRunProperties();

            paragraphProperties379.Append(paragraphStyleId379);
            paragraphProperties379.Append(justification237);
            paragraphProperties379.Append(paragraphMarkRunProperties379);

            Run run396 = new Run();

            RunProperties runProperties396 = new RunProperties();
            FontSize fontSize483 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript483 = new FontSizeComplexScript() { Val = "26" };

            runProperties396.Append(fontSize483);
            runProperties396.Append(fontSizeComplexScript483);
            Text text275 = new Text();
            text275.Text = "4";

            run396.Append(runProperties396);
            run396.Append(text275);

            paragraph379.Append(paragraphProperties379);
            paragraph379.Append(run396);

            tableCell309.Append(tableCellProperties309);
            tableCell309.Append(paragraph379);

            TableCell tableCell310 = new TableCell();

            TableCellProperties tableCellProperties310 = new TableCellProperties();
            TableCellWidth tableCellWidth310 = new TableCellWidth() { Width = "2608", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan308 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders310 = new TableCellBorders();
            TopBorder topBorder190 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder165 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder153 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder153 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders310.Append(topBorder190);
            tableCellBorders310.Append(startBorder165);
            tableCellBorders310.Append(bottomBorder153);
            tableCellBorders310.Append(insideHorizontalBorder153);
            Shading shading502 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin174 = new TableCellMargin();
            StartMargin startMargin166 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin174.Append(startMargin166);

            tableCellProperties310.Append(tableCellWidth310);
            tableCellProperties310.Append(gridSpan308);
            tableCellProperties310.Append(tableCellBorders310);
            tableCellProperties310.Append(shading502);
            tableCellProperties310.Append(tableCellMargin174);

            Paragraph paragraph380 = new Paragraph();

            ParagraphProperties paragraphProperties380 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId380 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification238 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties380 = new ParagraphMarkRunProperties();

            paragraphProperties380.Append(paragraphStyleId380);
            paragraphProperties380.Append(justification238);
            paragraphProperties380.Append(paragraphMarkRunProperties380);

            Run run397 = new Run();

            RunProperties runProperties397 = new RunProperties();
            FontSize fontSize484 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript484 = new FontSizeComplexScript() { Val = "26" };

            runProperties397.Append(fontSize484);
            runProperties397.Append(fontSizeComplexScript484);
            Text text276 = new Text();
            text276.Text = "Спорткомплекс «Лазурный»";

            run397.Append(runProperties397);
            run397.Append(text276);

            paragraph380.Append(paragraphProperties380);
            paragraph380.Append(run397);

            tableCell310.Append(tableCellProperties310);
            tableCell310.Append(paragraph380);

            TableCell tableCell311 = new TableCell();

            TableCellProperties tableCellProperties311 = new TableCellProperties();
            TableCellWidth tableCellWidth311 = new TableCellWidth() { Width = "1167", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan309 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders311 = new TableCellBorders();
            TopBorder topBorder191 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder166 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder154 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder154 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders311.Append(topBorder191);
            tableCellBorders311.Append(startBorder166);
            tableCellBorders311.Append(bottomBorder154);
            tableCellBorders311.Append(insideHorizontalBorder154);
            Shading shading503 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin175 = new TableCellMargin();
            StartMargin startMargin167 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin175.Append(startMargin167);

            tableCellProperties311.Append(tableCellWidth311);
            tableCellProperties311.Append(gridSpan309);
            tableCellProperties311.Append(tableCellBorders311);
            tableCellProperties311.Append(shading503);
            tableCellProperties311.Append(tableCellMargin175);

            Paragraph paragraph381 = new Paragraph();

            ParagraphProperties paragraphProperties381 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId381 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification239 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties381 = new ParagraphMarkRunProperties();

            paragraphProperties381.Append(paragraphStyleId381);
            paragraphProperties381.Append(justification239);
            paragraphProperties381.Append(paragraphMarkRunProperties381);

            Run run398 = new Run();

            RunProperties runProperties398 = new RunProperties();
            FontSize fontSize485 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript485 = new FontSizeComplexScript() { Val = "26" };

            runProperties398.Append(fontSize485);
            runProperties398.Append(fontSizeComplexScript485);
            Text text277 = new Text();
            text277.Text = "50";

            run398.Append(runProperties398);
            run398.Append(text277);

            paragraph381.Append(paragraphProperties381);
            paragraph381.Append(run398);

            tableCell311.Append(tableCellProperties311);
            tableCell311.Append(paragraph381);

            TableCell tableCell312 = new TableCell();

            TableCellProperties tableCellProperties312 = new TableCellProperties();
            TableCellWidth tableCellWidth312 = new TableCellWidth() { Width = "1969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan310 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders312 = new TableCellBorders();
            TopBorder topBorder192 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder167 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder155 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder155 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders312.Append(topBorder192);
            tableCellBorders312.Append(startBorder167);
            tableCellBorders312.Append(bottomBorder155);
            tableCellBorders312.Append(insideHorizontalBorder155);
            Shading shading504 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin176 = new TableCellMargin();
            StartMargin startMargin168 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin176.Append(startMargin168);

            tableCellProperties312.Append(tableCellWidth312);
            tableCellProperties312.Append(gridSpan310);
            tableCellProperties312.Append(tableCellBorders312);
            tableCellProperties312.Append(shading504);
            tableCellProperties312.Append(tableCellMargin176);

            Paragraph paragraph382 = new Paragraph();

            ParagraphProperties paragraphProperties382 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId382 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification240 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties382 = new ParagraphMarkRunProperties();

            paragraphProperties382.Append(paragraphStyleId382);
            paragraphProperties382.Append(justification240);
            paragraphProperties382.Append(paragraphMarkRunProperties382);

            Run run399 = new Run();

            RunProperties runProperties399 = new RunProperties();
            FontSize fontSize486 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript486 = new FontSizeComplexScript() { Val = "26" };

            runProperties399.Append(fontSize486);
            runProperties399.Append(fontSizeComplexScript486);
            Text text278 = new Text();
            text278.Text = "Восток";

            run399.Append(runProperties399);
            run399.Append(text278);

            paragraph382.Append(paragraphProperties382);
            paragraph382.Append(run399);

            tableCell312.Append(tableCellProperties312);
            tableCell312.Append(paragraph382);

            TableCell tableCell313 = new TableCell();

            TableCellProperties tableCellProperties313 = new TableCellProperties();
            TableCellWidth tableCellWidth313 = new TableCellWidth() { Width = "2753", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan311 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders313 = new TableCellBorders();
            TopBorder topBorder193 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder168 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder156 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder87 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder156 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder87 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders313.Append(topBorder193);
            tableCellBorders313.Append(startBorder168);
            tableCellBorders313.Append(bottomBorder156);
            tableCellBorders313.Append(endBorder87);
            tableCellBorders313.Append(insideHorizontalBorder156);
            tableCellBorders313.Append(insideVerticalBorder87);
            Shading shading505 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin177 = new TableCellMargin();
            StartMargin startMargin169 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin177.Append(startMargin169);

            tableCellProperties313.Append(tableCellWidth313);
            tableCellProperties313.Append(gridSpan311);
            tableCellProperties313.Append(tableCellBorders313);
            tableCellProperties313.Append(shading505);
            tableCellProperties313.Append(tableCellMargin177);

            Paragraph paragraph383 = new Paragraph();

            ParagraphProperties paragraphProperties383 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId383 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification241 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties383 = new ParagraphMarkRunProperties();

            paragraphProperties383.Append(paragraphStyleId383);
            paragraphProperties383.Append(justification241);
            paragraphProperties383.Append(paragraphMarkRunProperties383);

            Run run400 = new Run();

            RunProperties runProperties400 = new RunProperties();
            FontSize fontSize487 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript487 = new FontSizeComplexScript() { Val = "26" };

            runProperties400.Append(fontSize487);
            runProperties400.Append(fontSizeComplexScript487);
            Text text279 = new Text();
            text279.Text = "70";

            run400.Append(runProperties400);
            run400.Append(text279);

            paragraph383.Append(paragraphProperties383);
            paragraph383.Append(run400);

            tableCell313.Append(tableCellProperties313);
            tableCell313.Append(paragraph383);

            tableRow112.Append(tableRowProperties112);
            tableRow112.Append(tableCell309);
            tableRow112.Append(tableCell310);
            tableRow112.Append(tableCell311);
            tableRow112.Append(tableCell312);
            tableRow112.Append(tableCell313);

            TableRow tableRow113 = new TableRow();
            TableRowProperties tableRowProperties113 = new TableRowProperties();

            TableCell tableCell314 = new TableCell();

            TableCellProperties tableCellProperties314 = new TableCellProperties();
            TableCellWidth tableCellWidth314 = new TableCellWidth() { Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan312 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders314 = new TableCellBorders();
            TopBorder topBorder194 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder169 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder157 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder88 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder157 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder88 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders314.Append(topBorder194);
            tableCellBorders314.Append(startBorder169);
            tableCellBorders314.Append(bottomBorder157);
            tableCellBorders314.Append(endBorder88);
            tableCellBorders314.Append(insideHorizontalBorder157);
            tableCellBorders314.Append(insideVerticalBorder88);
            Shading shading506 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin178 = new TableCellMargin();
            StartMargin startMargin170 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin178.Append(startMargin170);

            tableCellProperties314.Append(tableCellWidth314);
            tableCellProperties314.Append(gridSpan312);
            tableCellProperties314.Append(tableCellBorders314);
            tableCellProperties314.Append(shading506);
            tableCellProperties314.Append(tableCellMargin178);

            Paragraph paragraph384 = new Paragraph();

            ParagraphProperties paragraphProperties384 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId384 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification242 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties384 = new ParagraphMarkRunProperties();

            paragraphProperties384.Append(paragraphStyleId384);
            paragraphProperties384.Append(justification242);
            paragraphProperties384.Append(paragraphMarkRunProperties384);

            Run run401 = new Run();

            RunProperties runProperties401 = new RunProperties();
            FontSize fontSize488 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript488 = new FontSizeComplexScript() { Val = "26" };

            runProperties401.Append(fontSize488);
            runProperties401.Append(fontSizeComplexScript488);
            Text text280 = new Text();
            text280.Text = "5";

            run401.Append(runProperties401);
            run401.Append(text280);

            paragraph384.Append(paragraphProperties384);
            paragraph384.Append(run401);

            tableCell314.Append(tableCellProperties314);
            tableCell314.Append(paragraph384);

            TableCell tableCell315 = new TableCell();

            TableCellProperties tableCellProperties315 = new TableCellProperties();
            TableCellWidth tableCellWidth315 = new TableCellWidth() { Width = "2608", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan313 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders315 = new TableCellBorders();
            TopBorder topBorder195 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder170 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder158 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder158 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders315.Append(topBorder195);
            tableCellBorders315.Append(startBorder170);
            tableCellBorders315.Append(bottomBorder158);
            tableCellBorders315.Append(insideHorizontalBorder158);
            Shading shading507 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin179 = new TableCellMargin();
            StartMargin startMargin171 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin179.Append(startMargin171);

            tableCellProperties315.Append(tableCellWidth315);
            tableCellProperties315.Append(gridSpan313);
            tableCellProperties315.Append(tableCellBorders315);
            tableCellProperties315.Append(shading507);
            tableCellProperties315.Append(tableCellMargin179);

            Paragraph paragraph385 = new Paragraph();

            ParagraphProperties paragraphProperties385 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId385 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification243 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties385 = new ParagraphMarkRunProperties();

            paragraphProperties385.Append(paragraphStyleId385);
            paragraphProperties385.Append(justification243);
            paragraphProperties385.Append(paragraphMarkRunProperties385);

            Run run402 = new Run();

            RunProperties runProperties402 = new RunProperties();
            FontSize fontSize489 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript489 = new FontSizeComplexScript() { Val = "26" };

            runProperties402.Append(fontSize489);
            runProperties402.Append(fontSizeComplexScript489);
            Text text281 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text281.Text = "Российский химико-технологический университет имени ";

            run402.Append(runProperties402);
            run402.Append(text281);

            paragraph385.Append(paragraphProperties385);
            paragraph385.Append(run402);

            Paragraph paragraph386 = new Paragraph();

            ParagraphProperties paragraphProperties386 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId386 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification244 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties386 = new ParagraphMarkRunProperties();

            paragraphProperties386.Append(paragraphStyleId386);
            paragraphProperties386.Append(justification244);
            paragraphProperties386.Append(paragraphMarkRunProperties386);

            Run run403 = new Run();

            RunProperties runProperties403 = new RunProperties();
            FontSize fontSize490 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript490 = new FontSizeComplexScript() { Val = "26" };

            runProperties403.Append(fontSize490);
            runProperties403.Append(fontSizeComplexScript490);
            Text text282 = new Text();
            text282.Text = "Д.И. Менделеева";

            run403.Append(runProperties403);
            run403.Append(text282);

            paragraph386.Append(paragraphProperties386);
            paragraph386.Append(run403);

            tableCell315.Append(tableCellProperties315);
            tableCell315.Append(paragraph385);
            tableCell315.Append(paragraph386);

            TableCell tableCell316 = new TableCell();

            TableCellProperties tableCellProperties316 = new TableCellProperties();
            TableCellWidth tableCellWidth316 = new TableCellWidth() { Width = "1167", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan314 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders316 = new TableCellBorders();
            TopBorder topBorder196 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder171 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder159 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder159 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders316.Append(topBorder196);
            tableCellBorders316.Append(startBorder171);
            tableCellBorders316.Append(bottomBorder159);
            tableCellBorders316.Append(insideHorizontalBorder159);
            Shading shading508 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin180 = new TableCellMargin();
            StartMargin startMargin172 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin180.Append(startMargin172);

            tableCellProperties316.Append(tableCellWidth316);
            tableCellProperties316.Append(gridSpan314);
            tableCellProperties316.Append(tableCellBorders316);
            tableCellProperties316.Append(shading508);
            tableCellProperties316.Append(tableCellMargin180);

            Paragraph paragraph387 = new Paragraph();

            ParagraphProperties paragraphProperties387 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId387 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification245 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties387 = new ParagraphMarkRunProperties();

            paragraphProperties387.Append(paragraphStyleId387);
            paragraphProperties387.Append(justification245);
            paragraphProperties387.Append(paragraphMarkRunProperties387);

            Run run404 = new Run();

            RunProperties runProperties404 = new RunProperties();
            FontSize fontSize491 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript491 = new FontSizeComplexScript() { Val = "26" };

            runProperties404.Append(fontSize491);
            runProperties404.Append(fontSizeComplexScript491);
            Text text283 = new Text();
            text283.Text = "300";

            run404.Append(runProperties404);
            run404.Append(text283);

            paragraph387.Append(paragraphProperties387);
            paragraph387.Append(run404);

            tableCell316.Append(tableCellProperties316);
            tableCell316.Append(paragraph387);

            TableCell tableCell317 = new TableCell();

            TableCellProperties tableCellProperties317 = new TableCellProperties();
            TableCellWidth tableCellWidth317 = new TableCellWidth() { Width = "1969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan315 = new GridSpan() { Val = 10 };

            TableCellBorders tableCellBorders317 = new TableCellBorders();
            TopBorder topBorder197 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder172 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder160 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder160 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders317.Append(topBorder197);
            tableCellBorders317.Append(startBorder172);
            tableCellBorders317.Append(bottomBorder160);
            tableCellBorders317.Append(insideHorizontalBorder160);
            Shading shading509 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin181 = new TableCellMargin();
            StartMargin startMargin173 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin181.Append(startMargin173);

            tableCellProperties317.Append(tableCellWidth317);
            tableCellProperties317.Append(gridSpan315);
            tableCellProperties317.Append(tableCellBorders317);
            tableCellProperties317.Append(shading509);
            tableCellProperties317.Append(tableCellMargin181);

            Paragraph paragraph388 = new Paragraph();

            ParagraphProperties paragraphProperties388 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId388 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification246 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties388 = new ParagraphMarkRunProperties();

            paragraphProperties388.Append(paragraphStyleId388);
            paragraphProperties388.Append(justification246);
            paragraphProperties388.Append(paragraphMarkRunProperties388);

            Run run405 = new Run();

            RunProperties runProperties405 = new RunProperties();
            FontSize fontSize492 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript492 = new FontSizeComplexScript() { Val = "26" };

            runProperties405.Append(fontSize492);
            runProperties405.Append(fontSizeComplexScript492);
            Text text284 = new Text();
            text284.Text = "Восток";

            run405.Append(runProperties405);
            run405.Append(text284);

            paragraph388.Append(paragraphProperties388);
            paragraph388.Append(run405);

            tableCell317.Append(tableCellProperties317);
            tableCell317.Append(paragraph388);

            TableCell tableCell318 = new TableCell();

            TableCellProperties tableCellProperties318 = new TableCellProperties();
            TableCellWidth tableCellWidth318 = new TableCellWidth() { Width = "2753", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan316 = new GridSpan() { Val = 14 };

            TableCellBorders tableCellBorders318 = new TableCellBorders();
            TopBorder topBorder198 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder173 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder161 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder89 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder161 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder89 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders318.Append(topBorder198);
            tableCellBorders318.Append(startBorder173);
            tableCellBorders318.Append(bottomBorder161);
            tableCellBorders318.Append(endBorder89);
            tableCellBorders318.Append(insideHorizontalBorder161);
            tableCellBorders318.Append(insideVerticalBorder89);
            Shading shading510 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin182 = new TableCellMargin();
            StartMargin startMargin174 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin182.Append(startMargin174);

            tableCellProperties318.Append(tableCellWidth318);
            tableCellProperties318.Append(gridSpan316);
            tableCellProperties318.Append(tableCellBorders318);
            tableCellProperties318.Append(shading510);
            tableCellProperties318.Append(tableCellMargin182);

            Paragraph paragraph389 = new Paragraph();

            ParagraphProperties paragraphProperties389 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId389 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification247 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties389 = new ParagraphMarkRunProperties();

            paragraphProperties389.Append(paragraphStyleId389);
            paragraphProperties389.Append(justification247);
            paragraphProperties389.Append(paragraphMarkRunProperties389);

            Run run406 = new Run();

            RunProperties runProperties406 = new RunProperties();
            FontSize fontSize493 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript493 = new FontSizeComplexScript() { Val = "26" };

            runProperties406.Append(fontSize493);
            runProperties406.Append(fontSizeComplexScript493);
            Text text285 = new Text();
            text285.Text = "210";

            run406.Append(runProperties406);
            run406.Append(text285);

            paragraph389.Append(paragraphProperties389);
            paragraph389.Append(run406);

            tableCell318.Append(tableCellProperties318);
            tableCell318.Append(paragraph389);

            tableRow113.Append(tableRowProperties113);
            tableRow113.Append(tableCell314);
            tableRow113.Append(tableCell315);
            tableRow113.Append(tableCell316);
            tableRow113.Append(tableCell317);
            tableRow113.Append(tableCell318);

            TableRow tableRow114 = new TableRow();
            TableRowProperties tableRowProperties114 = new TableRowProperties();

            TableCell tableCell319 = new TableCell();

            TableCellProperties tableCellProperties319 = new TableCellProperties();
            TableCellWidth tableCellWidth319 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan317 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders319 = new TableCellBorders();
            TopBorder topBorder199 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders319.Append(topBorder199);
            Shading shading511 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties319.Append(tableCellWidth319);
            tableCellProperties319.Append(gridSpan317);
            tableCellProperties319.Append(tableCellBorders319);
            tableCellProperties319.Append(shading511);

            Paragraph paragraph390 = new Paragraph();

            ParagraphProperties paragraphProperties390 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId390 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties390 = new ParagraphMarkRunProperties();

            paragraphProperties390.Append(paragraphStyleId390);
            paragraphProperties390.Append(paragraphMarkRunProperties390);

            Run run407 = new Run();

            RunProperties runProperties407 = new RunProperties();
            RunStyle runStyle16 = new RunStyle() { Val = "FontStyle48" };

            runProperties407.Append(runStyle16);
            Text text286 = new Text();
            text286.Text = "* по данным сайта maps.yandex.ru";

            run407.Append(runProperties407);
            run407.Append(text286);

            paragraph390.Append(paragraphProperties390);
            paragraph390.Append(run407);

            tableCell319.Append(tableCellProperties319);
            tableCell319.Append(paragraph390);

            tableRow114.Append(tableRowProperties114);
            tableRow114.Append(tableCell319);

            TableRow tableRow115 = new TableRow();
            TableRowProperties tableRowProperties115 = new TableRowProperties();

            TableCell tableCell320 = new TableCell();

            TableCellProperties tableCellProperties320 = new TableCellProperties();
            TableCellWidth tableCellWidth320 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan318 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders320 = new TableCellBorders();
            Shading shading512 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties320.Append(tableCellWidth320);
            tableCellProperties320.Append(gridSpan318);
            tableCellProperties320.Append(tableCellBorders320);
            tableCellProperties320.Append(shading512);

            Paragraph paragraph391 = new Paragraph();

            ParagraphProperties paragraphProperties391 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId391 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties391 = new ParagraphMarkRunProperties();
            Bold bold35 = new Bold();
            Bold bold36 = new Bold();
            FontSize fontSize494 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript494 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties391.Append(bold35);
            paragraphMarkRunProperties391.Append(bold36);
            paragraphMarkRunProperties391.Append(fontSize494);
            paragraphMarkRunProperties391.Append(fontSizeComplexScript494);

            paragraphProperties391.Append(paragraphStyleId391);
            paragraphProperties391.Append(paragraphMarkRunProperties391);

            Run run408 = new Run();

            RunProperties runProperties408 = new RunProperties();
            Bold bold37 = new Bold();
            FontSize fontSize495 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript495 = new FontSizeComplexScript() { Val = "26" };

            runProperties408.Append(bold37);
            runProperties408.Append(fontSize495);
            runProperties408.Append(fontSizeComplexScript495);

            run408.Append(runProperties408);

            paragraph391.Append(paragraphProperties391);
            paragraph391.Append(run408);

            tableCell320.Append(tableCellProperties320);
            tableCell320.Append(paragraph391);

            tableRow115.Append(tableRowProperties115);
            tableRow115.Append(tableCell320);

            TableRow tableRow116 = new TableRow();
            TableRowProperties tableRowProperties116 = new TableRowProperties();

            TableCell tableCell321 = new TableCell();

            TableCellProperties tableCellProperties321 = new TableCellProperties();
            TableCellWidth tableCellWidth321 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan319 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders321 = new TableCellBorders();
            Shading shading513 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties321.Append(tableCellWidth321);
            tableCellProperties321.Append(gridSpan319);
            tableCellProperties321.Append(tableCellBorders321);
            tableCellProperties321.Append(shading513);

            Paragraph paragraph392 = new Paragraph();

            ParagraphProperties paragraphProperties392 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId392 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties392 = new ParagraphMarkRunProperties();

            paragraphProperties392.Append(paragraphStyleId392);
            paragraphProperties392.Append(paragraphMarkRunProperties392);

            Run run409 = new Run();

            RunProperties runProperties409 = new RunProperties();
            Bold bold38 = new Bold();
            FontSize fontSize496 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript496 = new FontSizeComplexScript() { Val = "26" };

            runProperties409.Append(bold38);
            runProperties409.Append(fontSize496);
            runProperties409.Append(fontSizeComplexScript496);
            Text text287 = new Text();
            text287.Text = "1.10. Размещение объекта по отношению к транспортным коммуникациям:";

            run409.Append(runProperties409);
            run409.Append(text287);

            paragraph392.Append(paragraphProperties392);
            paragraph392.Append(run409);

            tableCell321.Append(tableCellProperties321);
            tableCell321.Append(paragraph392);

            tableRow116.Append(tableRowProperties116);
            tableRow116.Append(tableCell321);

            TableRow tableRow117 = new TableRow();
            TableRowProperties tableRowProperties117 = new TableRowProperties();

            TableCell tableCell322 = new TableCell();

            TableCellProperties tableCellProperties322 = new TableCellProperties();
            TableCellWidth tableCellWidth322 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders322 = new TableCellBorders();
            TopBorder topBorder200 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder174 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder162 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder90 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder162 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder90 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders322.Append(topBorder200);
            tableCellBorders322.Append(startBorder174);
            tableCellBorders322.Append(bottomBorder162);
            tableCellBorders322.Append(endBorder90);
            tableCellBorders322.Append(insideHorizontalBorder162);
            tableCellBorders322.Append(insideVerticalBorder90);
            Shading shading514 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin183 = new TableCellMargin();
            StartMargin startMargin175 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin183.Append(startMargin175);
            TableCellVerticalAlignment tableCellVerticalAlignment35 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties322.Append(tableCellWidth322);
            tableCellProperties322.Append(tableCellBorders322);
            tableCellProperties322.Append(shading514);
            tableCellProperties322.Append(tableCellMargin183);
            tableCellProperties322.Append(tableCellVerticalAlignment35);

            Paragraph paragraph393 = new Paragraph();

            ParagraphProperties paragraphProperties393 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId393 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification248 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties393 = new ParagraphMarkRunProperties();

            paragraphProperties393.Append(paragraphStyleId393);
            paragraphProperties393.Append(justification248);
            paragraphProperties393.Append(paragraphMarkRunProperties393);

            Run run410 = new Run();

            RunProperties runProperties410 = new RunProperties();
            RunStyle runStyle17 = new RunStyle() { Val = "FontStyle48" };

            runProperties410.Append(runStyle17);
            Text text288 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text288.Text = "№ ";

            run410.Append(runProperties410);
            run410.Append(text288);

            Run run411 = new Run();

            RunProperties runProperties411 = new RunProperties();
            RunStyle runStyle18 = new RunStyle() { Val = "FontStyle48" };

            runProperties411.Append(runStyle18);
            Text text289 = new Text();
            text289.Text = "п/п";

            run411.Append(runProperties411);
            run411.Append(text289);

            paragraph393.Append(paragraphProperties393);
            paragraph393.Append(run410);
            paragraph393.Append(run411);

            tableCell322.Append(tableCellProperties322);
            tableCell322.Append(paragraph393);

            TableCell tableCell323 = new TableCell();

            TableCellProperties tableCellProperties323 = new TableCellProperties();
            TableCellWidth tableCellWidth323 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan320 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders323 = new TableCellBorders();
            TopBorder topBorder201 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder175 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder163 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder163 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders323.Append(topBorder201);
            tableCellBorders323.Append(startBorder175);
            tableCellBorders323.Append(bottomBorder163);
            tableCellBorders323.Append(insideHorizontalBorder163);
            Shading shading515 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin184 = new TableCellMargin();
            StartMargin startMargin176 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin184.Append(startMargin176);
            TableCellVerticalAlignment tableCellVerticalAlignment36 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties323.Append(tableCellWidth323);
            tableCellProperties323.Append(gridSpan320);
            tableCellProperties323.Append(tableCellBorders323);
            tableCellProperties323.Append(shading515);
            tableCellProperties323.Append(tableCellMargin184);
            tableCellProperties323.Append(tableCellVerticalAlignment36);

            Paragraph paragraph394 = new Paragraph();

            ParagraphProperties paragraphProperties394 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId394 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification249 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties394 = new ParagraphMarkRunProperties();

            paragraphProperties394.Append(paragraphStyleId394);
            paragraphProperties394.Append(justification249);
            paragraphProperties394.Append(paragraphMarkRunProperties394);

            Run run412 = new Run();

            RunProperties runProperties412 = new RunProperties();
            RunStyle runStyle19 = new RunStyle() { Val = "FontStyle48" };

            runProperties412.Append(runStyle19);
            Text text290 = new Text();
            text290.Text = "Вид транспорта и транспортных коммуникаций";

            run412.Append(runProperties412);
            run412.Append(text290);

            paragraph394.Append(paragraphProperties394);
            paragraph394.Append(run412);

            tableCell323.Append(tableCellProperties323);
            tableCell323.Append(paragraph394);

            TableCell tableCell324 = new TableCell();

            TableCellProperties tableCellProperties324 = new TableCellProperties();
            TableCellWidth tableCellWidth324 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan321 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders324 = new TableCellBorders();
            TopBorder topBorder202 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder176 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder164 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder164 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders324.Append(topBorder202);
            tableCellBorders324.Append(startBorder176);
            tableCellBorders324.Append(bottomBorder164);
            tableCellBorders324.Append(insideHorizontalBorder164);
            Shading shading516 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin185 = new TableCellMargin();
            StartMargin startMargin177 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin185.Append(startMargin177);
            TableCellVerticalAlignment tableCellVerticalAlignment37 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties324.Append(tableCellWidth324);
            tableCellProperties324.Append(gridSpan321);
            tableCellProperties324.Append(tableCellBorders324);
            tableCellProperties324.Append(shading516);
            tableCellProperties324.Append(tableCellMargin185);
            tableCellProperties324.Append(tableCellVerticalAlignment37);

            Paragraph paragraph395 = new Paragraph();

            ParagraphProperties paragraphProperties395 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId395 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification250 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties395 = new ParagraphMarkRunProperties();

            paragraphProperties395.Append(paragraphStyleId395);
            paragraphProperties395.Append(justification250);
            paragraphProperties395.Append(paragraphMarkRunProperties395);

            Run run413 = new Run();

            RunProperties runProperties413 = new RunProperties();
            RunStyle runStyle20 = new RunStyle() { Val = "FontStyle48" };

            runProperties413.Append(runStyle20);
            Text text291 = new Text();
            text291.Text = "Наименование";

            run413.Append(runProperties413);
            run413.Append(text291);

            paragraph395.Append(paragraphProperties395);
            paragraph395.Append(run413);

            tableCell324.Append(tableCellProperties324);
            tableCell324.Append(paragraph395);

            TableCell tableCell325 = new TableCell();

            TableCellProperties tableCellProperties325 = new TableCellProperties();
            TableCellWidth tableCellWidth325 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan322 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders325 = new TableCellBorders();
            TopBorder topBorder203 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder177 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder165 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder91 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder165 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder91 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders325.Append(topBorder203);
            tableCellBorders325.Append(startBorder177);
            tableCellBorders325.Append(bottomBorder165);
            tableCellBorders325.Append(endBorder91);
            tableCellBorders325.Append(insideHorizontalBorder165);
            tableCellBorders325.Append(insideVerticalBorder91);
            Shading shading517 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin186 = new TableCellMargin();
            StartMargin startMargin178 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin186.Append(startMargin178);
            TableCellVerticalAlignment tableCellVerticalAlignment38 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties325.Append(tableCellWidth325);
            tableCellProperties325.Append(gridSpan322);
            tableCellProperties325.Append(tableCellBorders325);
            tableCellProperties325.Append(shading517);
            tableCellProperties325.Append(tableCellMargin186);
            tableCellProperties325.Append(tableCellVerticalAlignment38);

            Paragraph paragraph396 = new Paragraph();

            ParagraphProperties paragraphProperties396 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId396 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification251 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties396 = new ParagraphMarkRunProperties();

            paragraphProperties396.Append(paragraphStyleId396);
            paragraphProperties396.Append(justification251);
            paragraphProperties396.Append(paragraphMarkRunProperties396);

            Run run414 = new Run();

            RunProperties runProperties414 = new RunProperties();
            RunStyle runStyle21 = new RunStyle() { Val = "FontStyle48" };

            runProperties414.Append(runStyle21);
            Text text292 = new Text();
            text292.Text = "Расстояние до транспортных коммуникаций, м.";

            run414.Append(runProperties414);
            run414.Append(text292);

            paragraph396.Append(paragraphProperties396);
            paragraph396.Append(run414);

            tableCell325.Append(tableCellProperties325);
            tableCell325.Append(paragraph396);

            tableRow117.Append(tableRowProperties117);
            tableRow117.Append(tableCell322);
            tableRow117.Append(tableCell323);
            tableRow117.Append(tableCell324);
            tableRow117.Append(tableCell325);

            TableRow tableRow118 = new TableRow();
            TableRowProperties tableRowProperties118 = new TableRowProperties();

            TableCell tableCell326 = new TableCell();

            TableCellProperties tableCellProperties326 = new TableCellProperties();
            TableCellWidth tableCellWidth326 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders326 = new TableCellBorders();
            TopBorder topBorder204 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder178 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder166 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder92 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder166 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder92 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders326.Append(topBorder204);
            tableCellBorders326.Append(startBorder178);
            tableCellBorders326.Append(bottomBorder166);
            tableCellBorders326.Append(endBorder92);
            tableCellBorders326.Append(insideHorizontalBorder166);
            tableCellBorders326.Append(insideVerticalBorder92);
            Shading shading518 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin187 = new TableCellMargin();
            StartMargin startMargin179 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin187.Append(startMargin179);

            tableCellProperties326.Append(tableCellWidth326);
            tableCellProperties326.Append(tableCellBorders326);
            tableCellProperties326.Append(shading518);
            tableCellProperties326.Append(tableCellMargin187);

            Paragraph paragraph397 = new Paragraph();

            ParagraphProperties paragraphProperties397 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId397 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification252 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties397 = new ParagraphMarkRunProperties();

            paragraphProperties397.Append(paragraphStyleId397);
            paragraphProperties397.Append(justification252);
            paragraphProperties397.Append(paragraphMarkRunProperties397);

            Run run415 = new Run();

            RunProperties runProperties415 = new RunProperties();
            RunStyle runStyle22 = new RunStyle() { Val = "FontStyle48" };

            runProperties415.Append(runStyle22);
            Text text293 = new Text();
            text293.Text = "1";

            run415.Append(runProperties415);
            run415.Append(text293);

            paragraph397.Append(paragraphProperties397);
            paragraph397.Append(run415);

            tableCell326.Append(tableCellProperties326);
            tableCell326.Append(paragraph397);

            TableCell tableCell327 = new TableCell();

            TableCellProperties tableCellProperties327 = new TableCellProperties();
            TableCellWidth tableCellWidth327 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan323 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders327 = new TableCellBorders();
            TopBorder topBorder205 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder179 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder167 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder167 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders327.Append(topBorder205);
            tableCellBorders327.Append(startBorder179);
            tableCellBorders327.Append(bottomBorder167);
            tableCellBorders327.Append(insideHorizontalBorder167);
            Shading shading519 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin188 = new TableCellMargin();
            StartMargin startMargin180 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin188.Append(startMargin180);

            tableCellProperties327.Append(tableCellWidth327);
            tableCellProperties327.Append(gridSpan323);
            tableCellProperties327.Append(tableCellBorders327);
            tableCellProperties327.Append(shading519);
            tableCellProperties327.Append(tableCellMargin188);

            Paragraph paragraph398 = new Paragraph();

            ParagraphProperties paragraphProperties398 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId398 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification253 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties398 = new ParagraphMarkRunProperties();

            paragraphProperties398.Append(paragraphStyleId398);
            paragraphProperties398.Append(justification253);
            paragraphProperties398.Append(paragraphMarkRunProperties398);

            Run run416 = new Run();

            RunProperties runProperties416 = new RunProperties();
            RunStyle runStyle23 = new RunStyle() { Val = "FontStyle48" };

            runProperties416.Append(runStyle23);
            Text text294 = new Text();
            text294.Text = "2";

            run416.Append(runProperties416);
            run416.Append(text294);

            paragraph398.Append(paragraphProperties398);
            paragraph398.Append(run416);

            tableCell327.Append(tableCellProperties327);
            tableCell327.Append(paragraph398);

            TableCell tableCell328 = new TableCell();

            TableCellProperties tableCellProperties328 = new TableCellProperties();
            TableCellWidth tableCellWidth328 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan324 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders328 = new TableCellBorders();
            TopBorder topBorder206 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder180 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder168 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder168 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders328.Append(topBorder206);
            tableCellBorders328.Append(startBorder180);
            tableCellBorders328.Append(bottomBorder168);
            tableCellBorders328.Append(insideHorizontalBorder168);
            Shading shading520 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin189 = new TableCellMargin();
            StartMargin startMargin181 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin189.Append(startMargin181);

            tableCellProperties328.Append(tableCellWidth328);
            tableCellProperties328.Append(gridSpan324);
            tableCellProperties328.Append(tableCellBorders328);
            tableCellProperties328.Append(shading520);
            tableCellProperties328.Append(tableCellMargin189);

            Paragraph paragraph399 = new Paragraph();

            ParagraphProperties paragraphProperties399 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId399 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification254 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties399 = new ParagraphMarkRunProperties();

            paragraphProperties399.Append(paragraphStyleId399);
            paragraphProperties399.Append(justification254);
            paragraphProperties399.Append(paragraphMarkRunProperties399);

            Run run417 = new Run();

            RunProperties runProperties417 = new RunProperties();
            RunStyle runStyle24 = new RunStyle() { Val = "FontStyle48" };

            runProperties417.Append(runStyle24);
            Text text295 = new Text();
            text295.Text = "3";

            run417.Append(runProperties417);
            run417.Append(text295);

            paragraph399.Append(paragraphProperties399);
            paragraph399.Append(run417);

            tableCell328.Append(tableCellProperties328);
            tableCell328.Append(paragraph399);

            TableCell tableCell329 = new TableCell();

            TableCellProperties tableCellProperties329 = new TableCellProperties();
            TableCellWidth tableCellWidth329 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan325 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders329 = new TableCellBorders();
            TopBorder topBorder207 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder181 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder169 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder93 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder169 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder93 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders329.Append(topBorder207);
            tableCellBorders329.Append(startBorder181);
            tableCellBorders329.Append(bottomBorder169);
            tableCellBorders329.Append(endBorder93);
            tableCellBorders329.Append(insideHorizontalBorder169);
            tableCellBorders329.Append(insideVerticalBorder93);
            Shading shading521 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin190 = new TableCellMargin();
            StartMargin startMargin182 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin190.Append(startMargin182);

            tableCellProperties329.Append(tableCellWidth329);
            tableCellProperties329.Append(gridSpan325);
            tableCellProperties329.Append(tableCellBorders329);
            tableCellProperties329.Append(shading521);
            tableCellProperties329.Append(tableCellMargin190);

            Paragraph paragraph400 = new Paragraph();

            ParagraphProperties paragraphProperties400 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId400 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification255 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties400 = new ParagraphMarkRunProperties();

            paragraphProperties400.Append(paragraphStyleId400);
            paragraphProperties400.Append(justification255);
            paragraphProperties400.Append(paragraphMarkRunProperties400);

            Run run418 = new Run();

            RunProperties runProperties418 = new RunProperties();
            RunStyle runStyle25 = new RunStyle() { Val = "FontStyle48" };

            runProperties418.Append(runStyle25);
            Text text296 = new Text();
            text296.Text = "4";

            run418.Append(runProperties418);
            run418.Append(text296);

            paragraph400.Append(paragraphProperties400);
            paragraph400.Append(run418);

            tableCell329.Append(tableCellProperties329);
            tableCell329.Append(paragraph400);

            tableRow118.Append(tableRowProperties118);
            tableRow118.Append(tableCell326);
            tableRow118.Append(tableCell327);
            tableRow118.Append(tableCell328);
            tableRow118.Append(tableCell329);

            TableRow tableRow119 = new TableRow();
            TableRowProperties tableRowProperties119 = new TableRowProperties();

            TableCell tableCell330 = new TableCell();

            TableCellProperties tableCellProperties330 = new TableCellProperties();
            TableCellWidth tableCellWidth330 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };
            VerticalMerge verticalMerge31 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders330 = new TableCellBorders();
            TopBorder topBorder208 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder182 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder170 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder94 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder170 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder94 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders330.Append(topBorder208);
            tableCellBorders330.Append(startBorder182);
            tableCellBorders330.Append(bottomBorder170);
            tableCellBorders330.Append(endBorder94);
            tableCellBorders330.Append(insideHorizontalBorder170);
            tableCellBorders330.Append(insideVerticalBorder94);
            Shading shading522 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin191 = new TableCellMargin();
            StartMargin startMargin183 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin191.Append(startMargin183);

            tableCellProperties330.Append(tableCellWidth330);
            tableCellProperties330.Append(verticalMerge31);
            tableCellProperties330.Append(tableCellBorders330);
            tableCellProperties330.Append(shading522);
            tableCellProperties330.Append(tableCellMargin191);

            Paragraph paragraph401 = new Paragraph();

            ParagraphProperties paragraphProperties401 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId401 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification256 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties401 = new ParagraphMarkRunProperties();

            paragraphProperties401.Append(paragraphStyleId401);
            paragraphProperties401.Append(justification256);
            paragraphProperties401.Append(paragraphMarkRunProperties401);

            Run run419 = new Run();

            RunProperties runProperties419 = new RunProperties();
            RunStyle runStyle26 = new RunStyle() { Val = "FontStyle48" };

            runProperties419.Append(runStyle26);
            Text text297 = new Text();
            text297.Text = "1";

            run419.Append(runProperties419);
            run419.Append(text297);

            paragraph401.Append(paragraphProperties401);
            paragraph401.Append(run419);

            tableCell330.Append(tableCellProperties330);
            tableCell330.Append(paragraph401);

            TableCell tableCell331 = new TableCell();

            TableCellProperties tableCellProperties331 = new TableCellProperties();
            TableCellWidth tableCellWidth331 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan326 = new GridSpan() { Val = 21 };
            VerticalMerge verticalMerge32 = new VerticalMerge() { Val = MergedCellValues.Restart };

            TableCellBorders tableCellBorders331 = new TableCellBorders();
            StartBorder startBorder183 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders331.Append(startBorder183);
            Shading shading523 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin192 = new TableCellMargin();
            StartMargin startMargin184 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin192.Append(startMargin184);

            tableCellProperties331.Append(tableCellWidth331);
            tableCellProperties331.Append(gridSpan326);
            tableCellProperties331.Append(verticalMerge32);
            tableCellProperties331.Append(tableCellBorders331);
            tableCellProperties331.Append(shading523);
            tableCellProperties331.Append(tableCellMargin192);

            Paragraph paragraph402 = new Paragraph();

            ParagraphProperties paragraphProperties402 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId402 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification257 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties402 = new ParagraphMarkRunProperties();

            paragraphProperties402.Append(paragraphStyleId402);
            paragraphProperties402.Append(justification257);
            paragraphProperties402.Append(paragraphMarkRunProperties402);

            Run run420 = new Run();

            RunProperties runProperties420 = new RunProperties();
            RunStyle runStyle27 = new RunStyle() { Val = "FontStyle48" };

            runProperties420.Append(runStyle27);
            Text text298 = new Text();
            text298.Text = "Автомобильный (шоссе, дороги, автовокзалы, автостанции и прочее)";

            run420.Append(runProperties420);
            run420.Append(text298);

            paragraph402.Append(paragraphProperties402);
            paragraph402.Append(run420);

            tableCell331.Append(tableCellProperties331);
            tableCell331.Append(paragraph402);

            TableCell tableCell332 = new TableCell();

            TableCellProperties tableCellProperties332 = new TableCellProperties();
            TableCellWidth tableCellWidth332 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan327 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders332 = new TableCellBorders();
            TopBorder topBorder209 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder184 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder171 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder171 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders332.Append(topBorder209);
            tableCellBorders332.Append(startBorder184);
            tableCellBorders332.Append(bottomBorder171);
            tableCellBorders332.Append(insideHorizontalBorder171);
            Shading shading524 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin193 = new TableCellMargin();
            StartMargin startMargin185 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin193.Append(startMargin185);

            tableCellProperties332.Append(tableCellWidth332);
            tableCellProperties332.Append(gridSpan327);
            tableCellProperties332.Append(tableCellBorders332);
            tableCellProperties332.Append(shading524);
            tableCellProperties332.Append(tableCellMargin193);

            Paragraph paragraph403 = new Paragraph();

            ParagraphProperties paragraphProperties403 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId403 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification258 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties403 = new ParagraphMarkRunProperties();

            paragraphProperties403.Append(paragraphStyleId403);
            paragraphProperties403.Append(justification258);
            paragraphProperties403.Append(paragraphMarkRunProperties403);

            Run run421 = new Run();

            RunProperties runProperties421 = new RunProperties();
            FontSize fontSize497 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript497 = new FontSizeComplexScript() { Val = "26" };

            runProperties421.Append(fontSize497);
            runProperties421.Append(fontSizeComplexScript497);
            Text text299 = new Text();
            text299.Text = "МКАД";

            run421.Append(runProperties421);
            run421.Append(text299);

            paragraph403.Append(paragraphProperties403);
            paragraph403.Append(run421);

            tableCell332.Append(tableCellProperties332);
            tableCell332.Append(paragraph403);

            TableCell tableCell333 = new TableCell();

            TableCellProperties tableCellProperties333 = new TableCellProperties();
            TableCellWidth tableCellWidth333 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan328 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders333 = new TableCellBorders();
            TopBorder topBorder210 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder185 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder172 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder95 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder172 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder95 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders333.Append(topBorder210);
            tableCellBorders333.Append(startBorder185);
            tableCellBorders333.Append(bottomBorder172);
            tableCellBorders333.Append(endBorder95);
            tableCellBorders333.Append(insideHorizontalBorder172);
            tableCellBorders333.Append(insideVerticalBorder95);
            Shading shading525 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin194 = new TableCellMargin();
            StartMargin startMargin186 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin194.Append(startMargin186);

            tableCellProperties333.Append(tableCellWidth333);
            tableCellProperties333.Append(gridSpan328);
            tableCellProperties333.Append(tableCellBorders333);
            tableCellProperties333.Append(shading525);
            tableCellProperties333.Append(tableCellMargin194);

            Paragraph paragraph404 = new Paragraph();

            ParagraphProperties paragraphProperties404 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId404 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification259 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties404 = new ParagraphMarkRunProperties();

            paragraphProperties404.Append(paragraphStyleId404);
            paragraphProperties404.Append(justification259);
            paragraphProperties404.Append(paragraphMarkRunProperties404);

            Run run422 = new Run();

            RunProperties runProperties422 = new RunProperties();
            FontSize fontSize498 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript498 = new FontSizeComplexScript() { Val = "26" };

            runProperties422.Append(fontSize498);
            runProperties422.Append(fontSizeComplexScript498);
            Text text300 = new Text();
            text300.Text = "Север (781)";

            run422.Append(runProperties422);
            run422.Append(text300);

            paragraph404.Append(paragraphProperties404);
            paragraph404.Append(run422);

            tableCell333.Append(tableCellProperties333);
            tableCell333.Append(paragraph404);

            tableRow119.Append(tableRowProperties119);
            tableRow119.Append(tableCell330);
            tableRow119.Append(tableCell331);
            tableRow119.Append(tableCell332);
            tableRow119.Append(tableCell333);

            TableRow tableRow120 = new TableRow();
            TableRowProperties tableRowProperties120 = new TableRowProperties();

            TableCell tableCell334 = new TableCell();

            TableCellProperties tableCellProperties334 = new TableCellProperties();
            TableCellWidth tableCellWidth334 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };
            VerticalMerge verticalMerge33 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders334 = new TableCellBorders();
            TopBorder topBorder211 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder186 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder173 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder96 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder173 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder96 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders334.Append(topBorder211);
            tableCellBorders334.Append(startBorder186);
            tableCellBorders334.Append(bottomBorder173);
            tableCellBorders334.Append(endBorder96);
            tableCellBorders334.Append(insideHorizontalBorder173);
            tableCellBorders334.Append(insideVerticalBorder96);
            Shading shading526 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin195 = new TableCellMargin();
            StartMargin startMargin187 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin195.Append(startMargin187);

            tableCellProperties334.Append(tableCellWidth334);
            tableCellProperties334.Append(verticalMerge33);
            tableCellProperties334.Append(tableCellBorders334);
            tableCellProperties334.Append(shading526);
            tableCellProperties334.Append(tableCellMargin195);

            Paragraph paragraph405 = new Paragraph();

            ParagraphProperties paragraphProperties405 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId405 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification260 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties405 = new ParagraphMarkRunProperties();
            RunStyle runStyle28 = new RunStyle() { Val = "FontStyle48" };

            paragraphMarkRunProperties405.Append(runStyle28);

            paragraphProperties405.Append(paragraphStyleId405);
            paragraphProperties405.Append(justification260);
            paragraphProperties405.Append(paragraphMarkRunProperties405);

            Run run423 = new Run();
            RunProperties runProperties423 = new RunProperties();

            run423.Append(runProperties423);

            paragraph405.Append(paragraphProperties405);
            paragraph405.Append(run423);

            tableCell334.Append(tableCellProperties334);
            tableCell334.Append(paragraph405);

            TableCell tableCell335 = new TableCell();

            TableCellProperties tableCellProperties335 = new TableCellProperties();
            TableCellWidth tableCellWidth335 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan329 = new GridSpan() { Val = 21 };
            VerticalMerge verticalMerge34 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders335 = new TableCellBorders();
            StartBorder startBorder187 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders335.Append(startBorder187);
            Shading shading527 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin196 = new TableCellMargin();
            StartMargin startMargin188 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin196.Append(startMargin188);

            tableCellProperties335.Append(tableCellWidth335);
            tableCellProperties335.Append(gridSpan329);
            tableCellProperties335.Append(verticalMerge34);
            tableCellProperties335.Append(tableCellBorders335);
            tableCellProperties335.Append(shading527);
            tableCellProperties335.Append(tableCellMargin196);

            Paragraph paragraph406 = new Paragraph();

            ParagraphProperties paragraphProperties406 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId406 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification261 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties406 = new ParagraphMarkRunProperties();
            RunStyle runStyle29 = new RunStyle() { Val = "FontStyle48" };

            paragraphMarkRunProperties406.Append(runStyle29);

            paragraphProperties406.Append(paragraphStyleId406);
            paragraphProperties406.Append(justification261);
            paragraphProperties406.Append(paragraphMarkRunProperties406);

            Run run424 = new Run();
            RunProperties runProperties424 = new RunProperties();

            run424.Append(runProperties424);

            paragraph406.Append(paragraphProperties406);
            paragraph406.Append(run424);

            tableCell335.Append(tableCellProperties335);
            tableCell335.Append(paragraph406);

            TableCell tableCell336 = new TableCell();

            TableCellProperties tableCellProperties336 = new TableCellProperties();
            TableCellWidth tableCellWidth336 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan330 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders336 = new TableCellBorders();
            TopBorder topBorder212 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder188 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder174 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder174 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders336.Append(topBorder212);
            tableCellBorders336.Append(startBorder188);
            tableCellBorders336.Append(bottomBorder174);
            tableCellBorders336.Append(insideHorizontalBorder174);
            Shading shading528 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin197 = new TableCellMargin();
            StartMargin startMargin189 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin197.Append(startMargin189);

            tableCellProperties336.Append(tableCellWidth336);
            tableCellProperties336.Append(gridSpan330);
            tableCellProperties336.Append(tableCellBorders336);
            tableCellProperties336.Append(shading528);
            tableCellProperties336.Append(tableCellMargin197);

            Paragraph paragraph407 = new Paragraph();

            ParagraphProperties paragraphProperties407 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId407 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification262 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties407 = new ParagraphMarkRunProperties();

            paragraphProperties407.Append(paragraphStyleId407);
            paragraphProperties407.Append(justification262);
            paragraphProperties407.Append(paragraphMarkRunProperties407);

            Run run425 = new Run();

            RunProperties runProperties425 = new RunProperties();
            FontSize fontSize499 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript499 = new FontSizeComplexScript() { Val = "26" };

            runProperties425.Append(fontSize499);
            runProperties425.Append(fontSizeComplexScript499);
            Text text301 = new Text();
            text301.Text = "ул. Вилиса Лациса";

            run425.Append(runProperties425);
            run425.Append(text301);

            paragraph407.Append(paragraphProperties407);
            paragraph407.Append(run425);

            tableCell336.Append(tableCellProperties336);
            tableCell336.Append(paragraph407);

            TableCell tableCell337 = new TableCell();

            TableCellProperties tableCellProperties337 = new TableCellProperties();
            TableCellWidth tableCellWidth337 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan331 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders337 = new TableCellBorders();
            TopBorder topBorder213 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder189 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder175 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder97 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder175 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder97 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders337.Append(topBorder213);
            tableCellBorders337.Append(startBorder189);
            tableCellBorders337.Append(bottomBorder175);
            tableCellBorders337.Append(endBorder97);
            tableCellBorders337.Append(insideHorizontalBorder175);
            tableCellBorders337.Append(insideVerticalBorder97);
            Shading shading529 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin198 = new TableCellMargin();
            StartMargin startMargin190 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin198.Append(startMargin190);

            tableCellProperties337.Append(tableCellWidth337);
            tableCellProperties337.Append(gridSpan331);
            tableCellProperties337.Append(tableCellBorders337);
            tableCellProperties337.Append(shading529);
            tableCellProperties337.Append(tableCellMargin198);

            Paragraph paragraph408 = new Paragraph();

            ParagraphProperties paragraphProperties408 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId408 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification263 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties408 = new ParagraphMarkRunProperties();

            paragraphProperties408.Append(paragraphStyleId408);
            paragraphProperties408.Append(justification263);
            paragraphProperties408.Append(paragraphMarkRunProperties408);

            Run run426 = new Run();

            RunProperties runProperties426 = new RunProperties();
            FontSize fontSize500 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript500 = new FontSizeComplexScript() { Val = "26" };

            runProperties426.Append(fontSize500);
            runProperties426.Append(fontSizeComplexScript500);
            Text text302 = new Text();
            text302.Text = "Север (48)";

            run426.Append(runProperties426);
            run426.Append(text302);

            paragraph408.Append(paragraphProperties408);
            paragraph408.Append(run426);

            tableCell337.Append(tableCellProperties337);
            tableCell337.Append(paragraph408);

            tableRow120.Append(tableRowProperties120);
            tableRow120.Append(tableCell334);
            tableRow120.Append(tableCell335);
            tableRow120.Append(tableCell336);
            tableRow120.Append(tableCell337);

            TableRow tableRow121 = new TableRow();
            TableRowProperties tableRowProperties121 = new TableRowProperties();

            TableCell tableCell338 = new TableCell();

            TableCellProperties tableCellProperties338 = new TableCellProperties();
            TableCellWidth tableCellWidth338 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };
            VerticalMerge verticalMerge35 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders338 = new TableCellBorders();
            TopBorder topBorder214 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder190 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder176 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder98 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder176 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder98 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders338.Append(topBorder214);
            tableCellBorders338.Append(startBorder190);
            tableCellBorders338.Append(bottomBorder176);
            tableCellBorders338.Append(endBorder98);
            tableCellBorders338.Append(insideHorizontalBorder176);
            tableCellBorders338.Append(insideVerticalBorder98);
            Shading shading530 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin199 = new TableCellMargin();
            StartMargin startMargin191 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin199.Append(startMargin191);

            tableCellProperties338.Append(tableCellWidth338);
            tableCellProperties338.Append(verticalMerge35);
            tableCellProperties338.Append(tableCellBorders338);
            tableCellProperties338.Append(shading530);
            tableCellProperties338.Append(tableCellMargin199);

            Paragraph paragraph409 = new Paragraph();

            ParagraphProperties paragraphProperties409 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId409 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification264 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties409 = new ParagraphMarkRunProperties();
            RunStyle runStyle30 = new RunStyle() { Val = "FontStyle48" };

            paragraphMarkRunProperties409.Append(runStyle30);

            paragraphProperties409.Append(paragraphStyleId409);
            paragraphProperties409.Append(justification264);
            paragraphProperties409.Append(paragraphMarkRunProperties409);

            Run run427 = new Run();
            RunProperties runProperties427 = new RunProperties();

            run427.Append(runProperties427);

            paragraph409.Append(paragraphProperties409);
            paragraph409.Append(run427);

            tableCell338.Append(tableCellProperties338);
            tableCell338.Append(paragraph409);

            TableCell tableCell339 = new TableCell();

            TableCellProperties tableCellProperties339 = new TableCellProperties();
            TableCellWidth tableCellWidth339 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan332 = new GridSpan() { Val = 21 };
            VerticalMerge verticalMerge36 = new VerticalMerge() { Val = MergedCellValues.Continue };

            TableCellBorders tableCellBorders339 = new TableCellBorders();
            TopBorder topBorder215 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder191 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder177 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder177 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders339.Append(topBorder215);
            tableCellBorders339.Append(startBorder191);
            tableCellBorders339.Append(bottomBorder177);
            tableCellBorders339.Append(insideHorizontalBorder177);
            Shading shading531 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin200 = new TableCellMargin();
            StartMargin startMargin192 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin200.Append(startMargin192);

            tableCellProperties339.Append(tableCellWidth339);
            tableCellProperties339.Append(gridSpan332);
            tableCellProperties339.Append(verticalMerge36);
            tableCellProperties339.Append(tableCellBorders339);
            tableCellProperties339.Append(shading531);
            tableCellProperties339.Append(tableCellMargin200);

            Paragraph paragraph410 = new Paragraph();

            ParagraphProperties paragraphProperties410 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId410 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification265 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties410 = new ParagraphMarkRunProperties();
            RunStyle runStyle31 = new RunStyle() { Val = "FontStyle48" };

            paragraphMarkRunProperties410.Append(runStyle31);

            paragraphProperties410.Append(paragraphStyleId410);
            paragraphProperties410.Append(justification265);
            paragraphProperties410.Append(paragraphMarkRunProperties410);

            Run run428 = new Run();
            RunProperties runProperties428 = new RunProperties();

            run428.Append(runProperties428);

            paragraph410.Append(paragraphProperties410);
            paragraph410.Append(run428);

            tableCell339.Append(tableCellProperties339);
            tableCell339.Append(paragraph410);

            TableCell tableCell340 = new TableCell();

            TableCellProperties tableCellProperties340 = new TableCellProperties();
            TableCellWidth tableCellWidth340 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan333 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders340 = new TableCellBorders();
            TopBorder topBorder216 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder192 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder178 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder178 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders340.Append(topBorder216);
            tableCellBorders340.Append(startBorder192);
            tableCellBorders340.Append(bottomBorder178);
            tableCellBorders340.Append(insideHorizontalBorder178);
            Shading shading532 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin201 = new TableCellMargin();
            StartMargin startMargin193 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin201.Append(startMargin193);

            tableCellProperties340.Append(tableCellWidth340);
            tableCellProperties340.Append(gridSpan333);
            tableCellProperties340.Append(tableCellBorders340);
            tableCellProperties340.Append(shading532);
            tableCellProperties340.Append(tableCellMargin201);

            Paragraph paragraph411 = new Paragraph();

            ParagraphProperties paragraphProperties411 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId411 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification266 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties411 = new ParagraphMarkRunProperties();

            paragraphProperties411.Append(paragraphStyleId411);
            paragraphProperties411.Append(justification266);
            paragraphProperties411.Append(paragraphMarkRunProperties411);

            Run run429 = new Run();

            RunProperties runProperties429 = new RunProperties();
            FontSize fontSize501 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript501 = new FontSizeComplexScript() { Val = "26" };

            runProperties429.Append(fontSize501);
            runProperties429.Append(fontSizeComplexScript501);
            Text text303 = new Text();
            text303.Text = "ул. Героев - Панфиловцев";

            run429.Append(runProperties429);
            run429.Append(text303);

            paragraph411.Append(paragraphProperties411);
            paragraph411.Append(run429);

            tableCell340.Append(tableCellProperties340);
            tableCell340.Append(paragraph411);

            TableCell tableCell341 = new TableCell();

            TableCellProperties tableCellProperties341 = new TableCellProperties();
            TableCellWidth tableCellWidth341 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan334 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders341 = new TableCellBorders();
            TopBorder topBorder217 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder193 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder179 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder99 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder179 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder99 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders341.Append(topBorder217);
            tableCellBorders341.Append(startBorder193);
            tableCellBorders341.Append(bottomBorder179);
            tableCellBorders341.Append(endBorder99);
            tableCellBorders341.Append(insideHorizontalBorder179);
            tableCellBorders341.Append(insideVerticalBorder99);
            Shading shading533 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin202 = new TableCellMargin();
            StartMargin startMargin194 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin202.Append(startMargin194);

            tableCellProperties341.Append(tableCellWidth341);
            tableCellProperties341.Append(gridSpan334);
            tableCellProperties341.Append(tableCellBorders341);
            tableCellProperties341.Append(shading533);
            tableCellProperties341.Append(tableCellMargin202);

            Paragraph paragraph412 = new Paragraph();

            ParagraphProperties paragraphProperties412 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId412 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification267 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties412 = new ParagraphMarkRunProperties();

            paragraphProperties412.Append(paragraphStyleId412);
            paragraphProperties412.Append(justification267);
            paragraphProperties412.Append(paragraphMarkRunProperties412);

            Run run430 = new Run();

            RunProperties runProperties430 = new RunProperties();
            FontSize fontSize502 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript502 = new FontSizeComplexScript() { Val = "26" };

            runProperties430.Append(fontSize502);
            runProperties430.Append(fontSizeComplexScript502);
            Text text304 = new Text();
            text304.Text = "Юг (500)";

            run430.Append(runProperties430);
            run430.Append(text304);

            paragraph412.Append(paragraphProperties412);
            paragraph412.Append(run430);

            tableCell341.Append(tableCellProperties341);
            tableCell341.Append(paragraph412);

            tableRow121.Append(tableRowProperties121);
            tableRow121.Append(tableCell338);
            tableRow121.Append(tableCell339);
            tableRow121.Append(tableCell340);
            tableRow121.Append(tableCell341);

            TableRow tableRow122 = new TableRow();
            TableRowProperties tableRowProperties122 = new TableRowProperties();

            TableCell tableCell342 = new TableCell();

            TableCellProperties tableCellProperties342 = new TableCellProperties();
            TableCellWidth tableCellWidth342 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders342 = new TableCellBorders();
            TopBorder topBorder218 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder194 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder180 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder100 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder180 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder100 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders342.Append(topBorder218);
            tableCellBorders342.Append(startBorder194);
            tableCellBorders342.Append(bottomBorder180);
            tableCellBorders342.Append(endBorder100);
            tableCellBorders342.Append(insideHorizontalBorder180);
            tableCellBorders342.Append(insideVerticalBorder100);
            Shading shading534 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin203 = new TableCellMargin();
            StartMargin startMargin195 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin203.Append(startMargin195);

            tableCellProperties342.Append(tableCellWidth342);
            tableCellProperties342.Append(tableCellBorders342);
            tableCellProperties342.Append(shading534);
            tableCellProperties342.Append(tableCellMargin203);

            Paragraph paragraph413 = new Paragraph();

            ParagraphProperties paragraphProperties413 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId413 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification268 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties413 = new ParagraphMarkRunProperties();

            paragraphProperties413.Append(paragraphStyleId413);
            paragraphProperties413.Append(justification268);
            paragraphProperties413.Append(paragraphMarkRunProperties413);

            Run run431 = new Run();

            RunProperties runProperties431 = new RunProperties();
            RunStyle runStyle32 = new RunStyle() { Val = "FontStyle48" };

            runProperties431.Append(runStyle32);
            Text text305 = new Text();
            text305.Text = "2";

            run431.Append(runProperties431);
            run431.Append(text305);

            paragraph413.Append(paragraphProperties413);
            paragraph413.Append(run431);

            tableCell342.Append(tableCellProperties342);
            tableCell342.Append(paragraph413);

            TableCell tableCell343 = new TableCell();

            TableCellProperties tableCellProperties343 = new TableCellProperties();
            TableCellWidth tableCellWidth343 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan335 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders343 = new TableCellBorders();
            StartBorder startBorder195 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders343.Append(startBorder195);
            Shading shading535 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin204 = new TableCellMargin();
            StartMargin startMargin196 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin204.Append(startMargin196);

            tableCellProperties343.Append(tableCellWidth343);
            tableCellProperties343.Append(gridSpan335);
            tableCellProperties343.Append(tableCellBorders343);
            tableCellProperties343.Append(shading535);
            tableCellProperties343.Append(tableCellMargin204);

            Paragraph paragraph414 = new Paragraph();

            ParagraphProperties paragraphProperties414 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId414 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification269 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties414 = new ParagraphMarkRunProperties();

            paragraphProperties414.Append(paragraphStyleId414);
            paragraphProperties414.Append(justification269);
            paragraphProperties414.Append(paragraphMarkRunProperties414);

            Run run432 = new Run();

            RunProperties runProperties432 = new RunProperties();
            RunStyle runStyle33 = new RunStyle() { Val = "FontStyle48" };

            runProperties432.Append(runStyle33);
            Text text306 = new Text();
            text306.Text = "Железнодорожный (железнодорожные пути, вокзалы, платформы, переезда и прочее)";

            run432.Append(runProperties432);
            run432.Append(text306);

            paragraph414.Append(paragraphProperties414);
            paragraph414.Append(run432);

            tableCell343.Append(tableCellProperties343);
            tableCell343.Append(paragraph414);

            TableCell tableCell344 = new TableCell();

            TableCellProperties tableCellProperties344 = new TableCellProperties();
            TableCellWidth tableCellWidth344 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan336 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders344 = new TableCellBorders();
            TopBorder topBorder219 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder196 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder181 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder181 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders344.Append(topBorder219);
            tableCellBorders344.Append(startBorder196);
            tableCellBorders344.Append(bottomBorder181);
            tableCellBorders344.Append(insideHorizontalBorder181);
            Shading shading536 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin205 = new TableCellMargin();
            StartMargin startMargin197 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin205.Append(startMargin197);
            TableCellVerticalAlignment tableCellVerticalAlignment39 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties344.Append(tableCellWidth344);
            tableCellProperties344.Append(gridSpan336);
            tableCellProperties344.Append(tableCellBorders344);
            tableCellProperties344.Append(shading536);
            tableCellProperties344.Append(tableCellMargin205);
            tableCellProperties344.Append(tableCellVerticalAlignment39);

            Paragraph paragraph415 = new Paragraph();

            ParagraphProperties paragraphProperties415 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId415 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification270 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties415 = new ParagraphMarkRunProperties();

            paragraphProperties415.Append(paragraphStyleId415);
            paragraphProperties415.Append(justification270);
            paragraphProperties415.Append(paragraphMarkRunProperties415);

            Run run433 = new Run();

            RunProperties runProperties433 = new RunProperties();
            FontSize fontSize503 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript503 = new FontSizeComplexScript() { Val = "26" };

            runProperties433.Append(fontSize503);
            runProperties433.Append(fontSizeComplexScript503);
            Text text307 = new Text();
            text307.Text = "Станция метро «Планерная»";

            run433.Append(runProperties433);
            run433.Append(text307);

            paragraph415.Append(paragraphProperties415);
            paragraph415.Append(run433);

            tableCell344.Append(tableCellProperties344);
            tableCell344.Append(paragraph415);

            TableCell tableCell345 = new TableCell();

            TableCellProperties tableCellProperties345 = new TableCellProperties();
            TableCellWidth tableCellWidth345 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan337 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders345 = new TableCellBorders();
            TopBorder topBorder220 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder197 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder182 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder101 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder182 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder101 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders345.Append(topBorder220);
            tableCellBorders345.Append(startBorder197);
            tableCellBorders345.Append(bottomBorder182);
            tableCellBorders345.Append(endBorder101);
            tableCellBorders345.Append(insideHorizontalBorder182);
            tableCellBorders345.Append(insideVerticalBorder101);
            Shading shading537 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin206 = new TableCellMargin();
            StartMargin startMargin198 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin206.Append(startMargin198);
            TableCellVerticalAlignment tableCellVerticalAlignment40 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties345.Append(tableCellWidth345);
            tableCellProperties345.Append(gridSpan337);
            tableCellProperties345.Append(tableCellBorders345);
            tableCellProperties345.Append(shading537);
            tableCellProperties345.Append(tableCellMargin206);
            tableCellProperties345.Append(tableCellVerticalAlignment40);

            Paragraph paragraph416 = new Paragraph();

            ParagraphProperties paragraphProperties416 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId416 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification271 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties416 = new ParagraphMarkRunProperties();

            paragraphProperties416.Append(paragraphStyleId416);
            paragraphProperties416.Append(justification271);
            paragraphProperties416.Append(paragraphMarkRunProperties416);

            Run run434 = new Run();

            RunProperties runProperties434 = new RunProperties();
            FontSize fontSize504 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript504 = new FontSizeComplexScript() { Val = "26" };

            runProperties434.Append(fontSize504);
            runProperties434.Append(fontSizeComplexScript504);
            Text text308 = new Text();
            text308.Text = "Восток (1820)";

            run434.Append(runProperties434);
            run434.Append(text308);

            paragraph416.Append(paragraphProperties416);
            paragraph416.Append(run434);

            tableCell345.Append(tableCellProperties345);
            tableCell345.Append(paragraph416);

            tableRow122.Append(tableRowProperties122);
            tableRow122.Append(tableCell342);
            tableRow122.Append(tableCell343);
            tableRow122.Append(tableCell344);
            tableRow122.Append(tableCell345);

            TableRow tableRow123 = new TableRow();
            TableRowProperties tableRowProperties123 = new TableRowProperties();

            TableCell tableCell346 = new TableCell();

            TableCellProperties tableCellProperties346 = new TableCellProperties();
            TableCellWidth tableCellWidth346 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders346 = new TableCellBorders();
            TopBorder topBorder221 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder198 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder183 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder102 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder183 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder102 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders346.Append(topBorder221);
            tableCellBorders346.Append(startBorder198);
            tableCellBorders346.Append(bottomBorder183);
            tableCellBorders346.Append(endBorder102);
            tableCellBorders346.Append(insideHorizontalBorder183);
            tableCellBorders346.Append(insideVerticalBorder102);
            Shading shading538 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin207 = new TableCellMargin();
            StartMargin startMargin199 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin207.Append(startMargin199);

            tableCellProperties346.Append(tableCellWidth346);
            tableCellProperties346.Append(tableCellBorders346);
            tableCellProperties346.Append(shading538);
            tableCellProperties346.Append(tableCellMargin207);

            Paragraph paragraph417 = new Paragraph();

            ParagraphProperties paragraphProperties417 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId417 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification272 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties417 = new ParagraphMarkRunProperties();

            paragraphProperties417.Append(paragraphStyleId417);
            paragraphProperties417.Append(justification272);
            paragraphProperties417.Append(paragraphMarkRunProperties417);

            Run run435 = new Run();

            RunProperties runProperties435 = new RunProperties();
            RunStyle runStyle34 = new RunStyle() { Val = "FontStyle48" };

            runProperties435.Append(runStyle34);
            Text text309 = new Text();
            text309.Text = "3";

            run435.Append(runProperties435);
            run435.Append(text309);

            paragraph417.Append(paragraphProperties417);
            paragraph417.Append(run435);

            tableCell346.Append(tableCellProperties346);
            tableCell346.Append(paragraph417);

            TableCell tableCell347 = new TableCell();

            TableCellProperties tableCellProperties347 = new TableCellProperties();
            TableCellWidth tableCellWidth347 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan338 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders347 = new TableCellBorders();
            TopBorder topBorder222 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder199 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder184 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder184 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders347.Append(topBorder222);
            tableCellBorders347.Append(startBorder199);
            tableCellBorders347.Append(bottomBorder184);
            tableCellBorders347.Append(insideHorizontalBorder184);
            Shading shading539 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin208 = new TableCellMargin();
            StartMargin startMargin200 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin208.Append(startMargin200);

            tableCellProperties347.Append(tableCellWidth347);
            tableCellProperties347.Append(gridSpan338);
            tableCellProperties347.Append(tableCellBorders347);
            tableCellProperties347.Append(shading539);
            tableCellProperties347.Append(tableCellMargin208);

            Paragraph paragraph418 = new Paragraph();

            ParagraphProperties paragraphProperties418 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId418 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification273 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties418 = new ParagraphMarkRunProperties();

            paragraphProperties418.Append(paragraphStyleId418);
            paragraphProperties418.Append(justification273);
            paragraphProperties418.Append(paragraphMarkRunProperties418);

            Run run436 = new Run();

            RunProperties runProperties436 = new RunProperties();
            RunStyle runStyle35 = new RunStyle() { Val = "FontStyle48" };

            runProperties436.Append(runStyle35);
            Text text310 = new Text();
            text310.Text = "Воздушный (аэропорты, аэровокзалы, военные аэродромы, вертолетные площадки, взлетно-посадочные полосы и прочее)";

            run436.Append(runProperties436);
            run436.Append(text310);

            paragraph418.Append(paragraphProperties418);
            paragraph418.Append(run436);

            tableCell347.Append(tableCellProperties347);
            tableCell347.Append(paragraph418);

            TableCell tableCell348 = new TableCell();

            TableCellProperties tableCellProperties348 = new TableCellProperties();
            TableCellWidth tableCellWidth348 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan339 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders348 = new TableCellBorders();
            TopBorder topBorder223 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder200 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder185 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder185 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders348.Append(topBorder223);
            tableCellBorders348.Append(startBorder200);
            tableCellBorders348.Append(bottomBorder185);
            tableCellBorders348.Append(insideHorizontalBorder185);
            Shading shading540 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin209 = new TableCellMargin();
            StartMargin startMargin201 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin209.Append(startMargin201);

            tableCellProperties348.Append(tableCellWidth348);
            tableCellProperties348.Append(gridSpan339);
            tableCellProperties348.Append(tableCellBorders348);
            tableCellProperties348.Append(shading540);
            tableCellProperties348.Append(tableCellMargin209);

            Paragraph paragraph419 = new Paragraph();

            ParagraphProperties paragraphProperties419 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId419 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification274 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties419 = new ParagraphMarkRunProperties();

            paragraphProperties419.Append(paragraphStyleId419);
            paragraphProperties419.Append(justification274);
            paragraphProperties419.Append(paragraphMarkRunProperties419);

            Run run437 = new Run();
            RunProperties runProperties437 = new RunProperties();
            Text text311 = new Text();
            text311.Text = "ОТСУТСТВУЕТ";

            run437.Append(runProperties437);
            run437.Append(text311);

            paragraph419.Append(paragraphProperties419);
            paragraph419.Append(run437);

            tableCell348.Append(tableCellProperties348);
            tableCell348.Append(paragraph419);

            TableCell tableCell349 = new TableCell();

            TableCellProperties tableCellProperties349 = new TableCellProperties();
            TableCellWidth tableCellWidth349 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan340 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders349 = new TableCellBorders();
            TopBorder topBorder224 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder201 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder186 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder103 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder186 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder103 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders349.Append(topBorder224);
            tableCellBorders349.Append(startBorder201);
            tableCellBorders349.Append(bottomBorder186);
            tableCellBorders349.Append(endBorder103);
            tableCellBorders349.Append(insideHorizontalBorder186);
            tableCellBorders349.Append(insideVerticalBorder103);
            Shading shading541 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin210 = new TableCellMargin();
            StartMargin startMargin202 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin210.Append(startMargin202);

            tableCellProperties349.Append(tableCellWidth349);
            tableCellProperties349.Append(gridSpan340);
            tableCellProperties349.Append(tableCellBorders349);
            tableCellProperties349.Append(shading541);
            tableCellProperties349.Append(tableCellMargin210);

            Paragraph paragraph420 = new Paragraph();

            ParagraphProperties paragraphProperties420 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId420 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification275 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties420 = new ParagraphMarkRunProperties();

            paragraphProperties420.Append(paragraphStyleId420);
            paragraphProperties420.Append(justification275);
            paragraphProperties420.Append(paragraphMarkRunProperties420);

            Run run438 = new Run();
            RunProperties runProperties438 = new RunProperties();

            run438.Append(runProperties438);

            paragraph420.Append(paragraphProperties420);
            paragraph420.Append(run438);

            tableCell349.Append(tableCellProperties349);
            tableCell349.Append(paragraph420);

            tableRow123.Append(tableRowProperties123);
            tableRow123.Append(tableCell346);
            tableRow123.Append(tableCell347);
            tableRow123.Append(tableCell348);
            tableRow123.Append(tableCell349);

            TableRow tableRow124 = new TableRow();
            TableRowProperties tableRowProperties124 = new TableRowProperties();

            TableCell tableCell350 = new TableCell();

            TableCellProperties tableCellProperties350 = new TableCellProperties();
            TableCellWidth tableCellWidth350 = new TableCellWidth() { Width = "10", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders350 = new TableCellBorders();
            TopBorder topBorder225 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder202 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder187 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder104 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder187 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder104 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders350.Append(topBorder225);
            tableCellBorders350.Append(startBorder202);
            tableCellBorders350.Append(bottomBorder187);
            tableCellBorders350.Append(endBorder104);
            tableCellBorders350.Append(insideHorizontalBorder187);
            tableCellBorders350.Append(insideVerticalBorder104);
            Shading shading542 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin211 = new TableCellMargin();
            StartMargin startMargin203 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin211.Append(startMargin203);

            tableCellProperties350.Append(tableCellWidth350);
            tableCellProperties350.Append(tableCellBorders350);
            tableCellProperties350.Append(shading542);
            tableCellProperties350.Append(tableCellMargin211);

            Paragraph paragraph421 = new Paragraph();

            ParagraphProperties paragraphProperties421 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId421 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification276 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties421 = new ParagraphMarkRunProperties();

            paragraphProperties421.Append(paragraphStyleId421);
            paragraphProperties421.Append(justification276);
            paragraphProperties421.Append(paragraphMarkRunProperties421);

            Run run439 = new Run();

            RunProperties runProperties439 = new RunProperties();
            RunStyle runStyle36 = new RunStyle() { Val = "FontStyle48" };

            runProperties439.Append(runStyle36);
            Text text312 = new Text();
            text312.Text = "4";

            run439.Append(runProperties439);
            run439.Append(text312);

            paragraph421.Append(paragraphProperties421);
            paragraph421.Append(run439);

            tableCell350.Append(tableCellProperties350);
            tableCell350.Append(paragraph421);

            TableCell tableCell351 = new TableCell();

            TableCellProperties tableCellProperties351 = new TableCellProperties();
            TableCellWidth tableCellWidth351 = new TableCellWidth() { Width = "3906", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan341 = new GridSpan() { Val = 21 };

            TableCellBorders tableCellBorders351 = new TableCellBorders();
            TopBorder topBorder226 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder203 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder188 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder188 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders351.Append(topBorder226);
            tableCellBorders351.Append(startBorder203);
            tableCellBorders351.Append(bottomBorder188);
            tableCellBorders351.Append(insideHorizontalBorder188);
            Shading shading543 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin212 = new TableCellMargin();
            StartMargin startMargin204 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin212.Append(startMargin204);

            tableCellProperties351.Append(tableCellWidth351);
            tableCellProperties351.Append(gridSpan341);
            tableCellProperties351.Append(tableCellBorders351);
            tableCellProperties351.Append(shading543);
            tableCellProperties351.Append(tableCellMargin212);

            Paragraph paragraph422 = new Paragraph();

            ParagraphProperties paragraphProperties422 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId422 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification277 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties422 = new ParagraphMarkRunProperties();

            paragraphProperties422.Append(paragraphStyleId422);
            paragraphProperties422.Append(justification277);
            paragraphProperties422.Append(paragraphMarkRunProperties422);

            Run run440 = new Run();

            RunProperties runProperties440 = new RunProperties();
            RunStyle runStyle37 = new RunStyle() { Val = "FontStyle48" };

            runProperties440.Append(runStyle37);
            Text text313 = new Text();
            text313.Text = "Водный (морские и речные порты, причалы)";

            run440.Append(runProperties440);
            run440.Append(text313);

            paragraph422.Append(paragraphProperties422);
            paragraph422.Append(run440);

            tableCell351.Append(tableCellProperties351);
            tableCell351.Append(paragraph422);

            TableCell tableCell352 = new TableCell();

            TableCellProperties tableCellProperties352 = new TableCellProperties();
            TableCellWidth tableCellWidth352 = new TableCellWidth() { Width = "3066", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan342 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders352 = new TableCellBorders();
            TopBorder topBorder227 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder204 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder189 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder189 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders352.Append(topBorder227);
            tableCellBorders352.Append(startBorder204);
            tableCellBorders352.Append(bottomBorder189);
            tableCellBorders352.Append(insideHorizontalBorder189);
            Shading shading544 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin213 = new TableCellMargin();
            StartMargin startMargin205 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin213.Append(startMargin205);

            tableCellProperties352.Append(tableCellWidth352);
            tableCellProperties352.Append(gridSpan342);
            tableCellProperties352.Append(tableCellBorders352);
            tableCellProperties352.Append(shading544);
            tableCellProperties352.Append(tableCellMargin213);

            Paragraph paragraph423 = new Paragraph();

            ParagraphProperties paragraphProperties423 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId423 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification278 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties423 = new ParagraphMarkRunProperties();

            paragraphProperties423.Append(paragraphStyleId423);
            paragraphProperties423.Append(justification278);
            paragraphProperties423.Append(paragraphMarkRunProperties423);

            Run run441 = new Run();

            RunProperties runProperties441 = new RunProperties();
            RunStyle runStyle38 = new RunStyle() { Val = "FontStyle48" };

            runProperties441.Append(runStyle38);
            Text text314 = new Text();
            text314.Text = "ОТСУТСТВУЕТ";

            run441.Append(runProperties441);
            run441.Append(text314);

            paragraph423.Append(paragraphProperties423);
            paragraph423.Append(run441);

            tableCell352.Append(tableCellProperties352);
            tableCell352.Append(paragraph423);

            TableCell tableCell353 = new TableCell();

            TableCellProperties tableCellProperties353 = new TableCellProperties();
            TableCellWidth tableCellWidth353 = new TableCellWidth() { Width = "2653", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan343 = new GridSpan() { Val = 13 };

            TableCellBorders tableCellBorders353 = new TableCellBorders();
            TopBorder topBorder228 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder205 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder190 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder105 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder190 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder105 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders353.Append(topBorder228);
            tableCellBorders353.Append(startBorder205);
            tableCellBorders353.Append(bottomBorder190);
            tableCellBorders353.Append(endBorder105);
            tableCellBorders353.Append(insideHorizontalBorder190);
            tableCellBorders353.Append(insideVerticalBorder105);
            Shading shading545 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin214 = new TableCellMargin();
            StartMargin startMargin206 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin214.Append(startMargin206);

            tableCellProperties353.Append(tableCellWidth353);
            tableCellProperties353.Append(gridSpan343);
            tableCellProperties353.Append(tableCellBorders353);
            tableCellProperties353.Append(shading545);
            tableCellProperties353.Append(tableCellMargin214);

            Paragraph paragraph424 = new Paragraph();

            ParagraphProperties paragraphProperties424 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId424 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification279 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties424 = new ParagraphMarkRunProperties();
            RunStyle runStyle39 = new RunStyle() { Val = "FontStyle48" };

            paragraphMarkRunProperties424.Append(runStyle39);

            paragraphProperties424.Append(paragraphStyleId424);
            paragraphProperties424.Append(justification279);
            paragraphProperties424.Append(paragraphMarkRunProperties424);

            Run run442 = new Run();
            RunProperties runProperties442 = new RunProperties();

            run442.Append(runProperties442);

            paragraph424.Append(paragraphProperties424);
            paragraph424.Append(run442);

            tableCell353.Append(tableCellProperties353);
            tableCell353.Append(paragraph424);

            tableRow124.Append(tableRowProperties124);
            tableRow124.Append(tableCell350);
            tableRow124.Append(tableCell351);
            tableRow124.Append(tableCell352);
            tableRow124.Append(tableCell353);

            TableRow tableRow125 = new TableRow();
            TableRowProperties tableRowProperties125 = new TableRowProperties();

            TableCell tableCell354 = new TableCell();

            TableCellProperties tableCellProperties354 = new TableCellProperties();
            TableCellWidth tableCellWidth354 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan344 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders354 = new TableCellBorders();
            TopBorder topBorder229 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders354.Append(topBorder229);
            Shading shading546 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties354.Append(tableCellWidth354);
            tableCellProperties354.Append(gridSpan344);
            tableCellProperties354.Append(tableCellBorders354);
            tableCellProperties354.Append(shading546);

            Paragraph paragraph425 = new Paragraph();

            ParagraphProperties paragraphProperties425 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId425 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties425 = new ParagraphMarkRunProperties();

            paragraphProperties425.Append(paragraphStyleId425);
            paragraphProperties425.Append(paragraphMarkRunProperties425);

            Run run443 = new Run();

            RunProperties runProperties443 = new RunProperties();
            RunStyle runStyle40 = new RunStyle() { Val = "FontStyle48" };

            runProperties443.Append(runStyle40);
            Text text315 = new Text();
            text315.Text = "* по данным сайта maps.yandex.ru";

            run443.Append(runProperties443);
            run443.Append(text315);

            paragraph425.Append(paragraphProperties425);
            paragraph425.Append(run443);

            tableCell354.Append(tableCellProperties354);
            tableCell354.Append(paragraph425);

            tableRow125.Append(tableRowProperties125);
            tableRow125.Append(tableCell354);

            TableRow tableRow126 = new TableRow();
            TableRowProperties tableRowProperties126 = new TableRowProperties();

            TableCell tableCell355 = new TableCell();

            TableCellProperties tableCellProperties355 = new TableCellProperties();
            TableCellWidth tableCellWidth355 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan345 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders355 = new TableCellBorders();
            Shading shading547 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties355.Append(tableCellWidth355);
            tableCellProperties355.Append(gridSpan345);
            tableCellProperties355.Append(tableCellBorders355);
            tableCellProperties355.Append(shading547);

            Paragraph paragraph426 = new Paragraph();

            ParagraphProperties paragraphProperties426 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId426 = new ParagraphStyleId() { Val = "Normal" };

            ParagraphMarkRunProperties paragraphMarkRunProperties426 = new ParagraphMarkRunProperties();
            FontSize fontSize505 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript505 = new FontSizeComplexScript() { Val = "26" };
            Languages languages5 = new Languages() { Val = "en-US" };

            paragraphMarkRunProperties426.Append(fontSize505);
            paragraphMarkRunProperties426.Append(fontSizeComplexScript505);
            paragraphMarkRunProperties426.Append(languages5);

            paragraphProperties426.Append(paragraphStyleId426);
            paragraphProperties426.Append(paragraphMarkRunProperties426);

            Run run444 = new Run();

            RunProperties runProperties444 = new RunProperties();
            FontSize fontSize506 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript506 = new FontSizeComplexScript() { Val = "26" };
            Languages languages6 = new Languages() { Val = "en-US" };

            runProperties444.Append(fontSize506);
            runProperties444.Append(fontSizeComplexScript506);
            runProperties444.Append(languages6);

            run444.Append(runProperties444);

            paragraph426.Append(paragraphProperties426);
            paragraph426.Append(run444);

            tableCell355.Append(tableCellProperties355);
            tableCell355.Append(paragraph426);

            tableRow126.Append(tableRowProperties126);
            tableRow126.Append(tableCell355);

            TableRow tableRow127 = new TableRow();
            TableRowProperties tableRowProperties127 = new TableRowProperties();

            TableCell tableCell356 = new TableCell();

            TableCellProperties tableCellProperties356 = new TableCellProperties();
            TableCellWidth tableCellWidth356 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan346 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders356 = new TableCellBorders();
            Shading shading548 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties356.Append(tableCellWidth356);
            tableCellProperties356.Append(gridSpan346);
            tableCellProperties356.Append(tableCellBorders356);
            tableCellProperties356.Append(shading548);

            Paragraph paragraph427 = new Paragraph();

            ParagraphProperties paragraphProperties427 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId427 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties427 = new ParagraphMarkRunProperties();

            paragraphProperties427.Append(paragraphStyleId427);
            paragraphProperties427.Append(paragraphMarkRunProperties427);

            Run run445 = new Run();

            RunProperties runProperties445 = new RunProperties();
            Bold bold39 = new Bold();
            FontSize fontSize507 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript507 = new FontSizeComplexScript() { Val = "26" };

            runProperties445.Append(bold39);
            runProperties445.Append(fontSize507);
            runProperties445.Append(fontSizeComplexScript507);
            Text text316 = new Text();
            text316.Text = "1.11. Сведения об опасных веществах и материалах, используемых на объекте:";

            run445.Append(runProperties445);
            run445.Append(text316);

            paragraph427.Append(paragraphProperties427);
            paragraph427.Append(run445);

            tableCell356.Append(tableCellProperties356);
            tableCell356.Append(paragraph427);

            tableRow127.Append(tableRowProperties127);
            tableRow127.Append(tableCell356);

            TableRow tableRow128 = new TableRow();
            TableRowProperties tableRowProperties128 = new TableRowProperties();

            TableCell tableCell357 = new TableCell();

            TableCellProperties tableCellProperties357 = new TableCellProperties();
            TableCellWidth tableCellWidth357 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan347 = new GridSpan() { Val = 50 };
            TableCellBorders tableCellBorders357 = new TableCellBorders();
            Shading shading549 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties357.Append(tableCellWidth357);
            tableCellProperties357.Append(gridSpan347);
            tableCellProperties357.Append(tableCellBorders357);
            tableCellProperties357.Append(shading549);

            Paragraph paragraph428 = new Paragraph();

            ParagraphProperties paragraphProperties428 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId428 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification280 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties428 = new ParagraphMarkRunProperties();

            paragraphProperties428.Append(paragraphStyleId428);
            paragraphProperties428.Append(justification280);
            paragraphProperties428.Append(paragraphMarkRunProperties428);

            Run run446 = new Run();

            RunProperties runProperties446 = new RunProperties();
            FontSize fontSize508 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript508 = new FontSizeComplexScript() { Val = "26" };

            runProperties446.Append(fontSize508);
            runProperties446.Append(fontSizeComplexScript508);
            Text text317 = new Text();
            text317.Text = "Пожаро- и взрывоопасные вещества и материалы";

            run446.Append(runProperties446);
            run446.Append(text317);

            paragraph428.Append(paragraphProperties428);
            paragraph428.Append(run446);

            tableCell357.Append(tableCellProperties357);
            tableCell357.Append(paragraph428);

            tableRow128.Append(tableRowProperties128);
            tableRow128.Append(tableCell357);

            TableRow tableRow129 = new TableRow();
            TableRowProperties tableRowProperties129 = new TableRowProperties();

            TableCell tableCell358 = new TableCell();

            TableCellProperties tableCellProperties358 = new TableCellProperties();
            TableCellWidth tableCellWidth358 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan348 = new GridSpan() { Val = 17 };

            TableCellBorders tableCellBorders358 = new TableCellBorders();
            TopBorder topBorder230 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder206 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder191 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder106 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder191 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder106 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders358.Append(topBorder230);
            tableCellBorders358.Append(startBorder206);
            tableCellBorders358.Append(bottomBorder191);
            tableCellBorders358.Append(endBorder106);
            tableCellBorders358.Append(insideHorizontalBorder191);
            tableCellBorders358.Append(insideVerticalBorder106);
            Shading shading550 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin215 = new TableCellMargin();
            StartMargin startMargin207 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin215.Append(startMargin207);
            TableCellVerticalAlignment tableCellVerticalAlignment41 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties358.Append(tableCellWidth358);
            tableCellProperties358.Append(gridSpan348);
            tableCellProperties358.Append(tableCellBorders358);
            tableCellProperties358.Append(shading550);
            tableCellProperties358.Append(tableCellMargin215);
            tableCellProperties358.Append(tableCellVerticalAlignment41);

            Paragraph paragraph429 = new Paragraph();

            ParagraphProperties paragraphProperties429 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId429 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification281 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties429 = new ParagraphMarkRunProperties();

            paragraphProperties429.Append(paragraphStyleId429);
            paragraphProperties429.Append(justification281);
            paragraphProperties429.Append(paragraphMarkRunProperties429);

            Run run447 = new Run();

            RunProperties runProperties447 = new RunProperties();
            FontSize fontSize509 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript509 = new FontSizeComplexScript() { Val = "26" };

            runProperties447.Append(fontSize509);
            runProperties447.Append(fontSizeComplexScript509);
            Text text318 = new Text();
            text318.Text = "Тип";

            run447.Append(runProperties447);
            run447.Append(text318);

            paragraph429.Append(paragraphProperties429);
            paragraph429.Append(run447);

            tableCell358.Append(tableCellProperties358);
            tableCell358.Append(paragraph429);

            TableCell tableCell359 = new TableCell();

            TableCellProperties tableCellProperties359 = new TableCellProperties();
            TableCellWidth tableCellWidth359 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan349 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders359 = new TableCellBorders();
            TopBorder topBorder231 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder207 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder192 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder107 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder192 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder107 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders359.Append(topBorder231);
            tableCellBorders359.Append(startBorder207);
            tableCellBorders359.Append(bottomBorder192);
            tableCellBorders359.Append(endBorder107);
            tableCellBorders359.Append(insideHorizontalBorder192);
            tableCellBorders359.Append(insideVerticalBorder107);
            Shading shading551 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin216 = new TableCellMargin();
            StartMargin startMargin208 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin216.Append(startMargin208);
            TableCellVerticalAlignment tableCellVerticalAlignment42 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties359.Append(tableCellWidth359);
            tableCellProperties359.Append(gridSpan349);
            tableCellProperties359.Append(tableCellBorders359);
            tableCellProperties359.Append(shading551);
            tableCellProperties359.Append(tableCellMargin216);
            tableCellProperties359.Append(tableCellVerticalAlignment42);

            Paragraph paragraph430 = new Paragraph();

            ParagraphProperties paragraphProperties430 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId430 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification282 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties430 = new ParagraphMarkRunProperties();

            paragraphProperties430.Append(paragraphStyleId430);
            paragraphProperties430.Append(justification282);
            paragraphProperties430.Append(paragraphMarkRunProperties430);

            Run run448 = new Run();

            RunProperties runProperties448 = new RunProperties();
            FontSize fontSize510 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript510 = new FontSizeComplexScript() { Val = "26" };

            runProperties448.Append(fontSize510);
            runProperties448.Append(fontSizeComplexScript510);
            Text text319 = new Text();
            text319.Text = "Кол-во, кг";

            run448.Append(runProperties448);
            run448.Append(text319);

            paragraph430.Append(paragraphProperties430);
            paragraph430.Append(run448);

            tableCell359.Append(tableCellProperties359);
            tableCell359.Append(paragraph430);

            TableCell tableCell360 = new TableCell();

            TableCellProperties tableCellProperties360 = new TableCellProperties();
            TableCellWidth tableCellWidth360 = new TableCellWidth() { Width = "2905", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan350 = new GridSpan() { Val = 19 };

            TableCellBorders tableCellBorders360 = new TableCellBorders();
            TopBorder topBorder232 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder208 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder193 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder193 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders360.Append(topBorder232);
            tableCellBorders360.Append(startBorder208);
            tableCellBorders360.Append(bottomBorder193);
            tableCellBorders360.Append(insideHorizontalBorder193);
            Shading shading552 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin217 = new TableCellMargin();
            StartMargin startMargin209 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin217.Append(startMargin209);
            TableCellVerticalAlignment tableCellVerticalAlignment43 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties360.Append(tableCellWidth360);
            tableCellProperties360.Append(gridSpan350);
            tableCellProperties360.Append(tableCellBorders360);
            tableCellProperties360.Append(shading552);
            tableCellProperties360.Append(tableCellMargin217);
            tableCellProperties360.Append(tableCellVerticalAlignment43);

            Paragraph paragraph431 = new Paragraph();

            ParagraphProperties paragraphProperties431 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId431 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification283 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties431 = new ParagraphMarkRunProperties();

            paragraphProperties431.Append(paragraphStyleId431);
            paragraphProperties431.Append(justification283);
            paragraphProperties431.Append(paragraphMarkRunProperties431);

            Run run449 = new Run();

            RunProperties runProperties449 = new RunProperties();
            FontSize fontSize511 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript511 = new FontSizeComplexScript() { Val = "26" };

            runProperties449.Append(fontSize511);
            runProperties449.Append(fontSizeComplexScript511);
            Text text320 = new Text();
            text320.Text = "Наименование элемента объекта";

            run449.Append(runProperties449);
            run449.Append(text320);

            paragraph431.Append(paragraphProperties431);
            paragraph431.Append(run449);

            tableCell360.Append(tableCellProperties360);
            tableCell360.Append(paragraph431);

            TableCell tableCell361 = new TableCell();

            TableCellProperties tableCellProperties361 = new TableCellProperties();
            TableCellWidth tableCellWidth361 = new TableCellWidth() { Width = "1965", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan351 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders361 = new TableCellBorders();
            TopBorder topBorder233 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder209 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder194 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder108 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder194 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder108 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders361.Append(topBorder233);
            tableCellBorders361.Append(startBorder209);
            tableCellBorders361.Append(bottomBorder194);
            tableCellBorders361.Append(endBorder108);
            tableCellBorders361.Append(insideHorizontalBorder194);
            tableCellBorders361.Append(insideVerticalBorder108);
            Shading shading553 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin218 = new TableCellMargin();
            StartMargin startMargin210 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin218.Append(startMargin210);
            TableCellVerticalAlignment tableCellVerticalAlignment44 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties361.Append(tableCellWidth361);
            tableCellProperties361.Append(gridSpan351);
            tableCellProperties361.Append(tableCellBorders361);
            tableCellProperties361.Append(shading553);
            tableCellProperties361.Append(tableCellMargin218);
            tableCellProperties361.Append(tableCellVerticalAlignment44);

            Paragraph paragraph432 = new Paragraph();

            ParagraphProperties paragraphProperties432 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId432 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification284 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties432 = new ParagraphMarkRunProperties();

            paragraphProperties432.Append(paragraphStyleId432);
            paragraphProperties432.Append(justification284);
            paragraphProperties432.Append(paragraphMarkRunProperties432);

            Run run450 = new Run();

            RunProperties runProperties450 = new RunProperties();
            FontSize fontSize512 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript512 = new FontSizeComplexScript() { Val = "26" };

            runProperties450.Append(fontSize512);
            runProperties450.Append(fontSizeComplexScript512);
            Text text321 = new Text();
            text321.Text = "Класс опасности";

            run450.Append(runProperties450);
            run450.Append(text321);

            paragraph432.Append(paragraphProperties432);
            paragraph432.Append(run450);

            tableCell361.Append(tableCellProperties361);
            tableCell361.Append(paragraph432);

            tableRow129.Append(tableRowProperties129);
            tableRow129.Append(tableCell358);
            tableRow129.Append(tableCell359);
            tableRow129.Append(tableCell360);
            tableRow129.Append(tableCell361);

            TableRow tableRow130 = new TableRow();
            TableRowProperties tableRowProperties130 = new TableRowProperties();

            TableCell tableCell362 = new TableCell();

            TableCellProperties tableCellProperties362 = new TableCellProperties();
            TableCellWidth tableCellWidth362 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan352 = new GridSpan() { Val = 17 };

            TableCellBorders tableCellBorders362 = new TableCellBorders();
            TopBorder topBorder234 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder210 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder195 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder109 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder195 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder109 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders362.Append(topBorder234);
            tableCellBorders362.Append(startBorder210);
            tableCellBorders362.Append(bottomBorder195);
            tableCellBorders362.Append(endBorder109);
            tableCellBorders362.Append(insideHorizontalBorder195);
            tableCellBorders362.Append(insideVerticalBorder109);
            Shading shading554 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin219 = new TableCellMargin();
            StartMargin startMargin211 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin219.Append(startMargin211);

            tableCellProperties362.Append(tableCellWidth362);
            tableCellProperties362.Append(gridSpan352);
            tableCellProperties362.Append(tableCellBorders362);
            tableCellProperties362.Append(shading554);
            tableCellProperties362.Append(tableCellMargin219);

            Paragraph paragraph433 = new Paragraph();

            ParagraphProperties paragraphProperties433 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId433 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification285 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties433 = new ParagraphMarkRunProperties();

            paragraphProperties433.Append(paragraphStyleId433);
            paragraphProperties433.Append(justification285);
            paragraphProperties433.Append(paragraphMarkRunProperties433);

            Run run451 = new Run();

            RunProperties runProperties451 = new RunProperties();
            FontSize fontSize513 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript513 = new FontSizeComplexScript() { Val = "26" };

            runProperties451.Append(fontSize513);
            runProperties451.Append(fontSizeComplexScript513);
            Text text322 = new Text();
            text322.Text = "1";

            run451.Append(runProperties451);
            run451.Append(text322);

            paragraph433.Append(paragraphProperties433);
            paragraph433.Append(run451);

            tableCell362.Append(tableCellProperties362);
            tableCell362.Append(paragraph433);

            TableCell tableCell363 = new TableCell();

            TableCellProperties tableCellProperties363 = new TableCellProperties();
            TableCellWidth tableCellWidth363 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan353 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders363 = new TableCellBorders();
            TopBorder topBorder235 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder211 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder196 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder196 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders363.Append(topBorder235);
            tableCellBorders363.Append(startBorder211);
            tableCellBorders363.Append(bottomBorder196);
            tableCellBorders363.Append(insideHorizontalBorder196);
            Shading shading555 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin220 = new TableCellMargin();
            StartMargin startMargin212 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin220.Append(startMargin212);

            tableCellProperties363.Append(tableCellWidth363);
            tableCellProperties363.Append(gridSpan353);
            tableCellProperties363.Append(tableCellBorders363);
            tableCellProperties363.Append(shading555);
            tableCellProperties363.Append(tableCellMargin220);

            Paragraph paragraph434 = new Paragraph();

            ParagraphProperties paragraphProperties434 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId434 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification286 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties434 = new ParagraphMarkRunProperties();

            paragraphProperties434.Append(paragraphStyleId434);
            paragraphProperties434.Append(justification286);
            paragraphProperties434.Append(paragraphMarkRunProperties434);

            Run run452 = new Run();

            RunProperties runProperties452 = new RunProperties();
            FontSize fontSize514 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript514 = new FontSizeComplexScript() { Val = "26" };

            runProperties452.Append(fontSize514);
            runProperties452.Append(fontSizeComplexScript514);
            Text text323 = new Text();
            text323.Text = "2";

            run452.Append(runProperties452);
            run452.Append(text323);

            paragraph434.Append(paragraphProperties434);
            paragraph434.Append(run452);

            tableCell363.Append(tableCellProperties363);
            tableCell363.Append(paragraph434);

            TableCell tableCell364 = new TableCell();

            TableCellProperties tableCellProperties364 = new TableCellProperties();
            TableCellWidth tableCellWidth364 = new TableCellWidth() { Width = "2905", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan354 = new GridSpan() { Val = 19 };

            TableCellBorders tableCellBorders364 = new TableCellBorders();
            TopBorder topBorder236 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder212 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder197 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder197 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders364.Append(topBorder236);
            tableCellBorders364.Append(startBorder212);
            tableCellBorders364.Append(bottomBorder197);
            tableCellBorders364.Append(insideHorizontalBorder197);
            Shading shading556 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin221 = new TableCellMargin();
            StartMargin startMargin213 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin221.Append(startMargin213);

            tableCellProperties364.Append(tableCellWidth364);
            tableCellProperties364.Append(gridSpan354);
            tableCellProperties364.Append(tableCellBorders364);
            tableCellProperties364.Append(shading556);
            tableCellProperties364.Append(tableCellMargin221);

            Paragraph paragraph435 = new Paragraph();

            ParagraphProperties paragraphProperties435 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId435 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification287 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties435 = new ParagraphMarkRunProperties();

            paragraphProperties435.Append(paragraphStyleId435);
            paragraphProperties435.Append(justification287);
            paragraphProperties435.Append(paragraphMarkRunProperties435);

            Run run453 = new Run();

            RunProperties runProperties453 = new RunProperties();
            FontSize fontSize515 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript515 = new FontSizeComplexScript() { Val = "26" };

            runProperties453.Append(fontSize515);
            runProperties453.Append(fontSizeComplexScript515);
            Text text324 = new Text();
            text324.Text = "3";

            run453.Append(runProperties453);
            run453.Append(text324);

            paragraph435.Append(paragraphProperties435);
            paragraph435.Append(run453);

            tableCell364.Append(tableCellProperties364);
            tableCell364.Append(paragraph435);

            TableCell tableCell365 = new TableCell();

            TableCellProperties tableCellProperties365 = new TableCellProperties();
            TableCellWidth tableCellWidth365 = new TableCellWidth() { Width = "1965", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan355 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders365 = new TableCellBorders();
            TopBorder topBorder237 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder213 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder198 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder110 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder198 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder110 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders365.Append(topBorder237);
            tableCellBorders365.Append(startBorder213);
            tableCellBorders365.Append(bottomBorder198);
            tableCellBorders365.Append(endBorder110);
            tableCellBorders365.Append(insideHorizontalBorder198);
            tableCellBorders365.Append(insideVerticalBorder110);
            Shading shading557 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin222 = new TableCellMargin();
            StartMargin startMargin214 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin222.Append(startMargin214);

            tableCellProperties365.Append(tableCellWidth365);
            tableCellProperties365.Append(gridSpan355);
            tableCellProperties365.Append(tableCellBorders365);
            tableCellProperties365.Append(shading557);
            tableCellProperties365.Append(tableCellMargin222);

            Paragraph paragraph436 = new Paragraph();

            ParagraphProperties paragraphProperties436 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId436 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification288 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties436 = new ParagraphMarkRunProperties();

            paragraphProperties436.Append(paragraphStyleId436);
            paragraphProperties436.Append(justification288);
            paragraphProperties436.Append(paragraphMarkRunProperties436);

            Run run454 = new Run();

            RunProperties runProperties454 = new RunProperties();
            FontSize fontSize516 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript516 = new FontSizeComplexScript() { Val = "26" };

            runProperties454.Append(fontSize516);
            runProperties454.Append(fontSizeComplexScript516);
            Text text325 = new Text();
            text325.Text = "4";

            run454.Append(runProperties454);
            run454.Append(text325);

            paragraph436.Append(paragraphProperties436);
            paragraph436.Append(run454);

            tableCell365.Append(tableCellProperties365);
            tableCell365.Append(paragraph436);

            tableRow130.Append(tableRowProperties130);
            tableRow130.Append(tableCell362);
            tableRow130.Append(tableCell363);
            tableRow130.Append(tableCell364);
            tableRow130.Append(tableCell365);

            TableRow tableRow131 = new TableRow();
            TableRowProperties tableRowProperties131 = new TableRowProperties();

            TableCell tableCell366 = new TableCell();

            TableCellProperties tableCellProperties366 = new TableCellProperties();
            TableCellWidth tableCellWidth366 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan356 = new GridSpan() { Val = 17 };

            TableCellBorders tableCellBorders366 = new TableCellBorders();
            TopBorder topBorder238 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder214 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder199 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder111 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder199 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder111 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders366.Append(topBorder238);
            tableCellBorders366.Append(startBorder214);
            tableCellBorders366.Append(bottomBorder199);
            tableCellBorders366.Append(endBorder111);
            tableCellBorders366.Append(insideHorizontalBorder199);
            tableCellBorders366.Append(insideVerticalBorder111);
            Shading shading558 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin223 = new TableCellMargin();
            StartMargin startMargin215 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin223.Append(startMargin215);

            tableCellProperties366.Append(tableCellWidth366);
            tableCellProperties366.Append(gridSpan356);
            tableCellProperties366.Append(tableCellBorders366);
            tableCellProperties366.Append(shading558);
            tableCellProperties366.Append(tableCellMargin223);

            Paragraph paragraph437 = new Paragraph();

            ParagraphProperties paragraphProperties437 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId437 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification289 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties437 = new ParagraphMarkRunProperties();

            paragraphProperties437.Append(paragraphStyleId437);
            paragraphProperties437.Append(justification289);
            paragraphProperties437.Append(paragraphMarkRunProperties437);

            Run run455 = new Run();

            RunProperties runProperties455 = new RunProperties();
            RunStyle runStyle41 = new RunStyle() { Val = "FontStyle48" };

            runProperties455.Append(runStyle41);
            Text text326 = new Text();
            text326.Text = "Природный газ метан (СН4)";

            run455.Append(runProperties455);
            run455.Append(text326);

            paragraph437.Append(paragraphProperties437);
            paragraph437.Append(run455);

            tableCell366.Append(tableCellProperties366);
            tableCell366.Append(paragraph437);

            TableCell tableCell367 = new TableCell();

            TableCellProperties tableCellProperties367 = new TableCellProperties();
            TableCellWidth tableCellWidth367 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan357 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders367 = new TableCellBorders();
            TopBorder topBorder239 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder215 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder200 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder200 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders367.Append(topBorder239);
            tableCellBorders367.Append(startBorder215);
            tableCellBorders367.Append(bottomBorder200);
            tableCellBorders367.Append(insideHorizontalBorder200);
            Shading shading559 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin224 = new TableCellMargin();
            StartMargin startMargin216 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin224.Append(startMargin216);

            tableCellProperties367.Append(tableCellWidth367);
            tableCellProperties367.Append(gridSpan357);
            tableCellProperties367.Append(tableCellBorders367);
            tableCellProperties367.Append(shading559);
            tableCellProperties367.Append(tableCellMargin224);

            Paragraph paragraph438 = new Paragraph();

            ParagraphProperties paragraphProperties438 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId438 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification290 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties438 = new ParagraphMarkRunProperties();

            paragraphProperties438.Append(paragraphStyleId438);
            paragraphProperties438.Append(justification290);
            paragraphProperties438.Append(paragraphMarkRunProperties438);

            Run run456 = new Run();

            RunProperties runProperties456 = new RunProperties();
            RunStyle runStyle42 = new RunStyle() { Val = "FontStyle48" };

            runProperties456.Append(runStyle42);
            Text text327 = new Text();
            text327.Text = "7080 м";

            run456.Append(runProperties456);
            run456.Append(text327);

            Run run457 = new Run();

            RunProperties runProperties457 = new RunProperties();
            RunStyle runStyle43 = new RunStyle() { Val = "FontStyle48" };
            VerticalTextAlignment verticalTextAlignment4 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties457.Append(runStyle43);
            runProperties457.Append(verticalTextAlignment4);
            Text text328 = new Text();
            text328.Text = "2";

            run457.Append(runProperties457);
            run457.Append(text328);

            Run run458 = new Run();

            RunProperties runProperties458 = new RunProperties();
            RunStyle runStyle44 = new RunStyle() { Val = "FontStyle48" };
            Languages languages7 = new Languages() { Val = "en-US" };

            runProperties458.Append(runStyle44);
            runProperties458.Append(languages7);
            Text text329 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text329.Text = " ";

            run458.Append(runProperties458);
            run458.Append(text329);

            Run run459 = new Run();

            RunProperties runProperties459 = new RunProperties();
            RunStyle runStyle45 = new RunStyle() { Val = "FontStyle48" };

            runProperties459.Append(runStyle45);
            Text text330 = new Text();
            text330.Text = "в сутки";

            run459.Append(runProperties459);
            run459.Append(text330);

            paragraph438.Append(paragraphProperties438);
            paragraph438.Append(run456);
            paragraph438.Append(run457);
            paragraph438.Append(run458);
            paragraph438.Append(run459);

            tableCell367.Append(tableCellProperties367);
            tableCell367.Append(paragraph438);

            TableCell tableCell368 = new TableCell();

            TableCellProperties tableCellProperties368 = new TableCellProperties();
            TableCellWidth tableCellWidth368 = new TableCellWidth() { Width = "2905", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan358 = new GridSpan() { Val = 19 };

            TableCellBorders tableCellBorders368 = new TableCellBorders();
            TopBorder topBorder240 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder216 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder201 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder201 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders368.Append(topBorder240);
            tableCellBorders368.Append(startBorder216);
            tableCellBorders368.Append(bottomBorder201);
            tableCellBorders368.Append(insideHorizontalBorder201);
            Shading shading560 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin225 = new TableCellMargin();
            StartMargin startMargin217 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin225.Append(startMargin217);

            tableCellProperties368.Append(tableCellWidth368);
            tableCellProperties368.Append(gridSpan358);
            tableCellProperties368.Append(tableCellBorders368);
            tableCellProperties368.Append(shading560);
            tableCellProperties368.Append(tableCellMargin225);

            Paragraph paragraph439 = new Paragraph();

            ParagraphProperties paragraphProperties439 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId439 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification291 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties439 = new ParagraphMarkRunProperties();

            paragraphProperties439.Append(paragraphStyleId439);
            paragraphProperties439.Append(justification291);
            paragraphProperties439.Append(paragraphMarkRunProperties439);

            Run run460 = new Run();

            RunProperties runProperties460 = new RunProperties();
            RunStyle runStyle46 = new RunStyle() { Val = "FontStyle48" };

            runProperties460.Append(runStyle46);
            Text text331 = new Text();
            text331.Text = "Здание РТС";

            run460.Append(runProperties460);
            run460.Append(text331);

            paragraph439.Append(paragraphProperties439);
            paragraph439.Append(run460);

            tableCell368.Append(tableCellProperties368);
            tableCell368.Append(paragraph439);

            TableCell tableCell369 = new TableCell();

            TableCellProperties tableCellProperties369 = new TableCellProperties();
            TableCellWidth tableCellWidth369 = new TableCellWidth() { Width = "1965", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan359 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders369 = new TableCellBorders();
            TopBorder topBorder241 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder217 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder202 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder112 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder202 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder112 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders369.Append(topBorder241);
            tableCellBorders369.Append(startBorder217);
            tableCellBorders369.Append(bottomBorder202);
            tableCellBorders369.Append(endBorder112);
            tableCellBorders369.Append(insideHorizontalBorder202);
            tableCellBorders369.Append(insideVerticalBorder112);
            Shading shading561 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin226 = new TableCellMargin();
            StartMargin startMargin218 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin226.Append(startMargin218);

            tableCellProperties369.Append(tableCellWidth369);
            tableCellProperties369.Append(gridSpan359);
            tableCellProperties369.Append(tableCellBorders369);
            tableCellProperties369.Append(shading561);
            tableCellProperties369.Append(tableCellMargin226);

            Paragraph paragraph440 = new Paragraph();

            ParagraphProperties paragraphProperties440 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId440 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification292 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties440 = new ParagraphMarkRunProperties();

            paragraphProperties440.Append(paragraphStyleId440);
            paragraphProperties440.Append(justification292);
            paragraphProperties440.Append(paragraphMarkRunProperties440);

            Run run461 = new Run();

            RunProperties runProperties461 = new RunProperties();
            RunStyle runStyle47 = new RunStyle() { Val = "FontStyle48" };

            runProperties461.Append(runStyle47);
            Text text332 = new Text();
            text332.Text = "IV класс";

            run461.Append(runProperties461);
            run461.Append(text332);

            paragraph440.Append(paragraphProperties440);
            paragraph440.Append(run461);

            tableCell369.Append(tableCellProperties369);
            tableCell369.Append(paragraph440);

            tableRow131.Append(tableRowProperties131);
            tableRow131.Append(tableCell366);
            tableRow131.Append(tableCell367);
            tableRow131.Append(tableCell368);
            tableRow131.Append(tableCell369);

            TableRow tableRow132 = new TableRow();
            TableRowProperties tableRowProperties132 = new TableRowProperties();

            TableCell tableCell370 = new TableCell();

            TableCellProperties tableCellProperties370 = new TableCellProperties();
            TableCellWidth tableCellWidth370 = new TableCellWidth() { Width = "3121", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan360 = new GridSpan() { Val = 17 };

            TableCellBorders tableCellBorders370 = new TableCellBorders();
            TopBorder topBorder242 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder218 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder203 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder113 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder203 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder113 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders370.Append(topBorder242);
            tableCellBorders370.Append(startBorder218);
            tableCellBorders370.Append(bottomBorder203);
            tableCellBorders370.Append(endBorder113);
            tableCellBorders370.Append(insideHorizontalBorder203);
            tableCellBorders370.Append(insideVerticalBorder113);
            Shading shading562 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin227 = new TableCellMargin();
            StartMargin startMargin219 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin227.Append(startMargin219);

            tableCellProperties370.Append(tableCellWidth370);
            tableCellProperties370.Append(gridSpan360);
            tableCellProperties370.Append(tableCellBorders370);
            tableCellProperties370.Append(shading562);
            tableCellProperties370.Append(tableCellMargin227);

            Paragraph paragraph441 = new Paragraph();

            ParagraphProperties paragraphProperties441 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId441 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification293 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties441 = new ParagraphMarkRunProperties();

            paragraphProperties441.Append(paragraphStyleId441);
            paragraphProperties441.Append(justification293);
            paragraphProperties441.Append(paragraphMarkRunProperties441);

            Run run462 = new Run();

            RunProperties runProperties462 = new RunProperties();
            RunStyle runStyle48 = new RunStyle() { Val = "FontStyle48" };

            runProperties462.Append(runStyle48);
            Text text333 = new Text();
            text333.Text = "Природный газ метан (СН4)";

            run462.Append(runProperties462);
            run462.Append(text333);

            paragraph441.Append(paragraphProperties441);
            paragraph441.Append(run462);

            tableCell370.Append(tableCellProperties370);
            tableCell370.Append(paragraph441);

            TableCell tableCell371 = new TableCell();

            TableCellProperties tableCellProperties371 = new TableCellProperties();
            TableCellWidth tableCellWidth371 = new TableCellWidth() { Width = "1644", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan361 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders371 = new TableCellBorders();
            TopBorder topBorder243 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder219 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder204 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder204 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders371.Append(topBorder243);
            tableCellBorders371.Append(startBorder219);
            tableCellBorders371.Append(bottomBorder204);
            tableCellBorders371.Append(insideHorizontalBorder204);
            Shading shading563 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin228 = new TableCellMargin();
            StartMargin startMargin220 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin228.Append(startMargin220);

            tableCellProperties371.Append(tableCellWidth371);
            tableCellProperties371.Append(gridSpan361);
            tableCellProperties371.Append(tableCellBorders371);
            tableCellProperties371.Append(shading563);
            tableCellProperties371.Append(tableCellMargin228);

            Paragraph paragraph442 = new Paragraph();

            ParagraphProperties paragraphProperties442 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId442 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification294 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties442 = new ParagraphMarkRunProperties();

            paragraphProperties442.Append(paragraphStyleId442);
            paragraphProperties442.Append(justification294);
            paragraphProperties442.Append(paragraphMarkRunProperties442);

            Run run463 = new Run();

            RunProperties runProperties463 = new RunProperties();
            RunStyle runStyle49 = new RunStyle() { Val = "FontStyle48" };

            runProperties463.Append(runStyle49);
            Text text334 = new Text();
            text334.Text = "7080 м";

            run463.Append(runProperties463);
            run463.Append(text334);

            Run run464 = new Run();

            RunProperties runProperties464 = new RunProperties();
            RunStyle runStyle50 = new RunStyle() { Val = "FontStyle48" };
            VerticalTextAlignment verticalTextAlignment5 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties464.Append(runStyle50);
            runProperties464.Append(verticalTextAlignment5);
            Text text335 = new Text();
            text335.Text = "2";

            run464.Append(runProperties464);
            run464.Append(text335);

            Run run465 = new Run();

            RunProperties runProperties465 = new RunProperties();
            RunStyle runStyle51 = new RunStyle() { Val = "FontStyle48" };

            runProperties465.Append(runStyle51);
            Text text336 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text336.Text = " в сутки";

            run465.Append(runProperties465);
            run465.Append(text336);

            paragraph442.Append(paragraphProperties442);
            paragraph442.Append(run463);
            paragraph442.Append(run464);
            paragraph442.Append(run465);

            tableCell371.Append(tableCellProperties371);
            tableCell371.Append(paragraph442);

            TableCell tableCell372 = new TableCell();

            TableCellProperties tableCellProperties372 = new TableCellProperties();
            TableCellWidth tableCellWidth372 = new TableCellWidth() { Width = "2905", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan362 = new GridSpan() { Val = 19 };

            TableCellBorders tableCellBorders372 = new TableCellBorders();
            TopBorder topBorder244 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder220 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder205 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder205 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders372.Append(topBorder244);
            tableCellBorders372.Append(startBorder220);
            tableCellBorders372.Append(bottomBorder205);
            tableCellBorders372.Append(insideHorizontalBorder205);
            Shading shading564 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin229 = new TableCellMargin();
            StartMargin startMargin221 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin229.Append(startMargin221);

            tableCellProperties372.Append(tableCellWidth372);
            tableCellProperties372.Append(gridSpan362);
            tableCellProperties372.Append(tableCellBorders372);
            tableCellProperties372.Append(shading564);
            tableCellProperties372.Append(tableCellMargin229);

            Paragraph paragraph443 = new Paragraph();

            ParagraphProperties paragraphProperties443 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId443 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification295 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties443 = new ParagraphMarkRunProperties();

            paragraphProperties443.Append(paragraphStyleId443);
            paragraphProperties443.Append(justification295);
            paragraphProperties443.Append(paragraphMarkRunProperties443);

            Run run466 = new Run();

            RunProperties runProperties466 = new RunProperties();
            RunStyle runStyle52 = new RunStyle() { Val = "FontStyle48" };

            runProperties466.Append(runStyle52);
            Text text337 = new Text();
            text337.Text = "Здание ГРП";

            run466.Append(runProperties466);
            run466.Append(text337);

            paragraph443.Append(paragraphProperties443);
            paragraph443.Append(run466);

            tableCell372.Append(tableCellProperties372);
            tableCell372.Append(paragraph443);

            TableCell tableCell373 = new TableCell();

            TableCellProperties tableCellProperties373 = new TableCellProperties();
            TableCellWidth tableCellWidth373 = new TableCellWidth() { Width = "1965", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan363 = new GridSpan() { Val = 6 };

            TableCellBorders tableCellBorders373 = new TableCellBorders();
            TopBorder topBorder245 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder221 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder206 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder114 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder206 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder114 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders373.Append(topBorder245);
            tableCellBorders373.Append(startBorder221);
            tableCellBorders373.Append(bottomBorder206);
            tableCellBorders373.Append(endBorder114);
            tableCellBorders373.Append(insideHorizontalBorder206);
            tableCellBorders373.Append(insideVerticalBorder114);
            Shading shading565 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin230 = new TableCellMargin();
            StartMargin startMargin222 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin230.Append(startMargin222);

            tableCellProperties373.Append(tableCellWidth373);
            tableCellProperties373.Append(gridSpan363);
            tableCellProperties373.Append(tableCellBorders373);
            tableCellProperties373.Append(shading565);
            tableCellProperties373.Append(tableCellMargin230);

            Paragraph paragraph444 = new Paragraph();

            ParagraphProperties paragraphProperties444 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId444 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification296 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties444 = new ParagraphMarkRunProperties();

            paragraphProperties444.Append(paragraphStyleId444);
            paragraphProperties444.Append(justification296);
            paragraphProperties444.Append(paragraphMarkRunProperties444);

            Run run467 = new Run();

            RunProperties runProperties467 = new RunProperties();
            RunStyle runStyle53 = new RunStyle() { Val = "FontStyle48" };

            runProperties467.Append(runStyle53);
            Text text338 = new Text();
            text338.Text = "IV класс";

            run467.Append(runProperties467);
            run467.Append(text338);

            paragraph444.Append(paragraphProperties444);
            paragraph444.Append(run467);

            tableCell373.Append(tableCellProperties373);
            tableCell373.Append(paragraph444);

            tableRow132.Append(tableRowProperties132);
            tableRow132.Append(tableCell370);
            tableRow132.Append(tableCell371);
            tableRow132.Append(tableCell372);
            tableRow132.Append(tableCell373);

            TableRow tableRow133 = new TableRow();
            TableRowProperties tableRowProperties133 = new TableRowProperties();

            TableCell tableCell374 = new TableCell();

            TableCellProperties tableCellProperties374 = new TableCellProperties();
            TableCellWidth tableCellWidth374 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan364 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders374 = new TableCellBorders();
            TopBorder topBorder246 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders374.Append(topBorder246);
            Shading shading566 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties374.Append(tableCellWidth374);
            tableCellProperties374.Append(gridSpan364);
            tableCellProperties374.Append(tableCellBorders374);
            tableCellProperties374.Append(shading566);

            Paragraph paragraph445 = new Paragraph();

            ParagraphProperties paragraphProperties445 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId445 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification297 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties445 = new ParagraphMarkRunProperties();
            FontSize fontSize517 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript517 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties445.Append(fontSize517);
            paragraphMarkRunProperties445.Append(fontSizeComplexScript517);

            paragraphProperties445.Append(paragraphStyleId445);
            paragraphProperties445.Append(justification297);
            paragraphProperties445.Append(paragraphMarkRunProperties445);

            Run run468 = new Run();

            RunProperties runProperties468 = new RunProperties();
            FontSize fontSize518 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript518 = new FontSizeComplexScript() { Val = "26" };

            runProperties468.Append(fontSize518);
            runProperties468.Append(fontSizeComplexScript518);

            run468.Append(runProperties468);

            paragraph445.Append(paragraphProperties445);
            paragraph445.Append(run468);

            tableCell374.Append(tableCellProperties374);
            tableCell374.Append(paragraph445);

            tableRow133.Append(tableRowProperties133);
            tableRow133.Append(tableCell374);

            TableRow tableRow134 = new TableRow();
            TableRowProperties tableRowProperties134 = new TableRowProperties();

            TableCell tableCell375 = new TableCell();

            TableCellProperties tableCellProperties375 = new TableCellProperties();
            TableCellWidth tableCellWidth375 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan365 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders375 = new TableCellBorders();
            TopBorder topBorder247 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder207 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder207 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders375.Append(topBorder247);
            tableCellBorders375.Append(bottomBorder207);
            tableCellBorders375.Append(insideHorizontalBorder207);
            Shading shading567 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties375.Append(tableCellWidth375);
            tableCellProperties375.Append(gridSpan365);
            tableCellProperties375.Append(tableCellBorders375);
            tableCellProperties375.Append(shading567);

            Paragraph paragraph446 = new Paragraph();

            ParagraphProperties paragraphProperties446 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId446 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification298 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties446 = new ParagraphMarkRunProperties();

            paragraphProperties446.Append(paragraphStyleId446);
            paragraphProperties446.Append(justification298);
            paragraphProperties446.Append(paragraphMarkRunProperties446);

            Run run469 = new Run();

            RunProperties runProperties469 = new RunProperties();
            FontSize fontSize519 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript519 = new FontSizeComplexScript() { Val = "26" };

            runProperties469.Append(fontSize519);
            runProperties469.Append(fontSizeComplexScript519);
            Text text339 = new Text();
            text339.Text = "Химически и биологически опасные вещества и материалы";

            run469.Append(runProperties469);
            run469.Append(text339);

            paragraph446.Append(paragraphProperties446);
            paragraph446.Append(run469);

            tableCell375.Append(tableCellProperties375);
            tableCell375.Append(paragraph446);

            tableRow134.Append(tableRowProperties134);
            tableRow134.Append(tableCell375);

            TableRow tableRow135 = new TableRow();
            TableRowProperties tableRowProperties135 = new TableRowProperties();

            TableCell tableCell376 = new TableCell();

            TableCellProperties tableCellProperties376 = new TableCellProperties();
            TableCellWidth tableCellWidth376 = new TableCellWidth() { Width = "1530", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan366 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders376 = new TableCellBorders();
            TopBorder topBorder248 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder222 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder208 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder115 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder208 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder115 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders376.Append(topBorder248);
            tableCellBorders376.Append(startBorder222);
            tableCellBorders376.Append(bottomBorder208);
            tableCellBorders376.Append(endBorder115);
            tableCellBorders376.Append(insideHorizontalBorder208);
            tableCellBorders376.Append(insideVerticalBorder115);
            Shading shading568 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin231 = new TableCellMargin();
            StartMargin startMargin223 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin231.Append(startMargin223);
            TableCellVerticalAlignment tableCellVerticalAlignment45 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties376.Append(tableCellWidth376);
            tableCellProperties376.Append(gridSpan366);
            tableCellProperties376.Append(tableCellBorders376);
            tableCellProperties376.Append(shading568);
            tableCellProperties376.Append(tableCellMargin231);
            tableCellProperties376.Append(tableCellVerticalAlignment45);

            Paragraph paragraph447 = new Paragraph();

            ParagraphProperties paragraphProperties447 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId447 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification299 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties447 = new ParagraphMarkRunProperties();

            paragraphProperties447.Append(paragraphStyleId447);
            paragraphProperties447.Append(justification299);
            paragraphProperties447.Append(paragraphMarkRunProperties447);

            Run run470 = new Run();

            RunProperties runProperties470 = new RunProperties();
            FontSize fontSize520 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript520 = new FontSizeComplexScript() { Val = "26" };

            runProperties470.Append(fontSize520);
            runProperties470.Append(fontSizeComplexScript520);
            Text text340 = new Text();
            text340.Text = "Тип";

            run470.Append(runProperties470);
            run470.Append(text340);

            paragraph447.Append(paragraphProperties447);
            paragraph447.Append(run470);

            tableCell376.Append(tableCellProperties376);
            tableCell376.Append(paragraph447);

            TableCell tableCell377 = new TableCell();

            TableCellProperties tableCellProperties377 = new TableCellProperties();
            TableCellWidth tableCellWidth377 = new TableCellWidth() { Width = "1453", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan367 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders377 = new TableCellBorders();
            TopBorder topBorder249 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder223 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder209 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder209 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders377.Append(topBorder249);
            tableCellBorders377.Append(startBorder223);
            tableCellBorders377.Append(bottomBorder209);
            tableCellBorders377.Append(insideHorizontalBorder209);
            Shading shading569 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin232 = new TableCellMargin();
            StartMargin startMargin224 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin232.Append(startMargin224);
            TableCellVerticalAlignment tableCellVerticalAlignment46 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties377.Append(tableCellWidth377);
            tableCellProperties377.Append(gridSpan367);
            tableCellProperties377.Append(tableCellBorders377);
            tableCellProperties377.Append(shading569);
            tableCellProperties377.Append(tableCellMargin232);
            tableCellProperties377.Append(tableCellVerticalAlignment46);

            Paragraph paragraph448 = new Paragraph();

            ParagraphProperties paragraphProperties448 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId448 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification300 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties448 = new ParagraphMarkRunProperties();

            paragraphProperties448.Append(paragraphStyleId448);
            paragraphProperties448.Append(justification300);
            paragraphProperties448.Append(paragraphMarkRunProperties448);

            Run run471 = new Run();

            RunProperties runProperties471 = new RunProperties();
            FontSize fontSize521 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript521 = new FontSizeComplexScript() { Val = "26" };

            runProperties471.Append(fontSize521);
            runProperties471.Append(fontSizeComplexScript521);
            Text text341 = new Text();
            text341.Text = "Кол-во, кг";

            run471.Append(runProperties471);
            run471.Append(text341);

            paragraph448.Append(paragraphProperties448);
            paragraph448.Append(run471);

            tableCell377.Append(tableCellProperties377);
            tableCell377.Append(paragraph448);

            TableCell tableCell378 = new TableCell();

            TableCellProperties tableCellProperties378 = new TableCellProperties();
            TableCellWidth tableCellWidth378 = new TableCellWidth() { Width = "2683", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan368 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders378 = new TableCellBorders();
            TopBorder topBorder250 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder224 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder210 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder210 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders378.Append(topBorder250);
            tableCellBorders378.Append(startBorder224);
            tableCellBorders378.Append(bottomBorder210);
            tableCellBorders378.Append(insideHorizontalBorder210);
            Shading shading570 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin233 = new TableCellMargin();
            StartMargin startMargin225 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin233.Append(startMargin225);
            TableCellVerticalAlignment tableCellVerticalAlignment47 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties378.Append(tableCellWidth378);
            tableCellProperties378.Append(gridSpan368);
            tableCellProperties378.Append(tableCellBorders378);
            tableCellProperties378.Append(shading570);
            tableCellProperties378.Append(tableCellMargin233);
            tableCellProperties378.Append(tableCellVerticalAlignment47);

            Paragraph paragraph449 = new Paragraph();

            ParagraphProperties paragraphProperties449 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId449 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification301 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties449 = new ParagraphMarkRunProperties();

            paragraphProperties449.Append(paragraphStyleId449);
            paragraphProperties449.Append(justification301);
            paragraphProperties449.Append(paragraphMarkRunProperties449);

            Run run472 = new Run();

            RunProperties runProperties472 = new RunProperties();
            FontSize fontSize522 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript522 = new FontSizeComplexScript() { Val = "26" };

            runProperties472.Append(fontSize522);
            runProperties472.Append(fontSizeComplexScript522);
            Text text342 = new Text();
            text342.Text = "Наименование элемента объекта";

            run472.Append(runProperties472);
            run472.Append(text342);

            paragraph449.Append(paragraphProperties449);
            paragraph449.Append(run472);

            tableCell378.Append(tableCellProperties378);
            tableCell378.Append(paragraph449);

            TableCell tableCell379 = new TableCell();

            TableCellProperties tableCellProperties379 = new TableCellProperties();
            TableCellWidth tableCellWidth379 = new TableCellWidth() { Width = "3969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan369 = new GridSpan() { Val = 20 };

            TableCellBorders tableCellBorders379 = new TableCellBorders();
            TopBorder topBorder251 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder225 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder211 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder116 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder211 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder116 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders379.Append(topBorder251);
            tableCellBorders379.Append(startBorder225);
            tableCellBorders379.Append(bottomBorder211);
            tableCellBorders379.Append(endBorder116);
            tableCellBorders379.Append(insideHorizontalBorder211);
            tableCellBorders379.Append(insideVerticalBorder116);
            Shading shading571 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin234 = new TableCellMargin();
            StartMargin startMargin226 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin234.Append(startMargin226);
            TableCellVerticalAlignment tableCellVerticalAlignment48 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties379.Append(tableCellWidth379);
            tableCellProperties379.Append(gridSpan369);
            tableCellProperties379.Append(tableCellBorders379);
            tableCellProperties379.Append(shading571);
            tableCellProperties379.Append(tableCellMargin234);
            tableCellProperties379.Append(tableCellVerticalAlignment48);

            Paragraph paragraph450 = new Paragraph();

            ParagraphProperties paragraphProperties450 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId450 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification302 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties450 = new ParagraphMarkRunProperties();

            paragraphProperties450.Append(paragraphStyleId450);
            paragraphProperties450.Append(justification302);
            paragraphProperties450.Append(paragraphMarkRunProperties450);

            Run run473 = new Run();

            RunProperties runProperties473 = new RunProperties();
            FontSize fontSize523 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript523 = new FontSizeComplexScript() { Val = "26" };

            runProperties473.Append(fontSize523);
            runProperties473.Append(fontSizeComplexScript523);
            Text text343 = new Text();
            text343.Text = "Класс опасности";

            run473.Append(runProperties473);
            run473.Append(text343);

            paragraph450.Append(paragraphProperties450);
            paragraph450.Append(run473);

            tableCell379.Append(tableCellProperties379);
            tableCell379.Append(paragraph450);

            tableRow135.Append(tableRowProperties135);
            tableRow135.Append(tableCell376);
            tableRow135.Append(tableCell377);
            tableRow135.Append(tableCell378);
            tableRow135.Append(tableCell379);

            TableRow tableRow136 = new TableRow();
            TableRowProperties tableRowProperties136 = new TableRowProperties();

            TableCell tableCell380 = new TableCell();

            TableCellProperties tableCellProperties380 = new TableCellProperties();
            TableCellWidth tableCellWidth380 = new TableCellWidth() { Width = "1530", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan370 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders380 = new TableCellBorders();
            TopBorder topBorder252 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder226 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder212 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder117 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder212 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder117 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders380.Append(topBorder252);
            tableCellBorders380.Append(startBorder226);
            tableCellBorders380.Append(bottomBorder212);
            tableCellBorders380.Append(endBorder117);
            tableCellBorders380.Append(insideHorizontalBorder212);
            tableCellBorders380.Append(insideVerticalBorder117);
            Shading shading572 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin235 = new TableCellMargin();
            StartMargin startMargin227 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin235.Append(startMargin227);

            tableCellProperties380.Append(tableCellWidth380);
            tableCellProperties380.Append(gridSpan370);
            tableCellProperties380.Append(tableCellBorders380);
            tableCellProperties380.Append(shading572);
            tableCellProperties380.Append(tableCellMargin235);

            Paragraph paragraph451 = new Paragraph();

            ParagraphProperties paragraphProperties451 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId451 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification303 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties451 = new ParagraphMarkRunProperties();

            paragraphProperties451.Append(paragraphStyleId451);
            paragraphProperties451.Append(justification303);
            paragraphProperties451.Append(paragraphMarkRunProperties451);

            Run run474 = new Run();

            RunProperties runProperties474 = new RunProperties();
            FontSize fontSize524 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript524 = new FontSizeComplexScript() { Val = "26" };

            runProperties474.Append(fontSize524);
            runProperties474.Append(fontSizeComplexScript524);
            Text text344 = new Text();
            text344.Text = "1";

            run474.Append(runProperties474);
            run474.Append(text344);

            paragraph451.Append(paragraphProperties451);
            paragraph451.Append(run474);

            tableCell380.Append(tableCellProperties380);
            tableCell380.Append(paragraph451);

            TableCell tableCell381 = new TableCell();

            TableCellProperties tableCellProperties381 = new TableCellProperties();
            TableCellWidth tableCellWidth381 = new TableCellWidth() { Width = "1453", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan371 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders381 = new TableCellBorders();
            TopBorder topBorder253 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder227 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder213 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder213 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders381.Append(topBorder253);
            tableCellBorders381.Append(startBorder227);
            tableCellBorders381.Append(bottomBorder213);
            tableCellBorders381.Append(insideHorizontalBorder213);
            Shading shading573 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin236 = new TableCellMargin();
            StartMargin startMargin228 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin236.Append(startMargin228);

            tableCellProperties381.Append(tableCellWidth381);
            tableCellProperties381.Append(gridSpan371);
            tableCellProperties381.Append(tableCellBorders381);
            tableCellProperties381.Append(shading573);
            tableCellProperties381.Append(tableCellMargin236);

            Paragraph paragraph452 = new Paragraph();

            ParagraphProperties paragraphProperties452 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId452 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification304 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties452 = new ParagraphMarkRunProperties();

            paragraphProperties452.Append(paragraphStyleId452);
            paragraphProperties452.Append(justification304);
            paragraphProperties452.Append(paragraphMarkRunProperties452);

            Run run475 = new Run();

            RunProperties runProperties475 = new RunProperties();
            FontSize fontSize525 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript525 = new FontSizeComplexScript() { Val = "26" };

            runProperties475.Append(fontSize525);
            runProperties475.Append(fontSizeComplexScript525);
            Text text345 = new Text();
            text345.Text = "2";

            run475.Append(runProperties475);
            run475.Append(text345);

            paragraph452.Append(paragraphProperties452);
            paragraph452.Append(run475);

            tableCell381.Append(tableCellProperties381);
            tableCell381.Append(paragraph452);

            TableCell tableCell382 = new TableCell();

            TableCellProperties tableCellProperties382 = new TableCellProperties();
            TableCellWidth tableCellWidth382 = new TableCellWidth() { Width = "2683", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan372 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders382 = new TableCellBorders();
            TopBorder topBorder254 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder228 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder214 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder214 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders382.Append(topBorder254);
            tableCellBorders382.Append(startBorder228);
            tableCellBorders382.Append(bottomBorder214);
            tableCellBorders382.Append(insideHorizontalBorder214);
            Shading shading574 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin237 = new TableCellMargin();
            StartMargin startMargin229 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin237.Append(startMargin229);

            tableCellProperties382.Append(tableCellWidth382);
            tableCellProperties382.Append(gridSpan372);
            tableCellProperties382.Append(tableCellBorders382);
            tableCellProperties382.Append(shading574);
            tableCellProperties382.Append(tableCellMargin237);

            Paragraph paragraph453 = new Paragraph();

            ParagraphProperties paragraphProperties453 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId453 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification305 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties453 = new ParagraphMarkRunProperties();

            paragraphProperties453.Append(paragraphStyleId453);
            paragraphProperties453.Append(justification305);
            paragraphProperties453.Append(paragraphMarkRunProperties453);

            Run run476 = new Run();

            RunProperties runProperties476 = new RunProperties();
            FontSize fontSize526 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript526 = new FontSizeComplexScript() { Val = "26" };

            runProperties476.Append(fontSize526);
            runProperties476.Append(fontSizeComplexScript526);
            Text text346 = new Text();
            text346.Text = "3";

            run476.Append(runProperties476);
            run476.Append(text346);

            paragraph453.Append(paragraphProperties453);
            paragraph453.Append(run476);

            tableCell382.Append(tableCellProperties382);
            tableCell382.Append(paragraph453);

            TableCell tableCell383 = new TableCell();

            TableCellProperties tableCellProperties383 = new TableCellProperties();
            TableCellWidth tableCellWidth383 = new TableCellWidth() { Width = "3969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan373 = new GridSpan() { Val = 20 };

            TableCellBorders tableCellBorders383 = new TableCellBorders();
            TopBorder topBorder255 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder229 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder215 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder118 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder215 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder118 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders383.Append(topBorder255);
            tableCellBorders383.Append(startBorder229);
            tableCellBorders383.Append(bottomBorder215);
            tableCellBorders383.Append(endBorder118);
            tableCellBorders383.Append(insideHorizontalBorder215);
            tableCellBorders383.Append(insideVerticalBorder118);
            Shading shading575 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin238 = new TableCellMargin();
            StartMargin startMargin230 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin238.Append(startMargin230);

            tableCellProperties383.Append(tableCellWidth383);
            tableCellProperties383.Append(gridSpan373);
            tableCellProperties383.Append(tableCellBorders383);
            tableCellProperties383.Append(shading575);
            tableCellProperties383.Append(tableCellMargin238);

            Paragraph paragraph454 = new Paragraph();

            ParagraphProperties paragraphProperties454 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId454 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification306 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties454 = new ParagraphMarkRunProperties();

            paragraphProperties454.Append(paragraphStyleId454);
            paragraphProperties454.Append(justification306);
            paragraphProperties454.Append(paragraphMarkRunProperties454);

            Run run477 = new Run();

            RunProperties runProperties477 = new RunProperties();
            FontSize fontSize527 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript527 = new FontSizeComplexScript() { Val = "26" };

            runProperties477.Append(fontSize527);
            runProperties477.Append(fontSizeComplexScript527);
            Text text347 = new Text();
            text347.Text = "4";

            run477.Append(runProperties477);
            run477.Append(text347);

            paragraph454.Append(paragraphProperties454);
            paragraph454.Append(run477);

            tableCell383.Append(tableCellProperties383);
            tableCell383.Append(paragraph454);

            tableRow136.Append(tableRowProperties136);
            tableRow136.Append(tableCell380);
            tableRow136.Append(tableCell381);
            tableRow136.Append(tableCell382);
            tableRow136.Append(tableCell383);

            TableRow tableRow137 = new TableRow();
            TableRowProperties tableRowProperties137 = new TableRowProperties();

            TableCell tableCell384 = new TableCell();

            TableCellProperties tableCellProperties384 = new TableCellProperties();
            TableCellWidth tableCellWidth384 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan374 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders384 = new TableCellBorders();
            TopBorder topBorder256 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder230 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder216 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder119 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder216 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder119 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders384.Append(topBorder256);
            tableCellBorders384.Append(startBorder230);
            tableCellBorders384.Append(bottomBorder216);
            tableCellBorders384.Append(endBorder119);
            tableCellBorders384.Append(insideHorizontalBorder216);
            tableCellBorders384.Append(insideVerticalBorder119);
            Shading shading576 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin239 = new TableCellMargin();
            StartMargin startMargin231 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin239.Append(startMargin231);

            tableCellProperties384.Append(tableCellWidth384);
            tableCellProperties384.Append(gridSpan374);
            tableCellProperties384.Append(tableCellBorders384);
            tableCellProperties384.Append(shading576);
            tableCellProperties384.Append(tableCellMargin239);

            Paragraph paragraph455 = new Paragraph();

            ParagraphProperties paragraphProperties455 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId455 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification307 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties455 = new ParagraphMarkRunProperties();

            paragraphProperties455.Append(paragraphStyleId455);
            paragraphProperties455.Append(justification307);
            paragraphProperties455.Append(paragraphMarkRunProperties455);

            Run run478 = new Run();

            RunProperties runProperties478 = new RunProperties();
            FontSize fontSize528 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript528 = new FontSizeComplexScript() { Val = "26" };

            runProperties478.Append(fontSize528);
            runProperties478.Append(fontSizeComplexScript528);
            Text text348 = new Text();
            text348.Text = "ОТСУТСТВУЮТ";

            run478.Append(runProperties478);
            run478.Append(text348);

            paragraph455.Append(paragraphProperties455);
            paragraph455.Append(run478);

            tableCell384.Append(tableCellProperties384);
            tableCell384.Append(paragraph455);

            tableRow137.Append(tableRowProperties137);
            tableRow137.Append(tableCell384);

            TableRow tableRow138 = new TableRow();
            TableRowProperties tableRowProperties138 = new TableRowProperties();

            TableCell tableCell385 = new TableCell();

            TableCellProperties tableCellProperties385 = new TableCellProperties();
            TableCellWidth tableCellWidth385 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan375 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders385 = new TableCellBorders();
            TopBorder topBorder257 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders385.Append(topBorder257);
            Shading shading577 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties385.Append(tableCellWidth385);
            tableCellProperties385.Append(gridSpan375);
            tableCellProperties385.Append(tableCellBorders385);
            tableCellProperties385.Append(shading577);

            Paragraph paragraph456 = new Paragraph();

            ParagraphProperties paragraphProperties456 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId456 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification308 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties456 = new ParagraphMarkRunProperties();
            FontSize fontSize529 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript529 = new FontSizeComplexScript() { Val = "26" };

            paragraphMarkRunProperties456.Append(fontSize529);
            paragraphMarkRunProperties456.Append(fontSizeComplexScript529);

            paragraphProperties456.Append(paragraphStyleId456);
            paragraphProperties456.Append(justification308);
            paragraphProperties456.Append(paragraphMarkRunProperties456);

            Run run479 = new Run();

            RunProperties runProperties479 = new RunProperties();
            FontSize fontSize530 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript530 = new FontSizeComplexScript() { Val = "26" };

            runProperties479.Append(fontSize530);
            runProperties479.Append(fontSizeComplexScript530);

            run479.Append(runProperties479);

            paragraph456.Append(paragraphProperties456);
            paragraph456.Append(run479);

            tableCell385.Append(tableCellProperties385);
            tableCell385.Append(paragraph456);

            tableRow138.Append(tableRowProperties138);
            tableRow138.Append(tableCell385);

            TableRow tableRow139 = new TableRow();
            TableRowProperties tableRowProperties139 = new TableRowProperties();

            TableCell tableCell386 = new TableCell();

            TableCellProperties tableCellProperties386 = new TableCellProperties();
            TableCellWidth tableCellWidth386 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan376 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders386 = new TableCellBorders();
            TopBorder topBorder258 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder217 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder217 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders386.Append(topBorder258);
            tableCellBorders386.Append(bottomBorder217);
            tableCellBorders386.Append(insideHorizontalBorder217);
            Shading shading578 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            tableCellProperties386.Append(tableCellWidth386);
            tableCellProperties386.Append(gridSpan376);
            tableCellProperties386.Append(tableCellBorders386);
            tableCellProperties386.Append(shading578);

            Paragraph paragraph457 = new Paragraph();

            ParagraphProperties paragraphProperties457 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId457 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification309 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties457 = new ParagraphMarkRunProperties();

            paragraphProperties457.Append(paragraphStyleId457);
            paragraphProperties457.Append(justification309);
            paragraphProperties457.Append(paragraphMarkRunProperties457);

            Run run480 = new Run();

            RunProperties runProperties480 = new RunProperties();
            FontSize fontSize531 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript531 = new FontSizeComplexScript() { Val = "26" };

            runProperties480.Append(fontSize531);
            runProperties480.Append(fontSizeComplexScript531);
            Text text349 = new Text();
            text349.Text = "Токсичные, наркотические, психотропные вещества, сильнодействующие яды и препараты";

            run480.Append(runProperties480);
            run480.Append(text349);

            paragraph457.Append(paragraphProperties457);
            paragraph457.Append(run480);

            tableCell386.Append(tableCellProperties386);
            tableCell386.Append(paragraph457);

            tableRow139.Append(tableRowProperties139);
            tableRow139.Append(tableCell386);

            TableRow tableRow140 = new TableRow();
            TableRowProperties tableRowProperties140 = new TableRowProperties();

            TableCell tableCell387 = new TableCell();

            TableCellProperties tableCellProperties387 = new TableCellProperties();
            TableCellWidth tableCellWidth387 = new TableCellWidth() { Width = "1530", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan377 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders387 = new TableCellBorders();
            TopBorder topBorder259 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder231 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder218 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder120 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder218 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder120 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders387.Append(topBorder259);
            tableCellBorders387.Append(startBorder231);
            tableCellBorders387.Append(bottomBorder218);
            tableCellBorders387.Append(endBorder120);
            tableCellBorders387.Append(insideHorizontalBorder218);
            tableCellBorders387.Append(insideVerticalBorder120);
            Shading shading579 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin240 = new TableCellMargin();
            StartMargin startMargin232 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin240.Append(startMargin232);
            TableCellVerticalAlignment tableCellVerticalAlignment49 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties387.Append(tableCellWidth387);
            tableCellProperties387.Append(gridSpan377);
            tableCellProperties387.Append(tableCellBorders387);
            tableCellProperties387.Append(shading579);
            tableCellProperties387.Append(tableCellMargin240);
            tableCellProperties387.Append(tableCellVerticalAlignment49);

            Paragraph paragraph458 = new Paragraph();

            ParagraphProperties paragraphProperties458 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId458 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification310 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties458 = new ParagraphMarkRunProperties();

            paragraphProperties458.Append(paragraphStyleId458);
            paragraphProperties458.Append(justification310);
            paragraphProperties458.Append(paragraphMarkRunProperties458);

            Run run481 = new Run();

            RunProperties runProperties481 = new RunProperties();
            FontSize fontSize532 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript532 = new FontSizeComplexScript() { Val = "26" };

            runProperties481.Append(fontSize532);
            runProperties481.Append(fontSizeComplexScript532);
            Text text350 = new Text();
            text350.Text = "Тип";

            run481.Append(runProperties481);
            run481.Append(text350);

            paragraph458.Append(paragraphProperties458);
            paragraph458.Append(run481);

            tableCell387.Append(tableCellProperties387);
            tableCell387.Append(paragraph458);

            TableCell tableCell388 = new TableCell();

            TableCellProperties tableCellProperties388 = new TableCellProperties();
            TableCellWidth tableCellWidth388 = new TableCellWidth() { Width = "1453", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan378 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders388 = new TableCellBorders();
            TopBorder topBorder260 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder232 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder219 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder219 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders388.Append(topBorder260);
            tableCellBorders388.Append(startBorder232);
            tableCellBorders388.Append(bottomBorder219);
            tableCellBorders388.Append(insideHorizontalBorder219);
            Shading shading580 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin241 = new TableCellMargin();
            StartMargin startMargin233 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin241.Append(startMargin233);
            TableCellVerticalAlignment tableCellVerticalAlignment50 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties388.Append(tableCellWidth388);
            tableCellProperties388.Append(gridSpan378);
            tableCellProperties388.Append(tableCellBorders388);
            tableCellProperties388.Append(shading580);
            tableCellProperties388.Append(tableCellMargin241);
            tableCellProperties388.Append(tableCellVerticalAlignment50);

            Paragraph paragraph459 = new Paragraph();

            ParagraphProperties paragraphProperties459 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId459 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification311 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties459 = new ParagraphMarkRunProperties();

            paragraphProperties459.Append(paragraphStyleId459);
            paragraphProperties459.Append(justification311);
            paragraphProperties459.Append(paragraphMarkRunProperties459);

            Run run482 = new Run();

            RunProperties runProperties482 = new RunProperties();
            FontSize fontSize533 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript533 = new FontSizeComplexScript() { Val = "26" };

            runProperties482.Append(fontSize533);
            runProperties482.Append(fontSizeComplexScript533);
            Text text351 = new Text();
            text351.Text = "Кол-во, кг";

            run482.Append(runProperties482);
            run482.Append(text351);

            paragraph459.Append(paragraphProperties459);
            paragraph459.Append(run482);

            tableCell388.Append(tableCellProperties388);
            tableCell388.Append(paragraph459);

            TableCell tableCell389 = new TableCell();

            TableCellProperties tableCellProperties389 = new TableCellProperties();
            TableCellWidth tableCellWidth389 = new TableCellWidth() { Width = "2683", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan379 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders389 = new TableCellBorders();
            TopBorder topBorder261 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder233 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder220 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder220 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders389.Append(topBorder261);
            tableCellBorders389.Append(startBorder233);
            tableCellBorders389.Append(bottomBorder220);
            tableCellBorders389.Append(insideHorizontalBorder220);
            Shading shading581 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin242 = new TableCellMargin();
            StartMargin startMargin234 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin242.Append(startMargin234);
            TableCellVerticalAlignment tableCellVerticalAlignment51 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties389.Append(tableCellWidth389);
            tableCellProperties389.Append(gridSpan379);
            tableCellProperties389.Append(tableCellBorders389);
            tableCellProperties389.Append(shading581);
            tableCellProperties389.Append(tableCellMargin242);
            tableCellProperties389.Append(tableCellVerticalAlignment51);

            Paragraph paragraph460 = new Paragraph();

            ParagraphProperties paragraphProperties460 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId460 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification312 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties460 = new ParagraphMarkRunProperties();

            paragraphProperties460.Append(paragraphStyleId460);
            paragraphProperties460.Append(justification312);
            paragraphProperties460.Append(paragraphMarkRunProperties460);

            Run run483 = new Run();

            RunProperties runProperties483 = new RunProperties();
            FontSize fontSize534 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript534 = new FontSizeComplexScript() { Val = "26" };

            runProperties483.Append(fontSize534);
            runProperties483.Append(fontSizeComplexScript534);
            Text text352 = new Text();
            text352.Text = "Наименование элемента объекта";

            run483.Append(runProperties483);
            run483.Append(text352);

            paragraph460.Append(paragraphProperties460);
            paragraph460.Append(run483);

            tableCell389.Append(tableCellProperties389);
            tableCell389.Append(paragraph460);

            TableCell tableCell390 = new TableCell();

            TableCellProperties tableCellProperties390 = new TableCellProperties();
            TableCellWidth tableCellWidth390 = new TableCellWidth() { Width = "3969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan380 = new GridSpan() { Val = 20 };

            TableCellBorders tableCellBorders390 = new TableCellBorders();
            TopBorder topBorder262 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder234 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder221 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder121 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder221 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder121 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders390.Append(topBorder262);
            tableCellBorders390.Append(startBorder234);
            tableCellBorders390.Append(bottomBorder221);
            tableCellBorders390.Append(endBorder121);
            tableCellBorders390.Append(insideHorizontalBorder221);
            tableCellBorders390.Append(insideVerticalBorder121);
            Shading shading582 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin243 = new TableCellMargin();
            StartMargin startMargin235 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin243.Append(startMargin235);
            TableCellVerticalAlignment tableCellVerticalAlignment52 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties390.Append(tableCellWidth390);
            tableCellProperties390.Append(gridSpan380);
            tableCellProperties390.Append(tableCellBorders390);
            tableCellProperties390.Append(shading582);
            tableCellProperties390.Append(tableCellMargin243);
            tableCellProperties390.Append(tableCellVerticalAlignment52);

            Paragraph paragraph461 = new Paragraph();

            ParagraphProperties paragraphProperties461 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId461 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification313 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties461 = new ParagraphMarkRunProperties();

            paragraphProperties461.Append(paragraphStyleId461);
            paragraphProperties461.Append(justification313);
            paragraphProperties461.Append(paragraphMarkRunProperties461);

            Run run484 = new Run();

            RunProperties runProperties484 = new RunProperties();
            FontSize fontSize535 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript535 = new FontSizeComplexScript() { Val = "26" };

            runProperties484.Append(fontSize535);
            runProperties484.Append(fontSizeComplexScript535);
            Text text353 = new Text();
            text353.Text = "Класс опасности";

            run484.Append(runProperties484);
            run484.Append(text353);

            paragraph461.Append(paragraphProperties461);
            paragraph461.Append(run484);

            tableCell390.Append(tableCellProperties390);
            tableCell390.Append(paragraph461);

            tableRow140.Append(tableRowProperties140);
            tableRow140.Append(tableCell387);
            tableRow140.Append(tableCell388);
            tableRow140.Append(tableCell389);
            tableRow140.Append(tableCell390);

            TableRow tableRow141 = new TableRow();
            TableRowProperties tableRowProperties141 = new TableRowProperties();

            TableCell tableCell391 = new TableCell();

            TableCellProperties tableCellProperties391 = new TableCellProperties();
            TableCellWidth tableCellWidth391 = new TableCellWidth() { Width = "1530", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan381 = new GridSpan() { Val = 8 };

            TableCellBorders tableCellBorders391 = new TableCellBorders();
            TopBorder topBorder263 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder235 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder222 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder122 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder222 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder122 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders391.Append(topBorder263);
            tableCellBorders391.Append(startBorder235);
            tableCellBorders391.Append(bottomBorder222);
            tableCellBorders391.Append(endBorder122);
            tableCellBorders391.Append(insideHorizontalBorder222);
            tableCellBorders391.Append(insideVerticalBorder122);
            Shading shading583 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin244 = new TableCellMargin();
            StartMargin startMargin236 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin244.Append(startMargin236);

            tableCellProperties391.Append(tableCellWidth391);
            tableCellProperties391.Append(gridSpan381);
            tableCellProperties391.Append(tableCellBorders391);
            tableCellProperties391.Append(shading583);
            tableCellProperties391.Append(tableCellMargin244);

            Paragraph paragraph462 = new Paragraph();

            ParagraphProperties paragraphProperties462 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId462 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification314 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties462 = new ParagraphMarkRunProperties();

            paragraphProperties462.Append(paragraphStyleId462);
            paragraphProperties462.Append(justification314);
            paragraphProperties462.Append(paragraphMarkRunProperties462);

            Run run485 = new Run();

            RunProperties runProperties485 = new RunProperties();
            FontSize fontSize536 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript536 = new FontSizeComplexScript() { Val = "26" };

            runProperties485.Append(fontSize536);
            runProperties485.Append(fontSizeComplexScript536);
            Text text354 = new Text();
            text354.Text = "1";

            run485.Append(runProperties485);
            run485.Append(text354);

            paragraph462.Append(paragraphProperties462);
            paragraph462.Append(run485);

            tableCell391.Append(tableCellProperties391);
            tableCell391.Append(paragraph462);

            TableCell tableCell392 = new TableCell();

            TableCellProperties tableCellProperties392 = new TableCellProperties();
            TableCellWidth tableCellWidth392 = new TableCellWidth() { Width = "1453", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan382 = new GridSpan() { Val = 7 };

            TableCellBorders tableCellBorders392 = new TableCellBorders();
            TopBorder topBorder264 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder236 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder223 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder223 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders392.Append(topBorder264);
            tableCellBorders392.Append(startBorder236);
            tableCellBorders392.Append(bottomBorder223);
            tableCellBorders392.Append(insideHorizontalBorder223);
            Shading shading584 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin245 = new TableCellMargin();
            StartMargin startMargin237 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin245.Append(startMargin237);

            tableCellProperties392.Append(tableCellWidth392);
            tableCellProperties392.Append(gridSpan382);
            tableCellProperties392.Append(tableCellBorders392);
            tableCellProperties392.Append(shading584);
            tableCellProperties392.Append(tableCellMargin245);

            Paragraph paragraph463 = new Paragraph();

            ParagraphProperties paragraphProperties463 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId463 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification315 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties463 = new ParagraphMarkRunProperties();

            paragraphProperties463.Append(paragraphStyleId463);
            paragraphProperties463.Append(justification315);
            paragraphProperties463.Append(paragraphMarkRunProperties463);

            Run run486 = new Run();

            RunProperties runProperties486 = new RunProperties();
            FontSize fontSize537 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript537 = new FontSizeComplexScript() { Val = "26" };

            runProperties486.Append(fontSize537);
            runProperties486.Append(fontSizeComplexScript537);
            Text text355 = new Text();
            text355.Text = "2";

            run486.Append(runProperties486);
            run486.Append(text355);

            paragraph463.Append(paragraphProperties463);
            paragraph463.Append(run486);

            tableCell392.Append(tableCellProperties392);
            tableCell392.Append(paragraph463);

            TableCell tableCell393 = new TableCell();

            TableCellProperties tableCellProperties393 = new TableCellProperties();
            TableCellWidth tableCellWidth393 = new TableCellWidth() { Width = "2683", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan383 = new GridSpan() { Val = 15 };

            TableCellBorders tableCellBorders393 = new TableCellBorders();
            TopBorder topBorder265 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder237 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder224 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder224 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders393.Append(topBorder265);
            tableCellBorders393.Append(startBorder237);
            tableCellBorders393.Append(bottomBorder224);
            tableCellBorders393.Append(insideHorizontalBorder224);
            Shading shading585 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin246 = new TableCellMargin();
            StartMargin startMargin238 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin246.Append(startMargin238);

            tableCellProperties393.Append(tableCellWidth393);
            tableCellProperties393.Append(gridSpan383);
            tableCellProperties393.Append(tableCellBorders393);
            tableCellProperties393.Append(shading585);
            tableCellProperties393.Append(tableCellMargin246);

            Paragraph paragraph464 = new Paragraph();

            ParagraphProperties paragraphProperties464 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId464 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification316 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties464 = new ParagraphMarkRunProperties();

            paragraphProperties464.Append(paragraphStyleId464);
            paragraphProperties464.Append(justification316);
            paragraphProperties464.Append(paragraphMarkRunProperties464);

            Run run487 = new Run();

            RunProperties runProperties487 = new RunProperties();
            FontSize fontSize538 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript538 = new FontSizeComplexScript() { Val = "26" };

            runProperties487.Append(fontSize538);
            runProperties487.Append(fontSizeComplexScript538);
            Text text356 = new Text();
            text356.Text = "3";

            run487.Append(runProperties487);
            run487.Append(text356);

            paragraph464.Append(paragraphProperties464);
            paragraph464.Append(run487);

            tableCell393.Append(tableCellProperties393);
            tableCell393.Append(paragraph464);

            TableCell tableCell394 = new TableCell();

            TableCellProperties tableCellProperties394 = new TableCellProperties();
            TableCellWidth tableCellWidth394 = new TableCellWidth() { Width = "3969", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan384 = new GridSpan() { Val = 20 };

            TableCellBorders tableCellBorders394 = new TableCellBorders();
            TopBorder topBorder266 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder238 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder225 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder123 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder225 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder123 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders394.Append(topBorder266);
            tableCellBorders394.Append(startBorder238);
            tableCellBorders394.Append(bottomBorder225);
            tableCellBorders394.Append(endBorder123);
            tableCellBorders394.Append(insideHorizontalBorder225);
            tableCellBorders394.Append(insideVerticalBorder123);
            Shading shading586 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin247 = new TableCellMargin();
            StartMargin startMargin239 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin247.Append(startMargin239);

            tableCellProperties394.Append(tableCellWidth394);
            tableCellProperties394.Append(gridSpan384);
            tableCellProperties394.Append(tableCellBorders394);
            tableCellProperties394.Append(shading586);
            tableCellProperties394.Append(tableCellMargin247);

            Paragraph paragraph465 = new Paragraph();

            ParagraphProperties paragraphProperties465 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId465 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification317 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties465 = new ParagraphMarkRunProperties();

            paragraphProperties465.Append(paragraphStyleId465);
            paragraphProperties465.Append(justification317);
            paragraphProperties465.Append(paragraphMarkRunProperties465);

            Run run488 = new Run();

            RunProperties runProperties488 = new RunProperties();
            FontSize fontSize539 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript539 = new FontSizeComplexScript() { Val = "26" };

            runProperties488.Append(fontSize539);
            runProperties488.Append(fontSizeComplexScript539);
            Text text357 = new Text();
            text357.Text = "4";

            run488.Append(runProperties488);
            run488.Append(text357);

            paragraph465.Append(paragraphProperties465);
            paragraph465.Append(run488);

            tableCell394.Append(tableCellProperties394);
            tableCell394.Append(paragraph465);

            tableRow141.Append(tableRowProperties141);
            tableRow141.Append(tableCell391);
            tableRow141.Append(tableCell392);
            tableRow141.Append(tableCell393);
            tableRow141.Append(tableCell394);

            TableRow tableRow142 = new TableRow();
            TableRowProperties tableRowProperties142 = new TableRowProperties();

            TableCell tableCell395 = new TableCell();

            TableCellProperties tableCellProperties395 = new TableCellProperties();
            TableCellWidth tableCellWidth395 = new TableCellWidth() { Width = "9635", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan385 = new GridSpan() { Val = 50 };

            TableCellBorders tableCellBorders395 = new TableCellBorders();
            TopBorder topBorder267 = new TopBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder239 = new StartBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder226 = new BottomBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder124 = new EndBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder226 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder124 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders395.Append(topBorder267);
            tableCellBorders395.Append(startBorder239);
            tableCellBorders395.Append(bottomBorder226);
            tableCellBorders395.Append(endBorder124);
            tableCellBorders395.Append(insideHorizontalBorder226);
            tableCellBorders395.Append(insideVerticalBorder124);
            Shading shading587 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin248 = new TableCellMargin();
            StartMargin startMargin240 = new StartMargin() { Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin248.Append(startMargin240);

            tableCellProperties395.Append(tableCellWidth395);
            tableCellProperties395.Append(gridSpan385);
            tableCellProperties395.Append(tableCellBorders395);
            tableCellProperties395.Append(shading587);
            tableCellProperties395.Append(tableCellMargin248);

            Paragraph paragraph466 = new Paragraph();

            ParagraphProperties paragraphProperties466 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId466 = new ParagraphStyleId() { Val = "Normal" };
            Justification justification318 = new Justification() { Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties466 = new ParagraphMarkRunProperties();

            paragraphProperties466.Append(paragraphStyleId466);
            paragraphProperties466.Append(justification318);
            paragraphProperties466.Append(paragraphMarkRunProperties466);

            Run run489 = new Run();

            RunProperties runProperties489 = new RunProperties();
            FontSize fontSize540 = new FontSize() { Val = "26" };
            FontSizeComplexScript fontSizeComplexScript540 = new FontSizeComplexScript() { Val = "26" };

            runProperties489.Append(fontSize540);
            runProperties489.Append(fontSizeComplexScript540);
            Text text358 = new Text();
            text358.Text = "ОТСУТСТВУЮТ";

            run489.Append(runProperties489);
            run489.Append(text358);

            paragraph466.Append(paragraphProperties466);
            paragraph466.Append(run489);

            tableCell395.Append(tableCellProperties395);
            tableCell395.Append(paragraph466);

            tableRow142.Append(tableRowProperties142);
            tableRow142.Append(tableCell395);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);
            table1.Append(tableRow2);
            table1.Append(tableRow3);
            table1.Append(tableRow4);
            table1.Append(tableRow5);
            table1.Append(tableRow6);
            table1.Append(tableRow7);
            table1.Append(tableRow8);
            table1.Append(tableRow9);
            table1.Append(tableRow10);
            table1.Append(tableRow11);
            table1.Append(tableRow12);
            table1.Append(tableRow13);
            table1.Append(tableRow14);
            table1.Append(tableRow15);
            table1.Append(tableRow16);
            table1.Append(tableRow17);
            table1.Append(tableRow18);
            table1.Append(tableRow19);
            table1.Append(tableRow20);
            table1.Append(tableRow21);
            table1.Append(tableRow22);
            table1.Append(tableRow23);
            table1.Append(tableRow24);
            table1.Append(tableRow25);
            table1.Append(tableRow26);
            table1.Append(tableRow27);
            table1.Append(tableRow28);
            table1.Append(tableRow29);
            table1.Append(tableRow30);
            table1.Append(tableRow31);
            table1.Append(tableRow32);
            table1.Append(tableRow33);
            table1.Append(tableRow34);
            table1.Append(tableRow35);
            table1.Append(tableRow36);
            table1.Append(tableRow37);
            table1.Append(tableRow38);
            table1.Append(tableRow39);
            table1.Append(tableRow40);
            table1.Append(tableRow41);
            table1.Append(tableRow42);
            table1.Append(tableRow43);
            table1.Append(tableRow44);
            table1.Append(tableRow45);
            table1.Append(tableRow46);
            table1.Append(tableRow47);
            table1.Append(tableRow48);
            table1.Append(tableRow49);
            table1.Append(tableRow50);
            table1.Append(tableRow51);
            table1.Append(tableRow52);
            table1.Append(tableRow53);
            table1.Append(tableRow54);
            table1.Append(tableRow55);
            table1.Append(tableRow56);
            table1.Append(tableRow57);
            table1.Append(tableRow58);
            table1.Append(tableRow59);
            table1.Append(tableRow60);
            table1.Append(tableRow61);
            table1.Append(tableRow62);
            table1.Append(tableRow63);
            table1.Append(tableRow64);
            table1.Append(tableRow65);
            table1.Append(tableRow66);
            table1.Append(tableRow67);
            table1.Append(tableRow68);
            table1.Append(tableRow69);
            table1.Append(tableRow70);
            table1.Append(tableRow71);
            table1.Append(tableRow72);
            table1.Append(tableRow73);
            table1.Append(tableRow74);
            table1.Append(tableRow75);
            table1.Append(tableRow76);
            table1.Append(tableRow77);
            table1.Append(tableRow78);
            table1.Append(tableRow79);
            table1.Append(tableRow80);
            table1.Append(tableRow81);
            table1.Append(tableRow82);
            table1.Append(tableRow83);
            table1.Append(tableRow84);
            table1.Append(tableRow85);
            table1.Append(tableRow86);
            table1.Append(tableRow87);
            table1.Append(tableRow88);
            table1.Append(tableRow89);
            table1.Append(tableRow90);
            table1.Append(tableRow91);
            table1.Append(tableRow92);
            table1.Append(tableRow93);
            table1.Append(tableRow94);
            table1.Append(tableRow95);
            table1.Append(tableRow96);
            table1.Append(tableRow97);
            table1.Append(tableRow98);
            table1.Append(tableRow99);
            table1.Append(tableRow100);
            table1.Append(tableRow101);
            table1.Append(tableRow102);
            table1.Append(tableRow103);
            table1.Append(tableRow104);
            table1.Append(tableRow105);
            table1.Append(tableRow106);
            table1.Append(tableRow107);
            table1.Append(tableRow108);
            table1.Append(tableRow109);
            table1.Append(tableRow110);
            table1.Append(tableRow111);
            table1.Append(tableRow112);
            table1.Append(tableRow113);
            table1.Append(tableRow114);
            table1.Append(tableRow115);
            table1.Append(tableRow116);
            table1.Append(tableRow117);
            table1.Append(tableRow118);
            table1.Append(tableRow119);
            table1.Append(tableRow120);
            table1.Append(tableRow121);
            table1.Append(tableRow122);
            table1.Append(tableRow123);
            table1.Append(tableRow124);
            table1.Append(tableRow125);
            table1.Append(tableRow126);
            table1.Append(tableRow127);
            table1.Append(tableRow128);
            table1.Append(tableRow129);
            table1.Append(tableRow130);
            table1.Append(tableRow131);
            table1.Append(tableRow132);
            table1.Append(tableRow133);
            table1.Append(tableRow134);
            table1.Append(tableRow135);
            table1.Append(tableRow136);
            table1.Append(tableRow137);
            table1.Append(tableRow138);
            table1.Append(tableRow139);
            table1.Append(tableRow140);
            table1.Append(tableRow141);
            table1.Append(tableRow142);

            Paragraph paragraph467 = new Paragraph();

            ParagraphProperties paragraphProperties467 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId467 = new ParagraphStyleId() { Val = "Normal" };
            ParagraphMarkRunProperties paragraphMarkRunProperties467 = new ParagraphMarkRunProperties();

            paragraphProperties467.Append(paragraphStyleId467);
            paragraphProperties467.Append(paragraphMarkRunProperties467);

            Run run490 = new Run();
            RunProperties runProperties490 = new RunProperties();

            run490.Append(runProperties490);

            paragraph467.Append(paragraphProperties467);
            paragraph467.Append(run490);

            SectionProperties sectionProperties1 = new SectionProperties();
            SectionType sectionType1 = new SectionType() { Val = SectionMarkValues.NextPage };
            PageSize pageSize1 = new PageSize() { Width = (UInt32Value)11906U, Height = (UInt32Value)16838U };
            PageMargin pageMargin1 = new PageMargin() { Top = 1134, Right = (UInt32Value)1134U, Bottom = 1134, Left = (UInt32Value)1134U, Header = (UInt32Value)0U, Footer = (UInt32Value)0U, Gutter = (UInt32Value)0U };
            PageNumberType pageNumberType1 = new PageNumberType() { Format = NumberFormatValues.Decimal };
            FormProtection formProtection1 = new FormProtection() { Val = false };
            TextDirection textDirection1 = new TextDirection() { Val = TextDirectionValues.LefToRightTopToBottom };
            DocGrid docGrid1 = new DocGrid() { Type = DocGridValues.Default, LinePitch = 240, CharacterSpace = new Int32Value() { InnerText = "4294961151" } };

            sectionProperties1.Append(sectionType1);
            sectionProperties1.Append(pageSize1);
            sectionProperties1.Append(pageMargin1);
            sectionProperties1.Append(pageNumberType1);
            sectionProperties1.Append(formProtection1);
            sectionProperties1.Append(textDirection1);
            sectionProperties1.Append(docGrid1);

            body1.Append(paragraph1);
            body1.Append(table1);
            body1.Append(paragraph467);
            body1.Append(sectionProperties1);

            document1.Append(body1);

            mainDocumentPart1.Document = document1;
        }
        // Creates an Table instance and adds its children.
        public static Table GenerateTable()
        {
            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableWidth      tableWidth1      = new TableWidth()
            {
                Width = "8789", Type = TableWidthUnitValues.Dxa
            };
            TableIndentation tableIndentation1 = new TableIndentation()
            {
                Width = 10, Type = TableWidthUnitValues.Dxa
            };

            TableBorders tableBorders1 = new TableBorders();
            TopBorder    topBorder1    = new TopBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder1 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder1 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder1 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };

            tableBorders1.Append(topBorder1);
            tableBorders1.Append(leftBorder1);
            tableBorders1.Append(bottomBorder1);
            tableBorders1.Append(rightBorder1);
            tableBorders1.Append(insideHorizontalBorder1);
            tableBorders1.Append(insideVerticalBorder1);

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TableCellLeftMargin    tableCellLeftMargin1    = new TableCellLeftMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };
            TableCellRightMargin tableCellRightMargin1 = new TableCellRightMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };

            tableCellMarginDefault1.Append(tableCellLeftMargin1);
            tableCellMarginDefault1.Append(tableCellRightMargin1);
            TableLook tableLook1 = new TableLook()
            {
                Val = "0000", FirstRow = false, LastRow = false, FirstColumn = false, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = false
            };

            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableIndentation1);
            tableProperties1.Append(tableBorders1);
            tableProperties1.Append(tableCellMarginDefault1);
            tableProperties1.Append(tableLook1);

            TableGrid  tableGrid1  = new TableGrid();
            GridColumn gridColumn1 = new GridColumn()
            {
                Width = "2550"
            };
            GridColumn gridColumn2 = new GridColumn()
            {
                Width = "4860"
            };
            GridColumn gridColumn3 = new GridColumn()
            {
                Width = "1379"
            };

            tableGrid1.Append(gridColumn1);
            tableGrid1.Append(gridColumn2);
            tableGrid1.Append(gridColumn3);

            TableRow tableRow1 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", RsidTableRowProperties = "009E39C2", ParagraphId = "0CBEE687", TextId = "77777777"
            };

            TableRowProperties tableRowProperties1 = new TableRowProperties();
            GridAfter          gridAfter1          = new GridAfter()
            {
                Val = 1
            };
            WidthAfterTableRow widthAfterTableRow1 = new WidthAfterTableRow()
            {
                Width = "1379", Type = TableWidthUnitValues.Dxa
            };

            tableRowProperties1.Append(gridAfter1);
            tableRowProperties1.Append(widthAfterTableRow1);

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth      tableCellWidth1      = new TableCellWidth()
            {
                Width = "7410", Type = TableWidthUnitValues.Dxa
            };
            GridSpan gridSpan1 = new GridSpan()
            {
                Val = 2
            };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            TopBorder        topBorder2        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder2 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder2 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder2 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders1.Append(topBorder2);
            tableCellBorders1.Append(leftBorder2);
            tableCellBorders1.Append(bottomBorder2);
            tableCellBorders1.Append(rightBorder2);

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(gridSpan1);
            tableCellProperties1.Append(tableCellBorders1);

            Paragraph paragraph1 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "4C204333", TextId = "77777777"
            };

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            Bold          bold1          = new Bold();
            FontSize      fontSize1      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties1.Append(bold1);
            runProperties1.Append(fontSize1);
            runProperties1.Append(fontSizeComplexScript1);
            Text text1 = new Text();

            text1.Text = "SOCIAL ACTIVITIES / MEMBERSHIPS";

            run1.Append(runProperties1);
            run1.Append(text1);

            Run run2 = new Run();

            RunProperties runProperties2 = new RunProperties();
            FontSize      fontSize2      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties2.Append(fontSize2);
            runProperties2.Append(fontSizeComplexScript2);
            Text text2 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text2.Text = "   ";

            run2.Append(runProperties2);
            run2.Append(text2);

            paragraph1.Append(run1);
            paragraph1.Append(run2);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph1);

            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);

            TableRow tableRow2 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", RsidTableRowProperties = "009E39C2", ParagraphId = "533821CC", TextId = "77777777"
            };

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth      tableCellWidth2      = new TableCellWidth()
            {
                Width = "2550", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders2 = new TableCellBorders();
            TopBorder        topBorder3        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder3 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder3 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder3 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders2.Append(topBorder3);
            tableCellBorders2.Append(leftBorder3);
            tableCellBorders2.Append(bottomBorder3);
            tableCellBorders2.Append(rightBorder3);

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(tableCellBorders2);

            Paragraph paragraph2 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "6899F9F0", TextId = "77777777"
            };

            Run run3 = new Run();

            RunProperties runProperties3 = new RunProperties();
            FontSize      fontSize3      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties3.Append(fontSize3);
            runProperties3.Append(fontSizeComplexScript3);
            Text text3 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text3.Text = " 2011 - 2016 ";

            run3.Append(runProperties3);
            run3.Append(text3);

            paragraph2.Append(run3);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph2);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth      tableCellWidth3      = new TableCellWidth()
            {
                Width = "6239", Type = TableWidthUnitValues.Dxa
            };
            GridSpan gridSpan2 = new GridSpan()
            {
                Val = 2
            };

            TableCellBorders tableCellBorders3 = new TableCellBorders();
            TopBorder        topBorder4        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder4 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)1U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder4 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder4 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders3.Append(topBorder4);
            tableCellBorders3.Append(leftBorder4);
            tableCellBorders3.Append(bottomBorder4);
            tableCellBorders3.Append(rightBorder4);

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(gridSpan2);
            tableCellProperties3.Append(tableCellBorders3);

            Paragraph paragraph3 = new Paragraph()
            {
                RsidParagraphAddition = "009E39C2", RsidParagraphProperties = "009E39C2", RsidRunAdditionDefault = "009E39C2", ParagraphId = "72BA0AEC", TextId = "77777777"
            };

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines()
            {
                After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto
            };
            Indentation indentation1 = new Indentation()
            {
                Left = "271", Hanging = "127"
            };

            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
            FontSize fontSize4 = new FontSize()
            {
                Val = "21"
            };
            FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript()
            {
                Val = "21"
            };

            paragraphMarkRunProperties1.Append(fontSize4);
            paragraphMarkRunProperties1.Append(fontSizeComplexScript4);

            paragraphProperties1.Append(spacingBetweenLines1);
            paragraphProperties1.Append(indentation1);
            paragraphProperties1.Append(paragraphMarkRunProperties1);

            Run run4 = new Run();

            RunProperties runProperties4 = new RunProperties();
            FontSize      fontSize5      = new FontSize()
            {
                Val = "21"
            };
            FontSizeComplexScript fontSizeComplexScript5 = new FontSizeComplexScript()
            {
                Val = "21"
            };

            runProperties4.Append(fontSize5);
            runProperties4.Append(fontSizeComplexScript5);
            Text text4 = new Text();

            text4.Text = "Travel Tour Leader:";

            run4.Append(runProperties4);
            run4.Append(text4);

            paragraph3.Append(paragraphProperties1);
            paragraph3.Append(run4);

            Paragraph paragraph4 = new Paragraph()
            {
                RsidParagraphAddition = "009E39C2", RsidParagraphProperties = "009E39C2", RsidRunAdditionDefault = "009E39C2", ParagraphId = "6641EB68", TextId = "77777777"
            };

            ParagraphProperties paragraphProperties2 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines2 = new SpacingBetweenLines()
            {
                After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto
            };
            Indentation indentation2 = new Indentation()
            {
                Left = "271", Hanging = "127"
            };

            ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();
            FontSize fontSize6 = new FontSize()
            {
                Val = "21"
            };
            FontSizeComplexScript fontSizeComplexScript6 = new FontSizeComplexScript()
            {
                Val = "21"
            };

            paragraphMarkRunProperties2.Append(fontSize6);
            paragraphMarkRunProperties2.Append(fontSizeComplexScript6);

            paragraphProperties2.Append(spacingBetweenLines2);
            paragraphProperties2.Append(indentation2);
            paragraphProperties2.Append(paragraphMarkRunProperties2);

            Run run5 = new Run();

            RunProperties runProperties5 = new RunProperties();
            FontSize      fontSize7      = new FontSize()
            {
                Val = "21"
            };
            FontSizeComplexScript fontSizeComplexScript7 = new FontSizeComplexScript()
            {
                Val = "21"
            };

            runProperties5.Append(fontSize7);
            runProperties5.Append(fontSizeComplexScript7);
            Text text5 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text5.Text = "- Organized and led personal growth focused tour groups to India; ";

            run5.Append(runProperties5);
            run5.Append(text5);

            paragraph4.Append(paragraphProperties2);
            paragraph4.Append(run5);

            Paragraph paragraph5 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidParagraphProperties = "009E39C2", RsidRunAdditionDefault = "009E39C2", ParagraphId = "76165E9A", TextId = "09F0CF60"
            };

            ParagraphProperties paragraphProperties3 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines3 = new SpacingBetweenLines()
            {
                After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto
            };
            Indentation indentation3 = new Indentation()
            {
                Left = "271", Hanging = "127"
            };

            paragraphProperties3.Append(spacingBetweenLines3);
            paragraphProperties3.Append(indentation3);

            Run run6 = new Run();

            RunProperties runProperties6 = new RunProperties();
            FontSize      fontSize8      = new FontSize()
            {
                Val = "21"
            };
            FontSizeComplexScript fontSizeComplexScript8 = new FontSizeComplexScript()
            {
                Val = "21"
            };

            runProperties6.Append(fontSize8);
            runProperties6.Append(fontSizeComplexScript8);
            Text text6 = new Text();

            text6.Text = "- Acted as a liaison between European individuals and Asian spiritual guides";

            run6.Append(runProperties6);
            run6.Append(text6);

            paragraph5.Append(paragraphProperties3);
            paragraph5.Append(run6);

            tableCell3.Append(tableCellProperties3);
            tableCell3.Append(paragraph3);
            tableCell3.Append(paragraph4);
            tableCell3.Append(paragraph5);

            tableRow2.Append(tableCell2);
            tableRow2.Append(tableCell3);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);
            table1.Append(tableRow2);
            return(table1);
        }
Esempio n. 21
0
        private void FillTables(WordprocessingDocument document, DocTable[] tables)
        {
            // get WORD tables
            Table[] originalTables = document.MainDocumentPart.Document.Body.Elements <Table>().ToArray();

            for (int i = 0; i < tables.Length; i++)
            {
                var clientTable = tables[i];

                Table table = originalTables[i];

                TableRow firstRow = table.Elements <TableRow>().ElementAt(0);

                // проход по всем строкам xml таблицы
                foreach (var tr in clientTable.Rows)
                {
                    TableRow newRow = firstRow.CloneRow();
                    var      cells  = tr.Cells;

                    int j = 0;
                    foreach (var td in cells)
                    {
                        if (td == "-")
                        {
                            TableCell firstNewCell = newRow.Elements <TableCell>().First();
                            TableCell toDelCell    = newRow.Elements <TableCell>().ToList()[1];
                            toDelCell.Remove();
                            GridSpan gs = new GridSpan();
                            // TODO: think about skip parameter
                            int countToSkip = cells.Count(x => x == "-") + 1;
                            gs.Val = countToSkip;
                            firstNewCell.TableCellProperties.Append(gs);
                        }
                        else
                        {
                            TableCell newCell = newRow.Elements <TableCell>().ElementAt(j);

                            Text textCop = newCell.Elements <Paragraph>().First().Elements <Run>().First().Elements <Text>().First();

                            // clear all paragraphs
                            foreach (var paragraph in newCell.Elements <Paragraph>())
                            {
                                foreach (var currun in paragraph.Elements <Run>())
                                {
                                    foreach (var curText in currun.Elements <Text>())
                                    {
                                        curText.Remove();
                                    }
                                }
                            }

                            newCell.Elements <Paragraph>().First().Elements <Run>().First().AppendChild(textCop);

                            Paragraph par  = newCell.Elements <Paragraph>().First();
                            Run       run  = par.Elements <Run>().First();
                            Text      text = run.Elements <Text>().First();
                            text.Text = td;

                            j++;
                        }
                    }
                    table.AppendChild(newRow);
                }
            }
        }
Esempio n. 22
0
        public static void CreateWordFile(string FileName)
        {
            using (WordprocessingDocument doc = WordprocessingDocument.Create(FileName, WordprocessingDocumentType.Document))
            {
                //文档主对象
                MainDocumentPart mdp = doc.AddMainDocumentPart();
                mdp.Document = new Document();
                Body body = mdp.Document.AppendChild(new Body());
                //获取表数据
                DataTable TabDT = DBStructure.GetTables();
                if (TabDT != null && TabDT.Rows.Count > 0)
                {
                    Console.WriteLine("共计: " + TabDT.Rows.Count.ToString() + " 个表");
                    Console.WriteLine("序号\t表名\t\t\t\t表描述");
                    int j = 0;
                    foreach (DataRow dr in TabDT.Rows)
                    {
                        j++;
                        //逐个创建表
                        string    TabName        = dr["name"].ToString().Trim();
                        string    TabDescription = (dr["desctxt"] == DBNull.Value ? "" : dr["desctxt"].ToString().Trim());
                        DataTable ColsDT         = DBStructure.GetTableInfo(TabName);

                        if (ColsDT != null && ColsDT.Rows.Count > 0)
                        {
                            #region 插入空段落
                            Paragraph p = mdp.Document.Body.AppendChild(new Paragraph()
                            {
                                RsidParagraphAddition = "007557D9", RsidRunAdditionDefault = "007557D9"
                            });
                            p.AppendChild(new Run(new Text("")));
                            #endregion

                            #region 添加表和表头
                            Table table1 = new Table();

                            TableProperties tableProperties = new TableProperties();
                            TableWidth      tableWidth      = new TableWidth()
                            {
                                Width = "0", Type = TableWidthUnitValues.Auto
                            };

                            TableBorders tableBorders = new TableBorders();
                            TopBorder    topBorder    = new TopBorder()
                            {
                                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                            };
                            LeftBorder leftBorder = new LeftBorder()
                            {
                                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                            };
                            BottomBorder bottomBorder = new BottomBorder()
                            {
                                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                            };
                            RightBorder rightBorder = new RightBorder()
                            {
                                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                            };

                            tableBorders.Append(topBorder);
                            tableBorders.Append(leftBorder);
                            tableBorders.Append(bottomBorder);
                            tableBorders.Append(rightBorder);

                            TableLayout tableLayout = new TableLayout()
                            {
                                Type = TableLayoutValues.Fixed
                            };
                            TableLook tableLook = new TableLook()
                            {
                                Val = "0000"
                            };

                            tableProperties.Append(tableWidth);
                            tableProperties.Append(tableBorders);
                            tableProperties.Append(tableLayout);
                            tableProperties.Append(tableLook);

                            TableGrid tableGrid = new TableGrid();
                            int[]     ColWidths = new[] { 1800, 1000, 700, 700, 700, 700, 3100 };
                            for (int i = 0; i < 7; i++)
                            {
                                GridColumn gCol = new GridColumn()
                                {
                                    Width = ColWidths[i].ToString()
                                };
                                tableGrid.Append(gCol);
                            }

                            TableRow nameRow = new TableRow()
                            {
                                RsidTableRowAddition = "007557D9", RsidTableRowProperties = "00096DED"
                            };

                            TablePropertyExceptions tablePropertyExceptions_name = new TablePropertyExceptions();
                            TableCellMarginDefault  tableCellMarginDefault_name  = new TableCellMarginDefault();
                            TopMargin topMargin_name = new TopMargin()
                            {
                                Width = "0", Type = TableWidthUnitValues.Dxa
                            };
                            BottomMargin bottomMargin_name = new BottomMargin()
                            {
                                Width = "0", Type = TableWidthUnitValues.Dxa
                            };

                            tableCellMarginDefault_name.Append(topMargin_name);
                            tableCellMarginDefault_name.Append(bottomMargin_name);

                            tablePropertyExceptions_name.Append(tableCellMarginDefault_name);

                            TableRowProperties tableRowProperties_name = new TableRowProperties();
                            CantSplit          cantSplit_name          = new CantSplit();
                            TableHeader        tableHeader_name        = new TableHeader();

                            tableRowProperties_name.Append(cantSplit_name);
                            tableRowProperties_name.Append(tableHeader_name);

                            TableCell tableCell_name = new TableCell();

                            TableCellProperties tableCellProperties_name = new TableCellProperties();
                            TableCellWidth      tableCellWidth_name      = new TableCellWidth()
                            {
                                Width = "8500", Type = TableWidthUnitValues.Dxa
                            };
                            GridSpan gridSpan_name = new GridSpan()
                            {
                                Val = 7
                            };

                            TableCellBorders tableCellBorders_name = new TableCellBorders();
                            TopBorder        topBorder_name        = new TopBorder()
                            {
                                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                            };
                            BottomBorder bottomBorder_name = new BottomBorder()
                            {
                                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                            };
                            RightBorder rightBorder_name = new RightBorder()
                            {
                                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                            };
                            LeftBorder leftBorder_name = new LeftBorder()
                            {
                                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                            };

                            tableCellBorders_name.Append(topBorder_name);
                            tableCellBorders_name.Append(rightBorder_name);
                            tableCellBorders_name.Append(bottomBorder_name);
                            tableCellBorders_name.Append(leftBorder_name);
                            Shading shading_name = new Shading()
                            {
                                Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto"
                            };
                            TableCellVerticalAlignment tableCellVerticalAlignment_name = new TableCellVerticalAlignment()
                            {
                                Val = TableVerticalAlignmentValues.Center
                            };

                            tableCellProperties_name.Append(tableCellWidth_name);
                            tableCellProperties_name.Append(gridSpan_name);
                            tableCellProperties_name.Append(tableCellBorders_name);
                            tableCellProperties_name.Append(shading_name);
                            tableCellProperties_name.Append(tableCellVerticalAlignment_name);

                            Paragraph paragraph_name = new Paragraph()
                            {
                                RsidParagraphAddition = "007557D9", RsidRunAdditionDefault = "007557D9"
                            };

                            Run run_name = new Run();

                            RunProperties runProperties_name = new RunProperties();
                            RunFonts      runFonts_name      = new RunFonts()
                            {
                                Hint = FontTypeHintValues.EastAsia
                            };

                            runProperties_name.Append(runFonts_name);
                            Text text_name = new Text();
                            text_name.Text = TabName + ":" + TabDescription;

                            run_name.Append(runProperties_name);
                            run_name.Append(text_name);

                            paragraph_name.Append(run_name);

                            tableCell_name.Append(tableCellProperties_name);
                            tableCell_name.Append(paragraph_name);

                            nameRow.Append(tablePropertyExceptions_name);
                            nameRow.Append(tableRowProperties_name);
                            nameRow.Append(tableCell_name);
                            table1.AppendChild(nameRow);
                            #endregion

                            //表头定义
                            TableRow headerRow = new TableRow()
                            {
                                RsidTableRowAddition = "007557D9", RsidTableRowProperties = "007557D9"
                            };
                            TablePropertyExceptions tablePropertyExceptions_header = new TablePropertyExceptions();
                            TableCellMarginDefault  tableCellMarginDefault_header  = new TableCellMarginDefault();
                            TopMargin topMargin_header = new TopMargin()
                            {
                                Width = "0", Type = TableWidthUnitValues.Dxa
                            };
                            BottomMargin bottomMargin_header = new BottomMargin()
                            {
                                Width = "0", Type = TableWidthUnitValues.Dxa
                            };
                            tableCellMarginDefault_header.Append(topMargin_header);
                            tableCellMarginDefault_header.Append(bottomMargin_header);
                            tablePropertyExceptions_header.Append(tableCellMarginDefault_header);
                            TableRowProperties tableRowProperties_header = new TableRowProperties();
                            CantSplit          cantSplit_header          = new CantSplit();
                            tableRowProperties_header.Append(cantSplit_header);

                            string[] HeaderArray = new string[] { "列名", "类型", "长度", "可空", "自增", "主键", "描述" };
                            int      HeadIndex   = 0;
                            foreach (string headstr in HeaderArray)
                            {
                                TableCell titleCell = new TableCell();

                                TableCellProperties tableCellProperties_header = new TableCellProperties();
                                TableCellWidth      tableCellWidth_header      = new TableCellWidth()
                                {
                                    Width = ColWidths[HeadIndex].ToString(), Type = TableWidthUnitValues.Dxa
                                };

                                TableCellBorders tableCellBorders_header = new TableCellBorders();
                                TopBorder        topBorder_header        = new TopBorder()
                                {
                                    Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                                };
                                BottomBorder bottomBorder_header = new BottomBorder()
                                {
                                    Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                                };
                                RightBorder rightBorder_header = new RightBorder()
                                {
                                    Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                                };
                                LeftBorder leftBorder_header = new LeftBorder()
                                {
                                    Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                                };

                                tableCellBorders_header.Append(topBorder_header);
                                tableCellBorders_header.Append(bottomBorder_header);
                                tableCellBorders_header.Append(rightBorder_header);
                                tableCellBorders_header.Append(leftBorder_header);
                                Shading shading_header = new Shading()
                                {
                                    Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto"
                                };

                                tableCellProperties_header.Append(tableCellWidth_header);
                                tableCellProperties_header.Append(tableCellBorders_header);
                                tableCellProperties_header.Append(shading_header);

                                Paragraph paragraph_header = new Paragraph()
                                {
                                    RsidParagraphAddition = "007557D9", RsidRunAdditionDefault = "007557D9"
                                };

                                Run run_header = new Run();

                                RunProperties runProperties_header = new RunProperties();
                                RunFonts      runFonts_header      = new RunFonts()
                                {
                                    Hint = FontTypeHintValues.EastAsia
                                };

                                runProperties_header.Append(runFonts_header);
                                Text text_header = new Text();
                                text_header.Text = headstr;

                                run_header.Append(runProperties_header);
                                run_header.Append(text_header);

                                paragraph_header.Append(run_header);

                                titleCell.Append(tableCellProperties_header);
                                titleCell.Append(paragraph_header);


                                headerRow.Append(titleCell);
                                HeadIndex++;
                            }
                            headerRow.Append(tablePropertyExceptions_header);
                            headerRow.Append(tableRowProperties_header);
                            table1.AppendChild(headerRow);

                            foreach (DataRow subdr in ColsDT.Rows)
                            {
                                TableRow dataRow = new TableRow();
                                TablePropertyExceptions tablePropertyExceptions_data = new TablePropertyExceptions();
                                TableCellMarginDefault  tableCellMarginDefault_data  = new TableCellMarginDefault();
                                TopMargin topMargin_data = new TopMargin()
                                {
                                    Width = "0", Type = TableWidthUnitValues.Dxa
                                };
                                BottomMargin bottomMargin_data = new BottomMargin()
                                {
                                    Width = "0", Type = TableWidthUnitValues.Dxa
                                };
                                tableCellMarginDefault_data.Append(topMargin_data);
                                tableCellMarginDefault_data.Append(bottomMargin_data);
                                tablePropertyExceptions_data.Append(tableCellMarginDefault_data);
                                TableRowProperties tableRowProperties_data = new TableRowProperties();
                                CantSplit          cantSplit_data          = new CantSplit();
                                tableRowProperties_data.Append(cantSplit_data);

                                int DataIndex = 0;
                                foreach (string header in HeaderArray)
                                {
                                    TableCell dataCell = new TableCell();

                                    TableCellProperties tableCellProperties_data = new TableCellProperties();
                                    TableCellWidth      tableCellWidth_data      = new TableCellWidth()
                                    {
                                        Width = ColWidths[DataIndex].ToString(), Type = TableWidthUnitValues.Dxa
                                    };

                                    TableCellBorders tableCellBorders_data = new TableCellBorders();
                                    TopBorder        topBorder_data        = new TopBorder()
                                    {
                                        Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                                    };
                                    BottomBorder bottomBorder_data = new BottomBorder()
                                    {
                                        Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                                    };
                                    RightBorder rightBorder_data = new RightBorder()
                                    {
                                        Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                                    };
                                    LeftBorder leftBorder_data = new LeftBorder()
                                    {
                                        Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)2U, Space = (UInt32Value)0U
                                    };

                                    tableCellBorders_data.Append(topBorder_data);
                                    tableCellBorders_data.Append(bottomBorder_data);
                                    tableCellBorders_data.Append(rightBorder_data);
                                    tableCellBorders_data.Append(leftBorder_data);
                                    Shading shading_data = new Shading()
                                    {
                                        Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto"
                                    };

                                    tableCellProperties_data.Append(tableCellWidth_data);
                                    tableCellProperties_data.Append(tableCellBorders_data);
                                    tableCellProperties_data.Append(shading_data);

                                    Paragraph paragraph_data = new Paragraph()
                                    {
                                        RsidParagraphAddition = "007557D9", RsidRunAdditionDefault = "007557D9"
                                    };

                                    Run run_data = new Run();

                                    RunProperties runProperties_data = new RunProperties();
                                    RunFonts      runFonts_data      = new RunFonts()
                                    {
                                        Hint = FontTypeHintValues.EastAsia
                                    };

                                    runProperties_data.Append(runFonts_data);
                                    Text text_data = new Text();
                                    text_data.Text = subdr[header].ToString();

                                    run_data.Append(runProperties_data);
                                    run_data.Append(text_data);

                                    paragraph_data.Append(run_data);

                                    dataCell.Append(tableCellProperties_data);
                                    dataCell.Append(paragraph_data);

                                    dataRow.Append(dataCell);
                                    DataIndex++;
                                }
                                dataRow.Append(tablePropertyExceptions_data);
                                dataRow.Append(tableRowProperties_data);

                                table1.AppendChild(dataRow);
                            }
                            Console.WriteLine(string.Format("{0}\t{1}\t\t\t\t{2}", j, TabName, TabDescription));
                            body.Append(table1);
                            Paragraph p1 = new Paragraph(new Run(new Text("")));
                            body.Append(p1);
                        }
                    }
                }
            }
        }
Esempio n. 23
0
 public PlatformGridSpan(GridSpan gridSpan)
     : base(gridSpan)
 {
     this.gridSpan = gridSpan;
 }
Esempio n. 24
0
        // Generates content of mainDocumentPart1.
        private void GenerateMainDocumentPart1Content(MainDocumentPart mainDocumentPart1)
        {
            Document document1 = new Document() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "w14 w15 w16se wp14" } };
            document1.AddNamespaceDeclaration("wpc", "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas");
            document1.AddNamespaceDeclaration("cx", "http://schemas.microsoft.com/office/drawing/2014/chartex");
            document1.AddNamespaceDeclaration("cx1", "http://schemas.microsoft.com/office/drawing/2015/9/8/chartex");
            document1.AddNamespaceDeclaration("cx2", "http://schemas.microsoft.com/office/drawing/2015/10/21/chartex");
            document1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            document1.AddNamespaceDeclaration("o", "urn:schemas-microsoft-com:office:office");
            document1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            document1.AddNamespaceDeclaration("m", "http://schemas.openxmlformats.org/officeDocument/2006/math");
            document1.AddNamespaceDeclaration("v", "urn:schemas-microsoft-com:vml");
            document1.AddNamespaceDeclaration("wp14", "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing");
            document1.AddNamespaceDeclaration("wp", "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing");
            document1.AddNamespaceDeclaration("w10", "urn:schemas-microsoft-com:office:word");
            document1.AddNamespaceDeclaration("w", "http://schemas.openxmlformats.org/wordprocessingml/2006/main");
            document1.AddNamespaceDeclaration("w14", "http://schemas.microsoft.com/office/word/2010/wordml");
            document1.AddNamespaceDeclaration("w15", "http://schemas.microsoft.com/office/word/2012/wordml");
            document1.AddNamespaceDeclaration("w16se", "http://schemas.microsoft.com/office/word/2015/wordml/symex");
            document1.AddNamespaceDeclaration("wpg", "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup");
            document1.AddNamespaceDeclaration("wpi", "http://schemas.microsoft.com/office/word/2010/wordprocessingInk");
            document1.AddNamespaceDeclaration("wne", "http://schemas.microsoft.com/office/word/2006/wordml");
            document1.AddNamespaceDeclaration("wps", "http://schemas.microsoft.com/office/word/2010/wordprocessingShape");

            Body body1 = new Body();

            Paragraph paragraph1 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "008129E8", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "001D0DE9", ParagraphId = "0AAC1914", TextId = "772958DA" };

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId() { Val = "Title" };

            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
            Bold bold1 = new Bold() { Val = false };
            FontSize fontSize1 = new FontSize() { Val = "72" };

            paragraphMarkRunProperties1.Append(bold1);
            paragraphMarkRunProperties1.Append(fontSize1);

            paragraphProperties1.Append(paragraphStyleId1);
            paragraphProperties1.Append(paragraphMarkRunProperties1);
            BookmarkStart bookmarkStart1 = new BookmarkStart() { Name = "_GoBack", Id = "0" };
            BookmarkEnd bookmarkEnd1 = new BookmarkEnd() { Id = "0" };

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            FontSize fontSize2 = new FontSize() { Val = "72" };

            runProperties1.Append(fontSize2);
            Text text1 = new Text();
            text1.Text = "P";

            run1.Append(runProperties1);
            run1.Append(text1);

            Run run2 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "008129E8" };

            RunProperties runProperties2 = new RunProperties();
            FontSize fontSize3 = new FontSize() { Val = "72" };

            runProperties2.Append(fontSize3);
            Text text2 = new Text();
            text2.Text = "roject:";

            run2.Append(runProperties2);
            run2.Append(text2);

            paragraph1.Append(paragraphProperties1);
            paragraph1.Append(bookmarkStart1);
            paragraph1.Append(bookmarkEnd1);
            paragraph1.Append(run1);
            paragraph1.Append(run2);

            Paragraph paragraph2 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "008129E8", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "008129E8", ParagraphId = "0AAC1915", TextId = "5B14AE4B" };

            ParagraphProperties paragraphProperties2 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId2 = new ParagraphStyleId() { Val = "Title" };

            ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();
            Bold bold2 = new Bold() { Val = false };
            Color color1 = new Color() { Val = "FF0000" };
            FontSize fontSize4 = new FontSize() { Val = "72" };

            paragraphMarkRunProperties2.Append(bold2);
            paragraphMarkRunProperties2.Append(color1);
            paragraphMarkRunProperties2.Append(fontSize4);

            paragraphProperties2.Append(paragraphStyleId2);
            paragraphProperties2.Append(paragraphMarkRunProperties2);

            Run run3 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties3 = new RunProperties();
            Color color2 = new Color() { Val = "FF0000" };
            FontSize fontSize5 = new FontSize() { Val = "72" };

            runProperties3.Append(color2);
            runProperties3.Append(fontSize5);
            Text text3 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text3.Text = " ";

            run3.Append(runProperties3);
            run3.Append(text3);

            Run run4 = new Run() { RsidRunAddition = "00E113A4" };

            RunProperties runProperties4 = new RunProperties();
            Color color3 = new Color() { Val = "FF0000" };
            FontSize fontSize6 = new FontSize() { Val = "72" };

            runProperties4.Append(color3);
            runProperties4.Append(fontSize6);
            Text text4 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text4.Text = "EVERYTHING IN RED NEEDS TO BE MADE BLACK ";

            run4.Append(runProperties4);
            run4.Append(text4);

            Run run5 = new Run() { RsidRunAddition = "0057090B" };

            RunProperties runProperties5 = new RunProperties();
            Color color4 = new Color() { Val = "FF0000" };
            FontSize fontSize7 = new FontSize() { Val = "72" };

            runProperties5.Append(color4);
            runProperties5.Append(fontSize7);
            Text text5 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text5.Text = "OR REMOVED ";

            run5.Append(runProperties5);
            run5.Append(text5);

            Run run6 = new Run() { RsidRunAddition = "00E113A4" };

            RunProperties runProperties6 = new RunProperties();
            Color color5 = new Color() { Val = "FF0000" };
            FontSize fontSize8 = new FontSize() { Val = "72" };

            runProperties6.Append(color5);
            runProperties6.Append(fontSize8);
            Text text6 = new Text();
            text6.Text = "WHEN COMPLETE";

            run6.Append(runProperties6);
            run6.Append(text6);

            paragraph2.Append(paragraphProperties2);
            paragraph2.Append(run3);
            paragraph2.Append(run4);
            paragraph2.Append(run5);
            paragraph2.Append(run6);

            Paragraph paragraph3 = new Paragraph() { RsidParagraphAddition = "00116831", RsidParagraphProperties = "005244EE", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1916", TextId = "77777777" };

            ParagraphProperties paragraphProperties3 = new ParagraphProperties();
            Justification justification1 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();
            RunFonts runFonts1 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold3 = new Bold();
            FontSize fontSize9 = new FontSize() { Val = "56" };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript() { Val = "56" };

            paragraphMarkRunProperties3.Append(runFonts1);
            paragraphMarkRunProperties3.Append(bold3);
            paragraphMarkRunProperties3.Append(fontSize9);
            paragraphMarkRunProperties3.Append(fontSizeComplexScript1);

            paragraphProperties3.Append(justification1);
            paragraphProperties3.Append(paragraphMarkRunProperties3);

            paragraph3.Append(paragraphProperties3);

            Paragraph paragraph4 = new Paragraph() { RsidParagraphAddition = "001D0DE9", RsidParagraphProperties = "005244EE", RsidRunAdditionDefault = "001D0DE9", ParagraphId = "084293D1", TextId = "77777777" };

            ParagraphProperties paragraphProperties4 = new ParagraphProperties();
            Justification justification2 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties4 = new ParagraphMarkRunProperties();
            RunFonts runFonts2 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold4 = new Bold();
            FontSize fontSize10 = new FontSize() { Val = "56" };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript() { Val = "56" };

            paragraphMarkRunProperties4.Append(runFonts2);
            paragraphMarkRunProperties4.Append(bold4);
            paragraphMarkRunProperties4.Append(fontSize10);
            paragraphMarkRunProperties4.Append(fontSizeComplexScript2);

            paragraphProperties4.Append(justification2);
            paragraphProperties4.Append(paragraphMarkRunProperties4);

            paragraph4.Append(paragraphProperties4);

            Paragraph paragraph5 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00842AF5", RsidParagraphProperties = "005244EE", RsidRunAdditionDefault = "003E56E7", ParagraphId = "0AAC1918", TextId = "2D5206F0" };

            ParagraphProperties paragraphProperties5 = new ParagraphProperties();
            Justification justification3 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties5 = new ParagraphMarkRunProperties();
            RunFonts runFonts3 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold5 = new Bold();
            Color color6 = new Color() { Val = "FF0000" };
            FontSize fontSize11 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript() { Val = "56" };

            paragraphMarkRunProperties5.Append(runFonts3);
            paragraphMarkRunProperties5.Append(bold5);
            paragraphMarkRunProperties5.Append(color6);
            paragraphMarkRunProperties5.Append(fontSize11);
            paragraphMarkRunProperties5.Append(fontSizeComplexScript3);

            paragraphProperties5.Append(justification3);
            paragraphProperties5.Append(paragraphMarkRunProperties5);

            Run run7 = new Run();

            RunProperties runProperties7 = new RunProperties();
            RunFonts runFonts4 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold6 = new Bold();
            FontSize fontSize12 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript() { Val = "56" };

            runProperties7.Append(runFonts4);
            runProperties7.Append(bold6);
            runProperties7.Append(fontSize12);
            runProperties7.Append(fontSizeComplexScript4);
            Text text7 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text7.Text = "Completed by: ";

            run7.Append(runProperties7);
            run7.Append(text7);

            Run run8 = new Run() { RsidRunAddition = "0057090B" };

            RunProperties runProperties8 = new RunProperties();
            RunFonts runFonts5 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold7 = new Bold();
            Color color7 = new Color() { Val = "FF0000" };
            FontSize fontSize13 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript5 = new FontSizeComplexScript() { Val = "56" };

            runProperties8.Append(runFonts5);
            runProperties8.Append(bold7);
            runProperties8.Append(color7);
            runProperties8.Append(fontSize13);
            runProperties8.Append(fontSizeComplexScript5);
            Text text8 = new Text();
            text8.Text = "JohnQ";

            run8.Append(runProperties8);
            run8.Append(text8);

            Run run9 = new Run();

            RunProperties runProperties9 = new RunProperties();
            RunFonts runFonts6 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold8 = new Bold();
            Color color8 = new Color() { Val = "FF0000" };
            FontSize fontSize14 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript6 = new FontSizeComplexScript() { Val = "56" };

            runProperties9.Append(runFonts6);
            runProperties9.Append(bold8);
            runProperties9.Append(color8);
            runProperties9.Append(fontSize14);
            runProperties9.Append(fontSizeComplexScript6);
            Text text9 = new Text();
            text9.Text = "Public";

            run9.Append(runProperties9);
            run9.Append(text9);

            paragraph5.Append(paragraphProperties5);
            paragraph5.Append(run7);
            paragraph5.Append(run8);
            paragraph5.Append(run9);

            Paragraph paragraph6 = new Paragraph() { RsidParagraphMarkRevision = "001A269D", RsidParagraphAddition = "008129E8", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "000C02D8", ParagraphId = "0AAC191B", TextId = "18BDDE3A" };

            ParagraphProperties paragraphProperties6 = new ParagraphProperties();
            Justification justification4 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties6 = new ParagraphMarkRunProperties();
            RunFonts runFonts7 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold9 = new Bold();
            Color color9 = new Color() { Val = "FF0000" };
            FontSize fontSize15 = new FontSize() { Val = "36" };
            FontSizeComplexScript fontSizeComplexScript7 = new FontSizeComplexScript() { Val = "56" };

            paragraphMarkRunProperties6.Append(runFonts7);
            paragraphMarkRunProperties6.Append(bold9);
            paragraphMarkRunProperties6.Append(color9);
            paragraphMarkRunProperties6.Append(fontSize15);
            paragraphMarkRunProperties6.Append(fontSizeComplexScript7);

            paragraphProperties6.Append(justification4);
            paragraphProperties6.Append(paragraphMarkRunProperties6);

            Run run10 = new Run();

            RunProperties runProperties10 = new RunProperties();
            RunFonts runFonts8 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold10 = new Bold();
            FontSize fontSize16 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript8 = new FontSizeComplexScript() { Val = "56" };

            runProperties10.Append(runFonts8);
            runProperties10.Append(bold10);
            runProperties10.Append(fontSize16);
            runProperties10.Append(fontSizeComplexScript8);
            Text text10 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text10.Text = "Interview Start ";

            run10.Append(runProperties10);
            run10.Append(text10);

            Run run11 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties11 = new RunProperties();
            RunFonts runFonts9 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold11 = new Bold();
            FontSize fontSize17 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript9 = new FontSizeComplexScript() { Val = "56" };

            runProperties11.Append(runFonts9);
            runProperties11.Append(bold11);
            runProperties11.Append(fontSize17);
            runProperties11.Append(fontSizeComplexScript9);
            Text text11 = new Text();
            text11.Text = "D";

            run11.Append(runProperties11);
            run11.Append(text11);

            Run run12 = new Run();

            RunProperties runProperties12 = new RunProperties();
            RunFonts runFonts10 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold12 = new Bold();
            FontSize fontSize18 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript10 = new FontSizeComplexScript() { Val = "56" };

            runProperties12.Append(runFonts10);
            runProperties12.Append(bold12);
            runProperties12.Append(fontSize18);
            runProperties12.Append(fontSizeComplexScript10);
            Text text12 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text12.Text = "ate: ";

            run12.Append(runProperties12);
            run12.Append(text12);

            Run run13 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "003E56E7" };

            RunProperties runProperties13 = new RunProperties();
            RunFonts runFonts11 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold13 = new Bold();
            Color color10 = new Color() { Val = "FF0000" };
            FontSize fontSize19 = new FontSize() { Val = "36" };
            FontSizeComplexScript fontSizeComplexScript11 = new FontSizeComplexScript() { Val = "56" };

            runProperties13.Append(runFonts11);
            runProperties13.Append(bold13);
            runProperties13.Append(color10);
            runProperties13.Append(fontSize19);
            runProperties13.Append(fontSizeComplexScript11);
            Text text13 = new Text();
            text13.Text = "xx/xx";

            run13.Append(runProperties13);
            run13.Append(text13);

            Run run14 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties14 = new RunProperties();
            RunFonts runFonts12 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold14 = new Bold();
            Color color11 = new Color() { Val = "FF0000" };
            FontSize fontSize20 = new FontSize() { Val = "36" };
            FontSizeComplexScript fontSizeComplexScript12 = new FontSizeComplexScript() { Val = "56" };

            runProperties14.Append(runFonts12);
            runProperties14.Append(bold14);
            runProperties14.Append(color11);
            runProperties14.Append(fontSize20);
            runProperties14.Append(fontSizeComplexScript12);
            Text text14 = new Text();
            text14.Text = "/201";

            run14.Append(runProperties14);
            run14.Append(text14);

            Run run15 = new Run() { RsidRunAddition = "00FF18D7" };

            RunProperties runProperties15 = new RunProperties();
            RunFonts runFonts13 = new RunFonts() { Ascii = "Arial Black", HighAnsi = "Arial Black", ComplexScript = "Arial" };
            Bold bold15 = new Bold();
            Color color12 = new Color() { Val = "FF0000" };
            FontSize fontSize21 = new FontSize() { Val = "36" };
            FontSizeComplexScript fontSizeComplexScript13 = new FontSizeComplexScript() { Val = "56" };

            runProperties15.Append(runFonts13);
            runProperties15.Append(bold15);
            runProperties15.Append(color12);
            runProperties15.Append(fontSize21);
            runProperties15.Append(fontSizeComplexScript13);
            Text text15 = new Text();
            text15.Text = "5";

            run15.Append(runProperties15);
            run15.Append(text15);

            paragraph6.Append(paragraphProperties6);
            paragraph6.Append(run10);
            paragraph6.Append(run11);
            paragraph6.Append(run12);
            paragraph6.Append(run13);
            paragraph6.Append(run14);
            paragraph6.Append(run15);

            Paragraph paragraph7 = new Paragraph() { RsidParagraphAddition = "00116831", RsidParagraphProperties = "005244EE", RsidRunAdditionDefault = "00E801CE", ParagraphId = "0AAC191E", TextId = "58B17A74" };

            ParagraphProperties paragraphProperties7 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId3 = new ParagraphStyleId() { Val = "Heading1" };
            KeepLines keepLines1 = new KeepLines();

            ParagraphBorders paragraphBorders1 = new ParagraphBorders();
            TopBorder topBorder1 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)6U, Space = (UInt32Value)1U };
            BetweenBorder betweenBorder1 = new BetweenBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)6U, Space = (UInt32Value)1U };

            paragraphBorders1.Append(topBorder1);
            paragraphBorders1.Append(betweenBorder1);
            OverflowPunctuation overflowPunctuation1 = new OverflowPunctuation() { Val = false };
            AutoSpaceDE autoSpaceDE1 = new AutoSpaceDE() { Val = false };
            AutoSpaceDN autoSpaceDN1 = new AutoSpaceDN() { Val = false };
            AdjustRightIndent adjustRightIndent1 = new AdjustRightIndent() { Val = false };
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines() { Before = "360", After = "86" };
            Justification justification5 = new Justification() { Val = JustificationValues.Center };
            TextAlignment textAlignment1 = new TextAlignment() { Val = VerticalTextAlignmentValues.Baseline };

            ParagraphMarkRunProperties paragraphMarkRunProperties7 = new ParagraphMarkRunProperties();
            RunFonts runFonts14 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };

            paragraphMarkRunProperties7.Append(runFonts14);

            paragraphProperties7.Append(paragraphStyleId3);
            paragraphProperties7.Append(keepLines1);
            paragraphProperties7.Append(paragraphBorders1);
            paragraphProperties7.Append(overflowPunctuation1);
            paragraphProperties7.Append(autoSpaceDE1);
            paragraphProperties7.Append(autoSpaceDN1);
            paragraphProperties7.Append(adjustRightIndent1);
            paragraphProperties7.Append(spacingBetweenLines1);
            paragraphProperties7.Append(justification5);
            paragraphProperties7.Append(textAlignment1);
            paragraphProperties7.Append(paragraphMarkRunProperties7);

            Run run16 = new Run();

            RunProperties runProperties16 = new RunProperties();
            NoProof noProof1 = new NoProof();

            runProperties16.Append(noProof1);

            Drawing drawing1 = new Drawing();

            Wp.Anchor anchor1 = new Wp.Anchor() { DistanceFromTop = (UInt32Value)0U, DistanceFromBottom = (UInt32Value)0U, DistanceFromLeft = (UInt32Value)114300U, DistanceFromRight = (UInt32Value)114300U, SimplePos = false, RelativeHeight = (UInt32Value)251658240U, BehindDoc = false, Locked = false, LayoutInCell = true, AllowOverlap = true, EditId = "723217DF", AnchorId = "2BB3A3DC" };
            Wp.SimplePosition simplePosition1 = new Wp.SimplePosition() { X = 0L, Y = 0L };

            Wp.HorizontalPosition horizontalPosition1 = new Wp.HorizontalPosition() { RelativeFrom = Wp.HorizontalRelativePositionValues.Column };
            Wp.PositionOffset positionOffset1 = new Wp.PositionOffset();
            positionOffset1.Text = "2446020";

            horizontalPosition1.Append(positionOffset1);

            Wp.VerticalPosition verticalPosition1 = new Wp.VerticalPosition() { RelativeFrom = Wp.VerticalRelativePositionValues.Paragraph };
            Wp.PositionOffset positionOffset2 = new Wp.PositionOffset();
            positionOffset2.Text = "509270";

            verticalPosition1.Append(positionOffset2);
            Wp.Extent extent1 = new Wp.Extent() { Cx = 3333750L, Cy = 466725L };
            Wp.EffectExtent effectExtent1 = new Wp.EffectExtent() { LeftEdge = 19050L, TopEdge = 19050L, RightEdge = 19050L, BottomEdge = 28575L };
            Wp.WrapNone wrapNone1 = new Wp.WrapNone();
            Wp.DocProperties docProperties1 = new Wp.DocProperties() { Id = (UInt32Value)3U, Name = "Picture 3" };

            Wp.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties1 = new Wp.NonVisualGraphicFrameDrawingProperties();

            A.GraphicFrameLocks graphicFrameLocks1 = new A.GraphicFrameLocks() { NoChangeAspect = true };
            graphicFrameLocks1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            nonVisualGraphicFrameDrawingProperties1.Append(graphicFrameLocks1);

            A.Graphic graphic1 = new A.Graphic();
            graphic1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.GraphicData graphicData1 = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/picture" };

            Pic.Picture picture1 = new Pic.Picture();
            picture1.AddNamespaceDeclaration("pic", "http://schemas.openxmlformats.org/drawingml/2006/picture");

            Pic.NonVisualPictureProperties nonVisualPictureProperties1 = new Pic.NonVisualPictureProperties();
            Pic.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Pic.NonVisualDrawingProperties() { Id = (UInt32Value)0U, Name = "Picture 3" };

            Pic.NonVisualPictureDrawingProperties nonVisualPictureDrawingProperties1 = new Pic.NonVisualPictureDrawingProperties();
            A.PictureLocks pictureLocks1 = new A.PictureLocks() { NoChangeAspect = true, NoChangeArrowheads = true };

            nonVisualPictureDrawingProperties1.Append(pictureLocks1);

            nonVisualPictureProperties1.Append(nonVisualDrawingProperties1);
            nonVisualPictureProperties1.Append(nonVisualPictureDrawingProperties1);

            Pic.BlipFill blipFill1 = new Pic.BlipFill();

            A.Blip blip1 = new A.Blip() { Embed = "rId11" };

            A.BlipExtensionList blipExtensionList1 = new A.BlipExtensionList();

            A.BlipExtension blipExtension1 = new A.BlipExtension() { Uri = "{28A0092B-C50C-407E-A947-70E740481C1C}" };

            A14.UseLocalDpi useLocalDpi1 = new A14.UseLocalDpi() { Val = false };
            useLocalDpi1.AddNamespaceDeclaration("a14", "http://schemas.microsoft.com/office/drawing/2010/main");

            blipExtension1.Append(useLocalDpi1);

            blipExtensionList1.Append(blipExtension1);

            blip1.Append(blipExtensionList1);
            A.SourceRectangle sourceRectangle1 = new A.SourceRectangle();

            A.Stretch stretch1 = new A.Stretch();
            A.FillRectangle fillRectangle1 = new A.FillRectangle();

            stretch1.Append(fillRectangle1);

            blipFill1.Append(blip1);
            blipFill1.Append(sourceRectangle1);
            blipFill1.Append(stretch1);

            Pic.ShapeProperties shapeProperties1 = new Pic.ShapeProperties() { BlackWhiteMode = A.BlackWhiteModeValues.Auto };

            A.Transform2D transform2D1 = new A.Transform2D();
            A.Offset offset1 = new A.Offset() { X = 0L, Y = 0L };
            A.Extents extents1 = new A.Extents() { Cx = 3333750L, Cy = 466725L };

            transform2D1.Append(offset1);
            transform2D1.Append(extents1);

            A.PresetGeometry presetGeometry1 = new A.PresetGeometry() { Preset = A.ShapeTypeValues.Rectangle };
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();

            presetGeometry1.Append(adjustValueList1);

            A.SolidFill solidFill1 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex() { Val = "FFFFFF" };

            solidFill1.Append(rgbColorModelHex1);

            A.Outline outline1 = new A.Outline() { Width = 9525 };

            A.SolidFill solidFill2 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex() { Val = "000000" };

            solidFill2.Append(rgbColorModelHex2);
            A.Miter miter1 = new A.Miter() { Limit = 800000 };
            A.HeadEnd headEnd1 = new A.HeadEnd();
            A.TailEnd tailEnd1 = new A.TailEnd();

            outline1.Append(solidFill2);
            outline1.Append(miter1);
            outline1.Append(headEnd1);
            outline1.Append(tailEnd1);

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(presetGeometry1);
            shapeProperties1.Append(solidFill1);
            shapeProperties1.Append(outline1);

            picture1.Append(nonVisualPictureProperties1);
            picture1.Append(blipFill1);
            picture1.Append(shapeProperties1);

            graphicData1.Append(picture1);

            graphic1.Append(graphicData1);

            Wp14.RelativeWidth relativeWidth1 = new Wp14.RelativeWidth() { ObjectId = Wp14.SizeRelativeHorizontallyValues.Page };
            Wp14.PercentageWidth percentageWidth1 = new Wp14.PercentageWidth();
            percentageWidth1.Text = "0";

            relativeWidth1.Append(percentageWidth1);

            Wp14.RelativeHeight relativeHeight1 = new Wp14.RelativeHeight() { RelativeFrom = Wp14.SizeRelativeVerticallyValues.Page };
            Wp14.PercentageHeight percentageHeight1 = new Wp14.PercentageHeight();
            percentageHeight1.Text = "0";

            relativeHeight1.Append(percentageHeight1);

            anchor1.Append(simplePosition1);
            anchor1.Append(horizontalPosition1);
            anchor1.Append(verticalPosition1);
            anchor1.Append(extent1);
            anchor1.Append(effectExtent1);
            anchor1.Append(wrapNone1);
            anchor1.Append(docProperties1);
            anchor1.Append(nonVisualGraphicFrameDrawingProperties1);
            anchor1.Append(graphic1);
            anchor1.Append(relativeWidth1);
            anchor1.Append(relativeHeight1);

            drawing1.Append(anchor1);

            run16.Append(runProperties16);
            run16.Append(drawing1);

            paragraph7.Append(paragraphProperties7);
            paragraph7.Append(run16);

            Paragraph paragraph8 = new Paragraph() { RsidParagraphAddition = "008A2AF7", RsidRunAdditionDefault = "008A2AF7", ParagraphId = "4418252A", TextId = "0AE0F2E2" };

            ParagraphProperties paragraphProperties8 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties8 = new ParagraphMarkRunProperties();
            RunFonts runFonts15 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold16 = new Bold();
            BoldComplexScript boldComplexScript1 = new BoldComplexScript();
            Italic italic1 = new Italic();
            ItalicComplexScript italicComplexScript1 = new ItalicComplexScript();
            FontSize fontSize22 = new FontSize() { Val = "28" };
            FontSizeComplexScript fontSizeComplexScript14 = new FontSizeComplexScript() { Val = "28" };

            paragraphMarkRunProperties8.Append(runFonts15);
            paragraphMarkRunProperties8.Append(bold16);
            paragraphMarkRunProperties8.Append(boldComplexScript1);
            paragraphMarkRunProperties8.Append(italic1);
            paragraphMarkRunProperties8.Append(italicComplexScript1);
            paragraphMarkRunProperties8.Append(fontSize22);
            paragraphMarkRunProperties8.Append(fontSizeComplexScript14);

            paragraphProperties8.Append(paragraphMarkRunProperties8);

            paragraph8.Append(paragraphProperties8);

            Paragraph paragraph9 = new Paragraph() { RsidParagraphAddition = "00E801CE", RsidParagraphProperties = "00E801CE", RsidRunAdditionDefault = "00E801CE", ParagraphId = "563C9B65", TextId = "77777777" };

            ParagraphProperties paragraphProperties9 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties9 = new ParagraphMarkRunProperties();
            RunFonts runFonts16 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold17 = new Bold();
            BoldComplexScript boldComplexScript2 = new BoldComplexScript();
            Italic italic2 = new Italic();
            ItalicComplexScript italicComplexScript2 = new ItalicComplexScript();
            Color color13 = new Color() { Val = "0070C0" };
            FontSize fontSize23 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript15 = new FontSizeComplexScript() { Val = "40" };

            paragraphMarkRunProperties9.Append(runFonts16);
            paragraphMarkRunProperties9.Append(bold17);
            paragraphMarkRunProperties9.Append(boldComplexScript2);
            paragraphMarkRunProperties9.Append(italic2);
            paragraphMarkRunProperties9.Append(italicComplexScript2);
            paragraphMarkRunProperties9.Append(color13);
            paragraphMarkRunProperties9.Append(fontSize23);
            paragraphMarkRunProperties9.Append(fontSizeComplexScript15);

            paragraphProperties9.Append(paragraphMarkRunProperties9);

            paragraph9.Append(paragraphProperties9);

            Paragraph paragraph10 = new Paragraph() { RsidParagraphAddition = "00E801CE", RsidParagraphProperties = "00E801CE", RsidRunAdditionDefault = "00717CC8", ParagraphId = "0C7272CA", TextId = "01C5B05E" };

            ParagraphProperties paragraphProperties10 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId4 = new ParagraphStyleId() { Val = "Heading2" };
            Justification justification6 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties10 = new ParagraphMarkRunProperties();
            Color color14 = new Color() { Val = "0070C0" };
            FontSize fontSize24 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript16 = new FontSizeComplexScript() { Val = "40" };

            paragraphMarkRunProperties10.Append(color14);
            paragraphMarkRunProperties10.Append(fontSize24);
            paragraphMarkRunProperties10.Append(fontSizeComplexScript16);

            paragraphProperties10.Append(paragraphStyleId4);
            paragraphProperties10.Append(justification6);
            paragraphProperties10.Append(paragraphMarkRunProperties10);

            Run run17 = new Run();

            RunProperties runProperties17 = new RunProperties();
            Color color15 = new Color() { Val = "0070C0" };
            FontSize fontSize25 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript17 = new FontSizeComplexScript() { Val = "40" };

            runProperties17.Append(color15);
            runProperties17.Append(fontSize25);
            runProperties17.Append(fontSizeComplexScript17);
            Text text16 = new Text();
            text16.Text = "Technical";

            run17.Append(runProperties17);
            run17.Append(text16);

            Run run18 = new Run() { RsidRunAddition = "00BC7E65" };

            RunProperties runProperties18 = new RunProperties();
            Color color16 = new Color() { Val = "0070C0" };
            FontSize fontSize26 = new FontSize() { Val = "40" };
            FontSizeComplexScript fontSizeComplexScript18 = new FontSizeComplexScript() { Val = "40" };

            runProperties18.Append(color16);
            runProperties18.Append(fontSize26);
            runProperties18.Append(fontSizeComplexScript18);
            Text text17 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text17.Text = " Design Package";

            run18.Append(runProperties18);
            run18.Append(text17);

            paragraph10.Append(paragraphProperties10);
            paragraph10.Append(run17);
            paragraph10.Append(run18);

            Paragraph paragraph11 = new Paragraph() { RsidParagraphAddition = "00E801CE", RsidRunAdditionDefault = "00E801CE", ParagraphId = "7F0AB2A9", TextId = "77777777" };

            Run run19 = new Run();
            Break break1 = new Break() { Type = BreakValues.Page };

            run19.Append(break1);

            paragraph11.Append(run19);

            Paragraph paragraph12 = new Paragraph() { RsidParagraphMarkRevision = "00E801CE", RsidParagraphAddition = "000E2AF5", RsidParagraphProperties = "00E801CE", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1924", TextId = "06CAB2D0" };

            ParagraphProperties paragraphProperties11 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId5 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties11 = new ParagraphMarkRunProperties();
            Underline underline1 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties11.Append(underline1);

            paragraphProperties11.Append(paragraphStyleId5);
            paragraphProperties11.Append(paragraphMarkRunProperties11);

            Run run20 = new Run();

            RunProperties runProperties19 = new RunProperties();
            Underline underline2 = new Underline() { Val = UnderlineValues.Single };

            runProperties19.Append(underline2);
            LastRenderedPageBreak lastRenderedPageBreak1 = new LastRenderedPageBreak();
            Text text18 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text18.Text = "1. ";

            run20.Append(runProperties19);
            run20.Append(lastRenderedPageBreak1);
            run20.Append(text18);

            Run run21 = new Run() { RsidRunProperties = "00E801CE", RsidRunAddition = "00F92C4E" };

            RunProperties runProperties20 = new RunProperties();
            Underline underline3 = new Underline() { Val = UnderlineValues.Single };

            runProperties20.Append(underline3);
            Text text19 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text19.Text = "Tech Interviewer ";

            run21.Append(runProperties20);
            run21.Append(text19);

            Run run22 = new Run() { RsidRunProperties = "00E801CE", RsidRunAddition = "00D778B7" };

            RunProperties runProperties21 = new RunProperties();
            Underline underline4 = new Underline() { Val = UnderlineValues.Single };

            runProperties21.Append(underline4);
            Text text20 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text20.Text = "Project ";

            run22.Append(runProperties21);
            run22.Append(text20);

            Run run23 = new Run() { RsidRunProperties = "00E801CE", RsidRunAddition = "00F92C4E" };

            RunProperties runProperties22 = new RunProperties();
            Underline underline5 = new Underline() { Val = UnderlineValues.Single };

            runProperties22.Append(underline5);
            Text text21 = new Text();
            text21.Text = "Synopsis";

            run23.Append(runProperties22);
            run23.Append(text21);

            paragraph12.Append(paragraphProperties11);
            paragraph12.Append(run20);
            paragraph12.Append(run21);
            paragraph12.Append(run22);
            paragraph12.Append(run23);

            Paragraph paragraph13 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "0002129C", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003732FE", ParagraphId = "0AAC1925", TextId = "77777777" };

            ParagraphProperties paragraphProperties12 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties12 = new ParagraphMarkRunProperties();
            RunFonts runFonts17 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color17 = new Color() { Val = "00B050" };
            FontSize fontSize27 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript19 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties12.Append(runFonts17);
            paragraphMarkRunProperties12.Append(color17);
            paragraphMarkRunProperties12.Append(fontSize27);
            paragraphMarkRunProperties12.Append(fontSizeComplexScript19);

            paragraphProperties12.Append(paragraphMarkRunProperties12);

            Run run24 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties23 = new RunProperties();
            RunFonts runFonts18 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize28 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript20 = new FontSizeComplexScript() { Val = "22" };

            runProperties23.Append(runFonts18);
            runProperties23.Append(fontSize28);
            runProperties23.Append(fontSizeComplexScript20);
            Text text22 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text22.Text = "   ";

            run24.Append(runProperties23);
            run24.Append(text22);

            Run run25 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00D778B7" };

            RunProperties runProperties24 = new RunProperties();
            RunFonts runFonts19 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color18 = new Color() { Val = "FF0000" };
            FontSize fontSize29 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript21 = new FontSizeComplexScript() { Val = "22" };

            runProperties24.Append(runFonts19);
            runProperties24.Append(color18);
            runProperties24.Append(fontSize29);
            runProperties24.Append(fontSizeComplexScript21);
            Text text23 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text23.Text = "This project will be for ";

            run25.Append(runProperties24);
            run25.Append(text23);

            paragraph13.Append(paragraphProperties12);
            paragraph13.Append(run24);
            paragraph13.Append(run25);

            Paragraph paragraph14 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1926", TextId = "09038E24" };

            ParagraphProperties paragraphProperties13 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId6 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties13 = new ParagraphMarkRunProperties();
            Bold bold18 = new Bold() { Val = false };
            Underline underline6 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties13.Append(bold18);
            paragraphMarkRunProperties13.Append(underline6);

            paragraphProperties13.Append(paragraphStyleId6);
            paragraphProperties13.Append(paragraphMarkRunProperties13);

            Run run26 = new Run();

            RunProperties runProperties25 = new RunProperties();
            Underline underline7 = new Underline() { Val = UnderlineValues.Single };

            runProperties25.Append(underline7);
            Text text24 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text24.Text = "2. ";

            run26.Append(runProperties25);
            run26.Append(text24);

            Run run27 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "001D2D91" };

            RunProperties runProperties26 = new RunProperties();
            Underline underline8 = new Underline() { Val = UnderlineValues.Single };

            runProperties26.Append(underline8);
            Text text25 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text25.Text = "What are the technologies ";

            run27.Append(runProperties26);
            run27.Append(text25);

            Run run28 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00D778B7" };

            RunProperties runProperties27 = new RunProperties();
            Underline underline9 = new Underline() { Val = UnderlineValues.Single };

            runProperties27.Append(underline9);
            Text text26 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text26.Text = "applicable to this project? ";

            run28.Append(runProperties27);
            run28.Append(text26);

            paragraph14.Append(paragraphProperties13);
            paragraph14.Append(run26);
            paragraph14.Append(run27);
            paragraph14.Append(run28);

            Paragraph paragraph15 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1927", TextId = "77777777" };

            ParagraphProperties paragraphProperties14 = new ParagraphProperties();
            Indentation indentation1 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties14 = new ParagraphMarkRunProperties();
            RunFonts runFonts20 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize30 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript22 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties14.Append(runFonts20);
            paragraphMarkRunProperties14.Append(fontSize30);
            paragraphMarkRunProperties14.Append(fontSizeComplexScript22);

            paragraphProperties14.Append(indentation1);
            paragraphProperties14.Append(paragraphMarkRunProperties14);

            SdtRun sdtRun1 = new SdtRun();

            SdtProperties sdtProperties1 = new SdtProperties();

            RunProperties runProperties28 = new RunProperties();
            RunFonts runFonts21 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize31 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript23 = new FontSizeComplexScript() { Val = "22" };

            runProperties28.Append(runFonts21);
            runProperties28.Append(fontSize31);
            runProperties28.Append(fontSizeComplexScript23);
            SdtId sdtId1 = new SdtId() { Val = -564251075 };

            W14.SdtContentCheckBox sdtContentCheckBox1 = new W14.SdtContentCheckBox();
            W14.Checked checked1 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState1 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState1 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox1.Append(checked1);
            sdtContentCheckBox1.Append(checkedState1);
            sdtContentCheckBox1.Append(uncheckedState1);

            sdtProperties1.Append(runProperties28);
            sdtProperties1.Append(sdtId1);
            sdtProperties1.Append(sdtContentCheckBox1);
            SdtEndCharProperties sdtEndCharProperties1 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun1 = new SdtContentRun();

            Run run29 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "003E56E7" };

            RunProperties runProperties29 = new RunProperties();
            RunFonts runFonts22 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize32 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript24 = new FontSizeComplexScript() { Val = "22" };

            runProperties29.Append(runFonts22);
            runProperties29.Append(fontSize32);
            runProperties29.Append(fontSizeComplexScript24);
            Text text27 = new Text();
            text27.Text = "☐";

            run29.Append(runProperties29);
            run29.Append(text27);

            sdtContentRun1.Append(run29);

            sdtRun1.Append(sdtProperties1);
            sdtRun1.Append(sdtEndCharProperties1);
            sdtRun1.Append(sdtContentRun1);

            Run run30 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties30 = new RunProperties();
            RunFonts runFonts23 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize33 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript25 = new FontSizeComplexScript() { Val = "22" };

            runProperties30.Append(runFonts23);
            runProperties30.Append(fontSize33);
            runProperties30.Append(fontSizeComplexScript25);
            Text text28 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text28.Text = " VMware";

            run30.Append(runProperties30);
            run30.Append(text28);

            paragraph15.Append(paragraphProperties14);
            paragraph15.Append(sdtRun1);
            paragraph15.Append(run30);

            Paragraph paragraph16 = new Paragraph() { RsidParagraphAddition = "007F6C8D", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1928", TextId = "77777777" };

            ParagraphProperties paragraphProperties15 = new ParagraphProperties();
            Indentation indentation2 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties15 = new ParagraphMarkRunProperties();
            RunFonts runFonts24 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize34 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript26 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties15.Append(runFonts24);
            paragraphMarkRunProperties15.Append(fontSize34);
            paragraphMarkRunProperties15.Append(fontSizeComplexScript26);

            paragraphProperties15.Append(indentation2);
            paragraphProperties15.Append(paragraphMarkRunProperties15);

            SdtRun sdtRun2 = new SdtRun();

            SdtProperties sdtProperties2 = new SdtProperties();

            RunProperties runProperties31 = new RunProperties();
            RunFonts runFonts25 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize35 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript27 = new FontSizeComplexScript() { Val = "22" };

            runProperties31.Append(runFonts25);
            runProperties31.Append(fontSize35);
            runProperties31.Append(fontSizeComplexScript27);
            SdtId sdtId2 = new SdtId() { Val = -111438130 };

            W14.SdtContentCheckBox sdtContentCheckBox2 = new W14.SdtContentCheckBox();
            W14.Checked checked2 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState2 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState2 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox2.Append(checked2);
            sdtContentCheckBox2.Append(checkedState2);
            sdtContentCheckBox2.Append(uncheckedState2);

            sdtProperties2.Append(runProperties31);
            sdtProperties2.Append(sdtId2);
            sdtProperties2.Append(sdtContentCheckBox2);
            SdtEndCharProperties sdtEndCharProperties2 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun2 = new SdtContentRun();

            Run run31 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "000C02D8" };

            RunProperties runProperties32 = new RunProperties();
            RunFonts runFonts26 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize36 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript28 = new FontSizeComplexScript() { Val = "22" };

            runProperties32.Append(runFonts26);
            runProperties32.Append(fontSize36);
            runProperties32.Append(fontSizeComplexScript28);
            Text text29 = new Text();
            text29.Text = "☐";

            run31.Append(runProperties32);
            run31.Append(text29);

            sdtContentRun2.Append(run31);

            sdtRun2.Append(sdtProperties2);
            sdtRun2.Append(sdtEndCharProperties2);
            sdtRun2.Append(sdtContentRun2);

            Run run32 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties33 = new RunProperties();
            RunFonts runFonts27 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize37 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript29 = new FontSizeComplexScript() { Val = "22" };

            runProperties33.Append(runFonts27);
            runProperties33.Append(fontSize37);
            runProperties33.Append(fontSizeComplexScript29);
            Text text30 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text30.Text = " ";

            run32.Append(runProperties33);
            run32.Append(text30);

            Run run33 = new Run() { RsidRunAddition = "000C02D8" };

            RunProperties runProperties34 = new RunProperties();
            RunFonts runFonts28 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize38 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript30 = new FontSizeComplexScript() { Val = "22" };

            runProperties34.Append(runFonts28);
            runProperties34.Append(fontSize38);
            runProperties34.Append(fontSizeComplexScript30);
            Text text31 = new Text();
            text31.Text = "Linux";

            run33.Append(runProperties34);
            run33.Append(text31);

            paragraph16.Append(paragraphProperties15);
            paragraph16.Append(sdtRun2);
            paragraph16.Append(run32);
            paragraph16.Append(run33);

            Paragraph paragraph17 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "000C02D8", ParagraphId = "0AAC1929", TextId = "760FB766" };

            ParagraphProperties paragraphProperties16 = new ParagraphProperties();
            Indentation indentation3 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties16 = new ParagraphMarkRunProperties();
            RunFonts runFonts29 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize39 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript31 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties16.Append(runFonts29);
            paragraphMarkRunProperties16.Append(fontSize39);
            paragraphMarkRunProperties16.Append(fontSizeComplexScript31);

            paragraphProperties16.Append(indentation3);
            paragraphProperties16.Append(paragraphMarkRunProperties16);

            Run run34 = new Run();

            RunProperties runProperties35 = new RunProperties();
            RunFonts runFonts30 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize40 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript32 = new FontSizeComplexScript() { Val = "22" };

            runProperties35.Append(runFonts30);
            runProperties35.Append(fontSize40);
            runProperties35.Append(fontSizeComplexScript32);
            TabChar tabChar1 = new TabChar();

            run34.Append(runProperties35);
            run34.Append(tabChar1);

            SdtRun sdtRun3 = new SdtRun();

            SdtProperties sdtProperties3 = new SdtProperties();

            RunProperties runProperties36 = new RunProperties();
            RunFonts runFonts31 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize41 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript33 = new FontSizeComplexScript() { Val = "22" };

            runProperties36.Append(runFonts31);
            runProperties36.Append(fontSize41);
            runProperties36.Append(fontSizeComplexScript33);
            SdtId sdtId3 = new SdtId() { Val = -833838371 };

            W14.SdtContentCheckBox sdtContentCheckBox3 = new W14.SdtContentCheckBox();
            W14.Checked checked3 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState3 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState3 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox3.Append(checked3);
            sdtContentCheckBox3.Append(checkedState3);
            sdtContentCheckBox3.Append(uncheckedState3);

            sdtProperties3.Append(runProperties36);
            sdtProperties3.Append(sdtId3);
            sdtProperties3.Append(sdtContentCheckBox3);
            SdtEndCharProperties sdtEndCharProperties3 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun3 = new SdtContentRun();

            Run run35 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties37 = new RunProperties();
            RunFonts runFonts32 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize42 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript34 = new FontSizeComplexScript() { Val = "22" };

            runProperties37.Append(runFonts32);
            runProperties37.Append(fontSize42);
            runProperties37.Append(fontSizeComplexScript34);
            Text text32 = new Text();
            text32.Text = "☐";

            run35.Append(runProperties37);
            run35.Append(text32);

            sdtContentRun3.Append(run35);

            sdtRun3.Append(sdtProperties3);
            sdtRun3.Append(sdtEndCharProperties3);
            sdtRun3.Append(sdtContentRun3);

            Run run36 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties38 = new RunProperties();
            RunFonts runFonts33 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize43 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript35 = new FontSizeComplexScript() { Val = "22" };

            runProperties38.Append(runFonts33);
            runProperties38.Append(fontSize43);
            runProperties38.Append(fontSizeComplexScript35);
            Text text33 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text33.Text = " ";

            run36.Append(runProperties38);
            run36.Append(text33);

            Run run37 = new Run();

            RunProperties runProperties39 = new RunProperties();
            RunFonts runFonts34 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize44 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript36 = new FontSizeComplexScript() { Val = "22" };

            runProperties39.Append(runFonts34);
            runProperties39.Append(fontSize44);
            runProperties39.Append(fontSizeComplexScript36);
            Text text34 = new Text();
            text34.Text = "RHEL";

            run37.Append(runProperties39);
            run37.Append(text34);

            Run run38 = new Run();

            RunProperties runProperties40 = new RunProperties();
            RunFonts runFonts35 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize45 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript37 = new FontSizeComplexScript() { Val = "22" };

            runProperties40.Append(runFonts35);
            runProperties40.Append(fontSize45);
            runProperties40.Append(fontSizeComplexScript37);
            TabChar tabChar2 = new TabChar();

            run38.Append(runProperties40);
            run38.Append(tabChar2);

            SdtRun sdtRun4 = new SdtRun();

            SdtProperties sdtProperties4 = new SdtProperties();

            RunProperties runProperties41 = new RunProperties();
            RunFonts runFonts36 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize46 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript38 = new FontSizeComplexScript() { Val = "22" };

            runProperties41.Append(runFonts36);
            runProperties41.Append(fontSize46);
            runProperties41.Append(fontSizeComplexScript38);
            SdtId sdtId4 = new SdtId() { Val = -1173107735 };

            W14.SdtContentCheckBox sdtContentCheckBox4 = new W14.SdtContentCheckBox();
            W14.Checked checked4 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState4 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState4 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox4.Append(checked4);
            sdtContentCheckBox4.Append(checkedState4);
            sdtContentCheckBox4.Append(uncheckedState4);

            sdtProperties4.Append(runProperties41);
            sdtProperties4.Append(sdtId4);
            sdtProperties4.Append(sdtContentCheckBox4);
            SdtEndCharProperties sdtEndCharProperties4 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun4 = new SdtContentRun();

            Run run39 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties42 = new RunProperties();
            RunFonts runFonts37 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize47 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript39 = new FontSizeComplexScript() { Val = "22" };

            runProperties42.Append(runFonts37);
            runProperties42.Append(fontSize47);
            runProperties42.Append(fontSizeComplexScript39);
            Text text35 = new Text();
            text35.Text = "☐";

            run39.Append(runProperties42);
            run39.Append(text35);

            sdtContentRun4.Append(run39);

            sdtRun4.Append(sdtProperties4);
            sdtRun4.Append(sdtEndCharProperties4);
            sdtRun4.Append(sdtContentRun4);

            Run run40 = new Run();

            RunProperties runProperties43 = new RunProperties();
            RunFonts runFonts38 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize48 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript40 = new FontSizeComplexScript() { Val = "22" };

            runProperties43.Append(runFonts38);
            runProperties43.Append(fontSize48);
            runProperties43.Append(fontSizeComplexScript40);
            Text text36 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text36.Text = " CentOS (Test & Dev only)";

            run40.Append(runProperties43);
            run40.Append(text36);

            Run run41 = new Run() { RsidRunAddition = "006678EF" };

            RunProperties runProperties44 = new RunProperties();
            RunFonts runFonts39 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize49 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript41 = new FontSizeComplexScript() { Val = "22" };

            runProperties44.Append(runFonts39);
            runProperties44.Append(fontSize49);
            runProperties44.Append(fontSizeComplexScript41);
            TabChar tabChar3 = new TabChar();

            run41.Append(runProperties44);
            run41.Append(tabChar3);

            Run run42 = new Run() { RsidRunAddition = "006678EF" };

            RunProperties runProperties45 = new RunProperties();
            RunFonts runFonts40 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize50 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript42 = new FontSizeComplexScript() { Val = "22" };

            runProperties45.Append(runFonts40);
            runProperties45.Append(fontSize50);
            runProperties45.Append(fontSizeComplexScript42);
            TabChar tabChar4 = new TabChar();

            run42.Append(runProperties45);
            run42.Append(tabChar4);

            SdtRun sdtRun5 = new SdtRun();

            SdtProperties sdtProperties5 = new SdtProperties();

            RunProperties runProperties46 = new RunProperties();
            RunFonts runFonts41 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize51 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript43 = new FontSizeComplexScript() { Val = "22" };

            runProperties46.Append(runFonts41);
            runProperties46.Append(fontSize51);
            runProperties46.Append(fontSizeComplexScript43);
            SdtId sdtId5 = new SdtId() { Val = 1891685028 };

            W14.SdtContentCheckBox sdtContentCheckBox5 = new W14.SdtContentCheckBox();
            W14.Checked checked5 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState5 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState5 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox5.Append(checked5);
            sdtContentCheckBox5.Append(checkedState5);
            sdtContentCheckBox5.Append(uncheckedState5);

            sdtProperties5.Append(runProperties46);
            sdtProperties5.Append(sdtId5);
            sdtProperties5.Append(sdtContentCheckBox5);
            SdtEndCharProperties sdtEndCharProperties5 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun5 = new SdtContentRun();

            Run run43 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "006678EF" };

            RunProperties runProperties47 = new RunProperties();
            RunFonts runFonts42 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize52 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript44 = new FontSizeComplexScript() { Val = "22" };

            runProperties47.Append(runFonts42);
            runProperties47.Append(fontSize52);
            runProperties47.Append(fontSizeComplexScript44);
            Text text37 = new Text();
            text37.Text = "☐";

            run43.Append(runProperties47);
            run43.Append(text37);

            sdtContentRun5.Append(run43);

            sdtRun5.Append(sdtProperties5);
            sdtRun5.Append(sdtEndCharProperties5);
            sdtRun5.Append(sdtContentRun5);

            Run run44 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "006678EF" };

            RunProperties runProperties48 = new RunProperties();
            RunFonts runFonts43 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize53 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript45 = new FontSizeComplexScript() { Val = "22" };

            runProperties48.Append(runFonts43);
            runProperties48.Append(fontSize53);
            runProperties48.Append(fontSizeComplexScript45);
            Text text38 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text38.Text = " ";

            run44.Append(runProperties48);
            run44.Append(text38);

            Run run45 = new Run() { RsidRunAddition = "006678EF" };

            RunProperties runProperties49 = new RunProperties();
            RunFonts runFonts44 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize54 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript46 = new FontSizeComplexScript() { Val = "22" };

            runProperties49.Append(runFonts44);
            runProperties49.Append(fontSize54);
            runProperties49.Append(fontSizeComplexScript46);
            Text text39 = new Text();
            text39.Text = "SLES";

            run45.Append(runProperties49);
            run45.Append(text39);

            paragraph17.Append(paragraphProperties16);
            paragraph17.Append(run34);
            paragraph17.Append(sdtRun3);
            paragraph17.Append(run36);
            paragraph17.Append(run37);
            paragraph17.Append(run38);
            paragraph17.Append(sdtRun4);
            paragraph17.Append(run40);
            paragraph17.Append(run41);
            paragraph17.Append(run42);
            paragraph17.Append(sdtRun5);
            paragraph17.Append(run44);
            paragraph17.Append(run45);

            Paragraph paragraph18 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC192A", TextId = "77777777" };

            ParagraphProperties paragraphProperties17 = new ParagraphProperties();
            Indentation indentation4 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties17 = new ParagraphMarkRunProperties();
            RunFonts runFonts45 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize55 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript47 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties17.Append(runFonts45);
            paragraphMarkRunProperties17.Append(fontSize55);
            paragraphMarkRunProperties17.Append(fontSizeComplexScript47);

            paragraphProperties17.Append(indentation4);
            paragraphProperties17.Append(paragraphMarkRunProperties17);

            SdtRun sdtRun6 = new SdtRun();

            SdtProperties sdtProperties6 = new SdtProperties();

            RunProperties runProperties50 = new RunProperties();
            RunFonts runFonts46 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize56 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript48 = new FontSizeComplexScript() { Val = "22" };

            runProperties50.Append(runFonts46);
            runProperties50.Append(fontSize56);
            runProperties50.Append(fontSizeComplexScript48);
            SdtId sdtId6 = new SdtId() { Val = -1196000807 };

            W14.SdtContentCheckBox sdtContentCheckBox6 = new W14.SdtContentCheckBox();
            W14.Checked checked6 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState6 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState6 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox6.Append(checked6);
            sdtContentCheckBox6.Append(checkedState6);
            sdtContentCheckBox6.Append(uncheckedState6);

            sdtProperties6.Append(runProperties50);
            sdtProperties6.Append(sdtId6);
            sdtProperties6.Append(sdtContentCheckBox6);
            SdtEndCharProperties sdtEndCharProperties6 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun6 = new SdtContentRun();

            Run run46 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "000E2AF5" };

            RunProperties runProperties51 = new RunProperties();
            RunFonts runFonts47 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize57 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript49 = new FontSizeComplexScript() { Val = "22" };

            runProperties51.Append(runFonts47);
            runProperties51.Append(fontSize57);
            runProperties51.Append(fontSizeComplexScript49);
            Text text40 = new Text();
            text40.Text = "☐";

            run46.Append(runProperties51);
            run46.Append(text40);

            sdtContentRun6.Append(run46);

            sdtRun6.Append(sdtProperties6);
            sdtRun6.Append(sdtEndCharProperties6);
            sdtRun6.Append(sdtContentRun6);

            Run run47 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties52 = new RunProperties();
            RunFonts runFonts48 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize58 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript50 = new FontSizeComplexScript() { Val = "22" };

            runProperties52.Append(runFonts48);
            runProperties52.Append(fontSize58);
            runProperties52.Append(fontSizeComplexScript50);
            Text text41 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text41.Text = " Windows";

            run47.Append(runProperties52);
            run47.Append(text41);

            paragraph18.Append(paragraphProperties17);
            paragraph18.Append(sdtRun6);
            paragraph18.Append(run47);

            Paragraph paragraph19 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "007F6C8D", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC192B", TextId = "2C9455A7" };

            ParagraphProperties paragraphProperties18 = new ParagraphProperties();
            Indentation indentation5 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties18 = new ParagraphMarkRunProperties();
            RunFonts runFonts49 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize59 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript51 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties18.Append(runFonts49);
            paragraphMarkRunProperties18.Append(fontSize59);
            paragraphMarkRunProperties18.Append(fontSizeComplexScript51);

            paragraphProperties18.Append(indentation5);
            paragraphProperties18.Append(paragraphMarkRunProperties18);

            SdtRun sdtRun7 = new SdtRun();

            SdtProperties sdtProperties7 = new SdtProperties();

            RunProperties runProperties53 = new RunProperties();
            RunFonts runFonts50 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize60 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript52 = new FontSizeComplexScript() { Val = "22" };

            runProperties53.Append(runFonts50);
            runProperties53.Append(fontSize60);
            runProperties53.Append(fontSizeComplexScript52);
            SdtId sdtId7 = new SdtId() { Val = -2008430593 };

            W14.SdtContentCheckBox sdtContentCheckBox7 = new W14.SdtContentCheckBox();
            W14.Checked checked7 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState7 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState7 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox7.Append(checked7);
            sdtContentCheckBox7.Append(checkedState7);
            sdtContentCheckBox7.Append(uncheckedState7);

            sdtProperties7.Append(runProperties53);
            sdtProperties7.Append(sdtId7);
            sdtProperties7.Append(sdtContentCheckBox7);
            SdtEndCharProperties sdtEndCharProperties7 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun7 = new SdtContentRun();

            Run run48 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "005E53DA" };

            RunProperties runProperties54 = new RunProperties();
            RunFonts runFonts51 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize61 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript53 = new FontSizeComplexScript() { Val = "22" };

            runProperties54.Append(runFonts51);
            runProperties54.Append(fontSize61);
            runProperties54.Append(fontSizeComplexScript53);
            Text text42 = new Text();
            text42.Text = "☐";

            run48.Append(runProperties54);
            run48.Append(text42);

            sdtContentRun7.Append(run48);

            sdtRun7.Append(sdtProperties7);
            sdtRun7.Append(sdtEndCharProperties7);
            sdtRun7.Append(sdtContentRun7);

            Run run49 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties55 = new RunProperties();
            RunFonts runFonts52 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize62 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript54 = new FontSizeComplexScript() { Val = "22" };

            runProperties55.Append(runFonts52);
            runProperties55.Append(fontSize62);
            runProperties55.Append(fontSizeComplexScript54);
            Text text43 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text43.Text = " LPAR";

            run49.Append(runProperties55);
            run49.Append(text43);

            Run run50 = new Run() { RsidRunAddition = "00697199" };

            RunProperties runProperties56 = new RunProperties();
            RunFonts runFonts53 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize63 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript55 = new FontSizeComplexScript() { Val = "22" };

            runProperties56.Append(runFonts53);
            runProperties56.Append(fontSize63);
            runProperties56.Append(fontSizeComplexScript55);
            Text text44 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text44.Text = " w/ AIX";

            run50.Append(runProperties56);
            run50.Append(text44);

            Run run51 = new Run() { RsidRunAddition = "00614197" };

            RunProperties runProperties57 = new RunProperties();
            RunFonts runFonts54 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize64 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript56 = new FontSizeComplexScript() { Val = "22" };

            runProperties57.Append(runFonts54);
            runProperties57.Append(fontSize64);
            runProperties57.Append(fontSizeComplexScript56);
            Text text45 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text45.Text = " ";

            run51.Append(runProperties57);
            run51.Append(text45);

            Run run52 = new Run() { RsidRunProperties = "0027287B", RsidRunAddition = "00614197" };

            RunProperties runProperties58 = new RunProperties();
            RunFonts runFonts55 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold19 = new Bold();
            Italic italic3 = new Italic();
            Color color19 = new Color() { Val = "FF0000" };
            FontSize fontSize65 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript57 = new FontSizeComplexScript() { Val = "22" };
            Underline underline10 = new Underline() { Val = UnderlineValues.Single };

            runProperties58.Append(runFonts55);
            runProperties58.Append(bold19);
            runProperties58.Append(italic3);
            runProperties58.Append(color19);
            runProperties58.Append(fontSize65);
            runProperties58.Append(fontSizeComplexScript57);
            runProperties58.Append(underline10);
            Text text46 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text46.Text = "require conversation with ";

            run52.Append(runProperties58);
            run52.Append(text46);

            Run run53 = new Run() { RsidRunAddition = "00614197" };

            RunProperties runProperties59 = new RunProperties();
            RunFonts runFonts56 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold20 = new Bold();
            Italic italic4 = new Italic();
            Color color20 = new Color() { Val = "FF0000" };
            FontSize fontSize66 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript58 = new FontSizeComplexScript() { Val = "22" };
            Underline underline11 = new Underline() { Val = UnderlineValues.Single };

            runProperties59.Append(runFonts56);
            runProperties59.Append(bold20);
            runProperties59.Append(italic4);
            runProperties59.Append(color20);
            runProperties59.Append(fontSize66);
            runProperties59.Append(fontSizeComplexScript58);
            runProperties59.Append(underline11);
            Text text47 = new Text();
            text47.Text = "OpenSystems";

            run53.Append(runProperties59);
            run53.Append(text47);

            paragraph19.Append(paragraphProperties18);
            paragraph19.Append(sdtRun7);
            paragraph19.Append(run49);
            paragraph19.Append(run50);
            paragraph19.Append(run51);
            paragraph19.Append(run52);
            paragraph19.Append(run53);

            Paragraph paragraph20 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC192C", TextId = "77777777" };

            ParagraphProperties paragraphProperties19 = new ParagraphProperties();
            Indentation indentation6 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties19 = new ParagraphMarkRunProperties();
            RunFonts runFonts57 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize67 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript59 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties19.Append(runFonts57);
            paragraphMarkRunProperties19.Append(fontSize67);
            paragraphMarkRunProperties19.Append(fontSizeComplexScript59);

            paragraphProperties19.Append(indentation6);
            paragraphProperties19.Append(paragraphMarkRunProperties19);

            SdtRun sdtRun8 = new SdtRun();

            SdtProperties sdtProperties8 = new SdtProperties();

            RunProperties runProperties60 = new RunProperties();
            RunFonts runFonts58 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize68 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript60 = new FontSizeComplexScript() { Val = "22" };

            runProperties60.Append(runFonts58);
            runProperties60.Append(fontSize68);
            runProperties60.Append(fontSizeComplexScript60);
            SdtId sdtId8 = new SdtId() { Val = 1265414844 };

            W14.SdtContentCheckBox sdtContentCheckBox8 = new W14.SdtContentCheckBox();
            W14.Checked checked8 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState8 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState8 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox8.Append(checked8);
            sdtContentCheckBox8.Append(checkedState8);
            sdtContentCheckBox8.Append(uncheckedState8);

            sdtProperties8.Append(runProperties60);
            sdtProperties8.Append(sdtId8);
            sdtProperties8.Append(sdtContentCheckBox8);
            SdtEndCharProperties sdtEndCharProperties8 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun8 = new SdtContentRun();

            Run run54 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "005E53DA" };

            RunProperties runProperties61 = new RunProperties();
            RunFonts runFonts59 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize69 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript61 = new FontSizeComplexScript() { Val = "22" };

            runProperties61.Append(runFonts59);
            runProperties61.Append(fontSize69);
            runProperties61.Append(fontSizeComplexScript61);
            Text text48 = new Text();
            text48.Text = "☐";

            run54.Append(runProperties61);
            run54.Append(text48);

            sdtContentRun8.Append(run54);

            sdtRun8.Append(sdtProperties8);
            sdtRun8.Append(sdtEndCharProperties8);
            sdtRun8.Append(sdtContentRun8);

            Run run55 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties62 = new RunProperties();
            RunFonts runFonts60 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize70 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript62 = new FontSizeComplexScript() { Val = "22" };

            runProperties62.Append(runFonts60);
            runProperties62.Append(fontSize70);
            runProperties62.Append(fontSizeComplexScript62);
            Text text49 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text49.Text = " Citrix";

            run55.Append(runProperties62);
            run55.Append(text49);

            paragraph20.Append(paragraphProperties19);
            paragraph20.Append(sdtRun8);
            paragraph20.Append(run55);

            Paragraph paragraph21 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC192D", TextId = "77777777" };

            ParagraphProperties paragraphProperties20 = new ParagraphProperties();
            Indentation indentation7 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties20 = new ParagraphMarkRunProperties();
            RunFonts runFonts61 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize71 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript63 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties20.Append(runFonts61);
            paragraphMarkRunProperties20.Append(fontSize71);
            paragraphMarkRunProperties20.Append(fontSizeComplexScript63);

            paragraphProperties20.Append(indentation7);
            paragraphProperties20.Append(paragraphMarkRunProperties20);

            SdtRun sdtRun9 = new SdtRun();

            SdtProperties sdtProperties9 = new SdtProperties();

            RunProperties runProperties63 = new RunProperties();
            RunFonts runFonts62 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize72 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript64 = new FontSizeComplexScript() { Val = "22" };

            runProperties63.Append(runFonts62);
            runProperties63.Append(fontSize72);
            runProperties63.Append(fontSizeComplexScript64);
            SdtId sdtId9 = new SdtId() { Val = 1382521982 };

            W14.SdtContentCheckBox sdtContentCheckBox9 = new W14.SdtContentCheckBox();
            W14.Checked checked9 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState9 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState9 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox9.Append(checked9);
            sdtContentCheckBox9.Append(checkedState9);
            sdtContentCheckBox9.Append(uncheckedState9);

            sdtProperties9.Append(runProperties63);
            sdtProperties9.Append(sdtId9);
            sdtProperties9.Append(sdtContentCheckBox9);
            SdtEndCharProperties sdtEndCharProperties9 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun9 = new SdtContentRun();

            Run run56 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "000E2AF5" };

            RunProperties runProperties64 = new RunProperties();
            RunFonts runFonts63 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize73 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript65 = new FontSizeComplexScript() { Val = "22" };

            runProperties64.Append(runFonts63);
            runProperties64.Append(fontSize73);
            runProperties64.Append(fontSizeComplexScript65);
            Text text50 = new Text();
            text50.Text = "☐";

            run56.Append(runProperties64);
            run56.Append(text50);

            sdtContentRun9.Append(run56);

            sdtRun9.Append(sdtProperties9);
            sdtRun9.Append(sdtEndCharProperties9);
            sdtRun9.Append(sdtContentRun9);

            Run run57 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties65 = new RunProperties();
            RunFonts runFonts64 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize74 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript66 = new FontSizeComplexScript() { Val = "22" };

            runProperties65.Append(runFonts64);
            runProperties65.Append(fontSize74);
            runProperties65.Append(fontSizeComplexScript66);
            Text text51 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text51.Text = " Clustering";

            run57.Append(runProperties65);
            run57.Append(text51);

            paragraph21.Append(paragraphProperties20);
            paragraph21.Append(sdtRun9);
            paragraph21.Append(run57);

            Paragraph paragraph22 = new Paragraph() { RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC192E", TextId = "77777777" };

            ParagraphProperties paragraphProperties21 = new ParagraphProperties();
            Indentation indentation8 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties21 = new ParagraphMarkRunProperties();
            RunFonts runFonts65 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize75 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript67 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties21.Append(runFonts65);
            paragraphMarkRunProperties21.Append(fontSize75);
            paragraphMarkRunProperties21.Append(fontSizeComplexScript67);

            paragraphProperties21.Append(indentation8);
            paragraphProperties21.Append(paragraphMarkRunProperties21);

            SdtRun sdtRun10 = new SdtRun();

            SdtProperties sdtProperties10 = new SdtProperties();

            RunProperties runProperties66 = new RunProperties();
            RunFonts runFonts66 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize76 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript68 = new FontSizeComplexScript() { Val = "22" };

            runProperties66.Append(runFonts66);
            runProperties66.Append(fontSize76);
            runProperties66.Append(fontSizeComplexScript68);
            SdtId sdtId10 = new SdtId() { Val = 422846222 };

            W14.SdtContentCheckBox sdtContentCheckBox10 = new W14.SdtContentCheckBox();
            W14.Checked checked10 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState10 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState10 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox10.Append(checked10);
            sdtContentCheckBox10.Append(checkedState10);
            sdtContentCheckBox10.Append(uncheckedState10);

            sdtProperties10.Append(runProperties66);
            sdtProperties10.Append(sdtId10);
            sdtProperties10.Append(sdtContentCheckBox10);
            SdtEndCharProperties sdtEndCharProperties10 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun10 = new SdtContentRun();

            Run run58 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "000E2AF5" };

            RunProperties runProperties67 = new RunProperties();
            RunFonts runFonts67 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize77 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript69 = new FontSizeComplexScript() { Val = "22" };

            runProperties67.Append(runFonts67);
            runProperties67.Append(fontSize77);
            runProperties67.Append(fontSizeComplexScript69);
            Text text52 = new Text();
            text52.Text = "☐";

            run58.Append(runProperties67);
            run58.Append(text52);

            sdtContentRun10.Append(run58);

            sdtRun10.Append(sdtProperties10);
            sdtRun10.Append(sdtEndCharProperties10);
            sdtRun10.Append(sdtContentRun10);

            Run run59 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties68 = new RunProperties();
            RunFonts runFonts68 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize78 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript70 = new FontSizeComplexScript() { Val = "22" };

            runProperties68.Append(runFonts68);
            runProperties68.Append(fontSize78);
            runProperties68.Append(fontSizeComplexScript70);
            Text text53 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text53.Text = " Database";

            run59.Append(runProperties68);
            run59.Append(text53);

            paragraph22.Append(paragraphProperties21);
            paragraph22.Append(sdtRun10);
            paragraph22.Append(run59);

            Paragraph paragraph23 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "000C02D8", ParagraphId = "0AAC192F", TextId = "77777777" };

            ParagraphProperties paragraphProperties22 = new ParagraphProperties();
            Indentation indentation9 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties22 = new ParagraphMarkRunProperties();
            RunFonts runFonts69 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize79 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript71 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties22.Append(runFonts69);
            paragraphMarkRunProperties22.Append(fontSize79);
            paragraphMarkRunProperties22.Append(fontSizeComplexScript71);

            paragraphProperties22.Append(indentation9);
            paragraphProperties22.Append(paragraphMarkRunProperties22);

            Run run60 = new Run();

            RunProperties runProperties69 = new RunProperties();
            RunFonts runFonts70 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize80 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript72 = new FontSizeComplexScript() { Val = "22" };

            runProperties69.Append(runFonts70);
            runProperties69.Append(fontSize80);
            runProperties69.Append(fontSizeComplexScript72);
            TabChar tabChar5 = new TabChar();

            run60.Append(runProperties69);
            run60.Append(tabChar5);

            SdtRun sdtRun11 = new SdtRun();

            SdtProperties sdtProperties11 = new SdtProperties();

            RunProperties runProperties70 = new RunProperties();
            RunFonts runFonts71 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize81 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript73 = new FontSizeComplexScript() { Val = "22" };

            runProperties70.Append(runFonts71);
            runProperties70.Append(fontSize81);
            runProperties70.Append(fontSizeComplexScript73);
            SdtId sdtId11 = new SdtId() { Val = 1486361801 };

            W14.SdtContentCheckBox sdtContentCheckBox11 = new W14.SdtContentCheckBox();
            W14.Checked checked11 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState11 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState11 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox11.Append(checked11);
            sdtContentCheckBox11.Append(checkedState11);
            sdtContentCheckBox11.Append(uncheckedState11);

            sdtProperties11.Append(runProperties70);
            sdtProperties11.Append(sdtId11);
            sdtProperties11.Append(sdtContentCheckBox11);
            SdtEndCharProperties sdtEndCharProperties11 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun11 = new SdtContentRun();

            Run run61 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties71 = new RunProperties();
            RunFonts runFonts72 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize82 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript74 = new FontSizeComplexScript() { Val = "22" };

            runProperties71.Append(runFonts72);
            runProperties71.Append(fontSize82);
            runProperties71.Append(fontSizeComplexScript74);
            Text text54 = new Text();
            text54.Text = "☐";

            run61.Append(runProperties71);
            run61.Append(text54);

            sdtContentRun11.Append(run61);

            sdtRun11.Append(sdtProperties11);
            sdtRun11.Append(sdtEndCharProperties11);
            sdtRun11.Append(sdtContentRun11);

            Run run62 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties72 = new RunProperties();
            RunFonts runFonts73 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize83 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript75 = new FontSizeComplexScript() { Val = "22" };

            runProperties72.Append(runFonts73);
            runProperties72.Append(fontSize83);
            runProperties72.Append(fontSizeComplexScript75);
            Text text55 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text55.Text = " ";

            run62.Append(runProperties72);
            run62.Append(text55);

            Run run63 = new Run();

            RunProperties runProperties73 = new RunProperties();
            RunFonts runFonts74 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize84 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript76 = new FontSizeComplexScript() { Val = "22" };

            runProperties73.Append(runFonts74);
            runProperties73.Append(fontSize84);
            runProperties73.Append(fontSizeComplexScript76);
            Text text56 = new Text();
            text56.Text = "SQL";

            run63.Append(runProperties73);
            run63.Append(text56);

            Run run64 = new Run();

            RunProperties runProperties74 = new RunProperties();
            RunFonts runFonts75 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize85 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript77 = new FontSizeComplexScript() { Val = "22" };

            runProperties74.Append(runFonts75);
            runProperties74.Append(fontSize85);
            runProperties74.Append(fontSizeComplexScript77);
            TabChar tabChar6 = new TabChar();

            run64.Append(runProperties74);
            run64.Append(tabChar6);

            Run run65 = new Run();

            RunProperties runProperties75 = new RunProperties();
            RunFonts runFonts76 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize86 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript78 = new FontSizeComplexScript() { Val = "22" };

            runProperties75.Append(runFonts76);
            runProperties75.Append(fontSize86);
            runProperties75.Append(fontSizeComplexScript78);
            TabChar tabChar7 = new TabChar();

            run65.Append(runProperties75);
            run65.Append(tabChar7);

            SdtRun sdtRun12 = new SdtRun();

            SdtProperties sdtProperties12 = new SdtProperties();

            RunProperties runProperties76 = new RunProperties();
            RunFonts runFonts77 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize87 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript79 = new FontSizeComplexScript() { Val = "22" };

            runProperties76.Append(runFonts77);
            runProperties76.Append(fontSize87);
            runProperties76.Append(fontSizeComplexScript79);
            SdtId sdtId12 = new SdtId() { Val = 967241908 };

            W14.SdtContentCheckBox sdtContentCheckBox12 = new W14.SdtContentCheckBox();
            W14.Checked checked12 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState12 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState12 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox12.Append(checked12);
            sdtContentCheckBox12.Append(checkedState12);
            sdtContentCheckBox12.Append(uncheckedState12);

            sdtProperties12.Append(runProperties76);
            sdtProperties12.Append(sdtId12);
            sdtProperties12.Append(sdtContentCheckBox12);
            SdtEndCharProperties sdtEndCharProperties12 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun12 = new SdtContentRun();

            Run run66 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties77 = new RunProperties();
            RunFonts runFonts78 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize88 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript80 = new FontSizeComplexScript() { Val = "22" };

            runProperties77.Append(runFonts78);
            runProperties77.Append(fontSize88);
            runProperties77.Append(fontSizeComplexScript80);
            Text text57 = new Text();
            text57.Text = "☐";

            run66.Append(runProperties77);
            run66.Append(text57);

            sdtContentRun12.Append(run66);

            sdtRun12.Append(sdtProperties12);
            sdtRun12.Append(sdtEndCharProperties12);
            sdtRun12.Append(sdtContentRun12);

            Run run67 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties78 = new RunProperties();
            RunFonts runFonts79 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize89 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript81 = new FontSizeComplexScript() { Val = "22" };

            runProperties78.Append(runFonts79);
            runProperties78.Append(fontSize89);
            runProperties78.Append(fontSizeComplexScript81);
            Text text58 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text58.Text = " ";

            run67.Append(runProperties78);
            run67.Append(text58);

            Run run68 = new Run();

            RunProperties runProperties79 = new RunProperties();
            RunFonts runFonts80 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize90 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript82 = new FontSizeComplexScript() { Val = "22" };

            runProperties79.Append(runFonts80);
            runProperties79.Append(fontSize90);
            runProperties79.Append(fontSizeComplexScript82);
            Text text59 = new Text();
            text59.Text = "Oracle";

            run68.Append(runProperties79);
            run68.Append(text59);

            Run run69 = new Run();

            RunProperties runProperties80 = new RunProperties();
            RunFonts runFonts81 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize91 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript83 = new FontSizeComplexScript() { Val = "22" };

            runProperties80.Append(runFonts81);
            runProperties80.Append(fontSize91);
            runProperties80.Append(fontSizeComplexScript83);
            TabChar tabChar8 = new TabChar();

            run69.Append(runProperties80);
            run69.Append(tabChar8);

            SdtRun sdtRun13 = new SdtRun();

            SdtProperties sdtProperties13 = new SdtProperties();

            RunProperties runProperties81 = new RunProperties();
            RunFonts runFonts82 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize92 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript84 = new FontSizeComplexScript() { Val = "22" };

            runProperties81.Append(runFonts82);
            runProperties81.Append(fontSize92);
            runProperties81.Append(fontSizeComplexScript84);
            SdtId sdtId13 = new SdtId() { Val = -675188765 };

            W14.SdtContentCheckBox sdtContentCheckBox13 = new W14.SdtContentCheckBox();
            W14.Checked checked13 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState13 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState13 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox13.Append(checked13);
            sdtContentCheckBox13.Append(checkedState13);
            sdtContentCheckBox13.Append(uncheckedState13);

            sdtProperties13.Append(runProperties81);
            sdtProperties13.Append(sdtId13);
            sdtProperties13.Append(sdtContentCheckBox13);
            SdtEndCharProperties sdtEndCharProperties13 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun13 = new SdtContentRun();

            Run run70 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties82 = new RunProperties();
            RunFonts runFonts83 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize93 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript85 = new FontSizeComplexScript() { Val = "22" };

            runProperties82.Append(runFonts83);
            runProperties82.Append(fontSize93);
            runProperties82.Append(fontSizeComplexScript85);
            Text text60 = new Text();
            text60.Text = "☐";

            run70.Append(runProperties82);
            run70.Append(text60);

            sdtContentRun13.Append(run70);

            sdtRun13.Append(sdtProperties13);
            sdtRun13.Append(sdtEndCharProperties13);
            sdtRun13.Append(sdtContentRun13);

            Run run71 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties83 = new RunProperties();
            RunFonts runFonts84 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize94 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript86 = new FontSizeComplexScript() { Val = "22" };

            runProperties83.Append(runFonts84);
            runProperties83.Append(fontSize94);
            runProperties83.Append(fontSizeComplexScript86);
            Text text61 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text61.Text = " D";

            run71.Append(runProperties83);
            run71.Append(text61);

            Run run72 = new Run();

            RunProperties runProperties84 = new RunProperties();
            RunFonts runFonts85 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize95 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript87 = new FontSizeComplexScript() { Val = "22" };

            runProperties84.Append(runFonts85);
            runProperties84.Append(fontSize95);
            runProperties84.Append(fontSizeComplexScript87);
            Text text62 = new Text();
            text62.Text = "B2";

            run72.Append(runProperties84);
            run72.Append(text62);

            paragraph23.Append(paragraphProperties22);
            paragraph23.Append(run60);
            paragraph23.Append(sdtRun11);
            paragraph23.Append(run62);
            paragraph23.Append(run63);
            paragraph23.Append(run64);
            paragraph23.Append(run65);
            paragraph23.Append(sdtRun12);
            paragraph23.Append(run67);
            paragraph23.Append(run68);
            paragraph23.Append(run69);
            paragraph23.Append(sdtRun13);
            paragraph23.Append(run71);
            paragraph23.Append(run72);

            Paragraph paragraph24 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1930", TextId = "77777777" };

            ParagraphProperties paragraphProperties23 = new ParagraphProperties();
            Indentation indentation10 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties23 = new ParagraphMarkRunProperties();
            RunFonts runFonts86 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize96 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript88 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties23.Append(runFonts86);
            paragraphMarkRunProperties23.Append(fontSize96);
            paragraphMarkRunProperties23.Append(fontSizeComplexScript88);

            paragraphProperties23.Append(indentation10);
            paragraphProperties23.Append(paragraphMarkRunProperties23);

            SdtRun sdtRun14 = new SdtRun();

            SdtProperties sdtProperties14 = new SdtProperties();

            RunProperties runProperties85 = new RunProperties();
            RunFonts runFonts87 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize97 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript89 = new FontSizeComplexScript() { Val = "22" };

            runProperties85.Append(runFonts87);
            runProperties85.Append(fontSize97);
            runProperties85.Append(fontSizeComplexScript89);
            SdtId sdtId14 = new SdtId() { Val = 1294328987 };

            W14.SdtContentCheckBox sdtContentCheckBox14 = new W14.SdtContentCheckBox();
            W14.Checked checked14 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState14 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState14 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox14.Append(checked14);
            sdtContentCheckBox14.Append(checkedState14);
            sdtContentCheckBox14.Append(uncheckedState14);

            sdtProperties14.Append(runProperties85);
            sdtProperties14.Append(sdtId14);
            sdtProperties14.Append(sdtContentCheckBox14);
            SdtEndCharProperties sdtEndCharProperties14 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun14 = new SdtContentRun();

            Run run73 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "000E2AF5" };

            RunProperties runProperties86 = new RunProperties();
            RunFonts runFonts88 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize98 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript90 = new FontSizeComplexScript() { Val = "22" };

            runProperties86.Append(runFonts88);
            runProperties86.Append(fontSize98);
            runProperties86.Append(fontSizeComplexScript90);
            Text text63 = new Text();
            text63.Text = "☐";

            run73.Append(runProperties86);
            run73.Append(text63);

            sdtContentRun14.Append(run73);

            sdtRun14.Append(sdtProperties14);
            sdtRun14.Append(sdtEndCharProperties14);
            sdtRun14.Append(sdtContentRun14);

            Run run74 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "007F6C8D" };

            RunProperties runProperties87 = new RunProperties();
            RunFonts runFonts89 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize99 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript91 = new FontSizeComplexScript() { Val = "22" };

            runProperties87.Append(runFonts89);
            runProperties87.Append(fontSize99);
            runProperties87.Append(fontSizeComplexScript91);
            Text text64 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text64.Text = " Physical";

            run74.Append(runProperties87);
            run74.Append(text64);

            Run run75 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00D778B7" };

            RunProperties runProperties88 = new RunProperties();
            RunFonts runFonts90 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize100 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript92 = new FontSizeComplexScript() { Val = "22" };

            runProperties88.Append(runFonts90);
            runProperties88.Append(fontSize100);
            runProperties88.Append(fontSizeComplexScript92);
            Text text65 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text65.Text = " servers";

            run75.Append(runProperties88);
            run75.Append(text65);

            paragraph24.Append(paragraphProperties23);
            paragraph24.Append(sdtRun14);
            paragraph24.Append(run74);
            paragraph24.Append(run75);

            Paragraph paragraph25 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00D778B7", ParagraphId = "0AAC1931", TextId = "77777777" };

            ParagraphProperties paragraphProperties24 = new ParagraphProperties();
            Indentation indentation11 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties24 = new ParagraphMarkRunProperties();
            RunFonts runFonts91 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize101 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript93 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties24.Append(runFonts91);
            paragraphMarkRunProperties24.Append(fontSize101);
            paragraphMarkRunProperties24.Append(fontSizeComplexScript93);

            paragraphProperties24.Append(indentation11);
            paragraphProperties24.Append(paragraphMarkRunProperties24);

            Run run76 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties89 = new RunProperties();
            RunFonts runFonts92 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize102 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript94 = new FontSizeComplexScript() { Val = "22" };

            runProperties89.Append(runFonts92);
            runProperties89.Append(fontSize102);
            runProperties89.Append(fontSizeComplexScript94);
            TabChar tabChar9 = new TabChar();

            run76.Append(runProperties89);
            run76.Append(tabChar9);

            SdtRun sdtRun15 = new SdtRun();

            SdtProperties sdtProperties15 = new SdtProperties();

            RunProperties runProperties90 = new RunProperties();
            RunFonts runFonts93 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize103 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript95 = new FontSizeComplexScript() { Val = "22" };

            runProperties90.Append(runFonts93);
            runProperties90.Append(fontSize103);
            runProperties90.Append(fontSizeComplexScript95);
            SdtId sdtId15 = new SdtId() { Val = -2009973664 };

            W14.SdtContentCheckBox sdtContentCheckBox15 = new W14.SdtContentCheckBox();
            W14.Checked checked15 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState15 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState15 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox15.Append(checked15);
            sdtContentCheckBox15.Append(checkedState15);
            sdtContentCheckBox15.Append(uncheckedState15);

            sdtProperties15.Append(runProperties90);
            sdtProperties15.Append(sdtId15);
            sdtProperties15.Append(sdtContentCheckBox15);
            SdtEndCharProperties sdtEndCharProperties15 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun15 = new SdtContentRun();

            Run run77 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "005E53DA" };

            RunProperties runProperties91 = new RunProperties();
            RunFonts runFonts94 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize104 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript96 = new FontSizeComplexScript() { Val = "22" };

            runProperties91.Append(runFonts94);
            runProperties91.Append(fontSize104);
            runProperties91.Append(fontSizeComplexScript96);
            Text text66 = new Text();
            text66.Text = "☐";

            run77.Append(runProperties91);
            run77.Append(text66);

            sdtContentRun15.Append(run77);

            sdtRun15.Append(sdtProperties15);
            sdtRun15.Append(sdtEndCharProperties15);
            sdtRun15.Append(sdtContentRun15);

            Run run78 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties92 = new RunProperties();
            RunFonts runFonts95 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize105 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript97 = new FontSizeComplexScript() { Val = "22" };

            runProperties92.Append(runFonts95);
            runProperties92.Append(fontSize105);
            runProperties92.Append(fontSizeComplexScript97);
            Text text67 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text67.Text = " Internal Expansion card. Type:_______________ Model:____________";

            run78.Append(runProperties92);
            run78.Append(text67);

            paragraph25.Append(paragraphProperties24);
            paragraph25.Append(run76);
            paragraph25.Append(sdtRun15);
            paragraph25.Append(run78);

            Paragraph paragraph26 = new Paragraph() { RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1932", TextId = "77777777" };

            ParagraphProperties paragraphProperties25 = new ParagraphProperties();
            Indentation indentation12 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties25 = new ParagraphMarkRunProperties();
            RunFonts runFonts96 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize106 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript98 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties25.Append(runFonts96);
            paragraphMarkRunProperties25.Append(fontSize106);
            paragraphMarkRunProperties25.Append(fontSizeComplexScript98);

            paragraphProperties25.Append(indentation12);
            paragraphProperties25.Append(paragraphMarkRunProperties25);

            SdtRun sdtRun16 = new SdtRun();

            SdtProperties sdtProperties16 = new SdtProperties();

            RunProperties runProperties93 = new RunProperties();
            RunFonts runFonts97 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize107 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript99 = new FontSizeComplexScript() { Val = "22" };

            runProperties93.Append(runFonts97);
            runProperties93.Append(fontSize107);
            runProperties93.Append(fontSizeComplexScript99);
            SdtId sdtId16 = new SdtId() { Val = 676475862 };

            W14.SdtContentCheckBox sdtContentCheckBox16 = new W14.SdtContentCheckBox();
            W14.Checked checked16 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState16 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState16 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox16.Append(checked16);
            sdtContentCheckBox16.Append(checkedState16);
            sdtContentCheckBox16.Append(uncheckedState16);

            sdtProperties16.Append(runProperties93);
            sdtProperties16.Append(sdtId16);
            sdtProperties16.Append(sdtContentCheckBox16);
            SdtEndCharProperties sdtEndCharProperties16 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun16 = new SdtContentRun();

            Run run79 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "005E53DA" };

            RunProperties runProperties94 = new RunProperties();
            RunFonts runFonts98 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize108 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript100 = new FontSizeComplexScript() { Val = "22" };

            runProperties94.Append(runFonts98);
            runProperties94.Append(fontSize108);
            runProperties94.Append(fontSizeComplexScript100);
            Text text68 = new Text();
            text68.Text = "☐";

            run79.Append(runProperties94);
            run79.Append(text68);

            sdtContentRun16.Append(run79);

            sdtRun16.Append(sdtProperties16);
            sdtRun16.Append(sdtEndCharProperties16);
            sdtRun16.Append(sdtContentRun16);

            Run run80 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00692A84" };

            RunProperties runProperties95 = new RunProperties();
            RunFonts runFonts99 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize109 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript101 = new FontSizeComplexScript() { Val = "22" };

            runProperties95.Append(runFonts99);
            runProperties95.Append(fontSize109);
            runProperties95.Append(fontSizeComplexScript101);
            Text text69 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text69.Text = "  Network Load Balancers";

            run80.Append(runProperties95);
            run80.Append(text69);

            paragraph26.Append(paragraphProperties25);
            paragraph26.Append(sdtRun16);
            paragraph26.Append(run80);

            Paragraph paragraph27 = new Paragraph() { RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1933", TextId = "77777777" };

            ParagraphProperties paragraphProperties26 = new ParagraphProperties();
            Indentation indentation13 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties26 = new ParagraphMarkRunProperties();
            RunFonts runFonts100 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize110 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript102 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties26.Append(runFonts100);
            paragraphMarkRunProperties26.Append(fontSize110);
            paragraphMarkRunProperties26.Append(fontSizeComplexScript102);

            paragraphProperties26.Append(indentation13);
            paragraphProperties26.Append(paragraphMarkRunProperties26);

            SdtRun sdtRun17 = new SdtRun();

            SdtProperties sdtProperties17 = new SdtProperties();

            RunProperties runProperties96 = new RunProperties();
            RunFonts runFonts101 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize111 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript103 = new FontSizeComplexScript() { Val = "22" };

            runProperties96.Append(runFonts101);
            runProperties96.Append(fontSize111);
            runProperties96.Append(fontSizeComplexScript103);
            SdtId sdtId17 = new SdtId() { Val = 1392776162 };

            W14.SdtContentCheckBox sdtContentCheckBox17 = new W14.SdtContentCheckBox();
            W14.Checked checked17 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState17 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState17 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox17.Append(checked17);
            sdtContentCheckBox17.Append(checkedState17);
            sdtContentCheckBox17.Append(uncheckedState17);

            sdtProperties17.Append(runProperties96);
            sdtProperties17.Append(sdtId17);
            sdtProperties17.Append(sdtContentCheckBox17);
            SdtEndCharProperties sdtEndCharProperties17 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun17 = new SdtContentRun();

            Run run81 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "000C02D8" };

            RunProperties runProperties97 = new RunProperties();
            RunFonts runFonts102 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize112 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript104 = new FontSizeComplexScript() { Val = "22" };

            runProperties97.Append(runFonts102);
            runProperties97.Append(fontSize112);
            runProperties97.Append(fontSizeComplexScript104);
            Text text70 = new Text();
            text70.Text = "☐";

            run81.Append(runProperties97);
            run81.Append(text70);

            sdtContentRun17.Append(run81);

            sdtRun17.Append(sdtProperties17);
            sdtRun17.Append(sdtEndCharProperties17);
            sdtRun17.Append(sdtContentRun17);

            Run run82 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "000C02D8" };

            RunProperties runProperties98 = new RunProperties();
            RunFonts runFonts103 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize113 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript105 = new FontSizeComplexScript() { Val = "22" };

            runProperties98.Append(runFonts103);
            runProperties98.Append(fontSize113);
            runProperties98.Append(fontSizeComplexScript105);
            Text text71 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text71.Text = " ";

            run82.Append(runProperties98);
            run82.Append(text71);

            Run run83 = new Run() { RsidRunAddition = "000C02D8" };

            RunProperties runProperties99 = new RunProperties();
            RunFonts runFonts104 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize114 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript106 = new FontSizeComplexScript() { Val = "22" };

            runProperties99.Append(runFonts104);
            runProperties99.Append(fontSize114);
            runProperties99.Append(fontSizeComplexScript106);
            Text text72 = new Text();
            text72.Text = "Multi-Site replication";

            run83.Append(runProperties99);
            run83.Append(text72);

            paragraph27.Append(paragraphProperties26);
            paragraph27.Append(sdtRun17);
            paragraph27.Append(run82);
            paragraph27.Append(run83);

            Paragraph paragraph28 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "0002129C", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "000C02D8", ParagraphId = "0AAC1934", TextId = "02A2E8F5" };

            ParagraphProperties paragraphProperties27 = new ParagraphProperties();
            Indentation indentation14 = new Indentation() { Start = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties27 = new ParagraphMarkRunProperties();
            RunFonts runFonts105 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize115 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript107 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties27.Append(runFonts105);
            paragraphMarkRunProperties27.Append(fontSize115);
            paragraphMarkRunProperties27.Append(fontSizeComplexScript107);

            paragraphProperties27.Append(indentation14);
            paragraphProperties27.Append(paragraphMarkRunProperties27);

            Run run84 = new Run();

            RunProperties runProperties100 = new RunProperties();
            RunFonts runFonts106 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize116 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript108 = new FontSizeComplexScript() { Val = "22" };

            runProperties100.Append(runFonts106);
            runProperties100.Append(fontSize116);
            runProperties100.Append(fontSizeComplexScript108);
            TabChar tabChar10 = new TabChar();

            run84.Append(runProperties100);
            run84.Append(tabChar10);

            SdtRun sdtRun18 = new SdtRun();

            SdtProperties sdtProperties18 = new SdtProperties();

            RunProperties runProperties101 = new RunProperties();
            RunFonts runFonts107 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize117 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript109 = new FontSizeComplexScript() { Val = "22" };

            runProperties101.Append(runFonts107);
            runProperties101.Append(fontSize117);
            runProperties101.Append(fontSizeComplexScript109);
            SdtId sdtId18 = new SdtId() { Val = 1394078720 };

            W14.SdtContentCheckBox sdtContentCheckBox18 = new W14.SdtContentCheckBox();
            W14.Checked checked18 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState18 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState18 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox18.Append(checked18);
            sdtContentCheckBox18.Append(checkedState18);
            sdtContentCheckBox18.Append(uncheckedState18);

            sdtProperties18.Append(runProperties101);
            sdtProperties18.Append(sdtId18);
            sdtProperties18.Append(sdtContentCheckBox18);
            SdtEndCharProperties sdtEndCharProperties18 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun18 = new SdtContentRun();

            Run run85 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties102 = new RunProperties();
            RunFonts runFonts108 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize118 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript110 = new FontSizeComplexScript() { Val = "22" };

            runProperties102.Append(runFonts108);
            runProperties102.Append(fontSize118);
            runProperties102.Append(fontSizeComplexScript110);
            Text text73 = new Text();
            text73.Text = "☐";

            run85.Append(runProperties102);
            run85.Append(text73);

            sdtContentRun18.Append(run85);

            sdtRun18.Append(sdtProperties18);
            sdtRun18.Append(sdtEndCharProperties18);
            sdtRun18.Append(sdtContentRun18);

            Run run86 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties103 = new RunProperties();
            RunFonts runFonts109 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize119 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript111 = new FontSizeComplexScript() { Val = "22" };

            runProperties103.Append(runFonts109);
            runProperties103.Append(fontSize119);
            runProperties103.Append(fontSizeComplexScript111);
            Text text74 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text74.Text = " ";

            run86.Append(runProperties103);
            run86.Append(text74);

            Run run87 = new Run();

            RunProperties runProperties104 = new RunProperties();
            RunFonts runFonts110 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize120 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript112 = new FontSizeComplexScript() { Val = "22" };

            runProperties104.Append(runFonts110);
            runProperties104.Append(fontSize120);
            runProperties104.Append(fontSizeComplexScript112);
            Text text75 = new Text();
            text75.Text = "SAN Mirror";

            run87.Append(runProperties104);
            run87.Append(text75);

            paragraph28.Append(paragraphProperties27);
            paragraph28.Append(run84);
            paragraph28.Append(sdtRun18);
            paragraph28.Append(run86);
            paragraph28.Append(run87);

            Paragraph paragraph29 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00692A84", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1935", TextId = "6870B6A5" };

            ParagraphProperties paragraphProperties28 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId7 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties28 = new ParagraphMarkRunProperties();
            Underline underline12 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties28.Append(underline12);

            paragraphProperties28.Append(paragraphStyleId7);
            paragraphProperties28.Append(paragraphMarkRunProperties28);

            Run run88 = new Run();

            RunProperties runProperties105 = new RunProperties();
            Underline underline13 = new Underline() { Val = UnderlineValues.Single };

            runProperties105.Append(underline13);
            Text text76 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text76.Text = "3. ";

            run88.Append(runProperties105);
            run88.Append(text76);

            Run run89 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00692A84" };

            RunProperties runProperties106 = new RunProperties();
            Underline underline14 = new Underline() { Val = UnderlineValues.Single };

            runProperties106.Append(underline14);
            Text text77 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text77.Text = "MC Level ";

            run89.Append(runProperties106);
            run89.Append(text77);

            Run run90 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F56485" };

            RunProperties runProperties107 = new RunProperties();
            Underline underline15 = new Underline() { Val = UnderlineValues.Single };

            runProperties107.Append(underline15);
            Text text78 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text78.Text = "/ DR ";

            run90.Append(runProperties107);
            run90.Append(text78);

            paragraph29.Append(paragraphProperties28);
            paragraph29.Append(run88);
            paragraph29.Append(run89);
            paragraph29.Append(run90);

            Paragraph paragraph30 = new Paragraph() { RsidParagraphAddition = "00273C84", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00F56485", ParagraphId = "0AAC1936", TextId = "35D2F443" };

            ParagraphProperties paragraphProperties29 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties29 = new ParagraphMarkRunProperties();
            RunFonts runFonts111 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color21 = new Color() { Val = "FF0000" };
            FontSize fontSize121 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript113 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties29.Append(runFonts111);
            paragraphMarkRunProperties29.Append(color21);
            paragraphMarkRunProperties29.Append(fontSize121);
            paragraphMarkRunProperties29.Append(fontSizeComplexScript113);

            paragraphProperties29.Append(paragraphMarkRunProperties29);

            Run run91 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties108 = new RunProperties();
            RunFonts runFonts112 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize122 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript114 = new FontSizeComplexScript() { Val = "22" };

            runProperties108.Append(runFonts112);
            runProperties108.Append(fontSize122);
            runProperties108.Append(fontSizeComplexScript114);
            Text text79 = new Text();
            text79.Text = "MC Level for this application";

            run91.Append(runProperties108);
            run91.Append(text79);

            Run run92 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00692A84" };

            RunProperties runProperties109 = new RunProperties();
            RunFonts runFonts113 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize123 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript115 = new FontSizeComplexScript() { Val = "22" };

            runProperties109.Append(runFonts113);
            runProperties109.Append(fontSize123);
            runProperties109.Append(fontSizeComplexScript115);
            Text text80 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text80.Text = " is:";

            run92.Append(runProperties109);
            run92.Append(text80);

            Run run93 = new Run() { RsidRunAddition = "000E2AF5" };

            RunProperties runProperties110 = new RunProperties();
            RunFonts runFonts114 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize124 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript116 = new FontSizeComplexScript() { Val = "22" };

            runProperties110.Append(runFonts114);
            runProperties110.Append(fontSize124);
            runProperties110.Append(fontSizeComplexScript116);
            Text text81 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text81.Text = "  ";

            run93.Append(runProperties110);
            run93.Append(text81);

            Run run94 = new Run() { RsidRunAddition = "00F40BA0" };

            RunProperties runProperties111 = new RunProperties();
            RunFonts runFonts115 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color22 = new Color() { Val = "FF0000" };
            FontSize fontSize125 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript117 = new FontSizeComplexScript() { Val = "22" };

            runProperties111.Append(runFonts115);
            runProperties111.Append(color22);
            runProperties111.Append(fontSize125);
            runProperties111.Append(fontSizeComplexScript117);
            Text text82 = new Text();
            text82.Text = "3";

            run94.Append(runProperties111);
            run94.Append(text82);

            paragraph30.Append(paragraphProperties29);
            paragraph30.Append(run91);
            paragraph30.Append(run92);
            paragraph30.Append(run93);
            paragraph30.Append(run94);

            Paragraph paragraph31 = new Paragraph() { RsidParagraphMarkRevision = "00273C84", RsidParagraphAddition = "00273C84", RsidParagraphProperties = "00273C84", RsidRunAdditionDefault = "00273C84", ParagraphId = "0AAC1937", TextId = "74728674" };

            ParagraphProperties paragraphProperties30 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties30 = new ParagraphMarkRunProperties();
            RunFonts runFonts116 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color23 = new Color() { Val = "FF0000" };
            FontSize fontSize126 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript118 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties30.Append(runFonts116);
            paragraphMarkRunProperties30.Append(color23);
            paragraphMarkRunProperties30.Append(fontSize126);
            paragraphMarkRunProperties30.Append(fontSizeComplexScript118);

            paragraphProperties30.Append(paragraphMarkRunProperties30);

            Run run95 = new Run();

            RunProperties runProperties112 = new RunProperties();
            RunFonts runFonts117 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color24 = new Color() { Val = "FF0000" };
            FontSize fontSize127 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript119 = new FontSizeComplexScript() { Val = "22" };

            runProperties112.Append(runFonts117);
            runProperties112.Append(color24);
            runProperties112.Append(fontSize127);
            runProperties112.Append(fontSizeComplexScript119);
            TabChar tabChar11 = new TabChar();

            run95.Append(runProperties112);
            run95.Append(tabChar11);

            Run run96 = new Run() { RsidRunAddition = "00CA7596" };

            RunProperties runProperties113 = new RunProperties();
            RunFonts runFonts118 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color25 = new Color() { Val = "FF0000" };
            FontSize fontSize128 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript120 = new FontSizeComplexScript() { Val = "22" };

            runProperties113.Append(runFonts118);
            runProperties113.Append(color25);
            runProperties113.Append(fontSize128);
            runProperties113.Append(fontSizeComplexScript120);
            Text text83 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text83.Text = "5 or 4 ";

            run96.Append(runProperties113);
            run96.Append(text83);

            Run run97 = new Run() { RsidRunProperties = "00273C84" };

            RunProperties runProperties114 = new RunProperties();
            RunFonts runFonts119 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color26 = new Color() { Val = "FF0000" };
            FontSize fontSize129 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript121 = new FontSizeComplexScript() { Val = "22" };

            runProperties114.Append(runFonts119);
            runProperties114.Append(color26);
            runProperties114.Append(fontSize129);
            runProperties114.Append(fontSizeComplexScript121);
            Text text84 = new Text();
            text84.Text = "make sure DR plan is in place";

            run97.Append(runProperties114);
            run97.Append(text84);

            Run run98 = new Run() { RsidRunAddition = "00CA7596" };

            RunProperties runProperties115 = new RunProperties();
            RunFonts runFonts120 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color27 = new Color() { Val = "FF0000" };
            FontSize fontSize130 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript122 = new FontSizeComplexScript() { Val = "22" };

            runProperties115.Append(runFonts120);
            runProperties115.Append(color27);
            runProperties115.Append(fontSize130);
            runProperties115.Append(fontSizeComplexScript122);
            Text text85 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text85.Text = " before proceeding";

            run98.Append(runProperties115);
            run98.Append(text85);

            paragraph31.Append(paragraphProperties30);
            paragraph31.Append(run95);
            paragraph31.Append(run96);
            paragraph31.Append(run97);
            paragraph31.Append(run98);

            Paragraph paragraph32 = new Paragraph() { RsidParagraphAddition = "00273C84", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00F56485", ParagraphId = "0AAC1938", TextId = "44F2BABC" };

            ParagraphProperties paragraphProperties31 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties31 = new ParagraphMarkRunProperties();
            RunFonts runFonts121 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color28 = new Color() { Val = "FF0000" };
            FontSize fontSize131 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript123 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties31.Append(runFonts121);
            paragraphMarkRunProperties31.Append(color28);
            paragraphMarkRunProperties31.Append(fontSize131);
            paragraphMarkRunProperties31.Append(fontSizeComplexScript123);

            paragraphProperties31.Append(paragraphMarkRunProperties31);

            Run run99 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties116 = new RunProperties();
            RunFonts runFonts122 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize132 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript124 = new FontSizeComplexScript() { Val = "22" };

            runProperties116.Append(runFonts122);
            runProperties116.Append(fontSize132);
            runProperties116.Append(fontSizeComplexScript124);
            Text text86 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text86.Text = "Has a LDRPS DR Plan been developed for this ";

            run99.Append(runProperties116);
            run99.Append(text86);

            Run run100 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00C22957" };

            RunProperties runProperties117 = new RunProperties();
            RunFonts runFonts123 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize133 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript125 = new FontSizeComplexScript() { Val = "22" };

            runProperties117.Append(runFonts123);
            runProperties117.Append(fontSize133);
            runProperties117.Append(fontSizeComplexScript125);
            Text text87 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text87.Text = "application? ";

            run100.Append(runProperties117);
            run100.Append(text87);

            Run run101 = new Run() { RsidRunAddition = "00F40BA0" };

            RunProperties runProperties118 = new RunProperties();
            RunFonts runFonts124 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color29 = new Color() { Val = "FF0000" };
            FontSize fontSize134 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript126 = new FontSizeComplexScript() { Val = "22" };

            runProperties118.Append(runFonts124);
            runProperties118.Append(color29);
            runProperties118.Append(fontSize134);
            runProperties118.Append(fontSizeComplexScript126);
            Text text88 = new Text();
            text88.Text = "No";

            run101.Append(runProperties118);
            run101.Append(text88);

            paragraph32.Append(paragraphProperties31);
            paragraph32.Append(run99);
            paragraph32.Append(run100);
            paragraph32.Append(run101);

            Paragraph paragraph33 = new Paragraph() { RsidParagraphMarkRevision = "00273C84", RsidParagraphAddition = "00273C84", RsidParagraphProperties = "00273C84", RsidRunAdditionDefault = "00273C84", ParagraphId = "0AAC1939", TextId = "3D97BF74" };

            ParagraphProperties paragraphProperties32 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties32 = new ParagraphMarkRunProperties();
            RunFonts runFonts125 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color30 = new Color() { Val = "FF0000" };
            FontSize fontSize135 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript127 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties32.Append(runFonts125);
            paragraphMarkRunProperties32.Append(color30);
            paragraphMarkRunProperties32.Append(fontSize135);
            paragraphMarkRunProperties32.Append(fontSizeComplexScript127);

            paragraphProperties32.Append(paragraphMarkRunProperties32);

            Run run102 = new Run();

            RunProperties runProperties119 = new RunProperties();
            RunFonts runFonts126 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color31 = new Color() { Val = "FF0000" };
            FontSize fontSize136 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript128 = new FontSizeComplexScript() { Val = "22" };

            runProperties119.Append(runFonts126);
            runProperties119.Append(color31);
            runProperties119.Append(fontSize136);
            runProperties119.Append(fontSizeComplexScript128);
            TabChar tabChar12 = new TabChar();

            run102.Append(runProperties119);
            run102.Append(tabChar12);

            Run run103 = new Run() { RsidRunProperties = "00273C84" };

            RunProperties runProperties120 = new RunProperties();
            RunFonts runFonts127 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color32 = new Color() { Val = "FF0000" };
            FontSize fontSize137 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript129 = new FontSizeComplexScript() { Val = "22" };

            runProperties120.Append(runFonts127);
            runProperties120.Append(color32);
            runProperties120.Append(fontSize137);
            runProperties120.Append(fontSizeComplexScript129);
            Text text89 = new Text();
            text89.Text = "If DR plan is not defined, contact business Continuity";

            run103.Append(runProperties120);
            run103.Append(text89);

            paragraph33.Append(paragraphProperties32);
            paragraph33.Append(run102);
            paragraph33.Append(run103);

            Paragraph paragraph34 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "0002129C", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00F56485", ParagraphId = "0AAC193A", TextId = "1B9A747E" };

            ParagraphProperties paragraphProperties33 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties33 = new ParagraphMarkRunProperties();
            RunFonts runFonts128 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize138 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript130 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties33.Append(runFonts128);
            paragraphMarkRunProperties33.Append(fontSize138);
            paragraphMarkRunProperties33.Append(fontSizeComplexScript130);

            paragraphProperties33.Append(paragraphMarkRunProperties33);

            Run run104 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties121 = new RunProperties();
            RunFonts runFonts129 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize139 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript131 = new FontSizeComplexScript() { Val = "22" };

            runProperties121.Append(runFonts129);
            runProperties121.Append(fontSize139);
            runProperties121.Append(fontSizeComplexScript131);
            Text text90 = new Text();
            text90.Text = "Will a";

            run104.Append(runProperties121);
            run104.Append(text90);

            Run run105 = new Run() { RsidRunAddition = "00273C84" };

            RunProperties runProperties122 = new RunProperties();
            RunFonts runFonts130 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize140 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript132 = new FontSizeComplexScript() { Val = "22" };

            runProperties122.Append(runFonts130);
            runProperties122.Append(fontSize140);
            runProperties122.Append(fontSizeComplexScript132);
            Text text91 = new Text();
            text91.Text = "n";

            run105.Append(runProperties122);
            run105.Append(text91);

            Run run106 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties123 = new RunProperties();
            RunFonts runFonts131 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize141 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript133 = new FontSizeComplexScript() { Val = "22" };

            runProperties123.Append(runFonts131);
            runProperties123.Append(fontSize141);
            runProperties123.Append(fontSizeComplexScript133);
            Text text92 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text92.Text = " update to LDRPS Plan needed due to this project changes? ";

            run106.Append(runProperties123);
            run106.Append(text92);

            Run run107 = new Run() { RsidRunAddition = "00F40BA0" };

            RunProperties runProperties124 = new RunProperties();
            RunFonts runFonts132 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color33 = new Color() { Val = "FF0000" };
            FontSize fontSize142 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript134 = new FontSizeComplexScript() { Val = "22" };

            runProperties124.Append(runFonts132);
            runProperties124.Append(color33);
            runProperties124.Append(fontSize142);
            runProperties124.Append(fontSizeComplexScript134);
            Text text93 = new Text();
            text93.Text = "No";

            run107.Append(runProperties124);
            run107.Append(text93);

            paragraph34.Append(paragraphProperties33);
            paragraph34.Append(run104);
            paragraph34.Append(run105);
            paragraph34.Append(run106);
            paragraph34.Append(run107);

            Paragraph paragraph35 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC193B", TextId = "471BC14A" };

            ParagraphProperties paragraphProperties34 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId8 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties34 = new ParagraphMarkRunProperties();
            Underline underline16 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties34.Append(underline16);

            paragraphProperties34.Append(paragraphStyleId8);
            paragraphProperties34.Append(paragraphMarkRunProperties34);

            Run run108 = new Run();

            RunProperties runProperties125 = new RunProperties();
            Underline underline17 = new Underline() { Val = UnderlineValues.Single };

            runProperties125.Append(underline17);
            Text text94 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text94.Text = "4. ";

            run108.Append(runProperties125);
            run108.Append(text94);

            Run run109 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00D778B7" };

            RunProperties runProperties126 = new RunProperties();
            Underline underline18 = new Underline() { Val = UnderlineValues.Single };

            runProperties126.Append(underline18);
            Text text95 = new Text();
            text95.Text = "TimeLine";

            run109.Append(runProperties126);
            run109.Append(text95);

            paragraph35.Append(paragraphProperties34);
            paragraph35.Append(run108);
            paragraph35.Append(run109);

            Paragraph paragraph36 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E3016A", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00E3016A", ParagraphId = "0AAC193C", TextId = "77777777" };

            ParagraphProperties paragraphProperties35 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties35 = new ParagraphMarkRunProperties();
            RunFonts runFonts133 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize143 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript135 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties35.Append(runFonts133);
            paragraphMarkRunProperties35.Append(fontSize143);
            paragraphMarkRunProperties35.Append(fontSizeComplexScript135);

            paragraphProperties35.Append(paragraphMarkRunProperties35);

            Run run110 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties127 = new RunProperties();
            RunFonts runFonts134 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize144 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript136 = new FontSizeComplexScript() { Val = "22" };

            runProperties127.Append(runFonts134);
            runProperties127.Append(fontSize144);
            runProperties127.Append(fontSizeComplexScript136);
            Text text96 = new Text();
            text96.Text = "*Please note that dates are not confirmed until appro";

            run110.Append(runProperties127);
            run110.Append(text96);

            Run run111 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "001D2D91" };

            RunProperties runProperties128 = new RunProperties();
            RunFonts runFonts135 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize145 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript137 = new FontSizeComplexScript() { Val = "22" };

            runProperties128.Append(runFonts135);
            runProperties128.Append(fontSize145);
            runProperties128.Append(fontSizeComplexScript137);
            Text text97 = new Text();
            text97.Text = "ved by technical management sign";

            run111.Append(runProperties128);
            run111.Append(text97);

            Run run112 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties129 = new RunProperties();
            RunFonts runFonts136 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize146 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript138 = new FontSizeComplexScript() { Val = "22" };

            runProperties129.Append(runFonts136);
            runProperties129.Append(fontSize146);
            runProperties129.Append(fontSizeComplexScript138);
            Text text98 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text98.Text = " off  ";

            run112.Append(runProperties129);
            run112.Append(text98);

            paragraph36.Append(paragraphProperties35);
            paragraph36.Append(run110);
            paragraph36.Append(run111);
            paragraph36.Append(run112);

            Paragraph paragraph37 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidRunAdditionDefault = "007F295C", ParagraphId = "130A8903", TextId = "75B9CC04" };

            ParagraphProperties paragraphProperties36 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties36 = new ParagraphMarkRunProperties();
            RunFonts runFonts137 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", ComplexScript = "Arial" };
            Bold bold21 = new Bold();
            BoldComplexScript boldComplexScript3 = new BoldComplexScript();
            Italic italic5 = new Italic();
            ItalicComplexScript italicComplexScript3 = new ItalicComplexScript();
            FontSize fontSize147 = new FontSize() { Val = "28" };
            FontSizeComplexScript fontSizeComplexScript139 = new FontSizeComplexScript() { Val = "28" };
            Underline underline19 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties36.Append(runFonts137);
            paragraphMarkRunProperties36.Append(bold21);
            paragraphMarkRunProperties36.Append(boldComplexScript3);
            paragraphMarkRunProperties36.Append(italic5);
            paragraphMarkRunProperties36.Append(italicComplexScript3);
            paragraphMarkRunProperties36.Append(fontSize147);
            paragraphMarkRunProperties36.Append(fontSizeComplexScript139);
            paragraphMarkRunProperties36.Append(underline19);

            paragraphProperties36.Append(paragraphMarkRunProperties36);

            Run run113 = new Run();

            RunProperties runProperties130 = new RunProperties();
            RunFonts runFonts138 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold22 = new Bold();
            FontSize fontSize148 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript140 = new FontSizeComplexScript() { Val = "22" };

            runProperties130.Append(runFonts138);
            runProperties130.Append(bold22);
            runProperties130.Append(fontSize148);
            runProperties130.Append(fontSizeComplexScript140);
            Text text99 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text99.Text = "Proposed ";

            run113.Append(runProperties130);
            run113.Append(text99);

            Run run114 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00692A84" };

            RunProperties runProperties131 = new RunProperties();
            RunFonts runFonts139 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold23 = new Bold();
            FontSize fontSize149 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript141 = new FontSizeComplexScript() { Val = "22" };

            runProperties131.Append(runFonts139);
            runProperties131.Append(bold23);
            runProperties131.Append(fontSize149);
            runProperties131.Append(fontSizeComplexScript141);
            Text text100 = new Text();
            text100.Text = "Go Live Date";

            run114.Append(runProperties131);
            run114.Append(text100);

            Run run115 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F56485" };

            RunProperties runProperties132 = new RunProperties();
            RunFonts runFonts140 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize150 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript142 = new FontSizeComplexScript() { Val = "22" };

            runProperties132.Append(runFonts140);
            runProperties132.Append(fontSize150);
            runProperties132.Append(fontSizeComplexScript142);
            Text text101 = new Text();
            text101.Text = "*";

            run115.Append(runProperties132);
            run115.Append(text101);

            Run run116 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00C22957" };

            RunProperties runProperties133 = new RunProperties();
            RunFonts runFonts141 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize151 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript143 = new FontSizeComplexScript() { Val = "22" };

            runProperties133.Append(runFonts141);
            runProperties133.Append(fontSize151);
            runProperties133.Append(fontSizeComplexScript143);
            Text text102 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text102.Text = " ";

            run116.Append(runProperties133);
            run116.Append(text102);

            Run run117 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00273C84" };

            RunProperties runProperties134 = new RunProperties();
            RunFonts runFonts142 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color34 = new Color() { Val = "FF0000" };
            FontSize fontSize152 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript144 = new FontSizeComplexScript() { Val = "22" };

            runProperties134.Append(runFonts142);
            runProperties134.Append(color34);
            runProperties134.Append(fontSize152);
            runProperties134.Append(fontSizeComplexScript144);
            Text text103 = new Text();
            text103.Text = "00/00";

            run117.Append(runProperties134);
            run117.Append(text103);

            Run run118 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00273C84" };

            RunProperties runProperties135 = new RunProperties();
            RunFonts runFonts143 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize153 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript145 = new FontSizeComplexScript() { Val = "22" };

            runProperties135.Append(runFonts143);
            runProperties135.Append(fontSize153);
            runProperties135.Append(fontSizeComplexScript145);
            Text text104 = new Text();
            text104.Text = "/";

            run118.Append(runProperties135);
            run118.Append(text104);

            Run run119 = new Run() { RsidRunAddition = "00273C84" };

            RunProperties runProperties136 = new RunProperties();
            RunFonts runFonts144 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize154 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript146 = new FontSizeComplexScript() { Val = "22" };

            runProperties136.Append(runFonts144);
            runProperties136.Append(fontSize154);
            runProperties136.Append(fontSizeComplexScript146);
            Text text105 = new Text();
            text105.Text = "20";

            run119.Append(runProperties136);
            run119.Append(text105);

            Run run120 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties137 = new RunProperties();
            RunFonts runFonts145 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize155 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript147 = new FontSizeComplexScript() { Val = "22" };

            runProperties137.Append(runFonts145);
            runProperties137.Append(fontSize155);
            runProperties137.Append(fontSizeComplexScript147);
            Text text106 = new Text();
            text106.Text = "1";

            run120.Append(runProperties137);
            run120.Append(text106);

            Run run121 = new Run() { RsidRunAddition = "00FF18D7" };

            RunProperties runProperties138 = new RunProperties();
            RunFonts runFonts146 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize156 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript148 = new FontSizeComplexScript() { Val = "22" };

            runProperties138.Append(runFonts146);
            runProperties138.Append(fontSize156);
            runProperties138.Append(fontSizeComplexScript148);
            Text text107 = new Text();
            text107.Text = "5";

            run121.Append(runProperties138);
            run121.Append(text107);

            paragraph37.Append(paragraphProperties36);
            paragraph37.Append(run113);
            paragraph37.Append(run114);
            paragraph37.Append(run115);
            paragraph37.Append(run116);
            paragraph37.Append(run117);
            paragraph37.Append(run118);
            paragraph37.Append(run119);
            paragraph37.Append(run120);
            paragraph37.Append(run121);

            Paragraph paragraph38 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C7F26", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1941", TextId = "73A81A6C" };

            ParagraphProperties paragraphProperties37 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId9 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties37 = new ParagraphMarkRunProperties();
            Underline underline20 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties37.Append(underline20);

            paragraphProperties37.Append(paragraphStyleId9);
            paragraphProperties37.Append(paragraphMarkRunProperties37);

            Run run122 = new Run();

            RunProperties runProperties139 = new RunProperties();
            Underline underline21 = new Underline() { Val = UnderlineValues.Single };

            runProperties139.Append(underline21);
            LastRenderedPageBreak lastRenderedPageBreak2 = new LastRenderedPageBreak();
            Text text108 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text108.Text = "5. ";

            run122.Append(runProperties139);
            run122.Append(lastRenderedPageBreak2);
            run122.Append(text108);

            Run run123 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00D778B7" };

            RunProperties runProperties140 = new RunProperties();
            Underline underline22 = new Underline() { Val = UnderlineValues.Single };

            runProperties140.Append(underline22);
            Text text109 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text109.Text = "External Reference ";

            run123.Append(runProperties140);
            run123.Append(text109);

            Run run124 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties141 = new RunProperties();
            Underline underline23 = new Underline() { Val = UnderlineValues.Single };

            runProperties141.Append(underline23);
            Text text110 = new Text();
            text110.Text = "I";

            run124.Append(runProperties141);
            run124.Append(text110);

            Run run125 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00D778B7" };

            RunProperties runProperties142 = new RunProperties();
            Underline underline24 = new Underline() { Val = UnderlineValues.Single };

            runProperties142.Append(underline24);
            Text text111 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text111.Text = "nformation ";

            run125.Append(runProperties142);
            run125.Append(text111);

            paragraph38.Append(paragraphProperties37);
            paragraph38.Append(run122);
            paragraph38.Append(run123);
            paragraph38.Append(run124);
            paragraph38.Append(run125);

            Paragraph paragraph39 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C7F26", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00D778B7", ParagraphId = "0AAC1942", TextId = "77777777" };

            ParagraphProperties paragraphProperties38 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties38 = new ParagraphMarkRunProperties();
            RunFonts runFonts147 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color35 = new Color() { Val = "FF0000" };
            FontSize fontSize157 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript149 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties38.Append(runFonts147);
            paragraphMarkRunProperties38.Append(color35);
            paragraphMarkRunProperties38.Append(fontSize157);
            paragraphMarkRunProperties38.Append(fontSizeComplexScript149);

            paragraphProperties38.Append(paragraphMarkRunProperties38);

            Run run126 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties143 = new RunProperties();
            RunFonts runFonts148 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize158 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript150 = new FontSizeComplexScript() { Val = "22" };

            runProperties143.Append(runFonts148);
            runProperties143.Append(fontSize158);
            runProperties143.Append(fontSizeComplexScript150);
            Text text112 = new Text();
            text112.Text = "EA Number#";

            run126.Append(runProperties143);
            run126.Append(text112);

            Run run127 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00C22957" };

            RunProperties runProperties144 = new RunProperties();
            RunFonts runFonts149 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize159 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript151 = new FontSizeComplexScript() { Val = "22" };

            runProperties144.Append(runFonts149);
            runProperties144.Append(fontSize159);
            runProperties144.Append(fontSizeComplexScript151);
            Text text113 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text113.Text = " ";

            run127.Append(runProperties144);
            run127.Append(text113);

            Run run128 = new Run() { RsidRunAddition = "00273C84" };

            RunProperties runProperties145 = new RunProperties();
            RunFonts runFonts150 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color36 = new Color() { Val = "FF0000" };
            FontSize fontSize160 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript152 = new FontSizeComplexScript() { Val = "22" };

            runProperties145.Append(runFonts150);
            runProperties145.Append(color36);
            runProperties145.Append(fontSize160);
            runProperties145.Append(fontSizeComplexScript152);
            Text text114 = new Text();
            text114.Text = "xxxxxxxxxx";

            run128.Append(runProperties145);
            run128.Append(text114);

            paragraph39.Append(paragraphProperties38);
            paragraph39.Append(run126);
            paragraph39.Append(run127);
            paragraph39.Append(run128);

            Paragraph paragraph40 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003E56F4", ParagraphId = "0AAC1943", TextId = "4AEB31DD" };

            ParagraphProperties paragraphProperties39 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties39 = new ParagraphMarkRunProperties();
            RunFonts runFonts151 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize161 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript153 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties39.Append(runFonts151);
            paragraphMarkRunProperties39.Append(fontSize161);
            paragraphMarkRunProperties39.Append(fontSizeComplexScript153);

            paragraphProperties39.Append(paragraphMarkRunProperties39);

            Run run129 = new Run();

            RunProperties runProperties146 = new RunProperties();
            RunFonts runFonts152 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize162 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript154 = new FontSizeComplexScript() { Val = "22" };

            runProperties146.Append(runFonts152);
            runProperties146.Append(fontSize162);
            runProperties146.Append(fontSizeComplexScript154);
            Text text115 = new Text();
            text115.Text = "RITM";

            run129.Append(runProperties146);
            run129.Append(text115);

            Run run130 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00D778B7" };

            RunProperties runProperties147 = new RunProperties();
            RunFonts runFonts153 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize163 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript155 = new FontSizeComplexScript() { Val = "22" };

            runProperties147.Append(runFonts153);
            runProperties147.Append(fontSize163);
            runProperties147.Append(fontSizeComplexScript155);
            Text text116 = new Text();
            text116.Text = "#";

            run130.Append(runProperties147);
            run130.Append(text116);

            Run run131 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00C22957" };

            RunProperties runProperties148 = new RunProperties();
            RunFonts runFonts154 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize164 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript156 = new FontSizeComplexScript() { Val = "22" };

            runProperties148.Append(runFonts154);
            runProperties148.Append(fontSize164);
            runProperties148.Append(fontSizeComplexScript156);
            Text text117 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text117.Text = " ";

            run131.Append(runProperties148);
            run131.Append(text117);

            Run run132 = new Run() { RsidRunAddition = "00273C84" };

            RunProperties runProperties149 = new RunProperties();
            RunFonts runFonts155 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color37 = new Color() { Val = "FF0000" };
            FontSize fontSize165 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript157 = new FontSizeComplexScript() { Val = "22" };

            runProperties149.Append(runFonts155);
            runProperties149.Append(color37);
            runProperties149.Append(fontSize165);
            runProperties149.Append(fontSizeComplexScript157);
            Text text118 = new Text();
            text118.Text = "xxxxxx";

            run132.Append(runProperties149);
            run132.Append(text118);

            Run run133 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00C22957" };

            RunProperties runProperties150 = new RunProperties();
            RunFonts runFonts156 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize166 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript158 = new FontSizeComplexScript() { Val = "22" };

            runProperties150.Append(runFonts156);
            runProperties150.Append(fontSize166);
            runProperties150.Append(fontSizeComplexScript158);
            TabChar tabChar13 = new TabChar();

            run133.Append(runProperties150);
            run133.Append(tabChar13);

            paragraph40.Append(paragraphProperties39);
            paragraph40.Append(run129);
            paragraph40.Append(run130);
            paragraph40.Append(run131);
            paragraph40.Append(run132);
            paragraph40.Append(run133);

            Paragraph paragraph41 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E052F2", RsidParagraphProperties = "00E052F2", RsidRunAdditionDefault = "00E052F2", ParagraphId = "25E57F3D", TextId = "14F12183" };

            ParagraphProperties paragraphProperties40 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties40 = new ParagraphMarkRunProperties();
            RunFonts runFonts157 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize167 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript159 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties40.Append(runFonts157);
            paragraphMarkRunProperties40.Append(fontSize167);
            paragraphMarkRunProperties40.Append(fontSizeComplexScript159);

            paragraphProperties40.Append(paragraphMarkRunProperties40);

            Run run134 = new Run();

            RunProperties runProperties151 = new RunProperties();
            RunFonts runFonts158 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize168 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript160 = new FontSizeComplexScript() { Val = "22" };

            runProperties151.Append(runFonts158);
            runProperties151.Append(fontSize168);
            runProperties151.Append(fontSizeComplexScript160);
            Text text119 = new Text();
            text119.Text = "REQ";

            run134.Append(runProperties151);
            run134.Append(text119);

            Run run135 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties152 = new RunProperties();
            RunFonts runFonts159 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize169 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript161 = new FontSizeComplexScript() { Val = "22" };

            runProperties152.Append(runFonts159);
            runProperties152.Append(fontSize169);
            runProperties152.Append(fontSizeComplexScript161);
            Text text120 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text120.Text = "# ";

            run135.Append(runProperties152);
            run135.Append(text120);

            Run run136 = new Run();

            RunProperties runProperties153 = new RunProperties();
            RunFonts runFonts160 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color38 = new Color() { Val = "FF0000" };
            FontSize fontSize170 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript162 = new FontSizeComplexScript() { Val = "22" };

            runProperties153.Append(runFonts160);
            runProperties153.Append(color38);
            runProperties153.Append(fontSize170);
            runProperties153.Append(fontSizeComplexScript162);
            Text text121 = new Text();
            text121.Text = "xxxxxx";

            run136.Append(runProperties153);
            run136.Append(text121);

            Run run137 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties154 = new RunProperties();
            RunFonts runFonts161 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize171 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript163 = new FontSizeComplexScript() { Val = "22" };

            runProperties154.Append(runFonts161);
            runProperties154.Append(fontSize171);
            runProperties154.Append(fontSizeComplexScript163);
            TabChar tabChar14 = new TabChar();

            run137.Append(runProperties154);
            run137.Append(tabChar14);

            paragraph41.Append(paragraphProperties40);
            paragraph41.Append(run134);
            paragraph41.Append(run135);
            paragraph41.Append(run136);
            paragraph41.Append(run137);

            Paragraph paragraph42 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00D778B7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00D778B7", ParagraphId = "0AAC1944", TextId = "6B211ACA" };

            ParagraphProperties paragraphProperties41 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties41 = new ParagraphMarkRunProperties();
            RunFonts runFonts162 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color39 = new Color() { Val = "FF0000" };
            FontSize fontSize172 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript164 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties41.Append(runFonts162);
            paragraphMarkRunProperties41.Append(color39);
            paragraphMarkRunProperties41.Append(fontSize172);
            paragraphMarkRunProperties41.Append(fontSizeComplexScript164);

            paragraphProperties41.Append(paragraphMarkRunProperties41);

            Run run138 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties155 = new RunProperties();
            RunFonts runFonts163 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize173 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript165 = new FontSizeComplexScript() { Val = "22" };

            runProperties155.Append(runFonts163);
            runProperties155.Append(fontSize173);
            runProperties155.Append(fontSizeComplexScript165);
            Text text122 = new Text();
            text122.Text = "Clarity Project Name:";

            run138.Append(runProperties155);
            run138.Append(text122);

            Run run139 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00C22957" };

            RunProperties runProperties156 = new RunProperties();
            RunFonts runFonts164 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize174 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript166 = new FontSizeComplexScript() { Val = "22" };

            runProperties156.Append(runFonts164);
            runProperties156.Append(fontSize174);
            runProperties156.Append(fontSizeComplexScript166);
            Text text123 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text123.Text = " ";

            run139.Append(runProperties156);
            run139.Append(text123);

            Run run140 = new Run() { RsidRunProperties = "00BC048A", RsidRunAddition = "00C22957" };

            RunProperties runProperties157 = new RunProperties();
            RunFonts runFonts165 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color40 = new Color() { Val = "FF0000" };
            FontSize fontSize175 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript167 = new FontSizeComplexScript() { Val = "22" };

            runProperties157.Append(runFonts165);
            runProperties157.Append(color40);
            runProperties157.Append(fontSize175);
            runProperties157.Append(fontSizeComplexScript167);
            Text text124 = new Text();
            text124.Text = "C";

            run140.Append(runProperties157);
            run140.Append(text124);

            Run run141 = new Run() { RsidRunProperties = "00BC048A", RsidRunAddition = "00273C84" };

            RunProperties runProperties158 = new RunProperties();
            RunFonts runFonts166 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color41 = new Color() { Val = "FF0000" };
            FontSize fontSize176 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript168 = new FontSizeComplexScript() { Val = "22" };

            runProperties158.Append(runFonts166);
            runProperties158.Append(color41);
            runProperties158.Append(fontSize176);
            runProperties158.Append(fontSizeComplexScript168);
            Text text125 = new Text();
            text125.Text = "xx";

            run141.Append(runProperties158);
            run141.Append(text125);

            Run run142 = new Run() { RsidRunAddition = "00273C84" };

            RunProperties runProperties159 = new RunProperties();
            RunFonts runFonts167 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color42 = new Color() { Val = "FF0000" };
            FontSize fontSize177 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript169 = new FontSizeComplexScript() { Val = "22" };

            runProperties159.Append(runFonts167);
            runProperties159.Append(color42);
            runProperties159.Append(fontSize177);
            runProperties159.Append(fontSizeComplexScript169);
            Text text126 = new Text();
            text126.Text = "xxxx";

            run142.Append(runProperties159);
            run142.Append(text126);

            paragraph42.Append(paragraphProperties41);
            paragraph42.Append(run138);
            paragraph42.Append(run139);
            paragraph42.Append(run140);
            paragraph42.Append(run141);
            paragraph42.Append(run142);

            Paragraph paragraph43 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "003A7AC6", RsidParagraphProperties = "003A7AC6", RsidRunAdditionDefault = "003A7AC6", ParagraphId = "6BE0D1ED", TextId = "14A578CC" };

            ParagraphProperties paragraphProperties42 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties42 = new ParagraphMarkRunProperties();
            RunFonts runFonts168 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color43 = new Color() { Val = "FF0000" };
            FontSize fontSize178 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript170 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties42.Append(runFonts168);
            paragraphMarkRunProperties42.Append(color43);
            paragraphMarkRunProperties42.Append(fontSize178);
            paragraphMarkRunProperties42.Append(fontSizeComplexScript170);

            paragraphProperties42.Append(paragraphMarkRunProperties42);

            Run run143 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties160 = new RunProperties();
            RunFonts runFonts169 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize179 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript171 = new FontSizeComplexScript() { Val = "22" };

            runProperties160.Append(runFonts169);
            runProperties160.Append(fontSize179);
            runProperties160.Append(fontSizeComplexScript171);
            Text text127 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text127.Text = "Clarity ";

            run143.Append(runProperties160);
            run143.Append(text127);

            Run run144 = new Run();

            RunProperties runProperties161 = new RunProperties();
            RunFonts runFonts170 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize180 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript172 = new FontSizeComplexScript() { Val = "22" };

            runProperties161.Append(runFonts170);
            runProperties161.Append(fontSize180);
            runProperties161.Append(fontSizeComplexScript172);
            Text text128 = new Text();
            text128.Text = "ID";

            run144.Append(runProperties161);
            run144.Append(text128);

            Run run145 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties162 = new RunProperties();
            RunFonts runFonts171 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize181 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript173 = new FontSizeComplexScript() { Val = "22" };

            runProperties162.Append(runFonts171);
            runProperties162.Append(fontSize181);
            runProperties162.Append(fontSizeComplexScript173);
            Text text129 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text129.Text = ": ";

            run145.Append(runProperties162);
            run145.Append(text129);

            Run run146 = new Run();

            RunProperties runProperties163 = new RunProperties();
            RunFonts runFonts172 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color44 = new Color() { Val = "FF0000" };
            FontSize fontSize182 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript174 = new FontSizeComplexScript() { Val = "22" };

            runProperties163.Append(runFonts172);
            runProperties163.Append(color44);
            runProperties163.Append(fontSize182);
            runProperties163.Append(fontSizeComplexScript174);
            Text text130 = new Text();
            text130.Text = "xxxxxx";

            run146.Append(runProperties163);
            run146.Append(text130);

            paragraph43.Append(paragraphProperties42);
            paragraph43.Append(run143);
            paragraph43.Append(run144);
            paragraph43.Append(run145);
            paragraph43.Append(run146);

            Paragraph paragraph44 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00D778B7", ParagraphId = "0AAC1945", TextId = "01922929" };

            ParagraphProperties paragraphProperties43 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties43 = new ParagraphMarkRunProperties();
            RunFonts runFonts173 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize183 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript175 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties43.Append(runFonts173);
            paragraphMarkRunProperties43.Append(fontSize183);
            paragraphMarkRunProperties43.Append(fontSizeComplexScript175);

            paragraphProperties43.Append(paragraphMarkRunProperties43);

            Run run147 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties164 = new RunProperties();
            RunFonts runFonts174 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize184 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript176 = new FontSizeComplexScript() { Val = "22" };

            runProperties164.Append(runFonts174);
            runProperties164.Append(fontSize184);
            runProperties164.Append(fontSizeComplexScript176);
            Text text131 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text131.Text = "Project ";

            run147.Append(runProperties164);
            run147.Append(text131);

            Run run148 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties165 = new RunProperties();
            RunFonts runFonts175 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize185 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript177 = new FontSizeComplexScript() { Val = "22" };

            runProperties165.Append(runFonts175);
            runProperties165.Append(fontSize185);
            runProperties165.Append(fontSizeComplexScript177);
            Text text132 = new Text();
            text132.Text = "M";

            run148.Append(runProperties165);
            run148.Append(text132);

            Run run149 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties166 = new RunProperties();
            RunFonts runFonts176 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize186 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript178 = new FontSizeComplexScript() { Val = "22" };

            runProperties166.Append(runFonts176);
            runProperties166.Append(fontSize186);
            runProperties166.Append(fontSizeComplexScript178);
            Text text133 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text133.Text = "anager: ";

            run149.Append(runProperties166);
            run149.Append(text133);

            Run run150 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties167 = new RunProperties();
            RunFonts runFonts177 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color45 = new Color() { Val = "FF0000" };
            FontSize fontSize187 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript179 = new FontSizeComplexScript() { Val = "22" };

            runProperties167.Append(runFonts177);
            runProperties167.Append(color45);
            runProperties167.Append(fontSize187);
            runProperties167.Append(fontSizeComplexScript179);
            Text text134 = new Text();
            text134.Text = "JohnQ";

            run150.Append(runProperties167);
            run150.Append(text134);

            Run run151 = new Run() { RsidRunAddition = "00273C84" };

            RunProperties runProperties168 = new RunProperties();
            RunFonts runFonts178 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color46 = new Color() { Val = "FF0000" };
            FontSize fontSize188 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript180 = new FontSizeComplexScript() { Val = "22" };

            runProperties168.Append(runFonts178);
            runProperties168.Append(color46);
            runProperties168.Append(fontSize188);
            runProperties168.Append(fontSizeComplexScript180);
            Text text135 = new Text();
            text135.Text = "Public";

            run151.Append(runProperties168);
            run151.Append(text135);

            paragraph44.Append(paragraphProperties43);
            paragraph44.Append(run147);
            paragraph44.Append(run148);
            paragraph44.Append(run149);
            paragraph44.Append(run150);
            paragraph44.Append(run151);

            Paragraph paragraph45 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1946", TextId = "53FB6A45" };

            ParagraphProperties paragraphProperties44 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId10 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties44 = new ParagraphMarkRunProperties();
            Underline underline25 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties44.Append(underline25);

            paragraphProperties44.Append(paragraphStyleId10);
            paragraphProperties44.Append(paragraphMarkRunProperties44);

            Run run152 = new Run();

            RunProperties runProperties169 = new RunProperties();
            Underline underline26 = new Underline() { Val = UnderlineValues.Single };

            runProperties169.Append(underline26);
            Text text136 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text136.Text = "6. ";

            run152.Append(runProperties169);
            run152.Append(text136);

            Run run153 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "000C02D8" };

            RunProperties runProperties170 = new RunProperties();
            Underline underline27 = new Underline() { Val = UnderlineValues.Single };

            runProperties170.Append(underline27);
            Text text137 = new Text();
            text137.Text = "Stakeholders";

            run153.Append(runProperties170);
            run153.Append(text137);

            paragraph45.Append(paragraphProperties44);
            paragraph45.Append(run152);
            paragraph45.Append(run153);

            Paragraph paragraph46 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "00697199", ParagraphId = "0AAC1947", TextId = "0A7C1152" };

            ParagraphProperties paragraphProperties45 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties45 = new ParagraphMarkRunProperties();
            RunFonts runFonts179 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize189 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript181 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties45.Append(runFonts179);
            paragraphMarkRunProperties45.Append(fontSize189);
            paragraphMarkRunProperties45.Append(fontSizeComplexScript181);

            paragraphProperties45.Append(paragraphMarkRunProperties45);

            Run run154 = new Run();

            RunProperties runProperties171 = new RunProperties();
            RunFonts runFonts180 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize190 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript182 = new FontSizeComplexScript() { Val = "22" };

            runProperties171.Append(runFonts180);
            runProperties171.Append(fontSize190);
            runProperties171.Append(fontSizeComplexScript182);
            Text text138 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text138.Text = "BJC IS ";

            run154.Append(runProperties171);
            run154.Append(text138);

            Run run155 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "000C02D8" };

            RunProperties runProperties172 = new RunProperties();
            RunFonts runFonts181 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize191 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript183 = new FontSizeComplexScript() { Val = "22" };

            runProperties172.Append(runFonts181);
            runProperties172.Append(fontSize191);
            runProperties172.Append(fontSizeComplexScript183);
            Text text139 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text139.Text = "Application ";

            run155.Append(runProperties172);
            run155.Append(text139);

            Run run156 = new Run() { RsidRunAddition = "003E56F4" };

            RunProperties runProperties173 = new RunProperties();
            RunFonts runFonts182 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize192 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript184 = new FontSizeComplexScript() { Val = "22" };

            runProperties173.Append(runFonts182);
            runProperties173.Append(fontSize192);
            runProperties173.Append(fontSizeComplexScript184);
            Text text140 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text140.Text = "Support ";

            run156.Append(runProperties173);
            run156.Append(text140);

            Run run157 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "000C02D8" };

            RunProperties runProperties174 = new RunProperties();
            RunFonts runFonts183 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize193 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript185 = new FontSizeComplexScript() { Val = "22" };

            runProperties174.Append(runFonts183);
            runProperties174.Append(fontSize193);
            runProperties174.Append(fontSizeComplexScript185);
            Text text141 = new Text();
            text141.Text = "Team";

            run157.Append(runProperties174);
            run157.Append(text141);

            paragraph46.Append(paragraphProperties45);
            paragraph46.Append(run154);
            paragraph46.Append(run155);
            paragraph46.Append(run156);
            paragraph46.Append(run157);

            Paragraph paragraph47 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "000C02D8", ParagraphId = "0AAC1948", TextId = "05D33DEE" };

            ParagraphProperties paragraphProperties46 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties46 = new ParagraphMarkRunProperties();
            RunFonts runFonts184 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize194 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript186 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties46.Append(runFonts184);
            paragraphMarkRunProperties46.Append(fontSize194);
            paragraphMarkRunProperties46.Append(fontSizeComplexScript186);

            paragraphProperties46.Append(paragraphMarkRunProperties46);

            Run run158 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties175 = new RunProperties();
            RunFonts runFonts185 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize195 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript187 = new FontSizeComplexScript() { Val = "22" };

            runProperties175.Append(runFonts185);
            runProperties175.Append(fontSize195);
            runProperties175.Append(fontSizeComplexScript187);
            TabChar tabChar15 = new TabChar();
            Text text142 = new Text();
            text142.Text = "Primary Contact:";

            run158.Append(runProperties175);
            run158.Append(tabChar15);
            run158.Append(text142);

            Run run159 = new Run();

            RunProperties runProperties176 = new RunProperties();
            RunFonts runFonts186 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize196 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript188 = new FontSizeComplexScript() { Val = "22" };

            runProperties176.Append(runFonts186);
            runProperties176.Append(fontSize196);
            runProperties176.Append(fontSizeComplexScript188);
            Text text143 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text143.Text = " ";

            run159.Append(runProperties176);
            run159.Append(text143);

            Run run160 = new Run() { RsidRunAddition = "006A5DD3" };

            RunProperties runProperties177 = new RunProperties();
            RunFonts runFonts187 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color47 = new Color() { Val = "FF0000" };
            FontSize fontSize197 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript189 = new FontSizeComplexScript() { Val = "22" };

            runProperties177.Append(runFonts187);
            runProperties177.Append(color47);
            runProperties177.Append(fontSize197);
            runProperties177.Append(fontSizeComplexScript189);
            Text text144 = new Text();
            text144.Text = "John";

            run160.Append(runProperties177);
            run160.Append(text144);

            Run run161 = new Run();

            RunProperties runProperties178 = new RunProperties();
            RunFonts runFonts188 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color48 = new Color() { Val = "FF0000" };
            FontSize fontSize198 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript190 = new FontSizeComplexScript() { Val = "22" };

            runProperties178.Append(runFonts188);
            runProperties178.Append(color48);
            runProperties178.Append(fontSize198);
            runProperties178.Append(fontSizeComplexScript190);
            Text text145 = new Text();
            text145.Text = "QPublic";

            run161.Append(runProperties178);
            run161.Append(text145);

            paragraph47.Append(paragraphProperties46);
            paragraph47.Append(run158);
            paragraph47.Append(run159);
            paragraph47.Append(run160);
            paragraph47.Append(run161);

            Paragraph paragraph48 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "000C02D8", ParagraphId = "0AAC1949", TextId = "30B4368C" };

            ParagraphProperties paragraphProperties47 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties47 = new ParagraphMarkRunProperties();
            RunFonts runFonts189 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize199 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript191 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties47.Append(runFonts189);
            paragraphMarkRunProperties47.Append(fontSize199);
            paragraphMarkRunProperties47.Append(fontSizeComplexScript191);

            paragraphProperties47.Append(paragraphMarkRunProperties47);

            Run run162 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties179 = new RunProperties();
            RunFonts runFonts190 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize200 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript192 = new FontSizeComplexScript() { Val = "22" };

            runProperties179.Append(runFonts190);
            runProperties179.Append(fontSize200);
            runProperties179.Append(fontSizeComplexScript192);
            TabChar tabChar16 = new TabChar();
            Text text146 = new Text();
            text146.Text = "Secondary Contact:";

            run162.Append(runProperties179);
            run162.Append(tabChar16);
            run162.Append(text146);

            Run run163 = new Run();

            RunProperties runProperties180 = new RunProperties();
            RunFonts runFonts191 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize201 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript193 = new FontSizeComplexScript() { Val = "22" };

            runProperties180.Append(runFonts191);
            runProperties180.Append(fontSize201);
            runProperties180.Append(fontSizeComplexScript193);
            Text text147 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text147.Text = " ";

            run163.Append(runProperties180);
            run163.Append(text147);

            Run run164 = new Run();

            RunProperties runProperties181 = new RunProperties();
            RunFonts runFonts192 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color49 = new Color() { Val = "FF0000" };
            FontSize fontSize202 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript194 = new FontSizeComplexScript() { Val = "22" };

            runProperties181.Append(runFonts192);
            runProperties181.Append(color49);
            runProperties181.Append(fontSize202);
            runProperties181.Append(fontSizeComplexScript194);
            Text text148 = new Text();
            text148.Text = "JohnQPublic";

            run164.Append(runProperties181);
            run164.Append(text148);

            paragraph48.Append(paragraphProperties47);
            paragraph48.Append(run162);
            paragraph48.Append(run163);
            paragraph48.Append(run164);

            Paragraph paragraph49 = new Paragraph() { RsidParagraphAddition = "000C02D8", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "003E56F4", ParagraphId = "0AAC194A", TextId = "6A77EAF7" };

            ParagraphProperties paragraphProperties48 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties48 = new ParagraphMarkRunProperties();
            RunFonts runFonts193 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color50 = new Color() { Val = "FF0000" };
            FontSize fontSize203 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript195 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties48.Append(runFonts193);
            paragraphMarkRunProperties48.Append(color50);
            paragraphMarkRunProperties48.Append(fontSize203);
            paragraphMarkRunProperties48.Append(fontSizeComplexScript195);

            paragraphProperties48.Append(paragraphMarkRunProperties48);

            Run run165 = new Run();

            RunProperties runProperties182 = new RunProperties();
            RunFonts runFonts194 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize204 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript196 = new FontSizeComplexScript() { Val = "22" };

            runProperties182.Append(runFonts194);
            runProperties182.Append(fontSize204);
            runProperties182.Append(fontSizeComplexScript196);
            TabChar tabChar17 = new TabChar();
            Text text149 = new Text();
            text149.Text = "T";

            run165.Append(runProperties182);
            run165.Append(tabChar17);
            run165.Append(text149);

            Run run166 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "000C02D8" };

            RunProperties runProperties183 = new RunProperties();
            RunFonts runFonts195 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize205 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript197 = new FontSizeComplexScript() { Val = "22" };

            runProperties183.Append(runFonts195);
            runProperties183.Append(fontSize205);
            runProperties183.Append(fontSizeComplexScript197);
            Text text150 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text150.Text = "eam name in ";

            run166.Append(runProperties183);
            run166.Append(text150);

            Run run167 = new Run();

            RunProperties runProperties184 = new RunProperties();
            RunFonts runFonts196 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize206 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript198 = new FontSizeComplexScript() { Val = "22" };

            runProperties184.Append(runFonts196);
            runProperties184.Append(fontSize206);
            runProperties184.Append(fontSizeComplexScript198);
            Text text151 = new Text();
            text151.Text = "ServiceNow";

            run167.Append(runProperties184);
            run167.Append(text151);

            Run run168 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "000C02D8" };

            RunProperties runProperties185 = new RunProperties();
            RunFonts runFonts197 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize207 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript199 = new FontSizeComplexScript() { Val = "22" };

            runProperties185.Append(runFonts197);
            runProperties185.Append(fontSize207);
            runProperties185.Append(fontSizeComplexScript199);
            Text text152 = new Text();
            text152.Text = ":";

            run168.Append(runProperties185);
            run168.Append(text152);

            Run run169 = new Run() { RsidRunAddition = "000C02D8" };

            RunProperties runProperties186 = new RunProperties();
            RunFonts runFonts198 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize208 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript200 = new FontSizeComplexScript() { Val = "22" };

            runProperties186.Append(runFonts198);
            runProperties186.Append(fontSize208);
            runProperties186.Append(fontSizeComplexScript200);
            Text text153 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text153.Text = " ";

            run169.Append(runProperties186);
            run169.Append(text153);

            Run run170 = new Run() { RsidRunAddition = "006A5DD3" };

            RunProperties runProperties187 = new RunProperties();
            RunFonts runFonts199 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color51 = new Color() { Val = "FF0000" };
            FontSize fontSize209 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript201 = new FontSizeComplexScript() { Val = "22" };

            runProperties187.Append(runFonts199);
            runProperties187.Append(color51);
            runProperties187.Append(fontSize209);
            runProperties187.Append(fontSizeComplexScript201);
            Text text154 = new Text();
            text154.Text = "xxxx";

            run170.Append(runProperties187);
            run170.Append(text154);

            paragraph49.Append(paragraphProperties48);
            paragraph49.Append(run165);
            paragraph49.Append(run166);
            paragraph49.Append(run167);
            paragraph49.Append(run168);
            paragraph49.Append(run169);
            paragraph49.Append(run170);

            Paragraph paragraph50 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "006A5DD3", RsidParagraphProperties = "000C02D8", RsidRunAdditionDefault = "006A5DD3", ParagraphId = "338D8FAB", TextId = "7B9F5065" };

            ParagraphProperties paragraphProperties49 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties49 = new ParagraphMarkRunProperties();
            RunFonts runFonts200 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize210 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript202 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties49.Append(runFonts200);
            paragraphMarkRunProperties49.Append(fontSize210);
            paragraphMarkRunProperties49.Append(fontSizeComplexScript202);

            paragraphProperties49.Append(paragraphMarkRunProperties49);

            Run run171 = new Run();

            RunProperties runProperties188 = new RunProperties();
            RunFonts runFonts201 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color52 = new Color() { Val = "FF0000" };
            FontSize fontSize211 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript203 = new FontSizeComplexScript() { Val = "22" };

            runProperties188.Append(runFonts201);
            runProperties188.Append(color52);
            runProperties188.Append(fontSize211);
            runProperties188.Append(fontSizeComplexScript203);
            TabChar tabChar18 = new TabChar();

            run171.Append(runProperties188);
            run171.Append(tabChar18);

            Run run172 = new Run() { RsidRunProperties = "006A5DD3" };

            RunProperties runProperties189 = new RunProperties();
            RunFonts runFonts202 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize212 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript204 = new FontSizeComplexScript() { Val = "22" };

            runProperties189.Append(runFonts202);
            runProperties189.Append(fontSize212);
            runProperties189.Append(fontSizeComplexScript204);
            Text text155 = new Text();
            text155.Text = "Application name in NSDB2:";

            run172.Append(runProperties189);
            run172.Append(text155);

            Run run173 = new Run();

            RunProperties runProperties190 = new RunProperties();
            RunFonts runFonts203 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color53 = new Color() { Val = "FF0000" };
            FontSize fontSize213 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript205 = new FontSizeComplexScript() { Val = "22" };

            runProperties190.Append(runFonts203);
            runProperties190.Append(color53);
            runProperties190.Append(fontSize213);
            runProperties190.Append(fontSizeComplexScript205);
            Text text156 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text156.Text = " ";

            run173.Append(runProperties190);
            run173.Append(text156);

            Run run174 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties191 = new RunProperties();
            RunFonts runFonts204 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color54 = new Color() { Val = "FF0000" };
            FontSize fontSize214 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript206 = new FontSizeComplexScript() { Val = "22" };

            runProperties191.Append(runFonts204);
            runProperties191.Append(color54);
            runProperties191.Append(fontSize214);
            runProperties191.Append(fontSizeComplexScript206);
            Text text157 = new Text();
            text157.Text = "xxxx";

            run174.Append(runProperties191);
            run174.Append(text157);

            paragraph50.Append(paragraphProperties49);
            paragraph50.Append(run171);
            paragraph50.Append(run172);
            paragraph50.Append(run173);
            paragraph50.Append(run174);

            Paragraph paragraph51 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00697199", ParagraphId = "53393EBD", TextId = "3A4C07D2" };

            ParagraphProperties paragraphProperties50 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties50 = new ParagraphMarkRunProperties();
            RunFonts runFonts205 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize215 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript207 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties50.Append(runFonts205);
            paragraphMarkRunProperties50.Append(fontSize215);
            paragraphMarkRunProperties50.Append(fontSizeComplexScript207);

            paragraphProperties50.Append(paragraphMarkRunProperties50);

            Run run175 = new Run();

            RunProperties runProperties192 = new RunProperties();
            RunFonts runFonts206 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize216 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript208 = new FontSizeComplexScript() { Val = "22" };

            runProperties192.Append(runFonts206);
            runProperties192.Append(fontSize216);
            runProperties192.Append(fontSizeComplexScript208);
            Text text158 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text158.Text = "BJC IS ";

            run175.Append(runProperties192);
            run175.Append(text158);

            Run run176 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties193 = new RunProperties();
            RunFonts runFonts207 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize217 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript209 = new FontSizeComplexScript() { Val = "22" };

            runProperties193.Append(runFonts207);
            runProperties193.Append(fontSize217);
            runProperties193.Append(fontSizeComplexScript209);
            Text text159 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text159.Text = "Application ";

            run176.Append(runProperties193);
            run176.Append(text159);

            Run run177 = new Run();

            RunProperties runProperties194 = new RunProperties();
            RunFonts runFonts208 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize218 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript210 = new FontSizeComplexScript() { Val = "22" };

            runProperties194.Append(runFonts208);
            runProperties194.Append(fontSize218);
            runProperties194.Append(fontSizeComplexScript210);
            Text text160 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text160.Text = "Implementation ";

            run177.Append(runProperties194);
            run177.Append(text160);

            Run run178 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties195 = new RunProperties();
            RunFonts runFonts209 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize219 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript211 = new FontSizeComplexScript() { Val = "22" };

            runProperties195.Append(runFonts209);
            runProperties195.Append(fontSize219);
            runProperties195.Append(fontSizeComplexScript211);
            Text text161 = new Text();
            text161.Text = "Team";

            run178.Append(runProperties195);
            run178.Append(text161);

            paragraph51.Append(paragraphProperties50);
            paragraph51.Append(run175);
            paragraph51.Append(run176);
            paragraph51.Append(run177);
            paragraph51.Append(run178);

            Paragraph paragraph52 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00697199", ParagraphId = "5628BF03", TextId = "77777777" };

            ParagraphProperties paragraphProperties51 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties51 = new ParagraphMarkRunProperties();
            RunFonts runFonts210 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize220 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript212 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties51.Append(runFonts210);
            paragraphMarkRunProperties51.Append(fontSize220);
            paragraphMarkRunProperties51.Append(fontSizeComplexScript212);

            paragraphProperties51.Append(paragraphMarkRunProperties51);

            Run run179 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties196 = new RunProperties();
            RunFonts runFonts211 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize221 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript213 = new FontSizeComplexScript() { Val = "22" };

            runProperties196.Append(runFonts211);
            runProperties196.Append(fontSize221);
            runProperties196.Append(fontSizeComplexScript213);
            TabChar tabChar19 = new TabChar();
            Text text162 = new Text();
            text162.Text = "Primary Contact:";

            run179.Append(runProperties196);
            run179.Append(tabChar19);
            run179.Append(text162);

            Run run180 = new Run();

            RunProperties runProperties197 = new RunProperties();
            RunFonts runFonts212 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize222 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript214 = new FontSizeComplexScript() { Val = "22" };

            runProperties197.Append(runFonts212);
            runProperties197.Append(fontSize222);
            runProperties197.Append(fontSizeComplexScript214);
            Text text163 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text163.Text = " ";

            run180.Append(runProperties197);
            run180.Append(text163);

            Run run181 = new Run();

            RunProperties runProperties198 = new RunProperties();
            RunFonts runFonts213 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color55 = new Color() { Val = "FF0000" };
            FontSize fontSize223 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript215 = new FontSizeComplexScript() { Val = "22" };

            runProperties198.Append(runFonts213);
            runProperties198.Append(color55);
            runProperties198.Append(fontSize223);
            runProperties198.Append(fontSizeComplexScript215);
            Text text164 = new Text();
            text164.Text = "JohnQPublic";

            run181.Append(runProperties198);
            run181.Append(text164);

            paragraph52.Append(paragraphProperties51);
            paragraph52.Append(run179);
            paragraph52.Append(run180);
            paragraph52.Append(run181);

            Paragraph paragraph53 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00697199", ParagraphId = "7434B492", TextId = "77777777" };

            ParagraphProperties paragraphProperties52 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties52 = new ParagraphMarkRunProperties();
            RunFonts runFonts214 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize224 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript216 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties52.Append(runFonts214);
            paragraphMarkRunProperties52.Append(fontSize224);
            paragraphMarkRunProperties52.Append(fontSizeComplexScript216);

            paragraphProperties52.Append(paragraphMarkRunProperties52);

            Run run182 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties199 = new RunProperties();
            RunFonts runFonts215 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize225 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript217 = new FontSizeComplexScript() { Val = "22" };

            runProperties199.Append(runFonts215);
            runProperties199.Append(fontSize225);
            runProperties199.Append(fontSizeComplexScript217);
            TabChar tabChar20 = new TabChar();
            Text text165 = new Text();
            text165.Text = "Secondary Contact:";

            run182.Append(runProperties199);
            run182.Append(tabChar20);
            run182.Append(text165);

            Run run183 = new Run();

            RunProperties runProperties200 = new RunProperties();
            RunFonts runFonts216 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize226 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript218 = new FontSizeComplexScript() { Val = "22" };

            runProperties200.Append(runFonts216);
            runProperties200.Append(fontSize226);
            runProperties200.Append(fontSizeComplexScript218);
            Text text166 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text166.Text = " ";

            run183.Append(runProperties200);
            run183.Append(text166);

            Run run184 = new Run();

            RunProperties runProperties201 = new RunProperties();
            RunFonts runFonts217 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color56 = new Color() { Val = "FF0000" };
            FontSize fontSize227 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript219 = new FontSizeComplexScript() { Val = "22" };

            runProperties201.Append(runFonts217);
            runProperties201.Append(color56);
            runProperties201.Append(fontSize227);
            runProperties201.Append(fontSizeComplexScript219);
            Text text167 = new Text();
            text167.Text = "JohnQPublic";

            run184.Append(runProperties201);
            run184.Append(text167);

            paragraph53.Append(paragraphProperties52);
            paragraph53.Append(run182);
            paragraph53.Append(run183);
            paragraph53.Append(run184);

            Paragraph paragraph54 = new Paragraph() { RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00697199", ParagraphId = "2500471E", TextId = "77777777" };

            ParagraphProperties paragraphProperties53 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties53 = new ParagraphMarkRunProperties();
            RunFonts runFonts218 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color57 = new Color() { Val = "FF0000" };
            FontSize fontSize228 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript220 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties53.Append(runFonts218);
            paragraphMarkRunProperties53.Append(color57);
            paragraphMarkRunProperties53.Append(fontSize228);
            paragraphMarkRunProperties53.Append(fontSizeComplexScript220);

            paragraphProperties53.Append(paragraphMarkRunProperties53);

            Run run185 = new Run();

            RunProperties runProperties202 = new RunProperties();
            RunFonts runFonts219 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize229 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript221 = new FontSizeComplexScript() { Val = "22" };

            runProperties202.Append(runFonts219);
            runProperties202.Append(fontSize229);
            runProperties202.Append(fontSizeComplexScript221);
            TabChar tabChar21 = new TabChar();
            Text text168 = new Text();
            text168.Text = "T";

            run185.Append(runProperties202);
            run185.Append(tabChar21);
            run185.Append(text168);

            Run run186 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties203 = new RunProperties();
            RunFonts runFonts220 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize230 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript222 = new FontSizeComplexScript() { Val = "22" };

            runProperties203.Append(runFonts220);
            runProperties203.Append(fontSize230);
            runProperties203.Append(fontSizeComplexScript222);
            Text text169 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text169.Text = "eam name in ";

            run186.Append(runProperties203);
            run186.Append(text169);

            Run run187 = new Run();

            RunProperties runProperties204 = new RunProperties();
            RunFonts runFonts221 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize231 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript223 = new FontSizeComplexScript() { Val = "22" };

            runProperties204.Append(runFonts221);
            runProperties204.Append(fontSize231);
            runProperties204.Append(fontSizeComplexScript223);
            Text text170 = new Text();
            text170.Text = "ServiceNow";

            run187.Append(runProperties204);
            run187.Append(text170);

            Run run188 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties205 = new RunProperties();
            RunFonts runFonts222 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize232 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript224 = new FontSizeComplexScript() { Val = "22" };

            runProperties205.Append(runFonts222);
            runProperties205.Append(fontSize232);
            runProperties205.Append(fontSizeComplexScript224);
            Text text171 = new Text();
            text171.Text = ":";

            run188.Append(runProperties205);
            run188.Append(text171);

            Run run189 = new Run();

            RunProperties runProperties206 = new RunProperties();
            RunFonts runFonts223 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize233 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript225 = new FontSizeComplexScript() { Val = "22" };

            runProperties206.Append(runFonts223);
            runProperties206.Append(fontSize233);
            runProperties206.Append(fontSizeComplexScript225);
            Text text172 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text172.Text = " ";

            run189.Append(runProperties206);
            run189.Append(text172);

            Run run190 = new Run();

            RunProperties runProperties207 = new RunProperties();
            RunFonts runFonts224 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color58 = new Color() { Val = "FF0000" };
            FontSize fontSize234 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript226 = new FontSizeComplexScript() { Val = "22" };

            runProperties207.Append(runFonts224);
            runProperties207.Append(color58);
            runProperties207.Append(fontSize234);
            runProperties207.Append(fontSizeComplexScript226);
            Text text173 = new Text();
            text173.Text = "xxxx";

            run190.Append(runProperties207);
            run190.Append(text173);

            paragraph54.Append(paragraphProperties53);
            paragraph54.Append(run185);
            paragraph54.Append(run186);
            paragraph54.Append(run187);
            paragraph54.Append(run188);
            paragraph54.Append(run189);
            paragraph54.Append(run190);

            Paragraph paragraph55 = new Paragraph() { RsidParagraphAddition = "00692A84", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "000C02D8", ParagraphId = "0AAC194B", TextId = "7C6BD176" };

            ParagraphProperties paragraphProperties54 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties54 = new ParagraphMarkRunProperties();
            RunFonts runFonts225 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color59 = new Color() { Val = "FF0000" };
            FontSize fontSize235 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript227 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties54.Append(runFonts225);
            paragraphMarkRunProperties54.Append(color59);
            paragraphMarkRunProperties54.Append(fontSize235);
            paragraphMarkRunProperties54.Append(fontSizeComplexScript227);

            paragraphProperties54.Append(paragraphMarkRunProperties54);

            Run run191 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties208 = new RunProperties();
            RunFonts runFonts226 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize236 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript228 = new FontSizeComplexScript() { Val = "22" };

            runProperties208.Append(runFonts226);
            runProperties208.Append(fontSize236);
            runProperties208.Append(fontSizeComplexScript228);
            Text text174 = new Text();
            text174.Text = "Vendor:";

            run191.Append(runProperties208);
            run191.Append(text174);

            Run run192 = new Run();

            RunProperties runProperties209 = new RunProperties();
            RunFonts runFonts227 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize237 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript229 = new FontSizeComplexScript() { Val = "22" };

            runProperties209.Append(runFonts227);
            runProperties209.Append(fontSize237);
            runProperties209.Append(fontSizeComplexScript229);
            Text text175 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text175.Text = " ";

            run192.Append(runProperties209);
            run192.Append(text175);

            Run run193 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties210 = new RunProperties();
            RunFonts runFonts228 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color60 = new Color() { Val = "FF0000" };
            FontSize fontSize238 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript230 = new FontSizeComplexScript() { Val = "22" };

            runProperties210.Append(runFonts228);
            runProperties210.Append(color60);
            runProperties210.Append(fontSize238);
            runProperties210.Append(fontSizeComplexScript230);
            Text text176 = new Text();
            text176.Text = "xxxx";

            run193.Append(runProperties210);
            run193.Append(text176);

            paragraph55.Append(paragraphProperties54);
            paragraph55.Append(run191);
            paragraph55.Append(run192);
            paragraph55.Append(run193);

            Paragraph paragraph56 = new Paragraph() { RsidParagraphAddition = "001A269D", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "001A269D", ParagraphId = "3B51146E", TextId = "42B0F3D3" };

            ParagraphProperties paragraphProperties55 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties55 = new ParagraphMarkRunProperties();
            RunFonts runFonts229 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color61 = new Color() { Val = "FF0000" };
            FontSize fontSize239 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript231 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties55.Append(runFonts229);
            paragraphMarkRunProperties55.Append(color61);
            paragraphMarkRunProperties55.Append(fontSize239);
            paragraphMarkRunProperties55.Append(fontSizeComplexScript231);

            paragraphProperties55.Append(paragraphMarkRunProperties55);

            Run run194 = new Run();

            RunProperties runProperties211 = new RunProperties();
            RunFonts runFonts230 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color62 = new Color() { Val = "FF0000" };
            FontSize fontSize240 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript232 = new FontSizeComplexScript() { Val = "22" };

            runProperties211.Append(runFonts230);
            runProperties211.Append(color62);
            runProperties211.Append(fontSize240);
            runProperties211.Append(fontSizeComplexScript232);
            TabChar tabChar22 = new TabChar();

            run194.Append(runProperties211);
            run194.Append(tabChar22);

            Run run195 = new Run();

            RunProperties runProperties212 = new RunProperties();
            RunFonts runFonts231 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize241 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript233 = new FontSizeComplexScript() { Val = "22" };

            runProperties212.Append(runFonts231);
            runProperties212.Append(fontSize241);
            runProperties212.Append(fontSizeComplexScript233);
            Text text177 = new Text();
            text177.Text = "Contact Information";

            run195.Append(runProperties212);
            run195.Append(text177);

            Run run196 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties213 = new RunProperties();
            RunFonts runFonts232 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize242 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript234 = new FontSizeComplexScript() { Val = "22" };

            runProperties213.Append(runFonts232);
            runProperties213.Append(fontSize242);
            runProperties213.Append(fontSizeComplexScript234);
            Text text178 = new Text();
            text178.Text = ":";

            run196.Append(runProperties213);
            run196.Append(text178);

            Run run197 = new Run();

            RunProperties runProperties214 = new RunProperties();
            RunFonts runFonts233 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize243 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript235 = new FontSizeComplexScript() { Val = "22" };

            runProperties214.Append(runFonts233);
            runProperties214.Append(fontSize243);
            runProperties214.Append(fontSizeComplexScript235);
            Text text179 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text179.Text = " ";

            run197.Append(runProperties214);
            run197.Append(text179);

            Run run198 = new Run();

            RunProperties runProperties215 = new RunProperties();
            RunFonts runFonts234 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color63 = new Color() { Val = "FF0000" };
            FontSize fontSize244 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript236 = new FontSizeComplexScript() { Val = "22" };

            runProperties215.Append(runFonts234);
            runProperties215.Append(color63);
            runProperties215.Append(fontSize244);
            runProperties215.Append(fontSizeComplexScript236);
            Text text180 = new Text();
            text180.Text = "Support phone number or e-mail";

            run198.Append(runProperties215);
            run198.Append(text180);

            paragraph56.Append(paragraphProperties55);
            paragraph56.Append(run194);
            paragraph56.Append(run195);
            paragraph56.Append(run196);
            paragraph56.Append(run197);
            paragraph56.Append(run198);

            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableWidth tableWidth1 = new TableWidth() { Width = "13055", Type = TableWidthUnitValues.Dxa };

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TableCellLeftMargin tableCellLeftMargin1 = new TableCellLeftMargin() { Width = 0, Type = TableWidthValues.Dxa };
            TableCellRightMargin tableCellRightMargin1 = new TableCellRightMargin() { Width = 0, Type = TableWidthValues.Dxa };

            tableCellMarginDefault1.Append(tableCellLeftMargin1);
            tableCellMarginDefault1.Append(tableCellRightMargin1);
            TableLook tableLook1 = new TableLook() { Val = "04A0" };

            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableCellMarginDefault1);
            tableProperties1.Append(tableLook1);

            TableGrid tableGrid1 = new TableGrid();
            GridColumn gridColumn1 = new GridColumn() { Width = "3065" };
            GridColumn gridColumn2 = new GridColumn() { Width = "9990" };

            tableGrid1.Append(gridColumn1);
            tableGrid1.Append(gridColumn2);

            TableRow tableRow1 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "1F2D6614", TextId = "77777777" };

            TableRowProperties tableRowProperties1 = new TableRowProperties();
            TableRowHeight tableRowHeight1 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties1.Append(tableRowHeight1);

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth tableCellWidth1 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            TopBorder topBorder2 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder1 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder1 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder1 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders1.Append(topBorder2);
            tableCellBorders1.Append(leftBorder1);
            tableCellBorders1.Append(bottomBorder1);
            tableCellBorders1.Append(rightBorder1);
            Shading shading1 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment1 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark1 = new HideMark();

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(tableCellBorders1);
            tableCellProperties1.Append(shading1);
            tableCellProperties1.Append(tableCellVerticalAlignment1);
            tableCellProperties1.Append(hideMark1);

            Paragraph paragraph57 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "4F1FF4C9", TextId = "64D41BB6" };

            ParagraphProperties paragraphProperties56 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties56 = new ParagraphMarkRunProperties();
            RunFonts runFonts235 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize245 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript237 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties56.Append(runFonts235);
            paragraphMarkRunProperties56.Append(fontSize245);
            paragraphMarkRunProperties56.Append(fontSizeComplexScript237);

            paragraphProperties56.Append(paragraphMarkRunProperties56);

            Run run199 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties216 = new RunProperties();
            RunFonts runFonts236 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize246 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript238 = new FontSizeComplexScript() { Val = "22" };

            runProperties216.Append(runFonts236);
            runProperties216.Append(fontSize246);
            runProperties216.Append(fontSizeComplexScript238);
            Text text181 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text181.Text = "BJC IS Application ";

            run199.Append(runProperties216);
            run199.Append(text181);

            Run run200 = new Run() { RsidRunAddition = "002C4440" };

            RunProperties runProperties217 = new RunProperties();
            RunFonts runFonts237 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize247 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript239 = new FontSizeComplexScript() { Val = "22" };

            runProperties217.Append(runFonts237);
            runProperties217.Append(fontSize247);
            runProperties217.Append(fontSizeComplexScript239);
            Text text182 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text182.Text = "Support ";

            run200.Append(runProperties217);
            run200.Append(text182);

            Run run201 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties218 = new RunProperties();
            RunFonts runFonts238 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize248 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript240 = new FontSizeComplexScript() { Val = "22" };

            runProperties218.Append(runFonts238);
            runProperties218.Append(fontSize248);
            runProperties218.Append(fontSizeComplexScript240);
            Text text183 = new Text();
            text183.Text = "Team";

            run201.Append(runProperties218);
            run201.Append(text183);

            paragraph57.Append(paragraphProperties56);
            paragraph57.Append(run199);
            paragraph57.Append(run200);
            paragraph57.Append(run201);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph57);

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth tableCellWidth2 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders2 = new TableCellBorders();
            TopBorder topBorder3 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder2 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder2 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder2 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders2.Append(topBorder3);
            tableCellBorders2.Append(leftBorder2);
            tableCellBorders2.Append(bottomBorder2);
            tableCellBorders2.Append(rightBorder2);
            Shading shading2 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment2 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark2 = new HideMark();

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(tableCellBorders2);
            tableCellProperties2.Append(shading2);
            tableCellProperties2.Append(tableCellVerticalAlignment2);
            tableCellProperties2.Append(hideMark2);

            Paragraph paragraph58 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "17FEA5DA", TextId = "44556911" };

            ParagraphProperties paragraphProperties57 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties57 = new ParagraphMarkRunProperties();
            RunFonts runFonts239 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize249 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript241 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties57.Append(runFonts239);
            paragraphMarkRunProperties57.Append(fontSize249);
            paragraphMarkRunProperties57.Append(fontSizeComplexScript241);

            paragraphProperties57.Append(paragraphMarkRunProperties57);

            Run run202 = new Run();

            RunProperties runProperties219 = new RunProperties();
            RunFonts runFonts240 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize250 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript242 = new FontSizeComplexScript() { Val = "22" };

            runProperties219.Append(runFonts240);
            runProperties219.Append(fontSize250);
            runProperties219.Append(fontSizeComplexScript242);
            Text text184 = new Text();
            text184.Text = "W";

            run202.Append(runProperties219);
            run202.Append(text184);

            Run run203 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties220 = new RunProperties();
            RunFonts runFonts241 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize251 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript243 = new FontSizeComplexScript() { Val = "22" };

            runProperties220.Append(runFonts241);
            runProperties220.Append(fontSize251);
            runProperties220.Append(fontSizeComplexScript243);
            Text text185 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text185.Text = "ill be the BJC IS Liaison between the vendor and BJC ";

            run203.Append(runProperties220);
            run203.Append(text185);

            paragraph58.Append(paragraphProperties57);
            paragraph58.Append(run202);
            paragraph58.Append(run203);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph58);

            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);
            tableRow1.Append(tableCell2);

            TableRow tableRow2 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "6D33D696", TextId = "77777777" };

            TableRowProperties tableRowProperties2 = new TableRowProperties();
            TableRowHeight tableRowHeight2 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties2.Append(tableRowHeight2);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth tableCellWidth3 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders3 = new TableCellBorders();
            TopBorder topBorder4 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder3 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder3 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder3 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders3.Append(topBorder4);
            tableCellBorders3.Append(leftBorder3);
            tableCellBorders3.Append(bottomBorder3);
            tableCellBorders3.Append(rightBorder3);
            Shading shading3 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment3 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark3 = new HideMark();

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(tableCellBorders3);
            tableCellProperties3.Append(shading3);
            tableCellProperties3.Append(tableCellVerticalAlignment3);
            tableCellProperties3.Append(hideMark3);

            Paragraph paragraph59 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "2BB1C47D", TextId = "4C758177" };

            ParagraphProperties paragraphProperties58 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties58 = new ParagraphMarkRunProperties();
            RunFonts runFonts242 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize252 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript244 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties58.Append(runFonts242);
            paragraphMarkRunProperties58.Append(fontSize252);
            paragraphMarkRunProperties58.Append(fontSizeComplexScript244);

            paragraphProperties58.Append(paragraphMarkRunProperties58);

            Run run204 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties221 = new RunProperties();
            RunFonts runFonts243 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize253 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript245 = new FontSizeComplexScript() { Val = "22" };

            runProperties221.Append(runFonts243);
            runProperties221.Append(fontSize253);
            runProperties221.Append(fontSizeComplexScript245);
            Text text186 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text186.Text = "BJC IS Application ";

            run204.Append(runProperties221);
            run204.Append(text186);

            Run run205 = new Run() { RsidRunAddition = "002C4440" };

            RunProperties runProperties222 = new RunProperties();
            RunFonts runFonts244 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize254 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript246 = new FontSizeComplexScript() { Val = "22" };

            runProperties222.Append(runFonts244);
            runProperties222.Append(fontSize254);
            runProperties222.Append(fontSizeComplexScript246);
            Text text187 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text187.Text = "Support ";

            run205.Append(runProperties222);
            run205.Append(text187);

            Run run206 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties223 = new RunProperties();
            RunFonts runFonts245 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize255 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript247 = new FontSizeComplexScript() { Val = "22" };

            runProperties223.Append(runFonts245);
            runProperties223.Append(fontSize255);
            runProperties223.Append(fontSizeComplexScript247);
            Text text188 = new Text();
            text188.Text = "Team";

            run206.Append(runProperties223);
            run206.Append(text188);

            paragraph59.Append(paragraphProperties58);
            paragraph59.Append(run204);
            paragraph59.Append(run205);
            paragraph59.Append(run206);

            tableCell3.Append(tableCellProperties3);
            tableCell3.Append(paragraph59);

            TableCell tableCell4 = new TableCell();

            TableCellProperties tableCellProperties4 = new TableCellProperties();
            TableCellWidth tableCellWidth4 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders4 = new TableCellBorders();
            TopBorder topBorder5 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder4 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder4 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder4 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders4.Append(topBorder5);
            tableCellBorders4.Append(leftBorder4);
            tableCellBorders4.Append(bottomBorder4);
            tableCellBorders4.Append(rightBorder4);
            Shading shading4 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment4 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark4 = new HideMark();

            tableCellProperties4.Append(tableCellWidth4);
            tableCellProperties4.Append(tableCellBorders4);
            tableCellProperties4.Append(shading4);
            tableCellProperties4.Append(tableCellVerticalAlignment4);
            tableCellProperties4.Append(hideMark4);

            Paragraph paragraph60 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "5DCBC43A", TextId = "1E5F05B4" };

            ParagraphProperties paragraphProperties59 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties59 = new ParagraphMarkRunProperties();
            RunFonts runFonts246 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize256 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript248 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties59.Append(runFonts246);
            paragraphMarkRunProperties59.Append(fontSize256);
            paragraphMarkRunProperties59.Append(fontSizeComplexScript248);

            paragraphProperties59.Append(paragraphMarkRunProperties59);

            Run run207 = new Run();

            RunProperties runProperties224 = new RunProperties();
            RunFonts runFonts247 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize257 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript249 = new FontSizeComplexScript() { Val = "22" };

            runProperties224.Append(runFonts247);
            runProperties224.Append(fontSize257);
            runProperties224.Append(fontSizeComplexScript249);
            Text text189 = new Text();
            text189.Text = "C";

            run207.Append(runProperties224);
            run207.Append(text189);

            Run run208 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties225 = new RunProperties();
            RunFonts runFonts248 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize258 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript250 = new FontSizeComplexScript() { Val = "22" };

            runProperties225.Append(runFonts248);
            runProperties225.Append(fontSize258);
            runProperties225.Append(fontSizeComplexScript250);
            Text text190 = new Text();
            text190.Text = "ompletes necessary patching on the BJH monthly maintenance schedules";

            run208.Append(runProperties225);
            run208.Append(text190);

            paragraph60.Append(paragraphProperties59);
            paragraph60.Append(run207);
            paragraph60.Append(run208);

            tableCell4.Append(tableCellProperties4);
            tableCell4.Append(paragraph60);

            tableRow2.Append(tableRowProperties2);
            tableRow2.Append(tableCell3);
            tableRow2.Append(tableCell4);

            TableRow tableRow3 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "3D99BE0B", TextId = "77777777" };

            TableRowProperties tableRowProperties3 = new TableRowProperties();
            TableRowHeight tableRowHeight3 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties3.Append(tableRowHeight3);

            TableCell tableCell5 = new TableCell();

            TableCellProperties tableCellProperties5 = new TableCellProperties();
            TableCellWidth tableCellWidth5 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders5 = new TableCellBorders();
            TopBorder topBorder6 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder5 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder5 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder5 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders5.Append(topBorder6);
            tableCellBorders5.Append(leftBorder5);
            tableCellBorders5.Append(bottomBorder5);
            tableCellBorders5.Append(rightBorder5);
            Shading shading5 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment5 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark5 = new HideMark();

            tableCellProperties5.Append(tableCellWidth5);
            tableCellProperties5.Append(tableCellBorders5);
            tableCellProperties5.Append(shading5);
            tableCellProperties5.Append(tableCellVerticalAlignment5);
            tableCellProperties5.Append(hideMark5);

            Paragraph paragraph61 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "78BC1972", TextId = "52F4828E" };

            ParagraphProperties paragraphProperties60 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties60 = new ParagraphMarkRunProperties();
            RunFonts runFonts249 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize259 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript251 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties60.Append(runFonts249);
            paragraphMarkRunProperties60.Append(fontSize259);
            paragraphMarkRunProperties60.Append(fontSizeComplexScript251);

            paragraphProperties60.Append(paragraphMarkRunProperties60);

            Run run209 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties226 = new RunProperties();
            RunFonts runFonts250 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize260 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript252 = new FontSizeComplexScript() { Val = "22" };

            runProperties226.Append(runFonts250);
            runProperties226.Append(fontSize260);
            runProperties226.Append(fontSizeComplexScript252);
            Text text191 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text191.Text = "BJC IS Application ";

            run209.Append(runProperties226);
            run209.Append(text191);

            Run run210 = new Run() { RsidRunAddition = "002C4440" };

            RunProperties runProperties227 = new RunProperties();
            RunFonts runFonts251 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize261 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript253 = new FontSizeComplexScript() { Val = "22" };

            runProperties227.Append(runFonts251);
            runProperties227.Append(fontSize261);
            runProperties227.Append(fontSizeComplexScript253);
            Text text192 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text192.Text = "Support ";

            run210.Append(runProperties227);
            run210.Append(text192);

            Run run211 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties228 = new RunProperties();
            RunFonts runFonts252 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize262 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript254 = new FontSizeComplexScript() { Val = "22" };

            runProperties228.Append(runFonts252);
            runProperties228.Append(fontSize262);
            runProperties228.Append(fontSizeComplexScript254);
            Text text193 = new Text();
            text193.Text = "Team";

            run211.Append(runProperties228);
            run211.Append(text193);

            paragraph61.Append(paragraphProperties60);
            paragraph61.Append(run209);
            paragraph61.Append(run210);
            paragraph61.Append(run211);

            tableCell5.Append(tableCellProperties5);
            tableCell5.Append(paragraph61);

            TableCell tableCell6 = new TableCell();

            TableCellProperties tableCellProperties6 = new TableCellProperties();
            TableCellWidth tableCellWidth6 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders6 = new TableCellBorders();
            TopBorder topBorder7 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder6 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder6 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder6 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders6.Append(topBorder7);
            tableCellBorders6.Append(leftBorder6);
            tableCellBorders6.Append(bottomBorder6);
            tableCellBorders6.Append(rightBorder6);
            Shading shading6 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment6 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark6 = new HideMark();

            tableCellProperties6.Append(tableCellWidth6);
            tableCellProperties6.Append(tableCellBorders6);
            tableCellProperties6.Append(shading6);
            tableCellProperties6.Append(tableCellVerticalAlignment6);
            tableCellProperties6.Append(hideMark6);

            Paragraph paragraph62 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "63292C6A", TextId = "1956DDB3" };

            ParagraphProperties paragraphProperties61 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties61 = new ParagraphMarkRunProperties();
            RunFonts runFonts253 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize263 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript255 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties61.Append(runFonts253);
            paragraphMarkRunProperties61.Append(fontSize263);
            paragraphMarkRunProperties61.Append(fontSizeComplexScript255);

            paragraphProperties61.Append(paragraphMarkRunProperties61);

            Run run212 = new Run();

            RunProperties runProperties229 = new RunProperties();
            RunFonts runFonts254 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize264 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript256 = new FontSizeComplexScript() { Val = "22" };

            runProperties229.Append(runFonts254);
            runProperties229.Append(fontSize264);
            runProperties229.Append(fontSizeComplexScript256);
            Text text194 = new Text();
            text194.Text = "I";

            run212.Append(runProperties229);
            run212.Append(text194);

            Run run213 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties230 = new RunProperties();
            RunFonts runFonts255 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize265 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript257 = new FontSizeComplexScript() { Val = "22" };

            runProperties230.Append(runFonts255);
            runProperties230.Append(fontSize265);
            runProperties230.Append(fontSizeComplexScript257);
            Text text195 = new Text();
            text195.Text = "s the first line of  support for the Server within BJC";

            run213.Append(runProperties230);
            run213.Append(text195);

            paragraph62.Append(paragraphProperties61);
            paragraph62.Append(run212);
            paragraph62.Append(run213);

            tableCell6.Append(tableCellProperties6);
            tableCell6.Append(paragraph62);

            tableRow3.Append(tableRowProperties3);
            tableRow3.Append(tableCell5);
            tableRow3.Append(tableCell6);

            TableRow tableRow4 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "3A362CC0", TextId = "77777777" };

            TableRowProperties tableRowProperties4 = new TableRowProperties();
            TableRowHeight tableRowHeight4 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties4.Append(tableRowHeight4);

            TableCell tableCell7 = new TableCell();

            TableCellProperties tableCellProperties7 = new TableCellProperties();
            TableCellWidth tableCellWidth7 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders7 = new TableCellBorders();
            TopBorder topBorder8 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder7 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder7 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder7 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders7.Append(topBorder8);
            tableCellBorders7.Append(leftBorder7);
            tableCellBorders7.Append(bottomBorder7);
            tableCellBorders7.Append(rightBorder7);
            Shading shading7 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment7 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark7 = new HideMark();

            tableCellProperties7.Append(tableCellWidth7);
            tableCellProperties7.Append(tableCellBorders7);
            tableCellProperties7.Append(shading7);
            tableCellProperties7.Append(tableCellVerticalAlignment7);
            tableCellProperties7.Append(hideMark7);

            Paragraph paragraph63 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "4E1C762D", TextId = "094150A4" };

            ParagraphProperties paragraphProperties62 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties62 = new ParagraphMarkRunProperties();
            RunFonts runFonts256 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize266 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript258 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties62.Append(runFonts256);
            paragraphMarkRunProperties62.Append(fontSize266);
            paragraphMarkRunProperties62.Append(fontSizeComplexScript258);

            paragraphProperties62.Append(paragraphMarkRunProperties62);

            Run run214 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties231 = new RunProperties();
            RunFonts runFonts257 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize267 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript259 = new FontSizeComplexScript() { Val = "22" };

            runProperties231.Append(runFonts257);
            runProperties231.Append(fontSize267);
            runProperties231.Append(fontSizeComplexScript259);
            Text text196 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text196.Text = "BJC IS Application ";

            run214.Append(runProperties231);
            run214.Append(text196);

            Run run215 = new Run() { RsidRunAddition = "002C4440" };

            RunProperties runProperties232 = new RunProperties();
            RunFonts runFonts258 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize268 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript260 = new FontSizeComplexScript() { Val = "22" };

            runProperties232.Append(runFonts258);
            runProperties232.Append(fontSize268);
            runProperties232.Append(fontSizeComplexScript260);
            Text text197 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text197.Text = "Support ";

            run215.Append(runProperties232);
            run215.Append(text197);

            Run run216 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties233 = new RunProperties();
            RunFonts runFonts259 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize269 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript261 = new FontSizeComplexScript() { Val = "22" };

            runProperties233.Append(runFonts259);
            runProperties233.Append(fontSize269);
            runProperties233.Append(fontSizeComplexScript261);
            Text text198 = new Text();
            text198.Text = "Team";

            run216.Append(runProperties233);
            run216.Append(text198);

            paragraph63.Append(paragraphProperties62);
            paragraph63.Append(run214);
            paragraph63.Append(run215);
            paragraph63.Append(run216);

            tableCell7.Append(tableCellProperties7);
            tableCell7.Append(paragraph63);

            TableCell tableCell8 = new TableCell();

            TableCellProperties tableCellProperties8 = new TableCellProperties();
            TableCellWidth tableCellWidth8 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders8 = new TableCellBorders();
            TopBorder topBorder9 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder8 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder8 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder8 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders8.Append(topBorder9);
            tableCellBorders8.Append(leftBorder8);
            tableCellBorders8.Append(bottomBorder8);
            tableCellBorders8.Append(rightBorder8);
            Shading shading8 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment8 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark8 = new HideMark();

            tableCellProperties8.Append(tableCellWidth8);
            tableCellProperties8.Append(tableCellBorders8);
            tableCellProperties8.Append(shading8);
            tableCellProperties8.Append(tableCellVerticalAlignment8);
            tableCellProperties8.Append(hideMark8);

            Paragraph paragraph64 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "34EE6F72", TextId = "401295A8" };

            ParagraphProperties paragraphProperties63 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties63 = new ParagraphMarkRunProperties();
            RunFonts runFonts260 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize270 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript262 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties63.Append(runFonts260);
            paragraphMarkRunProperties63.Append(fontSize270);
            paragraphMarkRunProperties63.Append(fontSizeComplexScript262);

            paragraphProperties63.Append(paragraphMarkRunProperties63);

            Run run217 = new Run();

            RunProperties runProperties234 = new RunProperties();
            RunFonts runFonts261 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize271 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript263 = new FontSizeComplexScript() { Val = "22" };

            runProperties234.Append(runFonts261);
            runProperties234.Append(fontSize271);
            runProperties234.Append(fontSizeComplexScript263);
            Text text199 = new Text();
            text199.Text = "C";

            run217.Append(runProperties234);
            run217.Append(text199);

            Run run218 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties235 = new RunProperties();
            RunFonts runFonts262 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize272 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript264 = new FontSizeComplexScript() { Val = "22" };

            runProperties235.Append(runFonts262);
            runProperties235.Append(fontSize272);
            runProperties235.Append(fontSizeComplexScript264);
            Text text200 = new Text();
            text200.Text = "oordinates maintenance with customer as needed";

            run218.Append(runProperties235);
            run218.Append(text200);

            paragraph64.Append(paragraphProperties63);
            paragraph64.Append(run217);
            paragraph64.Append(run218);

            tableCell8.Append(tableCellProperties8);
            tableCell8.Append(paragraph64);

            tableRow4.Append(tableRowProperties4);
            tableRow4.Append(tableCell7);
            tableRow4.Append(tableCell8);

            TableRow tableRow5 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "520464AD", TextId = "77777777" };

            TableRowProperties tableRowProperties5 = new TableRowProperties();
            TableRowHeight tableRowHeight5 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties5.Append(tableRowHeight5);

            TableCell tableCell9 = new TableCell();

            TableCellProperties tableCellProperties9 = new TableCellProperties();
            TableCellWidth tableCellWidth9 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders9 = new TableCellBorders();
            TopBorder topBorder10 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder9 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder9 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder9 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders9.Append(topBorder10);
            tableCellBorders9.Append(leftBorder9);
            tableCellBorders9.Append(bottomBorder9);
            tableCellBorders9.Append(rightBorder9);
            Shading shading9 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment9 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark9 = new HideMark();

            tableCellProperties9.Append(tableCellWidth9);
            tableCellProperties9.Append(tableCellBorders9);
            tableCellProperties9.Append(shading9);
            tableCellProperties9.Append(tableCellVerticalAlignment9);
            tableCellProperties9.Append(hideMark9);

            Paragraph paragraph65 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "4B5F8E67", TextId = "29BF48E5" };

            ParagraphProperties paragraphProperties64 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties64 = new ParagraphMarkRunProperties();
            RunFonts runFonts263 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize273 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript265 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties64.Append(runFonts263);
            paragraphMarkRunProperties64.Append(fontSize273);
            paragraphMarkRunProperties64.Append(fontSizeComplexScript265);

            paragraphProperties64.Append(paragraphMarkRunProperties64);

            Run run219 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties236 = new RunProperties();
            RunFonts runFonts264 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize274 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript266 = new FontSizeComplexScript() { Val = "22" };

            runProperties236.Append(runFonts264);
            runProperties236.Append(fontSize274);
            runProperties236.Append(fontSizeComplexScript266);
            Text text201 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text201.Text = "BJC IS Application ";

            run219.Append(runProperties236);
            run219.Append(text201);

            Run run220 = new Run() { RsidRunAddition = "002C4440" };

            RunProperties runProperties237 = new RunProperties();
            RunFonts runFonts265 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize275 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript267 = new FontSizeComplexScript() { Val = "22" };

            runProperties237.Append(runFonts265);
            runProperties237.Append(fontSize275);
            runProperties237.Append(fontSizeComplexScript267);
            Text text202 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text202.Text = "Support ";

            run220.Append(runProperties237);
            run220.Append(text202);

            Run run221 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties238 = new RunProperties();
            RunFonts runFonts266 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize276 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript268 = new FontSizeComplexScript() { Val = "22" };

            runProperties238.Append(runFonts266);
            runProperties238.Append(fontSize276);
            runProperties238.Append(fontSizeComplexScript268);
            Text text203 = new Text();
            text203.Text = "Team";

            run221.Append(runProperties238);
            run221.Append(text203);

            paragraph65.Append(paragraphProperties64);
            paragraph65.Append(run219);
            paragraph65.Append(run220);
            paragraph65.Append(run221);

            tableCell9.Append(tableCellProperties9);
            tableCell9.Append(paragraph65);

            TableCell tableCell10 = new TableCell();

            TableCellProperties tableCellProperties10 = new TableCellProperties();
            TableCellWidth tableCellWidth10 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders10 = new TableCellBorders();
            TopBorder topBorder11 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder10 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder10 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder10 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders10.Append(topBorder11);
            tableCellBorders10.Append(leftBorder10);
            tableCellBorders10.Append(bottomBorder10);
            tableCellBorders10.Append(rightBorder10);
            Shading shading10 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment10 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark10 = new HideMark();

            tableCellProperties10.Append(tableCellWidth10);
            tableCellProperties10.Append(tableCellBorders10);
            tableCellProperties10.Append(shading10);
            tableCellProperties10.Append(tableCellVerticalAlignment10);
            tableCellProperties10.Append(hideMark10);

            Paragraph paragraph66 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "2BE6D84A", TextId = "4D217734" };

            ParagraphProperties paragraphProperties65 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties65 = new ParagraphMarkRunProperties();
            RunFonts runFonts267 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize277 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript269 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties65.Append(runFonts267);
            paragraphMarkRunProperties65.Append(fontSize277);
            paragraphMarkRunProperties65.Append(fontSizeComplexScript269);

            paragraphProperties65.Append(paragraphMarkRunProperties65);

            Run run222 = new Run();

            RunProperties runProperties239 = new RunProperties();
            RunFonts runFonts268 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize278 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript270 = new FontSizeComplexScript() { Val = "22" };

            runProperties239.Append(runFonts268);
            runProperties239.Append(fontSize278);
            runProperties239.Append(fontSizeComplexScript270);
            Text text204 = new Text();
            text204.Text = "W";

            run222.Append(runProperties239);
            run222.Append(text204);

            Run run223 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties240 = new RunProperties();
            RunFonts runFonts269 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize279 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript271 = new FontSizeComplexScript() { Val = "22" };

            runProperties240.Append(runFonts269);
            runProperties240.Append(fontSize279);
            runProperties240.Append(fontSizeComplexScript271);
            Text text205 = new Text();
            text205.Text = "ill  act on over-threshold alerts (CPU, disk space, etc)?";

            run223.Append(runProperties240);
            run223.Append(text205);

            paragraph66.Append(paragraphProperties65);
            paragraph66.Append(run222);
            paragraph66.Append(run223);

            tableCell10.Append(tableCellProperties10);
            tableCell10.Append(paragraph66);

            tableRow5.Append(tableRowProperties5);
            tableRow5.Append(tableCell9);
            tableRow5.Append(tableCell10);

            TableRow tableRow6 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "2C75E444", TextId = "77777777" };

            TableRowProperties tableRowProperties6 = new TableRowProperties();
            TableRowHeight tableRowHeight6 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties6.Append(tableRowHeight6);

            TableCell tableCell11 = new TableCell();

            TableCellProperties tableCellProperties11 = new TableCellProperties();
            TableCellWidth tableCellWidth11 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders11 = new TableCellBorders();
            TopBorder topBorder12 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder11 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder11 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder11 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders11.Append(topBorder12);
            tableCellBorders11.Append(leftBorder11);
            tableCellBorders11.Append(bottomBorder11);
            tableCellBorders11.Append(rightBorder11);
            Shading shading11 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment11 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark11 = new HideMark();

            tableCellProperties11.Append(tableCellWidth11);
            tableCellProperties11.Append(tableCellBorders11);
            tableCellProperties11.Append(shading11);
            tableCellProperties11.Append(tableCellVerticalAlignment11);
            tableCellProperties11.Append(hideMark11);

            Paragraph paragraph67 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "0D9719DE", TextId = "77777777" };

            ParagraphProperties paragraphProperties66 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties66 = new ParagraphMarkRunProperties();
            RunFonts runFonts270 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize280 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript272 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties66.Append(runFonts270);
            paragraphMarkRunProperties66.Append(fontSize280);
            paragraphMarkRunProperties66.Append(fontSizeComplexScript272);

            paragraphProperties66.Append(paragraphMarkRunProperties66);

            Run run224 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties241 = new RunProperties();
            RunFonts runFonts271 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize281 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript273 = new FontSizeComplexScript() { Val = "22" };

            runProperties241.Append(runFonts271);
            runProperties241.Append(fontSize281);
            runProperties241.Append(fontSizeComplexScript273);
            Text text206 = new Text();
            text206.Text = "Vendor";

            run224.Append(runProperties241);
            run224.Append(text206);

            paragraph67.Append(paragraphProperties66);
            paragraph67.Append(run224);

            tableCell11.Append(tableCellProperties11);
            tableCell11.Append(paragraph67);

            TableCell tableCell12 = new TableCell();

            TableCellProperties tableCellProperties12 = new TableCellProperties();
            TableCellWidth tableCellWidth12 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders12 = new TableCellBorders();
            TopBorder topBorder13 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder12 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder12 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder12 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders12.Append(topBorder13);
            tableCellBorders12.Append(leftBorder12);
            tableCellBorders12.Append(bottomBorder12);
            tableCellBorders12.Append(rightBorder12);
            Shading shading12 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment12 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark12 = new HideMark();

            tableCellProperties12.Append(tableCellWidth12);
            tableCellProperties12.Append(tableCellBorders12);
            tableCellProperties12.Append(shading12);
            tableCellProperties12.Append(tableCellVerticalAlignment12);
            tableCellProperties12.Append(hideMark12);

            Paragraph paragraph68 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "78C80507", TextId = "0E6FA2A1" };

            ParagraphProperties paragraphProperties67 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties67 = new ParagraphMarkRunProperties();
            RunFonts runFonts272 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize282 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript274 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties67.Append(runFonts272);
            paragraphMarkRunProperties67.Append(fontSize282);
            paragraphMarkRunProperties67.Append(fontSizeComplexScript274);

            paragraphProperties67.Append(paragraphMarkRunProperties67);

            Run run225 = new Run();

            RunProperties runProperties242 = new RunProperties();
            RunFonts runFonts273 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize283 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript275 = new FontSizeComplexScript() { Val = "22" };

            runProperties242.Append(runFonts273);
            runProperties242.Append(fontSize283);
            runProperties242.Append(fontSizeComplexScript275);
            Text text207 = new Text();
            text207.Text = "H";

            run225.Append(runProperties242);
            run225.Append(text207);

            Run run226 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties243 = new RunProperties();
            RunFonts runFonts274 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize284 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript276 = new FontSizeComplexScript() { Val = "22" };

            runProperties243.Append(runFonts274);
            runProperties243.Append(fontSize284);
            runProperties243.Append(fontSizeComplexScript276);
            Text text208 = new Text();
            text208.Text = "as full support of the application on the server including the SQL database.  Vendor will install application and SQL.   No BJC SQL support.";

            run226.Append(runProperties243);
            run226.Append(text208);

            paragraph68.Append(paragraphProperties67);
            paragraph68.Append(run225);
            paragraph68.Append(run226);

            tableCell12.Append(tableCellProperties12);
            tableCell12.Append(paragraph68);

            tableRow6.Append(tableRowProperties6);
            tableRow6.Append(tableCell11);
            tableRow6.Append(tableCell12);

            TableRow tableRow7 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "7DA0DDC0", TextId = "77777777" };

            TableRowProperties tableRowProperties7 = new TableRowProperties();
            TableRowHeight tableRowHeight7 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties7.Append(tableRowHeight7);

            TableCell tableCell13 = new TableCell();

            TableCellProperties tableCellProperties13 = new TableCellProperties();
            TableCellWidth tableCellWidth13 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders13 = new TableCellBorders();
            TopBorder topBorder14 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder13 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder13 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder13 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders13.Append(topBorder14);
            tableCellBorders13.Append(leftBorder13);
            tableCellBorders13.Append(bottomBorder13);
            tableCellBorders13.Append(rightBorder13);
            Shading shading13 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment13 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark13 = new HideMark();

            tableCellProperties13.Append(tableCellWidth13);
            tableCellProperties13.Append(tableCellBorders13);
            tableCellProperties13.Append(shading13);
            tableCellProperties13.Append(tableCellVerticalAlignment13);
            tableCellProperties13.Append(hideMark13);

            Paragraph paragraph69 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "41C2CEF5", TextId = "77777777" };

            ParagraphProperties paragraphProperties68 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties68 = new ParagraphMarkRunProperties();
            RunFonts runFonts275 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize285 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript277 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties68.Append(runFonts275);
            paragraphMarkRunProperties68.Append(fontSize285);
            paragraphMarkRunProperties68.Append(fontSizeComplexScript277);

            paragraphProperties68.Append(paragraphMarkRunProperties68);

            Run run227 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties244 = new RunProperties();
            RunFonts runFonts276 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize286 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript278 = new FontSizeComplexScript() { Val = "22" };

            runProperties244.Append(runFonts276);
            runProperties244.Append(fontSize286);
            runProperties244.Append(fontSizeComplexScript278);
            Text text209 = new Text();
            text209.Text = "Customer";

            run227.Append(runProperties244);
            run227.Append(text209);

            paragraph69.Append(paragraphProperties68);
            paragraph69.Append(run227);

            tableCell13.Append(tableCellProperties13);
            tableCell13.Append(paragraph69);

            TableCell tableCell14 = new TableCell();

            TableCellProperties tableCellProperties14 = new TableCellProperties();
            TableCellWidth tableCellWidth14 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders14 = new TableCellBorders();
            TopBorder topBorder15 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder14 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder14 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder14 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders14.Append(topBorder15);
            tableCellBorders14.Append(leftBorder14);
            tableCellBorders14.Append(bottomBorder14);
            tableCellBorders14.Append(rightBorder14);
            Shading shading14 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment14 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark14 = new HideMark();

            tableCellProperties14.Append(tableCellWidth14);
            tableCellProperties14.Append(tableCellBorders14);
            tableCellProperties14.Append(shading14);
            tableCellProperties14.Append(tableCellVerticalAlignment14);
            tableCellProperties14.Append(hideMark14);

            Paragraph paragraph70 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "698A6711", TextId = "0B1F45AF" };

            ParagraphProperties paragraphProperties69 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties69 = new ParagraphMarkRunProperties();
            RunFonts runFonts277 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize287 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript279 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties69.Append(runFonts277);
            paragraphMarkRunProperties69.Append(fontSize287);
            paragraphMarkRunProperties69.Append(fontSizeComplexScript279);

            paragraphProperties69.Append(paragraphMarkRunProperties69);

            Run run228 = new Run();

            RunProperties runProperties245 = new RunProperties();
            RunFonts runFonts278 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize288 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript280 = new FontSizeComplexScript() { Val = "22" };

            runProperties245.Append(runFonts278);
            runProperties245.Append(fontSize288);
            runProperties245.Append(fontSizeComplexScript280);
            Text text210 = new Text();
            text210.Text = "W";

            run228.Append(runProperties245);
            run228.Append(text210);

            Run run229 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties246 = new RunProperties();
            RunFonts runFonts279 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize289 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript281 = new FontSizeComplexScript() { Val = "22" };

            runProperties246.Append(runFonts279);
            runProperties246.Append(fontSize289);
            runProperties246.Append(fontSizeComplexScript281);
            Text text211 = new Text();
            text211.Text = "ill call the vendor directly on issues with the product";

            run229.Append(runProperties246);
            run229.Append(text211);

            paragraph70.Append(paragraphProperties69);
            paragraph70.Append(run228);
            paragraph70.Append(run229);

            tableCell14.Append(tableCellProperties14);
            tableCell14.Append(paragraph70);

            tableRow7.Append(tableRowProperties7);
            tableRow7.Append(tableCell13);
            tableRow7.Append(tableCell14);

            TableRow tableRow8 = new TableRow() { RsidTableRowMarkRevision = "002C4440", RsidTableRowAddition = "003C2F92", RsidTableRowProperties = "002C4440", ParagraphId = "1495B327", TextId = "77777777" };

            TableRowProperties tableRowProperties8 = new TableRowProperties();
            TableRowHeight tableRowHeight8 = new TableRowHeight() { Val = (UInt32Value)255U };

            tableRowProperties8.Append(tableRowHeight8);

            TableCell tableCell15 = new TableCell();

            TableCellProperties tableCellProperties15 = new TableCellProperties();
            TableCellWidth tableCellWidth15 = new TableCellWidth() { Width = "3065", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders15 = new TableCellBorders();
            TopBorder topBorder16 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder15 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder15 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder15 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders15.Append(topBorder16);
            tableCellBorders15.Append(leftBorder15);
            tableCellBorders15.Append(bottomBorder15);
            tableCellBorders15.Append(rightBorder15);
            Shading shading15 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "FFFF00" };
            TableCellVerticalAlignment tableCellVerticalAlignment15 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark15 = new HideMark();

            tableCellProperties15.Append(tableCellWidth15);
            tableCellProperties15.Append(tableCellBorders15);
            tableCellProperties15.Append(shading15);
            tableCellProperties15.Append(tableCellVerticalAlignment15);
            tableCellProperties15.Append(hideMark15);

            Paragraph paragraph71 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "1F680224", TextId = "77777777" };

            ParagraphProperties paragraphProperties70 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties70 = new ParagraphMarkRunProperties();
            RunFonts runFonts280 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize290 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript282 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties70.Append(runFonts280);
            paragraphMarkRunProperties70.Append(fontSize290);
            paragraphMarkRunProperties70.Append(fontSizeComplexScript282);

            paragraphProperties70.Append(paragraphMarkRunProperties70);

            Run run230 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties247 = new RunProperties();
            RunFonts runFonts281 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize291 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript283 = new FontSizeComplexScript() { Val = "22" };

            runProperties247.Append(runFonts281);
            runProperties247.Append(fontSize291);
            runProperties247.Append(fontSizeComplexScript283);
            Text text212 = new Text();
            text212.Text = "BJC Tech Services";

            run230.Append(runProperties247);
            run230.Append(text212);

            paragraph71.Append(paragraphProperties70);
            paragraph71.Append(run230);

            tableCell15.Append(tableCellProperties15);
            tableCell15.Append(paragraph71);

            TableCell tableCell16 = new TableCell();

            TableCellProperties tableCellProperties16 = new TableCellProperties();
            TableCellWidth tableCellWidth16 = new TableCellWidth() { Width = "9990", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders16 = new TableCellBorders();
            TopBorder topBorder17 = new TopBorder() { Val = BorderValues.Nil };
            LeftBorder leftBorder16 = new LeftBorder() { Val = BorderValues.Nil };
            BottomBorder bottomBorder16 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder16 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders16.Append(topBorder17);
            tableCellBorders16.Append(leftBorder16);
            tableCellBorders16.Append(bottomBorder16);
            tableCellBorders16.Append(rightBorder16);
            Shading shading16 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
            TableCellVerticalAlignment tableCellVerticalAlignment16 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark16 = new HideMark();

            tableCellProperties16.Append(tableCellWidth16);
            tableCellProperties16.Append(tableCellBorders16);
            tableCellProperties16.Append(shading16);
            tableCellProperties16.Append(tableCellVerticalAlignment16);
            tableCellProperties16.Append(hideMark16);

            Paragraph paragraph72 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "7426EE6D", TextId = "0DC1F4AC" };

            ParagraphProperties paragraphProperties71 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties71 = new ParagraphMarkRunProperties();
            RunFonts runFonts282 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize292 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript284 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties71.Append(runFonts282);
            paragraphMarkRunProperties71.Append(fontSize292);
            paragraphMarkRunProperties71.Append(fontSizeComplexScript284);

            paragraphProperties71.Append(paragraphMarkRunProperties71);

            Run run231 = new Run();

            RunProperties runProperties248 = new RunProperties();
            RunFonts runFonts283 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize293 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript285 = new FontSizeComplexScript() { Val = "22" };

            runProperties248.Append(runFonts283);
            runProperties248.Append(fontSize293);
            runProperties248.Append(fontSizeComplexScript285);
            Text text213 = new Text();
            text213.Text = "W";

            run231.Append(runProperties248);
            run231.Append(text213);

            Run run232 = new Run() { RsidRunProperties = "002C4440", RsidRunAddition = "003C2F92" };

            RunProperties runProperties249 = new RunProperties();
            RunFonts runFonts284 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize294 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript286 = new FontSizeComplexScript() { Val = "22" };

            runProperties249.Append(runFonts284);
            runProperties249.Append(fontSize294);
            runProperties249.Append(fontSizeComplexScript286);
            Text text214 = new Text();
            text214.Text = "ill contact the app team as needed with incidents or issues with server.   App team will contact ISOC if initial OS/hardware troubleshooting is recommended by vendor.  ISOC will escalate to appropriate Tier 3 team as needed.";

            run232.Append(runProperties249);
            run232.Append(text214);

            paragraph72.Append(paragraphProperties71);
            paragraph72.Append(run231);
            paragraph72.Append(run232);

            tableCell16.Append(tableCellProperties16);
            tableCell16.Append(paragraph72);

            tableRow8.Append(tableRowProperties8);
            tableRow8.Append(tableCell15);
            tableRow8.Append(tableCell16);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);
            table1.Append(tableRow2);
            table1.Append(tableRow3);
            table1.Append(tableRow4);
            table1.Append(tableRow5);
            table1.Append(tableRow6);
            table1.Append(tableRow7);
            table1.Append(tableRow8);

            Paragraph paragraph73 = new Paragraph() { RsidParagraphAddition = "003C2F92", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "003C2F92", ParagraphId = "4E0693D8", TextId = "77777777" };

            ParagraphProperties paragraphProperties72 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties72 = new ParagraphMarkRunProperties();
            RunFonts runFonts285 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            FontSize fontSize295 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript287 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties72.Append(runFonts285);
            paragraphMarkRunProperties72.Append(fontSize295);
            paragraphMarkRunProperties72.Append(fontSizeComplexScript287);

            paragraphProperties72.Append(paragraphMarkRunProperties72);

            Run run233 = new Run() { RsidRunProperties = "003C2F92" };

            RunProperties runProperties250 = new RunProperties();
            RunFonts runFonts286 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            FontSize fontSize296 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript288 = new FontSizeComplexScript() { Val = "20" };

            runProperties250.Append(runFonts286);
            runProperties250.Append(fontSize296);
            runProperties250.Append(fontSizeComplexScript288);
            Text text215 = new Text();
            text215.Text = " ";

            run233.Append(runProperties250);
            run233.Append(text215);

            paragraph73.Append(paragraphProperties72);
            paragraph73.Append(run233);

            Paragraph paragraph74 = new Paragraph() { RsidParagraphMarkRevision = "002C4440", RsidParagraphAddition = "002C4440", RsidParagraphProperties = "003C2F92", RsidRunAdditionDefault = "002C4440", ParagraphId = "49DFF894", TextId = "18131B07" };

            ParagraphProperties paragraphProperties73 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties73 = new ParagraphMarkRunProperties();
            RunFonts runFonts287 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold24 = new Bold();
            Color color64 = new Color() { Val = "FF0000" };
            FontSizeComplexScript fontSizeComplexScript289 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties73.Append(runFonts287);
            paragraphMarkRunProperties73.Append(bold24);
            paragraphMarkRunProperties73.Append(color64);
            paragraphMarkRunProperties73.Append(fontSizeComplexScript289);

            paragraphProperties73.Append(paragraphMarkRunProperties73);

            Run run234 = new Run() { RsidRunProperties = "002C4440" };

            RunProperties runProperties251 = new RunProperties();
            RunFonts runFonts288 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold25 = new Bold();
            Color color65 = new Color() { Val = "FF0000" };
            FontSizeComplexScript fontSizeComplexScript290 = new FontSizeComplexScript() { Val = "20" };

            runProperties251.Append(runFonts288);
            runProperties251.Append(bold25);
            runProperties251.Append(color65);
            runProperties251.Append(fontSizeComplexScript290);
            Text text216 = new Text();
            text216.Text = "Approved by Application Support Stakeholder:  Name___________  Date________________";

            run234.Append(runProperties251);
            run234.Append(text216);

            paragraph74.Append(paragraphProperties73);
            paragraph74.Append(run234);

            Paragraph paragraph75 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C7F26", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC194C", TextId = "6F28CE7A" };

            ParagraphProperties paragraphProperties74 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId11 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties74 = new ParagraphMarkRunProperties();
            Underline underline28 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties74.Append(underline28);

            paragraphProperties74.Append(paragraphStyleId11);
            paragraphProperties74.Append(paragraphMarkRunProperties74);

            Run run235 = new Run();

            RunProperties runProperties252 = new RunProperties();
            Underline underline29 = new Underline() { Val = UnderlineValues.Single };

            runProperties252.Append(underline29);
            Text text217 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text217.Text = "7. ";

            run235.Append(runProperties252);
            run235.Append(text217);

            Run run236 = new Run() { RsidRunAddition = "003B7064" };

            RunProperties runProperties253 = new RunProperties();
            Underline underline30 = new Underline() { Val = UnderlineValues.Single };

            runProperties253.Append(underline30);
            Text text218 = new Text();
            text218.Text = "Special Circumstances Notes";

            run236.Append(runProperties253);
            run236.Append(text218);

            Run run237 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "003B7064" };

            RunProperties runProperties254 = new RunProperties();
            Color color66 = new Color() { Val = "FF0000" };
            Underline underline31 = new Underline() { Val = UnderlineValues.Single };

            runProperties254.Append(color66);
            runProperties254.Append(underline31);
            Text text219 = new Text();
            text219.Text = ": N/A";

            run237.Append(runProperties254);
            run237.Append(text219);

            paragraph75.Append(paragraphProperties74);
            paragraph75.Append(run235);
            paragraph75.Append(run236);
            paragraph75.Append(run237);

            Paragraph paragraph76 = new Paragraph() { RsidParagraphAddition = "00CC0FC7", RsidParagraphProperties = "00CC0FC7", RsidRunAdditionDefault = "00CC0FC7", ParagraphId = "68CC729C", TextId = "7FEA18B5" };

            ParagraphProperties paragraphProperties75 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties75 = new ParagraphMarkRunProperties();
            RunFonts runFonts289 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color67 = new Color() { Val = "FF0000" };
            FontSize fontSize297 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript291 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties75.Append(runFonts289);
            paragraphMarkRunProperties75.Append(color67);
            paragraphMarkRunProperties75.Append(fontSize297);
            paragraphMarkRunProperties75.Append(fontSizeComplexScript291);

            paragraphProperties75.Append(paragraphMarkRunProperties75);

            Run run238 = new Run() { RsidRunProperties = "00CC0FC7" };

            RunProperties runProperties255 = new RunProperties();
            Bold bold26 = new Bold();

            runProperties255.Append(bold26);
            Text text220 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text220.Text = "Server to duplicate settings of: ";

            run238.Append(runProperties255);
            run238.Append(text220);

            Run run239 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties256 = new RunProperties();
            RunFonts runFonts290 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color68 = new Color() { Val = "FF0000" };
            FontSize fontSize298 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript292 = new FontSizeComplexScript() { Val = "22" };

            runProperties256.Append(runFonts290);
            runProperties256.Append(color68);
            runProperties256.Append(fontSize298);
            runProperties256.Append(fontSizeComplexScript292);
            Text text221 = new Text();
            text221.Text = "BJCxxxxxxxx";

            run239.Append(runProperties256);
            run239.Append(text221);

            paragraph76.Append(paragraphProperties75);
            paragraph76.Append(run238);
            paragraph76.Append(run239);

            Paragraph paragraph77 = new Paragraph() { RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "00CC0FC7", RsidRunAdditionDefault = "00BC048A", ParagraphId = "00210A38", TextId = "0E04CF99" };

            ParagraphProperties paragraphProperties76 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties76 = new ParagraphMarkRunProperties();
            RunFonts runFonts291 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize299 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript293 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties76.Append(runFonts291);
            paragraphMarkRunProperties76.Append(fontSize299);
            paragraphMarkRunProperties76.Append(fontSizeComplexScript293);

            paragraphProperties76.Append(paragraphMarkRunProperties76);

            Run run240 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties257 = new RunProperties();
            RunFonts runFonts292 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize300 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript294 = new FontSizeComplexScript() { Val = "22" };

            runProperties257.Append(runFonts292);
            runProperties257.Append(fontSize300);
            runProperties257.Append(fontSizeComplexScript294);
            Text text222 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text222.Text = "Administrators Group: ";

            run240.Append(runProperties257);
            run240.Append(text222);

            Run run241 = new Run() { RsidRunProperties = "00116FA1" };

            RunProperties runProperties258 = new RunProperties();
            RunFonts runFonts293 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color69 = new Color() { Val = "FF0000" };
            FontSize fontSize301 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript295 = new FontSizeComplexScript() { Val = "22" };

            runProperties258.Append(runFonts293);
            runProperties258.Append(color69);
            runProperties258.Append(fontSize301);
            runProperties258.Append(fontSizeComplexScript295);
            Text text223 = new Text();
            text223.Text = "BJC-NT\\";

            run241.Append(runProperties258);
            run241.Append(text223);

            Run run242 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties259 = new RunProperties();
            RunFonts runFonts294 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color70 = new Color() { Val = "FF0000" };
            FontSize fontSize302 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript296 = new FontSizeComplexScript() { Val = "22" };

            runProperties259.Append(runFonts294);
            runProperties259.Append(color70);
            runProperties259.Append(fontSize302);
            runProperties259.Append(fontSizeComplexScript296);
            Text text224 = new Text();
            text224.Text = "xxx";

            run242.Append(runProperties259);
            run242.Append(text224);

            paragraph77.Append(paragraphProperties76);
            paragraph77.Append(run240);
            paragraph77.Append(run241);
            paragraph77.Append(run242);

            Paragraph paragraph78 = new Paragraph() { RsidParagraphMarkRevision = "00BC048A", RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "00CC0FC7", RsidRunAdditionDefault = "00BC048A", ParagraphId = "212FB4D7", TextId = "61AB3CEA" };

            ParagraphProperties paragraphProperties77 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties77 = new ParagraphMarkRunProperties();
            RunFonts runFonts295 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize303 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript297 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties77.Append(runFonts295);
            paragraphMarkRunProperties77.Append(fontSize303);
            paragraphMarkRunProperties77.Append(fontSizeComplexScript297);

            paragraphProperties77.Append(paragraphMarkRunProperties77);

            Run run243 = new Run();

            RunProperties runProperties260 = new RunProperties();
            RunFonts runFonts296 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize304 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript298 = new FontSizeComplexScript() { Val = "22" };

            runProperties260.Append(runFonts296);
            runProperties260.Append(fontSize304);
            runProperties260.Append(fontSizeComplexScript298);
            LastRenderedPageBreak lastRenderedPageBreak3 = new LastRenderedPageBreak();
            Text text225 = new Text();
            text225.Text = "WSP group";

            run243.Append(runProperties260);
            run243.Append(lastRenderedPageBreak3);
            run243.Append(text225);

            Run run244 = new Run() { RsidRunAddition = "003C2F92" };

            RunProperties runProperties261 = new RunProperties();
            RunFonts runFonts297 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize305 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript299 = new FontSizeComplexScript() { Val = "22" };

            runProperties261.Append(runFonts297);
            runProperties261.Append(fontSize305);
            runProperties261.Append(fontSizeComplexScript299);
            Text text226 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text226.Text = " (for monthly Windows patches)";

            run244.Append(runProperties261);
            run244.Append(text226);

            Run run245 = new Run();

            RunProperties runProperties262 = new RunProperties();
            RunFonts runFonts298 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize306 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript300 = new FontSizeComplexScript() { Val = "22" };

            runProperties262.Append(runFonts298);
            runProperties262.Append(fontSize306);
            runProperties262.Append(fontSizeComplexScript300);
            Text text227 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text227.Text = ": ";

            run245.Append(runProperties262);
            run245.Append(text227);

            Run run246 = new Run() { RsidRunAddition = "007F295C" };

            RunProperties runProperties263 = new RunProperties();
            RunFonts runFonts299 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color71 = new Color() { Val = "FF0000" };
            FontSize fontSize307 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript301 = new FontSizeComplexScript() { Val = "22" };

            runProperties263.Append(runFonts299);
            runProperties263.Append(color71);
            runProperties263.Append(fontSize307);
            runProperties263.Append(fontSizeComplexScript301);
            Text text228 = new Text();
            text228.Text = "WSP-";

            run246.Append(runProperties263);
            run246.Append(text228);

            Run run247 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties264 = new RunProperties();
            RunFonts runFonts300 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color72 = new Color() { Val = "FF0000" };
            FontSize fontSize308 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript302 = new FontSizeComplexScript() { Val = "22" };

            runProperties264.Append(runFonts300);
            runProperties264.Append(color72);
            runProperties264.Append(fontSize308);
            runProperties264.Append(fontSizeComplexScript302);
            Text text229 = new Text();
            text229.Text = "xx";

            run247.Append(runProperties264);
            run247.Append(text229);

            paragraph78.Append(paragraphProperties77);
            paragraph78.Append(run243);
            paragraph78.Append(run244);
            paragraph78.Append(run245);
            paragraph78.Append(run246);
            paragraph78.Append(run247);

            Paragraph paragraph79 = new Paragraph() { RsidParagraphAddition = "001A269D", RsidParagraphProperties = "00DE0CB0", RsidRunAdditionDefault = "001A269D", ParagraphId = "3F91A3EE", TextId = "7C137BAD" };

            ParagraphProperties paragraphProperties78 = new ParagraphProperties();
            Indentation indentation15 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties78 = new ParagraphMarkRunProperties();
            RunFonts runFonts301 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color73 = new Color() { Val = "FF0000" };
            FontSize fontSize309 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript303 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties78.Append(runFonts301);
            paragraphMarkRunProperties78.Append(color73);
            paragraphMarkRunProperties78.Append(fontSize309);
            paragraphMarkRunProperties78.Append(fontSizeComplexScript303);

            paragraphProperties78.Append(indentation15);
            paragraphProperties78.Append(paragraphMarkRunProperties78);

            Run run248 = new Run();

            RunProperties runProperties265 = new RunProperties();
            RunFonts runFonts302 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color74 = new Color() { Val = "FF0000" };
            FontSize fontSize310 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript304 = new FontSizeComplexScript() { Val = "22" };

            runProperties265.Append(runFonts302);
            runProperties265.Append(color74);
            runProperties265.Append(fontSize310);
            runProperties265.Append(fontSizeComplexScript304);
            Text text230 = new Text();
            text230.Text = "More than 2TB of SAN needed?";

            run248.Append(runProperties265);
            run248.Append(text230);

            paragraph79.Append(paragraphProperties78);
            paragraph79.Append(run248);

            Paragraph paragraph80 = new Paragraph() { RsidParagraphAddition = "00624202", RsidParagraphProperties = "00DE0CB0", RsidRunAdditionDefault = "00624202", ParagraphId = "18D54D05", TextId = "66F1BC07" };

            ParagraphProperties paragraphProperties79 = new ParagraphProperties();
            Indentation indentation16 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties79 = new ParagraphMarkRunProperties();
            RunFonts runFonts303 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color75 = new Color() { Val = "FF0000" };
            FontSize fontSize311 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript305 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties79.Append(runFonts303);
            paragraphMarkRunProperties79.Append(color75);
            paragraphMarkRunProperties79.Append(fontSize311);
            paragraphMarkRunProperties79.Append(fontSizeComplexScript305);

            paragraphProperties79.Append(indentation16);
            paragraphProperties79.Append(paragraphMarkRunProperties79);

            Run run249 = new Run();

            RunProperties runProperties266 = new RunProperties();
            RunFonts runFonts304 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color76 = new Color() { Val = "FF0000" };
            FontSize fontSize312 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript306 = new FontSizeComplexScript() { Val = "22" };

            runProperties266.Append(runFonts304);
            runProperties266.Append(color76);
            runProperties266.Append(fontSize312);
            runProperties266.Append(fontSizeComplexScript306);
            Text text231 = new Text();
            text231.Text = "If not utilizing 64bit OS";

            run249.Append(runProperties266);
            run249.Append(text231);

            Run run250 = new Run() { RsidRunAddition = "00797265" };

            RunProperties runProperties267 = new RunProperties();
            RunFonts runFonts305 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color77 = new Color() { Val = "FF0000" };
            FontSize fontSize313 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript307 = new FontSizeComplexScript() { Val = "22" };

            runProperties267.Append(runFonts305);
            runProperties267.Append(color77);
            runProperties267.Append(fontSize313);
            runProperties267.Append(fontSizeComplexScript307);
            Text text232 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text232.Text = " and/or requests for older than 2008";

            run250.Append(runProperties267);
            run250.Append(text232);

            Run run251 = new Run();

            RunProperties runProperties268 = new RunProperties();
            RunFonts runFonts306 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color78 = new Color() { Val = "FF0000" };
            FontSize fontSize314 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript308 = new FontSizeComplexScript() { Val = "22" };

            runProperties268.Append(runFonts306);
            runProperties268.Append(color78);
            runProperties268.Append(fontSize314);
            runProperties268.Append(fontSizeComplexScript308);
            Text text233 = new Text();
            text233.Text = ", a conversation will need to occur with Standards";

            run251.Append(runProperties268);
            run251.Append(text233);

            paragraph80.Append(paragraphProperties79);
            paragraph80.Append(run249);
            paragraph80.Append(run250);
            paragraph80.Append(run251);

            Paragraph paragraph81 = new Paragraph() { RsidParagraphMarkRevision = "00747E89", RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00747E89", RsidRunAdditionDefault = "006678EF", ParagraphId = "26B04B2D", TextId = "218D7EF2" };

            ParagraphProperties paragraphProperties80 = new ParagraphProperties();
            Indentation indentation17 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties80 = new ParagraphMarkRunProperties();
            Bold bold27 = new Bold();

            paragraphMarkRunProperties80.Append(bold27);

            paragraphProperties80.Append(indentation17);
            paragraphProperties80.Append(paragraphMarkRunProperties80);

            Run run252 = new Run();

            RunProperties runProperties269 = new RunProperties();
            RunFonts runFonts307 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color79 = new Color() { Val = "FF0000" };
            FontSize fontSize315 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript309 = new FontSizeComplexScript() { Val = "22" };

            runProperties269.Append(runFonts307);
            runProperties269.Append(color79);
            runProperties269.Append(fontSize315);
            runProperties269.Append(fontSizeComplexScript309);
            Text text234 = new Text();
            text234.Text = "Non-Standard tools/software needed from Technical Management?";

            run252.Append(runProperties269);
            run252.Append(text234);
            BookmarkStart bookmarkStart2 = new BookmarkStart() { Name = "_Toc316382779", Id = "1" };

            paragraph81.Append(paragraphProperties80);
            paragraph81.Append(run252);
            paragraph81.Append(bookmarkStart2);

            Paragraph paragraph82 = new Paragraph() { RsidParagraphAddition = "009E06D4", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC194E", TextId = "4FFFE2E5" };

            ParagraphProperties paragraphProperties81 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId12 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties81 = new ParagraphMarkRunProperties();
            Color color80 = new Color() { Val = "FF0000" };
            Underline underline32 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties81.Append(color80);
            paragraphMarkRunProperties81.Append(underline32);

            paragraphProperties81.Append(paragraphStyleId12);
            paragraphProperties81.Append(paragraphMarkRunProperties81);

            Run run253 = new Run();

            RunProperties runProperties270 = new RunProperties();
            Underline underline33 = new Underline() { Val = UnderlineValues.Single };

            runProperties270.Append(underline33);
            Text text235 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text235.Text = "8. ";

            run253.Append(runProperties270);
            run253.Append(text235);

            Run run254 = new Run() { RsidRunProperties = "001A269D", RsidRunAddition = "00116831" };

            RunProperties runProperties271 = new RunProperties();
            Underline underline34 = new Underline() { Val = UnderlineValues.Single };

            runProperties271.Append(underline34);
            Text text236 = new Text();
            text236.Text = "Physical Servers";

            run254.Append(runProperties271);
            run254.Append(text236);

            Run run255 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties272 = new RunProperties();
            Color color81 = new Color() { Val = "FF0000" };
            Underline underline35 = new Underline() { Val = UnderlineValues.Single };

            runProperties272.Append(color81);
            runProperties272.Append(underline35);
            Text text237 = new Text();
            text237.Text = ": N/A";

            run255.Append(runProperties272);
            run255.Append(text237);

            paragraph82.Append(paragraphProperties81);
            paragraph82.Append(run253);
            paragraph82.Append(run254);
            paragraph82.Append(run255);

            Paragraph paragraph83 = new Paragraph() { RsidParagraphMarkRevision = "00624202", RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "67254CF7", TextId = "7A51D1CB" };

            ParagraphProperties paragraphProperties82 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties82 = new ParagraphMarkRunProperties();
            Color color82 = new Color() { Val = "FF0000" };

            paragraphMarkRunProperties82.Append(color82);

            paragraphProperties82.Append(paragraphMarkRunProperties82);

            Run run256 = new Run();
            TabChar tabChar23 = new TabChar();

            run256.Append(tabChar23);

            Run run257 = new Run() { RsidRunProperties = "00624202", RsidRunAddition = "00624202" };

            RunProperties runProperties273 = new RunProperties();
            Bold bold28 = new Bold();

            runProperties273.Append(bold28);
            Text text238 = new Text();
            text238.Text = "Notes";

            run257.Append(runProperties273);
            run257.Append(text238);

            Run run258 = new Run() { RsidRunAddition = "00624202" };
            Text text239 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text239.Text = ": ";

            run258.Append(text239);

            Run run259 = new Run() { RsidRunAddition = "00624202" };

            RunProperties runProperties274 = new RunProperties();
            Color color83 = new Color() { Val = "FF0000" };

            runProperties274.Append(color83);
            Text text240 = new Text();
            text240.Text = "List non-standard hardware configurations (memory, disk, etc)";

            run259.Append(runProperties274);
            run259.Append(text240);

            paragraph83.Append(paragraphProperties82);
            paragraph83.Append(run256);
            paragraph83.Append(run257);
            paragraph83.Append(run258);
            paragraph83.Append(run259);

            Table table2 = new Table();

            TableProperties tableProperties2 = new TableProperties();
            TableWidth tableWidth2 = new TableWidth() { Width = "5000", Type = TableWidthUnitValues.Pct };

            TableBorders tableBorders1 = new TableBorders();
            TopBorder topBorder18 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder17 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder17 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder17 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableBorders1.Append(topBorder18);
            tableBorders1.Append(leftBorder17);
            tableBorders1.Append(bottomBorder17);
            tableBorders1.Append(rightBorder17);
            tableBorders1.Append(insideHorizontalBorder1);
            tableBorders1.Append(insideVerticalBorder1);
            TableLayout tableLayout1 = new TableLayout() { Type = TableLayoutValues.Fixed };
            TableLook tableLook2 = new TableLook() { Val = "00A0" };

            tableProperties2.Append(tableWidth2);
            tableProperties2.Append(tableBorders1);
            tableProperties2.Append(tableLayout1);
            tableProperties2.Append(tableLook2);

            TableGrid tableGrid2 = new TableGrid();
            GridColumn gridColumn3 = new GridColumn() { Width = "1787" };
            GridColumn gridColumn4 = new GridColumn() { Width = "971" };
            GridColumn gridColumn5 = new GridColumn() { Width = "1241" };
            GridColumn gridColumn6 = new GridColumn() { Width = "1150" };
            GridColumn gridColumn7 = new GridColumn() { Width = "883" };
            GridColumn gridColumn8 = new GridColumn() { Width = "710" };
            GridColumn gridColumn9 = new GridColumn() { Width = "1590" };
            GridColumn gridColumn10 = new GridColumn() { Width = "1150" };
            GridColumn gridColumn11 = new GridColumn() { Width = "1150" };
            GridColumn gridColumn12 = new GridColumn() { Width = "798" };
            GridColumn gridColumn13 = new GridColumn() { Width = "1520" };

            tableGrid2.Append(gridColumn3);
            tableGrid2.Append(gridColumn4);
            tableGrid2.Append(gridColumn5);
            tableGrid2.Append(gridColumn6);
            tableGrid2.Append(gridColumn7);
            tableGrid2.Append(gridColumn8);
            tableGrid2.Append(gridColumn9);
            tableGrid2.Append(gridColumn10);
            tableGrid2.Append(gridColumn11);
            tableGrid2.Append(gridColumn12);
            tableGrid2.Append(gridColumn13);

            TableRow tableRow9 = new TableRow() { RsidTableRowMarkRevision = "00BC2F6B", RsidTableRowAddition = "00BC048A", RsidTableRowProperties = "00624202", ParagraphId = "0AAC195F", TextId = "77777777" };

            TableRowProperties tableRowProperties9 = new TableRowProperties();
            TableRowHeight tableRowHeight9 = new TableRowHeight() { Val = (UInt32Value)576U };

            tableRowProperties9.Append(tableRowHeight9);

            TableCell tableCell17 = new TableCell();

            TableCellProperties tableCellProperties17 = new TableCellProperties();
            TableCellWidth tableCellWidth17 = new TableCellWidth() { Width = "690", Type = TableWidthUnitValues.Pct };

            tableCellProperties17.Append(tableCellWidth17);

            Paragraph paragraph84 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC194F", TextId = "77777777" };

            ParagraphProperties paragraphProperties83 = new ParagraphProperties();
            Justification justification7 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties83 = new ParagraphMarkRunProperties();
            RunFonts runFonts308 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold29 = new Bold();
            FontSize fontSize316 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript310 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties83.Append(runFonts308);
            paragraphMarkRunProperties83.Append(bold29);
            paragraphMarkRunProperties83.Append(fontSize316);
            paragraphMarkRunProperties83.Append(fontSizeComplexScript310);

            paragraphProperties83.Append(justification7);
            paragraphProperties83.Append(paragraphMarkRunProperties83);

            Run run260 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties275 = new RunProperties();
            RunFonts runFonts309 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold30 = new Bold();
            FontSize fontSize317 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript311 = new FontSizeComplexScript() { Val = "22" };

            runProperties275.Append(runFonts309);
            runProperties275.Append(bold30);
            runProperties275.Append(fontSize317);
            runProperties275.Append(fontSizeComplexScript311);
            Text text241 = new Text();
            text241.Text = "Name";

            run260.Append(runProperties275);
            run260.Append(text241);

            paragraph84.Append(paragraphProperties83);
            paragraph84.Append(run260);

            tableCell17.Append(tableCellProperties17);
            tableCell17.Append(paragraph84);

            TableCell tableCell18 = new TableCell();

            TableCellProperties tableCellProperties18 = new TableCellProperties();
            TableCellWidth tableCellWidth18 = new TableCellWidth() { Width = "375", Type = TableWidthUnitValues.Pct };

            tableCellProperties18.Append(tableCellWidth18);

            Paragraph paragraph85 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1950", TextId = "77777777" };

            ParagraphProperties paragraphProperties84 = new ParagraphProperties();
            Justification justification8 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties84 = new ParagraphMarkRunProperties();
            RunFonts runFonts310 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold31 = new Bold();
            FontSize fontSize318 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript312 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties84.Append(runFonts310);
            paragraphMarkRunProperties84.Append(bold31);
            paragraphMarkRunProperties84.Append(fontSize318);
            paragraphMarkRunProperties84.Append(fontSizeComplexScript312);

            paragraphProperties84.Append(justification8);
            paragraphProperties84.Append(paragraphMarkRunProperties84);

            Run run261 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties276 = new RunProperties();
            RunFonts runFonts311 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold32 = new Bold();
            FontSize fontSize319 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript313 = new FontSizeComplexScript() { Val = "22" };

            runProperties276.Append(runFonts311);
            runProperties276.Append(bold32);
            runProperties276.Append(fontSize319);
            runProperties276.Append(fontSizeComplexScript313);
            Text text242 = new Text();
            text242.Text = "Model";

            run261.Append(runProperties276);
            run261.Append(text242);

            paragraph85.Append(paragraphProperties84);
            paragraph85.Append(run261);

            tableCell18.Append(tableCellProperties18);
            tableCell18.Append(paragraph85);

            TableCell tableCell19 = new TableCell();

            TableCellProperties tableCellProperties19 = new TableCellProperties();
            TableCellWidth tableCellWidth19 = new TableCellWidth() { Width = "479", Type = TableWidthUnitValues.Pct };

            tableCellProperties19.Append(tableCellWidth19);

            Paragraph paragraph86 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1951", TextId = "77777777" };

            ParagraphProperties paragraphProperties85 = new ParagraphProperties();
            Justification justification9 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties85 = new ParagraphMarkRunProperties();
            RunFonts runFonts312 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold33 = new Bold();
            FontSize fontSize320 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript314 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties85.Append(runFonts312);
            paragraphMarkRunProperties85.Append(bold33);
            paragraphMarkRunProperties85.Append(fontSize320);
            paragraphMarkRunProperties85.Append(fontSizeComplexScript314);

            paragraphProperties85.Append(justification9);
            paragraphProperties85.Append(paragraphMarkRunProperties85);

            Run run262 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties277 = new RunProperties();
            RunFonts runFonts313 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold34 = new Bold();
            FontSize fontSize321 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript315 = new FontSizeComplexScript() { Val = "22" };

            runProperties277.Append(runFonts313);
            runProperties277.Append(bold34);
            runProperties277.Append(fontSize321);
            runProperties277.Append(fontSizeComplexScript315);
            Text text243 = new Text();
            text243.Text = "CPU";

            run262.Append(runProperties277);
            run262.Append(text243);

            paragraph86.Append(paragraphProperties85);
            paragraph86.Append(run262);

            Paragraph paragraph87 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1952", TextId = "77777777" };

            ParagraphProperties paragraphProperties86 = new ParagraphProperties();
            Justification justification10 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties86 = new ParagraphMarkRunProperties();
            RunFonts runFonts314 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold35 = new Bold();
            FontSize fontSize322 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript316 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties86.Append(runFonts314);
            paragraphMarkRunProperties86.Append(bold35);
            paragraphMarkRunProperties86.Append(fontSize322);
            paragraphMarkRunProperties86.Append(fontSizeComplexScript316);

            paragraphProperties86.Append(justification10);
            paragraphProperties86.Append(paragraphMarkRunProperties86);

            Run run263 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties278 = new RunProperties();
            RunFonts runFonts315 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold36 = new Bold();
            FontSize fontSize323 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript317 = new FontSizeComplexScript() { Val = "22" };

            runProperties278.Append(runFonts315);
            runProperties278.Append(bold36);
            runProperties278.Append(fontSize323);
            runProperties278.Append(fontSizeComplexScript317);
            Text text244 = new Text();
            text244.Text = "Count";

            run263.Append(runProperties278);
            run263.Append(text244);

            paragraph87.Append(paragraphProperties86);
            paragraph87.Append(run263);

            tableCell19.Append(tableCellProperties19);
            tableCell19.Append(paragraph86);
            tableCell19.Append(paragraph87);

            TableCell tableCell20 = new TableCell();

            TableCellProperties tableCellProperties20 = new TableCellProperties();
            TableCellWidth tableCellWidth20 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };

            tableCellProperties20.Append(tableCellWidth20);

            Paragraph paragraph88 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1954", TextId = "77777777" };

            ParagraphProperties paragraphProperties87 = new ParagraphProperties();
            Justification justification11 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties87 = new ParagraphMarkRunProperties();
            RunFonts runFonts316 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold37 = new Bold();
            FontSize fontSize324 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript318 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties87.Append(runFonts316);
            paragraphMarkRunProperties87.Append(bold37);
            paragraphMarkRunProperties87.Append(fontSize324);
            paragraphMarkRunProperties87.Append(fontSizeComplexScript318);

            paragraphProperties87.Append(justification11);
            paragraphProperties87.Append(paragraphMarkRunProperties87);

            Run run264 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties279 = new RunProperties();
            RunFonts runFonts317 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold38 = new Bold();
            FontSize fontSize325 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript319 = new FontSizeComplexScript() { Val = "22" };

            runProperties279.Append(runFonts317);
            runProperties279.Append(bold38);
            runProperties279.Append(fontSize325);
            runProperties279.Append(fontSizeComplexScript319);
            Text text245 = new Text();
            text245.Text = "OS";

            run264.Append(runProperties279);
            run264.Append(text245);

            paragraph88.Append(paragraphProperties87);
            paragraph88.Append(run264);

            tableCell20.Append(tableCellProperties20);
            tableCell20.Append(paragraph88);

            TableCell tableCell21 = new TableCell();

            TableCellProperties tableCellProperties21 = new TableCellProperties();
            TableCellWidth tableCellWidth21 = new TableCellWidth() { Width = "341", Type = TableWidthUnitValues.Pct };

            tableCellProperties21.Append(tableCellWidth21);

            Paragraph paragraph89 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC1955", TextId = "77777777" };

            ParagraphProperties paragraphProperties88 = new ParagraphProperties();
            Justification justification12 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties88 = new ParagraphMarkRunProperties();
            RunFonts runFonts318 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold39 = new Bold();
            FontSize fontSize326 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript320 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties88.Append(runFonts318);
            paragraphMarkRunProperties88.Append(bold39);
            paragraphMarkRunProperties88.Append(fontSize326);
            paragraphMarkRunProperties88.Append(fontSizeComplexScript320);

            paragraphProperties88.Append(justification12);
            paragraphProperties88.Append(paragraphMarkRunProperties88);

            Run run265 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties280 = new RunProperties();
            RunFonts runFonts319 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold40 = new Bold();
            FontSize fontSize327 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript321 = new FontSizeComplexScript() { Val = "22" };

            runProperties280.Append(runFonts319);
            runProperties280.Append(bold40);
            runProperties280.Append(fontSize327);
            runProperties280.Append(fontSizeComplexScript321);
            Text text246 = new Text();
            text246.Text = "RAM";

            run265.Append(runProperties280);
            run265.Append(text246);

            paragraph89.Append(paragraphProperties88);
            paragraph89.Append(run265);

            tableCell21.Append(tableCellProperties21);
            tableCell21.Append(paragraph89);

            TableCell tableCell22 = new TableCell();

            TableCellProperties tableCellProperties22 = new TableCellProperties();
            TableCellWidth tableCellWidth22 = new TableCellWidth() { Width = "274", Type = TableWidthUnitValues.Pct };

            tableCellProperties22.Append(tableCellWidth22);

            Paragraph paragraph90 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1956", TextId = "77777777" };

            ParagraphProperties paragraphProperties89 = new ParagraphProperties();
            Justification justification13 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties89 = new ParagraphMarkRunProperties();
            RunFonts runFonts320 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold41 = new Bold();
            FontSize fontSize328 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript322 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties89.Append(runFonts320);
            paragraphMarkRunProperties89.Append(bold41);
            paragraphMarkRunProperties89.Append(fontSize328);
            paragraphMarkRunProperties89.Append(fontSizeComplexScript322);

            paragraphProperties89.Append(justification13);
            paragraphProperties89.Append(paragraphMarkRunProperties89);

            Run run266 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties281 = new RunProperties();
            RunFonts runFonts321 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold42 = new Bold();
            FontSize fontSize329 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript323 = new FontSizeComplexScript() { Val = "22" };

            runProperties281.Append(runFonts321);
            runProperties281.Append(bold42);
            runProperties281.Append(fontSize329);
            runProperties281.Append(fontSizeComplexScript323);
            Text text247 = new Text();
            text247.Text = "SAN";

            run266.Append(runProperties281);
            run266.Append(text247);

            paragraph90.Append(paragraphProperties89);
            paragraph90.Append(run266);

            Paragraph paragraph91 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1957", TextId = "77777777" };

            ParagraphProperties paragraphProperties90 = new ParagraphProperties();
            Justification justification14 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties90 = new ParagraphMarkRunProperties();
            RunFonts runFonts322 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold43 = new Bold();
            FontSize fontSize330 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript324 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties90.Append(runFonts322);
            paragraphMarkRunProperties90.Append(bold43);
            paragraphMarkRunProperties90.Append(fontSize330);
            paragraphMarkRunProperties90.Append(fontSizeComplexScript324);

            paragraphProperties90.Append(justification14);
            paragraphProperties90.Append(paragraphMarkRunProperties90);

            Run run267 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties282 = new RunProperties();
            RunFonts runFonts323 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold44 = new Bold();
            FontSize fontSize331 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript325 = new FontSizeComplexScript() { Val = "22" };

            runProperties282.Append(runFonts323);
            runProperties282.Append(bold44);
            runProperties282.Append(fontSize331);
            runProperties282.Append(fontSizeComplexScript325);
            Text text248 = new Text();
            text248.Text = "Y/N";

            run267.Append(runProperties282);
            run267.Append(text248);

            paragraph91.Append(paragraphProperties90);
            paragraph91.Append(run267);

            tableCell22.Append(tableCellProperties22);
            tableCell22.Append(paragraph90);
            tableCell22.Append(paragraph91);

            TableCell tableCell23 = new TableCell();

            TableCellProperties tableCellProperties23 = new TableCellProperties();
            TableCellWidth tableCellWidth23 = new TableCellWidth() { Width = "614", Type = TableWidthUnitValues.Pct };

            tableCellProperties23.Append(tableCellWidth23);

            Paragraph paragraph92 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1958", TextId = "77777777" };

            ParagraphProperties paragraphProperties91 = new ParagraphProperties();
            Justification justification15 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties91 = new ParagraphMarkRunProperties();
            RunFonts runFonts324 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold45 = new Bold();
            FontSize fontSize332 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript326 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties91.Append(runFonts324);
            paragraphMarkRunProperties91.Append(bold45);
            paragraphMarkRunProperties91.Append(fontSize332);
            paragraphMarkRunProperties91.Append(fontSizeComplexScript326);

            paragraphProperties91.Append(justification15);
            paragraphProperties91.Append(paragraphMarkRunProperties91);

            Run run268 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties283 = new RunProperties();
            RunFonts runFonts325 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold46 = new Bold();
            FontSize fontSize333 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript327 = new FontSizeComplexScript() { Val = "22" };

            runProperties283.Append(runFonts325);
            runProperties283.Append(bold46);
            runProperties283.Append(fontSize333);
            runProperties283.Append(fontSizeComplexScript327);
            Text text249 = new Text();
            text249.Text = "Disk Layout";

            run268.Append(runProperties283);
            run268.Append(text249);

            paragraph92.Append(paragraphProperties91);
            paragraph92.Append(run268);

            tableCell23.Append(tableCellProperties23);
            tableCell23.Append(paragraph92);

            TableCell tableCell24 = new TableCell();

            TableCellProperties tableCellProperties24 = new TableCellProperties();
            TableCellWidth tableCellWidth24 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };

            tableCellProperties24.Append(tableCellWidth24);

            Paragraph paragraph93 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00624202", RsidRunAdditionDefault = "00BC048A", ParagraphId = "0AAC195A", TextId = "48D9A817" };

            ParagraphProperties paragraphProperties92 = new ParagraphProperties();
            Justification justification16 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties92 = new ParagraphMarkRunProperties();
            RunFonts runFonts326 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold47 = new Bold();
            FontSize fontSize334 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript328 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties92.Append(runFonts326);
            paragraphMarkRunProperties92.Append(bold47);
            paragraphMarkRunProperties92.Append(fontSize334);
            paragraphMarkRunProperties92.Append(fontSizeComplexScript328);

            paragraphProperties92.Append(justification16);
            paragraphProperties92.Append(paragraphMarkRunProperties92);

            Run run269 = new Run();

            RunProperties runProperties284 = new RunProperties();
            RunFonts runFonts327 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold48 = new Bold();
            FontSize fontSize335 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript329 = new FontSizeComplexScript() { Val = "22" };

            runProperties284.Append(runFonts327);
            runProperties284.Append(bold48);
            runProperties284.Append(fontSize335);
            runProperties284.Append(fontSizeComplexScript329);
            Text text250 = new Text();
            text250.Text = "Cluster";

            run269.Append(runProperties284);
            run269.Append(text250);

            Run run270 = new Run() { RsidRunAddition = "00624202" };

            RunProperties runProperties285 = new RunProperties();
            RunFonts runFonts328 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold49 = new Bold();
            FontSize fontSize336 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript330 = new FontSizeComplexScript() { Val = "22" };

            runProperties285.Append(runFonts328);
            runProperties285.Append(bold49);
            runProperties285.Append(fontSize336);
            runProperties285.Append(fontSizeComplexScript330);
            Text text251 = new Text();
            text251.Text = "* or SQL version";

            run270.Append(runProperties285);
            run270.Append(text251);

            paragraph93.Append(paragraphProperties92);
            paragraph93.Append(run269);
            paragraph93.Append(run270);

            tableCell24.Append(tableCellProperties24);
            tableCell24.Append(paragraph93);

            TableCell tableCell25 = new TableCell();

            TableCellProperties tableCellProperties25 = new TableCellProperties();
            TableCellWidth tableCellWidth25 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };

            tableCellProperties25.Append(tableCellWidth25);

            Paragraph paragraph94 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC195B", TextId = "7788A509" };

            ParagraphProperties paragraphProperties93 = new ParagraphProperties();
            Justification justification17 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties93 = new ParagraphMarkRunProperties();
            RunFonts runFonts329 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold50 = new Bold();
            FontSize fontSize337 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript331 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties93.Append(runFonts329);
            paragraphMarkRunProperties93.Append(bold50);
            paragraphMarkRunProperties93.Append(fontSize337);
            paragraphMarkRunProperties93.Append(fontSizeComplexScript331);

            paragraphProperties93.Append(justification17);
            paragraphProperties93.Append(paragraphMarkRunProperties93);

            Run run271 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties286 = new RunProperties();
            RunFonts runFonts330 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold51 = new Bold();
            FontSize fontSize338 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript332 = new FontSizeComplexScript() { Val = "22" };

            runProperties286.Append(runFonts330);
            runProperties286.Append(bold51);
            runProperties286.Append(fontSize338);
            runProperties286.Append(fontSizeComplexScript332);
            Text text252 = new Text();
            text252.Text = "D";

            run271.Append(runProperties286);
            run271.Append(text252);

            Run run272 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties287 = new RunProperties();
            RunFonts runFonts331 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold52 = new Bold();
            FontSize fontSize339 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript333 = new FontSizeComplexScript() { Val = "22" };

            runProperties287.Append(runFonts331);
            runProperties287.Append(bold52);
            runProperties287.Append(fontSize339);
            runProperties287.Append(fontSizeComplexScript333);
            Text text253 = new Text();
            text253.Text = "R";

            run272.Append(runProperties287);
            run272.Append(text253);

            Run run273 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties288 = new RunProperties();
            RunFonts runFonts332 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold53 = new Bold();
            FontSize fontSize340 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript334 = new FontSizeComplexScript() { Val = "22" };

            runProperties288.Append(runFonts332);
            runProperties288.Append(bold53);
            runProperties288.Append(fontSize340);
            runProperties288.Append(fontSizeComplexScript334);
            Text text254 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text254.Text = " / Prod";

            run273.Append(runProperties288);
            run273.Append(text254);

            paragraph94.Append(paragraphProperties93);
            paragraph94.Append(run271);
            paragraph94.Append(run272);
            paragraph94.Append(run273);

            Paragraph paragraph95 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC195C", TextId = "77777777" };

            ParagraphProperties paragraphProperties94 = new ParagraphProperties();
            Justification justification18 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties94 = new ParagraphMarkRunProperties();
            RunFonts runFonts333 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold54 = new Bold();
            FontSize fontSize341 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript335 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties94.Append(runFonts333);
            paragraphMarkRunProperties94.Append(bold54);
            paragraphMarkRunProperties94.Append(fontSize341);
            paragraphMarkRunProperties94.Append(fontSizeComplexScript335);

            paragraphProperties94.Append(justification18);
            paragraphProperties94.Append(paragraphMarkRunProperties94);

            Run run274 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties289 = new RunProperties();
            RunFonts runFonts334 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold55 = new Bold();
            FontSize fontSize342 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript336 = new FontSizeComplexScript() { Val = "22" };

            runProperties289.Append(runFonts334);
            runProperties289.Append(bold55);
            runProperties289.Append(fontSize342);
            runProperties289.Append(fontSizeComplexScript336);
            Text text255 = new Text();
            text255.Text = "/Test";

            run274.Append(runProperties289);
            run274.Append(text255);

            paragraph95.Append(paragraphProperties94);
            paragraph95.Append(run274);

            tableCell25.Append(tableCellProperties25);
            tableCell25.Append(paragraph94);
            tableCell25.Append(paragraph95);

            TableCell tableCell26 = new TableCell();

            TableCellProperties tableCellProperties26 = new TableCellProperties();
            TableCellWidth tableCellWidth26 = new TableCellWidth() { Width = "308", Type = TableWidthUnitValues.Pct };

            tableCellProperties26.Append(tableCellWidth26);

            Paragraph paragraph96 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC195D", TextId = "77777777" };

            ParagraphProperties paragraphProperties95 = new ParagraphProperties();
            Justification justification19 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties95 = new ParagraphMarkRunProperties();
            RunFonts runFonts335 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold56 = new Bold();
            FontSize fontSize343 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript337 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties95.Append(runFonts335);
            paragraphMarkRunProperties95.Append(bold56);
            paragraphMarkRunProperties95.Append(fontSize343);
            paragraphMarkRunProperties95.Append(fontSizeComplexScript337);

            paragraphProperties95.Append(justification19);
            paragraphProperties95.Append(paragraphMarkRunProperties95);

            Run run275 = new Run();

            RunProperties runProperties290 = new RunProperties();
            RunFonts runFonts336 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold57 = new Bold();
            FontSize fontSize344 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript338 = new FontSizeComplexScript() { Val = "22" };

            runProperties290.Append(runFonts336);
            runProperties290.Append(bold57);
            runProperties290.Append(fontSize344);
            runProperties290.Append(fontSizeComplexScript338);
            Text text256 = new Text();
            text256.Text = "TSM or DD";

            run275.Append(runProperties290);
            run275.Append(text256);

            paragraph96.Append(paragraphProperties95);
            paragraph96.Append(run275);

            tableCell26.Append(tableCellProperties26);
            tableCell26.Append(paragraph96);

            TableCell tableCell27 = new TableCell();

            TableCellProperties tableCellProperties27 = new TableCellProperties();
            TableCellWidth tableCellWidth27 = new TableCellWidth() { Width = "587", Type = TableWidthUnitValues.Pct };

            tableCellProperties27.Append(tableCellWidth27);

            Paragraph paragraph97 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC195E", TextId = "77777777" };

            ParagraphProperties paragraphProperties96 = new ParagraphProperties();
            Justification justification20 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties96 = new ParagraphMarkRunProperties();
            RunFonts runFonts337 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold58 = new Bold();
            FontSize fontSize345 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript339 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties96.Append(runFonts337);
            paragraphMarkRunProperties96.Append(bold58);
            paragraphMarkRunProperties96.Append(fontSize345);
            paragraphMarkRunProperties96.Append(fontSizeComplexScript339);

            paragraphProperties96.Append(justification20);
            paragraphProperties96.Append(paragraphMarkRunProperties96);

            Run run276 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties291 = new RunProperties();
            RunFonts runFonts338 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold59 = new Bold();
            FontSize fontSize346 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript340 = new FontSizeComplexScript() { Val = "22" };

            runProperties291.Append(runFonts338);
            runProperties291.Append(bold59);
            runProperties291.Append(fontSize346);
            runProperties291.Append(fontSizeComplexScript340);
            Text text257 = new Text();
            text257.Text = "DC";

            run276.Append(runProperties291);
            run276.Append(text257);

            paragraph97.Append(paragraphProperties96);
            paragraph97.Append(run276);

            tableCell27.Append(tableCellProperties27);
            tableCell27.Append(paragraph97);

            tableRow9.Append(tableRowProperties9);
            tableRow9.Append(tableCell17);
            tableRow9.Append(tableCell18);
            tableRow9.Append(tableCell19);
            tableRow9.Append(tableCell20);
            tableRow9.Append(tableCell21);
            tableRow9.Append(tableCell22);
            tableRow9.Append(tableCell23);
            tableRow9.Append(tableCell24);
            tableRow9.Append(tableCell25);
            tableRow9.Append(tableCell26);
            tableRow9.Append(tableCell27);

            TableRow tableRow10 = new TableRow() { RsidTableRowMarkRevision = "00BC2F6B", RsidTableRowAddition = "00BC048A", RsidTableRowProperties = "00624202", ParagraphId = "0AAC196C", TextId = "77777777" };

            TableRowProperties tableRowProperties10 = new TableRowProperties();
            TableRowHeight tableRowHeight10 = new TableRowHeight() { Val = (UInt32Value)576U };

            tableRowProperties10.Append(tableRowHeight10);

            TableCell tableCell28 = new TableCell();

            TableCellProperties tableCellProperties28 = new TableCellProperties();
            TableCellWidth tableCellWidth28 = new TableCellWidth() { Width = "690", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment17 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties28.Append(tableCellWidth28);
            tableCellProperties28.Append(tableCellVerticalAlignment17);

            Paragraph paragraph98 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC1960", TextId = "77777777" };

            ParagraphProperties paragraphProperties97 = new ParagraphProperties();
            Justification justification21 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties97 = new ParagraphMarkRunProperties();
            RunFonts runFonts339 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color84 = new Color() { Val = "FF0000" };
            FontSize fontSize347 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript341 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties97.Append(runFonts339);
            paragraphMarkRunProperties97.Append(color84);
            paragraphMarkRunProperties97.Append(fontSize347);
            paragraphMarkRunProperties97.Append(fontSizeComplexScript341);

            paragraphProperties97.Append(justification21);
            paragraphProperties97.Append(paragraphMarkRunProperties97);

            Run run277 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties292 = new RunProperties();
            RunFonts runFonts340 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color85 = new Color() { Val = "FF0000" };
            FontSize fontSize348 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript342 = new FontSizeComplexScript() { Val = "22" };

            runProperties292.Append(runFonts340);
            runProperties292.Append(color85);
            runProperties292.Append(fontSize348);
            runProperties292.Append(fontSizeComplexScript342);
            Text text258 = new Text();
            text258.Text = "BJCxxxxCN01";

            run277.Append(runProperties292);
            run277.Append(text258);

            paragraph98.Append(paragraphProperties97);
            paragraph98.Append(run277);

            tableCell28.Append(tableCellProperties28);
            tableCell28.Append(paragraph98);

            TableCell tableCell29 = new TableCell();

            TableCellProperties tableCellProperties29 = new TableCellProperties();
            TableCellWidth tableCellWidth29 = new TableCellWidth() { Width = "375", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment18 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties29.Append(tableCellWidth29);
            tableCellProperties29.Append(tableCellVerticalAlignment18);

            Paragraph paragraph99 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC1961", TextId = "77777777" };

            ParagraphProperties paragraphProperties98 = new ParagraphProperties();
            Justification justification22 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties98 = new ParagraphMarkRunProperties();
            RunFonts runFonts341 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color86 = new Color() { Val = "FF0000" };
            FontSize fontSize349 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript343 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties98.Append(runFonts341);
            paragraphMarkRunProperties98.Append(color86);
            paragraphMarkRunProperties98.Append(fontSize349);
            paragraphMarkRunProperties98.Append(fontSizeComplexScript343);

            paragraphProperties98.Append(justification22);
            paragraphProperties98.Append(paragraphMarkRunProperties98);

            Run run278 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties293 = new RunProperties();
            RunFonts runFonts342 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color87 = new Color() { Val = "FF0000" };
            FontSize fontSize350 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript344 = new FontSizeComplexScript() { Val = "22" };

            runProperties293.Append(runFonts342);
            runProperties293.Append(color87);
            runProperties293.Append(fontSize350);
            runProperties293.Append(fontSizeComplexScript344);
            Text text259 = new Text();
            text259.Text = "HS23";

            run278.Append(runProperties293);
            run278.Append(text259);

            paragraph99.Append(paragraphProperties98);
            paragraph99.Append(run278);

            tableCell29.Append(tableCellProperties29);
            tableCell29.Append(paragraph99);

            TableCell tableCell30 = new TableCell();

            TableCellProperties tableCellProperties30 = new TableCellProperties();
            TableCellWidth tableCellWidth30 = new TableCellWidth() { Width = "479", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment19 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties30.Append(tableCellWidth30);
            tableCellProperties30.Append(tableCellVerticalAlignment19);

            Paragraph paragraph100 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC1962", TextId = "77777777" };

            ParagraphProperties paragraphProperties99 = new ParagraphProperties();
            Justification justification23 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties99 = new ParagraphMarkRunProperties();
            RunFonts runFonts343 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color88 = new Color() { Val = "FF0000" };
            FontSize fontSize351 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript345 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties99.Append(runFonts343);
            paragraphMarkRunProperties99.Append(color88);
            paragraphMarkRunProperties99.Append(fontSize351);
            paragraphMarkRunProperties99.Append(fontSizeComplexScript345);

            paragraphProperties99.Append(justification23);
            paragraphProperties99.Append(paragraphMarkRunProperties99);

            Run run279 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties294 = new RunProperties();
            RunFonts runFonts344 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color89 = new Color() { Val = "FF0000" };
            FontSize fontSize352 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript346 = new FontSizeComplexScript() { Val = "22" };

            runProperties294.Append(runFonts344);
            runProperties294.Append(color89);
            runProperties294.Append(fontSize352);
            runProperties294.Append(fontSizeComplexScript346);
            Text text260 = new Text();
            text260.Text = "2 @ 2.0ghz (8core per proc)";

            run279.Append(runProperties294);
            run279.Append(text260);

            paragraph100.Append(paragraphProperties99);
            paragraph100.Append(run279);

            tableCell30.Append(tableCellProperties30);
            tableCell30.Append(paragraph100);

            TableCell tableCell31 = new TableCell();

            TableCellProperties tableCellProperties31 = new TableCellProperties();
            TableCellWidth tableCellWidth31 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment20 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties31.Append(tableCellWidth31);
            tableCellProperties31.Append(tableCellVerticalAlignment20);

            Paragraph paragraph101 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC1963", TextId = "77777777" };

            ParagraphProperties paragraphProperties100 = new ParagraphProperties();
            Justification justification24 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties100 = new ParagraphMarkRunProperties();
            RunFonts runFonts345 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color90 = new Color() { Val = "FF0000" };
            FontSize fontSize353 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript347 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties100.Append(runFonts345);
            paragraphMarkRunProperties100.Append(color90);
            paragraphMarkRunProperties100.Append(fontSize353);
            paragraphMarkRunProperties100.Append(fontSizeComplexScript347);

            paragraphProperties100.Append(justification24);
            paragraphProperties100.Append(paragraphMarkRunProperties100);

            Run run280 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties295 = new RunProperties();
            RunFonts runFonts346 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color91 = new Color() { Val = "FF0000" };
            FontSize fontSize354 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript348 = new FontSizeComplexScript() { Val = "22" };

            runProperties295.Append(runFonts346);
            runProperties295.Append(color91);
            runProperties295.Append(fontSize354);
            runProperties295.Append(fontSizeComplexScript348);
            Text text261 = new Text();
            text261.Text = "W2K8r2 Std x64";

            run280.Append(runProperties295);
            run280.Append(text261);

            paragraph101.Append(paragraphProperties100);
            paragraph101.Append(run280);

            tableCell31.Append(tableCellProperties31);
            tableCell31.Append(paragraph101);

            TableCell tableCell32 = new TableCell();

            TableCellProperties tableCellProperties32 = new TableCellProperties();
            TableCellWidth tableCellWidth32 = new TableCellWidth() { Width = "341", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment21 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties32.Append(tableCellWidth32);
            tableCellProperties32.Append(tableCellVerticalAlignment21);

            Paragraph paragraph102 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC2F6B", ParagraphId = "0AAC1964", TextId = "77777777" };

            ParagraphProperties paragraphProperties101 = new ParagraphProperties();
            Justification justification25 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties101 = new ParagraphMarkRunProperties();
            RunFonts runFonts347 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color92 = new Color() { Val = "FF0000" };
            FontSize fontSize355 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript349 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties101.Append(runFonts347);
            paragraphMarkRunProperties101.Append(color92);
            paragraphMarkRunProperties101.Append(fontSize355);
            paragraphMarkRunProperties101.Append(fontSizeComplexScript349);

            paragraphProperties101.Append(justification25);
            paragraphProperties101.Append(paragraphMarkRunProperties101);

            Run run281 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties296 = new RunProperties();
            RunFonts runFonts348 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color93 = new Color() { Val = "FF0000" };
            FontSize fontSize356 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript350 = new FontSizeComplexScript() { Val = "22" };

            runProperties296.Append(runFonts348);
            runProperties296.Append(color93);
            runProperties296.Append(fontSize356);
            runProperties296.Append(fontSizeComplexScript350);
            Text text262 = new Text();
            text262.Text = "8 @ 4gb";

            run281.Append(runProperties296);
            run281.Append(text262);

            paragraph102.Append(paragraphProperties101);
            paragraph102.Append(run281);

            tableCell32.Append(tableCellProperties32);
            tableCell32.Append(paragraph102);

            TableCell tableCell33 = new TableCell();

            TableCellProperties tableCellProperties33 = new TableCellProperties();
            TableCellWidth tableCellWidth33 = new TableCellWidth() { Width = "274", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment22 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties33.Append(tableCellWidth33);
            tableCellProperties33.Append(tableCellVerticalAlignment22);

            Paragraph paragraph103 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1965", TextId = "77777777" };

            ParagraphProperties paragraphProperties102 = new ParagraphProperties();
            Justification justification26 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties102 = new ParagraphMarkRunProperties();
            RunFonts runFonts349 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color94 = new Color() { Val = "FF0000" };
            FontSize fontSize357 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript351 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties102.Append(runFonts349);
            paragraphMarkRunProperties102.Append(color94);
            paragraphMarkRunProperties102.Append(fontSize357);
            paragraphMarkRunProperties102.Append(fontSizeComplexScript351);

            paragraphProperties102.Append(justification26);
            paragraphProperties102.Append(paragraphMarkRunProperties102);

            Run run282 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties297 = new RunProperties();
            RunFonts runFonts350 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color95 = new Color() { Val = "FF0000" };
            FontSize fontSize358 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript352 = new FontSizeComplexScript() { Val = "22" };

            runProperties297.Append(runFonts350);
            runProperties297.Append(color95);
            runProperties297.Append(fontSize358);
            runProperties297.Append(fontSizeComplexScript352);
            Text text263 = new Text();
            text263.Text = "Y";

            run282.Append(runProperties297);
            run282.Append(text263);

            paragraph103.Append(paragraphProperties102);
            paragraph103.Append(run282);

            tableCell33.Append(tableCellProperties33);
            tableCell33.Append(paragraph103);

            TableCell tableCell34 = new TableCell();

            TableCellProperties tableCellProperties34 = new TableCellProperties();
            TableCellWidth tableCellWidth34 = new TableCellWidth() { Width = "614", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment23 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties34.Append(tableCellWidth34);
            tableCellProperties34.Append(tableCellVerticalAlignment23);

            Paragraph paragraph104 = new Paragraph() { RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "008841D9", RsidRunAdditionDefault = "00BC048A", ParagraphId = "790D65E5", TextId = "77777777" };

            ParagraphProperties paragraphProperties103 = new ParagraphProperties();
            Justification justification27 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties103 = new ParagraphMarkRunProperties();
            RunFonts runFonts351 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color96 = new Color() { Val = "FF0000" };
            FontSize fontSize359 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript353 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties103.Append(runFonts351);
            paragraphMarkRunProperties103.Append(color96);
            paragraphMarkRunProperties103.Append(fontSize359);
            paragraphMarkRunProperties103.Append(fontSizeComplexScript353);

            paragraphProperties103.Append(justification27);
            paragraphProperties103.Append(paragraphMarkRunProperties103);

            Run run283 = new Run();

            RunProperties runProperties298 = new RunProperties();
            RunFonts runFonts352 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color97 = new Color() { Val = "FF0000" };
            FontSize fontSize360 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript354 = new FontSizeComplexScript() { Val = "22" };

            runProperties298.Append(runFonts352);
            runProperties298.Append(color97);
            runProperties298.Append(fontSize360);
            runProperties298.Append(fontSizeComplexScript354);
            Text text264 = new Text();
            text264.Text = "C=146gb (RAID1)";

            run283.Append(runProperties298);
            run283.Append(text264);

            paragraph104.Append(paragraphProperties103);
            paragraph104.Append(run283);

            Paragraph paragraph105 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "008841D9", RsidParagraphProperties = "00BC048A", RsidRunAdditionDefault = "00747E89", ParagraphId = "0AAC1967", TextId = "18C3BB5F" };

            ParagraphProperties paragraphProperties104 = new ParagraphProperties();
            Justification justification28 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties104 = new ParagraphMarkRunProperties();
            RunFonts runFonts353 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color98 = new Color() { Val = "FF0000" };
            FontSize fontSize361 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript355 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties104.Append(runFonts353);
            paragraphMarkRunProperties104.Append(color98);
            paragraphMarkRunProperties104.Append(fontSize361);
            paragraphMarkRunProperties104.Append(fontSizeComplexScript355);

            paragraphProperties104.Append(justification28);
            paragraphProperties104.Append(paragraphMarkRunProperties104);

            Run run284 = new Run();

            RunProperties runProperties299 = new RunProperties();
            RunFonts runFonts354 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color99 = new Color() { Val = "FF0000" };
            FontSize fontSize362 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript356 = new FontSizeComplexScript() { Val = "22" };

            runProperties299.Append(runFonts354);
            runProperties299.Append(color99);
            runProperties299.Append(fontSize362);
            runProperties299.Append(fontSizeComplexScript356);
            Text text265 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text265.Text = "Or ";

            run284.Append(runProperties299);
            run284.Append(text265);

            Run run285 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties300 = new RunProperties();
            RunFonts runFonts355 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color100 = new Color() { Val = "FF0000" };
            FontSize fontSize363 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript357 = new FontSizeComplexScript() { Val = "22" };

            runProperties300.Append(runFonts355);
            runProperties300.Append(color100);
            runProperties300.Append(fontSize363);
            runProperties300.Append(fontSizeComplexScript357);
            Text text266 = new Text();
            text266.Text = "See Drive Layouts & Size";

            run285.Append(runProperties300);
            run285.Append(text266);

            paragraph105.Append(paragraphProperties104);
            paragraph105.Append(run284);
            paragraph105.Append(run285);

            tableCell34.Append(tableCellProperties34);
            tableCell34.Append(paragraph104);
            tableCell34.Append(paragraph105);

            TableCell tableCell35 = new TableCell();

            TableCellProperties tableCellProperties35 = new TableCellProperties();
            TableCellWidth tableCellWidth35 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment24 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties35.Append(tableCellWidth35);
            tableCellProperties35.Append(tableCellVerticalAlignment24);

            Paragraph paragraph106 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "008841D9", ParagraphId = "0AAC1968", TextId = "6112649A" };

            ParagraphProperties paragraphProperties105 = new ParagraphProperties();
            Justification justification29 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties105 = new ParagraphMarkRunProperties();
            RunFonts runFonts356 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color101 = new Color() { Val = "FF0000" };
            FontSize fontSize364 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript358 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties105.Append(runFonts356);
            paragraphMarkRunProperties105.Append(color101);
            paragraphMarkRunProperties105.Append(fontSize364);
            paragraphMarkRunProperties105.Append(fontSizeComplexScript358);

            paragraphProperties105.Append(justification29);
            paragraphProperties105.Append(paragraphMarkRunProperties105);

            Run run286 = new Run();

            RunProperties runProperties301 = new RunProperties();
            RunFonts runFonts357 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color102 = new Color() { Val = "FF0000" };
            FontSize fontSize365 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript359 = new FontSizeComplexScript() { Val = "22" };

            runProperties301.Append(runFonts357);
            runProperties301.Append(color102);
            runProperties301.Append(fontSize365);
            runProperties301.Append(fontSizeComplexScript359);
            Text text267 = new Text();
            text267.Text = "N";

            run286.Append(runProperties301);
            run286.Append(text267);

            Run run287 = new Run() { RsidRunAddition = "00624202" };

            RunProperties runProperties302 = new RunProperties();
            RunFonts runFonts358 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color103 = new Color() { Val = "FF0000" };
            FontSize fontSize366 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript360 = new FontSizeComplexScript() { Val = "22" };

            runProperties302.Append(runFonts358);
            runProperties302.Append(color103);
            runProperties302.Append(fontSize366);
            runProperties302.Append(fontSizeComplexScript360);
            Text text268 = new Text();
            text268.Text = "/A";

            run287.Append(runProperties302);
            run287.Append(text268);

            paragraph106.Append(paragraphProperties105);
            paragraph106.Append(run286);
            paragraph106.Append(run287);

            tableCell35.Append(tableCellProperties35);
            tableCell35.Append(paragraph106);

            TableCell tableCell36 = new TableCell();

            TableCellProperties tableCellProperties36 = new TableCellProperties();
            TableCellWidth tableCellWidth36 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment25 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties36.Append(tableCellWidth36);
            tableCellProperties36.Append(tableCellVerticalAlignment25);

            Paragraph paragraph107 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1969", TextId = "77777777" };

            ParagraphProperties paragraphProperties106 = new ParagraphProperties();
            Justification justification30 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties106 = new ParagraphMarkRunProperties();
            RunFonts runFonts359 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color104 = new Color() { Val = "FF0000" };
            FontSize fontSize367 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript361 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties106.Append(runFonts359);
            paragraphMarkRunProperties106.Append(color104);
            paragraphMarkRunProperties106.Append(fontSize367);
            paragraphMarkRunProperties106.Append(fontSizeComplexScript361);

            paragraphProperties106.Append(justification30);
            paragraphProperties106.Append(paragraphMarkRunProperties106);

            Run run288 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties303 = new RunProperties();
            RunFonts runFonts360 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color105 = new Color() { Val = "FF0000" };
            FontSize fontSize368 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript362 = new FontSizeComplexScript() { Val = "22" };

            runProperties303.Append(runFonts360);
            runProperties303.Append(color105);
            runProperties303.Append(fontSize368);
            runProperties303.Append(fontSizeComplexScript362);
            Text text269 = new Text();
            text269.Text = "Prod";

            run288.Append(runProperties303);
            run288.Append(text269);

            paragraph107.Append(paragraphProperties106);
            paragraph107.Append(run288);

            tableCell36.Append(tableCellProperties36);
            tableCell36.Append(paragraph107);

            TableCell tableCell37 = new TableCell();

            TableCellProperties tableCellProperties37 = new TableCellProperties();
            TableCellWidth tableCellWidth37 = new TableCellWidth() { Width = "308", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment26 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties37.Append(tableCellWidth37);
            tableCellProperties37.Append(tableCellVerticalAlignment26);

            Paragraph paragraph108 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "008841D9", RsidRunAdditionDefault = "008841D9", ParagraphId = "0AAC196A", TextId = "77777777" };

            ParagraphProperties paragraphProperties107 = new ParagraphProperties();
            Justification justification31 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties107 = new ParagraphMarkRunProperties();
            RunFonts runFonts361 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color106 = new Color() { Val = "FF0000" };
            FontSize fontSize369 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript363 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties107.Append(runFonts361);
            paragraphMarkRunProperties107.Append(color106);
            paragraphMarkRunProperties107.Append(fontSize369);
            paragraphMarkRunProperties107.Append(fontSizeComplexScript363);

            paragraphProperties107.Append(justification31);
            paragraphProperties107.Append(paragraphMarkRunProperties107);

            Run run289 = new Run();

            RunProperties runProperties304 = new RunProperties();
            RunFonts runFonts362 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color107 = new Color() { Val = "FF0000" };
            FontSize fontSize370 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript364 = new FontSizeComplexScript() { Val = "22" };

            runProperties304.Append(runFonts362);
            runProperties304.Append(color107);
            runProperties304.Append(fontSize370);
            runProperties304.Append(fontSizeComplexScript364);
            Text text270 = new Text();
            text270.Text = "TSM";

            run289.Append(runProperties304);
            run289.Append(text270);

            paragraph108.Append(paragraphProperties107);
            paragraph108.Append(run289);

            tableCell37.Append(tableCellProperties37);
            tableCell37.Append(paragraph108);

            TableCell tableCell38 = new TableCell();

            TableCellProperties tableCellProperties38 = new TableCellProperties();
            TableCellWidth tableCellWidth38 = new TableCellWidth() { Width = "587", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment27 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties38.Append(tableCellWidth38);
            tableCellProperties38.Append(tableCellVerticalAlignment27);

            Paragraph paragraph109 = new Paragraph() { RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "3B8A878B", TextId = "77777777" };

            ParagraphProperties paragraphProperties108 = new ParagraphProperties();
            Justification justification32 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties108 = new ParagraphMarkRunProperties();
            RunFonts runFonts363 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color108 = new Color() { Val = "FF0000" };
            FontSize fontSize371 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript365 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties108.Append(runFonts363);
            paragraphMarkRunProperties108.Append(color108);
            paragraphMarkRunProperties108.Append(fontSize371);
            paragraphMarkRunProperties108.Append(fontSizeComplexScript365);

            paragraphProperties108.Append(justification32);
            paragraphProperties108.Append(paragraphMarkRunProperties108);

            Run run290 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties305 = new RunProperties();
            RunFonts runFonts364 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color109 = new Color() { Val = "FF0000" };
            FontSize fontSize372 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript366 = new FontSizeComplexScript() { Val = "22" };

            runProperties305.Append(runFonts364);
            runProperties305.Append(color109);
            runProperties305.Append(fontSize372);
            runProperties305.Append(fontSizeComplexScript366);
            Text text271 = new Text();
            text271.Text = "PDC";

            run290.Append(runProperties305);
            run290.Append(text271);

            paragraph109.Append(paragraphProperties108);
            paragraph109.Append(run290);

            Paragraph paragraph110 = new Paragraph() { RsidParagraphMarkRevision = "00BC048A", RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC048A", ParagraphId = "4C7EBEBB", TextId = "77777777" };

            ParagraphProperties paragraphProperties109 = new ParagraphProperties();
            Justification justification33 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties109 = new ParagraphMarkRunProperties();
            RunFonts runFonts365 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color110 = new Color() { Val = "7030A0" };
            FontSize fontSize373 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript367 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties109.Append(runFonts365);
            paragraphMarkRunProperties109.Append(color110);
            paragraphMarkRunProperties109.Append(fontSize373);
            paragraphMarkRunProperties109.Append(fontSizeComplexScript367);

            paragraphProperties109.Append(justification33);
            paragraphProperties109.Append(paragraphMarkRunProperties109);

            Run run291 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties306 = new RunProperties();
            RunFonts runFonts366 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color111 = new Color() { Val = "7030A0" };
            FontSize fontSize374 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript368 = new FontSizeComplexScript() { Val = "22" };

            runProperties306.Append(runFonts366);
            runProperties306.Append(color111);
            runProperties306.Append(fontSize374);
            runProperties306.Append(fontSizeComplexScript368);
            Text text272 = new Text();
            text272.Text = "BJCBLADEx0";

            run291.Append(runProperties306);
            run291.Append(text272);

            paragraph110.Append(paragraphProperties109);
            paragraph110.Append(run291);

            Paragraph paragraph111 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "00BC048A", ParagraphId = "0AAC196B", TextId = "6D205786" };

            ParagraphProperties paragraphProperties110 = new ParagraphProperties();
            Justification justification34 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties110 = new ParagraphMarkRunProperties();
            RunFonts runFonts367 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color112 = new Color() { Val = "FF0000" };
            FontSize fontSize375 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript369 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties110.Append(runFonts367);
            paragraphMarkRunProperties110.Append(color112);
            paragraphMarkRunProperties110.Append(fontSize375);
            paragraphMarkRunProperties110.Append(fontSizeComplexScript369);

            paragraphProperties110.Append(justification34);
            paragraphProperties110.Append(paragraphMarkRunProperties110);

            Run run292 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties307 = new RunProperties();
            RunFonts runFonts368 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color113 = new Color() { Val = "7030A0" };
            FontSize fontSize376 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript370 = new FontSizeComplexScript() { Val = "22" };

            runProperties307.Append(runFonts368);
            runProperties307.Append(color113);
            runProperties307.Append(fontSize376);
            runProperties307.Append(fontSizeComplexScript370);
            Text text273 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text273.Text = "Slot ";

            run292.Append(runProperties307);
            run292.Append(text273);

            paragraph111.Append(paragraphProperties110);
            paragraph111.Append(run292);

            tableCell38.Append(tableCellProperties38);
            tableCell38.Append(paragraph109);
            tableCell38.Append(paragraph110);
            tableCell38.Append(paragraph111);

            tableRow10.Append(tableRowProperties10);
            tableRow10.Append(tableCell28);
            tableRow10.Append(tableCell29);
            tableRow10.Append(tableCell30);
            tableRow10.Append(tableCell31);
            tableRow10.Append(tableCell32);
            tableRow10.Append(tableCell33);
            tableRow10.Append(tableCell34);
            tableRow10.Append(tableCell35);
            tableRow10.Append(tableCell36);
            tableRow10.Append(tableCell37);
            tableRow10.Append(tableCell38);

            TableRow tableRow11 = new TableRow() { RsidTableRowMarkRevision = "004C118E", RsidTableRowAddition = "00BC048A", RsidTableRowProperties = "00624202", ParagraphId = "0AAC1978", TextId = "77777777" };

            TableRowProperties tableRowProperties11 = new TableRowProperties();
            TableRowHeight tableRowHeight11 = new TableRowHeight() { Val = (UInt32Value)576U };

            tableRowProperties11.Append(tableRowHeight11);

            TableCell tableCell39 = new TableCell();

            TableCellProperties tableCellProperties39 = new TableCellProperties();
            TableCellWidth tableCellWidth39 = new TableCellWidth() { Width = "690", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment28 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties39.Append(tableCellWidth39);
            tableCellProperties39.Append(tableCellVerticalAlignment28);

            Paragraph paragraph112 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC196D", TextId = "120AF98E" };

            ParagraphProperties paragraphProperties111 = new ParagraphProperties();
            Justification justification35 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties111 = new ParagraphMarkRunProperties();
            RunFonts runFonts369 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize377 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript371 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties111.Append(runFonts369);
            paragraphMarkRunProperties111.Append(fontSize377);
            paragraphMarkRunProperties111.Append(fontSizeComplexScript371);

            paragraphProperties111.Append(justification35);
            paragraphProperties111.Append(paragraphMarkRunProperties111);

            paragraph112.Append(paragraphProperties111);

            tableCell39.Append(tableCellProperties39);
            tableCell39.Append(paragraph112);

            TableCell tableCell40 = new TableCell();

            TableCellProperties tableCellProperties40 = new TableCellProperties();
            TableCellWidth tableCellWidth40 = new TableCellWidth() { Width = "375", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment29 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties40.Append(tableCellWidth40);
            tableCellProperties40.Append(tableCellVerticalAlignment29);

            Paragraph paragraph113 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC196E", TextId = "77777777" };

            ParagraphProperties paragraphProperties112 = new ParagraphProperties();
            Justification justification36 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties112 = new ParagraphMarkRunProperties();
            RunFonts runFonts370 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize378 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript372 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties112.Append(runFonts370);
            paragraphMarkRunProperties112.Append(fontSize378);
            paragraphMarkRunProperties112.Append(fontSizeComplexScript372);

            paragraphProperties112.Append(justification36);
            paragraphProperties112.Append(paragraphMarkRunProperties112);

            paragraph113.Append(paragraphProperties112);

            tableCell40.Append(tableCellProperties40);
            tableCell40.Append(paragraph113);

            TableCell tableCell41 = new TableCell();

            TableCellProperties tableCellProperties41 = new TableCellProperties();
            TableCellWidth tableCellWidth41 = new TableCellWidth() { Width = "479", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment30 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties41.Append(tableCellWidth41);
            tableCellProperties41.Append(tableCellVerticalAlignment30);

            Paragraph paragraph114 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC196F", TextId = "77777777" };

            ParagraphProperties paragraphProperties113 = new ParagraphProperties();
            Justification justification37 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties113 = new ParagraphMarkRunProperties();
            RunFonts runFonts371 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize379 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript373 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties113.Append(runFonts371);
            paragraphMarkRunProperties113.Append(fontSize379);
            paragraphMarkRunProperties113.Append(fontSizeComplexScript373);

            paragraphProperties113.Append(justification37);
            paragraphProperties113.Append(paragraphMarkRunProperties113);

            paragraph114.Append(paragraphProperties113);

            tableCell41.Append(tableCellProperties41);
            tableCell41.Append(paragraph114);

            TableCell tableCell42 = new TableCell();

            TableCellProperties tableCellProperties42 = new TableCellProperties();
            TableCellWidth tableCellWidth42 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment31 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties42.Append(tableCellWidth42);
            tableCellProperties42.Append(tableCellVerticalAlignment31);

            Paragraph paragraph115 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1970", TextId = "77777777" };

            ParagraphProperties paragraphProperties114 = new ParagraphProperties();
            Justification justification38 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties114 = new ParagraphMarkRunProperties();
            RunFonts runFonts372 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize380 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript374 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties114.Append(runFonts372);
            paragraphMarkRunProperties114.Append(fontSize380);
            paragraphMarkRunProperties114.Append(fontSizeComplexScript374);

            paragraphProperties114.Append(justification38);
            paragraphProperties114.Append(paragraphMarkRunProperties114);

            paragraph115.Append(paragraphProperties114);

            tableCell42.Append(tableCellProperties42);
            tableCell42.Append(paragraph115);

            TableCell tableCell43 = new TableCell();

            TableCellProperties tableCellProperties43 = new TableCellProperties();
            TableCellWidth tableCellWidth43 = new TableCellWidth() { Width = "341", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment32 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties43.Append(tableCellWidth43);
            tableCellProperties43.Append(tableCellVerticalAlignment32);

            Paragraph paragraph116 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1971", TextId = "77777777" };

            ParagraphProperties paragraphProperties115 = new ParagraphProperties();
            Justification justification39 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties115 = new ParagraphMarkRunProperties();
            RunFonts runFonts373 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize381 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript375 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties115.Append(runFonts373);
            paragraphMarkRunProperties115.Append(fontSize381);
            paragraphMarkRunProperties115.Append(fontSizeComplexScript375);

            paragraphProperties115.Append(justification39);
            paragraphProperties115.Append(paragraphMarkRunProperties115);

            paragraph116.Append(paragraphProperties115);

            tableCell43.Append(tableCellProperties43);
            tableCell43.Append(paragraph116);

            TableCell tableCell44 = new TableCell();

            TableCellProperties tableCellProperties44 = new TableCellProperties();
            TableCellWidth tableCellWidth44 = new TableCellWidth() { Width = "274", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment33 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties44.Append(tableCellWidth44);
            tableCellProperties44.Append(tableCellVerticalAlignment33);

            Paragraph paragraph117 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1972", TextId = "77777777" };

            ParagraphProperties paragraphProperties116 = new ParagraphProperties();
            Justification justification40 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties116 = new ParagraphMarkRunProperties();
            RunFonts runFonts374 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize382 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript376 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties116.Append(runFonts374);
            paragraphMarkRunProperties116.Append(fontSize382);
            paragraphMarkRunProperties116.Append(fontSizeComplexScript376);

            paragraphProperties116.Append(justification40);
            paragraphProperties116.Append(paragraphMarkRunProperties116);

            paragraph117.Append(paragraphProperties116);

            tableCell44.Append(tableCellProperties44);
            tableCell44.Append(paragraph117);

            TableCell tableCell45 = new TableCell();

            TableCellProperties tableCellProperties45 = new TableCellProperties();
            TableCellWidth tableCellWidth45 = new TableCellWidth() { Width = "614", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment34 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties45.Append(tableCellWidth45);
            tableCellProperties45.Append(tableCellVerticalAlignment34);

            Paragraph paragraph118 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1973", TextId = "77777777" };

            ParagraphProperties paragraphProperties117 = new ParagraphProperties();
            Justification justification41 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties117 = new ParagraphMarkRunProperties();
            RunFonts runFonts375 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize383 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript377 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties117.Append(runFonts375);
            paragraphMarkRunProperties117.Append(fontSize383);
            paragraphMarkRunProperties117.Append(fontSizeComplexScript377);

            paragraphProperties117.Append(justification41);
            paragraphProperties117.Append(paragraphMarkRunProperties117);

            paragraph118.Append(paragraphProperties117);

            tableCell45.Append(tableCellProperties45);
            tableCell45.Append(paragraph118);

            TableCell tableCell46 = new TableCell();

            TableCellProperties tableCellProperties46 = new TableCellProperties();
            TableCellWidth tableCellWidth46 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment35 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties46.Append(tableCellWidth46);
            tableCellProperties46.Append(tableCellVerticalAlignment35);

            Paragraph paragraph119 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1974", TextId = "77777777" };

            ParagraphProperties paragraphProperties118 = new ParagraphProperties();
            Justification justification42 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties118 = new ParagraphMarkRunProperties();
            RunFonts runFonts376 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize384 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript378 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties118.Append(runFonts376);
            paragraphMarkRunProperties118.Append(fontSize384);
            paragraphMarkRunProperties118.Append(fontSizeComplexScript378);

            paragraphProperties118.Append(justification42);
            paragraphProperties118.Append(paragraphMarkRunProperties118);

            paragraph119.Append(paragraphProperties118);

            tableCell46.Append(tableCellProperties46);
            tableCell46.Append(paragraph119);

            TableCell tableCell47 = new TableCell();

            TableCellProperties tableCellProperties47 = new TableCellProperties();
            TableCellWidth tableCellWidth47 = new TableCellWidth() { Width = "444", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment36 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties47.Append(tableCellWidth47);
            tableCellProperties47.Append(tableCellVerticalAlignment36);

            Paragraph paragraph120 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1975", TextId = "77777777" };

            ParagraphProperties paragraphProperties119 = new ParagraphProperties();
            Justification justification43 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties119 = new ParagraphMarkRunProperties();
            RunFonts runFonts377 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize385 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript379 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties119.Append(runFonts377);
            paragraphMarkRunProperties119.Append(fontSize385);
            paragraphMarkRunProperties119.Append(fontSizeComplexScript379);

            paragraphProperties119.Append(justification43);
            paragraphProperties119.Append(paragraphMarkRunProperties119);

            paragraph120.Append(paragraphProperties119);

            tableCell47.Append(tableCellProperties47);
            tableCell47.Append(paragraph120);

            TableCell tableCell48 = new TableCell();

            TableCellProperties tableCellProperties48 = new TableCellProperties();
            TableCellWidth tableCellWidth48 = new TableCellWidth() { Width = "308", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment37 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties48.Append(tableCellWidth48);
            tableCellProperties48.Append(tableCellVerticalAlignment37);

            Paragraph paragraph121 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1976", TextId = "77777777" };

            ParagraphProperties paragraphProperties120 = new ParagraphProperties();
            Justification justification44 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties120 = new ParagraphMarkRunProperties();
            RunFonts runFonts378 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize386 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript380 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties120.Append(runFonts378);
            paragraphMarkRunProperties120.Append(fontSize386);
            paragraphMarkRunProperties120.Append(fontSizeComplexScript380);

            paragraphProperties120.Append(justification44);
            paragraphProperties120.Append(paragraphMarkRunProperties120);

            paragraph121.Append(paragraphProperties120);

            tableCell48.Append(tableCellProperties48);
            tableCell48.Append(paragraph121);

            TableCell tableCell49 = new TableCell();

            TableCellProperties tableCellProperties49 = new TableCellProperties();
            TableCellWidth tableCellWidth49 = new TableCellWidth() { Width = "587", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment38 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties49.Append(tableCellWidth49);
            tableCellProperties49.Append(tableCellVerticalAlignment38);

            Paragraph paragraph122 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "004C118E", RsidParagraphProperties = "00BC2F6B", RsidRunAdditionDefault = "004C118E", ParagraphId = "0AAC1977", TextId = "77777777" };

            ParagraphProperties paragraphProperties121 = new ParagraphProperties();
            Justification justification45 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties121 = new ParagraphMarkRunProperties();
            RunFonts runFonts379 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize387 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript381 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties121.Append(runFonts379);
            paragraphMarkRunProperties121.Append(fontSize387);
            paragraphMarkRunProperties121.Append(fontSizeComplexScript381);

            paragraphProperties121.Append(justification45);
            paragraphProperties121.Append(paragraphMarkRunProperties121);

            paragraph122.Append(paragraphProperties121);

            tableCell49.Append(tableCellProperties49);
            tableCell49.Append(paragraph122);

            tableRow11.Append(tableRowProperties11);
            tableRow11.Append(tableCell39);
            tableRow11.Append(tableCell40);
            tableRow11.Append(tableCell41);
            tableRow11.Append(tableCell42);
            tableRow11.Append(tableCell43);
            tableRow11.Append(tableCell44);
            tableRow11.Append(tableCell45);
            tableRow11.Append(tableCell46);
            tableRow11.Append(tableCell47);
            tableRow11.Append(tableCell48);
            tableRow11.Append(tableCell49);

            table2.Append(tableProperties2);
            table2.Append(tableGrid2);
            table2.Append(tableRow9);
            table2.Append(tableRow10);
            table2.Append(tableRow11);

            Paragraph paragraph123 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1985", TextId = "77777777" };

            ParagraphProperties paragraphProperties122 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties122 = new ParagraphMarkRunProperties();
            RunFonts runFonts380 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold60 = new Bold();
            FontSize fontSize388 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript382 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties122.Append(runFonts380);
            paragraphMarkRunProperties122.Append(bold60);
            paragraphMarkRunProperties122.Append(fontSize388);
            paragraphMarkRunProperties122.Append(fontSizeComplexScript382);

            paragraphProperties122.Append(paragraphMarkRunProperties122);

            Run run293 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties308 = new RunProperties();
            RunFonts runFonts381 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize389 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript383 = new FontSizeComplexScript() { Val = "22" };

            runProperties308.Append(runFonts381);
            runProperties308.Append(fontSize389);
            runProperties308.Append(fontSizeComplexScript383);
            Text text274 = new Text();
            text274.Text = "* Cluster Configurations to be defined in Cluster Configurations section";

            run293.Append(runProperties308);
            run293.Append(text274);

            paragraph123.Append(paragraphProperties122);
            paragraph123.Append(run293);

            Paragraph paragraph124 = new Paragraph() { RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1989", TextId = "312E84CC" };

            ParagraphProperties paragraphProperties123 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId13 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties123 = new ParagraphMarkRunProperties();
            Underline underline36 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties123.Append(underline36);

            paragraphProperties123.Append(paragraphStyleId13);
            paragraphProperties123.Append(paragraphMarkRunProperties123);

            Run run294 = new Run();

            RunProperties runProperties309 = new RunProperties();
            Underline underline37 = new Underline() { Val = UnderlineValues.Single };

            runProperties309.Append(underline37);
            Text text275 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text275.Text = "9. ";

            run294.Append(runProperties309);
            run294.Append(text275);

            Run run295 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00116831" };

            RunProperties runProperties310 = new RunProperties();
            Underline underline38 = new Underline() { Val = UnderlineValues.Single };

            runProperties310.Append(underline38);
            Text text276 = new Text();
            text276.Text = "Virtual Server";

            run295.Append(runProperties310);
            run295.Append(text276);

            Run run296 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00E3016A" };

            RunProperties runProperties311 = new RunProperties();
            Underline underline39 = new Underline() { Val = UnderlineValues.Single };

            runProperties311.Append(underline39);
            Text text277 = new Text();
            text277.Text = "s";

            run296.Append(runProperties311);
            run296.Append(text277);

            Run run297 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties312 = new RunProperties();
            Color color114 = new Color() { Val = "FF0000" };
            Underline underline40 = new Underline() { Val = UnderlineValues.Single };

            runProperties312.Append(color114);
            runProperties312.Append(underline40);
            Text text278 = new Text();
            text278.Text = ": N/A";

            run297.Append(runProperties312);
            run297.Append(text278);

            paragraph124.Append(paragraphProperties123);
            paragraph124.Append(run294);
            paragraph124.Append(run295);
            paragraph124.Append(run296);
            paragraph124.Append(run297);

            Paragraph paragraph125 = new Paragraph() { RsidParagraphMarkRevision = "00C56510", RsidParagraphAddition = "00C56510", RsidParagraphProperties = "00C56510", RsidRunAdditionDefault = "00C56510", ParagraphId = "5B9E00F1", TextId = "57971150" };

            ParagraphProperties paragraphProperties124 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties124 = new ParagraphMarkRunProperties();
            Color color115 = new Color() { Val = "FF0000" };

            paragraphMarkRunProperties124.Append(color115);

            paragraphProperties124.Append(paragraphMarkRunProperties124);

            Run run298 = new Run();

            RunProperties runProperties313 = new RunProperties();
            Color color116 = new Color() { Val = "FF0000" };

            runProperties313.Append(color116);
            Text text279 = new Text();
            text279.Text = "No more than 1.7tb total size including all drives and ram";

            run298.Append(runProperties313);
            run298.Append(text279);

            paragraph125.Append(paragraphProperties124);
            paragraph125.Append(run298);

            Table table3 = new Table();

            TableProperties tableProperties3 = new TableProperties();
            TableWidth tableWidth3 = new TableWidth() { Width = "4993", Type = TableWidthUnitValues.Pct };

            TableBorders tableBorders2 = new TableBorders();
            TopBorder topBorder19 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder18 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder18 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder18 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder2 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder2 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableBorders2.Append(topBorder19);
            tableBorders2.Append(leftBorder18);
            tableBorders2.Append(bottomBorder18);
            tableBorders2.Append(rightBorder18);
            tableBorders2.Append(insideHorizontalBorder2);
            tableBorders2.Append(insideVerticalBorder2);
            TableLayout tableLayout2 = new TableLayout() { Type = TableLayoutValues.Fixed };
            TableLook tableLook3 = new TableLook() { Val = "00A0" };

            tableProperties3.Append(tableWidth3);
            tableProperties3.Append(tableBorders2);
            tableProperties3.Append(tableLayout2);
            tableProperties3.Append(tableLook3);

            TableGrid tableGrid3 = new TableGrid();
            GridColumn gridColumn14 = new GridColumn() { Width = "1787" };
            GridColumn gridColumn15 = new GridColumn() { Width = "1415" };
            GridColumn gridColumn16 = new GridColumn() { Width = "1593" };
            GridColumn gridColumn17 = new GridColumn() { Width = "1415" };
            GridColumn gridColumn18 = new GridColumn() { Width = "1417" };
            GridColumn gridColumn19 = new GridColumn() { Width = "1769" };
            GridColumn gridColumn20 = new GridColumn() { Width = "1591" };
            GridColumn gridColumn21 = new GridColumn() { Width = "1241" };
            GridColumn gridColumn22 = new GridColumn() { Width = "704" };

            tableGrid3.Append(gridColumn14);
            tableGrid3.Append(gridColumn15);
            tableGrid3.Append(gridColumn16);
            tableGrid3.Append(gridColumn17);
            tableGrid3.Append(gridColumn18);
            tableGrid3.Append(gridColumn19);
            tableGrid3.Append(gridColumn20);
            tableGrid3.Append(gridColumn21);
            tableGrid3.Append(gridColumn22);

            TableRow tableRow12 = new TableRow() { RsidTableRowMarkRevision = "004E361A", RsidTableRowAddition = "00BC048A", RsidTableRowProperties = "00BC048A", ParagraphId = "0AAC1996", TextId = "77777777" };

            TableRowProperties tableRowProperties12 = new TableRowProperties();
            TableRowHeight tableRowHeight12 = new TableRowHeight() { Val = (UInt32Value)576U };

            tableRowProperties12.Append(tableRowHeight12);

            TableCell tableCell50 = new TableCell();

            TableCellProperties tableCellProperties50 = new TableCellProperties();
            TableCellWidth tableCellWidth50 = new TableCellWidth() { Width = "691", Type = TableWidthUnitValues.Pct };

            tableCellProperties50.Append(tableCellWidth50);

            Paragraph paragraph126 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC198A", TextId = "77777777" };

            ParagraphProperties paragraphProperties125 = new ParagraphProperties();
            Justification justification46 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties125 = new ParagraphMarkRunProperties();
            RunFonts runFonts382 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold61 = new Bold();
            FontSize fontSize390 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript384 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties125.Append(runFonts382);
            paragraphMarkRunProperties125.Append(bold61);
            paragraphMarkRunProperties125.Append(fontSize390);
            paragraphMarkRunProperties125.Append(fontSizeComplexScript384);

            paragraphProperties125.Append(justification46);
            paragraphProperties125.Append(paragraphMarkRunProperties125);

            Run run299 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties314 = new RunProperties();
            RunFonts runFonts383 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold62 = new Bold();
            FontSize fontSize391 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript385 = new FontSizeComplexScript() { Val = "22" };

            runProperties314.Append(runFonts383);
            runProperties314.Append(bold62);
            runProperties314.Append(fontSize391);
            runProperties314.Append(fontSizeComplexScript385);
            Text text280 = new Text();
            text280.Text = "Name";

            run299.Append(runProperties314);
            run299.Append(text280);

            paragraph126.Append(paragraphProperties125);
            paragraph126.Append(run299);

            tableCell50.Append(tableCellProperties50);
            tableCell50.Append(paragraph126);

            TableCell tableCell51 = new TableCell();

            TableCellProperties tableCellProperties51 = new TableCellProperties();
            TableCellWidth tableCellWidth51 = new TableCellWidth() { Width = "547", Type = TableWidthUnitValues.Pct };

            tableCellProperties51.Append(tableCellWidth51);

            Paragraph paragraph127 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "00116FA1", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC198B", TextId = "64307D89" };

            ParagraphProperties paragraphProperties126 = new ParagraphProperties();
            Justification justification47 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties126 = new ParagraphMarkRunProperties();
            RunFonts runFonts384 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold63 = new Bold();
            FontSize fontSize392 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript386 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties126.Append(runFonts384);
            paragraphMarkRunProperties126.Append(bold63);
            paragraphMarkRunProperties126.Append(fontSize392);
            paragraphMarkRunProperties126.Append(fontSizeComplexScript386);

            paragraphProperties126.Append(justification47);
            paragraphProperties126.Append(paragraphMarkRunProperties126);

            Run run300 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties315 = new RunProperties();
            RunFonts runFonts385 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold64 = new Bold();
            FontSize fontSize393 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript387 = new FontSizeComplexScript() { Val = "22" };

            runProperties315.Append(runFonts385);
            runProperties315.Append(bold64);
            runProperties315.Append(fontSize393);
            runProperties315.Append(fontSizeComplexScript387);
            Text text281 = new Text();
            text281.Text = "CPU";

            run300.Append(runProperties315);
            run300.Append(text281);

            Run run301 = new Run();

            RunProperties runProperties316 = new RunProperties();
            RunFonts runFonts386 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold65 = new Bold();
            FontSize fontSize394 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript388 = new FontSizeComplexScript() { Val = "22" };

            runProperties316.Append(runFonts386);
            runProperties316.Append(bold65);
            runProperties316.Append(fontSize394);
            runProperties316.Append(fontSizeComplexScript388);
            Text text282 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text282.Text = " ";

            run301.Append(runProperties316);
            run301.Append(text282);

            Run run302 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties317 = new RunProperties();
            RunFonts runFonts387 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold66 = new Bold();
            FontSize fontSize395 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript389 = new FontSizeComplexScript() { Val = "22" };

            runProperties317.Append(runFonts387);
            runProperties317.Append(bold66);
            runProperties317.Append(fontSize395);
            runProperties317.Append(fontSizeComplexScript389);
            Text text283 = new Text();
            text283.Text = "C";

            run302.Append(runProperties317);
            run302.Append(text283);

            Run run303 = new Run();

            RunProperties runProperties318 = new RunProperties();
            RunFonts runFonts388 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold67 = new Bold();
            FontSize fontSize396 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript390 = new FontSizeComplexScript() { Val = "22" };

            runProperties318.Append(runFonts388);
            runProperties318.Append(bold67);
            runProperties318.Append(fontSize396);
            runProperties318.Append(fontSizeComplexScript390);
            Text text284 = new Text();
            text284.Text = "ount";

            run303.Append(runProperties318);
            run303.Append(text284);

            paragraph127.Append(paragraphProperties126);
            paragraph127.Append(run300);
            paragraph127.Append(run301);
            paragraph127.Append(run302);
            paragraph127.Append(run303);

            tableCell51.Append(tableCellProperties51);
            tableCell51.Append(paragraph127);

            TableCell tableCell52 = new TableCell();

            TableCellProperties tableCellProperties52 = new TableCellProperties();
            TableCellWidth tableCellWidth52 = new TableCellWidth() { Width = "616", Type = TableWidthUnitValues.Pct };

            tableCellProperties52.Append(tableCellWidth52);

            Paragraph paragraph128 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC198C", TextId = "77777777" };

            ParagraphProperties paragraphProperties127 = new ParagraphProperties();
            Justification justification48 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties127 = new ParagraphMarkRunProperties();
            RunFonts runFonts389 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold68 = new Bold();
            FontSize fontSize397 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript391 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties127.Append(runFonts389);
            paragraphMarkRunProperties127.Append(bold68);
            paragraphMarkRunProperties127.Append(fontSize397);
            paragraphMarkRunProperties127.Append(fontSizeComplexScript391);

            paragraphProperties127.Append(justification48);
            paragraphProperties127.Append(paragraphMarkRunProperties127);

            Run run304 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties319 = new RunProperties();
            RunFonts runFonts390 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold69 = new Bold();
            FontSize fontSize398 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript392 = new FontSizeComplexScript() { Val = "22" };

            runProperties319.Append(runFonts390);
            runProperties319.Append(bold69);
            runProperties319.Append(fontSize398);
            runProperties319.Append(fontSizeComplexScript392);
            Text text285 = new Text();
            text285.Text = "OS";

            run304.Append(runProperties319);
            run304.Append(text285);

            paragraph128.Append(paragraphProperties127);
            paragraph128.Append(run304);

            tableCell52.Append(tableCellProperties52);
            tableCell52.Append(paragraph128);

            TableCell tableCell53 = new TableCell();

            TableCellProperties tableCellProperties53 = new TableCellProperties();
            TableCellWidth tableCellWidth53 = new TableCellWidth() { Width = "547", Type = TableWidthUnitValues.Pct };

            tableCellProperties53.Append(tableCellWidth53);

            Paragraph paragraph129 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC198D", TextId = "77777777" };

            ParagraphProperties paragraphProperties128 = new ParagraphProperties();
            Justification justification49 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties128 = new ParagraphMarkRunProperties();
            RunFonts runFonts391 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold70 = new Bold();
            FontSize fontSize399 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript393 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties128.Append(runFonts391);
            paragraphMarkRunProperties128.Append(bold70);
            paragraphMarkRunProperties128.Append(fontSize399);
            paragraphMarkRunProperties128.Append(fontSizeComplexScript393);

            paragraphProperties128.Append(justification49);
            paragraphProperties128.Append(paragraphMarkRunProperties128);

            Run run305 = new Run();

            RunProperties runProperties320 = new RunProperties();
            RunFonts runFonts392 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold71 = new Bold();
            FontSize fontSize400 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript394 = new FontSizeComplexScript() { Val = "22" };

            runProperties320.Append(runFonts392);
            runProperties320.Append(bold71);
            runProperties320.Append(fontSize400);
            runProperties320.Append(fontSizeComplexScript394);
            Text text286 = new Text();
            text286.Text = "RAM (GB)";

            run305.Append(runProperties320);
            run305.Append(text286);

            paragraph129.Append(paragraphProperties128);
            paragraph129.Append(run305);

            tableCell53.Append(tableCellProperties53);
            tableCell53.Append(paragraph129);

            TableCell tableCell54 = new TableCell();

            TableCellProperties tableCellProperties54 = new TableCellProperties();
            TableCellWidth tableCellWidth54 = new TableCellWidth() { Width = "548", Type = TableWidthUnitValues.Pct };

            tableCellProperties54.Append(tableCellWidth54);

            Paragraph paragraph130 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC198E", TextId = "77777777" };

            ParagraphProperties paragraphProperties129 = new ParagraphProperties();
            Justification justification50 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties129 = new ParagraphMarkRunProperties();
            RunFonts runFonts393 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold72 = new Bold();
            FontSize fontSize401 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript395 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties129.Append(runFonts393);
            paragraphMarkRunProperties129.Append(bold72);
            paragraphMarkRunProperties129.Append(fontSize401);
            paragraphMarkRunProperties129.Append(fontSizeComplexScript395);

            paragraphProperties129.Append(justification50);
            paragraphProperties129.Append(paragraphMarkRunProperties129);

            Run run306 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties321 = new RunProperties();
            RunFonts runFonts394 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold73 = new Bold();
            FontSize fontSize402 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript396 = new FontSizeComplexScript() { Val = "22" };

            runProperties321.Append(runFonts394);
            runProperties321.Append(bold73);
            runProperties321.Append(fontSize402);
            runProperties321.Append(fontSizeComplexScript396);
            Text text287 = new Text();
            text287.Text = "VM Cluster";

            run306.Append(runProperties321);
            run306.Append(text287);

            paragraph130.Append(paragraphProperties129);
            paragraph130.Append(run306);

            Paragraph paragraph131 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC198F", TextId = "77777777" };

            ParagraphProperties paragraphProperties130 = new ParagraphProperties();
            Justification justification51 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties130 = new ParagraphMarkRunProperties();
            RunFonts runFonts395 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize403 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript397 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties130.Append(runFonts395);
            paragraphMarkRunProperties130.Append(fontSize403);
            paragraphMarkRunProperties130.Append(fontSizeComplexScript397);

            paragraphProperties130.Append(justification51);
            paragraphProperties130.Append(paragraphMarkRunProperties130);

            paragraph131.Append(paragraphProperties130);

            tableCell54.Append(tableCellProperties54);
            tableCell54.Append(paragraph130);
            tableCell54.Append(paragraph131);

            TableCell tableCell55 = new TableCell();

            TableCellProperties tableCellProperties55 = new TableCellProperties();
            TableCellWidth tableCellWidth55 = new TableCellWidth() { Width = "684", Type = TableWidthUnitValues.Pct };

            tableCellProperties55.Append(tableCellWidth55);

            Paragraph paragraph132 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1990", TextId = "77777777" };

            ParagraphProperties paragraphProperties131 = new ParagraphProperties();
            Justification justification52 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties131 = new ParagraphMarkRunProperties();
            RunFonts runFonts396 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold74 = new Bold();
            FontSize fontSize404 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript398 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties131.Append(runFonts396);
            paragraphMarkRunProperties131.Append(bold74);
            paragraphMarkRunProperties131.Append(fontSize404);
            paragraphMarkRunProperties131.Append(fontSizeComplexScript398);

            paragraphProperties131.Append(justification52);
            paragraphProperties131.Append(paragraphMarkRunProperties131);

            Run run307 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties322 = new RunProperties();
            RunFonts runFonts397 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold75 = new Bold();
            FontSize fontSize405 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript399 = new FontSizeComplexScript() { Val = "22" };

            runProperties322.Append(runFonts397);
            runProperties322.Append(bold75);
            runProperties322.Append(fontSize405);
            runProperties322.Append(fontSizeComplexScript399);
            Text text288 = new Text();
            text288.Text = "Disk Layouts";

            run307.Append(runProperties322);
            run307.Append(text288);

            paragraph132.Append(paragraphProperties131);
            paragraph132.Append(run307);

            tableCell55.Append(tableCellProperties55);
            tableCell55.Append(paragraph132);

            TableCell tableCell56 = new TableCell();

            TableCellProperties tableCellProperties56 = new TableCellProperties();
            TableCellWidth tableCellWidth56 = new TableCellWidth() { Width = "615", Type = TableWidthUnitValues.Pct };

            tableCellProperties56.Append(tableCellWidth56);

            Paragraph paragraph133 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1991", TextId = "77777777" };

            ParagraphProperties paragraphProperties132 = new ParagraphProperties();
            Justification justification53 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties132 = new ParagraphMarkRunProperties();
            RunFonts runFonts398 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold76 = new Bold();
            FontSize fontSize406 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript400 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties132.Append(runFonts398);
            paragraphMarkRunProperties132.Append(bold76);
            paragraphMarkRunProperties132.Append(fontSize406);
            paragraphMarkRunProperties132.Append(fontSizeComplexScript400);

            paragraphProperties132.Append(justification53);
            paragraphProperties132.Append(paragraphMarkRunProperties132);

            Run run308 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties323 = new RunProperties();
            RunFonts runFonts399 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold77 = new Bold();
            FontSize fontSize407 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript401 = new FontSizeComplexScript() { Val = "22" };

            runProperties323.Append(runFonts399);
            runProperties323.Append(bold77);
            runProperties323.Append(fontSize407);
            runProperties323.Append(fontSizeComplexScript401);
            Text text289 = new Text();
            text289.Text = "Citrix";

            run308.Append(runProperties323);
            run308.Append(text289);

            Run run309 = new Run();

            RunProperties runProperties324 = new RunProperties();
            RunFonts runFonts400 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold78 = new Bold();
            FontSize fontSize408 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript402 = new FontSizeComplexScript() { Val = "22" };

            runProperties324.Append(runFonts400);
            runProperties324.Append(bold78);
            runProperties324.Append(fontSize408);
            runProperties324.Append(fontSizeComplexScript402);
            Text text290 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text290.Text = " or SQL Version";

            run309.Append(runProperties324);
            run309.Append(text290);

            paragraph133.Append(paragraphProperties132);
            paragraph133.Append(run308);
            paragraph133.Append(run309);

            tableCell56.Append(tableCellProperties56);
            tableCell56.Append(paragraph133);

            TableCell tableCell57 = new TableCell();

            TableCellProperties tableCellProperties57 = new TableCellProperties();
            TableCellWidth tableCellWidth57 = new TableCellWidth() { Width = "480", Type = TableWidthUnitValues.Pct };

            tableCellProperties57.Append(tableCellWidth57);

            Paragraph paragraph134 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1992", TextId = "257E2367" };

            ParagraphProperties paragraphProperties133 = new ParagraphProperties();
            Justification justification54 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties133 = new ParagraphMarkRunProperties();
            RunFonts runFonts401 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold79 = new Bold();
            FontSize fontSize409 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript403 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties133.Append(runFonts401);
            paragraphMarkRunProperties133.Append(bold79);
            paragraphMarkRunProperties133.Append(fontSize409);
            paragraphMarkRunProperties133.Append(fontSizeComplexScript403);

            paragraphProperties133.Append(justification54);
            paragraphProperties133.Append(paragraphMarkRunProperties133);

            Run run310 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties325 = new RunProperties();
            RunFonts runFonts402 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold80 = new Bold();
            FontSize fontSize410 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript404 = new FontSizeComplexScript() { Val = "22" };

            runProperties325.Append(runFonts402);
            runProperties325.Append(bold80);
            runProperties325.Append(fontSize410);
            runProperties325.Append(fontSizeComplexScript404);
            Text text291 = new Text();
            text291.Text = "D";

            run310.Append(runProperties325);
            run310.Append(text291);

            Run run311 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties326 = new RunProperties();
            RunFonts runFonts403 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold81 = new Bold();
            FontSize fontSize411 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript405 = new FontSizeComplexScript() { Val = "22" };

            runProperties326.Append(runFonts403);
            runProperties326.Append(bold81);
            runProperties326.Append(fontSize411);
            runProperties326.Append(fontSizeComplexScript405);
            Text text292 = new Text();
            text292.Text = "R";

            run311.Append(runProperties326);
            run311.Append(text292);

            Run run312 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties327 = new RunProperties();
            RunFonts runFonts404 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold82 = new Bold();
            FontSize fontSize412 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript406 = new FontSizeComplexScript() { Val = "22" };

            runProperties327.Append(runFonts404);
            runProperties327.Append(bold82);
            runProperties327.Append(fontSize412);
            runProperties327.Append(fontSizeComplexScript406);
            Text text293 = new Text();
            text293.Text = "/Prod";

            run312.Append(runProperties327);
            run312.Append(text293);

            paragraph134.Append(paragraphProperties133);
            paragraph134.Append(run310);
            paragraph134.Append(run311);
            paragraph134.Append(run312);

            Paragraph paragraph135 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1993", TextId = "77777777" };

            ParagraphProperties paragraphProperties134 = new ParagraphProperties();
            Justification justification55 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties134 = new ParagraphMarkRunProperties();
            RunFonts runFonts405 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize413 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript407 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties134.Append(runFonts405);
            paragraphMarkRunProperties134.Append(fontSize413);
            paragraphMarkRunProperties134.Append(fontSizeComplexScript407);

            paragraphProperties134.Append(justification55);
            paragraphProperties134.Append(paragraphMarkRunProperties134);

            Run run313 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties328 = new RunProperties();
            RunFonts runFonts406 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold83 = new Bold();
            FontSize fontSize414 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript408 = new FontSizeComplexScript() { Val = "22" };

            runProperties328.Append(runFonts406);
            runProperties328.Append(bold83);
            runProperties328.Append(fontSize414);
            runProperties328.Append(fontSizeComplexScript408);
            Text text294 = new Text();
            text294.Text = "/Test";

            run313.Append(runProperties328);
            run313.Append(text294);

            paragraph135.Append(paragraphProperties134);
            paragraph135.Append(run313);

            tableCell57.Append(tableCellProperties57);
            tableCell57.Append(paragraph134);
            tableCell57.Append(paragraph135);

            TableCell tableCell58 = new TableCell();

            TableCellProperties tableCellProperties58 = new TableCellProperties();
            TableCellWidth tableCellWidth58 = new TableCellWidth() { Width = "273", Type = TableWidthUnitValues.Pct };

            tableCellProperties58.Append(tableCellWidth58);

            Paragraph paragraph136 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1994", TextId = "77777777" };

            ParagraphProperties paragraphProperties135 = new ParagraphProperties();
            Justification justification56 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties135 = new ParagraphMarkRunProperties();
            RunFonts runFonts407 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold84 = new Bold();
            FontSize fontSize415 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript409 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties135.Append(runFonts407);
            paragraphMarkRunProperties135.Append(bold84);
            paragraphMarkRunProperties135.Append(fontSize415);
            paragraphMarkRunProperties135.Append(fontSizeComplexScript409);

            paragraphProperties135.Append(justification56);
            paragraphProperties135.Append(paragraphMarkRunProperties135);

            Run run314 = new Run();

            RunProperties runProperties329 = new RunProperties();
            RunFonts runFonts408 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold85 = new Bold();
            FontSize fontSize416 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript410 = new FontSizeComplexScript() { Val = "22" };

            runProperties329.Append(runFonts408);
            runProperties329.Append(bold85);
            runProperties329.Append(fontSize416);
            runProperties329.Append(fontSizeComplexScript410);
            Text text295 = new Text();
            text295.Text = "DD?";

            run314.Append(runProperties329);
            run314.Append(text295);

            paragraph136.Append(paragraphProperties135);
            paragraph136.Append(run314);

            tableCell58.Append(tableCellProperties58);
            tableCell58.Append(paragraph136);

            tableRow12.Append(tableRowProperties12);
            tableRow12.Append(tableCell50);
            tableRow12.Append(tableCell51);
            tableRow12.Append(tableCell52);
            tableRow12.Append(tableCell53);
            tableRow12.Append(tableCell54);
            tableRow12.Append(tableCell55);
            tableRow12.Append(tableCell56);
            tableRow12.Append(tableCell57);
            tableRow12.Append(tableCell58);

            TableRow tableRow13 = new TableRow() { RsidTableRowMarkRevision = "004E361A", RsidTableRowAddition = "00BC048A", RsidTableRowProperties = "00BC048A", ParagraphId = "0AAC19A1", TextId = "77777777" };

            TableRowProperties tableRowProperties13 = new TableRowProperties();
            TableRowHeight tableRowHeight13 = new TableRowHeight() { Val = (UInt32Value)576U };

            tableRowProperties13.Append(tableRowHeight13);

            TableCell tableCell59 = new TableCell();

            TableCellProperties tableCellProperties59 = new TableCellProperties();
            TableCellWidth tableCellWidth59 = new TableCellWidth() { Width = "691", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment39 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties59.Append(tableCellWidth59);
            tableCellProperties59.Append(tableCellVerticalAlignment39);

            Paragraph paragraph137 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1997", TextId = "77777777" };

            ParagraphProperties paragraphProperties136 = new ParagraphProperties();
            Justification justification57 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties136 = new ParagraphMarkRunProperties();
            RunFonts runFonts409 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color117 = new Color() { Val = "FF0000" };
            FontSize fontSize417 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript411 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties136.Append(runFonts409);
            paragraphMarkRunProperties136.Append(color117);
            paragraphMarkRunProperties136.Append(fontSize417);
            paragraphMarkRunProperties136.Append(fontSizeComplexScript411);

            paragraphProperties136.Append(justification57);
            paragraphProperties136.Append(paragraphMarkRunProperties136);

            Run run315 = new Run() { RsidRunProperties = "004E361A" };

            RunProperties runProperties330 = new RunProperties();
            RunFonts runFonts410 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color118 = new Color() { Val = "FF0000" };
            FontSize fontSize418 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript412 = new FontSizeComplexScript() { Val = "22" };

            runProperties330.Append(runFonts410);
            runProperties330.Append(color118);
            runProperties330.Append(fontSize418);
            runProperties330.Append(fontSizeComplexScript412);
            Text text296 = new Text();
            text296.Text = "BJCxxxx";

            run315.Append(runProperties330);
            run315.Append(text296);

            Run run316 = new Run();

            RunProperties runProperties331 = new RunProperties();
            RunFonts runFonts411 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color119 = new Color() { Val = "FF0000" };
            FontSize fontSize419 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript413 = new FontSizeComplexScript() { Val = "22" };

            runProperties331.Append(runFonts411);
            runProperties331.Append(color119);
            runProperties331.Append(fontSize419);
            runProperties331.Append(fontSizeComplexScript413);
            Text text297 = new Text();
            text297.Text = "xx";

            run316.Append(runProperties331);
            run316.Append(text297);

            Run run317 = new Run() { RsidRunProperties = "004E361A" };

            RunProperties runProperties332 = new RunProperties();
            RunFonts runFonts412 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color120 = new Color() { Val = "FF0000" };
            FontSize fontSize420 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript414 = new FontSizeComplexScript() { Val = "22" };

            runProperties332.Append(runFonts412);
            runProperties332.Append(color120);
            runProperties332.Append(fontSize420);
            runProperties332.Append(fontSizeComplexScript414);
            Text text298 = new Text();
            text298.Text = "01";

            run317.Append(runProperties332);
            run317.Append(text298);

            paragraph137.Append(paragraphProperties136);
            paragraph137.Append(run315);
            paragraph137.Append(run316);
            paragraph137.Append(run317);

            tableCell59.Append(tableCellProperties59);
            tableCell59.Append(paragraph137);

            TableCell tableCell60 = new TableCell();

            TableCellProperties tableCellProperties60 = new TableCellProperties();
            TableCellWidth tableCellWidth60 = new TableCellWidth() { Width = "547", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment40 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties60.Append(tableCellWidth60);
            tableCellProperties60.Append(tableCellVerticalAlignment40);

            Paragraph paragraph138 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1998", TextId = "77777777" };

            ParagraphProperties paragraphProperties137 = new ParagraphProperties();
            Justification justification58 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties137 = new ParagraphMarkRunProperties();
            RunFonts runFonts413 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color121 = new Color() { Val = "FF0000" };
            FontSize fontSize421 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript415 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties137.Append(runFonts413);
            paragraphMarkRunProperties137.Append(color121);
            paragraphMarkRunProperties137.Append(fontSize421);
            paragraphMarkRunProperties137.Append(fontSizeComplexScript415);

            paragraphProperties137.Append(justification58);
            paragraphProperties137.Append(paragraphMarkRunProperties137);

            Run run318 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties333 = new RunProperties();
            RunFonts runFonts414 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color122 = new Color() { Val = "FF0000" };
            FontSize fontSize422 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript416 = new FontSizeComplexScript() { Val = "22" };

            runProperties333.Append(runFonts414);
            runProperties333.Append(color122);
            runProperties333.Append(fontSize422);
            runProperties333.Append(fontSizeComplexScript416);
            Text text299 = new Text();
            text299.Text = "2";

            run318.Append(runProperties333);
            run318.Append(text299);

            paragraph138.Append(paragraphProperties137);
            paragraph138.Append(run318);

            tableCell60.Append(tableCellProperties60);
            tableCell60.Append(paragraph138);

            TableCell tableCell61 = new TableCell();

            TableCellProperties tableCellProperties61 = new TableCellProperties();
            TableCellWidth tableCellWidth61 = new TableCellWidth() { Width = "616", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment41 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties61.Append(tableCellWidth61);
            tableCellProperties61.Append(tableCellVerticalAlignment41);

            Paragraph paragraph139 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC1999", TextId = "77777777" };

            ParagraphProperties paragraphProperties138 = new ParagraphProperties();
            Justification justification59 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties138 = new ParagraphMarkRunProperties();
            RunFonts runFonts415 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color123 = new Color() { Val = "FF0000" };
            FontSize fontSize423 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript417 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties138.Append(runFonts415);
            paragraphMarkRunProperties138.Append(color123);
            paragraphMarkRunProperties138.Append(fontSize423);
            paragraphMarkRunProperties138.Append(fontSizeComplexScript417);

            paragraphProperties138.Append(justification59);
            paragraphProperties138.Append(paragraphMarkRunProperties138);

            Run run319 = new Run() { RsidRunProperties = "004E361A" };

            RunProperties runProperties334 = new RunProperties();
            RunFonts runFonts416 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color124 = new Color() { Val = "FF0000" };
            FontSize fontSize424 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript418 = new FontSizeComplexScript() { Val = "22" };

            runProperties334.Append(runFonts416);
            runProperties334.Append(color124);
            runProperties334.Append(fontSize424);
            runProperties334.Append(fontSizeComplexScript418);
            Text text300 = new Text();
            text300.Text = "W2K8r2 Std x64";

            run319.Append(runProperties334);
            run319.Append(text300);

            paragraph139.Append(paragraphProperties138);
            paragraph139.Append(run319);

            tableCell61.Append(tableCellProperties61);
            tableCell61.Append(paragraph139);

            TableCell tableCell62 = new TableCell();

            TableCellProperties tableCellProperties62 = new TableCellProperties();
            TableCellWidth tableCellWidth62 = new TableCellWidth() { Width = "547", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment42 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties62.Append(tableCellWidth62);
            tableCellProperties62.Append(tableCellVerticalAlignment42);

            Paragraph paragraph140 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC199A", TextId = "77777777" };

            ParagraphProperties paragraphProperties139 = new ParagraphProperties();
            Justification justification60 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties139 = new ParagraphMarkRunProperties();
            RunFonts runFonts417 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color125 = new Color() { Val = "FF0000" };
            FontSize fontSize425 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript419 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties139.Append(runFonts417);
            paragraphMarkRunProperties139.Append(color125);
            paragraphMarkRunProperties139.Append(fontSize425);
            paragraphMarkRunProperties139.Append(fontSizeComplexScript419);

            paragraphProperties139.Append(justification60);
            paragraphProperties139.Append(paragraphMarkRunProperties139);

            Run run320 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties335 = new RunProperties();
            RunFonts runFonts418 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color126 = new Color() { Val = "FF0000" };
            FontSize fontSize426 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript420 = new FontSizeComplexScript() { Val = "22" };

            runProperties335.Append(runFonts418);
            runProperties335.Append(color126);
            runProperties335.Append(fontSize426);
            runProperties335.Append(fontSizeComplexScript420);
            Text text301 = new Text();
            text301.Text = "4";

            run320.Append(runProperties335);
            run320.Append(text301);

            paragraph140.Append(paragraphProperties139);
            paragraph140.Append(run320);

            tableCell62.Append(tableCellProperties62);
            tableCell62.Append(paragraph140);

            TableCell tableCell63 = new TableCell();

            TableCellProperties tableCellProperties63 = new TableCellProperties();
            TableCellWidth tableCellWidth63 = new TableCellWidth() { Width = "548", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment43 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties63.Append(tableCellWidth63);
            tableCellProperties63.Append(tableCellVerticalAlignment43);

            Paragraph paragraph141 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC199B", TextId = "77777777" };

            ParagraphProperties paragraphProperties140 = new ParagraphProperties();
            Justification justification61 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties140 = new ParagraphMarkRunProperties();
            RunFonts runFonts419 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color127 = new Color() { Val = "FF0000" };
            FontSize fontSize427 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript421 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties140.Append(runFonts419);
            paragraphMarkRunProperties140.Append(color127);
            paragraphMarkRunProperties140.Append(fontSize427);
            paragraphMarkRunProperties140.Append(fontSizeComplexScript421);

            paragraphProperties140.Append(justification61);
            paragraphProperties140.Append(paragraphMarkRunProperties140);

            Run run321 = new Run() { RsidRunProperties = "004E361A" };

            RunProperties runProperties336 = new RunProperties();
            RunFonts runFonts420 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color128 = new Color() { Val = "FF0000" };
            FontSize fontSize428 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript422 = new FontSizeComplexScript() { Val = "22" };

            runProperties336.Append(runFonts420);
            runProperties336.Append(color128);
            runProperties336.Append(fontSize428);
            runProperties336.Append(fontSizeComplexScript422);
            Text text302 = new Text();
            text302.Text = "PDC";

            run321.Append(runProperties336);
            run321.Append(text302);

            Run run322 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties337 = new RunProperties();
            RunFonts runFonts421 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize429 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript423 = new FontSizeComplexScript() { Val = "22" };

            runProperties337.Append(runFonts421);
            runProperties337.Append(fontSize429);
            runProperties337.Append(fontSizeComplexScript423);
            Text text303 = new Text();
            text303.Text = "PROD04";

            run322.Append(runProperties337);
            run322.Append(text303);

            paragraph141.Append(paragraphProperties140);
            paragraph141.Append(run321);
            paragraph141.Append(run322);

            tableCell63.Append(tableCellProperties63);
            tableCell63.Append(paragraph141);

            TableCell tableCell64 = new TableCell();

            TableCellProperties tableCellProperties64 = new TableCellProperties();
            TableCellWidth tableCellWidth64 = new TableCellWidth() { Width = "684", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment44 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties64.Append(tableCellWidth64);
            tableCellProperties64.Append(tableCellVerticalAlignment44);

            Paragraph paragraph142 = new Paragraph() { RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "2DDDD08B", TextId = "77777777" };

            ParagraphProperties paragraphProperties141 = new ParagraphProperties();
            Justification justification62 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties141 = new ParagraphMarkRunProperties();
            RunFonts runFonts422 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color129 = new Color() { Val = "FF0000" };
            FontSize fontSize430 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript424 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties141.Append(runFonts422);
            paragraphMarkRunProperties141.Append(color129);
            paragraphMarkRunProperties141.Append(fontSize430);
            paragraphMarkRunProperties141.Append(fontSizeComplexScript424);

            paragraphProperties141.Append(justification62);
            paragraphProperties141.Append(paragraphMarkRunProperties141);

            Run run323 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties338 = new RunProperties();
            RunFonts runFonts423 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color130 = new Color() { Val = "FF0000" };
            FontSize fontSize431 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript425 = new FontSizeComplexScript() { Val = "22" };

            runProperties338.Append(runFonts423);
            runProperties338.Append(color130);
            runProperties338.Append(fontSize431);
            runProperties338.Append(fontSizeComplexScript425);
            Text text304 = new Text();
            text304.Text = "C:=60gb";

            run323.Append(runProperties338);
            run323.Append(text304);

            paragraph142.Append(paragraphProperties141);
            paragraph142.Append(run323);

            Paragraph paragraph143 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00697199", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "00747E89", ParagraphId = "0AAC199C", TextId = "26D46620" };

            ParagraphProperties paragraphProperties142 = new ParagraphProperties();
            Justification justification63 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties142 = new ParagraphMarkRunProperties();
            RunFonts runFonts424 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color131 = new Color() { Val = "FF0000" };
            FontSize fontSize432 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript426 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties142.Append(runFonts424);
            paragraphMarkRunProperties142.Append(color131);
            paragraphMarkRunProperties142.Append(fontSize432);
            paragraphMarkRunProperties142.Append(fontSizeComplexScript426);

            paragraphProperties142.Append(justification63);
            paragraphProperties142.Append(paragraphMarkRunProperties142);

            Run run324 = new Run();

            RunProperties runProperties339 = new RunProperties();
            RunFonts runFonts425 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color132 = new Color() { Val = "FF0000" };
            FontSize fontSize433 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript427 = new FontSizeComplexScript() { Val = "22" };

            runProperties339.Append(runFonts425);
            runProperties339.Append(color132);
            runProperties339.Append(fontSize433);
            runProperties339.Append(fontSizeComplexScript427);
            Text text305 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text305.Text = " Or ";

            run324.Append(runProperties339);
            run324.Append(text305);

            Run run325 = new Run() { RsidRunAddition = "00697199" };

            RunProperties runProperties340 = new RunProperties();
            RunFonts runFonts426 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color133 = new Color() { Val = "FF0000" };
            FontSize fontSize434 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript428 = new FontSizeComplexScript() { Val = "22" };

            runProperties340.Append(runFonts426);
            runProperties340.Append(color133);
            runProperties340.Append(fontSize434);
            runProperties340.Append(fontSizeComplexScript428);
            Text text306 = new Text();
            text306.Text = "See Drive Layouts & Size";

            run325.Append(runProperties340);
            run325.Append(text306);

            paragraph143.Append(paragraphProperties142);
            paragraph143.Append(run324);
            paragraph143.Append(run325);

            tableCell64.Append(tableCellProperties64);
            tableCell64.Append(paragraph142);
            tableCell64.Append(paragraph143);

            TableCell tableCell65 = new TableCell();

            TableCellProperties tableCellProperties65 = new TableCellProperties();
            TableCellWidth tableCellWidth65 = new TableCellWidth() { Width = "615", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment45 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties65.Append(tableCellWidth65);
            tableCellProperties65.Append(tableCellVerticalAlignment45);

            Paragraph paragraph144 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC199D", TextId = "77777777" };

            ParagraphProperties paragraphProperties143 = new ParagraphProperties();
            Justification justification64 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties143 = new ParagraphMarkRunProperties();
            RunFonts runFonts427 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color134 = new Color() { Val = "FF0000" };
            FontSize fontSize435 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript429 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties143.Append(runFonts427);
            paragraphMarkRunProperties143.Append(color134);
            paragraphMarkRunProperties143.Append(fontSize435);
            paragraphMarkRunProperties143.Append(fontSizeComplexScript429);

            paragraphProperties143.Append(justification64);
            paragraphProperties143.Append(paragraphMarkRunProperties143);

            Run run326 = new Run();

            RunProperties runProperties341 = new RunProperties();
            RunFonts runFonts428 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color135 = new Color() { Val = "FF0000" };
            FontSize fontSize436 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript430 = new FontSizeComplexScript() { Val = "22" };

            runProperties341.Append(runFonts428);
            runProperties341.Append(color135);
            runProperties341.Append(fontSize436);
            runProperties341.Append(fontSizeComplexScript430);
            Text text307 = new Text();
            text307.Text = "N/A";

            run326.Append(runProperties341);
            run326.Append(text307);

            paragraph144.Append(paragraphProperties143);
            paragraph144.Append(run326);

            tableCell65.Append(tableCellProperties65);
            tableCell65.Append(paragraph144);

            TableCell tableCell66 = new TableCell();

            TableCellProperties tableCellProperties66 = new TableCellProperties();
            TableCellWidth tableCellWidth66 = new TableCellWidth() { Width = "480", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment46 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties66.Append(tableCellWidth66);
            tableCellProperties66.Append(tableCellVerticalAlignment46);

            Paragraph paragraph145 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC199E", TextId = "77777777" };

            ParagraphProperties paragraphProperties144 = new ParagraphProperties();
            Justification justification65 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties144 = new ParagraphMarkRunProperties();
            RunFonts runFonts429 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color136 = new Color() { Val = "FF0000" };
            FontSize fontSize437 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript431 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties144.Append(runFonts429);
            paragraphMarkRunProperties144.Append(color136);
            paragraphMarkRunProperties144.Append(fontSize437);
            paragraphMarkRunProperties144.Append(fontSizeComplexScript431);

            paragraphProperties144.Append(justification65);
            paragraphProperties144.Append(paragraphMarkRunProperties144);

            Run run327 = new Run() { RsidRunProperties = "004E361A" };

            RunProperties runProperties342 = new RunProperties();
            RunFonts runFonts430 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color137 = new Color() { Val = "FF0000" };
            FontSize fontSize438 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript432 = new FontSizeComplexScript() { Val = "22" };

            runProperties342.Append(runFonts430);
            runProperties342.Append(color137);
            runProperties342.Append(fontSize438);
            runProperties342.Append(fontSizeComplexScript432);
            Text text308 = new Text();
            text308.Text = "Prod";

            run327.Append(runProperties342);
            run327.Append(text308);

            paragraph145.Append(paragraphProperties144);
            paragraph145.Append(run327);

            tableCell66.Append(tableCellProperties66);
            tableCell66.Append(paragraph145);

            TableCell tableCell67 = new TableCell();

            TableCellProperties tableCellProperties67 = new TableCellProperties();
            TableCellWidth tableCellWidth67 = new TableCellWidth() { Width = "273", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment47 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties67.Append(tableCellWidth67);
            tableCellProperties67.Append(tableCellVerticalAlignment47);

            Paragraph paragraph146 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC199F", TextId = "77777777" };

            ParagraphProperties paragraphProperties145 = new ParagraphProperties();
            Justification justification66 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties145 = new ParagraphMarkRunProperties();
            RunFonts runFonts431 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color138 = new Color() { Val = "FF0000" };
            FontSize fontSize439 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript433 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties145.Append(runFonts431);
            paragraphMarkRunProperties145.Append(color138);
            paragraphMarkRunProperties145.Append(fontSize439);
            paragraphMarkRunProperties145.Append(fontSizeComplexScript433);

            paragraphProperties145.Append(justification66);
            paragraphProperties145.Append(paragraphMarkRunProperties145);

            Run run328 = new Run();

            RunProperties runProperties343 = new RunProperties();
            RunFonts runFonts432 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color139 = new Color() { Val = "FF0000" };
            FontSize fontSize440 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript434 = new FontSizeComplexScript() { Val = "22" };

            runProperties343.Append(runFonts432);
            runProperties343.Append(color139);
            runProperties343.Append(fontSize440);
            runProperties343.Append(fontSizeComplexScript434);
            Text text309 = new Text();
            text309.Text = "N";

            run328.Append(runProperties343);
            run328.Append(text309);

            paragraph146.Append(paragraphProperties145);
            paragraph146.Append(run328);

            tableCell67.Append(tableCellProperties67);
            tableCell67.Append(paragraph146);

            tableRow13.Append(tableRowProperties13);
            tableRow13.Append(tableCell59);
            tableRow13.Append(tableCell60);
            tableRow13.Append(tableCell61);
            tableRow13.Append(tableCell62);
            tableRow13.Append(tableCell63);
            tableRow13.Append(tableCell64);
            tableRow13.Append(tableCell65);
            tableRow13.Append(tableCell66);
            tableRow13.Append(tableCell67);

            TableRow tableRow14 = new TableRow() { RsidTableRowMarkRevision = "004E361A", RsidTableRowAddition = "00BC048A", RsidTableRowProperties = "00BC048A", ParagraphId = "0AAC19AC", TextId = "77777777" };

            TableRowProperties tableRowProperties14 = new TableRowProperties();
            TableRowHeight tableRowHeight14 = new TableRowHeight() { Val = (UInt32Value)576U };

            tableRowProperties14.Append(tableRowHeight14);

            TableCell tableCell68 = new TableCell();

            TableCellProperties tableCellProperties68 = new TableCellProperties();
            TableCellWidth tableCellWidth68 = new TableCellWidth() { Width = "691", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment48 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties68.Append(tableCellWidth68);
            tableCellProperties68.Append(tableCellVerticalAlignment48);

            Paragraph paragraph147 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A2", TextId = "77777777" };

            ParagraphProperties paragraphProperties146 = new ParagraphProperties();
            Justification justification67 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties146 = new ParagraphMarkRunProperties();
            RunFonts runFonts433 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize441 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript435 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties146.Append(runFonts433);
            paragraphMarkRunProperties146.Append(fontSize441);
            paragraphMarkRunProperties146.Append(fontSizeComplexScript435);

            paragraphProperties146.Append(justification67);
            paragraphProperties146.Append(paragraphMarkRunProperties146);

            paragraph147.Append(paragraphProperties146);

            tableCell68.Append(tableCellProperties68);
            tableCell68.Append(paragraph147);

            TableCell tableCell69 = new TableCell();

            TableCellProperties tableCellProperties69 = new TableCellProperties();
            TableCellWidth tableCellWidth69 = new TableCellWidth() { Width = "547", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment49 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties69.Append(tableCellWidth69);
            tableCellProperties69.Append(tableCellVerticalAlignment49);

            Paragraph paragraph148 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A3", TextId = "77777777" };

            ParagraphProperties paragraphProperties147 = new ParagraphProperties();
            Justification justification68 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties147 = new ParagraphMarkRunProperties();
            RunFonts runFonts434 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize442 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript436 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties147.Append(runFonts434);
            paragraphMarkRunProperties147.Append(fontSize442);
            paragraphMarkRunProperties147.Append(fontSizeComplexScript436);

            paragraphProperties147.Append(justification68);
            paragraphProperties147.Append(paragraphMarkRunProperties147);

            paragraph148.Append(paragraphProperties147);

            tableCell69.Append(tableCellProperties69);
            tableCell69.Append(paragraph148);

            TableCell tableCell70 = new TableCell();

            TableCellProperties tableCellProperties70 = new TableCellProperties();
            TableCellWidth tableCellWidth70 = new TableCellWidth() { Width = "616", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment50 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties70.Append(tableCellWidth70);
            tableCellProperties70.Append(tableCellVerticalAlignment50);

            Paragraph paragraph149 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A4", TextId = "77777777" };

            ParagraphProperties paragraphProperties148 = new ParagraphProperties();
            Justification justification69 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties148 = new ParagraphMarkRunProperties();
            RunFonts runFonts435 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize443 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript437 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties148.Append(runFonts435);
            paragraphMarkRunProperties148.Append(fontSize443);
            paragraphMarkRunProperties148.Append(fontSizeComplexScript437);

            paragraphProperties148.Append(justification69);
            paragraphProperties148.Append(paragraphMarkRunProperties148);

            paragraph149.Append(paragraphProperties148);

            tableCell70.Append(tableCellProperties70);
            tableCell70.Append(paragraph149);

            TableCell tableCell71 = new TableCell();

            TableCellProperties tableCellProperties71 = new TableCellProperties();
            TableCellWidth tableCellWidth71 = new TableCellWidth() { Width = "547", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment51 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties71.Append(tableCellWidth71);
            tableCellProperties71.Append(tableCellVerticalAlignment51);

            Paragraph paragraph150 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A5", TextId = "77777777" };

            ParagraphProperties paragraphProperties149 = new ParagraphProperties();
            Justification justification70 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties149 = new ParagraphMarkRunProperties();
            RunFonts runFonts436 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize444 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript438 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties149.Append(runFonts436);
            paragraphMarkRunProperties149.Append(fontSize444);
            paragraphMarkRunProperties149.Append(fontSizeComplexScript438);

            paragraphProperties149.Append(justification70);
            paragraphProperties149.Append(paragraphMarkRunProperties149);

            paragraph150.Append(paragraphProperties149);

            tableCell71.Append(tableCellProperties71);
            tableCell71.Append(paragraph150);

            TableCell tableCell72 = new TableCell();

            TableCellProperties tableCellProperties72 = new TableCellProperties();
            TableCellWidth tableCellWidth72 = new TableCellWidth() { Width = "548", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment52 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties72.Append(tableCellWidth72);
            tableCellProperties72.Append(tableCellVerticalAlignment52);

            Paragraph paragraph151 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A6", TextId = "77777777" };

            ParagraphProperties paragraphProperties150 = new ParagraphProperties();
            Justification justification71 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties150 = new ParagraphMarkRunProperties();
            RunFonts runFonts437 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize445 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript439 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties150.Append(runFonts437);
            paragraphMarkRunProperties150.Append(fontSize445);
            paragraphMarkRunProperties150.Append(fontSizeComplexScript439);

            paragraphProperties150.Append(justification71);
            paragraphProperties150.Append(paragraphMarkRunProperties150);

            paragraph151.Append(paragraphProperties150);

            tableCell72.Append(tableCellProperties72);
            tableCell72.Append(paragraph151);

            TableCell tableCell73 = new TableCell();

            TableCellProperties tableCellProperties73 = new TableCellProperties();
            TableCellWidth tableCellWidth73 = new TableCellWidth() { Width = "684", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment53 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties73.Append(tableCellWidth73);
            tableCellProperties73.Append(tableCellVerticalAlignment53);

            Paragraph paragraph152 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A7", TextId = "77777777" };

            ParagraphProperties paragraphProperties151 = new ParagraphProperties();
            Justification justification72 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties151 = new ParagraphMarkRunProperties();
            RunFonts runFonts438 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize446 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript440 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties151.Append(runFonts438);
            paragraphMarkRunProperties151.Append(fontSize446);
            paragraphMarkRunProperties151.Append(fontSizeComplexScript440);

            paragraphProperties151.Append(justification72);
            paragraphProperties151.Append(paragraphMarkRunProperties151);

            paragraph152.Append(paragraphProperties151);

            tableCell73.Append(tableCellProperties73);
            tableCell73.Append(paragraph152);

            TableCell tableCell74 = new TableCell();

            TableCellProperties tableCellProperties74 = new TableCellProperties();
            TableCellWidth tableCellWidth74 = new TableCellWidth() { Width = "615", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment54 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties74.Append(tableCellWidth74);
            tableCellProperties74.Append(tableCellVerticalAlignment54);

            Paragraph paragraph153 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A8", TextId = "77777777" };

            ParagraphProperties paragraphProperties152 = new ParagraphProperties();
            Justification justification73 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties152 = new ParagraphMarkRunProperties();
            RunFonts runFonts439 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize447 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript441 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties152.Append(runFonts439);
            paragraphMarkRunProperties152.Append(fontSize447);
            paragraphMarkRunProperties152.Append(fontSizeComplexScript441);

            paragraphProperties152.Append(justification73);
            paragraphProperties152.Append(paragraphMarkRunProperties152);

            paragraph153.Append(paragraphProperties152);

            tableCell74.Append(tableCellProperties74);
            tableCell74.Append(paragraph153);

            TableCell tableCell75 = new TableCell();

            TableCellProperties tableCellProperties75 = new TableCellProperties();
            TableCellWidth tableCellWidth75 = new TableCellWidth() { Width = "480", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment55 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties75.Append(tableCellWidth75);
            tableCellProperties75.Append(tableCellVerticalAlignment55);

            Paragraph paragraph154 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19A9", TextId = "77777777" };

            ParagraphProperties paragraphProperties153 = new ParagraphProperties();
            Justification justification74 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties153 = new ParagraphMarkRunProperties();
            RunFonts runFonts440 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize448 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript442 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties153.Append(runFonts440);
            paragraphMarkRunProperties153.Append(fontSize448);
            paragraphMarkRunProperties153.Append(fontSizeComplexScript442);

            paragraphProperties153.Append(justification74);
            paragraphProperties153.Append(paragraphMarkRunProperties153);

            paragraph154.Append(paragraphProperties153);

            tableCell75.Append(tableCellProperties75);
            tableCell75.Append(paragraph154);

            TableCell tableCell76 = new TableCell();

            TableCellProperties tableCellProperties76 = new TableCellProperties();
            TableCellWidth tableCellWidth76 = new TableCellWidth() { Width = "273", Type = TableWidthUnitValues.Pct };
            TableCellVerticalAlignment tableCellVerticalAlignment56 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties76.Append(tableCellWidth76);
            tableCellProperties76.Append(tableCellVerticalAlignment56);

            Paragraph paragraph155 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002713FA", RsidParagraphProperties = "004E361A", RsidRunAdditionDefault = "002713FA", ParagraphId = "0AAC19AA", TextId = "77777777" };

            ParagraphProperties paragraphProperties154 = new ParagraphProperties();
            Justification justification75 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties154 = new ParagraphMarkRunProperties();
            RunFonts runFonts441 = new RunFonts() { ComplexScript = "Arial", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize449 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript443 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties154.Append(runFonts441);
            paragraphMarkRunProperties154.Append(fontSize449);
            paragraphMarkRunProperties154.Append(fontSizeComplexScript443);

            paragraphProperties154.Append(justification75);
            paragraphProperties154.Append(paragraphMarkRunProperties154);

            paragraph155.Append(paragraphProperties154);

            tableCell76.Append(tableCellProperties76);
            tableCell76.Append(paragraph155);

            tableRow14.Append(tableRowProperties14);
            tableRow14.Append(tableCell68);
            tableRow14.Append(tableCell69);
            tableRow14.Append(tableCell70);
            tableRow14.Append(tableCell71);
            tableRow14.Append(tableCell72);
            tableRow14.Append(tableCell73);
            tableRow14.Append(tableCell74);
            tableRow14.Append(tableCell75);
            tableRow14.Append(tableCell76);

            table3.Append(tableProperties3);
            table3.Append(tableGrid3);
            table3.Append(tableRow12);
            table3.Append(tableRow13);
            table3.Append(tableRow14);

            Paragraph paragraph156 = new Paragraph() { RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC19B8", TextId = "17C745DF" };

            ParagraphProperties paragraphProperties155 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties155 = new ParagraphMarkRunProperties();
            RunFonts runFonts442 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize450 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript444 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties155.Append(runFonts442);
            paragraphMarkRunProperties155.Append(fontSize450);
            paragraphMarkRunProperties155.Append(fontSizeComplexScript444);

            paragraphProperties155.Append(paragraphMarkRunProperties155);

            Run run329 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties344 = new RunProperties();
            RunFonts runFonts443 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize451 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript445 = new FontSizeComplexScript() { Val = "22" };

            runProperties344.Append(runFonts443);
            runProperties344.Append(fontSize451);
            runProperties344.Append(fontSizeComplexScript445);
            Text text310 = new Text();
            text310.Text = "*Citrix app install to be defin";

            run329.Append(runProperties344);
            run329.Append(text310);

            Run run330 = new Run() { RsidRunAddition = "00BC7E65" };

            RunProperties runProperties345 = new RunProperties();
            RunFonts runFonts444 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize452 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript446 = new FontSizeComplexScript() { Val = "22" };

            runProperties345.Append(runFonts444);
            runProperties345.Append(fontSize452);
            runProperties345.Append(fontSizeComplexScript446);
            Text text311 = new Text();
            text311.Text = "ed in Post install task section";

            run330.Append(runProperties345);
            run330.Append(text311);

            paragraph156.Append(paragraphProperties155);
            paragraph156.Append(run329);
            paragraph156.Append(run330);

            Paragraph paragraph157 = new Paragraph() { RsidParagraphMarkRevision = "00747E89", RsidParagraphAddition = "00BC7E65", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00BC7E65", ParagraphId = "52D02CF0", TextId = "3D5811EC" };

            ParagraphProperties paragraphProperties156 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties156 = new ParagraphMarkRunProperties();
            RunFonts runFonts445 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color140 = new Color() { Val = "FF0000" };
            FontSize fontSize453 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript447 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties156.Append(runFonts445);
            paragraphMarkRunProperties156.Append(color140);
            paragraphMarkRunProperties156.Append(fontSize453);
            paragraphMarkRunProperties156.Append(fontSizeComplexScript447);

            paragraphProperties156.Append(paragraphMarkRunProperties156);

            Run run331 = new Run() { RsidRunProperties = "00747E89" };

            RunProperties runProperties346 = new RunProperties();
            RunFonts runFonts446 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color141 = new Color() { Val = "FF0000" };
            FontSize fontSize454 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript448 = new FontSizeComplexScript() { Val = "22" };

            runProperties346.Append(runFonts446);
            runProperties346.Append(color141);
            runProperties346.Append(fontSize454);
            runProperties346.Append(fontSizeComplexScript448);
            Text text312 = new Text();
            text312.Text = "Linux Users";

            run331.Append(runProperties346);
            run331.Append(text312);

            Run run332 = new Run() { RsidRunProperties = "00747E89", RsidRunAddition = "00747E89" };

            RunProperties runProperties347 = new RunProperties();
            RunFonts runFonts447 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color142 = new Color() { Val = "FF0000" };
            FontSize fontSize455 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript449 = new FontSizeComplexScript() { Val = "22" };

            runProperties347.Append(runFonts447);
            runProperties347.Append(color142);
            runProperties347.Append(fontSize455);
            runProperties347.Append(fontSizeComplexScript449);
            Text text313 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text313.Text = " needed for Application team";

            run332.Append(runProperties347);
            run332.Append(text313);

            paragraph157.Append(paragraphProperties156);
            paragraph157.Append(run331);
            paragraph157.Append(run332);

            Paragraph paragraph158 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC19B9", TextId = "60A944BF" };

            ParagraphProperties paragraphProperties157 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId14 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties157 = new ParagraphMarkRunProperties();
            Underline underline41 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties157.Append(underline41);

            paragraphProperties157.Append(paragraphStyleId14);
            paragraphProperties157.Append(paragraphMarkRunProperties157);

            Run run333 = new Run();

            RunProperties runProperties348 = new RunProperties();
            Underline underline42 = new Underline() { Val = UnderlineValues.Single };

            runProperties348.Append(underline42);
            Text text314 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text314.Text = "10. ";

            run333.Append(runProperties348);
            run333.Append(text314);

            Run run334 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F34C49" };

            RunProperties runProperties349 = new RunProperties();
            Underline underline43 = new Underline() { Val = UnderlineValues.Single };

            runProperties349.Append(underline43);
            Text text315 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text315.Text = "What Server/Systems ";

            run334.Append(runProperties349);
            run334.Append(text315);

            Run run335 = new Run() { RsidRunAddition = "0057090B" };

            RunProperties runProperties350 = new RunProperties();
            Underline underline44 = new Underline() { Val = UnderlineValues.Single };

            runProperties350.Append(underline44);
            Text text316 = new Text();
            text316.Text = "will this project be replacing";

            run335.Append(runProperties350);
            run335.Append(text316);

            Run run336 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties351 = new RunProperties();
            Color color143 = new Color() { Val = "FF0000" };
            Underline underline45 = new Underline() { Val = UnderlineValues.Single };

            runProperties351.Append(color143);
            runProperties351.Append(underline45);
            Text text317 = new Text();
            text317.Text = ": N/A";

            run336.Append(runProperties351);
            run336.Append(text317);

            paragraph158.Append(paragraphProperties157);
            paragraph158.Append(run333);
            paragraph158.Append(run334);
            paragraph158.Append(run335);
            paragraph158.Append(run336);

            Paragraph paragraph159 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19BA", TextId = "77777777" };

            ParagraphProperties paragraphProperties158 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties158 = new ParagraphMarkRunProperties();
            RunFonts runFonts448 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize456 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript450 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties158.Append(runFonts448);
            paragraphMarkRunProperties158.Append(fontSize456);
            paragraphMarkRunProperties158.Append(fontSizeComplexScript450);

            paragraphProperties158.Append(paragraphMarkRunProperties158);

            Run run337 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties352 = new RunProperties();
            RunFonts runFonts449 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize457 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript451 = new FontSizeComplexScript() { Val = "22" };

            runProperties352.Append(runFonts449);
            runProperties352.Append(fontSize457);
            runProperties352.Append(fontSizeComplexScript451);
            Text text318 = new Text();
            text318.Text = "*Please include all items and systems and approx. timelines that will be replaced by this project.";

            run337.Append(runProperties352);
            run337.Append(text318);

            paragraph159.Append(paragraphProperties158);
            paragraph159.Append(run337);

            Table table4 = new Table();

            TableProperties tableProperties4 = new TableProperties();
            TableWidth tableWidth4 = new TableWidth() { Width = "5000", Type = TableWidthUnitValues.Pct };

            TableCellMarginDefault tableCellMarginDefault2 = new TableCellMarginDefault();
            TableCellLeftMargin tableCellLeftMargin2 = new TableCellLeftMargin() { Width = 10, Type = TableWidthValues.Dxa };
            TableCellRightMargin tableCellRightMargin2 = new TableCellRightMargin() { Width = 10, Type = TableWidthValues.Dxa };

            tableCellMarginDefault2.Append(tableCellLeftMargin2);
            tableCellMarginDefault2.Append(tableCellRightMargin2);
            TableLook tableLook4 = new TableLook() { Val = "0000" };

            tableProperties4.Append(tableWidth4);
            tableProperties4.Append(tableCellMarginDefault2);
            tableProperties4.Append(tableLook4);

            TableGrid tableGrid4 = new TableGrid();
            GridColumn gridColumn23 = new GridColumn() { Width = "3886" };
            GridColumn gridColumn24 = new GridColumn() { Width = "2987" };
            GridColumn gridColumn25 = new GridColumn() { Width = "3171" };
            GridColumn gridColumn26 = new GridColumn() { Width = "2906" };

            tableGrid4.Append(gridColumn23);
            tableGrid4.Append(gridColumn24);
            tableGrid4.Append(gridColumn25);
            tableGrid4.Append(gridColumn26);

            TableRow tableRow15 = new TableRow() { RsidTableRowMarkRevision = "00281D13", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC19BF", TextId = "77777777" };

            TableRowProperties tableRowProperties15 = new TableRowProperties();
            TableRowHeight tableRowHeight15 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties15.Append(tableRowHeight15);

            TableCell tableCell77 = new TableCell();

            TableCellProperties tableCellProperties77 = new TableCellProperties();
            TableCellWidth tableCellWidth77 = new TableCellWidth() { Width = "1500", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders17 = new TableCellBorders();
            TopBorder topBorder20 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder19 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder19 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder19 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders17.Append(topBorder20);
            tableCellBorders17.Append(leftBorder19);
            tableCellBorders17.Append(bottomBorder19);
            tableCellBorders17.Append(rightBorder19);
            Shading shading17 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin1 = new TableCellMargin();
            LeftMargin leftMargin1 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin1 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin1.Append(leftMargin1);
            tableCellMargin1.Append(rightMargin1);

            tableCellProperties77.Append(tableCellWidth77);
            tableCellProperties77.Append(tableCellBorders17);
            tableCellProperties77.Append(shading17);
            tableCellProperties77.Append(tableCellMargin1);

            Paragraph paragraph160 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19BB", TextId = "77777777" };

            ParagraphProperties paragraphProperties159 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties159 = new ParagraphMarkRunProperties();
            RunFonts runFonts450 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold86 = new Bold();
            FontSize fontSize458 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript452 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties159.Append(runFonts450);
            paragraphMarkRunProperties159.Append(bold86);
            paragraphMarkRunProperties159.Append(fontSize458);
            paragraphMarkRunProperties159.Append(fontSizeComplexScript452);

            paragraphProperties159.Append(paragraphMarkRunProperties159);

            Run run338 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties353 = new RunProperties();
            RunFonts runFonts451 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold87 = new Bold();
            FontSize fontSize459 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript453 = new FontSizeComplexScript() { Val = "22" };

            runProperties353.Append(runFonts451);
            runProperties353.Append(bold87);
            runProperties353.Append(fontSize459);
            runProperties353.Append(fontSizeComplexScript453);
            Text text319 = new Text();
            text319.Text = "Name";

            run338.Append(runProperties353);
            run338.Append(text319);

            paragraph160.Append(paragraphProperties159);
            paragraph160.Append(run338);

            tableCell77.Append(tableCellProperties77);
            tableCell77.Append(paragraph160);

            TableCell tableCell78 = new TableCell();

            TableCellProperties tableCellProperties78 = new TableCellProperties();
            TableCellWidth tableCellWidth78 = new TableCellWidth() { Width = "1153", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders18 = new TableCellBorders();
            TopBorder topBorder21 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder20 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder20 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder20 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders18.Append(topBorder21);
            tableCellBorders18.Append(leftBorder20);
            tableCellBorders18.Append(bottomBorder20);
            tableCellBorders18.Append(rightBorder20);
            Shading shading18 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin2 = new TableCellMargin();
            LeftMargin leftMargin2 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin2 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin2.Append(leftMargin2);
            tableCellMargin2.Append(rightMargin2);

            tableCellProperties78.Append(tableCellWidth78);
            tableCellProperties78.Append(tableCellBorders18);
            tableCellProperties78.Append(shading18);
            tableCellProperties78.Append(tableCellMargin2);

            Paragraph paragraph161 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19BC", TextId = "77777777" };

            ParagraphProperties paragraphProperties160 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties160 = new ParagraphMarkRunProperties();
            RunFonts runFonts452 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold88 = new Bold();
            FontSize fontSize460 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript454 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties160.Append(runFonts452);
            paragraphMarkRunProperties160.Append(bold88);
            paragraphMarkRunProperties160.Append(fontSize460);
            paragraphMarkRunProperties160.Append(fontSizeComplexScript454);

            paragraphProperties160.Append(paragraphMarkRunProperties160);

            Run run339 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties354 = new RunProperties();
            RunFonts runFonts453 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold89 = new Bold();
            FontSize fontSize461 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript455 = new FontSizeComplexScript() { Val = "22" };

            runProperties354.Append(runFonts453);
            runProperties354.Append(bold89);
            runProperties354.Append(fontSize461);
            runProperties354.Append(fontSizeComplexScript455);
            Text text320 = new Text();
            text320.Text = "Type";

            run339.Append(runProperties354);
            run339.Append(text320);

            paragraph161.Append(paragraphProperties160);
            paragraph161.Append(run339);

            tableCell78.Append(tableCellProperties78);
            tableCell78.Append(paragraph161);

            TableCell tableCell79 = new TableCell();

            TableCellProperties tableCellProperties79 = new TableCellProperties();
            TableCellWidth tableCellWidth79 = new TableCellWidth() { Width = "1224", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders19 = new TableCellBorders();
            TopBorder topBorder22 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder21 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder21 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder21 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders19.Append(topBorder22);
            tableCellBorders19.Append(leftBorder21);
            tableCellBorders19.Append(bottomBorder21);
            tableCellBorders19.Append(rightBorder21);
            Shading shading19 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin3 = new TableCellMargin();
            LeftMargin leftMargin3 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin3 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin3.Append(leftMargin3);
            tableCellMargin3.Append(rightMargin3);

            tableCellProperties79.Append(tableCellWidth79);
            tableCellProperties79.Append(tableCellBorders19);
            tableCellProperties79.Append(shading19);
            tableCellProperties79.Append(tableCellMargin3);

            Paragraph paragraph162 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19BD", TextId = "77777777" };

            ParagraphProperties paragraphProperties161 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties161 = new ParagraphMarkRunProperties();
            RunFonts runFonts454 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold90 = new Bold();
            FontSize fontSize462 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript456 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties161.Append(runFonts454);
            paragraphMarkRunProperties161.Append(bold90);
            paragraphMarkRunProperties161.Append(fontSize462);
            paragraphMarkRunProperties161.Append(fontSizeComplexScript456);

            paragraphProperties161.Append(paragraphMarkRunProperties161);

            Run run340 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties355 = new RunProperties();
            RunFonts runFonts455 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold91 = new Bold();
            FontSize fontSize463 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript457 = new FontSizeComplexScript() { Val = "22" };

            runProperties355.Append(runFonts455);
            runProperties355.Append(bold91);
            runProperties355.Append(fontSize463);
            runProperties355.Append(fontSizeComplexScript457);
            Text text321 = new Text();
            text321.Text = "Location";

            run340.Append(runProperties355);
            run340.Append(text321);

            paragraph162.Append(paragraphProperties161);
            paragraph162.Append(run340);

            tableCell79.Append(tableCellProperties79);
            tableCell79.Append(paragraph162);

            TableCell tableCell80 = new TableCell();

            TableCellProperties tableCellProperties80 = new TableCellProperties();
            TableCellWidth tableCellWidth80 = new TableCellWidth() { Width = "1122", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders20 = new TableCellBorders();
            TopBorder topBorder23 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder22 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder22 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder22 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders20.Append(topBorder23);
            tableCellBorders20.Append(leftBorder22);
            tableCellBorders20.Append(bottomBorder22);
            tableCellBorders20.Append(rightBorder22);
            Shading shading20 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin4 = new TableCellMargin();
            LeftMargin leftMargin4 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin4 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin4.Append(leftMargin4);
            tableCellMargin4.Append(rightMargin4);

            tableCellProperties80.Append(tableCellWidth80);
            tableCellProperties80.Append(tableCellBorders20);
            tableCellProperties80.Append(shading20);
            tableCellProperties80.Append(tableCellMargin4);

            Paragraph paragraph163 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19BE", TextId = "77777777" };

            ParagraphProperties paragraphProperties162 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties162 = new ParagraphMarkRunProperties();
            RunFonts runFonts456 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold92 = new Bold();
            FontSize fontSize464 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript458 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties162.Append(runFonts456);
            paragraphMarkRunProperties162.Append(bold92);
            paragraphMarkRunProperties162.Append(fontSize464);
            paragraphMarkRunProperties162.Append(fontSizeComplexScript458);

            paragraphProperties162.Append(paragraphMarkRunProperties162);

            Run run341 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties356 = new RunProperties();
            RunFonts runFonts457 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold93 = new Bold();
            FontSize fontSize465 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript459 = new FontSizeComplexScript() { Val = "22" };

            runProperties356.Append(runFonts457);
            runProperties356.Append(bold93);
            runProperties356.Append(fontSize465);
            runProperties356.Append(fontSizeComplexScript459);
            Text text322 = new Text();
            text322.Text = "Date";

            run341.Append(runProperties356);
            run341.Append(text322);

            paragraph163.Append(paragraphProperties162);
            paragraph163.Append(run341);

            tableCell80.Append(tableCellProperties80);
            tableCell80.Append(paragraph163);

            tableRow15.Append(tableRowProperties15);
            tableRow15.Append(tableCell77);
            tableRow15.Append(tableCell78);
            tableRow15.Append(tableCell79);
            tableRow15.Append(tableCell80);

            TableRow tableRow16 = new TableRow() { RsidTableRowMarkRevision = "00281D13", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC19C4", TextId = "77777777" };

            TableRowProperties tableRowProperties16 = new TableRowProperties();
            TableRowHeight tableRowHeight16 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties16.Append(tableRowHeight16);

            TableCell tableCell81 = new TableCell();

            TableCellProperties tableCellProperties81 = new TableCellProperties();
            TableCellWidth tableCellWidth81 = new TableCellWidth() { Width = "1500", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders21 = new TableCellBorders();
            TopBorder topBorder24 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder23 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder23 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder23 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders21.Append(topBorder24);
            tableCellBorders21.Append(leftBorder23);
            tableCellBorders21.Append(bottomBorder23);
            tableCellBorders21.Append(rightBorder23);
            Shading shading21 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin5 = new TableCellMargin();
            LeftMargin leftMargin5 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin5 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin5.Append(leftMargin5);
            tableCellMargin5.Append(rightMargin5);

            tableCellProperties81.Append(tableCellWidth81);
            tableCellProperties81.Append(tableCellBorders21);
            tableCellProperties81.Append(shading21);
            tableCellProperties81.Append(tableCellMargin5);

            Paragraph paragraph164 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19C0", TextId = "77777777" };

            ParagraphProperties paragraphProperties163 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties163 = new ParagraphMarkRunProperties();
            RunFonts runFonts458 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize466 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript460 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties163.Append(runFonts458);
            paragraphMarkRunProperties163.Append(fontSize466);
            paragraphMarkRunProperties163.Append(fontSizeComplexScript460);

            paragraphProperties163.Append(paragraphMarkRunProperties163);

            Run run342 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties357 = new RunProperties();
            RunFonts runFonts459 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color144 = new Color() { Val = "FF0000" };
            FontSize fontSize467 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript461 = new FontSizeComplexScript() { Val = "22" };

            runProperties357.Append(runFonts459);
            runProperties357.Append(color144);
            runProperties357.Append(fontSize467);
            runProperties357.Append(fontSizeComplexScript461);
            Text text323 = new Text();
            text323.Text = "BJCxxxxxxxx";

            run342.Append(runProperties357);
            run342.Append(text323);

            paragraph164.Append(paragraphProperties163);
            paragraph164.Append(run342);

            tableCell81.Append(tableCellProperties81);
            tableCell81.Append(paragraph164);

            TableCell tableCell82 = new TableCell();

            TableCellProperties tableCellProperties82 = new TableCellProperties();
            TableCellWidth tableCellWidth82 = new TableCellWidth() { Width = "1153", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders22 = new TableCellBorders();
            TopBorder topBorder25 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder24 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder24 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder24 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders22.Append(topBorder25);
            tableCellBorders22.Append(leftBorder24);
            tableCellBorders22.Append(bottomBorder24);
            tableCellBorders22.Append(rightBorder24);
            Shading shading22 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin6 = new TableCellMargin();
            LeftMargin leftMargin6 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin6 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin6.Append(leftMargin6);
            tableCellMargin6.Append(rightMargin6);

            tableCellProperties82.Append(tableCellWidth82);
            tableCellProperties82.Append(tableCellBorders22);
            tableCellProperties82.Append(shading22);
            tableCellProperties82.Append(tableCellMargin6);

            Paragraph paragraph165 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19C1", TextId = "77777777" };

            ParagraphProperties paragraphProperties164 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties164 = new ParagraphMarkRunProperties();
            RunFonts runFonts460 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize468 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript462 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties164.Append(runFonts460);
            paragraphMarkRunProperties164.Append(fontSize468);
            paragraphMarkRunProperties164.Append(fontSizeComplexScript462);

            paragraphProperties164.Append(paragraphMarkRunProperties164);

            paragraph165.Append(paragraphProperties164);

            tableCell82.Append(tableCellProperties82);
            tableCell82.Append(paragraph165);

            TableCell tableCell83 = new TableCell();

            TableCellProperties tableCellProperties83 = new TableCellProperties();
            TableCellWidth tableCellWidth83 = new TableCellWidth() { Width = "1224", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders23 = new TableCellBorders();
            TopBorder topBorder26 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder25 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder25 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder25 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders23.Append(topBorder26);
            tableCellBorders23.Append(leftBorder25);
            tableCellBorders23.Append(bottomBorder25);
            tableCellBorders23.Append(rightBorder25);
            Shading shading23 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin7 = new TableCellMargin();
            LeftMargin leftMargin7 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin7 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin7.Append(leftMargin7);
            tableCellMargin7.Append(rightMargin7);

            tableCellProperties83.Append(tableCellWidth83);
            tableCellProperties83.Append(tableCellBorders23);
            tableCellProperties83.Append(shading23);
            tableCellProperties83.Append(tableCellMargin7);

            Paragraph paragraph166 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19C2", TextId = "77777777" };

            ParagraphProperties paragraphProperties165 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties165 = new ParagraphMarkRunProperties();
            RunFonts runFonts461 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize469 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript463 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties165.Append(runFonts461);
            paragraphMarkRunProperties165.Append(fontSize469);
            paragraphMarkRunProperties165.Append(fontSizeComplexScript463);

            paragraphProperties165.Append(paragraphMarkRunProperties165);

            paragraph166.Append(paragraphProperties165);

            tableCell83.Append(tableCellProperties83);
            tableCell83.Append(paragraph166);

            TableCell tableCell84 = new TableCell();

            TableCellProperties tableCellProperties84 = new TableCellProperties();
            TableCellWidth tableCellWidth84 = new TableCellWidth() { Width = "1122", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders24 = new TableCellBorders();
            TopBorder topBorder27 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder26 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder26 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder26 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders24.Append(topBorder27);
            tableCellBorders24.Append(leftBorder26);
            tableCellBorders24.Append(bottomBorder26);
            tableCellBorders24.Append(rightBorder26);
            Shading shading24 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin8 = new TableCellMargin();
            LeftMargin leftMargin8 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin8 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin8.Append(leftMargin8);
            tableCellMargin8.Append(rightMargin8);

            tableCellProperties84.Append(tableCellWidth84);
            tableCellProperties84.Append(tableCellBorders24);
            tableCellProperties84.Append(shading24);
            tableCellProperties84.Append(tableCellMargin8);

            Paragraph paragraph167 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "003E56F4", ParagraphId = "0AAC19C3", TextId = "429B4472" };

            ParagraphProperties paragraphProperties166 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties166 = new ParagraphMarkRunProperties();
            RunFonts runFonts462 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize470 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript464 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties166.Append(runFonts462);
            paragraphMarkRunProperties166.Append(fontSize470);
            paragraphMarkRunProperties166.Append(fontSizeComplexScript464);

            paragraphProperties166.Append(paragraphMarkRunProperties166);

            Run run343 = new Run();

            RunProperties runProperties358 = new RunProperties();
            RunFonts runFonts463 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color145 = new Color() { Val = "FF0000" };
            FontSize fontSize471 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript465 = new FontSizeComplexScript() { Val = "22" };

            runProperties358.Append(runFonts463);
            runProperties358.Append(color145);
            runProperties358.Append(fontSize471);
            runProperties358.Append(fontSizeComplexScript465);
            Text text324 = new Text();
            text324.Text = "After Go-Live";

            run343.Append(runProperties358);
            run343.Append(text324);

            paragraph167.Append(paragraphProperties166);
            paragraph167.Append(run343);

            tableCell84.Append(tableCellProperties84);
            tableCell84.Append(paragraph167);

            tableRow16.Append(tableRowProperties16);
            tableRow16.Append(tableCell81);
            tableRow16.Append(tableCell82);
            tableRow16.Append(tableCell83);
            tableRow16.Append(tableCell84);

            TableRow tableRow17 = new TableRow() { RsidTableRowMarkRevision = "00281D13", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC19C9", TextId = "77777777" };

            TableRowProperties tableRowProperties17 = new TableRowProperties();
            TableRowHeight tableRowHeight17 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties17.Append(tableRowHeight17);

            TableCell tableCell85 = new TableCell();

            TableCellProperties tableCellProperties85 = new TableCellProperties();
            TableCellWidth tableCellWidth85 = new TableCellWidth() { Width = "1500", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders25 = new TableCellBorders();
            TopBorder topBorder28 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder27 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder27 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder27 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders25.Append(topBorder28);
            tableCellBorders25.Append(leftBorder27);
            tableCellBorders25.Append(bottomBorder27);
            tableCellBorders25.Append(rightBorder27);
            Shading shading25 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin9 = new TableCellMargin();
            LeftMargin leftMargin9 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin9 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin9.Append(leftMargin9);
            tableCellMargin9.Append(rightMargin9);

            tableCellProperties85.Append(tableCellWidth85);
            tableCellProperties85.Append(tableCellBorders25);
            tableCellProperties85.Append(shading25);
            tableCellProperties85.Append(tableCellMargin9);

            Paragraph paragraph168 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19C5", TextId = "77777777" };

            ParagraphProperties paragraphProperties167 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties167 = new ParagraphMarkRunProperties();
            RunFonts runFonts464 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize472 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript466 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties167.Append(runFonts464);
            paragraphMarkRunProperties167.Append(fontSize472);
            paragraphMarkRunProperties167.Append(fontSizeComplexScript466);

            paragraphProperties167.Append(paragraphMarkRunProperties167);

            paragraph168.Append(paragraphProperties167);

            tableCell85.Append(tableCellProperties85);
            tableCell85.Append(paragraph168);

            TableCell tableCell86 = new TableCell();

            TableCellProperties tableCellProperties86 = new TableCellProperties();
            TableCellWidth tableCellWidth86 = new TableCellWidth() { Width = "1153", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders26 = new TableCellBorders();
            TopBorder topBorder29 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder28 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder28 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder28 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders26.Append(topBorder29);
            tableCellBorders26.Append(leftBorder28);
            tableCellBorders26.Append(bottomBorder28);
            tableCellBorders26.Append(rightBorder28);
            Shading shading26 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin10 = new TableCellMargin();
            LeftMargin leftMargin10 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin10 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin10.Append(leftMargin10);
            tableCellMargin10.Append(rightMargin10);

            tableCellProperties86.Append(tableCellWidth86);
            tableCellProperties86.Append(tableCellBorders26);
            tableCellProperties86.Append(shading26);
            tableCellProperties86.Append(tableCellMargin10);

            Paragraph paragraph169 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19C6", TextId = "77777777" };

            ParagraphProperties paragraphProperties168 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties168 = new ParagraphMarkRunProperties();
            RunFonts runFonts465 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize473 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript467 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties168.Append(runFonts465);
            paragraphMarkRunProperties168.Append(fontSize473);
            paragraphMarkRunProperties168.Append(fontSizeComplexScript467);

            paragraphProperties168.Append(paragraphMarkRunProperties168);

            paragraph169.Append(paragraphProperties168);

            tableCell86.Append(tableCellProperties86);
            tableCell86.Append(paragraph169);

            TableCell tableCell87 = new TableCell();

            TableCellProperties tableCellProperties87 = new TableCellProperties();
            TableCellWidth tableCellWidth87 = new TableCellWidth() { Width = "1224", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders27 = new TableCellBorders();
            TopBorder topBorder30 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder29 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder29 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder29 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders27.Append(topBorder30);
            tableCellBorders27.Append(leftBorder29);
            tableCellBorders27.Append(bottomBorder29);
            tableCellBorders27.Append(rightBorder29);
            Shading shading27 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin11 = new TableCellMargin();
            LeftMargin leftMargin11 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin11 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin11.Append(leftMargin11);
            tableCellMargin11.Append(rightMargin11);

            tableCellProperties87.Append(tableCellWidth87);
            tableCellProperties87.Append(tableCellBorders27);
            tableCellProperties87.Append(shading27);
            tableCellProperties87.Append(tableCellMargin11);

            Paragraph paragraph170 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19C7", TextId = "77777777" };

            ParagraphProperties paragraphProperties169 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties169 = new ParagraphMarkRunProperties();
            RunFonts runFonts466 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize474 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript468 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties169.Append(runFonts466);
            paragraphMarkRunProperties169.Append(fontSize474);
            paragraphMarkRunProperties169.Append(fontSizeComplexScript468);

            paragraphProperties169.Append(paragraphMarkRunProperties169);

            paragraph170.Append(paragraphProperties169);

            tableCell87.Append(tableCellProperties87);
            tableCell87.Append(paragraph170);

            TableCell tableCell88 = new TableCell();

            TableCellProperties tableCellProperties88 = new TableCellProperties();
            TableCellWidth tableCellWidth88 = new TableCellWidth() { Width = "1122", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders28 = new TableCellBorders();
            TopBorder topBorder31 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder30 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder30 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder30 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders28.Append(topBorder31);
            tableCellBorders28.Append(leftBorder30);
            tableCellBorders28.Append(bottomBorder30);
            tableCellBorders28.Append(rightBorder30);
            Shading shading28 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin12 = new TableCellMargin();
            LeftMargin leftMargin12 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin12 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin12.Append(leftMargin12);
            tableCellMargin12.Append(rightMargin12);

            tableCellProperties88.Append(tableCellWidth88);
            tableCellProperties88.Append(tableCellBorders28);
            tableCellProperties88.Append(shading28);
            tableCellProperties88.Append(tableCellMargin12);

            Paragraph paragraph171 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC19C8", TextId = "77777777" };

            ParagraphProperties paragraphProperties170 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties170 = new ParagraphMarkRunProperties();
            RunFonts runFonts467 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize475 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript469 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties170.Append(runFonts467);
            paragraphMarkRunProperties170.Append(fontSize475);
            paragraphMarkRunProperties170.Append(fontSizeComplexScript469);

            paragraphProperties170.Append(paragraphMarkRunProperties170);

            paragraph171.Append(paragraphProperties170);

            tableCell88.Append(tableCellProperties88);
            tableCell88.Append(paragraph171);

            tableRow17.Append(tableRowProperties17);
            tableRow17.Append(tableCell85);
            tableRow17.Append(tableCell86);
            tableRow17.Append(tableCell87);
            tableRow17.Append(tableCell88);

            table4.Append(tableProperties4);
            table4.Append(tableGrid4);
            table4.Append(tableRow15);
            table4.Append(tableRow16);
            table4.Append(tableRow17);

            Paragraph paragraph172 = new Paragraph() { RsidParagraphAddition = "00BF26D7", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC19CF", TextId = "58BF4DE5" };

            ParagraphProperties paragraphProperties171 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId15 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties171 = new ParagraphMarkRunProperties();
            Underline underline46 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties171.Append(underline46);

            paragraphProperties171.Append(paragraphStyleId15);
            paragraphProperties171.Append(paragraphMarkRunProperties171);

            Run run344 = new Run();

            RunProperties runProperties359 = new RunProperties();
            Underline underline47 = new Underline() { Val = UnderlineValues.Single };

            runProperties359.Append(underline47);
            LastRenderedPageBreak lastRenderedPageBreak4 = new LastRenderedPageBreak();
            Text text325 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text325.Text = "11. ";

            run344.Append(runProperties359);
            run344.Append(lastRenderedPageBreak4);
            run344.Append(text325);

            Run run345 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00116831" };

            RunProperties runProperties360 = new RunProperties();
            Underline underline48 = new Underline() { Val = UnderlineValues.Single };

            runProperties360.Append(underline48);
            Text text326 = new Text();
            text326.Text = "Network";

            run345.Append(runProperties360);
            run345.Append(text326);

            Run run346 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties361 = new RunProperties();
            Color color146 = new Color() { Val = "FF0000" };
            Underline underline49 = new Underline() { Val = UnderlineValues.Single };

            runProperties361.Append(color146);
            runProperties361.Append(underline49);
            Text text327 = new Text();
            text327.Text = ": N/A";

            run346.Append(runProperties361);
            run346.Append(text327);

            paragraph172.Append(paragraphProperties171);
            paragraph172.Append(run344);
            paragraph172.Append(run345);
            paragraph172.Append(run346);

            Paragraph paragraph173 = new Paragraph() { RsidParagraphAddition = "003A7AC6", RsidParagraphProperties = "003A7AC6", RsidRunAdditionDefault = "00697199", ParagraphId = "3D38A7A5", TextId = "6758EF29" };

            Run run347 = new Run();
            Text text328 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text328.Text = "Server ";

            run347.Append(text328);

            Run run348 = new Run() { RsidRunAddition = "003A7AC6" };
            Text text329 = new Text();
            text329.Text = "VLAN";

            run348.Append(text329);

            paragraph173.Append(run347);
            paragraph173.Append(run348);

            Paragraph paragraph174 = new Paragraph() { RsidParagraphAddition = "003A7AC6", RsidParagraphProperties = "003A7AC6", RsidRunAdditionDefault = "00697199", ParagraphId = "41843E7B", TextId = "59DBE091" };

            Run run349 = new Run();
            Text text330 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text330.Text = "Server ";

            run349.Append(text330);

            Run run350 = new Run() { RsidRunAddition = "003A7AC6" };
            Text text331 = new Text();
            text331.Text = "MGMT VLAN";

            run350.Append(text331);

            paragraph174.Append(run349);
            paragraph174.Append(run350);

            Paragraph paragraph175 = new Paragraph() { RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1A51", TextId = "7320FD08" };

            ParagraphProperties paragraphProperties172 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId16 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties172 = new ParagraphMarkRunProperties();
            Color color147 = new Color() { Val = "FF0000" };
            Underline underline50 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties172.Append(color147);
            paragraphMarkRunProperties172.Append(underline50);

            paragraphProperties172.Append(paragraphStyleId16);
            paragraphProperties172.Append(paragraphMarkRunProperties172);
            BookmarkStart bookmarkStart3 = new BookmarkStart() { Name = "_Toc316382780", Id = "2" };
            BookmarkEnd bookmarkEnd2 = new BookmarkEnd() { Id = "1" };

            Run run351 = new Run();

            RunProperties runProperties362 = new RunProperties();
            Underline underline51 = new Underline() { Val = UnderlineValues.Single };

            runProperties362.Append(underline51);
            Text text332 = new Text();
            text332.Text = "1";

            run351.Append(runProperties362);
            run351.Append(text332);

            Run run352 = new Run() { RsidRunAddition = "002B0580" };

            RunProperties runProperties363 = new RunProperties();
            Underline underline52 = new Underline() { Val = UnderlineValues.Single };

            runProperties363.Append(underline52);
            Text text333 = new Text();
            text333.Text = "2";

            run352.Append(runProperties363);
            run352.Append(text333);

            Run run353 = new Run();

            RunProperties runProperties364 = new RunProperties();
            Underline underline53 = new Underline() { Val = UnderlineValues.Single };

            runProperties364.Append(underline53);
            Text text334 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text334.Text = ". ";

            run353.Append(runProperties364);
            run353.Append(text334);

            Run run354 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00116831" };

            RunProperties runProperties365 = new RunProperties();
            Underline underline54 = new Underline() { Val = UnderlineValues.Single };

            runProperties365.Append(underline54);
            Text text335 = new Text();
            text335.Text = "DB Version and Service Pack";

            run354.Append(runProperties365);
            run354.Append(text335);

            Run run355 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00BF26D7" };

            RunProperties runProperties366 = new RunProperties();
            Underline underline55 = new Underline() { Val = UnderlineValues.Single };

            runProperties366.Append(underline55);
            Text text336 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text336.Text = " Standards";

            run355.Append(runProperties366);
            run355.Append(text336);

            Run run356 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties367 = new RunProperties();
            Color color148 = new Color() { Val = "FF0000" };
            Underline underline56 = new Underline() { Val = UnderlineValues.Single };

            runProperties367.Append(color148);
            runProperties367.Append(underline56);
            Text text337 = new Text();
            text337.Text = ": N/A";

            run356.Append(runProperties367);
            run356.Append(text337);

            paragraph175.Append(paragraphProperties172);
            paragraph175.Append(bookmarkStart3);
            paragraph175.Append(bookmarkEnd2);
            paragraph175.Append(run351);
            paragraph175.Append(run352);
            paragraph175.Append(run353);
            paragraph175.Append(run354);
            paragraph175.Append(run355);
            paragraph175.Append(run356);

            Paragraph paragraph176 = new Paragraph() { RsidParagraphMarkRevision = "00624202", RsidParagraphAddition = "00624202", RsidParagraphProperties = "00624202", RsidRunAdditionDefault = "00697199", ParagraphId = "3B036754", TextId = "056BE231" };

            ParagraphProperties paragraphProperties173 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties173 = new ParagraphMarkRunProperties();
            RunFonts runFonts468 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color149 = new Color() { Val = "FF0000" };
            FontSize fontSize476 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript470 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties173.Append(runFonts468);
            paragraphMarkRunProperties173.Append(color149);
            paragraphMarkRunProperties173.Append(fontSize476);
            paragraphMarkRunProperties173.Append(fontSizeComplexScript470);

            paragraphProperties173.Append(paragraphMarkRunProperties173);

            Run run357 = new Run() { RsidRunProperties = "00697199" };

            RunProperties runProperties368 = new RunProperties();
            RunFonts runFonts469 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold94 = new Bold();
            Color color150 = new Color() { Val = "FF0000" };
            FontSize fontSize477 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript471 = new FontSizeComplexScript() { Val = "22" };
            Underline underline57 = new Underline() { Val = UnderlineValues.Single };

            runProperties368.Append(runFonts469);
            runProperties368.Append(bold94);
            runProperties368.Append(color150);
            runProperties368.Append(fontSize477);
            runProperties368.Append(fontSizeComplexScript471);
            runProperties368.Append(underline57);
            Text text338 = new Text();
            text338.Text = "SQL 2012 is preffered.";

            run357.Append(runProperties368);
            run357.Append(text338);

            Run run358 = new Run();

            RunProperties runProperties369 = new RunProperties();
            RunFonts runFonts470 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color151 = new Color() { Val = "FF0000" };
            FontSize fontSize478 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript472 = new FontSizeComplexScript() { Val = "22" };

            runProperties369.Append(runFonts470);
            runProperties369.Append(color151);
            runProperties369.Append(fontSize478);
            runProperties369.Append(fontSizeComplexScript472);
            Text text339 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text339.Text = "  ";

            run358.Append(runProperties369);
            run358.Append(text339);

            Run run359 = new Run() { RsidRunAddition = "00624202" };

            RunProperties runProperties370 = new RunProperties();
            RunFonts runFonts471 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color152 = new Color() { Val = "FF0000" };
            FontSize fontSize479 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript473 = new FontSizeComplexScript() { Val = "22" };

            runProperties370.Append(runFonts471);
            runProperties370.Append(color152);
            runProperties370.Append(fontSize479);
            runProperties370.Append(fontSizeComplexScript473);
            Text text340 = new Text();
            text340.Text = "Any requests older than SQL 2008r2";

            run359.Append(runProperties370);
            run359.Append(text340);

            Run run360 = new Run();

            RunProperties runProperties371 = new RunProperties();
            RunFonts runFonts472 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color153 = new Color() { Val = "FF0000" };
            FontSize fontSize480 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript474 = new FontSizeComplexScript() { Val = "22" };

            runProperties371.Append(runFonts472);
            runProperties371.Append(color153);
            runProperties371.Append(fontSize480);
            runProperties371.Append(fontSizeComplexScript474);
            Text text341 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text341.Text = " or a 32 bit version";

            run360.Append(runProperties371);
            run360.Append(text341);

            Run run361 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00624202" };

            RunProperties runProperties372 = new RunProperties();
            RunFonts runFonts473 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color154 = new Color() { Val = "FF0000" };
            FontSize fontSize481 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript475 = new FontSizeComplexScript() { Val = "22" };

            runProperties372.Append(runFonts473);
            runProperties372.Append(color154);
            runProperties372.Append(fontSize481);
            runProperties372.Append(fontSizeComplexScript475);
            Text text342 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text342.Text = " will require";

            run361.Append(runProperties372);
            run361.Append(text342);

            Run run362 = new Run() { RsidRunAddition = "00624202" };

            RunProperties runProperties373 = new RunProperties();
            RunFonts runFonts474 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color155 = new Color() { Val = "FF0000" };
            FontSize fontSize482 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript476 = new FontSizeComplexScript() { Val = "22" };

            runProperties373.Append(runFonts474);
            runProperties373.Append(color155);
            runProperties373.Append(fontSize482);
            runProperties373.Append(fontSizeComplexScript476);
            Text text343 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text343.Text = " a conversation with Standards";

            run362.Append(runProperties373);
            run362.Append(text343);

            Run run363 = new Run();

            RunProperties runProperties374 = new RunProperties();
            RunFonts runFonts475 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color156 = new Color() { Val = "FF0000" };
            FontSize fontSize483 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript477 = new FontSizeComplexScript() { Val = "22" };

            runProperties374.Append(runFonts475);
            runProperties374.Append(color156);
            runProperties374.Append(fontSize483);
            runProperties374.Append(fontSizeComplexScript477);
            Text text344 = new Text();
            text344.Text = ".";

            run363.Append(runProperties374);
            run363.Append(text344);

            paragraph176.Append(paragraphProperties173);
            paragraph176.Append(run357);
            paragraph176.Append(run358);
            paragraph176.Append(run359);
            paragraph176.Append(run360);
            paragraph176.Append(run361);
            paragraph176.Append(run362);
            paragraph176.Append(run363);

            Paragraph paragraph177 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00EE5D41", RsidParagraphProperties = "00EE5D41", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1A52", TextId = "77777777" };

            ParagraphProperties paragraphProperties174 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties174 = new ParagraphMarkRunProperties();
            RunFonts runFonts476 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize484 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript478 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties174.Append(runFonts476);
            paragraphMarkRunProperties174.Append(fontSize484);
            paragraphMarkRunProperties174.Append(fontSizeComplexScript478);

            paragraphProperties174.Append(paragraphMarkRunProperties174);

            SdtRun sdtRun19 = new SdtRun();

            SdtProperties sdtProperties19 = new SdtProperties();

            RunProperties runProperties375 = new RunProperties();
            RunFonts runFonts477 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize485 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript479 = new FontSizeComplexScript() { Val = "22" };

            runProperties375.Append(runFonts477);
            runProperties375.Append(fontSize485);
            runProperties375.Append(fontSizeComplexScript479);
            SdtId sdtId19 = new SdtId() { Val = 711304974 };

            W14.SdtContentCheckBox sdtContentCheckBox19 = new W14.SdtContentCheckBox();
            W14.Checked checked19 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState19 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState19 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox19.Append(checked19);
            sdtContentCheckBox19.Append(checkedState19);
            sdtContentCheckBox19.Append(uncheckedState19);

            sdtProperties19.Append(runProperties375);
            sdtProperties19.Append(sdtId19);
            sdtProperties19.Append(sdtContentCheckBox19);
            SdtEndCharProperties sdtEndCharProperties19 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun19 = new SdtContentRun();

            Run run364 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties376 = new RunProperties();
            RunFonts runFonts478 = new RunFonts() { Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize486 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript480 = new FontSizeComplexScript() { Val = "22" };

            runProperties376.Append(runFonts478);
            runProperties376.Append(fontSize486);
            runProperties376.Append(fontSizeComplexScript480);
            Text text345 = new Text();
            text345.Text = "☐";

            run364.Append(runProperties376);
            run364.Append(text345);

            sdtContentRun19.Append(run364);

            sdtRun19.Append(sdtProperties19);
            sdtRun19.Append(sdtEndCharProperties19);
            sdtRun19.Append(sdtContentRun19);

            Run run365 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties377 = new RunProperties();
            RunFonts runFonts479 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize487 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript481 = new FontSizeComplexScript() { Val = "22" };

            runProperties377.Append(runFonts479);
            runProperties377.Append(fontSize487);
            runProperties377.Append(fontSizeComplexScript481);
            Text text346 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text346.Text = "  ";

            run365.Append(runProperties377);
            run365.Append(text346);

            Run run366 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00EE5D41" };

            RunProperties runProperties378 = new RunProperties();
            RunFonts runFonts480 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize488 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript482 = new FontSizeComplexScript() { Val = "22" };

            runProperties378.Append(runFonts480);
            runProperties378.Append(fontSize488);
            runProperties378.Append(fontSizeComplexScript482);
            Text text347 = new Text();
            text347.Text = "SQl 2012";

            run366.Append(runProperties378);
            run366.Append(text347);

            paragraph177.Append(paragraphProperties174);
            paragraph177.Append(sdtRun19);
            paragraph177.Append(run365);
            paragraph177.Append(run366);

            Paragraph paragraph178 = new Paragraph() { RsidParagraphMarkRevision = "0027287B", RsidParagraphAddition = "00F97B58", RsidParagraphProperties = "00F97B58", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A53", TextId = "77777777" };

            ParagraphProperties paragraphProperties175 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties175 = new ParagraphMarkRunProperties();
            RunFonts runFonts481 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize489 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript483 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties175.Append(runFonts481);
            paragraphMarkRunProperties175.Append(fontSize489);
            paragraphMarkRunProperties175.Append(fontSizeComplexScript483);

            paragraphProperties175.Append(paragraphMarkRunProperties175);

            Run run367 = new Run() { RsidRunProperties = "0027287B" };

            RunProperties runProperties379 = new RunProperties();
            RunFonts runFonts482 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize490 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript484 = new FontSizeComplexScript() { Val = "22" };

            runProperties379.Append(runFonts482);
            runProperties379.Append(fontSize490);
            runProperties379.Append(fontSizeComplexScript484);
            TabChar tabChar24 = new TabChar();

            run367.Append(runProperties379);
            run367.Append(tabChar24);

            SdtRun sdtRun20 = new SdtRun();

            SdtProperties sdtProperties20 = new SdtProperties();

            RunProperties runProperties380 = new RunProperties();
            RunFonts runFonts483 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize491 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript485 = new FontSizeComplexScript() { Val = "22" };

            runProperties380.Append(runFonts483);
            runProperties380.Append(fontSize491);
            runProperties380.Append(fontSizeComplexScript485);
            SdtId sdtId20 = new SdtId() { Val = 567079027 };

            W14.SdtContentCheckBox sdtContentCheckBox20 = new W14.SdtContentCheckBox();
            W14.Checked checked20 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState20 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState20 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox20.Append(checked20);
            sdtContentCheckBox20.Append(checkedState20);
            sdtContentCheckBox20.Append(uncheckedState20);

            sdtProperties20.Append(runProperties380);
            sdtProperties20.Append(sdtId20);
            sdtProperties20.Append(sdtContentCheckBox20);
            SdtEndCharProperties sdtEndCharProperties20 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun20 = new SdtContentRun();

            Run run368 = new Run() { RsidRunProperties = "0027287B" };

            RunProperties runProperties381 = new RunProperties();
            RunFonts runFonts484 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize492 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript486 = new FontSizeComplexScript() { Val = "22" };

            runProperties381.Append(runFonts484);
            runProperties381.Append(fontSize492);
            runProperties381.Append(fontSizeComplexScript486);
            Text text348 = new Text();
            text348.Text = "☐";

            run368.Append(runProperties381);
            run368.Append(text348);

            sdtContentRun20.Append(run368);

            sdtRun20.Append(sdtProperties20);
            sdtRun20.Append(sdtEndCharProperties20);
            sdtRun20.Append(sdtContentRun20);

            Run run369 = new Run() { RsidRunProperties = "0027287B" };

            RunProperties runProperties382 = new RunProperties();
            RunFonts runFonts485 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize493 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript487 = new FontSizeComplexScript() { Val = "22" };

            runProperties382.Append(runFonts485);
            runProperties382.Append(fontSize493);
            runProperties382.Append(fontSizeComplexScript487);
            Text text349 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text349.Text = "  Standard";

            run369.Append(runProperties382);
            run369.Append(text349);

            paragraph178.Append(paragraphProperties175);
            paragraph178.Append(run367);
            paragraph178.Append(sdtRun20);
            paragraph178.Append(run369);

            Paragraph paragraph179 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F97B58", RsidParagraphProperties = "00F97B58", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A54", TextId = "77777777" };

            ParagraphProperties paragraphProperties176 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties176 = new ParagraphMarkRunProperties();
            RunFonts runFonts486 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize494 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript488 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties176.Append(runFonts486);
            paragraphMarkRunProperties176.Append(fontSize494);
            paragraphMarkRunProperties176.Append(fontSizeComplexScript488);

            paragraphProperties176.Append(paragraphMarkRunProperties176);

            Run run370 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties383 = new RunProperties();
            RunFonts runFonts487 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize495 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript489 = new FontSizeComplexScript() { Val = "22" };

            runProperties383.Append(runFonts487);
            runProperties383.Append(fontSize495);
            runProperties383.Append(fontSizeComplexScript489);
            TabChar tabChar25 = new TabChar();

            run370.Append(runProperties383);
            run370.Append(tabChar25);

            SdtRun sdtRun21 = new SdtRun();

            SdtProperties sdtProperties21 = new SdtProperties();

            RunProperties runProperties384 = new RunProperties();
            RunFonts runFonts488 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize496 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript490 = new FontSizeComplexScript() { Val = "22" };

            runProperties384.Append(runFonts488);
            runProperties384.Append(fontSize496);
            runProperties384.Append(fontSizeComplexScript490);
            SdtId sdtId21 = new SdtId() { Val = -406299043 };

            W14.SdtContentCheckBox sdtContentCheckBox21 = new W14.SdtContentCheckBox();
            W14.Checked checked21 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState21 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState21 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox21.Append(checked21);
            sdtContentCheckBox21.Append(checkedState21);
            sdtContentCheckBox21.Append(uncheckedState21);

            sdtProperties21.Append(runProperties384);
            sdtProperties21.Append(sdtId21);
            sdtProperties21.Append(sdtContentCheckBox21);
            SdtEndCharProperties sdtEndCharProperties21 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun21 = new SdtContentRun();

            Run run371 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties385 = new RunProperties();
            RunFonts runFonts489 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize497 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript491 = new FontSizeComplexScript() { Val = "22" };

            runProperties385.Append(runFonts489);
            runProperties385.Append(fontSize497);
            runProperties385.Append(fontSizeComplexScript491);
            Text text350 = new Text();
            text350.Text = "☐";

            run371.Append(runProperties385);
            run371.Append(text350);

            sdtContentRun21.Append(run371);

            sdtRun21.Append(sdtProperties21);
            sdtRun21.Append(sdtEndCharProperties21);
            sdtRun21.Append(sdtContentRun21);

            Run run372 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties386 = new RunProperties();
            RunFonts runFonts490 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize498 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript492 = new FontSizeComplexScript() { Val = "22" };

            runProperties386.Append(runFonts490);
            runProperties386.Append(fontSize498);
            runProperties386.Append(fontSizeComplexScript492);
            Text text351 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text351.Text = "  Enterprise";

            run372.Append(runProperties386);
            run372.Append(text351);

            paragraph179.Append(paragraphProperties176);
            paragraph179.Append(run370);
            paragraph179.Append(sdtRun21);
            paragraph179.Append(run372);

            Paragraph paragraph180 = new Paragraph() { RsidParagraphAddition = "00104E8D", RsidParagraphProperties = "00104E8D", RsidRunAdditionDefault = "00A563A2", ParagraphId = "415F9999", TextId = "77777777" };

            ParagraphProperties paragraphProperties177 = new ParagraphProperties();
            Indentation indentation18 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties177 = new ParagraphMarkRunProperties();
            RunFonts runFonts491 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize499 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript493 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties177.Append(runFonts491);
            paragraphMarkRunProperties177.Append(fontSize499);
            paragraphMarkRunProperties177.Append(fontSizeComplexScript493);

            paragraphProperties177.Append(indentation18);
            paragraphProperties177.Append(paragraphMarkRunProperties177);

            SdtRun sdtRun22 = new SdtRun();

            SdtProperties sdtProperties22 = new SdtProperties();

            RunProperties runProperties387 = new RunProperties();
            RunFonts runFonts492 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize500 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript494 = new FontSizeComplexScript() { Val = "22" };

            runProperties387.Append(runFonts492);
            runProperties387.Append(fontSize500);
            runProperties387.Append(fontSizeComplexScript494);
            SdtId sdtId22 = new SdtId() { Val = -1295912154 };

            W14.SdtContentCheckBox sdtContentCheckBox22 = new W14.SdtContentCheckBox();
            W14.Checked checked22 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState22 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState22 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox22.Append(checked22);
            sdtContentCheckBox22.Append(checkedState22);
            sdtContentCheckBox22.Append(uncheckedState22);

            sdtProperties22.Append(runProperties387);
            sdtProperties22.Append(sdtId22);
            sdtProperties22.Append(sdtContentCheckBox22);
            SdtEndCharProperties sdtEndCharProperties22 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun22 = new SdtContentRun();

            Run run373 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00104E8D" };

            RunProperties runProperties388 = new RunProperties();
            RunFonts runFonts493 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize501 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript495 = new FontSizeComplexScript() { Val = "22" };

            runProperties388.Append(runFonts493);
            runProperties388.Append(fontSize501);
            runProperties388.Append(fontSizeComplexScript495);
            Text text352 = new Text();
            text352.Text = "☐";

            run373.Append(runProperties388);
            run373.Append(text352);

            sdtContentRun22.Append(run373);

            sdtRun22.Append(sdtProperties22);
            sdtRun22.Append(sdtEndCharProperties22);
            sdtRun22.Append(sdtContentRun22);

            Run run374 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00104E8D" };

            RunProperties runProperties389 = new RunProperties();
            RunFonts runFonts494 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize502 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript496 = new FontSizeComplexScript() { Val = "22" };

            runProperties389.Append(runFonts494);
            runProperties389.Append(fontSize502);
            runProperties389.Append(fontSizeComplexScript496);
            Text text353 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text353.Text = "  SP1";

            run374.Append(runProperties389);
            run374.Append(text353);

            paragraph180.Append(paragraphProperties177);
            paragraph180.Append(sdtRun22);
            paragraph180.Append(run374);

            Paragraph paragraph181 = new Paragraph() { RsidParagraphAddition = "00104E8D", RsidParagraphProperties = "00104E8D", RsidRunAdditionDefault = "00A563A2", ParagraphId = "4720AB3A", TextId = "100DA4D7" };

            ParagraphProperties paragraphProperties178 = new ParagraphProperties();
            Indentation indentation19 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties178 = new ParagraphMarkRunProperties();
            RunFonts runFonts495 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize503 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript497 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties178.Append(runFonts495);
            paragraphMarkRunProperties178.Append(fontSize503);
            paragraphMarkRunProperties178.Append(fontSizeComplexScript497);

            paragraphProperties178.Append(indentation19);
            paragraphProperties178.Append(paragraphMarkRunProperties178);

            SdtRun sdtRun23 = new SdtRun();

            SdtProperties sdtProperties23 = new SdtProperties();

            RunProperties runProperties390 = new RunProperties();
            RunFonts runFonts496 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize504 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript498 = new FontSizeComplexScript() { Val = "22" };

            runProperties390.Append(runFonts496);
            runProperties390.Append(fontSize504);
            runProperties390.Append(fontSizeComplexScript498);
            SdtId sdtId23 = new SdtId() { Val = 726494228 };

            W14.SdtContentCheckBox sdtContentCheckBox23 = new W14.SdtContentCheckBox();
            W14.Checked checked23 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState23 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState23 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox23.Append(checked23);
            sdtContentCheckBox23.Append(checkedState23);
            sdtContentCheckBox23.Append(uncheckedState23);

            sdtProperties23.Append(runProperties390);
            sdtProperties23.Append(sdtId23);
            sdtProperties23.Append(sdtContentCheckBox23);
            SdtEndCharProperties sdtEndCharProperties23 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun23 = new SdtContentRun();

            Run run375 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00104E8D" };

            RunProperties runProperties391 = new RunProperties();
            RunFonts runFonts497 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize505 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript499 = new FontSizeComplexScript() { Val = "22" };

            runProperties391.Append(runFonts497);
            runProperties391.Append(fontSize505);
            runProperties391.Append(fontSizeComplexScript499);
            Text text354 = new Text();
            text354.Text = "☐";

            run375.Append(runProperties391);
            run375.Append(text354);

            sdtContentRun23.Append(run375);

            sdtRun23.Append(sdtProperties23);
            sdtRun23.Append(sdtEndCharProperties23);
            sdtRun23.Append(sdtContentRun23);

            Run run376 = new Run() { RsidRunAddition = "00104E8D" };

            RunProperties runProperties392 = new RunProperties();
            RunFonts runFonts498 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize506 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript500 = new FontSizeComplexScript() { Val = "22" };

            runProperties392.Append(runFonts498);
            runProperties392.Append(fontSize506);
            runProperties392.Append(fontSizeComplexScript500);
            Text text355 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text355.Text = "  SP2";

            run376.Append(runProperties392);
            run376.Append(text355);

            paragraph181.Append(paragraphProperties178);
            paragraph181.Append(sdtRun23);
            paragraph181.Append(run376);

            Paragraph paragraph182 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00F12AD5", RsidRunAdditionDefault = "00A563A2", ParagraphId = "5F8147AD", TextId = "4AEDEFDF" };

            ParagraphProperties paragraphProperties179 = new ParagraphProperties();
            Indentation indentation20 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties179 = new ParagraphMarkRunProperties();
            RunFonts runFonts499 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize507 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript501 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties179.Append(runFonts499);
            paragraphMarkRunProperties179.Append(fontSize507);
            paragraphMarkRunProperties179.Append(fontSizeComplexScript501);

            paragraphProperties179.Append(indentation20);
            paragraphProperties179.Append(paragraphMarkRunProperties179);

            SdtRun sdtRun24 = new SdtRun();

            SdtProperties sdtProperties24 = new SdtProperties();

            RunProperties runProperties393 = new RunProperties();
            RunFonts runFonts500 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize508 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript502 = new FontSizeComplexScript() { Val = "22" };

            runProperties393.Append(runFonts500);
            runProperties393.Append(fontSize508);
            runProperties393.Append(fontSizeComplexScript502);
            SdtId sdtId24 = new SdtId() { Val = -871382545 };

            W14.SdtContentCheckBox sdtContentCheckBox24 = new W14.SdtContentCheckBox();
            W14.Checked checked24 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState24 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState24 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox24.Append(checked24);
            sdtContentCheckBox24.Append(checkedState24);
            sdtContentCheckBox24.Append(uncheckedState24);

            sdtProperties24.Append(runProperties393);
            sdtProperties24.Append(sdtId24);
            sdtProperties24.Append(sdtContentCheckBox24);
            SdtEndCharProperties sdtEndCharProperties24 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun24 = new SdtContentRun();

            Run run377 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00697199" };

            RunProperties runProperties394 = new RunProperties();
            RunFonts runFonts501 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize509 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript503 = new FontSizeComplexScript() { Val = "22" };

            runProperties394.Append(runFonts501);
            runProperties394.Append(fontSize509);
            runProperties394.Append(fontSizeComplexScript503);
            Text text356 = new Text();
            text356.Text = "☐";

            run377.Append(runProperties394);
            run377.Append(text356);

            sdtContentRun24.Append(run377);

            sdtRun24.Append(sdtProperties24);
            sdtRun24.Append(sdtEndCharProperties24);
            sdtRun24.Append(sdtContentRun24);

            Run run378 = new Run() { RsidRunAddition = "00697199" };

            RunProperties runProperties395 = new RunProperties();
            RunFonts runFonts502 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize510 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript504 = new FontSizeComplexScript() { Val = "22" };

            runProperties395.Append(runFonts502);
            runProperties395.Append(fontSize510);
            runProperties395.Append(fontSizeComplexScript504);
            Text text357 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text357.Text = "  Always-On";

            run378.Append(runProperties395);
            run378.Append(text357);

            Run run379 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties396 = new RunProperties();
            RunFonts runFonts503 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize511 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript505 = new FontSizeComplexScript() { Val = "22" };

            runProperties396.Append(runFonts503);
            runProperties396.Append(fontSize511);
            runProperties396.Append(fontSizeComplexScript505);
            TabChar tabChar26 = new TabChar();

            run379.Append(runProperties396);
            run379.Append(tabChar26);

            Run run380 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties397 = new RunProperties();
            RunFonts runFonts504 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize512 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript506 = new FontSizeComplexScript() { Val = "22" };

            runProperties397.Append(runFonts504);
            runProperties397.Append(fontSize512);
            runProperties397.Append(fontSizeComplexScript506);
            TabChar tabChar27 = new TabChar();

            run380.Append(runProperties397);
            run380.Append(tabChar27);

            SdtRun sdtRun25 = new SdtRun();

            SdtProperties sdtProperties25 = new SdtProperties();

            RunProperties runProperties398 = new RunProperties();
            RunFonts runFonts505 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize513 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript507 = new FontSizeComplexScript() { Val = "22" };

            runProperties398.Append(runFonts505);
            runProperties398.Append(fontSize513);
            runProperties398.Append(fontSizeComplexScript507);
            SdtId sdtId25 = new SdtId() { Val = 197593525 };

            W14.SdtContentCheckBox sdtContentCheckBox25 = new W14.SdtContentCheckBox();
            W14.Checked checked25 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState25 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState25 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox25.Append(checked25);
            sdtContentCheckBox25.Append(checkedState25);
            sdtContentCheckBox25.Append(uncheckedState25);

            sdtProperties25.Append(runProperties398);
            sdtProperties25.Append(sdtId25);
            sdtProperties25.Append(sdtContentCheckBox25);
            SdtEndCharProperties sdtEndCharProperties25 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun25 = new SdtContentRun();

            Run run381 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F12AD5" };

            RunProperties runProperties399 = new RunProperties();
            RunFonts runFonts506 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize514 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript508 = new FontSizeComplexScript() { Val = "22" };

            runProperties399.Append(runFonts506);
            runProperties399.Append(fontSize514);
            runProperties399.Append(fontSizeComplexScript508);
            Text text358 = new Text();
            text358.Text = "☐";

            run381.Append(runProperties399);
            run381.Append(text358);

            sdtContentRun25.Append(run381);

            sdtRun25.Append(sdtProperties25);
            sdtRun25.Append(sdtEndCharProperties25);
            sdtRun25.Append(sdtContentRun25);

            Run run382 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties400 = new RunProperties();
            RunFonts runFonts507 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize515 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript509 = new FontSizeComplexScript() { Val = "22" };

            runProperties400.Append(runFonts507);
            runProperties400.Append(fontSize515);
            runProperties400.Append(fontSizeComplexScript509);
            Text text359 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text359.Text = "  Multi-Subnet Capable";

            run382.Append(runProperties400);
            run382.Append(text359);

            paragraph182.Append(paragraphProperties179);
            paragraph182.Append(sdtRun24);
            paragraph182.Append(run378);
            paragraph182.Append(run379);
            paragraph182.Append(run380);
            paragraph182.Append(sdtRun25);
            paragraph182.Append(run382);

            Paragraph paragraph183 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00EE5D41", RsidParagraphProperties = "00EE5D41", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1A56", TextId = "1A060D03" };

            ParagraphProperties paragraphProperties180 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties180 = new ParagraphMarkRunProperties();
            RunFonts runFonts508 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize516 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript510 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties180.Append(runFonts508);
            paragraphMarkRunProperties180.Append(fontSize516);
            paragraphMarkRunProperties180.Append(fontSizeComplexScript510);

            paragraphProperties180.Append(paragraphMarkRunProperties180);

            SdtRun sdtRun26 = new SdtRun();

            SdtProperties sdtProperties26 = new SdtProperties();

            RunProperties runProperties401 = new RunProperties();
            RunFonts runFonts509 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize517 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript511 = new FontSizeComplexScript() { Val = "22" };

            runProperties401.Append(runFonts509);
            runProperties401.Append(fontSize517);
            runProperties401.Append(fontSizeComplexScript511);
            SdtId sdtId26 = new SdtId() { Val = -760758384 };

            W14.SdtContentCheckBox sdtContentCheckBox26 = new W14.SdtContentCheckBox();
            W14.Checked checked26 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState26 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState26 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox26.Append(checked26);
            sdtContentCheckBox26.Append(checkedState26);
            sdtContentCheckBox26.Append(uncheckedState26);

            sdtProperties26.Append(runProperties401);
            sdtProperties26.Append(sdtId26);
            sdtProperties26.Append(sdtContentCheckBox26);
            SdtEndCharProperties sdtEndCharProperties26 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun26 = new SdtContentRun();

            Run run383 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F97B58" };

            RunProperties runProperties402 = new RunProperties();
            RunFonts runFonts510 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize518 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript512 = new FontSizeComplexScript() { Val = "22" };

            runProperties402.Append(runFonts510);
            runProperties402.Append(fontSize518);
            runProperties402.Append(fontSizeComplexScript512);
            Text text360 = new Text();
            text360.Text = "☐";

            run383.Append(runProperties402);
            run383.Append(text360);

            sdtContentRun26.Append(run383);

            sdtRun26.Append(sdtProperties26);
            sdtRun26.Append(sdtEndCharProperties26);
            sdtRun26.Append(sdtContentRun26);

            Run run384 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F97B58" };

            RunProperties runProperties403 = new RunProperties();
            RunFonts runFonts511 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize519 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript513 = new FontSizeComplexScript() { Val = "22" };

            runProperties403.Append(runFonts511);
            runProperties403.Append(fontSize519);
            runProperties403.Append(fontSizeComplexScript513);
            Text text361 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text361.Text = "  S";

            run384.Append(runProperties403);
            run384.Append(text361);

            Run run385 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00EE5D41" };

            RunProperties runProperties404 = new RunProperties();
            RunFonts runFonts512 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize520 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript514 = new FontSizeComplexScript() { Val = "22" };

            runProperties404.Append(runFonts512);
            runProperties404.Append(fontSize520);
            runProperties404.Append(fontSizeComplexScript514);
            Text text362 = new Text();
            text362.Text = "Ql 2008 R2";

            run385.Append(runProperties404);
            run385.Append(text362);

            Run run386 = new Run() { RsidRunProperties = "00697199", RsidRunAddition = "00697199" };

            RunProperties runProperties405 = new RunProperties();
            RunFonts runFonts513 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color157 = new Color() { Val = "FF0000" };
            FontSize fontSize521 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript515 = new FontSizeComplexScript() { Val = "22" };

            runProperties405.Append(runFonts513);
            runProperties405.Append(color157);
            runProperties405.Append(fontSize521);
            runProperties405.Append(fontSizeComplexScript515);
            Text text363 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text363.Text = " (Support ends 07/2019)";

            run386.Append(runProperties405);
            run386.Append(text363);

            paragraph183.Append(paragraphProperties180);
            paragraph183.Append(sdtRun26);
            paragraph183.Append(run384);
            paragraph183.Append(run385);
            paragraph183.Append(run386);

            Paragraph paragraph184 = new Paragraph() { RsidParagraphMarkRevision = "0027287B", RsidParagraphAddition = "00624202", RsidParagraphProperties = "00624202", RsidRunAdditionDefault = "00624202", ParagraphId = "52B4729C", TextId = "77777777" };

            ParagraphProperties paragraphProperties181 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties181 = new ParagraphMarkRunProperties();
            RunFonts runFonts514 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize522 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript516 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties181.Append(runFonts514);
            paragraphMarkRunProperties181.Append(fontSize522);
            paragraphMarkRunProperties181.Append(fontSizeComplexScript516);

            paragraphProperties181.Append(paragraphMarkRunProperties181);

            Run run387 = new Run() { RsidRunProperties = "0027287B" };

            RunProperties runProperties406 = new RunProperties();
            RunFonts runFonts515 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize523 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript517 = new FontSizeComplexScript() { Val = "22" };

            runProperties406.Append(runFonts515);
            runProperties406.Append(fontSize523);
            runProperties406.Append(fontSizeComplexScript517);
            TabChar tabChar28 = new TabChar();

            run387.Append(runProperties406);
            run387.Append(tabChar28);

            SdtRun sdtRun27 = new SdtRun();

            SdtProperties sdtProperties27 = new SdtProperties();

            RunProperties runProperties407 = new RunProperties();
            RunFonts runFonts516 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize524 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript518 = new FontSizeComplexScript() { Val = "22" };

            runProperties407.Append(runFonts516);
            runProperties407.Append(fontSize524);
            runProperties407.Append(fontSizeComplexScript518);
            SdtId sdtId27 = new SdtId() { Val = 1934777428 };

            W14.SdtContentCheckBox sdtContentCheckBox27 = new W14.SdtContentCheckBox();
            W14.Checked checked27 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState27 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState27 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox27.Append(checked27);
            sdtContentCheckBox27.Append(checkedState27);
            sdtContentCheckBox27.Append(uncheckedState27);

            sdtProperties27.Append(runProperties407);
            sdtProperties27.Append(sdtId27);
            sdtProperties27.Append(sdtContentCheckBox27);
            SdtEndCharProperties sdtEndCharProperties27 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun27 = new SdtContentRun();

            Run run388 = new Run() { RsidRunProperties = "0027287B" };

            RunProperties runProperties408 = new RunProperties();
            RunFonts runFonts517 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize525 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript519 = new FontSizeComplexScript() { Val = "22" };

            runProperties408.Append(runFonts517);
            runProperties408.Append(fontSize525);
            runProperties408.Append(fontSizeComplexScript519);
            Text text364 = new Text();
            text364.Text = "☐";

            run388.Append(runProperties408);
            run388.Append(text364);

            sdtContentRun27.Append(run388);

            sdtRun27.Append(sdtProperties27);
            sdtRun27.Append(sdtEndCharProperties27);
            sdtRun27.Append(sdtContentRun27);

            Run run389 = new Run() { RsidRunProperties = "0027287B" };

            RunProperties runProperties409 = new RunProperties();
            RunFonts runFonts518 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize526 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript520 = new FontSizeComplexScript() { Val = "22" };

            runProperties409.Append(runFonts518);
            runProperties409.Append(fontSize526);
            runProperties409.Append(fontSizeComplexScript520);
            Text text365 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text365.Text = "  Standard";

            run389.Append(runProperties409);
            run389.Append(text365);

            paragraph184.Append(paragraphProperties181);
            paragraph184.Append(run387);
            paragraph184.Append(sdtRun27);
            paragraph184.Append(run389);

            Paragraph paragraph185 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00624202", RsidParagraphProperties = "00624202", RsidRunAdditionDefault = "00624202", ParagraphId = "6F9DAFE6", TextId = "77777777" };

            ParagraphProperties paragraphProperties182 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties182 = new ParagraphMarkRunProperties();
            RunFonts runFonts519 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize527 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript521 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties182.Append(runFonts519);
            paragraphMarkRunProperties182.Append(fontSize527);
            paragraphMarkRunProperties182.Append(fontSizeComplexScript521);

            paragraphProperties182.Append(paragraphMarkRunProperties182);

            Run run390 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties410 = new RunProperties();
            RunFonts runFonts520 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize528 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript522 = new FontSizeComplexScript() { Val = "22" };

            runProperties410.Append(runFonts520);
            runProperties410.Append(fontSize528);
            runProperties410.Append(fontSizeComplexScript522);
            TabChar tabChar29 = new TabChar();

            run390.Append(runProperties410);
            run390.Append(tabChar29);

            SdtRun sdtRun28 = new SdtRun();

            SdtProperties sdtProperties28 = new SdtProperties();

            RunProperties runProperties411 = new RunProperties();
            RunFonts runFonts521 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize529 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript523 = new FontSizeComplexScript() { Val = "22" };

            runProperties411.Append(runFonts521);
            runProperties411.Append(fontSize529);
            runProperties411.Append(fontSizeComplexScript523);
            SdtId sdtId28 = new SdtId() { Val = 1278140508 };

            W14.SdtContentCheckBox sdtContentCheckBox28 = new W14.SdtContentCheckBox();
            W14.Checked checked28 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState28 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState28 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox28.Append(checked28);
            sdtContentCheckBox28.Append(checkedState28);
            sdtContentCheckBox28.Append(uncheckedState28);

            sdtProperties28.Append(runProperties411);
            sdtProperties28.Append(sdtId28);
            sdtProperties28.Append(sdtContentCheckBox28);
            SdtEndCharProperties sdtEndCharProperties28 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun28 = new SdtContentRun();

            Run run391 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties412 = new RunProperties();
            RunFonts runFonts522 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize530 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript524 = new FontSizeComplexScript() { Val = "22" };

            runProperties412.Append(runFonts522);
            runProperties412.Append(fontSize530);
            runProperties412.Append(fontSizeComplexScript524);
            Text text366 = new Text();
            text366.Text = "☐";

            run391.Append(runProperties412);
            run391.Append(text366);

            sdtContentRun28.Append(run391);

            sdtRun28.Append(sdtProperties28);
            sdtRun28.Append(sdtEndCharProperties28);
            sdtRun28.Append(sdtContentRun28);

            Run run392 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties413 = new RunProperties();
            RunFonts runFonts523 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize531 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript525 = new FontSizeComplexScript() { Val = "22" };

            runProperties413.Append(runFonts523);
            runProperties413.Append(fontSize531);
            runProperties413.Append(fontSizeComplexScript525);
            Text text367 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text367.Text = "  Enterprise";

            run392.Append(runProperties413);
            run392.Append(text367);

            paragraph185.Append(paragraphProperties182);
            paragraph185.Append(run390);
            paragraph185.Append(sdtRun28);
            paragraph185.Append(run392);

            Paragraph paragraph186 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F97B58", RsidParagraphProperties = "00F97B58", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A59", TextId = "77777777" };

            ParagraphProperties paragraphProperties183 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties183 = new ParagraphMarkRunProperties();
            RunFonts runFonts524 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize532 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript526 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties183.Append(runFonts524);
            paragraphMarkRunProperties183.Append(fontSize532);
            paragraphMarkRunProperties183.Append(fontSizeComplexScript526);

            paragraphProperties183.Append(paragraphMarkRunProperties183);

            Run run393 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties414 = new RunProperties();
            RunFonts runFonts525 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize533 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript527 = new FontSizeComplexScript() { Val = "22" };

            runProperties414.Append(runFonts525);
            runProperties414.Append(fontSize533);
            runProperties414.Append(fontSizeComplexScript527);
            Text text368 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text368.Text = "            ";

            run393.Append(runProperties414);
            run393.Append(text368);

            Run run394 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties415 = new RunProperties();
            RunFonts runFonts526 = new RunFonts() { EastAsia = "MS Gothic", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize534 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript528 = new FontSizeComplexScript() { Val = "22" };

            runProperties415.Append(runFonts526);
            runProperties415.Append(fontSize534);
            runProperties415.Append(fontSizeComplexScript528);
            Text text369 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text369.Text = "   ";

            run394.Append(runProperties415);
            run394.Append(text369);

            SdtRun sdtRun29 = new SdtRun();

            SdtProperties sdtProperties29 = new SdtProperties();

            RunProperties runProperties416 = new RunProperties();
            RunFonts runFonts527 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize535 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript529 = new FontSizeComplexScript() { Val = "22" };

            runProperties416.Append(runFonts527);
            runProperties416.Append(fontSize535);
            runProperties416.Append(fontSizeComplexScript529);
            SdtId sdtId29 = new SdtId() { Val = -257298224 };

            W14.SdtContentCheckBox sdtContentCheckBox29 = new W14.SdtContentCheckBox();
            W14.Checked checked29 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState29 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState29 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox29.Append(checked29);
            sdtContentCheckBox29.Append(checkedState29);
            sdtContentCheckBox29.Append(uncheckedState29);

            sdtProperties29.Append(runProperties416);
            sdtProperties29.Append(sdtId29);
            sdtProperties29.Append(sdtContentCheckBox29);
            SdtEndCharProperties sdtEndCharProperties29 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun29 = new SdtContentRun();

            Run run395 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties417 = new RunProperties();
            RunFonts runFonts528 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize536 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript530 = new FontSizeComplexScript() { Val = "22" };

            runProperties417.Append(runFonts528);
            runProperties417.Append(fontSize536);
            runProperties417.Append(fontSizeComplexScript530);
            Text text370 = new Text();
            text370.Text = "☐";

            run395.Append(runProperties417);
            run395.Append(text370);

            sdtContentRun29.Append(run395);

            sdtRun29.Append(sdtProperties29);
            sdtRun29.Append(sdtEndCharProperties29);
            sdtRun29.Append(sdtContentRun29);

            Run run396 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties418 = new RunProperties();
            RunFonts runFonts529 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize537 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript531 = new FontSizeComplexScript() { Val = "22" };

            runProperties418.Append(runFonts529);
            runProperties418.Append(fontSize537);
            runProperties418.Append(fontSizeComplexScript531);
            Text text371 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text371.Text = "  Workgroup";

            run396.Append(runProperties418);
            run396.Append(text371);

            paragraph186.Append(paragraphProperties183);
            paragraph186.Append(run393);
            paragraph186.Append(run394);
            paragraph186.Append(sdtRun29);
            paragraph186.Append(run396);

            Paragraph paragraph187 = new Paragraph() { RsidParagraphAddition = "00EE5D41", RsidParagraphProperties = "00EE5D41", RsidRunAdditionDefault = "00EE5D41", ParagraphId = "0AAC1A5A", TextId = "77777777" };

            ParagraphProperties paragraphProperties184 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties184 = new ParagraphMarkRunProperties();
            RunFonts runFonts530 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize538 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript532 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties184.Append(runFonts530);
            paragraphMarkRunProperties184.Append(fontSize538);
            paragraphMarkRunProperties184.Append(fontSizeComplexScript532);

            paragraphProperties184.Append(paragraphMarkRunProperties184);

            Run run397 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties419 = new RunProperties();
            RunFonts runFonts531 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize539 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript533 = new FontSizeComplexScript() { Val = "22" };

            runProperties419.Append(runFonts531);
            runProperties419.Append(fontSize539);
            runProperties419.Append(fontSizeComplexScript533);
            TabChar tabChar30 = new TabChar();

            run397.Append(runProperties419);
            run397.Append(tabChar30);

            SdtRun sdtRun30 = new SdtRun();

            SdtProperties sdtProperties30 = new SdtProperties();

            RunProperties runProperties420 = new RunProperties();
            RunFonts runFonts532 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize540 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript534 = new FontSizeComplexScript() { Val = "22" };

            runProperties420.Append(runFonts532);
            runProperties420.Append(fontSize540);
            runProperties420.Append(fontSizeComplexScript534);
            SdtId sdtId30 = new SdtId() { Val = -259533210 };

            W14.SdtContentCheckBox sdtContentCheckBox30 = new W14.SdtContentCheckBox();
            W14.Checked checked30 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState30 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState30 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox30.Append(checked30);
            sdtContentCheckBox30.Append(checkedState30);
            sdtContentCheckBox30.Append(uncheckedState30);

            sdtProperties30.Append(runProperties420);
            sdtProperties30.Append(sdtId30);
            sdtProperties30.Append(sdtContentCheckBox30);
            SdtEndCharProperties sdtEndCharProperties30 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun30 = new SdtContentRun();

            Run run398 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F97B58" };

            RunProperties runProperties421 = new RunProperties();
            RunFonts runFonts533 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize541 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript535 = new FontSizeComplexScript() { Val = "22" };

            runProperties421.Append(runFonts533);
            runProperties421.Append(fontSize541);
            runProperties421.Append(fontSizeComplexScript535);
            Text text372 = new Text();
            text372.Text = "☐";

            run398.Append(runProperties421);
            run398.Append(text372);

            sdtContentRun30.Append(run398);

            sdtRun30.Append(sdtProperties30);
            sdtRun30.Append(sdtEndCharProperties30);
            sdtRun30.Append(sdtContentRun30);

            Run run399 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F97B58" };

            RunProperties runProperties422 = new RunProperties();
            RunFonts runFonts534 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize542 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript536 = new FontSizeComplexScript() { Val = "22" };

            runProperties422.Append(runFonts534);
            runProperties422.Append(fontSize542);
            runProperties422.Append(fontSizeComplexScript536);
            Text text373 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text373.Text = "  ";

            run399.Append(runProperties422);
            run399.Append(text373);

            Run run400 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties423 = new RunProperties();
            RunFonts runFonts535 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize543 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript537 = new FontSizeComplexScript() { Val = "22" };

            runProperties423.Append(runFonts535);
            runProperties423.Append(fontSize543);
            runProperties423.Append(fontSizeComplexScript537);
            Text text374 = new Text();
            text374.Text = "SP1";

            run400.Append(runProperties423);
            run400.Append(text374);

            paragraph187.Append(paragraphProperties184);
            paragraph187.Append(run397);
            paragraph187.Append(sdtRun30);
            paragraph187.Append(run399);
            paragraph187.Append(run400);

            Paragraph paragraph188 = new Paragraph() { RsidParagraphAddition = "00F97B58", RsidParagraphProperties = "00F97B58", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A5B", TextId = "77777777" };

            ParagraphProperties paragraphProperties185 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties185 = new ParagraphMarkRunProperties();
            RunFonts runFonts536 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize544 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript538 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties185.Append(runFonts536);
            paragraphMarkRunProperties185.Append(fontSize544);
            paragraphMarkRunProperties185.Append(fontSizeComplexScript538);

            paragraphProperties185.Append(paragraphMarkRunProperties185);

            Run run401 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties424 = new RunProperties();
            RunFonts runFonts537 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize545 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript539 = new FontSizeComplexScript() { Val = "22" };

            runProperties424.Append(runFonts537);
            runProperties424.Append(fontSize545);
            runProperties424.Append(fontSizeComplexScript539);
            TabChar tabChar31 = new TabChar();

            run401.Append(runProperties424);
            run401.Append(tabChar31);

            SdtRun sdtRun31 = new SdtRun();

            SdtProperties sdtProperties31 = new SdtProperties();

            RunProperties runProperties425 = new RunProperties();
            RunFonts runFonts538 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize546 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript540 = new FontSizeComplexScript() { Val = "22" };

            runProperties425.Append(runFonts538);
            runProperties425.Append(fontSize546);
            runProperties425.Append(fontSizeComplexScript540);
            SdtId sdtId31 = new SdtId() { Val = 1346831867 };

            W14.SdtContentCheckBox sdtContentCheckBox31 = new W14.SdtContentCheckBox();
            W14.Checked checked31 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState31 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState31 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox31.Append(checked31);
            sdtContentCheckBox31.Append(checkedState31);
            sdtContentCheckBox31.Append(uncheckedState31);

            sdtProperties31.Append(runProperties425);
            sdtProperties31.Append(sdtId31);
            sdtProperties31.Append(sdtContentCheckBox31);
            SdtEndCharProperties sdtEndCharProperties31 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun31 = new SdtContentRun();

            Run run402 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties426 = new RunProperties();
            RunFonts runFonts539 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize547 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript541 = new FontSizeComplexScript() { Val = "22" };

            runProperties426.Append(runFonts539);
            runProperties426.Append(fontSize547);
            runProperties426.Append(fontSizeComplexScript541);
            Text text375 = new Text();
            text375.Text = "☐";

            run402.Append(runProperties426);
            run402.Append(text375);

            sdtContentRun31.Append(run402);

            sdtRun31.Append(sdtProperties31);
            sdtRun31.Append(sdtEndCharProperties31);
            sdtRun31.Append(sdtContentRun31);

            Run run403 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties427 = new RunProperties();
            RunFonts runFonts540 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize548 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript542 = new FontSizeComplexScript() { Val = "22" };

            runProperties427.Append(runFonts540);
            runProperties427.Append(fontSize548);
            runProperties427.Append(fontSizeComplexScript542);
            Text text376 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text376.Text = "  S";

            run403.Append(runProperties427);
            run403.Append(text376);

            Run run404 = new Run();

            RunProperties runProperties428 = new RunProperties();
            RunFonts runFonts541 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize549 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript543 = new FontSizeComplexScript() { Val = "22" };

            runProperties428.Append(runFonts541);
            runProperties428.Append(fontSize549);
            runProperties428.Append(fontSizeComplexScript543);
            Text text377 = new Text();
            text377.Text = "P2";

            run404.Append(runProperties428);
            run404.Append(text377);

            paragraph188.Append(paragraphProperties185);
            paragraph188.Append(run401);
            paragraph188.Append(sdtRun31);
            paragraph188.Append(run403);
            paragraph188.Append(run404);

            Paragraph paragraph189 = new Paragraph() { RsidParagraphAddition = "00697199", RsidParagraphProperties = "00F97B58", RsidRunAdditionDefault = "0094109A", ParagraphId = "792781BA", TextId = "77777777" };

            ParagraphProperties paragraphProperties186 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties186 = new ParagraphMarkRunProperties();
            RunFonts runFonts542 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize550 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript544 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties186.Append(runFonts542);
            paragraphMarkRunProperties186.Append(fontSize550);
            paragraphMarkRunProperties186.Append(fontSizeComplexScript544);

            paragraphProperties186.Append(paragraphMarkRunProperties186);

            Run run405 = new Run();

            RunProperties runProperties429 = new RunProperties();
            RunFonts runFonts543 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize551 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript545 = new FontSizeComplexScript() { Val = "22" };

            runProperties429.Append(runFonts543);
            runProperties429.Append(fontSize551);
            runProperties429.Append(fontSizeComplexScript545);
            TabChar tabChar32 = new TabChar();

            run405.Append(runProperties429);
            run405.Append(tabChar32);

            SdtRun sdtRun32 = new SdtRun();

            SdtProperties sdtProperties32 = new SdtProperties();

            RunProperties runProperties430 = new RunProperties();
            RunFonts runFonts544 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize552 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript546 = new FontSizeComplexScript() { Val = "22" };

            runProperties430.Append(runFonts544);
            runProperties430.Append(fontSize552);
            runProperties430.Append(fontSizeComplexScript546);
            SdtId sdtId32 = new SdtId() { Val = -1583979034 };

            W14.SdtContentCheckBox sdtContentCheckBox32 = new W14.SdtContentCheckBox();
            W14.Checked checked32 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState32 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState32 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox32.Append(checked32);
            sdtContentCheckBox32.Append(checkedState32);
            sdtContentCheckBox32.Append(uncheckedState32);

            sdtProperties32.Append(runProperties430);
            sdtProperties32.Append(sdtId32);
            sdtProperties32.Append(sdtContentCheckBox32);
            SdtEndCharProperties sdtEndCharProperties32 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun32 = new SdtContentRun();

            Run run406 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties431 = new RunProperties();
            RunFonts runFonts545 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize553 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript547 = new FontSizeComplexScript() { Val = "22" };

            runProperties431.Append(runFonts545);
            runProperties431.Append(fontSize553);
            runProperties431.Append(fontSizeComplexScript547);
            Text text378 = new Text();
            text378.Text = "☐";

            run406.Append(runProperties431);
            run406.Append(text378);

            sdtContentRun32.Append(run406);

            sdtRun32.Append(sdtProperties32);
            sdtRun32.Append(sdtEndCharProperties32);
            sdtRun32.Append(sdtContentRun32);

            Run run407 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties432 = new RunProperties();
            RunFonts runFonts546 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize554 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript548 = new FontSizeComplexScript() { Val = "22" };

            runProperties432.Append(runFonts546);
            runProperties432.Append(fontSize554);
            runProperties432.Append(fontSizeComplexScript548);
            Text text379 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text379.Text = "  S";

            run407.Append(runProperties432);
            run407.Append(text379);

            Run run408 = new Run();

            RunProperties runProperties433 = new RunProperties();
            RunFonts runFonts547 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize555 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript549 = new FontSizeComplexScript() { Val = "22" };

            runProperties433.Append(runFonts547);
            runProperties433.Append(fontSize555);
            runProperties433.Append(fontSizeComplexScript549);
            Text text380 = new Text();
            text380.Text = "P3";

            run408.Append(runProperties433);
            run408.Append(text380);

            paragraph189.Append(paragraphProperties186);
            paragraph189.Append(run405);
            paragraph189.Append(sdtRun32);
            paragraph189.Append(run407);
            paragraph189.Append(run408);

            Paragraph paragraph190 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00A563A2", ParagraphId = "7FEBA10C", TextId = "65655EB3" };

            ParagraphProperties paragraphProperties187 = new ParagraphProperties();
            Indentation indentation21 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties187 = new ParagraphMarkRunProperties();
            RunFonts runFonts548 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize556 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript550 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties187.Append(runFonts548);
            paragraphMarkRunProperties187.Append(fontSize556);
            paragraphMarkRunProperties187.Append(fontSizeComplexScript550);

            paragraphProperties187.Append(indentation21);
            paragraphProperties187.Append(paragraphMarkRunProperties187);

            SdtRun sdtRun33 = new SdtRun();

            SdtProperties sdtProperties33 = new SdtProperties();

            RunProperties runProperties434 = new RunProperties();
            RunFonts runFonts549 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize557 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript551 = new FontSizeComplexScript() { Val = "22" };

            runProperties434.Append(runFonts549);
            runProperties434.Append(fontSize557);
            runProperties434.Append(fontSizeComplexScript551);
            SdtId sdtId33 = new SdtId() { Val = -1096947543 };

            W14.SdtContentCheckBox sdtContentCheckBox33 = new W14.SdtContentCheckBox();
            W14.Checked checked33 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState33 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState33 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox33.Append(checked33);
            sdtContentCheckBox33.Append(checkedState33);
            sdtContentCheckBox33.Append(uncheckedState33);

            sdtProperties33.Append(runProperties434);
            sdtProperties33.Append(sdtId33);
            sdtProperties33.Append(sdtContentCheckBox33);
            SdtEndCharProperties sdtEndCharProperties33 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun33 = new SdtContentRun();

            Run run409 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00697199" };

            RunProperties runProperties435 = new RunProperties();
            RunFonts runFonts550 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize558 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript552 = new FontSizeComplexScript() { Val = "22" };

            runProperties435.Append(runFonts550);
            runProperties435.Append(fontSize558);
            runProperties435.Append(fontSizeComplexScript552);
            Text text381 = new Text();
            text381.Text = "☐";

            run409.Append(runProperties435);
            run409.Append(text381);

            sdtContentRun33.Append(run409);

            sdtRun33.Append(sdtProperties33);
            sdtRun33.Append(sdtEndCharProperties33);
            sdtRun33.Append(sdtContentRun33);

            Run run410 = new Run() { RsidRunAddition = "00697199" };

            RunProperties runProperties436 = new RunProperties();
            RunFonts runFonts551 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize559 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript553 = new FontSizeComplexScript() { Val = "22" };

            runProperties436.Append(runFonts551);
            runProperties436.Append(fontSize559);
            runProperties436.Append(fontSizeComplexScript553);
            Text text382 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text382.Text = "  Database Mirroring";

            run410.Append(runProperties436);
            run410.Append(text382);

            paragraph190.Append(paragraphProperties187);
            paragraph190.Append(sdtRun33);
            paragraph190.Append(run410);

            Paragraph paragraph191 = new Paragraph() { RsidParagraphAddition = "00916B33", RsidParagraphProperties = "007C1C3A", RsidRunAdditionDefault = "00A563A2", ParagraphId = "651362E2", TextId = "54B70461" };

            ParagraphProperties paragraphProperties188 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties188 = new ParagraphMarkRunProperties();
            RunFonts runFonts552 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize560 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript554 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties188.Append(runFonts552);
            paragraphMarkRunProperties188.Append(fontSize560);
            paragraphMarkRunProperties188.Append(fontSizeComplexScript554);

            paragraphProperties188.Append(paragraphMarkRunProperties188);

            SdtRun sdtRun34 = new SdtRun();

            SdtProperties sdtProperties34 = new SdtProperties();

            RunProperties runProperties437 = new RunProperties();
            RunFonts runFonts553 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize561 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript555 = new FontSizeComplexScript() { Val = "22" };

            runProperties437.Append(runFonts553);
            runProperties437.Append(fontSize561);
            runProperties437.Append(fontSizeComplexScript555);
            SdtId sdtId34 = new SdtId() { Val = 377740893 };

            W14.SdtContentCheckBox sdtContentCheckBox34 = new W14.SdtContentCheckBox();
            W14.Checked checked34 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState34 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState34 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox34.Append(checked34);
            sdtContentCheckBox34.Append(checkedState34);
            sdtContentCheckBox34.Append(uncheckedState34);

            sdtProperties34.Append(runProperties437);
            sdtProperties34.Append(sdtId34);
            sdtProperties34.Append(sdtContentCheckBox34);
            SdtEndCharProperties sdtEndCharProperties34 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun34 = new SdtContentRun();

            Run run411 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00916B33" };

            RunProperties runProperties438 = new RunProperties();
            RunFonts runFonts554 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize562 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript556 = new FontSizeComplexScript() { Val = "22" };

            runProperties438.Append(runFonts554);
            runProperties438.Append(fontSize562);
            runProperties438.Append(fontSizeComplexScript556);
            Text text383 = new Text();
            text383.Text = "☐";

            run411.Append(runProperties438);
            run411.Append(text383);

            sdtContentRun34.Append(run411);

            sdtRun34.Append(sdtProperties34);
            sdtRun34.Append(sdtEndCharProperties34);
            sdtRun34.Append(sdtContentRun34);

            Run run412 = new Run() { RsidRunAddition = "00916B33" };

            RunProperties runProperties439 = new RunProperties();
            RunFonts runFonts555 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize563 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript557 = new FontSizeComplexScript() { Val = "22" };

            runProperties439.Append(runFonts555);
            runProperties439.Append(fontSize563);
            runProperties439.Append(fontSizeComplexScript557);
            Text text384 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text384.Text = "  ";

            run412.Append(runProperties439);
            run412.Append(text384);

            Run run413 = new Run() { RsidRunProperties = "003C2F92", RsidRunAddition = "00916B33" };

            RunProperties runProperties440 = new RunProperties();
            RunFonts runFonts556 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize564 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript558 = new FontSizeComplexScript() { Val = "22" };

            runProperties440.Append(runFonts556);
            runProperties440.Append(fontSize564);
            runProperties440.Append(fontSizeComplexScript558);
            Text text385 = new Text();
            text385.Text = "Oracle";

            run413.Append(runProperties440);
            run413.Append(text385);

            Run run414 = new Run() { RsidRunProperties = "003C2F92", RsidRunAddition = "007C1C3A" };

            RunProperties runProperties441 = new RunProperties();
            RunFonts runFonts557 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize565 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript559 = new FontSizeComplexScript() { Val = "22" };

            runProperties441.Append(runFonts557);
            runProperties441.Append(fontSize565);
            runProperties441.Append(fontSizeComplexScript559);
            Text text386 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text386.Text = " or DB2";

            run414.Append(runProperties441);
            run414.Append(text386);

            Run run415 = new Run() { RsidRunProperties = "003C2F92", RsidRunAddition = "007C1C3A" };

            RunProperties runProperties442 = new RunProperties();
            RunFonts runFonts558 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Italic italic6 = new Italic();
            FontSize fontSize566 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript560 = new FontSizeComplexScript() { Val = "22" };
            Underline underline58 = new Underline() { Val = UnderlineValues.Single };

            runProperties442.Append(runFonts558);
            runProperties442.Append(italic6);
            runProperties442.Append(fontSize566);
            runProperties442.Append(fontSizeComplexScript560);
            runProperties442.Append(underline58);
            Text text387 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text387.Text = " ";

            run415.Append(runProperties442);
            run415.Append(text387);

            Run run416 = new Run() { RsidRunProperties = "0027287B", RsidRunAddition = "007C1C3A" };

            RunProperties runProperties443 = new RunProperties();
            RunFonts runFonts559 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold95 = new Bold();
            Italic italic7 = new Italic();
            Color color158 = new Color() { Val = "FF0000" };
            FontSize fontSize567 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript561 = new FontSizeComplexScript() { Val = "22" };
            Underline underline59 = new Underline() { Val = UnderlineValues.Single };

            runProperties443.Append(runFonts559);
            runProperties443.Append(bold95);
            runProperties443.Append(italic7);
            runProperties443.Append(color158);
            runProperties443.Append(fontSize567);
            runProperties443.Append(fontSizeComplexScript561);
            runProperties443.Append(underline59);
            Text text388 = new Text();
            text388.Text = "require conversation with DBAs";

            run416.Append(runProperties443);
            run416.Append(text388);

            paragraph191.Append(paragraphProperties188);
            paragraph191.Append(sdtRun34);
            paragraph191.Append(run412);
            paragraph191.Append(run413);
            paragraph191.Append(run414);
            paragraph191.Append(run415);
            paragraph191.Append(run416);

            Paragraph paragraph192 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00F12AD5", ParagraphId = "7BA78E36", TextId = "0A14C92C" };

            ParagraphProperties paragraphProperties189 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties189 = new ParagraphMarkRunProperties();
            RunFonts runFonts560 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize568 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript562 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties189.Append(runFonts560);
            paragraphMarkRunProperties189.Append(fontSize568);
            paragraphMarkRunProperties189.Append(fontSizeComplexScript562);

            paragraphProperties189.Append(paragraphMarkRunProperties189);

            Run run417 = new Run();

            RunProperties runProperties444 = new RunProperties();
            RunFonts runFonts561 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize569 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript563 = new FontSizeComplexScript() { Val = "22" };

            runProperties444.Append(runFonts561);
            runProperties444.Append(fontSize569);
            runProperties444.Append(fontSizeComplexScript563);
            Text text389 = new Text();
            text389.Text = "Failover Type:";

            run417.Append(runProperties444);
            run417.Append(text389);

            Run run418 = new Run();

            RunProperties runProperties445 = new RunProperties();
            RunFonts runFonts562 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize570 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript564 = new FontSizeComplexScript() { Val = "22" };

            runProperties445.Append(runFonts562);
            runProperties445.Append(fontSize570);
            runProperties445.Append(fontSizeComplexScript564);
            TabChar tabChar33 = new TabChar();

            run418.Append(runProperties445);
            run418.Append(tabChar33);

            SdtRun sdtRun35 = new SdtRun();

            SdtProperties sdtProperties35 = new SdtProperties();

            RunProperties runProperties446 = new RunProperties();
            RunFonts runFonts563 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize571 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript565 = new FontSizeComplexScript() { Val = "22" };

            runProperties446.Append(runFonts563);
            runProperties446.Append(fontSize571);
            runProperties446.Append(fontSizeComplexScript565);
            SdtId sdtId35 = new SdtId() { Val = 1031067453 };

            W14.SdtContentCheckBox sdtContentCheckBox35 = new W14.SdtContentCheckBox();
            W14.Checked checked35 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState35 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState35 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox35.Append(checked35);
            sdtContentCheckBox35.Append(checkedState35);
            sdtContentCheckBox35.Append(uncheckedState35);

            sdtProperties35.Append(runProperties446);
            sdtProperties35.Append(sdtId35);
            sdtProperties35.Append(sdtContentCheckBox35);
            SdtEndCharProperties sdtEndCharProperties35 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun35 = new SdtContentRun();

            Run run419 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties447 = new RunProperties();
            RunFonts runFonts564 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize572 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript566 = new FontSizeComplexScript() { Val = "22" };

            runProperties447.Append(runFonts564);
            runProperties447.Append(fontSize572);
            runProperties447.Append(fontSizeComplexScript566);
            Text text390 = new Text();
            text390.Text = "☐";

            run419.Append(runProperties447);
            run419.Append(text390);

            sdtContentRun35.Append(run419);

            sdtRun35.Append(sdtProperties35);
            sdtRun35.Append(sdtEndCharProperties35);
            sdtRun35.Append(sdtContentRun35);

            Run run420 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties448 = new RunProperties();
            RunFonts runFonts565 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize573 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript567 = new FontSizeComplexScript() { Val = "22" };

            runProperties448.Append(runFonts565);
            runProperties448.Append(fontSize573);
            runProperties448.Append(fontSizeComplexScript567);
            Text text391 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text391.Text = "  ";

            run420.Append(runProperties448);
            run420.Append(text391);

            Run run421 = new Run();

            RunProperties runProperties449 = new RunProperties();
            RunFonts runFonts566 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize574 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript568 = new FontSizeComplexScript() { Val = "22" };

            runProperties449.Append(runFonts566);
            runProperties449.Append(fontSize574);
            runProperties449.Append(fontSizeComplexScript568);
            Text text392 = new Text();
            text392.Text = "Automatic";

            run421.Append(runProperties449);
            run421.Append(text392);

            Run run422 = new Run();

            RunProperties runProperties450 = new RunProperties();
            RunFonts runFonts567 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize575 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript569 = new FontSizeComplexScript() { Val = "22" };

            runProperties450.Append(runFonts567);
            runProperties450.Append(fontSize575);
            runProperties450.Append(fontSizeComplexScript569);
            TabChar tabChar34 = new TabChar();

            run422.Append(runProperties450);
            run422.Append(tabChar34);

            Run run423 = new Run();

            RunProperties runProperties451 = new RunProperties();
            RunFonts runFonts568 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize576 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript570 = new FontSizeComplexScript() { Val = "22" };

            runProperties451.Append(runFonts568);
            runProperties451.Append(fontSize576);
            runProperties451.Append(fontSizeComplexScript570);
            TabChar tabChar35 = new TabChar();

            run423.Append(runProperties451);
            run423.Append(tabChar35);

            SdtRun sdtRun36 = new SdtRun();

            SdtProperties sdtProperties36 = new SdtProperties();

            RunProperties runProperties452 = new RunProperties();
            RunFonts runFonts569 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize577 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript571 = new FontSizeComplexScript() { Val = "22" };

            runProperties452.Append(runFonts569);
            runProperties452.Append(fontSize577);
            runProperties452.Append(fontSizeComplexScript571);
            SdtId sdtId36 = new SdtId() { Val = -1477528856 };

            W14.SdtContentCheckBox sdtContentCheckBox36 = new W14.SdtContentCheckBox();
            W14.Checked checked36 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState36 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState36 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox36.Append(checked36);
            sdtContentCheckBox36.Append(checkedState36);
            sdtContentCheckBox36.Append(uncheckedState36);

            sdtProperties36.Append(runProperties452);
            sdtProperties36.Append(sdtId36);
            sdtProperties36.Append(sdtContentCheckBox36);
            SdtEndCharProperties sdtEndCharProperties36 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun36 = new SdtContentRun();

            Run run424 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties453 = new RunProperties();
            RunFonts runFonts570 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Mincho", HighAnsi = "MS Mincho", EastAsia = "MS Mincho", ComplexScript = "MS Mincho" };
            FontSize fontSize578 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript572 = new FontSizeComplexScript() { Val = "22" };

            runProperties453.Append(runFonts570);
            runProperties453.Append(fontSize578);
            runProperties453.Append(fontSizeComplexScript572);
            Text text393 = new Text();
            text393.Text = "☐";

            run424.Append(runProperties453);
            run424.Append(text393);

            sdtContentRun36.Append(run424);

            sdtRun36.Append(sdtProperties36);
            sdtRun36.Append(sdtEndCharProperties36);
            sdtRun36.Append(sdtContentRun36);

            Run run425 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties454 = new RunProperties();
            RunFonts runFonts571 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize579 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript573 = new FontSizeComplexScript() { Val = "22" };

            runProperties454.Append(runFonts571);
            runProperties454.Append(fontSize579);
            runProperties454.Append(fontSizeComplexScript573);
            Text text394 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text394.Text = "  ";

            run425.Append(runProperties454);
            run425.Append(text394);

            Run run426 = new Run();

            RunProperties runProperties455 = new RunProperties();
            RunFonts runFonts572 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize580 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript574 = new FontSizeComplexScript() { Val = "22" };

            runProperties455.Append(runFonts572);
            runProperties455.Append(fontSize580);
            runProperties455.Append(fontSizeComplexScript574);
            Text text395 = new Text();
            text395.Text = "Manual";

            run426.Append(runProperties455);
            run426.Append(text395);

            paragraph192.Append(paragraphProperties189);
            paragraph192.Append(run417);
            paragraph192.Append(run418);
            paragraph192.Append(sdtRun35);
            paragraph192.Append(run420);
            paragraph192.Append(run421);
            paragraph192.Append(run422);
            paragraph192.Append(run423);
            paragraph192.Append(sdtRun36);
            paragraph192.Append(run425);
            paragraph192.Append(run426);

            Paragraph paragraph193 = new Paragraph() { RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00697199", ParagraphId = "4116938F", TextId = "2FFEA5B3" };

            ParagraphProperties paragraphProperties190 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties190 = new ParagraphMarkRunProperties();
            RunFonts runFonts573 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color159 = new Color() { Val = "FF0000" };
            FontSize fontSize581 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript575 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties190.Append(runFonts573);
            paragraphMarkRunProperties190.Append(color159);
            paragraphMarkRunProperties190.Append(fontSize581);
            paragraphMarkRunProperties190.Append(fontSizeComplexScript575);

            paragraphProperties190.Append(paragraphMarkRunProperties190);

            Run run427 = new Run();

            RunProperties runProperties456 = new RunProperties();
            RunFonts runFonts574 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize582 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript576 = new FontSizeComplexScript() { Val = "22" };

            runProperties456.Append(runFonts574);
            runProperties456.Append(fontSize582);
            runProperties456.Append(fontSizeComplexScript576);
            Text text396 = new Text();
            text396.Text = "Servers involved with database replication:";

            run427.Append(runProperties456);
            run427.Append(text396);

            Run run428 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties457 = new RunProperties();
            RunFonts runFonts575 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize583 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript577 = new FontSizeComplexScript() { Val = "22" };

            runProperties457.Append(runFonts575);
            runProperties457.Append(fontSize583);
            runProperties457.Append(fontSizeComplexScript577);
            Text text397 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text397.Text = " ";

            run428.Append(runProperties457);
            run428.Append(text397);

            Run run429 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties458 = new RunProperties();
            RunFonts runFonts576 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color160 = new Color() { Val = "FF0000" };
            FontSize fontSize584 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript578 = new FontSizeComplexScript() { Val = "22" };

            runProperties458.Append(runFonts576);
            runProperties458.Append(color160);
            runProperties458.Append(fontSize584);
            runProperties458.Append(fontSizeComplexScript578);
            Text text398 = new Text();
            text398.Text = "BJCxxxxxxxx";

            run429.Append(runProperties458);
            run429.Append(text398);

            paragraph193.Append(paragraphProperties190);
            paragraph193.Append(run427);
            paragraph193.Append(run428);
            paragraph193.Append(run429);

            Paragraph paragraph194 = new Paragraph() { RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00697199", ParagraphId = "1B5138D0", TextId = "2F717E15" };

            ParagraphProperties paragraphProperties191 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties191 = new ParagraphMarkRunProperties();
            RunFonts runFonts577 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color161 = new Color() { Val = "FF0000" };
            FontSize fontSize585 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript579 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties191.Append(runFonts577);
            paragraphMarkRunProperties191.Append(color161);
            paragraphMarkRunProperties191.Append(fontSize585);
            paragraphMarkRunProperties191.Append(fontSizeComplexScript579);

            paragraphProperties191.Append(paragraphMarkRunProperties191);

            Run run430 = new Run();

            RunProperties runProperties459 = new RunProperties();
            RunFonts runFonts578 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize586 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript580 = new FontSizeComplexScript() { Val = "22" };

            runProperties459.Append(runFonts578);
            runProperties459.Append(fontSize586);
            runProperties459.Append(fontSizeComplexScript580);
            Text text399 = new Text();
            text399.Text = "User accounts needing DB Owner or SA rights:";

            run430.Append(runProperties459);
            run430.Append(text399);

            Run run431 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties460 = new RunProperties();
            RunFonts runFonts579 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize587 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript581 = new FontSizeComplexScript() { Val = "22" };

            runProperties460.Append(runFonts579);
            runProperties460.Append(fontSize587);
            runProperties460.Append(fontSizeComplexScript581);
            Text text400 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text400.Text = " ";

            run431.Append(runProperties460);
            run431.Append(text400);

            Run run432 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties461 = new RunProperties();
            RunFonts runFonts580 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color162 = new Color() { Val = "FF0000" };
            FontSize fontSize588 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript582 = new FontSizeComplexScript() { Val = "22" };

            runProperties461.Append(runFonts580);
            runProperties461.Append(color162);
            runProperties461.Append(fontSize588);
            runProperties461.Append(fontSizeComplexScript582);
            Text text401 = new Text();
            text401.Text = "BJCxxxxxxxx";

            run432.Append(runProperties461);
            run432.Append(text401);

            paragraph194.Append(paragraphProperties191);
            paragraph194.Append(run430);
            paragraph194.Append(run431);
            paragraph194.Append(run432);

            Paragraph paragraph195 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00F12AD5", RsidRunAdditionDefault = "00F12AD5", ParagraphId = "4CB8C4A9", TextId = "77777777" };

            ParagraphProperties paragraphProperties192 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties192 = new ParagraphMarkRunProperties();
            RunFonts runFonts581 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color163 = new Color() { Val = "FF0000" };
            FontSize fontSize589 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript583 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties192.Append(runFonts581);
            paragraphMarkRunProperties192.Append(color163);
            paragraphMarkRunProperties192.Append(fontSize589);
            paragraphMarkRunProperties192.Append(fontSizeComplexScript583);

            paragraphProperties192.Append(paragraphMarkRunProperties192);

            Run run433 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties462 = new RunProperties();
            RunFonts runFonts582 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize590 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript584 = new FontSizeComplexScript() { Val = "22" };

            runProperties462.Append(runFonts582);
            runProperties462.Append(fontSize590);
            runProperties462.Append(fontSizeComplexScript584);
            Text text402 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text402.Text = "Import Backup Database from ";

            run433.Append(runProperties462);
            run433.Append(text402);

            Run run434 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties463 = new RunProperties();
            RunFonts runFonts583 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color164 = new Color() { Val = "FF0000" };
            FontSize fontSize591 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript585 = new FontSizeComplexScript() { Val = "22" };

            runProperties463.Append(runFonts583);
            runProperties463.Append(color164);
            runProperties463.Append(fontSize591);
            runProperties463.Append(fontSizeComplexScript585);
            Text text403 = new Text();
            text403.Text = "BJCxxxxxxxx";

            run434.Append(runProperties463);
            run434.Append(text403);

            paragraph195.Append(paragraphProperties192);
            paragraph195.Append(run433);
            paragraph195.Append(run434);

            Paragraph paragraph196 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00F12AD5", RsidRunAdditionDefault = "00F12AD5", ParagraphId = "71ACE670", TextId = "6A9F12FB" };

            ParagraphProperties paragraphProperties193 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties193 = new ParagraphMarkRunProperties();
            RunFonts runFonts584 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color165 = new Color() { Val = "FF0000" };
            FontSize fontSize592 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript586 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties193.Append(runFonts584);
            paragraphMarkRunProperties193.Append(color165);
            paragraphMarkRunProperties193.Append(fontSize592);
            paragraphMarkRunProperties193.Append(fontSizeComplexScript586);

            paragraphProperties193.Append(paragraphMarkRunProperties193);

            Run run435 = new Run();

            RunProperties runProperties464 = new RunProperties();
            RunFonts runFonts585 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize593 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript587 = new FontSizeComplexScript() { Val = "22" };

            runProperties464.Append(runFonts585);
            runProperties464.Append(fontSize593);
            runProperties464.Append(fontSizeComplexScript587);
            Text text404 = new Text();
            text404.Text = "BJC DBA Statement of Work:";

            run435.Append(runProperties464);
            run435.Append(text404);

            Run run436 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties465 = new RunProperties();
            RunFonts runFonts586 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize594 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript588 = new FontSizeComplexScript() { Val = "22" };

            runProperties465.Append(runFonts586);
            runProperties465.Append(fontSize594);
            runProperties465.Append(fontSizeComplexScript588);
            Text text405 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text405.Text = " ";

            run436.Append(runProperties465);
            run436.Append(text405);

            Run run437 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties466 = new RunProperties();
            RunFonts runFonts587 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color166 = new Color() { Val = "FF0000" };
            FontSize fontSize595 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript589 = new FontSizeComplexScript() { Val = "22" };

            runProperties466.Append(runFonts587);
            runProperties466.Append(color166);
            runProperties466.Append(fontSize595);
            runProperties466.Append(fontSizeComplexScript589);
            Text text406 = new Text();
            text406.Text = "xxxx";

            run437.Append(runProperties466);
            run437.Append(text406);

            paragraph196.Append(paragraphProperties193);
            paragraph196.Append(run435);
            paragraph196.Append(run436);
            paragraph196.Append(run437);

            Paragraph paragraph197 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E518DD", ParagraphId = "0AAC1A63", TextId = "0D58B179" };

            ParagraphProperties paragraphProperties194 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId17 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties194 = new ParagraphMarkRunProperties();
            Underline underline60 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties194.Append(underline60);

            paragraphProperties194.Append(paragraphStyleId17);
            paragraphProperties194.Append(paragraphMarkRunProperties194);

            Run run438 = new Run();

            RunProperties runProperties467 = new RunProperties();
            Underline underline61 = new Underline() { Val = UnderlineValues.Single };

            runProperties467.Append(underline61);
            Text text407 = new Text();
            text407.Text = "1";

            run438.Append(runProperties467);
            run438.Append(text407);

            Run run439 = new Run() { RsidRunAddition = "002B0580" };

            RunProperties runProperties468 = new RunProperties();
            Underline underline62 = new Underline() { Val = UnderlineValues.Single };

            runProperties468.Append(underline62);
            Text text408 = new Text();
            text408.Text = "3";

            run439.Append(runProperties468);
            run439.Append(text408);

            Run run440 = new Run();

            RunProperties runProperties469 = new RunProperties();
            Underline underline63 = new Underline() { Val = UnderlineValues.Single };

            runProperties469.Append(underline63);
            Text text409 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text409.Text = ". ";

            run440.Append(runProperties469);
            run440.Append(text409);

            Run run441 = new Run() { RsidRunAddition = "0057090B" };

            RunProperties runProperties470 = new RunProperties();
            Underline underline64 = new Underline() { Val = UnderlineValues.Single };

            runProperties470.Append(underline64);
            Text text410 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text410.Text = "Drives Layouts and ";

            run441.Append(runProperties470);
            run441.Append(text410);

            Run run442 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties471 = new RunProperties();
            Underline underline65 = new Underline() { Val = UnderlineValues.Single };

            runProperties471.Append(underline65);
            Text text411 = new Text();
            text411.Text = "S";

            run442.Append(runProperties471);
            run442.Append(text411);

            Run run443 = new Run() { RsidRunAddition = "0057090B" };

            RunProperties runProperties472 = new RunProperties();
            Underline underline66 = new Underline() { Val = UnderlineValues.Single };

            runProperties472.Append(underline66);
            Text text412 = new Text();
            text412.Text = "ize";

            run443.Append(runProperties472);
            run443.Append(text412);

            Run run444 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties473 = new RunProperties();
            Color color167 = new Color() { Val = "FF0000" };
            Underline underline67 = new Underline() { Val = UnderlineValues.Single };

            runProperties473.Append(color167);
            runProperties473.Append(underline67);
            Text text413 = new Text();
            text413.Text = ": N/A";

            run444.Append(runProperties473);
            run444.Append(text413);

            paragraph197.Append(paragraphProperties194);
            paragraph197.Append(run438);
            paragraph197.Append(run439);
            paragraph197.Append(run440);
            paragraph197.Append(run441);
            paragraph197.Append(run442);
            paragraph197.Append(run443);
            paragraph197.Append(run444);

            Paragraph paragraph198 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00BF26D7", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00BF26D7", ParagraphId = "0AAC1A64", TextId = "77777777" };

            ParagraphProperties paragraphProperties195 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties195 = new ParagraphMarkRunProperties();
            RunFonts runFonts588 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize596 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript590 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties195.Append(runFonts588);
            paragraphMarkRunProperties195.Append(fontSize596);
            paragraphMarkRunProperties195.Append(fontSizeComplexScript590);

            paragraphProperties195.Append(paragraphMarkRunProperties195);

            Run run445 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties474 = new RunProperties();
            RunFonts runFonts589 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize597 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript591 = new FontSizeComplexScript() { Val = "22" };

            runProperties474.Append(runFonts589);
            runProperties474.Append(fontSize597);
            runProperties474.Append(fontSizeComplexScript591);
            Text text414 = new Text();
            text414.Text = "Host Name:";

            run445.Append(runProperties474);
            run445.Append(text414);

            Run run446 = new Run() { RsidRunAddition = "00F97B58" };

            RunProperties runProperties475 = new RunProperties();
            RunFonts runFonts590 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize598 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript592 = new FontSizeComplexScript() { Val = "22" };

            runProperties475.Append(runFonts590);
            runProperties475.Append(fontSize598);
            runProperties475.Append(fontSizeComplexScript592);
            Text text415 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text415.Text = " ";

            run446.Append(runProperties475);
            run446.Append(text415);

            Run run447 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00EA764C" };

            RunProperties runProperties476 = new RunProperties();
            RunFonts runFonts591 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color168 = new Color() { Val = "FF0000" };
            FontSize fontSize599 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript593 = new FontSizeComplexScript() { Val = "22" };

            runProperties476.Append(runFonts591);
            runProperties476.Append(color168);
            runProperties476.Append(fontSize599);
            runProperties476.Append(fontSizeComplexScript593);
            Text text416 = new Text();
            text416.Text = "BJC";

            run447.Append(runProperties476);
            run447.Append(text416);

            Run run448 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties477 = new RunProperties();
            RunFonts runFonts592 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color169 = new Color() { Val = "FF0000" };
            FontSize fontSize600 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript594 = new FontSizeComplexScript() { Val = "22" };

            runProperties477.Append(runFonts592);
            runProperties477.Append(color169);
            runProperties477.Append(fontSize600);
            runProperties477.Append(fontSizeComplexScript594);
            Text text417 = new Text();
            text417.Text = "xxxxxx";

            run448.Append(runProperties477);
            run448.Append(text417);

            paragraph198.Append(paragraphProperties195);
            paragraph198.Append(run445);
            paragraph198.Append(run446);
            paragraph198.Append(run447);
            paragraph198.Append(run448);

            Table table5 = new Table();

            TableProperties tableProperties5 = new TableProperties();
            TableWidth tableWidth5 = new TableWidth() { Width = "0", Type = TableWidthUnitValues.Auto };
            TableIndentation tableIndentation1 = new TableIndentation() { Width = 1548, Type = TableWidthUnitValues.Dxa };

            TableBorders tableBorders3 = new TableBorders();
            TopBorder topBorder32 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder31 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder31 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder31 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder3 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder3 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableBorders3.Append(topBorder32);
            tableBorders3.Append(leftBorder31);
            tableBorders3.Append(bottomBorder31);
            tableBorders3.Append(rightBorder31);
            tableBorders3.Append(insideHorizontalBorder3);
            tableBorders3.Append(insideVerticalBorder3);
            TableLook tableLook5 = new TableLook() { Val = "01E0" };

            tableProperties5.Append(tableWidth5);
            tableProperties5.Append(tableIndentation1);
            tableProperties5.Append(tableBorders3);
            tableProperties5.Append(tableLook5);

            TableGrid tableGrid5 = new TableGrid();
            GridColumn gridColumn27 = new GridColumn() { Width = "1455" };
            GridColumn gridColumn28 = new GridColumn() { Width = "2356" };
            GridColumn gridColumn29 = new GridColumn() { Width = "2505" };
            GridColumn gridColumn30 = new GridColumn() { Width = "1712" };

            tableGrid5.Append(gridColumn27);
            tableGrid5.Append(gridColumn28);
            tableGrid5.Append(gridColumn29);
            tableGrid5.Append(gridColumn30);

            TableRow tableRow18 = new TableRow() { RsidTableRowMarkRevision = "000E2AF5", RsidTableRowAddition = "00116831", RsidTableRowProperties = "00727765", ParagraphId = "0AAC1A69", TextId = "77777777" };

            TableCell tableCell89 = new TableCell();

            TableCellProperties tableCellProperties89 = new TableCellProperties();
            TableCellWidth tableCellWidth89 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties89.Append(tableCellWidth89);

            Paragraph paragraph199 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1A65", TextId = "77777777" };

            ParagraphProperties paragraphProperties196 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties196 = new ParagraphMarkRunProperties();
            RunFonts runFonts593 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize601 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript595 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties196.Append(runFonts593);
            paragraphMarkRunProperties196.Append(fontSize601);
            paragraphMarkRunProperties196.Append(fontSizeComplexScript595);

            paragraphProperties196.Append(paragraphMarkRunProperties196);

            Run run449 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties478 = new RunProperties();
            RunFonts runFonts594 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize602 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript596 = new FontSizeComplexScript() { Val = "22" };

            runProperties478.Append(runFonts594);
            runProperties478.Append(fontSize602);
            runProperties478.Append(fontSizeComplexScript596);
            Text text418 = new Text();
            text418.Text = "Drive Letter";

            run449.Append(runProperties478);
            run449.Append(text418);

            paragraph199.Append(paragraphProperties196);
            paragraph199.Append(run449);

            tableCell89.Append(tableCellProperties89);
            tableCell89.Append(paragraph199);

            TableCell tableCell90 = new TableCell();

            TableCellProperties tableCellProperties90 = new TableCellProperties();
            TableCellWidth tableCellWidth90 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties90.Append(tableCellWidth90);

            Paragraph paragraph200 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1A66", TextId = "77777777" };

            ParagraphProperties paragraphProperties197 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties197 = new ParagraphMarkRunProperties();
            RunFonts runFonts595 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize603 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript597 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties197.Append(runFonts595);
            paragraphMarkRunProperties197.Append(fontSize603);
            paragraphMarkRunProperties197.Append(fontSizeComplexScript597);

            paragraphProperties197.Append(paragraphMarkRunProperties197);

            Run run450 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties479 = new RunProperties();
            RunFonts runFonts596 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize604 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript598 = new FontSizeComplexScript() { Val = "22" };

            runProperties479.Append(runFonts596);
            runProperties479.Append(fontSize604);
            runProperties479.Append(fontSizeComplexScript598);
            Text text419 = new Text();
            text419.Text = "Volume Name";

            run450.Append(runProperties479);
            run450.Append(text419);

            paragraph200.Append(paragraphProperties197);
            paragraph200.Append(run450);

            tableCell90.Append(tableCellProperties90);
            tableCell90.Append(paragraph200);

            TableCell tableCell91 = new TableCell();

            TableCellProperties tableCellProperties91 = new TableCellProperties();
            TableCellWidth tableCellWidth91 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties91.Append(tableCellWidth91);

            Paragraph paragraph201 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1A67", TextId = "77777777" };

            ParagraphProperties paragraphProperties198 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties198 = new ParagraphMarkRunProperties();
            RunFonts runFonts597 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize605 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript599 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties198.Append(runFonts597);
            paragraphMarkRunProperties198.Append(fontSize605);
            paragraphMarkRunProperties198.Append(fontSizeComplexScript599);

            paragraphProperties198.Append(paragraphMarkRunProperties198);

            Run run451 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties480 = new RunProperties();
            RunFonts runFonts598 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize606 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript600 = new FontSizeComplexScript() { Val = "22" };

            runProperties480.Append(runFonts598);
            runProperties480.Append(fontSize606);
            runProperties480.Append(fontSizeComplexScript600);
            Text text420 = new Text();
            text420.Text = "Type of data";

            run451.Append(runProperties480);
            run451.Append(text420);

            paragraph201.Append(paragraphProperties198);
            paragraph201.Append(run451);

            tableCell91.Append(tableCellProperties91);
            tableCell91.Append(paragraph201);

            TableCell tableCell92 = new TableCell();

            TableCellProperties tableCellProperties92 = new TableCellProperties();
            TableCellWidth tableCellWidth92 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties92.Append(tableCellWidth92);

            Paragraph paragraph202 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1A68", TextId = "77777777" };

            ParagraphProperties paragraphProperties199 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties199 = new ParagraphMarkRunProperties();
            RunFonts runFonts599 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize607 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript601 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties199.Append(runFonts599);
            paragraphMarkRunProperties199.Append(fontSize607);
            paragraphMarkRunProperties199.Append(fontSizeComplexScript601);

            paragraphProperties199.Append(paragraphMarkRunProperties199);

            Run run452 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties481 = new RunProperties();
            RunFonts runFonts600 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize608 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript602 = new FontSizeComplexScript() { Val = "22" };

            runProperties481.Append(runFonts600);
            runProperties481.Append(fontSize608);
            runProperties481.Append(fontSizeComplexScript602);
            Text text421 = new Text();
            text421.Text = "Size";

            run452.Append(runProperties481);
            run452.Append(text421);

            paragraph202.Append(paragraphProperties199);
            paragraph202.Append(run452);

            tableCell92.Append(tableCellProperties92);
            tableCell92.Append(paragraph202);

            tableRow18.Append(tableCell89);
            tableRow18.Append(tableCell90);
            tableRow18.Append(tableCell91);
            tableRow18.Append(tableCell92);

            TableRow tableRow19 = new TableRow() { RsidTableRowMarkRevision = "00F97B58", RsidTableRowAddition = "00F97B58", RsidTableRowProperties = "00727765", ParagraphId = "0AAC1A6E", TextId = "77777777" };

            TableCell tableCell93 = new TableCell();

            TableCellProperties tableCellProperties93 = new TableCellProperties();
            TableCellWidth tableCellWidth93 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties93.Append(tableCellWidth93);

            Paragraph paragraph203 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00016F9B", ParagraphId = "0AAC1A6A", TextId = "77777777" };

            ParagraphProperties paragraphProperties200 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties200 = new ParagraphMarkRunProperties();
            RunFonts runFonts601 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color170 = new Color() { Val = "FF0000" };
            FontSize fontSize609 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript603 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties200.Append(runFonts601);
            paragraphMarkRunProperties200.Append(color170);
            paragraphMarkRunProperties200.Append(fontSize609);
            paragraphMarkRunProperties200.Append(fontSizeComplexScript603);

            paragraphProperties200.Append(paragraphMarkRunProperties200);

            Run run453 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties482 = new RunProperties();
            RunFonts runFonts602 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color171 = new Color() { Val = "FF0000" };
            FontSize fontSize610 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript604 = new FontSizeComplexScript() { Val = "22" };

            runProperties482.Append(runFonts602);
            runProperties482.Append(color171);
            runProperties482.Append(fontSize610);
            runProperties482.Append(fontSizeComplexScript604);
            LastRenderedPageBreak lastRenderedPageBreak5 = new LastRenderedPageBreak();
            Text text422 = new Text();
            text422.Text = "D";

            run453.Append(runProperties482);
            run453.Append(lastRenderedPageBreak5);
            run453.Append(text422);

            paragraph203.Append(paragraphProperties200);
            paragraph203.Append(run453);

            tableCell93.Append(tableCellProperties93);
            tableCell93.Append(paragraph203);

            TableCell tableCell94 = new TableCell();

            TableCellProperties tableCellProperties94 = new TableCellProperties();
            TableCellWidth tableCellWidth94 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties94.Append(tableCellWidth94);

            Paragraph paragraph204 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00016F9B", ParagraphId = "0AAC1A6B", TextId = "77777777" };

            ParagraphProperties paragraphProperties201 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties201 = new ParagraphMarkRunProperties();
            RunFonts runFonts603 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color172 = new Color() { Val = "FF0000" };
            FontSize fontSize611 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript605 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties201.Append(runFonts603);
            paragraphMarkRunProperties201.Append(color172);
            paragraphMarkRunProperties201.Append(fontSize611);
            paragraphMarkRunProperties201.Append(fontSizeComplexScript605);

            paragraphProperties201.Append(paragraphMarkRunProperties201);

            Run run454 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties483 = new RunProperties();
            RunFonts runFonts604 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color173 = new Color() { Val = "FF0000" };
            FontSize fontSize612 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript606 = new FontSizeComplexScript() { Val = "22" };

            runProperties483.Append(runFonts604);
            runProperties483.Append(color173);
            runProperties483.Append(fontSize612);
            runProperties483.Append(fontSizeComplexScript606);
            Text text423 = new Text();
            text423.Text = "D";

            run454.Append(runProperties483);
            run454.Append(text423);

            Run run455 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties484 = new RunProperties();
            RunFonts runFonts605 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color174 = new Color() { Val = "FF0000" };
            FontSize fontSize613 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript607 = new FontSizeComplexScript() { Val = "22" };

            runProperties484.Append(runFonts605);
            runProperties484.Append(color174);
            runProperties484.Append(fontSize613);
            runProperties484.Append(fontSizeComplexScript607);
            Text text424 = new Text();
            text424.Text = "ATA";

            run455.Append(runProperties484);
            run455.Append(text424);

            paragraph204.Append(paragraphProperties201);
            paragraph204.Append(run454);
            paragraph204.Append(run455);

            tableCell94.Append(tableCellProperties94);
            tableCell94.Append(paragraph204);

            TableCell tableCell95 = new TableCell();

            TableCellProperties tableCellProperties95 = new TableCellProperties();
            TableCellWidth tableCellWidth95 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties95.Append(tableCellWidth95);

            Paragraph paragraph205 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00016F9B", ParagraphId = "0AAC1A6C", TextId = "77777777" };

            ParagraphProperties paragraphProperties202 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties202 = new ParagraphMarkRunProperties();
            RunFonts runFonts606 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color175 = new Color() { Val = "FF0000" };
            FontSize fontSize614 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript608 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties202.Append(runFonts606);
            paragraphMarkRunProperties202.Append(color175);
            paragraphMarkRunProperties202.Append(fontSize614);
            paragraphMarkRunProperties202.Append(fontSizeComplexScript608);

            paragraphProperties202.Append(paragraphMarkRunProperties202);

            Run run456 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties485 = new RunProperties();
            RunFonts runFonts607 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color176 = new Color() { Val = "FF0000" };
            FontSize fontSize615 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript609 = new FontSizeComplexScript() { Val = "22" };

            runProperties485.Append(runFonts607);
            runProperties485.Append(color176);
            runProperties485.Append(fontSize615);
            runProperties485.Append(fontSizeComplexScript609);
            Text text425 = new Text();
            text425.Text = "SQL Data";

            run456.Append(runProperties485);
            run456.Append(text425);

            paragraph205.Append(paragraphProperties202);
            paragraph205.Append(run456);

            tableCell95.Append(tableCellProperties95);
            tableCell95.Append(paragraph205);

            TableCell tableCell96 = new TableCell();

            TableCellProperties tableCellProperties96 = new TableCellProperties();
            TableCellWidth tableCellWidth96 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties96.Append(tableCellWidth96);

            Paragraph paragraph206 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00095617", ParagraphId = "0AAC1A6D", TextId = "12784075" };

            ParagraphProperties paragraphProperties203 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties203 = new ParagraphMarkRunProperties();
            RunFonts runFonts608 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color177 = new Color() { Val = "FF0000" };
            FontSize fontSize616 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript610 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties203.Append(runFonts608);
            paragraphMarkRunProperties203.Append(color177);
            paragraphMarkRunProperties203.Append(fontSize616);
            paragraphMarkRunProperties203.Append(fontSizeComplexScript610);

            paragraphProperties203.Append(paragraphMarkRunProperties203);

            Run run457 = new Run();

            RunProperties runProperties486 = new RunProperties();
            RunFonts runFonts609 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color178 = new Color() { Val = "FF0000" };
            FontSize fontSize617 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript611 = new FontSizeComplexScript() { Val = "22" };

            runProperties486.Append(runFonts609);
            runProperties486.Append(color178);
            runProperties486.Append(fontSize617);
            runProperties486.Append(fontSizeComplexScript611);
            Text text426 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text426.Text = "X ";

            run457.Append(runProperties486);
            run457.Append(text426);

            Run run458 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties487 = new RunProperties();
            RunFonts runFonts610 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color179 = new Color() { Val = "FF0000" };
            FontSize fontSize618 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript612 = new FontSizeComplexScript() { Val = "22" };

            runProperties487.Append(runFonts610);
            runProperties487.Append(color179);
            runProperties487.Append(fontSize618);
            runProperties487.Append(fontSizeComplexScript612);
            Text text427 = new Text();
            text427.Text = "GB";

            run458.Append(runProperties487);
            run458.Append(text427);

            paragraph206.Append(paragraphProperties203);
            paragraph206.Append(run457);
            paragraph206.Append(run458);

            tableCell96.Append(tableCellProperties96);
            tableCell96.Append(paragraph206);

            tableRow19.Append(tableCell93);
            tableRow19.Append(tableCell94);
            tableRow19.Append(tableCell95);
            tableRow19.Append(tableCell96);

            TableRow tableRow20 = new TableRow() { RsidTableRowMarkRevision = "00F97B58", RsidTableRowAddition = "00F97B58", RsidTableRowProperties = "00727765", ParagraphId = "0AAC1A73", TextId = "77777777" };

            TableCell tableCell97 = new TableCell();

            TableCellProperties tableCellProperties97 = new TableCellProperties();
            TableCellWidth tableCellWidth97 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties97.Append(tableCellWidth97);

            Paragraph paragraph207 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A6F", TextId = "77777777" };

            ParagraphProperties paragraphProperties204 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties204 = new ParagraphMarkRunProperties();
            RunFonts runFonts611 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color180 = new Color() { Val = "FF0000" };
            FontSize fontSize619 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript613 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties204.Append(runFonts611);
            paragraphMarkRunProperties204.Append(color180);
            paragraphMarkRunProperties204.Append(fontSize619);
            paragraphMarkRunProperties204.Append(fontSizeComplexScript613);

            paragraphProperties204.Append(paragraphMarkRunProperties204);

            Run run459 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties488 = new RunProperties();
            RunFonts runFonts612 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color181 = new Color() { Val = "FF0000" };
            FontSize fontSize620 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript614 = new FontSizeComplexScript() { Val = "22" };

            runProperties488.Append(runFonts612);
            runProperties488.Append(color181);
            runProperties488.Append(fontSize620);
            runProperties488.Append(fontSizeComplexScript614);
            Text text428 = new Text();
            text428.Text = "E";

            run459.Append(runProperties488);
            run459.Append(text428);

            paragraph207.Append(paragraphProperties204);
            paragraph207.Append(run459);

            tableCell97.Append(tableCellProperties97);
            tableCell97.Append(paragraph207);

            TableCell tableCell98 = new TableCell();

            TableCellProperties tableCellProperties98 = new TableCellProperties();
            TableCellWidth tableCellWidth98 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties98.Append(tableCellWidth98);

            Paragraph paragraph208 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A70", TextId = "77777777" };

            ParagraphProperties paragraphProperties205 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties205 = new ParagraphMarkRunProperties();
            RunFonts runFonts613 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color182 = new Color() { Val = "FF0000" };
            FontSize fontSize621 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript615 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties205.Append(runFonts613);
            paragraphMarkRunProperties205.Append(color182);
            paragraphMarkRunProperties205.Append(fontSize621);
            paragraphMarkRunProperties205.Append(fontSizeComplexScript615);

            paragraphProperties205.Append(paragraphMarkRunProperties205);

            Run run460 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties489 = new RunProperties();
            RunFonts runFonts614 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color183 = new Color() { Val = "FF0000" };
            FontSize fontSize622 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript616 = new FontSizeComplexScript() { Val = "22" };

            runProperties489.Append(runFonts614);
            runProperties489.Append(color183);
            runProperties489.Append(fontSize622);
            runProperties489.Append(fontSizeComplexScript616);
            Text text429 = new Text();
            text429.Text = "LOGS";

            run460.Append(runProperties489);
            run460.Append(text429);

            paragraph208.Append(paragraphProperties205);
            paragraph208.Append(run460);

            tableCell98.Append(tableCellProperties98);
            tableCell98.Append(paragraph208);

            TableCell tableCell99 = new TableCell();

            TableCellProperties tableCellProperties99 = new TableCellProperties();
            TableCellWidth tableCellWidth99 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties99.Append(tableCellWidth99);

            Paragraph paragraph209 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A71", TextId = "77777777" };

            ParagraphProperties paragraphProperties206 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties206 = new ParagraphMarkRunProperties();
            RunFonts runFonts615 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color184 = new Color() { Val = "FF0000" };
            FontSize fontSize623 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript617 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties206.Append(runFonts615);
            paragraphMarkRunProperties206.Append(color184);
            paragraphMarkRunProperties206.Append(fontSize623);
            paragraphMarkRunProperties206.Append(fontSizeComplexScript617);

            paragraphProperties206.Append(paragraphMarkRunProperties206);

            Run run461 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties490 = new RunProperties();
            RunFonts runFonts616 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color185 = new Color() { Val = "FF0000" };
            FontSize fontSize624 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript618 = new FontSizeComplexScript() { Val = "22" };

            runProperties490.Append(runFonts616);
            runProperties490.Append(color185);
            runProperties490.Append(fontSize624);
            runProperties490.Append(fontSizeComplexScript618);
            Text text430 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text430.Text = "SQL Logs ";

            run461.Append(runProperties490);
            run461.Append(text430);

            paragraph209.Append(paragraphProperties206);
            paragraph209.Append(run461);

            tableCell99.Append(tableCellProperties99);
            tableCell99.Append(paragraph209);

            TableCell tableCell100 = new TableCell();

            TableCellProperties tableCellProperties100 = new TableCellProperties();
            TableCellWidth tableCellWidth100 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties100.Append(tableCellWidth100);

            Paragraph paragraph210 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00095617", ParagraphId = "0AAC1A72", TextId = "7ACE2FB4" };

            ParagraphProperties paragraphProperties207 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties207 = new ParagraphMarkRunProperties();
            RunFonts runFonts617 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color186 = new Color() { Val = "FF0000" };
            FontSize fontSize625 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript619 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties207.Append(runFonts617);
            paragraphMarkRunProperties207.Append(color186);
            paragraphMarkRunProperties207.Append(fontSize625);
            paragraphMarkRunProperties207.Append(fontSizeComplexScript619);

            paragraphProperties207.Append(paragraphMarkRunProperties207);

            Run run462 = new Run();

            RunProperties runProperties491 = new RunProperties();
            RunFonts runFonts618 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color187 = new Color() { Val = "FF0000" };
            FontSize fontSize626 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript620 = new FontSizeComplexScript() { Val = "22" };

            runProperties491.Append(runFonts618);
            runProperties491.Append(color187);
            runProperties491.Append(fontSize626);
            runProperties491.Append(fontSizeComplexScript620);
            Text text431 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text431.Text = "X ";

            run462.Append(runProperties491);
            run462.Append(text431);

            Run run463 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties492 = new RunProperties();
            RunFonts runFonts619 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color188 = new Color() { Val = "FF0000" };
            FontSize fontSize627 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript621 = new FontSizeComplexScript() { Val = "22" };

            runProperties492.Append(runFonts619);
            runProperties492.Append(color188);
            runProperties492.Append(fontSize627);
            runProperties492.Append(fontSizeComplexScript621);
            Text text432 = new Text();
            text432.Text = "GB";

            run463.Append(runProperties492);
            run463.Append(text432);

            paragraph210.Append(paragraphProperties207);
            paragraph210.Append(run462);
            paragraph210.Append(run463);

            tableCell100.Append(tableCellProperties100);
            tableCell100.Append(paragraph210);

            tableRow20.Append(tableCell97);
            tableRow20.Append(tableCell98);
            tableRow20.Append(tableCell99);
            tableRow20.Append(tableCell100);

            TableRow tableRow21 = new TableRow() { RsidTableRowMarkRevision = "00F97B58", RsidTableRowAddition = "00F97B58", RsidTableRowProperties = "00727765", ParagraphId = "0AAC1A78", TextId = "77777777" };

            TableCell tableCell101 = new TableCell();

            TableCellProperties tableCellProperties101 = new TableCellProperties();
            TableCellWidth tableCellWidth101 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties101.Append(tableCellWidth101);

            Paragraph paragraph211 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00016F9B", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A74", TextId = "77777777" };

            ParagraphProperties paragraphProperties208 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties208 = new ParagraphMarkRunProperties();
            RunFonts runFonts620 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color189 = new Color() { Val = "FF0000" };
            FontSize fontSize628 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript622 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties208.Append(runFonts620);
            paragraphMarkRunProperties208.Append(color189);
            paragraphMarkRunProperties208.Append(fontSize628);
            paragraphMarkRunProperties208.Append(fontSizeComplexScript622);

            paragraphProperties208.Append(paragraphMarkRunProperties208);

            Run run464 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties493 = new RunProperties();
            RunFonts runFonts621 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color190 = new Color() { Val = "FF0000" };
            FontSize fontSize629 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript623 = new FontSizeComplexScript() { Val = "22" };

            runProperties493.Append(runFonts621);
            runProperties493.Append(color190);
            runProperties493.Append(fontSize629);
            runProperties493.Append(fontSizeComplexScript623);
            Text text433 = new Text();
            text433.Text = "F";

            run464.Append(runProperties493);
            run464.Append(text433);

            paragraph211.Append(paragraphProperties208);
            paragraph211.Append(run464);

            tableCell101.Append(tableCellProperties101);
            tableCell101.Append(paragraph211);

            TableCell tableCell102 = new TableCell();

            TableCellProperties tableCellProperties102 = new TableCellProperties();
            TableCellWidth tableCellWidth102 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties102.Append(tableCellWidth102);

            Paragraph paragraph212 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00016F9B", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A75", TextId = "77777777" };

            ParagraphProperties paragraphProperties209 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties209 = new ParagraphMarkRunProperties();
            RunFonts runFonts622 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color191 = new Color() { Val = "FF0000" };
            FontSize fontSize630 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript624 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties209.Append(runFonts622);
            paragraphMarkRunProperties209.Append(color191);
            paragraphMarkRunProperties209.Append(fontSize630);
            paragraphMarkRunProperties209.Append(fontSizeComplexScript624);

            paragraphProperties209.Append(paragraphMarkRunProperties209);

            Run run465 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties494 = new RunProperties();
            RunFonts runFonts623 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color192 = new Color() { Val = "FF0000" };
            FontSize fontSize631 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript625 = new FontSizeComplexScript() { Val = "22" };

            runProperties494.Append(runFonts623);
            runProperties494.Append(color192);
            runProperties494.Append(fontSize631);
            runProperties494.Append(fontSizeComplexScript625);
            Text text434 = new Text();
            text434.Text = "TEMPDB";

            run465.Append(runProperties494);
            run465.Append(text434);

            paragraph212.Append(paragraphProperties209);
            paragraph212.Append(run465);

            tableCell102.Append(tableCellProperties102);
            tableCell102.Append(paragraph212);

            TableCell tableCell103 = new TableCell();

            TableCellProperties tableCellProperties103 = new TableCellProperties();
            TableCellWidth tableCellWidth103 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties103.Append(tableCellWidth103);

            Paragraph paragraph213 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00016F9B", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00F97B58", ParagraphId = "0AAC1A76", TextId = "77777777" };

            ParagraphProperties paragraphProperties210 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties210 = new ParagraphMarkRunProperties();
            RunFonts runFonts624 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color193 = new Color() { Val = "FF0000" };
            FontSize fontSize632 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript626 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties210.Append(runFonts624);
            paragraphMarkRunProperties210.Append(color193);
            paragraphMarkRunProperties210.Append(fontSize632);
            paragraphMarkRunProperties210.Append(fontSizeComplexScript626);

            paragraphProperties210.Append(paragraphMarkRunProperties210);

            Run run466 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties495 = new RunProperties();
            RunFonts runFonts625 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color194 = new Color() { Val = "FF0000" };
            FontSize fontSize633 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript627 = new FontSizeComplexScript() { Val = "22" };

            runProperties495.Append(runFonts625);
            runProperties495.Append(color194);
            runProperties495.Append(fontSize633);
            runProperties495.Append(fontSizeComplexScript627);
            Text text435 = new Text();
            text435.Text = "SQL Index";

            run466.Append(runProperties495);
            run466.Append(text435);

            paragraph213.Append(paragraphProperties210);
            paragraph213.Append(run466);

            tableCell103.Append(tableCellProperties103);
            tableCell103.Append(paragraph213);

            TableCell tableCell104 = new TableCell();

            TableCellProperties tableCellProperties104 = new TableCellProperties();
            TableCellWidth tableCellWidth104 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties104.Append(tableCellWidth104);

            Paragraph paragraph214 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00016F9B", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00095617", ParagraphId = "0AAC1A77", TextId = "02A32CD9" };

            ParagraphProperties paragraphProperties211 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties211 = new ParagraphMarkRunProperties();
            RunFonts runFonts626 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color195 = new Color() { Val = "FF0000" };
            FontSize fontSize634 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript628 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties211.Append(runFonts626);
            paragraphMarkRunProperties211.Append(color195);
            paragraphMarkRunProperties211.Append(fontSize634);
            paragraphMarkRunProperties211.Append(fontSizeComplexScript628);

            paragraphProperties211.Append(paragraphMarkRunProperties211);

            Run run467 = new Run();

            RunProperties runProperties496 = new RunProperties();
            RunFonts runFonts627 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color196 = new Color() { Val = "FF0000" };
            FontSize fontSize635 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript629 = new FontSizeComplexScript() { Val = "22" };

            runProperties496.Append(runFonts627);
            runProperties496.Append(color196);
            runProperties496.Append(fontSize635);
            runProperties496.Append(fontSizeComplexScript629);
            Text text436 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text436.Text = "X*.20 ";

            run467.Append(runProperties496);
            run467.Append(text436);

            Run run468 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties497 = new RunProperties();
            RunFonts runFonts628 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color197 = new Color() { Val = "FF0000" };
            FontSize fontSize636 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript630 = new FontSizeComplexScript() { Val = "22" };

            runProperties497.Append(runFonts628);
            runProperties497.Append(color197);
            runProperties497.Append(fontSize636);
            runProperties497.Append(fontSizeComplexScript630);
            Text text437 = new Text();
            text437.Text = "GB";

            run468.Append(runProperties497);
            run468.Append(text437);

            paragraph214.Append(paragraphProperties211);
            paragraph214.Append(run467);
            paragraph214.Append(run468);

            tableCell104.Append(tableCellProperties104);
            tableCell104.Append(paragraph214);

            tableRow21.Append(tableCell101);
            tableRow21.Append(tableCell102);
            tableRow21.Append(tableCell103);
            tableRow21.Append(tableCell104);

            TableRow tableRow22 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00A565FD", RsidTableRowProperties = "00727765", ParagraphId = "0AAC1A7D", TextId = "77777777" };

            TableCell tableCell105 = new TableCell();

            TableCellProperties tableCellProperties105 = new TableCellProperties();
            TableCellWidth tableCellWidth105 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties105.Append(tableCellWidth105);

            Paragraph paragraph215 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A565FD", ParagraphId = "0AAC1A79", TextId = "77777777" };

            ParagraphProperties paragraphProperties212 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties212 = new ParagraphMarkRunProperties();
            RunFonts runFonts629 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color198 = new Color() { Val = "FF0000" };
            FontSize fontSize637 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript631 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties212.Append(runFonts629);
            paragraphMarkRunProperties212.Append(color198);
            paragraphMarkRunProperties212.Append(fontSize637);
            paragraphMarkRunProperties212.Append(fontSizeComplexScript631);

            paragraphProperties212.Append(paragraphMarkRunProperties212);

            Run run469 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties498 = new RunProperties();
            RunFonts runFonts630 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color199 = new Color() { Val = "FF0000" };
            FontSize fontSize638 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript632 = new FontSizeComplexScript() { Val = "22" };

            runProperties498.Append(runFonts630);
            runProperties498.Append(color199);
            runProperties498.Append(fontSize638);
            runProperties498.Append(fontSizeComplexScript632);
            Text text438 = new Text();
            text438.Text = "Q";

            run469.Append(runProperties498);
            run469.Append(text438);

            paragraph215.Append(paragraphProperties212);
            paragraph215.Append(run469);

            tableCell105.Append(tableCellProperties105);
            tableCell105.Append(paragraph215);

            TableCell tableCell106 = new TableCell();

            TableCellProperties tableCellProperties106 = new TableCellProperties();
            TableCellWidth tableCellWidth106 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties106.Append(tableCellWidth106);

            Paragraph paragraph216 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A565FD", ParagraphId = "0AAC1A7A", TextId = "77777777" };

            ParagraphProperties paragraphProperties213 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties213 = new ParagraphMarkRunProperties();
            RunFonts runFonts631 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color200 = new Color() { Val = "FF0000" };
            FontSize fontSize639 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript633 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties213.Append(runFonts631);
            paragraphMarkRunProperties213.Append(color200);
            paragraphMarkRunProperties213.Append(fontSize639);
            paragraphMarkRunProperties213.Append(fontSizeComplexScript633);

            paragraphProperties213.Append(paragraphMarkRunProperties213);

            Run run470 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties499 = new RunProperties();
            RunFonts runFonts632 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color201 = new Color() { Val = "FF0000" };
            FontSize fontSize640 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript634 = new FontSizeComplexScript() { Val = "22" };

            runProperties499.Append(runFonts632);
            runProperties499.Append(color201);
            runProperties499.Append(fontSize640);
            runProperties499.Append(fontSizeComplexScript634);
            Text text439 = new Text();
            text439.Text = "QUORUM";

            run470.Append(runProperties499);
            run470.Append(text439);

            paragraph216.Append(paragraphProperties213);
            paragraph216.Append(run470);

            tableCell106.Append(tableCellProperties106);
            tableCell106.Append(paragraph216);

            TableCell tableCell107 = new TableCell();

            TableCellProperties tableCellProperties107 = new TableCellProperties();
            TableCellWidth tableCellWidth107 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties107.Append(tableCellWidth107);

            Paragraph paragraph217 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A565FD", ParagraphId = "0AAC1A7B", TextId = "77777777" };

            ParagraphProperties paragraphProperties214 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties214 = new ParagraphMarkRunProperties();
            RunFonts runFonts633 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color202 = new Color() { Val = "FF0000" };
            FontSize fontSize641 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript635 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties214.Append(runFonts633);
            paragraphMarkRunProperties214.Append(color202);
            paragraphMarkRunProperties214.Append(fontSize641);
            paragraphMarkRunProperties214.Append(fontSizeComplexScript635);

            paragraphProperties214.Append(paragraphMarkRunProperties214);

            Run run471 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties500 = new RunProperties();
            RunFonts runFonts634 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color203 = new Color() { Val = "FF0000" };
            FontSize fontSize642 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript636 = new FontSizeComplexScript() { Val = "22" };

            runProperties500.Append(runFonts634);
            runProperties500.Append(color203);
            runProperties500.Append(fontSize642);
            runProperties500.Append(fontSizeComplexScript636);
            Text text440 = new Text();
            text440.Text = "Cluster_Quorum";

            run471.Append(runProperties500);
            run471.Append(text440);

            paragraph217.Append(paragraphProperties214);
            paragraph217.Append(run471);

            tableCell107.Append(tableCellProperties107);
            tableCell107.Append(paragraph217);

            TableCell tableCell108 = new TableCell();

            TableCellProperties tableCellProperties108 = new TableCellProperties();
            TableCellWidth tableCellWidth108 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties108.Append(tableCellWidth108);

            Paragraph paragraph218 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A565FD", ParagraphId = "0AAC1A7C", TextId = "77777777" };

            ParagraphProperties paragraphProperties215 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties215 = new ParagraphMarkRunProperties();
            RunFonts runFonts635 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color204 = new Color() { Val = "FF0000" };
            FontSize fontSize643 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript637 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties215.Append(runFonts635);
            paragraphMarkRunProperties215.Append(color204);
            paragraphMarkRunProperties215.Append(fontSize643);
            paragraphMarkRunProperties215.Append(fontSizeComplexScript637);

            paragraphProperties215.Append(paragraphMarkRunProperties215);

            Run run472 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties501 = new RunProperties();
            RunFonts runFonts636 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color205 = new Color() { Val = "FF0000" };
            FontSize fontSize644 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript638 = new FontSizeComplexScript() { Val = "22" };

            runProperties501.Append(runFonts636);
            runProperties501.Append(color205);
            runProperties501.Append(fontSize644);
            runProperties501.Append(fontSizeComplexScript638);
            Text text441 = new Text();
            text441.Text = "500mb";

            run472.Append(runProperties501);
            run472.Append(text441);

            paragraph218.Append(paragraphProperties215);
            paragraph218.Append(run472);

            tableCell108.Append(tableCellProperties108);
            tableCell108.Append(paragraph218);

            tableRow22.Append(tableCell105);
            tableRow22.Append(tableCell106);
            tableRow22.Append(tableCell107);
            tableRow22.Append(tableCell108);

            TableRow tableRow23 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00F12AD5", RsidTableRowProperties = "00F808A3", ParagraphId = "47C0104F", TextId = "77777777" };

            TableCell tableCell109 = new TableCell();

            TableCellProperties tableCellProperties109 = new TableCellProperties();
            TableCellWidth tableCellWidth109 = new TableCellWidth() { Width = "8028", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan1 = new GridSpan() { Val = 4 };

            tableCellProperties109.Append(tableCellWidth109);
            tableCellProperties109.Append(gridSpan1);

            Paragraph paragraph219 = new Paragraph() { RsidParagraphMarkRevision = "00747E89", RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00055557", RsidRunAdditionDefault = "00F12AD5", ParagraphId = "2788D780", TextId = "51D8F606" };

            ParagraphProperties paragraphProperties216 = new ParagraphProperties();
            Justification justification76 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties216 = new ParagraphMarkRunProperties();
            RunFonts runFonts637 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color206 = new Color() { Val = "FF0000" };
            FontSize fontSize645 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript639 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties216.Append(runFonts637);
            paragraphMarkRunProperties216.Append(color206);
            paragraphMarkRunProperties216.Append(fontSize645);
            paragraphMarkRunProperties216.Append(fontSizeComplexScript639);

            paragraphProperties216.Append(justification76);
            paragraphProperties216.Append(paragraphMarkRunProperties216);

            Run run473 = new Run() { RsidRunProperties = "00F12AD5" };

            RunProperties runProperties502 = new RunProperties();
            RunFonts runFonts638 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold96 = new Bold();
            FontSize fontSize646 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript640 = new FontSizeComplexScript() { Val = "22" };

            runProperties502.Append(runFonts638);
            runProperties502.Append(bold96);
            runProperties502.Append(fontSize646);
            runProperties502.Append(fontSizeComplexScript640);
            Text text442 = new Text();
            text442.Text = "LINUX";

            run473.Append(runProperties502);
            run473.Append(text442);

            Run run474 = new Run() { RsidRunProperties = "00055557", RsidRunAddition = "00747E89" };

            RunProperties runProperties503 = new RunProperties();
            RunFonts runFonts639 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold97 = new Bold();
            Color color207 = new Color() { Val = "7030A0" };
            FontSize fontSize647 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript641 = new FontSizeComplexScript() { Val = "22" };

            runProperties503.Append(runFonts639);
            runProperties503.Append(bold97);
            runProperties503.Append(color207);
            runProperties503.Append(fontSize647);
            runProperties503.Append(fontSizeComplexScript641);
            Text text443 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text443.Text = " ";

            run474.Append(runProperties503);
            run474.Append(text443);

            Run run475 = new Run() { RsidRunProperties = "00055557", RsidRunAddition = "00747E89" };

            RunProperties runProperties504 = new RunProperties();
            RunFonts runFonts640 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color208 = new Color() { Val = "7030A0" };
            FontSize fontSize648 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript642 = new FontSizeComplexScript() { Val = "22" };

            runProperties504.Append(runFonts640);
            runProperties504.Append(color208);
            runProperties504.Append(fontSize648);
            runProperties504.Append(fontSizeComplexScript642);
            Text text444 = new Text();
            text444.Text = "(";

            run475.Append(runProperties504);
            run475.Append(text444);

            Run run476 = new Run() { RsidRunProperties = "00055557", RsidRunAddition = "00055557" };

            RunProperties runProperties505 = new RunProperties();
            RunFonts runFonts641 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color209 = new Color() { Val = "7030A0" };
            FontSize fontSize649 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript643 = new FontSizeComplexScript() { Val = "22" };

            runProperties505.Append(runFonts641);
            runProperties505.Append(color209);
            runProperties505.Append(fontSize649);
            runProperties505.Append(fontSizeComplexScript643);
            Text text445 = new Text();
            text445.Text = "logical volumes";

            run476.Append(runProperties505);
            run476.Append(text445);

            Run run477 = new Run() { RsidRunProperties = "00055557", RsidRunAddition = "00747E89" };

            RunProperties runProperties506 = new RunProperties();
            RunFonts runFonts642 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color210 = new Color() { Val = "7030A0" };
            FontSize fontSize650 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript644 = new FontSizeComplexScript() { Val = "22" };

            runProperties506.Append(runFonts642);
            runProperties506.Append(color210);
            runProperties506.Append(fontSize650);
            runProperties506.Append(fontSizeComplexScript644);
            Text text446 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text446.Text = " of ";

            run477.Append(runProperties506);
            run477.Append(text446);

            Run run478 = new Run() { RsidRunAddition = "003C2F92" };

            RunProperties runProperties507 = new RunProperties();
            RunFonts runFonts643 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color211 = new Color() { Val = "7030A0" };
            FontSize fontSize651 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript645 = new FontSizeComplexScript() { Val = "22" };

            runProperties507.Append(runFonts643);
            runProperties507.Append(color211);
            runProperties507.Append(fontSize651);
            runProperties507.Append(fontSizeComplexScript645);
            Text text447 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text447.Text = "vg_root - ";

            run478.Append(runProperties507);
            run478.Append(text447);

            Run run479 = new Run() { RsidRunProperties = "00055557", RsidRunAddition = "00747E89" };

            RunProperties runProperties508 = new RunProperties();
            RunFonts runFonts644 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color212 = new Color() { Val = "7030A0" };
            FontSize fontSize652 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript646 = new FontSizeComplexScript() { Val = "22" };

            runProperties508.Append(runFonts644);
            runProperties508.Append(color212);
            runProperties508.Append(fontSize652);
            runProperties508.Append(fontSizeComplexScript646);
            Text text448 = new Text();
            text448.Text = "60gb";

            run479.Append(runProperties508);
            run479.Append(text448);

            Run run480 = new Run() { RsidRunProperties = "00055557", RsidRunAddition = "00055557" };

            RunProperties runProperties509 = new RunProperties();
            RunFonts runFonts645 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color213 = new Color() { Val = "7030A0" };
            FontSize fontSize653 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript647 = new FontSizeComplexScript() { Val = "22" };

            runProperties509.Append(runFonts645);
            runProperties509.Append(color213);
            runProperties509.Append(fontSize653);
            runProperties509.Append(fontSizeComplexScript647);
            Text text449 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text449.Text = " drive";

            run480.Append(runProperties509);
            run480.Append(text449);

            Run run481 = new Run() { RsidRunAddition = "00614197" };

            RunProperties runProperties510 = new RunProperties();
            RunFonts runFonts646 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color214 = new Color() { Val = "7030A0" };
            FontSize fontSize654 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript648 = new FontSizeComplexScript() { Val = "22" };

            runProperties510.Append(runFonts646);
            runProperties510.Append(color214);
            runProperties510.Append(fontSize654);
            runProperties510.Append(fontSizeComplexScript648);
            Text text450 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text450.Text = " w/o Oracle or DB2";

            run481.Append(runProperties510);
            run481.Append(text450);

            Run run482 = new Run() { RsidRunProperties = "00055557", RsidRunAddition = "00055557" };

            RunProperties runProperties511 = new RunProperties();
            RunFonts runFonts647 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color215 = new Color() { Val = "7030A0" };
            FontSize fontSize655 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript649 = new FontSizeComplexScript() { Val = "22" };

            runProperties511.Append(runFonts647);
            runProperties511.Append(color215);
            runProperties511.Append(fontSize655);
            runProperties511.Append(fontSizeComplexScript649);
            Text text451 = new Text();
            text451.Text = ")";

            run482.Append(runProperties511);
            run482.Append(text451);

            paragraph219.Append(paragraphProperties216);
            paragraph219.Append(run473);
            paragraph219.Append(run474);
            paragraph219.Append(run475);
            paragraph219.Append(run476);
            paragraph219.Append(run477);
            paragraph219.Append(run478);
            paragraph219.Append(run479);
            paragraph219.Append(run480);
            paragraph219.Append(run481);
            paragraph219.Append(run482);

            tableCell109.Append(tableCellProperties109);
            tableCell109.Append(paragraph219);

            tableRow23.Append(tableCell109);

            TableRow tableRow24 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00F12AD5", RsidTableRowProperties = "00727765", ParagraphId = "1CD35D68", TextId = "77777777" };

            TableCell tableCell110 = new TableCell();

            TableCellProperties tableCellProperties110 = new TableCellProperties();
            TableCellWidth tableCellWidth110 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties110.Append(tableCellWidth110);

            Paragraph paragraph220 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "2ADC2E50", TextId = "27F7EF53" };

            ParagraphProperties paragraphProperties217 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties217 = new ParagraphMarkRunProperties();
            RunFonts runFonts648 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color216 = new Color() { Val = "FF0000" };
            FontSize fontSize656 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript650 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties217.Append(runFonts648);
            paragraphMarkRunProperties217.Append(color216);
            paragraphMarkRunProperties217.Append(fontSize656);
            paragraphMarkRunProperties217.Append(fontSizeComplexScript650);

            paragraphProperties217.Append(paragraphMarkRunProperties217);

            Run run483 = new Run();

            RunProperties runProperties512 = new RunProperties();
            RunFonts runFonts649 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color217 = new Color() { Val = "FF0000" };
            FontSize fontSize657 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript651 = new FontSizeComplexScript() { Val = "22" };

            runProperties512.Append(runFonts649);
            runProperties512.Append(color217);
            runProperties512.Append(fontSize657);
            runProperties512.Append(fontSizeComplexScript651);
            Text text452 = new Text();
            text452.Text = "/";

            run483.Append(runProperties512);
            run483.Append(text452);

            paragraph220.Append(paragraphProperties217);
            paragraph220.Append(run483);

            tableCell110.Append(tableCellProperties110);
            tableCell110.Append(paragraph220);

            TableCell tableCell111 = new TableCell();

            TableCellProperties tableCellProperties111 = new TableCellProperties();
            TableCellWidth tableCellWidth111 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties111.Append(tableCellWidth111);

            Paragraph paragraph221 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003C2F92", ParagraphId = "5BE98482", TextId = "4BB39B5C" };

            ParagraphProperties paragraphProperties218 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties218 = new ParagraphMarkRunProperties();
            RunFonts runFonts650 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color218 = new Color() { Val = "FF0000" };
            FontSize fontSize658 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript652 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties218.Append(runFonts650);
            paragraphMarkRunProperties218.Append(color218);
            paragraphMarkRunProperties218.Append(fontSize658);
            paragraphMarkRunProperties218.Append(fontSizeComplexScript652);

            paragraphProperties218.Append(paragraphMarkRunProperties218);

            Run run484 = new Run();

            RunProperties runProperties513 = new RunProperties();
            RunFonts runFonts651 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color219 = new Color() { Val = "FF0000" };
            FontSize fontSize659 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript653 = new FontSizeComplexScript() { Val = "22" };

            runProperties513.Append(runFonts651);
            runProperties513.Append(color219);
            runProperties513.Append(fontSize659);
            runProperties513.Append(fontSizeComplexScript653);
            Text text453 = new Text();
            text453.Text = "lv_root";

            run484.Append(runProperties513);
            run484.Append(text453);

            paragraph221.Append(paragraphProperties218);
            paragraph221.Append(run484);

            tableCell111.Append(tableCellProperties111);
            tableCell111.Append(paragraph221);

            TableCell tableCell112 = new TableCell();

            TableCellProperties tableCellProperties112 = new TableCellProperties();
            TableCellWidth tableCellWidth112 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties112.Append(tableCellWidth112);

            Paragraph paragraph222 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00F12AD5", ParagraphId = "288D5A13", TextId = "77777777" };

            ParagraphProperties paragraphProperties219 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties219 = new ParagraphMarkRunProperties();
            RunFonts runFonts652 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color220 = new Color() { Val = "FF0000" };
            FontSize fontSize660 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript654 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties219.Append(runFonts652);
            paragraphMarkRunProperties219.Append(color220);
            paragraphMarkRunProperties219.Append(fontSize660);
            paragraphMarkRunProperties219.Append(fontSizeComplexScript654);

            paragraphProperties219.Append(paragraphMarkRunProperties219);

            paragraph222.Append(paragraphProperties219);

            tableCell112.Append(tableCellProperties112);
            tableCell112.Append(paragraph222);

            TableCell tableCell113 = new TableCell();

            TableCellProperties tableCellProperties113 = new TableCellProperties();
            TableCellWidth tableCellWidth113 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties113.Append(tableCellWidth113);

            Paragraph paragraph223 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "51C5657D", TextId = "6DA50563" };

            ParagraphProperties paragraphProperties220 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties220 = new ParagraphMarkRunProperties();
            RunFonts runFonts653 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color221 = new Color() { Val = "FF0000" };
            FontSize fontSize661 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript655 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties220.Append(runFonts653);
            paragraphMarkRunProperties220.Append(color221);
            paragraphMarkRunProperties220.Append(fontSize661);
            paragraphMarkRunProperties220.Append(fontSizeComplexScript655);

            paragraphProperties220.Append(paragraphMarkRunProperties220);

            Run run485 = new Run();

            RunProperties runProperties514 = new RunProperties();
            RunFonts runFonts654 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color222 = new Color() { Val = "FF0000" };
            FontSize fontSize662 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript656 = new FontSizeComplexScript() { Val = "22" };

            runProperties514.Append(runFonts654);
            runProperties514.Append(color222);
            runProperties514.Append(fontSize662);
            runProperties514.Append(fontSizeComplexScript656);
            Text text454 = new Text();
            text454.Text = "10gb";

            run485.Append(runProperties514);
            run485.Append(text454);

            paragraph223.Append(paragraphProperties220);
            paragraph223.Append(run485);

            tableCell113.Append(tableCellProperties113);
            tableCell113.Append(paragraph223);

            tableRow24.Append(tableCell110);
            tableRow24.Append(tableCell111);
            tableRow24.Append(tableCell112);
            tableRow24.Append(tableCell113);

            TableRow tableRow25 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00F12AD5", RsidTableRowProperties = "00727765", ParagraphId = "6634F149", TextId = "77777777" };

            TableCell tableCell114 = new TableCell();

            TableCellProperties tableCellProperties114 = new TableCellProperties();
            TableCellWidth tableCellWidth114 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties114.Append(tableCellWidth114);

            Paragraph paragraph224 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "74069420", TextId = "4CBD4948" };

            ParagraphProperties paragraphProperties221 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties221 = new ParagraphMarkRunProperties();
            RunFonts runFonts655 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color223 = new Color() { Val = "FF0000" };
            FontSize fontSize663 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript657 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties221.Append(runFonts655);
            paragraphMarkRunProperties221.Append(color223);
            paragraphMarkRunProperties221.Append(fontSize663);
            paragraphMarkRunProperties221.Append(fontSizeComplexScript657);

            paragraphProperties221.Append(paragraphMarkRunProperties221);

            Run run486 = new Run();

            RunProperties runProperties515 = new RunProperties();
            RunFonts runFonts656 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color224 = new Color() { Val = "FF0000" };
            FontSize fontSize664 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript658 = new FontSizeComplexScript() { Val = "22" };

            runProperties515.Append(runFonts656);
            runProperties515.Append(color224);
            runProperties515.Append(fontSize664);
            runProperties515.Append(fontSizeComplexScript658);
            Text text455 = new Text();
            text455.Text = "/usr";

            run486.Append(runProperties515);
            run486.Append(text455);

            paragraph224.Append(paragraphProperties221);
            paragraph224.Append(run486);

            tableCell114.Append(tableCellProperties114);
            tableCell114.Append(paragraph224);

            TableCell tableCell115 = new TableCell();

            TableCellProperties tableCellProperties115 = new TableCellProperties();
            TableCellWidth tableCellWidth115 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties115.Append(tableCellWidth115);

            Paragraph paragraph225 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003C2F92", ParagraphId = "3B6D74A1", TextId = "16612667" };

            ParagraphProperties paragraphProperties222 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties222 = new ParagraphMarkRunProperties();
            RunFonts runFonts657 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color225 = new Color() { Val = "FF0000" };
            FontSize fontSize665 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript659 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties222.Append(runFonts657);
            paragraphMarkRunProperties222.Append(color225);
            paragraphMarkRunProperties222.Append(fontSize665);
            paragraphMarkRunProperties222.Append(fontSizeComplexScript659);

            paragraphProperties222.Append(paragraphMarkRunProperties222);

            Run run487 = new Run();

            RunProperties runProperties516 = new RunProperties();
            RunFonts runFonts658 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color226 = new Color() { Val = "FF0000" };
            FontSize fontSize666 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript660 = new FontSizeComplexScript() { Val = "22" };

            runProperties516.Append(runFonts658);
            runProperties516.Append(color226);
            runProperties516.Append(fontSize666);
            runProperties516.Append(fontSizeComplexScript660);
            Text text456 = new Text();
            text456.Text = "lv_usr";

            run487.Append(runProperties516);
            run487.Append(text456);

            paragraph225.Append(paragraphProperties222);
            paragraph225.Append(run487);

            tableCell115.Append(tableCellProperties115);
            tableCell115.Append(paragraph225);

            TableCell tableCell116 = new TableCell();

            TableCellProperties tableCellProperties116 = new TableCellProperties();
            TableCellWidth tableCellWidth116 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties116.Append(tableCellWidth116);

            Paragraph paragraph226 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00F12AD5", ParagraphId = "712018A1", TextId = "77777777" };

            ParagraphProperties paragraphProperties223 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties223 = new ParagraphMarkRunProperties();
            RunFonts runFonts659 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color227 = new Color() { Val = "FF0000" };
            FontSize fontSize667 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript661 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties223.Append(runFonts659);
            paragraphMarkRunProperties223.Append(color227);
            paragraphMarkRunProperties223.Append(fontSize667);
            paragraphMarkRunProperties223.Append(fontSizeComplexScript661);

            paragraphProperties223.Append(paragraphMarkRunProperties223);

            paragraph226.Append(paragraphProperties223);

            tableCell116.Append(tableCellProperties116);
            tableCell116.Append(paragraph226);

            TableCell tableCell117 = new TableCell();

            TableCellProperties tableCellProperties117 = new TableCellProperties();
            TableCellWidth tableCellWidth117 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties117.Append(tableCellWidth117);

            Paragraph paragraph227 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "775DD803", TextId = "14B12CF8" };

            ParagraphProperties paragraphProperties224 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties224 = new ParagraphMarkRunProperties();
            RunFonts runFonts660 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color228 = new Color() { Val = "FF0000" };
            FontSize fontSize668 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript662 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties224.Append(runFonts660);
            paragraphMarkRunProperties224.Append(color228);
            paragraphMarkRunProperties224.Append(fontSize668);
            paragraphMarkRunProperties224.Append(fontSizeComplexScript662);

            paragraphProperties224.Append(paragraphMarkRunProperties224);

            Run run488 = new Run();

            RunProperties runProperties517 = new RunProperties();
            RunFonts runFonts661 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color229 = new Color() { Val = "FF0000" };
            FontSize fontSize669 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript663 = new FontSizeComplexScript() { Val = "22" };

            runProperties517.Append(runFonts661);
            runProperties517.Append(color229);
            runProperties517.Append(fontSize669);
            runProperties517.Append(fontSizeComplexScript663);
            Text text457 = new Text();
            text457.Text = "5gb";

            run488.Append(runProperties517);
            run488.Append(text457);

            paragraph227.Append(paragraphProperties224);
            paragraph227.Append(run488);

            tableCell117.Append(tableCellProperties117);
            tableCell117.Append(paragraph227);

            tableRow25.Append(tableCell114);
            tableRow25.Append(tableCell115);
            tableRow25.Append(tableCell116);
            tableRow25.Append(tableCell117);

            TableRow tableRow26 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00747E89", RsidTableRowProperties = "00727765", ParagraphId = "730E202B", TextId = "77777777" };

            TableCell tableCell118 = new TableCell();

            TableCellProperties tableCellProperties118 = new TableCellProperties();
            TableCellWidth tableCellWidth118 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties118.Append(tableCellWidth118);

            Paragraph paragraph228 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "2EE4BAB8", TextId = "6C16E974" };

            ParagraphProperties paragraphProperties225 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties225 = new ParagraphMarkRunProperties();
            RunFonts runFonts662 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color230 = new Color() { Val = "FF0000" };
            FontSize fontSize670 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript664 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties225.Append(runFonts662);
            paragraphMarkRunProperties225.Append(color230);
            paragraphMarkRunProperties225.Append(fontSize670);
            paragraphMarkRunProperties225.Append(fontSizeComplexScript664);

            paragraphProperties225.Append(paragraphMarkRunProperties225);

            Run run489 = new Run();

            RunProperties runProperties518 = new RunProperties();
            RunFonts runFonts663 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color231 = new Color() { Val = "FF0000" };
            FontSize fontSize671 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript665 = new FontSizeComplexScript() { Val = "22" };

            runProperties518.Append(runFonts663);
            runProperties518.Append(color231);
            runProperties518.Append(fontSize671);
            runProperties518.Append(fontSizeComplexScript665);
            Text text458 = new Text();
            text458.Text = "/var";

            run489.Append(runProperties518);
            run489.Append(text458);

            paragraph228.Append(paragraphProperties225);
            paragraph228.Append(run489);

            tableCell118.Append(tableCellProperties118);
            tableCell118.Append(paragraph228);

            TableCell tableCell119 = new TableCell();

            TableCellProperties tableCellProperties119 = new TableCellProperties();
            TableCellWidth tableCellWidth119 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties119.Append(tableCellWidth119);

            Paragraph paragraph229 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003C2F92", ParagraphId = "17DBF3F9", TextId = "48915E4D" };

            ParagraphProperties paragraphProperties226 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties226 = new ParagraphMarkRunProperties();
            RunFonts runFonts664 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color232 = new Color() { Val = "FF0000" };
            FontSize fontSize672 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript666 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties226.Append(runFonts664);
            paragraphMarkRunProperties226.Append(color232);
            paragraphMarkRunProperties226.Append(fontSize672);
            paragraphMarkRunProperties226.Append(fontSizeComplexScript666);

            paragraphProperties226.Append(paragraphMarkRunProperties226);

            Run run490 = new Run();

            RunProperties runProperties519 = new RunProperties();
            RunFonts runFonts665 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color233 = new Color() { Val = "FF0000" };
            FontSize fontSize673 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript667 = new FontSizeComplexScript() { Val = "22" };

            runProperties519.Append(runFonts665);
            runProperties519.Append(color233);
            runProperties519.Append(fontSize673);
            runProperties519.Append(fontSizeComplexScript667);
            Text text459 = new Text();
            text459.Text = "lv_var";

            run490.Append(runProperties519);
            run490.Append(text459);

            paragraph229.Append(paragraphProperties226);
            paragraph229.Append(run490);

            tableCell119.Append(tableCellProperties119);
            tableCell119.Append(paragraph229);

            TableCell tableCell120 = new TableCell();

            TableCellProperties tableCellProperties120 = new TableCellProperties();
            TableCellWidth tableCellWidth120 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties120.Append(tableCellWidth120);

            Paragraph paragraph230 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "6C2B43BD", TextId = "77777777" };

            ParagraphProperties paragraphProperties227 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties227 = new ParagraphMarkRunProperties();
            RunFonts runFonts666 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color234 = new Color() { Val = "FF0000" };
            FontSize fontSize674 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript668 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties227.Append(runFonts666);
            paragraphMarkRunProperties227.Append(color234);
            paragraphMarkRunProperties227.Append(fontSize674);
            paragraphMarkRunProperties227.Append(fontSizeComplexScript668);

            paragraphProperties227.Append(paragraphMarkRunProperties227);

            paragraph230.Append(paragraphProperties227);

            tableCell120.Append(tableCellProperties120);
            tableCell120.Append(paragraph230);

            TableCell tableCell121 = new TableCell();

            TableCellProperties tableCellProperties121 = new TableCellProperties();
            TableCellWidth tableCellWidth121 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties121.Append(tableCellWidth121);

            Paragraph paragraph231 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "52D290E9", TextId = "4606EC4B" };

            ParagraphProperties paragraphProperties228 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties228 = new ParagraphMarkRunProperties();
            RunFonts runFonts667 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color235 = new Color() { Val = "FF0000" };
            FontSize fontSize675 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript669 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties228.Append(runFonts667);
            paragraphMarkRunProperties228.Append(color235);
            paragraphMarkRunProperties228.Append(fontSize675);
            paragraphMarkRunProperties228.Append(fontSizeComplexScript669);

            paragraphProperties228.Append(paragraphMarkRunProperties228);

            Run run491 = new Run();

            RunProperties runProperties520 = new RunProperties();
            RunFonts runFonts668 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color236 = new Color() { Val = "FF0000" };
            FontSize fontSize676 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript670 = new FontSizeComplexScript() { Val = "22" };

            runProperties520.Append(runFonts668);
            runProperties520.Append(color236);
            runProperties520.Append(fontSize676);
            runProperties520.Append(fontSizeComplexScript670);
            Text text460 = new Text();
            text460.Text = "5gb";

            run491.Append(runProperties520);
            run491.Append(text460);

            paragraph231.Append(paragraphProperties228);
            paragraph231.Append(run491);

            tableCell121.Append(tableCellProperties121);
            tableCell121.Append(paragraph231);

            tableRow26.Append(tableCell118);
            tableRow26.Append(tableCell119);
            tableRow26.Append(tableCell120);
            tableRow26.Append(tableCell121);

            TableRow tableRow27 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00747E89", RsidTableRowProperties = "00727765", ParagraphId = "33EAAB60", TextId = "77777777" };

            TableCell tableCell122 = new TableCell();

            TableCellProperties tableCellProperties122 = new TableCellProperties();
            TableCellWidth tableCellWidth122 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties122.Append(tableCellWidth122);

            Paragraph paragraph232 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "7FF5168A", TextId = "12A3DB7B" };

            ParagraphProperties paragraphProperties229 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties229 = new ParagraphMarkRunProperties();
            RunFonts runFonts669 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color237 = new Color() { Val = "FF0000" };
            FontSize fontSize677 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript671 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties229.Append(runFonts669);
            paragraphMarkRunProperties229.Append(color237);
            paragraphMarkRunProperties229.Append(fontSize677);
            paragraphMarkRunProperties229.Append(fontSizeComplexScript671);

            paragraphProperties229.Append(paragraphMarkRunProperties229);

            Run run492 = new Run();

            RunProperties runProperties521 = new RunProperties();
            RunFonts runFonts670 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color238 = new Color() { Val = "FF0000" };
            FontSize fontSize678 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript672 = new FontSizeComplexScript() { Val = "22" };

            runProperties521.Append(runFonts670);
            runProperties521.Append(color238);
            runProperties521.Append(fontSize678);
            runProperties521.Append(fontSizeComplexScript672);
            Text text461 = new Text();
            text461.Text = "/home";

            run492.Append(runProperties521);
            run492.Append(text461);

            paragraph232.Append(paragraphProperties229);
            paragraph232.Append(run492);

            tableCell122.Append(tableCellProperties122);
            tableCell122.Append(paragraph232);

            TableCell tableCell123 = new TableCell();

            TableCellProperties tableCellProperties123 = new TableCellProperties();
            TableCellWidth tableCellWidth123 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties123.Append(tableCellWidth123);

            Paragraph paragraph233 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003C2F92", ParagraphId = "786EB553", TextId = "7FBBA84F" };

            ParagraphProperties paragraphProperties230 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties230 = new ParagraphMarkRunProperties();
            RunFonts runFonts671 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color239 = new Color() { Val = "FF0000" };
            FontSize fontSize679 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript673 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties230.Append(runFonts671);
            paragraphMarkRunProperties230.Append(color239);
            paragraphMarkRunProperties230.Append(fontSize679);
            paragraphMarkRunProperties230.Append(fontSizeComplexScript673);

            paragraphProperties230.Append(paragraphMarkRunProperties230);

            Run run493 = new Run();

            RunProperties runProperties522 = new RunProperties();
            RunFonts runFonts672 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color240 = new Color() { Val = "FF0000" };
            FontSize fontSize680 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript674 = new FontSizeComplexScript() { Val = "22" };

            runProperties522.Append(runFonts672);
            runProperties522.Append(color240);
            runProperties522.Append(fontSize680);
            runProperties522.Append(fontSizeComplexScript674);
            Text text462 = new Text();
            text462.Text = "lv_home";

            run493.Append(runProperties522);
            run493.Append(text462);

            paragraph233.Append(paragraphProperties230);
            paragraph233.Append(run493);

            tableCell123.Append(tableCellProperties123);
            tableCell123.Append(paragraph233);

            TableCell tableCell124 = new TableCell();

            TableCellProperties tableCellProperties124 = new TableCellProperties();
            TableCellWidth tableCellWidth124 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties124.Append(tableCellWidth124);

            Paragraph paragraph234 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "4A2F2178", TextId = "77777777" };

            ParagraphProperties paragraphProperties231 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties231 = new ParagraphMarkRunProperties();
            RunFonts runFonts673 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color241 = new Color() { Val = "FF0000" };
            FontSize fontSize681 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript675 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties231.Append(runFonts673);
            paragraphMarkRunProperties231.Append(color241);
            paragraphMarkRunProperties231.Append(fontSize681);
            paragraphMarkRunProperties231.Append(fontSizeComplexScript675);

            paragraphProperties231.Append(paragraphMarkRunProperties231);

            paragraph234.Append(paragraphProperties231);

            tableCell124.Append(tableCellProperties124);
            tableCell124.Append(paragraph234);

            TableCell tableCell125 = new TableCell();

            TableCellProperties tableCellProperties125 = new TableCellProperties();
            TableCellWidth tableCellWidth125 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties125.Append(tableCellWidth125);

            Paragraph paragraph235 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "0D23DD3A", TextId = "3327B62E" };

            ParagraphProperties paragraphProperties232 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties232 = new ParagraphMarkRunProperties();
            RunFonts runFonts674 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color242 = new Color() { Val = "FF0000" };
            FontSize fontSize682 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript676 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties232.Append(runFonts674);
            paragraphMarkRunProperties232.Append(color242);
            paragraphMarkRunProperties232.Append(fontSize682);
            paragraphMarkRunProperties232.Append(fontSizeComplexScript676);

            paragraphProperties232.Append(paragraphMarkRunProperties232);

            Run run494 = new Run();

            RunProperties runProperties523 = new RunProperties();
            RunFonts runFonts675 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color243 = new Color() { Val = "FF0000" };
            FontSize fontSize683 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript677 = new FontSizeComplexScript() { Val = "22" };

            runProperties523.Append(runFonts675);
            runProperties523.Append(color243);
            runProperties523.Append(fontSize683);
            runProperties523.Append(fontSizeComplexScript677);
            Text text463 = new Text();
            text463.Text = "5gb";

            run494.Append(runProperties523);
            run494.Append(text463);

            paragraph235.Append(paragraphProperties232);
            paragraph235.Append(run494);

            tableCell125.Append(tableCellProperties125);
            tableCell125.Append(paragraph235);

            tableRow27.Append(tableCell122);
            tableRow27.Append(tableCell123);
            tableRow27.Append(tableCell124);
            tableRow27.Append(tableCell125);

            TableRow tableRow28 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00747E89", RsidTableRowProperties = "00727765", ParagraphId = "38B9B18C", TextId = "77777777" };

            TableCell tableCell126 = new TableCell();

            TableCellProperties tableCellProperties126 = new TableCellProperties();
            TableCellWidth tableCellWidth126 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties126.Append(tableCellWidth126);

            Paragraph paragraph236 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "24D696B2", TextId = "731FF451" };

            ParagraphProperties paragraphProperties233 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties233 = new ParagraphMarkRunProperties();
            RunFonts runFonts676 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color244 = new Color() { Val = "FF0000" };
            FontSize fontSize684 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript678 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties233.Append(runFonts676);
            paragraphMarkRunProperties233.Append(color244);
            paragraphMarkRunProperties233.Append(fontSize684);
            paragraphMarkRunProperties233.Append(fontSizeComplexScript678);

            paragraphProperties233.Append(paragraphMarkRunProperties233);

            Run run495 = new Run();

            RunProperties runProperties524 = new RunProperties();
            RunFonts runFonts677 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color245 = new Color() { Val = "FF0000" };
            FontSize fontSize685 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript679 = new FontSizeComplexScript() { Val = "22" };

            runProperties524.Append(runFonts677);
            runProperties524.Append(color245);
            runProperties524.Append(fontSize685);
            runProperties524.Append(fontSizeComplexScript679);
            Text text464 = new Text();
            text464.Text = "/tmp";

            run495.Append(runProperties524);
            run495.Append(text464);

            paragraph236.Append(paragraphProperties233);
            paragraph236.Append(run495);

            tableCell126.Append(tableCellProperties126);
            tableCell126.Append(paragraph236);

            TableCell tableCell127 = new TableCell();

            TableCellProperties tableCellProperties127 = new TableCellProperties();
            TableCellWidth tableCellWidth127 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties127.Append(tableCellWidth127);

            Paragraph paragraph237 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003C2F92", ParagraphId = "575FEF99", TextId = "508EB348" };

            ParagraphProperties paragraphProperties234 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties234 = new ParagraphMarkRunProperties();
            RunFonts runFonts678 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color246 = new Color() { Val = "FF0000" };
            FontSize fontSize686 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript680 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties234.Append(runFonts678);
            paragraphMarkRunProperties234.Append(color246);
            paragraphMarkRunProperties234.Append(fontSize686);
            paragraphMarkRunProperties234.Append(fontSizeComplexScript680);

            paragraphProperties234.Append(paragraphMarkRunProperties234);

            Run run496 = new Run();

            RunProperties runProperties525 = new RunProperties();
            RunFonts runFonts679 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color247 = new Color() { Val = "FF0000" };
            FontSize fontSize687 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript681 = new FontSizeComplexScript() { Val = "22" };

            runProperties525.Append(runFonts679);
            runProperties525.Append(color247);
            runProperties525.Append(fontSize687);
            runProperties525.Append(fontSizeComplexScript681);
            Text text465 = new Text();
            text465.Text = "lv_tmp";

            run496.Append(runProperties525);
            run496.Append(text465);

            paragraph237.Append(paragraphProperties234);
            paragraph237.Append(run496);

            tableCell127.Append(tableCellProperties127);
            tableCell127.Append(paragraph237);

            TableCell tableCell128 = new TableCell();

            TableCellProperties tableCellProperties128 = new TableCellProperties();
            TableCellWidth tableCellWidth128 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties128.Append(tableCellWidth128);

            Paragraph paragraph238 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "16779E9F", TextId = "77777777" };

            ParagraphProperties paragraphProperties235 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties235 = new ParagraphMarkRunProperties();
            RunFonts runFonts680 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color248 = new Color() { Val = "FF0000" };
            FontSize fontSize688 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript682 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties235.Append(runFonts680);
            paragraphMarkRunProperties235.Append(color248);
            paragraphMarkRunProperties235.Append(fontSize688);
            paragraphMarkRunProperties235.Append(fontSizeComplexScript682);

            paragraphProperties235.Append(paragraphMarkRunProperties235);

            paragraph238.Append(paragraphProperties235);

            tableCell128.Append(tableCellProperties128);
            tableCell128.Append(paragraph238);

            TableCell tableCell129 = new TableCell();

            TableCellProperties tableCellProperties129 = new TableCellProperties();
            TableCellWidth tableCellWidth129 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties129.Append(tableCellWidth129);

            Paragraph paragraph239 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "060CEBAB", TextId = "2BECBC51" };

            ParagraphProperties paragraphProperties236 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties236 = new ParagraphMarkRunProperties();
            RunFonts runFonts681 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color249 = new Color() { Val = "FF0000" };
            FontSize fontSize689 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript683 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties236.Append(runFonts681);
            paragraphMarkRunProperties236.Append(color249);
            paragraphMarkRunProperties236.Append(fontSize689);
            paragraphMarkRunProperties236.Append(fontSizeComplexScript683);

            paragraphProperties236.Append(paragraphMarkRunProperties236);

            Run run497 = new Run();

            RunProperties runProperties526 = new RunProperties();
            RunFonts runFonts682 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color250 = new Color() { Val = "FF0000" };
            FontSize fontSize690 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript684 = new FontSizeComplexScript() { Val = "22" };

            runProperties526.Append(runFonts682);
            runProperties526.Append(color250);
            runProperties526.Append(fontSize690);
            runProperties526.Append(fontSizeComplexScript684);
            Text text466 = new Text();
            text466.Text = "5gb";

            run497.Append(runProperties526);
            run497.Append(text466);

            paragraph239.Append(paragraphProperties236);
            paragraph239.Append(run497);

            tableCell129.Append(tableCellProperties129);
            tableCell129.Append(paragraph239);

            tableRow28.Append(tableCell126);
            tableRow28.Append(tableCell127);
            tableRow28.Append(tableCell128);
            tableRow28.Append(tableCell129);

            TableRow tableRow29 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00747E89", RsidTableRowProperties = "00727765", ParagraphId = "07D4FFF6", TextId = "77777777" };

            TableCell tableCell130 = new TableCell();

            TableCellProperties tableCellProperties130 = new TableCellProperties();
            TableCellWidth tableCellWidth130 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties130.Append(tableCellWidth130);

            Paragraph paragraph240 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "46DD2B10", TextId = "340130B0" };

            ParagraphProperties paragraphProperties237 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties237 = new ParagraphMarkRunProperties();
            RunFonts runFonts683 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color251 = new Color() { Val = "FF0000" };
            FontSize fontSize691 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript685 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties237.Append(runFonts683);
            paragraphMarkRunProperties237.Append(color251);
            paragraphMarkRunProperties237.Append(fontSize691);
            paragraphMarkRunProperties237.Append(fontSizeComplexScript685);

            paragraphProperties237.Append(paragraphMarkRunProperties237);

            Run run498 = new Run();

            RunProperties runProperties527 = new RunProperties();
            RunFonts runFonts684 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color252 = new Color() { Val = "FF0000" };
            FontSize fontSize692 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript686 = new FontSizeComplexScript() { Val = "22" };

            runProperties527.Append(runFonts684);
            runProperties527.Append(color252);
            runProperties527.Append(fontSize692);
            runProperties527.Append(fontSizeComplexScript686);
            Text text467 = new Text();
            text467.Text = "/opt";

            run498.Append(runProperties527);
            run498.Append(text467);

            paragraph240.Append(paragraphProperties237);
            paragraph240.Append(run498);

            tableCell130.Append(tableCellProperties130);
            tableCell130.Append(paragraph240);

            TableCell tableCell131 = new TableCell();

            TableCellProperties tableCellProperties131 = new TableCellProperties();
            TableCellWidth tableCellWidth131 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties131.Append(tableCellWidth131);

            Paragraph paragraph241 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003C2F92", ParagraphId = "2DC9F189", TextId = "1DF5D5C0" };

            ParagraphProperties paragraphProperties238 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties238 = new ParagraphMarkRunProperties();
            RunFonts runFonts685 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color253 = new Color() { Val = "FF0000" };
            FontSize fontSize693 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript687 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties238.Append(runFonts685);
            paragraphMarkRunProperties238.Append(color253);
            paragraphMarkRunProperties238.Append(fontSize693);
            paragraphMarkRunProperties238.Append(fontSizeComplexScript687);

            paragraphProperties238.Append(paragraphMarkRunProperties238);

            Run run499 = new Run();

            RunProperties runProperties528 = new RunProperties();
            RunFonts runFonts686 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color254 = new Color() { Val = "FF0000" };
            FontSize fontSize694 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript688 = new FontSizeComplexScript() { Val = "22" };

            runProperties528.Append(runFonts686);
            runProperties528.Append(color254);
            runProperties528.Append(fontSize694);
            runProperties528.Append(fontSizeComplexScript688);
            Text text468 = new Text();
            text468.Text = "lv_opt";

            run499.Append(runProperties528);
            run499.Append(text468);

            paragraph241.Append(paragraphProperties238);
            paragraph241.Append(run499);

            tableCell131.Append(tableCellProperties131);
            tableCell131.Append(paragraph241);

            TableCell tableCell132 = new TableCell();

            TableCellProperties tableCellProperties132 = new TableCellProperties();
            TableCellWidth tableCellWidth132 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties132.Append(tableCellWidth132);

            Paragraph paragraph242 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "3743DDC0", TextId = "77777777" };

            ParagraphProperties paragraphProperties239 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties239 = new ParagraphMarkRunProperties();
            RunFonts runFonts687 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color255 = new Color() { Val = "FF0000" };
            FontSize fontSize695 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript689 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties239.Append(runFonts687);
            paragraphMarkRunProperties239.Append(color255);
            paragraphMarkRunProperties239.Append(fontSize695);
            paragraphMarkRunProperties239.Append(fontSizeComplexScript689);

            paragraphProperties239.Append(paragraphMarkRunProperties239);

            paragraph242.Append(paragraphProperties239);

            tableCell132.Append(tableCellProperties132);
            tableCell132.Append(paragraph242);

            TableCell tableCell133 = new TableCell();

            TableCellProperties tableCellProperties133 = new TableCellProperties();
            TableCellWidth tableCellWidth133 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties133.Append(tableCellWidth133);

            Paragraph paragraph243 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "419EE571", TextId = "2CB5B1CC" };

            ParagraphProperties paragraphProperties240 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties240 = new ParagraphMarkRunProperties();
            RunFonts runFonts688 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color256 = new Color() { Val = "FF0000" };
            FontSize fontSize696 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript690 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties240.Append(runFonts688);
            paragraphMarkRunProperties240.Append(color256);
            paragraphMarkRunProperties240.Append(fontSize696);
            paragraphMarkRunProperties240.Append(fontSizeComplexScript690);

            paragraphProperties240.Append(paragraphMarkRunProperties240);

            Run run500 = new Run();

            RunProperties runProperties529 = new RunProperties();
            RunFonts runFonts689 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color257 = new Color() { Val = "FF0000" };
            FontSize fontSize697 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript691 = new FontSizeComplexScript() { Val = "22" };

            runProperties529.Append(runFonts689);
            runProperties529.Append(color257);
            runProperties529.Append(fontSize697);
            runProperties529.Append(fontSizeComplexScript691);
            Text text469 = new Text();
            text469.Text = "5gb";

            run500.Append(runProperties529);
            run500.Append(text469);

            paragraph243.Append(paragraphProperties240);
            paragraph243.Append(run500);

            tableCell133.Append(tableCellProperties133);
            tableCell133.Append(paragraph243);

            tableRow29.Append(tableCell130);
            tableRow29.Append(tableCell131);
            tableRow29.Append(tableCell132);
            tableRow29.Append(tableCell133);

            TableRow tableRow30 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00747E89", RsidTableRowProperties = "00727765", ParagraphId = "2A5DFF82", TextId = "77777777" };

            TableCell tableCell134 = new TableCell();

            TableCellProperties tableCellProperties134 = new TableCellProperties();
            TableCellWidth tableCellWidth134 = new TableCellWidth() { Width = "1455", Type = TableWidthUnitValues.Dxa };

            tableCellProperties134.Append(tableCellWidth134);

            Paragraph paragraph244 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00747E89", ParagraphId = "116C4707", TextId = "51729B20" };

            ParagraphProperties paragraphProperties241 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties241 = new ParagraphMarkRunProperties();
            RunFonts runFonts690 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color258 = new Color() { Val = "FF0000" };
            FontSize fontSize698 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript692 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties241.Append(runFonts690);
            paragraphMarkRunProperties241.Append(color258);
            paragraphMarkRunProperties241.Append(fontSize698);
            paragraphMarkRunProperties241.Append(fontSizeComplexScript692);

            paragraphProperties241.Append(paragraphMarkRunProperties241);

            Run run501 = new Run();

            RunProperties runProperties530 = new RunProperties();
            RunFonts runFonts691 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color259 = new Color() { Val = "FF0000" };
            FontSize fontSize699 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript693 = new FontSizeComplexScript() { Val = "22" };

            runProperties530.Append(runFonts691);
            runProperties530.Append(color259);
            runProperties530.Append(fontSize699);
            runProperties530.Append(fontSizeComplexScript693);
            Text text470 = new Text();
            text470.Text = "/swap";

            run501.Append(runProperties530);
            run501.Append(text470);

            paragraph244.Append(paragraphProperties241);
            paragraph244.Append(run501);

            tableCell134.Append(tableCellProperties134);
            tableCell134.Append(paragraph244);

            TableCell tableCell135 = new TableCell();

            TableCellProperties tableCellProperties135 = new TableCellProperties();
            TableCellWidth tableCellWidth135 = new TableCellWidth() { Width = "2356", Type = TableWidthUnitValues.Dxa };

            tableCellProperties135.Append(tableCellWidth135);

            Paragraph paragraph245 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "003C2F92", ParagraphId = "01ED960A", TextId = "0FDA9AD3" };

            ParagraphProperties paragraphProperties242 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties242 = new ParagraphMarkRunProperties();
            RunFonts runFonts692 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color260 = new Color() { Val = "FF0000" };
            FontSize fontSize700 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript694 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties242.Append(runFonts692);
            paragraphMarkRunProperties242.Append(color260);
            paragraphMarkRunProperties242.Append(fontSize700);
            paragraphMarkRunProperties242.Append(fontSizeComplexScript694);

            paragraphProperties242.Append(paragraphMarkRunProperties242);

            Run run502 = new Run();

            RunProperties runProperties531 = new RunProperties();
            RunFonts runFonts693 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color261 = new Color() { Val = "FF0000" };
            FontSize fontSize701 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript695 = new FontSizeComplexScript() { Val = "22" };

            runProperties531.Append(runFonts693);
            runProperties531.Append(color261);
            runProperties531.Append(fontSize701);
            runProperties531.Append(fontSizeComplexScript695);
            Text text471 = new Text();
            text471.Text = "lv_swap";

            run502.Append(runProperties531);
            run502.Append(text471);

            paragraph245.Append(paragraphProperties242);
            paragraph245.Append(run502);

            tableCell135.Append(tableCellProperties135);
            tableCell135.Append(paragraph245);

            TableCell tableCell136 = new TableCell();

            TableCellProperties tableCellProperties136 = new TableCellProperties();
            TableCellWidth tableCellWidth136 = new TableCellWidth() { Width = "2505", Type = TableWidthUnitValues.Dxa };

            tableCellProperties136.Append(tableCellWidth136);

            Paragraph paragraph246 = new Paragraph() { RsidParagraphMarkRevision = "00614197", RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00614197", ParagraphId = "4BBF1157", TextId = "77777777" };

            ParagraphProperties paragraphProperties243 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties243 = new ParagraphMarkRunProperties();
            RunFonts runFonts694 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize702 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript696 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties243.Append(runFonts694);
            paragraphMarkRunProperties243.Append(fontSize702);
            paragraphMarkRunProperties243.Append(fontSizeComplexScript696);

            paragraphProperties243.Append(paragraphMarkRunProperties243);

            Run run503 = new Run() { RsidRunProperties = "00614197" };

            RunProperties runProperties532 = new RunProperties();
            RunFonts runFonts695 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize703 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript697 = new FontSizeComplexScript() { Val = "22" };

            runProperties532.Append(runFonts695);
            runProperties532.Append(fontSize703);
            runProperties532.Append(fontSizeComplexScript697);
            Text text472 = new Text();
            text472.Text = "8gb (max for VMs)";

            run503.Append(runProperties532);
            run503.Append(text472);

            paragraph246.Append(paragraphProperties243);
            paragraph246.Append(run503);

            Paragraph paragraph247 = new Paragraph() { RsidParagraphMarkRevision = "00614197", RsidParagraphAddition = "00614197", RsidParagraphProperties = "00614197", RsidRunAdditionDefault = "00614197", ParagraphId = "12A19D7B", TextId = "236DE5F3" };

            ParagraphProperties paragraphProperties244 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties244 = new ParagraphMarkRunProperties();
            RunFonts runFonts696 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize704 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript698 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties244.Append(runFonts696);
            paragraphMarkRunProperties244.Append(fontSize704);
            paragraphMarkRunProperties244.Append(fontSizeComplexScript698);

            paragraphProperties244.Append(paragraphMarkRunProperties244);

            Run run504 = new Run() { RsidRunProperties = "00614197" };

            RunProperties runProperties533 = new RunProperties();
            RunFonts runFonts697 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize705 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript699 = new FontSizeComplexScript() { Val = "22" };

            runProperties533.Append(runFonts697);
            runProperties533.Append(fontSize705);
            runProperties533.Append(fontSizeComplexScript699);
            Text text473 = new Text();
            text473.Text = "32gb (max for Physical)";

            run504.Append(runProperties533);
            run504.Append(text473);

            paragraph247.Append(paragraphProperties244);
            paragraph247.Append(run504);

            tableCell136.Append(tableCellProperties136);
            tableCell136.Append(paragraph246);
            tableCell136.Append(paragraph247);

            TableCell tableCell137 = new TableCell();

            TableCellProperties tableCellProperties137 = new TableCellProperties();
            TableCellWidth tableCellWidth137 = new TableCellWidth() { Width = "1712", Type = TableWidthUnitValues.Dxa };

            tableCellProperties137.Append(tableCellWidth137);

            Paragraph paragraph248 = new Paragraph() { RsidParagraphAddition = "00747E89", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00614197", ParagraphId = "5D2332BA", TextId = "4A1B62D5" };

            ParagraphProperties paragraphProperties245 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties245 = new ParagraphMarkRunProperties();
            RunFonts runFonts698 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color262 = new Color() { Val = "FF0000" };
            FontSize fontSize706 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript700 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties245.Append(runFonts698);
            paragraphMarkRunProperties245.Append(color262);
            paragraphMarkRunProperties245.Append(fontSize706);
            paragraphMarkRunProperties245.Append(fontSizeComplexScript700);

            paragraphProperties245.Append(paragraphMarkRunProperties245);

            Run run505 = new Run();

            RunProperties runProperties534 = new RunProperties();
            RunFonts runFonts699 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color263 = new Color() { Val = "FF0000" };
            FontSize fontSize707 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript701 = new FontSizeComplexScript() { Val = "22" };

            runProperties534.Append(runFonts699);
            runProperties534.Append(color263);
            runProperties534.Append(fontSize707);
            runProperties534.Append(fontSizeComplexScript701);
            Text text474 = new Text();
            text474.Text = "8gb";

            run505.Append(runProperties534);
            run505.Append(text474);

            paragraph248.Append(paragraphProperties245);
            paragraph248.Append(run505);

            tableCell137.Append(tableCellProperties137);
            tableCell137.Append(paragraph248);

            tableRow30.Append(tableCell134);
            tableRow30.Append(tableCell135);
            tableRow30.Append(tableCell136);
            tableRow30.Append(tableCell137);

            table5.Append(tableProperties5);
            table5.Append(tableGrid5);
            table5.Append(tableRow18);
            table5.Append(tableRow19);
            table5.Append(tableRow20);
            table5.Append(tableRow21);
            table5.Append(tableRow22);
            table5.Append(tableRow23);
            table5.Append(tableRow24);
            table5.Append(tableRow25);
            table5.Append(tableRow26);
            table5.Append(tableRow27);
            table5.Append(tableRow28);
            table5.Append(tableRow29);
            table5.Append(tableRow30);

            Paragraph paragraph249 = new Paragraph() { RsidParagraphMarkRevision = "00095617", RsidParagraphAddition = "00116831", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "004519DB", ParagraphId = "0AAC1A83", TextId = "1BB0322A" };

            ParagraphProperties paragraphProperties246 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties246 = new ParagraphMarkRunProperties();
            RunFonts runFonts700 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color264 = new Color() { Val = "FF0000" };
            FontSize fontSize708 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript702 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties246.Append(runFonts700);
            paragraphMarkRunProperties246.Append(color264);
            paragraphMarkRunProperties246.Append(fontSize708);
            paragraphMarkRunProperties246.Append(fontSizeComplexScript702);

            paragraphProperties246.Append(paragraphMarkRunProperties246);

            Run run506 = new Run();

            RunProperties runProperties535 = new RunProperties();
            RunFonts runFonts701 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color265 = new Color() { Val = "FF0000" };
            FontSize fontSize709 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript703 = new FontSizeComplexScript() { Val = "22" };

            runProperties535.Append(runFonts701);
            runProperties535.Append(color265);
            runProperties535.Append(fontSize709);
            runProperties535.Append(fontSizeComplexScript703);
            Text text475 = new Text();
            text475.Text = "SQL drives D, E, and F have a 10 GB minimum.  Also, i";

            run506.Append(runProperties535);
            run506.Append(text475);

            Run run507 = new Run() { RsidRunProperties = "00095617", RsidRunAddition = "00095617" };

            RunProperties runProperties536 = new RunProperties();
            RunFonts runFonts702 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color266 = new Color() { Val = "FF0000" };
            FontSize fontSize710 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript704 = new FontSizeComplexScript() { Val = "22" };

            runProperties536.Append(runFonts702);
            runProperties536.Append(color266);
            runProperties536.Append(fontSize710);
            runProperties536.Append(fontSizeComplexScript704);
            Text text476 = new Text();
            text476.Text = "f the server is NOT a VM, then the drive sizing must be rounded to the next 17";

            run507.Append(runProperties536);
            run507.Append(text476);

            Run run508 = new Run();

            RunProperties runProperties537 = new RunProperties();
            RunFonts runFonts703 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color267 = new Color() { Val = "FF0000" };
            FontSize fontSize711 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript705 = new FontSizeComplexScript() { Val = "22" };

            runProperties537.Append(runFonts703);
            runProperties537.Append(color267);
            runProperties537.Append(fontSize711);
            runProperties537.Append(fontSizeComplexScript705);
            Text text477 = new Text();
            text477.Text = "GB";

            run508.Append(runProperties537);
            run508.Append(text477);

            Run run509 = new Run() { RsidRunProperties = "00095617", RsidRunAddition = "00095617" };

            RunProperties runProperties538 = new RunProperties();
            RunFonts runFonts704 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color268 = new Color() { Val = "FF0000" };
            FontSize fontSize712 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript706 = new FontSizeComplexScript() { Val = "22" };

            runProperties538.Append(runFonts704);
            runProperties538.Append(color268);
            runProperties538.Append(fontSize712);
            runProperties538.Append(fontSizeComplexScript706);
            Text text478 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text478.Text = " increment for XIV";

            run509.Append(runProperties538);
            run509.Append(text478);

            paragraph249.Append(paragraphProperties246);
            paragraph249.Append(run506);
            paragraph249.Append(run507);
            paragraph249.Append(run508);
            paragraph249.Append(run509);

            Paragraph paragraph250 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1A84", TextId = "77777777" };

            ParagraphProperties paragraphProperties247 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties247 = new ParagraphMarkRunProperties();
            RunFonts runFonts705 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize713 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript707 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties247.Append(runFonts705);
            paragraphMarkRunProperties247.Append(fontSize713);
            paragraphMarkRunProperties247.Append(fontSizeComplexScript707);

            paragraphProperties247.Append(paragraphMarkRunProperties247);

            Run run510 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties539 = new RunProperties();
            RunFonts runFonts706 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize714 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript708 = new FontSizeComplexScript() { Val = "22" };

            runProperties539.Append(runFonts706);
            runProperties539.Append(fontSize714);
            runProperties539.Append(fontSizeComplexScript708);
            Text text479 = new Text();
            text479.Text = "Backup";

            run510.Append(runProperties539);
            run510.Append(text479);

            Run run511 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00E74717" };

            RunProperties runProperties540 = new RunProperties();
            RunFonts runFonts707 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize715 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript709 = new FontSizeComplexScript() { Val = "22" };

            runProperties540.Append(runFonts707);
            runProperties540.Append(fontSize715);
            runProperties540.Append(fontSizeComplexScript709);
            Text text480 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text480.Text = " process";

            run511.Append(runProperties540);
            run511.Append(text480);

            Run run512 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties541 = new RunProperties();
            RunFonts runFonts708 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize716 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript710 = new FontSizeComplexScript() { Val = "22" };

            runProperties541.Append(runFonts708);
            runProperties541.Append(fontSize716);
            runProperties541.Append(fontSizeComplexScript710);
            Text text481 = new Text();
            text481.Text = ":";

            run512.Append(runProperties541);
            run512.Append(text481);

            Run run513 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00016F9B" };

            RunProperties runProperties542 = new RunProperties();
            RunFonts runFonts709 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize717 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript711 = new FontSizeComplexScript() { Val = "22" };

            runProperties542.Append(runFonts709);
            runProperties542.Append(fontSize717);
            runProperties542.Append(fontSizeComplexScript711);
            Text text482 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text482.Text = " Data Domain Backups";

            run513.Append(runProperties542);
            run513.Append(text482);

            paragraph250.Append(paragraphProperties247);
            paragraph250.Append(run510);
            paragraph250.Append(run511);
            paragraph250.Append(run512);
            paragraph250.Append(run513);

            Paragraph paragraph251 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E74717", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1A85", TextId = "4EB339A2" };

            ParagraphProperties paragraphProperties248 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties248 = new ParagraphMarkRunProperties();
            RunFonts runFonts710 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize718 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript712 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties248.Append(runFonts710);
            paragraphMarkRunProperties248.Append(fontSize718);
            paragraphMarkRunProperties248.Append(fontSizeComplexScript712);

            paragraphProperties248.Append(paragraphMarkRunProperties248);

            SdtRun sdtRun37 = new SdtRun();

            SdtProperties sdtProperties37 = new SdtProperties();

            RunProperties runProperties543 = new RunProperties();
            RunFonts runFonts711 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize719 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript713 = new FontSizeComplexScript() { Val = "22" };

            runProperties543.Append(runFonts711);
            runProperties543.Append(fontSize719);
            runProperties543.Append(fontSizeComplexScript713);
            SdtId sdtId37 = new SdtId() { Val = -340703621 };

            W14.SdtContentCheckBox sdtContentCheckBox37 = new W14.SdtContentCheckBox();
            W14.Checked checked37 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState37 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState37 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox37.Append(checked37);
            sdtContentCheckBox37.Append(checkedState37);
            sdtContentCheckBox37.Append(uncheckedState37);

            sdtProperties37.Append(runProperties543);
            sdtProperties37.Append(sdtId37);
            sdtProperties37.Append(sdtContentCheckBox37);
            SdtEndCharProperties sdtEndCharProperties37 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun37 = new SdtContentRun();

            Run run514 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties544 = new RunProperties();
            RunFonts runFonts712 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize720 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript714 = new FontSizeComplexScript() { Val = "22" };

            runProperties544.Append(runFonts712);
            runProperties544.Append(fontSize720);
            runProperties544.Append(fontSizeComplexScript714);
            Text text483 = new Text();
            text483.Text = "☐";

            run514.Append(runProperties544);
            run514.Append(text483);

            sdtContentRun37.Append(run514);

            sdtRun37.Append(sdtProperties37);
            sdtRun37.Append(sdtEndCharProperties37);
            sdtRun37.Append(sdtContentRun37);

            Run run515 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00E74717" };

            RunProperties runProperties545 = new RunProperties();
            RunFonts runFonts713 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize721 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript715 = new FontSizeComplexScript() { Val = "22" };

            runProperties545.Append(runFonts713);
            runProperties545.Append(fontSize721);
            runProperties545.Append(fontSizeComplexScript715);
            Text text484 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text484.Text = " Data Domain ";

            run515.Append(runProperties545);
            run515.Append(text484);

            Run run516 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties546 = new RunProperties();
            RunFonts runFonts714 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize722 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript716 = new FontSizeComplexScript() { Val = "22" };

            runProperties546.Append(runFonts714);
            runProperties546.Append(fontSize722);
            runProperties546.Append(fontSizeComplexScript716);
            Text text485 = new Text();
            text485.Text = "B";

            run516.Append(runProperties546);
            run516.Append(text485);

            Run run517 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00E74717" };

            RunProperties runProperties547 = new RunProperties();
            RunFonts runFonts715 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize723 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript717 = new FontSizeComplexScript() { Val = "22" };

            runProperties547.Append(runFonts715);
            runProperties547.Append(fontSize723);
            runProperties547.Append(fontSizeComplexScript717);
            Text text486 = new Text();
            text486.Text = "ackup";

            run517.Append(runProperties547);
            run517.Append(text486);

            paragraph251.Append(paragraphProperties248);
            paragraph251.Append(sdtRun37);
            paragraph251.Append(run515);
            paragraph251.Append(run516);
            paragraph251.Append(run517);

            Paragraph paragraph252 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E74717", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1A86", TextId = "0FAB458E" };

            ParagraphProperties paragraphProperties249 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties249 = new ParagraphMarkRunProperties();
            RunFonts runFonts716 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize724 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript718 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties249.Append(runFonts716);
            paragraphMarkRunProperties249.Append(fontSize724);
            paragraphMarkRunProperties249.Append(fontSizeComplexScript718);

            paragraphProperties249.Append(paragraphMarkRunProperties249);

            SdtRun sdtRun38 = new SdtRun();

            SdtProperties sdtProperties38 = new SdtProperties();

            RunProperties runProperties548 = new RunProperties();
            RunFonts runFonts717 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize725 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript719 = new FontSizeComplexScript() { Val = "22" };

            runProperties548.Append(runFonts717);
            runProperties548.Append(fontSize725);
            runProperties548.Append(fontSizeComplexScript719);
            SdtId sdtId38 = new SdtId() { Val = 263115192 };

            W14.SdtContentCheckBox sdtContentCheckBox38 = new W14.SdtContentCheckBox();
            W14.Checked checked38 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState38 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState38 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox38.Append(checked38);
            sdtContentCheckBox38.Append(checkedState38);
            sdtContentCheckBox38.Append(uncheckedState38);

            sdtProperties38.Append(runProperties548);
            sdtProperties38.Append(sdtId38);
            sdtProperties38.Append(sdtContentCheckBox38);
            SdtEndCharProperties sdtEndCharProperties38 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun38 = new SdtContentRun();

            Run run518 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties549 = new RunProperties();
            RunFonts runFonts718 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize726 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript720 = new FontSizeComplexScript() { Val = "22" };

            runProperties549.Append(runFonts718);
            runProperties549.Append(fontSize726);
            runProperties549.Append(fontSizeComplexScript720);
            Text text487 = new Text();
            text487.Text = "☐";

            run518.Append(runProperties549);
            run518.Append(text487);

            sdtContentRun38.Append(run518);

            sdtRun38.Append(sdtProperties38);
            sdtRun38.Append(sdtEndCharProperties38);
            sdtRun38.Append(sdtContentRun38);

            Run run519 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties550 = new RunProperties();
            RunFonts runFonts719 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize727 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript721 = new FontSizeComplexScript() { Val = "22" };

            runProperties550.Append(runFonts719);
            runProperties550.Append(fontSize727);
            runProperties550.Append(fontSizeComplexScript721);
            Text text488 = new Text();
            text488.Text = "Tivoli Storage Manager Point of Time Backup";

            run519.Append(runProperties550);
            run519.Append(text488);

            Run run520 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties551 = new RunProperties();
            RunFonts runFonts720 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize728 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript722 = new FontSizeComplexScript() { Val = "22" };

            runProperties551.Append(runFonts720);
            runProperties551.Append(fontSize728);
            runProperties551.Append(fontSizeComplexScript722);
            TabChar tabChar36 = new TabChar();

            run520.Append(runProperties551);
            run520.Append(tabChar36);

            Run run521 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties552 = new RunProperties();
            RunFonts runFonts721 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize729 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript723 = new FontSizeComplexScript() { Val = "22" };

            runProperties552.Append(runFonts721);
            runProperties552.Append(fontSize729);
            runProperties552.Append(fontSizeComplexScript723);
            TabChar tabChar37 = new TabChar();
            Text text489 = new Text();
            text489.Text = "TSM Server:";

            run521.Append(runProperties552);
            run521.Append(tabChar37);
            run521.Append(text489);

            paragraph252.Append(paragraphProperties249);
            paragraph252.Append(sdtRun38);
            paragraph252.Append(run519);
            paragraph252.Append(run520);
            paragraph252.Append(run521);

            Paragraph paragraph253 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E74717", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1A87", TextId = "7197A2EC" };

            ParagraphProperties paragraphProperties250 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties250 = new ParagraphMarkRunProperties();
            RunFonts runFonts722 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize730 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript724 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties250.Append(runFonts722);
            paragraphMarkRunProperties250.Append(fontSize730);
            paragraphMarkRunProperties250.Append(fontSizeComplexScript724);

            paragraphProperties250.Append(paragraphMarkRunProperties250);

            SdtRun sdtRun39 = new SdtRun();

            SdtProperties sdtProperties39 = new SdtProperties();

            RunProperties runProperties553 = new RunProperties();
            RunFonts runFonts723 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize731 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript725 = new FontSizeComplexScript() { Val = "22" };

            runProperties553.Append(runFonts723);
            runProperties553.Append(fontSize731);
            runProperties553.Append(fontSizeComplexScript725);
            SdtId sdtId39 = new SdtId() { Val = -1272237582 };

            W14.SdtContentCheckBox sdtContentCheckBox39 = new W14.SdtContentCheckBox();
            W14.Checked checked39 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState39 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState39 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox39.Append(checked39);
            sdtContentCheckBox39.Append(checkedState39);
            sdtContentCheckBox39.Append(uncheckedState39);

            sdtProperties39.Append(runProperties553);
            sdtProperties39.Append(sdtId39);
            sdtProperties39.Append(sdtContentCheckBox39);
            SdtEndCharProperties sdtEndCharProperties39 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun39 = new SdtContentRun();

            Run run522 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties554 = new RunProperties();
            RunFonts runFonts724 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize732 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript726 = new FontSizeComplexScript() { Val = "22" };

            runProperties554.Append(runFonts724);
            runProperties554.Append(fontSize732);
            runProperties554.Append(fontSizeComplexScript726);
            Text text490 = new Text();
            text490.Text = "☐";

            run522.Append(runProperties554);
            run522.Append(text490);

            sdtContentRun39.Append(run522);

            sdtRun39.Append(sdtProperties39);
            sdtRun39.Append(sdtEndCharProperties39);
            sdtRun39.Append(sdtContentRun39);

            Run run523 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00E74717" };

            RunProperties runProperties555 = new RunProperties();
            RunFonts runFonts725 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize733 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript727 = new FontSizeComplexScript() { Val = "22" };

            runProperties555.Append(runFonts725);
            runProperties555.Append(fontSize733);
            runProperties555.Append(fontSizeComplexScript727);
            Text text491 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text491.Text = " Transaction Log Data Domain Backup";

            run523.Append(runProperties555);
            run523.Append(text491);

            paragraph253.Append(paragraphProperties250);
            paragraph253.Append(sdtRun39);
            paragraph253.Append(run523);

            Paragraph paragraph254 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E74717", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00E74717", ParagraphId = "0AAC1A88", TextId = "77777777" };

            ParagraphProperties paragraphProperties251 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties251 = new ParagraphMarkRunProperties();
            RunFonts runFonts726 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize734 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript728 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties251.Append(runFonts726);
            paragraphMarkRunProperties251.Append(fontSize734);
            paragraphMarkRunProperties251.Append(fontSizeComplexScript728);

            paragraphProperties251.Append(paragraphMarkRunProperties251);

            Run run524 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties556 = new RunProperties();
            RunFonts runFonts727 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize735 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript729 = new FontSizeComplexScript() { Val = "22" };

            runProperties556.Append(runFonts727);
            runProperties556.Append(fontSize735);
            runProperties556.Append(fontSizeComplexScript729);
            TabChar tabChar38 = new TabChar();
            Text text492 = new Text();
            text492.Text = "Frequency 1hr   4hr    6hr";

            run524.Append(runProperties556);
            run524.Append(tabChar38);
            run524.Append(text492);

            paragraph254.Append(paragraphProperties251);
            paragraph254.Append(run524);

            Paragraph paragraph255 = new Paragraph() { RsidParagraphAddition = "00116831", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1A89", TextId = "77777777" };

            ParagraphProperties paragraphProperties252 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties252 = new ParagraphMarkRunProperties();
            RunFonts runFonts728 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color269 = new Color() { Val = "FF0000" };
            FontSize fontSize736 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript730 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties252.Append(runFonts728);
            paragraphMarkRunProperties252.Append(color269);
            paragraphMarkRunProperties252.Append(fontSize736);
            paragraphMarkRunProperties252.Append(fontSizeComplexScript730);

            paragraphProperties252.Append(paragraphMarkRunProperties252);

            Run run525 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties557 = new RunProperties();
            RunFonts runFonts729 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold98 = new Bold();
            FontSize fontSize737 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript731 = new FontSizeComplexScript() { Val = "22" };

            runProperties557.Append(runFonts729);
            runProperties557.Append(bold98);
            runProperties557.Append(fontSize737);
            runProperties557.Append(fontSizeComplexScript731);
            Text text493 = new Text();
            text493.Text = "List any outside of standards configurations";

            run525.Append(runProperties557);
            run525.Append(text493);

            Run run526 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties558 = new RunProperties();
            RunFonts runFonts730 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold99 = new Bold();
            FontSize fontSize738 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript732 = new FontSizeComplexScript() { Val = "22" };

            runProperties558.Append(runFonts730);
            runProperties558.Append(bold99);
            runProperties558.Append(fontSize738);
            runProperties558.Append(fontSizeComplexScript732);
            Text text494 = new Text();
            text494.Text = ":";

            run526.Append(runProperties558);
            run526.Append(text494);

            Run run527 = new Run() { RsidRunAddition = "00F97B58" };

            RunProperties runProperties559 = new RunProperties();
            RunFonts runFonts731 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold100 = new Bold();
            FontSize fontSize739 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript733 = new FontSizeComplexScript() { Val = "22" };

            runProperties559.Append(runFonts731);
            runProperties559.Append(bold100);
            runProperties559.Append(fontSize739);
            runProperties559.Append(fontSizeComplexScript733);
            Text text495 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text495.Text = " ";

            run527.Append(runProperties559);
            run527.Append(text495);

            Run run528 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties560 = new RunProperties();
            RunFonts runFonts732 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color270 = new Color() { Val = "FF0000" };
            FontSize fontSize740 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript734 = new FontSizeComplexScript() { Val = "22" };

            runProperties560.Append(runFonts732);
            runProperties560.Append(color270);
            runProperties560.Append(fontSize740);
            runProperties560.Append(fontSizeComplexScript734);
            Text text496 = new Text();
            text496.Text = "xxxx";

            run528.Append(runProperties560);
            run528.Append(text496);

            paragraph255.Append(paragraphProperties252);
            paragraph255.Append(run525);
            paragraph255.Append(run526);
            paragraph255.Append(run527);
            paragraph255.Append(run528);

            Paragraph paragraph256 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "002B0580", ParagraphId = "0AAC1A8A", TextId = "0D3EF1D6" };

            ParagraphProperties paragraphProperties253 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId18 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties253 = new ParagraphMarkRunProperties();
            Underline underline68 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties253.Append(underline68);

            paragraphProperties253.Append(paragraphStyleId18);
            paragraphProperties253.Append(paragraphMarkRunProperties253);

            Run run529 = new Run();

            RunProperties runProperties561 = new RunProperties();
            Underline underline69 = new Underline() { Val = UnderlineValues.Single };

            runProperties561.Append(underline69);
            Text text497 = new Text();
            text497.Text = "14";

            run529.Append(runProperties561);
            run529.Append(text497);

            Run run530 = new Run() { RsidRunAddition = "00E518DD" };

            RunProperties runProperties562 = new RunProperties();
            Underline underline70 = new Underline() { Val = UnderlineValues.Single };

            runProperties562.Append(underline70);
            Text text498 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text498.Text = ". ";

            run530.Append(runProperties562);
            run530.Append(text498);

            Run run531 = new Run() { RsidRunAddition = "00F34C49" };

            RunProperties runProperties563 = new RunProperties();
            Underline underline71 = new Underline() { Val = UnderlineValues.Single };

            runProperties563.Append(underline71);
            Text text499 = new Text();
            text499.Text = "C";

            run531.Append(runProperties563);
            run531.Append(text499);

            Run run532 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F34C49" };

            RunProperties runProperties564 = new RunProperties();
            Underline underline72 = new Underline() { Val = UnderlineValues.Single };

            runProperties564.Append(underline72);
            Text text500 = new Text();
            text500.Text = "luster Configurations";

            run532.Append(runProperties564);
            run532.Append(text500);

            Run run533 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties565 = new RunProperties();
            Color color271 = new Color() { Val = "FF0000" };
            Underline underline73 = new Underline() { Val = UnderlineValues.Single };

            runProperties565.Append(color271);
            runProperties565.Append(underline73);
            Text text501 = new Text();
            text501.Text = ": N/A";

            run533.Append(runProperties565);
            run533.Append(text501);

            paragraph256.Append(paragraphProperties253);
            paragraph256.Append(run529);
            paragraph256.Append(run530);
            paragraph256.Append(run531);
            paragraph256.Append(run532);
            paragraph256.Append(run533);

            Paragraph paragraph257 = new Paragraph() { RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1A8B", TextId = "757AF706" };

            ParagraphProperties paragraphProperties254 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties254 = new ParagraphMarkRunProperties();
            RunFonts runFonts733 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize741 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript735 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties254.Append(runFonts733);
            paragraphMarkRunProperties254.Append(fontSize741);
            paragraphMarkRunProperties254.Append(fontSizeComplexScript735);

            paragraphProperties254.Append(paragraphMarkRunProperties254);

            SdtRun sdtRun40 = new SdtRun();

            SdtProperties sdtProperties40 = new SdtProperties();

            RunProperties runProperties566 = new RunProperties();
            RunFonts runFonts734 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize742 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript736 = new FontSizeComplexScript() { Val = "22" };

            runProperties566.Append(runFonts734);
            runProperties566.Append(fontSize742);
            runProperties566.Append(fontSizeComplexScript736);
            SdtId sdtId40 = new SdtId() { Val = -281193091 };

            W14.SdtContentCheckBox sdtContentCheckBox40 = new W14.SdtContentCheckBox();
            W14.Checked checked40 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState40 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState40 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox40.Append(checked40);
            sdtContentCheckBox40.Append(checkedState40);
            sdtContentCheckBox40.Append(uncheckedState40);

            sdtProperties40.Append(runProperties566);
            sdtProperties40.Append(sdtId40);
            sdtProperties40.Append(sdtContentCheckBox40);
            SdtEndCharProperties sdtEndCharProperties40 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun40 = new SdtContentRun();

            Run run534 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties567 = new RunProperties();
            RunFonts runFonts735 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize743 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript737 = new FontSizeComplexScript() { Val = "22" };

            runProperties567.Append(runFonts735);
            runProperties567.Append(fontSize743);
            runProperties567.Append(fontSizeComplexScript737);
            Text text502 = new Text();
            text502.Text = "☐";

            run534.Append(runProperties567);
            run534.Append(text502);

            sdtContentRun40.Append(run534);

            sdtRun40.Append(sdtProperties40);
            sdtRun40.Append(sdtEndCharProperties40);
            sdtRun40.Append(sdtContentRun40);

            Run run535 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F34C49" };

            RunProperties runProperties568 = new RunProperties();
            RunFonts runFonts736 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize744 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript738 = new FontSizeComplexScript() { Val = "22" };

            runProperties568.Append(runFonts736);
            runProperties568.Append(fontSize744);
            runProperties568.Append(fontSizeComplexScript738);
            Text text503 = new Text();
            text503.Text = "Windows 2008 Cluster";

            run535.Append(runProperties568);
            run535.Append(text503);

            paragraph257.Append(paragraphProperties254);
            paragraph257.Append(sdtRun40);
            paragraph257.Append(run535);

            Paragraph paragraph258 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00697199", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00A563A2", ParagraphId = "1327E4A5", TextId = "7FFE3622" };

            ParagraphProperties paragraphProperties255 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties255 = new ParagraphMarkRunProperties();
            RunFonts runFonts737 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize745 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript739 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties255.Append(runFonts737);
            paragraphMarkRunProperties255.Append(fontSize745);
            paragraphMarkRunProperties255.Append(fontSizeComplexScript739);

            paragraphProperties255.Append(paragraphMarkRunProperties255);

            SdtRun sdtRun41 = new SdtRun();

            SdtProperties sdtProperties41 = new SdtProperties();

            RunProperties runProperties569 = new RunProperties();
            RunFonts runFonts738 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize746 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript740 = new FontSizeComplexScript() { Val = "22" };

            runProperties569.Append(runFonts738);
            runProperties569.Append(fontSize746);
            runProperties569.Append(fontSizeComplexScript740);
            SdtId sdtId41 = new SdtId() { Val = 1916671392 };

            W14.SdtContentCheckBox sdtContentCheckBox41 = new W14.SdtContentCheckBox();
            W14.Checked checked41 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState41 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState41 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox41.Append(checked41);
            sdtContentCheckBox41.Append(checkedState41);
            sdtContentCheckBox41.Append(uncheckedState41);

            sdtProperties41.Append(runProperties569);
            sdtProperties41.Append(sdtId41);
            sdtProperties41.Append(sdtContentCheckBox41);
            SdtEndCharProperties sdtEndCharProperties41 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun41 = new SdtContentRun();

            Run run536 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties570 = new RunProperties();
            RunFonts runFonts739 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize747 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript741 = new FontSizeComplexScript() { Val = "22" };

            runProperties570.Append(runFonts739);
            runProperties570.Append(fontSize747);
            runProperties570.Append(fontSizeComplexScript741);
            Text text504 = new Text();
            text504.Text = "☐";

            run536.Append(runProperties570);
            run536.Append(text504);

            sdtContentRun41.Append(run536);

            sdtRun41.Append(sdtProperties41);
            sdtRun41.Append(sdtEndCharProperties41);
            sdtRun41.Append(sdtContentRun41);

            Run run537 = new Run() { RsidRunAddition = "00697199" };

            RunProperties runProperties571 = new RunProperties();
            RunFonts runFonts740 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize748 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript742 = new FontSizeComplexScript() { Val = "22" };

            runProperties571.Append(runFonts740);
            runProperties571.Append(fontSize748);
            runProperties571.Append(fontSizeComplexScript742);
            Text text505 = new Text();
            text505.Text = "SQL Always-On Cluster";

            run537.Append(runProperties571);
            run537.Append(text505);

            paragraph258.Append(paragraphProperties255);
            paragraph258.Append(sdtRun41);
            paragraph258.Append(run537);

            Paragraph paragraph259 = new Paragraph() { RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1A8C", TextId = "228C4762" };

            ParagraphProperties paragraphProperties256 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties256 = new ParagraphMarkRunProperties();
            RunFonts runFonts741 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize749 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript743 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties256.Append(runFonts741);
            paragraphMarkRunProperties256.Append(fontSize749);
            paragraphMarkRunProperties256.Append(fontSizeComplexScript743);

            paragraphProperties256.Append(paragraphMarkRunProperties256);

            SdtRun sdtRun42 = new SdtRun();

            SdtProperties sdtProperties42 = new SdtProperties();

            RunProperties runProperties572 = new RunProperties();
            RunFonts runFonts742 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize750 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript744 = new FontSizeComplexScript() { Val = "22" };

            runProperties572.Append(runFonts742);
            runProperties572.Append(fontSize750);
            runProperties572.Append(fontSizeComplexScript744);
            SdtId sdtId42 = new SdtId() { Val = 85887934 };

            W14.SdtContentCheckBox sdtContentCheckBox42 = new W14.SdtContentCheckBox();
            W14.Checked checked42 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState42 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState42 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox42.Append(checked42);
            sdtContentCheckBox42.Append(checkedState42);
            sdtContentCheckBox42.Append(uncheckedState42);

            sdtProperties42.Append(runProperties572);
            sdtProperties42.Append(sdtId42);
            sdtProperties42.Append(sdtContentCheckBox42);
            SdtEndCharProperties sdtEndCharProperties42 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun42 = new SdtContentRun();

            Run run538 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties573 = new RunProperties();
            RunFonts runFonts743 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize751 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript745 = new FontSizeComplexScript() { Val = "22" };

            runProperties573.Append(runFonts743);
            runProperties573.Append(fontSize751);
            runProperties573.Append(fontSizeComplexScript745);
            Text text506 = new Text();
            text506.Text = "☐";

            run538.Append(runProperties573);
            run538.Append(text506);

            sdtContentRun42.Append(run538);

            sdtRun42.Append(sdtProperties42);
            sdtRun42.Append(sdtEndCharProperties42);
            sdtRun42.Append(sdtContentRun42);

            Run run539 = new Run() { RsidRunAddition = "00697199" };

            RunProperties runProperties574 = new RunProperties();
            RunFonts runFonts744 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize752 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript746 = new FontSizeComplexScript() { Val = "22" };

            runProperties574.Append(runFonts744);
            runProperties574.Append(fontSize752);
            runProperties574.Append(fontSizeComplexScript746);
            Text text507 = new Text();
            text507.Text = "Symantec Global Cluster";

            run539.Append(runProperties574);
            run539.Append(text507);

            paragraph259.Append(paragraphProperties256);
            paragraph259.Append(sdtRun42);
            paragraph259.Append(run539);

            Paragraph paragraph260 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A8D", TextId = "248FCE74" };

            ParagraphProperties paragraphProperties257 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties257 = new ParagraphMarkRunProperties();
            RunFonts runFonts745 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize753 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript747 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties257.Append(runFonts745);
            paragraphMarkRunProperties257.Append(fontSize753);
            paragraphMarkRunProperties257.Append(fontSizeComplexScript747);

            paragraphProperties257.Append(paragraphMarkRunProperties257);

            Run run540 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties575 = new RunProperties();
            RunFonts runFonts746 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize754 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript748 = new FontSizeComplexScript() { Val = "22" };

            runProperties575.Append(runFonts746);
            runProperties575.Append(fontSize754);
            runProperties575.Append(fontSizeComplexScript748);
            Text text508 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text508.Text = "Cluster Name: ";

            run540.Append(runProperties575);
            run540.Append(text508);

            Run run541 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties576 = new RunProperties();
            RunFonts runFonts747 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color272 = new Color() { Val = "FF0000" };
            FontSize fontSize755 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript749 = new FontSizeComplexScript() { Val = "22" };

            runProperties576.Append(runFonts747);
            runProperties576.Append(color272);
            runProperties576.Append(fontSize755);
            runProperties576.Append(fontSizeComplexScript749);
            Text text509 = new Text();
            text509.Text = "BJCxxxx";

            run541.Append(runProperties576);
            run541.Append(text509);

            Run run542 = new Run();

            RunProperties runProperties577 = new RunProperties();
            RunFonts runFonts748 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color273 = new Color() { Val = "FF0000" };
            FontSize fontSize756 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript750 = new FontSizeComplexScript() { Val = "22" };

            runProperties577.Append(runFonts748);
            runProperties577.Append(color273);
            runProperties577.Append(fontSize756);
            runProperties577.Append(fontSizeComplexScript750);
            Text text510 = new Text();
            text510.Text = "CLS01";

            run542.Append(runProperties577);
            run542.Append(text510);

            paragraph260.Append(paragraphProperties257);
            paragraph260.Append(run540);
            paragraph260.Append(run541);
            paragraph260.Append(run542);

            Paragraph paragraph261 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A8E", TextId = "77777777" };

            ParagraphProperties paragraphProperties258 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties258 = new ParagraphMarkRunProperties();
            RunFonts runFonts749 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize757 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript751 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties258.Append(runFonts749);
            paragraphMarkRunProperties258.Append(fontSize757);
            paragraphMarkRunProperties258.Append(fontSizeComplexScript751);

            paragraphProperties258.Append(paragraphMarkRunProperties258);

            Run run543 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties578 = new RunProperties();
            RunFonts runFonts750 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize758 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript752 = new FontSizeComplexScript() { Val = "22" };

            runProperties578.Append(runFonts750);
            runProperties578.Append(fontSize758);
            runProperties578.Append(fontSizeComplexScript752);
            Text text511 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text511.Text = "Cluster IP: ";

            run543.Append(runProperties578);
            run543.Append(text511);

            Run run544 = new Run();

            RunProperties runProperties579 = new RunProperties();
            RunFonts runFonts751 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize759 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript753 = new FontSizeComplexScript() { Val = "22" };

            runProperties579.Append(runFonts751);
            runProperties579.Append(fontSize759);
            runProperties579.Append(fontSizeComplexScript753);
            Text text512 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text512.Text = " ";

            run544.Append(runProperties579);
            run544.Append(text512);

            paragraph261.Append(paragraphProperties258);
            paragraph261.Append(run543);
            paragraph261.Append(run544);

            Paragraph paragraph262 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A8F", TextId = "77777777" };

            ParagraphProperties paragraphProperties259 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties259 = new ParagraphMarkRunProperties();
            RunFonts runFonts752 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize760 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript754 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties259.Append(runFonts752);
            paragraphMarkRunProperties259.Append(fontSize760);
            paragraphMarkRunProperties259.Append(fontSizeComplexScript754);

            paragraphProperties259.Append(paragraphMarkRunProperties259);

            Run run545 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties580 = new RunProperties();
            RunFonts runFonts753 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize761 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript755 = new FontSizeComplexScript() { Val = "22" };

            runProperties580.Append(runFonts753);
            runProperties580.Append(fontSize761);
            runProperties580.Append(fontSizeComplexScript755);
            Text text513 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text513.Text = "Clustered Hosts: ";

            run545.Append(runProperties580);
            run545.Append(text513);

            Run run546 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties581 = new RunProperties();
            RunFonts runFonts754 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color274 = new Color() { Val = "FF0000" };
            FontSize fontSize762 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript756 = new FontSizeComplexScript() { Val = "22" };

            runProperties581.Append(runFonts754);
            runProperties581.Append(color274);
            runProperties581.Append(fontSize762);
            runProperties581.Append(fontSizeComplexScript756);
            Text text514 = new Text();
            text514.Text = "BJCxxxx";

            run546.Append(runProperties581);
            run546.Append(text514);

            Run run547 = new Run();

            RunProperties runProperties582 = new RunProperties();
            RunFonts runFonts755 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color275 = new Color() { Val = "FF0000" };
            FontSize fontSize763 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript757 = new FontSizeComplexScript() { Val = "22" };

            runProperties582.Append(runFonts755);
            runProperties582.Append(color275);
            runProperties582.Append(fontSize763);
            runProperties582.Append(fontSizeComplexScript757);
            Text text515 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text515.Text = "CN01 & ";

            run547.Append(runProperties582);
            run547.Append(text515);

            Run run548 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties583 = new RunProperties();
            RunFonts runFonts756 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color276 = new Color() { Val = "FF0000" };
            FontSize fontSize764 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript758 = new FontSizeComplexScript() { Val = "22" };

            runProperties583.Append(runFonts756);
            runProperties583.Append(color276);
            runProperties583.Append(fontSize764);
            runProperties583.Append(fontSizeComplexScript758);
            Text text516 = new Text();
            text516.Text = "BJCxxxx";

            run548.Append(runProperties583);
            run548.Append(text516);

            Run run549 = new Run();

            RunProperties runProperties584 = new RunProperties();
            RunFonts runFonts757 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color277 = new Color() { Val = "FF0000" };
            FontSize fontSize765 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript759 = new FontSizeComplexScript() { Val = "22" };

            runProperties584.Append(runFonts757);
            runProperties584.Append(color277);
            runProperties584.Append(fontSize765);
            runProperties584.Append(fontSizeComplexScript759);
            Text text517 = new Text();
            text517.Text = "CN02";

            run549.Append(runProperties584);
            run549.Append(text517);

            paragraph262.Append(paragraphProperties259);
            paragraph262.Append(run545);
            paragraph262.Append(run546);
            paragraph262.Append(run547);
            paragraph262.Append(run548);
            paragraph262.Append(run549);

            Paragraph paragraph263 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A90", TextId = "77777777" };

            ParagraphProperties paragraphProperties260 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties260 = new ParagraphMarkRunProperties();
            RunFonts runFonts758 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize766 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript760 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties260.Append(runFonts758);
            paragraphMarkRunProperties260.Append(fontSize766);
            paragraphMarkRunProperties260.Append(fontSizeComplexScript760);

            paragraphProperties260.Append(paragraphMarkRunProperties260);

            Run run550 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties585 = new RunProperties();
            RunStyle runStyle1 = new RunStyle() { Val = "Strong" };

            runProperties585.Append(runStyle1);
            Text text518 = new Text();
            text518.Text = "Resources";

            run550.Append(runProperties585);
            run550.Append(text518);

            paragraph263.Append(paragraphProperties260);
            paragraph263.Append(run550);

            Paragraph paragraph264 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "00F34C49", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A91", TextId = "77777777" };

            ParagraphProperties paragraphProperties261 = new ParagraphProperties();
            Indentation indentation22 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties261 = new ParagraphMarkRunProperties();
            RunFonts runFonts759 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize767 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript761 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties261.Append(runFonts759);
            paragraphMarkRunProperties261.Append(fontSize767);
            paragraphMarkRunProperties261.Append(fontSizeComplexScript761);

            paragraphProperties261.Append(indentation22);
            paragraphProperties261.Append(paragraphMarkRunProperties261);

            Run run551 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties586 = new RunProperties();
            RunFonts runFonts760 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize768 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript762 = new FontSizeComplexScript() { Val = "22" };

            runProperties586.Append(runFonts760);
            runProperties586.Append(fontSize768);
            runProperties586.Append(fontSizeComplexScript762);
            Text text519 = new Text();
            text519.Text = "Group Name:";

            run551.Append(runProperties586);
            run551.Append(text519);

            Run run552 = new Run() { RsidRunProperties = "00A565FD" };

            RunProperties runProperties587 = new RunProperties();
            RunFonts runFonts761 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color278 = new Color() { Val = "FF0000" };
            FontSize fontSize769 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript763 = new FontSizeComplexScript() { Val = "22" };

            runProperties587.Append(runFonts761);
            runProperties587.Append(color278);
            runProperties587.Append(fontSize769);
            runProperties587.Append(fontSizeComplexScript763);
            Text text520 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text520.Text = " ";

            run552.Append(runProperties587);
            run552.Append(text520);

            Run run553 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties588 = new RunProperties();
            RunFonts runFonts762 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color279 = new Color() { Val = "FF0000" };
            FontSize fontSize770 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript764 = new FontSizeComplexScript() { Val = "22" };

            runProperties588.Append(runFonts762);
            runProperties588.Append(color279);
            runProperties588.Append(fontSize770);
            runProperties588.Append(fontSizeComplexScript764);
            Text text521 = new Text();
            text521.Text = "BJCxxxxxxxx";

            run553.Append(runProperties588);
            run553.Append(text521);

            paragraph264.Append(paragraphProperties261);
            paragraph264.Append(run551);
            paragraph264.Append(run552);
            paragraph264.Append(run553);

            Table table6 = new Table();

            TableProperties tableProperties6 = new TableProperties();
            TableWidth tableWidth6 = new TableWidth() { Width = "5000", Type = TableWidthUnitValues.Pct };

            TableCellMarginDefault tableCellMarginDefault3 = new TableCellMarginDefault();
            TableCellLeftMargin tableCellLeftMargin3 = new TableCellLeftMargin() { Width = 10, Type = TableWidthValues.Dxa };
            TableCellRightMargin tableCellRightMargin3 = new TableCellRightMargin() { Width = 10, Type = TableWidthValues.Dxa };

            tableCellMarginDefault3.Append(tableCellLeftMargin3);
            tableCellMarginDefault3.Append(tableCellRightMargin3);
            TableLook tableLook6 = new TableLook() { Val = "0000" };

            tableProperties6.Append(tableWidth6);
            tableProperties6.Append(tableCellMarginDefault3);
            tableProperties6.Append(tableLook6);

            TableGrid tableGrid6 = new TableGrid();
            GridColumn gridColumn31 = new GridColumn() { Width = "2621" };
            GridColumn gridColumn32 = new GridColumn() { Width = "3403" };
            GridColumn gridColumn33 = new GridColumn() { Width = "3613" };
            GridColumn gridColumn34 = new GridColumn() { Width = "3313" };

            tableGrid6.Append(gridColumn31);
            tableGrid6.Append(gridColumn32);
            tableGrid6.Append(gridColumn33);
            tableGrid6.Append(gridColumn34);

            TableRow tableRow31 = new TableRow() { RsidTableRowMarkRevision = "00281D13", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC1A96", TextId = "77777777" };

            TableRowProperties tableRowProperties18 = new TableRowProperties();
            TableRowHeight tableRowHeight18 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties18.Append(tableRowHeight18);

            TableCell tableCell138 = new TableCell();

            TableCellProperties tableCellProperties138 = new TableCellProperties();
            TableCellWidth tableCellWidth138 = new TableCellWidth() { Width = "1012", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders29 = new TableCellBorders();
            TopBorder topBorder33 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder32 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder32 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder32 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders29.Append(topBorder33);
            tableCellBorders29.Append(leftBorder32);
            tableCellBorders29.Append(bottomBorder32);
            tableCellBorders29.Append(rightBorder32);
            Shading shading29 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin13 = new TableCellMargin();
            LeftMargin leftMargin13 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin13 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin13.Append(leftMargin13);
            tableCellMargin13.Append(rightMargin13);

            tableCellProperties138.Append(tableCellWidth138);
            tableCellProperties138.Append(tableCellBorders29);
            tableCellProperties138.Append(shading29);
            tableCellProperties138.Append(tableCellMargin13);

            Paragraph paragraph265 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A92", TextId = "77777777" };

            ParagraphProperties paragraphProperties262 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties262 = new ParagraphMarkRunProperties();
            RunFonts runFonts763 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold101 = new Bold();
            FontSize fontSize771 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript765 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties262.Append(runFonts763);
            paragraphMarkRunProperties262.Append(bold101);
            paragraphMarkRunProperties262.Append(fontSize771);
            paragraphMarkRunProperties262.Append(fontSizeComplexScript765);

            paragraphProperties262.Append(paragraphMarkRunProperties262);

            Run run554 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties589 = new RunProperties();
            RunFonts runFonts764 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold102 = new Bold();
            FontSize fontSize772 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript766 = new FontSizeComplexScript() { Val = "22" };

            runProperties589.Append(runFonts764);
            runProperties589.Append(bold102);
            runProperties589.Append(fontSize772);
            runProperties589.Append(fontSizeComplexScript766);
            Text text522 = new Text();
            text522.Text = "Type";

            run554.Append(runProperties589);
            run554.Append(text522);

            paragraph265.Append(paragraphProperties262);
            paragraph265.Append(run554);

            tableCell138.Append(tableCellProperties138);
            tableCell138.Append(paragraph265);

            TableCell tableCell139 = new TableCell();

            TableCellProperties tableCellProperties139 = new TableCellProperties();
            TableCellWidth tableCellWidth139 = new TableCellWidth() { Width = "1314", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders30 = new TableCellBorders();
            TopBorder topBorder34 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder33 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder33 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder33 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders30.Append(topBorder34);
            tableCellBorders30.Append(leftBorder33);
            tableCellBorders30.Append(bottomBorder33);
            tableCellBorders30.Append(rightBorder33);
            Shading shading30 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin14 = new TableCellMargin();
            LeftMargin leftMargin14 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin14 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin14.Append(leftMargin14);
            tableCellMargin14.Append(rightMargin14);

            tableCellProperties139.Append(tableCellWidth139);
            tableCellProperties139.Append(tableCellBorders30);
            tableCellProperties139.Append(shading30);
            tableCellProperties139.Append(tableCellMargin14);

            Paragraph paragraph266 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A93", TextId = "77777777" };

            ParagraphProperties paragraphProperties263 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties263 = new ParagraphMarkRunProperties();
            RunFonts runFonts765 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold103 = new Bold();
            FontSize fontSize773 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript767 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties263.Append(runFonts765);
            paragraphMarkRunProperties263.Append(bold103);
            paragraphMarkRunProperties263.Append(fontSize773);
            paragraphMarkRunProperties263.Append(fontSizeComplexScript767);

            paragraphProperties263.Append(paragraphMarkRunProperties263);

            Run run555 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties590 = new RunProperties();
            RunFonts runFonts766 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold104 = new Bold();
            FontSize fontSize774 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript768 = new FontSizeComplexScript() { Val = "22" };

            runProperties590.Append(runFonts766);
            runProperties590.Append(bold104);
            runProperties590.Append(fontSize774);
            runProperties590.Append(fontSizeComplexScript768);
            Text text523 = new Text();
            text523.Text = "Name";

            run555.Append(runProperties590);
            run555.Append(text523);

            paragraph266.Append(paragraphProperties263);
            paragraph266.Append(run555);

            tableCell139.Append(tableCellProperties139);
            tableCell139.Append(paragraph266);

            TableCell tableCell140 = new TableCell();

            TableCellProperties tableCellProperties140 = new TableCellProperties();
            TableCellWidth tableCellWidth140 = new TableCellWidth() { Width = "1395", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders31 = new TableCellBorders();
            TopBorder topBorder35 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder34 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder34 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder34 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders31.Append(topBorder35);
            tableCellBorders31.Append(leftBorder34);
            tableCellBorders31.Append(bottomBorder34);
            tableCellBorders31.Append(rightBorder34);
            Shading shading31 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin15 = new TableCellMargin();
            LeftMargin leftMargin15 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin15 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin15.Append(leftMargin15);
            tableCellMargin15.Append(rightMargin15);

            tableCellProperties140.Append(tableCellWidth140);
            tableCellProperties140.Append(tableCellBorders31);
            tableCellProperties140.Append(shading31);
            tableCellProperties140.Append(tableCellMargin15);

            Paragraph paragraph267 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A94", TextId = "77777777" };

            ParagraphProperties paragraphProperties264 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties264 = new ParagraphMarkRunProperties();
            RunFonts runFonts767 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold105 = new Bold();
            FontSize fontSize775 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript769 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties264.Append(runFonts767);
            paragraphMarkRunProperties264.Append(bold105);
            paragraphMarkRunProperties264.Append(fontSize775);
            paragraphMarkRunProperties264.Append(fontSizeComplexScript769);

            paragraphProperties264.Append(paragraphMarkRunProperties264);

            Run run556 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties591 = new RunProperties();
            RunFonts runFonts768 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold106 = new Bold();
            FontSize fontSize776 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript770 = new FontSizeComplexScript() { Val = "22" };

            runProperties591.Append(runFonts768);
            runProperties591.Append(bold106);
            runProperties591.Append(fontSize776);
            runProperties591.Append(fontSizeComplexScript770);
            Text text524 = new Text();
            text524.Text = "Config";

            run556.Append(runProperties591);
            run556.Append(text524);

            paragraph267.Append(paragraphProperties264);
            paragraph267.Append(run556);

            tableCell140.Append(tableCellProperties140);
            tableCell140.Append(paragraph267);

            TableCell tableCell141 = new TableCell();

            TableCellProperties tableCellProperties141 = new TableCellProperties();
            TableCellWidth tableCellWidth141 = new TableCellWidth() { Width = "1279", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders32 = new TableCellBorders();
            TopBorder topBorder36 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder35 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder35 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder35 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders32.Append(topBorder36);
            tableCellBorders32.Append(leftBorder35);
            tableCellBorders32.Append(bottomBorder35);
            tableCellBorders32.Append(rightBorder35);
            Shading shading32 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin16 = new TableCellMargin();
            LeftMargin leftMargin16 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin16 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin16.Append(leftMargin16);
            tableCellMargin16.Append(rightMargin16);

            tableCellProperties141.Append(tableCellWidth141);
            tableCellProperties141.Append(tableCellBorders32);
            tableCellProperties141.Append(shading32);
            tableCellProperties141.Append(tableCellMargin16);

            Paragraph paragraph268 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A95", TextId = "77777777" };

            ParagraphProperties paragraphProperties265 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties265 = new ParagraphMarkRunProperties();
            RunFonts runFonts769 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold107 = new Bold();
            FontSize fontSize777 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript771 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties265.Append(runFonts769);
            paragraphMarkRunProperties265.Append(bold107);
            paragraphMarkRunProperties265.Append(fontSize777);
            paragraphMarkRunProperties265.Append(fontSizeComplexScript771);

            paragraphProperties265.Append(paragraphMarkRunProperties265);

            Run run557 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties592 = new RunProperties();
            RunFonts runFonts770 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Bold bold108 = new Bold();
            FontSize fontSize778 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript772 = new FontSizeComplexScript() { Val = "22" };

            runProperties592.Append(runFonts770);
            runProperties592.Append(bold108);
            runProperties592.Append(fontSize778);
            runProperties592.Append(fontSizeComplexScript772);
            Text text525 = new Text();
            text525.Text = "Notes";

            run557.Append(runProperties592);
            run557.Append(text525);

            paragraph268.Append(paragraphProperties265);
            paragraph268.Append(run557);

            tableCell141.Append(tableCellProperties141);
            tableCell141.Append(paragraph268);

            tableRow31.Append(tableRowProperties18);
            tableRow31.Append(tableCell138);
            tableRow31.Append(tableCell139);
            tableRow31.Append(tableCell140);
            tableRow31.Append(tableCell141);

            TableRow tableRow32 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC1A9B", TextId = "77777777" };

            TableRowProperties tableRowProperties19 = new TableRowProperties();
            TableRowHeight tableRowHeight19 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties19.Append(tableRowHeight19);

            TableCell tableCell142 = new TableCell();

            TableCellProperties tableCellProperties142 = new TableCellProperties();
            TableCellWidth tableCellWidth142 = new TableCellWidth() { Width = "1012", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders33 = new TableCellBorders();
            TopBorder topBorder37 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder36 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder36 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder36 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders33.Append(topBorder37);
            tableCellBorders33.Append(leftBorder36);
            tableCellBorders33.Append(bottomBorder36);
            tableCellBorders33.Append(rightBorder36);
            Shading shading33 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin17 = new TableCellMargin();
            LeftMargin leftMargin17 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin17 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin17.Append(leftMargin17);
            tableCellMargin17.Append(rightMargin17);

            tableCellProperties142.Append(tableCellWidth142);
            tableCellProperties142.Append(tableCellBorders33);
            tableCellProperties142.Append(shading33);
            tableCellProperties142.Append(tableCellMargin17);

            Paragraph paragraph269 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A97", TextId = "77777777" };

            ParagraphProperties paragraphProperties266 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties266 = new ParagraphMarkRunProperties();
            RunFonts runFonts771 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color280 = new Color() { Val = "FF0000" };
            FontSize fontSize779 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript773 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties266.Append(runFonts771);
            paragraphMarkRunProperties266.Append(color280);
            paragraphMarkRunProperties266.Append(fontSize779);
            paragraphMarkRunProperties266.Append(fontSizeComplexScript773);

            paragraphProperties266.Append(paragraphMarkRunProperties266);

            Run run558 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties593 = new RunProperties();
            RunFonts runFonts772 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color281 = new Color() { Val = "FF0000" };
            FontSize fontSize780 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript774 = new FontSizeComplexScript() { Val = "22" };

            runProperties593.Append(runFonts772);
            runProperties593.Append(color281);
            runProperties593.Append(fontSize780);
            runProperties593.Append(fontSizeComplexScript774);
            Text text526 = new Text();
            text526.Text = "DTC";

            run558.Append(runProperties593);
            run558.Append(text526);

            paragraph269.Append(paragraphProperties266);
            paragraph269.Append(run558);

            tableCell142.Append(tableCellProperties142);
            tableCell142.Append(paragraph269);

            TableCell tableCell143 = new TableCell();

            TableCellProperties tableCellProperties143 = new TableCellProperties();
            TableCellWidth tableCellWidth143 = new TableCellWidth() { Width = "1314", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders34 = new TableCellBorders();
            TopBorder topBorder38 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder37 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder37 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder37 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders34.Append(topBorder38);
            tableCellBorders34.Append(leftBorder37);
            tableCellBorders34.Append(bottomBorder37);
            tableCellBorders34.Append(rightBorder37);
            Shading shading34 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin18 = new TableCellMargin();
            LeftMargin leftMargin18 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin18 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin18.Append(leftMargin18);
            tableCellMargin18.Append(rightMargin18);

            tableCellProperties143.Append(tableCellWidth143);
            tableCellProperties143.Append(tableCellBorders34);
            tableCellProperties143.Append(shading34);
            tableCellProperties143.Append(tableCellMargin18);

            Paragraph paragraph270 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A98", TextId = "77777777" };

            ParagraphProperties paragraphProperties267 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties267 = new ParagraphMarkRunProperties();
            RunFonts runFonts773 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color282 = new Color() { Val = "FF0000" };
            FontSize fontSize781 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript775 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties267.Append(runFonts773);
            paragraphMarkRunProperties267.Append(color282);
            paragraphMarkRunProperties267.Append(fontSize781);
            paragraphMarkRunProperties267.Append(fontSizeComplexScript775);

            paragraphProperties267.Append(paragraphMarkRunProperties267);

            Run run559 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties594 = new RunProperties();
            RunFonts runFonts774 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color283 = new Color() { Val = "FF0000" };
            FontSize fontSize782 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript776 = new FontSizeComplexScript() { Val = "22" };

            runProperties594.Append(runFonts774);
            runProperties594.Append(color283);
            runProperties594.Append(fontSize782);
            runProperties594.Append(fontSizeComplexScript776);
            Text text527 = new Text();
            text527.Text = "BJCxxxxxxxx";

            run559.Append(runProperties594);
            run559.Append(text527);

            paragraph270.Append(paragraphProperties267);
            paragraph270.Append(run559);

            tableCell143.Append(tableCellProperties143);
            tableCell143.Append(paragraph270);

            TableCell tableCell144 = new TableCell();

            TableCellProperties tableCellProperties144 = new TableCellProperties();
            TableCellWidth tableCellWidth144 = new TableCellWidth() { Width = "1395", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders35 = new TableCellBorders();
            TopBorder topBorder39 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder38 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder38 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder38 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders35.Append(topBorder39);
            tableCellBorders35.Append(leftBorder38);
            tableCellBorders35.Append(bottomBorder38);
            tableCellBorders35.Append(rightBorder38);
            Shading shading35 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin19 = new TableCellMargin();
            LeftMargin leftMargin19 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin19 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin19.Append(leftMargin19);
            tableCellMargin19.Append(rightMargin19);

            tableCellProperties144.Append(tableCellWidth144);
            tableCellProperties144.Append(tableCellBorders35);
            tableCellProperties144.Append(shading35);
            tableCellProperties144.Append(tableCellMargin19);

            Paragraph paragraph271 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A99", TextId = "77777777" };

            ParagraphProperties paragraphProperties268 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties268 = new ParagraphMarkRunProperties();
            RunFonts runFonts775 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color284 = new Color() { Val = "FF0000" };
            FontSize fontSize783 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript777 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties268.Append(runFonts775);
            paragraphMarkRunProperties268.Append(color284);
            paragraphMarkRunProperties268.Append(fontSize783);
            paragraphMarkRunProperties268.Append(fontSizeComplexScript777);

            paragraphProperties268.Append(paragraphMarkRunProperties268);

            Run run560 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties595 = new RunProperties();
            RunFonts runFonts776 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color285 = new Color() { Val = "FF0000" };
            FontSize fontSize784 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript778 = new FontSizeComplexScript() { Val = "22" };

            runProperties595.Append(runFonts776);
            runProperties595.Append(color285);
            runProperties595.Append(fontSize784);
            runProperties595.Append(fontSizeComplexScript778);
            Text text528 = new Text();
            text528.Text = "IP:TBD";

            run560.Append(runProperties595);
            run560.Append(text528);

            paragraph271.Append(paragraphProperties268);
            paragraph271.Append(run560);

            tableCell144.Append(tableCellProperties144);
            tableCell144.Append(paragraph271);

            TableCell tableCell145 = new TableCell();

            TableCellProperties tableCellProperties145 = new TableCellProperties();
            TableCellWidth tableCellWidth145 = new TableCellWidth() { Width = "1279", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders36 = new TableCellBorders();
            TopBorder topBorder40 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder39 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder39 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder39 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders36.Append(topBorder40);
            tableCellBorders36.Append(leftBorder39);
            tableCellBorders36.Append(bottomBorder39);
            tableCellBorders36.Append(rightBorder39);
            Shading shading36 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin20 = new TableCellMargin();
            LeftMargin leftMargin20 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin20 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin20.Append(leftMargin20);
            tableCellMargin20.Append(rightMargin20);

            tableCellProperties145.Append(tableCellWidth145);
            tableCellProperties145.Append(tableCellBorders36);
            tableCellProperties145.Append(shading36);
            tableCellProperties145.Append(tableCellMargin20);

            Paragraph paragraph272 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A9A", TextId = "77777777" };

            ParagraphProperties paragraphProperties269 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties269 = new ParagraphMarkRunProperties();
            RunFonts runFonts777 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color286 = new Color() { Val = "FF0000" };
            FontSize fontSize785 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript779 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties269.Append(runFonts777);
            paragraphMarkRunProperties269.Append(color286);
            paragraphMarkRunProperties269.Append(fontSize785);
            paragraphMarkRunProperties269.Append(fontSizeComplexScript779);

            paragraphProperties269.Append(paragraphMarkRunProperties269);

            Run run561 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties596 = new RunProperties();
            RunFonts runFonts778 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color287 = new Color() { Val = "FF0000" };
            FontSize fontSize786 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript780 = new FontSizeComplexScript() { Val = "22" };

            runProperties596.Append(runFonts778);
            runProperties596.Append(color287);
            runProperties596.Append(fontSize786);
            runProperties596.Append(fontSizeComplexScript780);
            Text text529 = new Text();
            text529.Text = "Drive U:";

            run561.Append(runProperties596);
            run561.Append(text529);

            paragraph272.Append(paragraphProperties269);
            paragraph272.Append(run561);

            tableCell145.Append(tableCellProperties145);
            tableCell145.Append(paragraph272);

            tableRow32.Append(tableRowProperties19);
            tableRow32.Append(tableCell142);
            tableRow32.Append(tableCell143);
            tableRow32.Append(tableCell144);
            tableRow32.Append(tableCell145);

            TableRow tableRow33 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC1AA0", TextId = "77777777" };

            TableRowProperties tableRowProperties20 = new TableRowProperties();
            TableRowHeight tableRowHeight20 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties20.Append(tableRowHeight20);

            TableCell tableCell146 = new TableCell();

            TableCellProperties tableCellProperties146 = new TableCellProperties();
            TableCellWidth tableCellWidth146 = new TableCellWidth() { Width = "1012", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders37 = new TableCellBorders();
            TopBorder topBorder41 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder40 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder40 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder40 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders37.Append(topBorder41);
            tableCellBorders37.Append(leftBorder40);
            tableCellBorders37.Append(bottomBorder40);
            tableCellBorders37.Append(rightBorder40);
            Shading shading37 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin21 = new TableCellMargin();
            LeftMargin leftMargin21 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin21 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin21.Append(leftMargin21);
            tableCellMargin21.Append(rightMargin21);

            tableCellProperties146.Append(tableCellWidth146);
            tableCellProperties146.Append(tableCellBorders37);
            tableCellProperties146.Append(shading37);
            tableCellProperties146.Append(tableCellMargin21);

            Paragraph paragraph273 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A9C", TextId = "77777777" };

            ParagraphProperties paragraphProperties270 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties270 = new ParagraphMarkRunProperties();
            RunFonts runFonts779 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color288 = new Color() { Val = "FF0000" };
            FontSize fontSize787 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript781 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties270.Append(runFonts779);
            paragraphMarkRunProperties270.Append(color288);
            paragraphMarkRunProperties270.Append(fontSize787);
            paragraphMarkRunProperties270.Append(fontSizeComplexScript781);

            paragraphProperties270.Append(paragraphMarkRunProperties270);

            Run run562 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties597 = new RunProperties();
            RunFonts runFonts780 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color289 = new Color() { Val = "FF0000" };
            FontSize fontSize788 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript782 = new FontSizeComplexScript() { Val = "22" };

            runProperties597.Append(runFonts780);
            runProperties597.Append(color289);
            runProperties597.Append(fontSize788);
            runProperties597.Append(fontSizeComplexScript782);
            Text text530 = new Text();
            text530.Text = "IP";

            run562.Append(runProperties597);
            run562.Append(text530);

            paragraph273.Append(paragraphProperties270);
            paragraph273.Append(run562);

            tableCell146.Append(tableCellProperties146);
            tableCell146.Append(paragraph273);

            TableCell tableCell147 = new TableCell();

            TableCellProperties tableCellProperties147 = new TableCellProperties();
            TableCellWidth tableCellWidth147 = new TableCellWidth() { Width = "1314", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders38 = new TableCellBorders();
            TopBorder topBorder42 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder41 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder41 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder41 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders38.Append(topBorder42);
            tableCellBorders38.Append(leftBorder41);
            tableCellBorders38.Append(bottomBorder41);
            tableCellBorders38.Append(rightBorder41);
            Shading shading38 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin22 = new TableCellMargin();
            LeftMargin leftMargin22 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin22 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin22.Append(leftMargin22);
            tableCellMargin22.Append(rightMargin22);

            tableCellProperties147.Append(tableCellWidth147);
            tableCellProperties147.Append(tableCellBorders38);
            tableCellProperties147.Append(shading38);
            tableCellProperties147.Append(tableCellMargin22);

            Paragraph paragraph274 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A9D", TextId = "77777777" };

            ParagraphProperties paragraphProperties271 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties271 = new ParagraphMarkRunProperties();
            RunFonts runFonts781 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color290 = new Color() { Val = "FF0000" };
            FontSize fontSize789 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript783 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties271.Append(runFonts781);
            paragraphMarkRunProperties271.Append(color290);
            paragraphMarkRunProperties271.Append(fontSize789);
            paragraphMarkRunProperties271.Append(fontSizeComplexScript783);

            paragraphProperties271.Append(paragraphMarkRunProperties271);

            Run run563 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties598 = new RunProperties();
            RunFonts runFonts782 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color291 = new Color() { Val = "FF0000" };
            FontSize fontSize790 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript784 = new FontSizeComplexScript() { Val = "22" };

            runProperties598.Append(runFonts782);
            runProperties598.Append(color291);
            runProperties598.Append(fontSize790);
            runProperties598.Append(fontSizeComplexScript784);
            Text text531 = new Text();
            text531.Text = "BJCxxxxxxxx";

            run563.Append(runProperties598);
            run563.Append(text531);

            paragraph274.Append(paragraphProperties271);
            paragraph274.Append(run563);

            tableCell147.Append(tableCellProperties147);
            tableCell147.Append(paragraph274);

            TableCell tableCell148 = new TableCell();

            TableCellProperties tableCellProperties148 = new TableCellProperties();
            TableCellWidth tableCellWidth148 = new TableCellWidth() { Width = "1395", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders39 = new TableCellBorders();
            TopBorder topBorder43 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder42 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder42 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder42 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders39.Append(topBorder43);
            tableCellBorders39.Append(leftBorder42);
            tableCellBorders39.Append(bottomBorder42);
            tableCellBorders39.Append(rightBorder42);
            Shading shading39 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin23 = new TableCellMargin();
            LeftMargin leftMargin23 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin23 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin23.Append(leftMargin23);
            tableCellMargin23.Append(rightMargin23);

            tableCellProperties148.Append(tableCellWidth148);
            tableCellProperties148.Append(tableCellBorders39);
            tableCellProperties148.Append(shading39);
            tableCellProperties148.Append(tableCellMargin23);

            Paragraph paragraph275 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A9E", TextId = "77777777" };

            ParagraphProperties paragraphProperties272 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties272 = new ParagraphMarkRunProperties();
            RunFonts runFonts783 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color292 = new Color() { Val = "FF0000" };
            FontSize fontSize791 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript785 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties272.Append(runFonts783);
            paragraphMarkRunProperties272.Append(color292);
            paragraphMarkRunProperties272.Append(fontSize791);
            paragraphMarkRunProperties272.Append(fontSizeComplexScript785);

            paragraphProperties272.Append(paragraphMarkRunProperties272);

            Run run564 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties599 = new RunProperties();
            RunFonts runFonts784 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color293 = new Color() { Val = "FF0000" };
            FontSize fontSize792 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript786 = new FontSizeComplexScript() { Val = "22" };

            runProperties599.Append(runFonts784);
            runProperties599.Append(color293);
            runProperties599.Append(fontSize792);
            runProperties599.Append(fontSizeComplexScript786);
            Text text532 = new Text();
            text532.Text = "IP:TBD";

            run564.Append(runProperties599);
            run564.Append(text532);

            paragraph275.Append(paragraphProperties272);
            paragraph275.Append(run564);

            tableCell148.Append(tableCellProperties148);
            tableCell148.Append(paragraph275);

            TableCell tableCell149 = new TableCell();

            TableCellProperties tableCellProperties149 = new TableCellProperties();
            TableCellWidth tableCellWidth149 = new TableCellWidth() { Width = "1279", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders40 = new TableCellBorders();
            TopBorder topBorder44 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder43 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder43 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder43 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders40.Append(topBorder44);
            tableCellBorders40.Append(leftBorder43);
            tableCellBorders40.Append(bottomBorder43);
            tableCellBorders40.Append(rightBorder43);
            Shading shading40 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin24 = new TableCellMargin();
            LeftMargin leftMargin24 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin24 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin24.Append(leftMargin24);
            tableCellMargin24.Append(rightMargin24);

            tableCellProperties149.Append(tableCellWidth149);
            tableCellProperties149.Append(tableCellBorders40);
            tableCellProperties149.Append(shading40);
            tableCellProperties149.Append(tableCellMargin24);

            Paragraph paragraph276 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1A9F", TextId = "77777777" };

            ParagraphProperties paragraphProperties273 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties273 = new ParagraphMarkRunProperties();
            RunFonts runFonts785 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color294 = new Color() { Val = "FF0000" };
            FontSize fontSize793 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript787 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties273.Append(runFonts785);
            paragraphMarkRunProperties273.Append(color294);
            paragraphMarkRunProperties273.Append(fontSize793);
            paragraphMarkRunProperties273.Append(fontSizeComplexScript787);

            paragraphProperties273.Append(paragraphMarkRunProperties273);

            paragraph276.Append(paragraphProperties273);

            tableCell149.Append(tableCellProperties149);
            tableCell149.Append(paragraph276);

            tableRow33.Append(tableRowProperties20);
            tableRow33.Append(tableCell146);
            tableRow33.Append(tableCell147);
            tableRow33.Append(tableCell148);
            tableRow33.Append(tableCell149);

            TableRow tableRow34 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC1AA5", TextId = "77777777" };

            TableRowProperties tableRowProperties21 = new TableRowProperties();
            TableRowHeight tableRowHeight21 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties21.Append(tableRowHeight21);

            TableCell tableCell150 = new TableCell();

            TableCellProperties tableCellProperties150 = new TableCellProperties();
            TableCellWidth tableCellWidth150 = new TableCellWidth() { Width = "1012", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders41 = new TableCellBorders();
            TopBorder topBorder45 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder44 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder44 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder44 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders41.Append(topBorder45);
            tableCellBorders41.Append(leftBorder44);
            tableCellBorders41.Append(bottomBorder44);
            tableCellBorders41.Append(rightBorder44);
            Shading shading41 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin25 = new TableCellMargin();
            LeftMargin leftMargin25 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin25 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin25.Append(leftMargin25);
            tableCellMargin25.Append(rightMargin25);

            tableCellProperties150.Append(tableCellWidth150);
            tableCellProperties150.Append(tableCellBorders41);
            tableCellProperties150.Append(shading41);
            tableCellProperties150.Append(tableCellMargin25);

            Paragraph paragraph277 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA1", TextId = "77777777" };

            ParagraphProperties paragraphProperties274 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties274 = new ParagraphMarkRunProperties();
            RunFonts runFonts786 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color295 = new Color() { Val = "FF0000" };
            FontSize fontSize794 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript788 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties274.Append(runFonts786);
            paragraphMarkRunProperties274.Append(color295);
            paragraphMarkRunProperties274.Append(fontSize794);
            paragraphMarkRunProperties274.Append(fontSizeComplexScript788);

            paragraphProperties274.Append(paragraphMarkRunProperties274);

            Run run565 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties600 = new RunProperties();
            RunFonts runFonts787 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color296 = new Color() { Val = "FF0000" };
            FontSize fontSize795 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript789 = new FontSizeComplexScript() { Val = "22" };

            runProperties600.Append(runFonts787);
            runProperties600.Append(color296);
            runProperties600.Append(fontSize795);
            runProperties600.Append(fontSizeComplexScript789);
            Text text533 = new Text();
            text533.Text = "File Share";

            run565.Append(runProperties600);
            run565.Append(text533);

            paragraph277.Append(paragraphProperties274);
            paragraph277.Append(run565);

            tableCell150.Append(tableCellProperties150);
            tableCell150.Append(paragraph277);

            TableCell tableCell151 = new TableCell();

            TableCellProperties tableCellProperties151 = new TableCellProperties();
            TableCellWidth tableCellWidth151 = new TableCellWidth() { Width = "1314", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders42 = new TableCellBorders();
            TopBorder topBorder46 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder45 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder45 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder45 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders42.Append(topBorder46);
            tableCellBorders42.Append(leftBorder45);
            tableCellBorders42.Append(bottomBorder45);
            tableCellBorders42.Append(rightBorder45);
            Shading shading42 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin26 = new TableCellMargin();
            LeftMargin leftMargin26 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin26 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin26.Append(leftMargin26);
            tableCellMargin26.Append(rightMargin26);

            tableCellProperties151.Append(tableCellWidth151);
            tableCellProperties151.Append(tableCellBorders42);
            tableCellProperties151.Append(shading42);
            tableCellProperties151.Append(tableCellMargin26);

            Paragraph paragraph278 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA2", TextId = "77777777" };

            ParagraphProperties paragraphProperties275 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties275 = new ParagraphMarkRunProperties();
            RunFonts runFonts788 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color297 = new Color() { Val = "FF0000" };
            FontSize fontSize796 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript790 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties275.Append(runFonts788);
            paragraphMarkRunProperties275.Append(color297);
            paragraphMarkRunProperties275.Append(fontSize796);
            paragraphMarkRunProperties275.Append(fontSizeComplexScript790);

            paragraphProperties275.Append(paragraphMarkRunProperties275);

            Run run566 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties601 = new RunProperties();
            RunFonts runFonts789 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color298 = new Color() { Val = "FF0000" };
            FontSize fontSize797 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript791 = new FontSizeComplexScript() { Val = "22" };

            runProperties601.Append(runFonts789);
            runProperties601.Append(color298);
            runProperties601.Append(fontSize797);
            runProperties601.Append(fontSizeComplexScript791);
            Text text534 = new Text();
            text534.Text = "ISCIMAGES";

            run566.Append(runProperties601);
            run566.Append(text534);

            paragraph278.Append(paragraphProperties275);
            paragraph278.Append(run566);

            tableCell151.Append(tableCellProperties151);
            tableCell151.Append(paragraph278);

            TableCell tableCell152 = new TableCell();

            TableCellProperties tableCellProperties152 = new TableCellProperties();
            TableCellWidth tableCellWidth152 = new TableCellWidth() { Width = "1395", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders43 = new TableCellBorders();
            TopBorder topBorder47 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder46 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder46 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder46 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders43.Append(topBorder47);
            tableCellBorders43.Append(leftBorder46);
            tableCellBorders43.Append(bottomBorder46);
            tableCellBorders43.Append(rightBorder46);
            Shading shading43 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin27 = new TableCellMargin();
            LeftMargin leftMargin27 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin27 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin27.Append(leftMargin27);
            tableCellMargin27.Append(rightMargin27);

            tableCellProperties152.Append(tableCellWidth152);
            tableCellProperties152.Append(tableCellBorders43);
            tableCellProperties152.Append(shading43);
            tableCellProperties152.Append(tableCellMargin27);

            Paragraph paragraph279 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA3", TextId = "77777777" };

            ParagraphProperties paragraphProperties276 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties276 = new ParagraphMarkRunProperties();
            RunFonts runFonts790 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color299 = new Color() { Val = "FF0000" };
            FontSize fontSize798 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript792 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties276.Append(runFonts790);
            paragraphMarkRunProperties276.Append(color299);
            paragraphMarkRunProperties276.Append(fontSize798);
            paragraphMarkRunProperties276.Append(fontSizeComplexScript792);

            paragraphProperties276.Append(paragraphMarkRunProperties276);

            Run run567 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties602 = new RunProperties();
            RunFonts runFonts791 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color300 = new Color() { Val = "FF0000" };
            FontSize fontSize799 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript793 = new FontSizeComplexScript() { Val = "22" };

            runProperties602.Append(runFonts791);
            runProperties602.Append(color300);
            runProperties602.Append(fontSize799);
            runProperties602.Append(fontSizeComplexScript793);
            Text text535 = new Text();
            text535.Text = "STD SHARE";

            run567.Append(runProperties602);
            run567.Append(text535);

            paragraph279.Append(paragraphProperties276);
            paragraph279.Append(run567);

            tableCell152.Append(tableCellProperties152);
            tableCell152.Append(paragraph279);

            TableCell tableCell153 = new TableCell();

            TableCellProperties tableCellProperties153 = new TableCellProperties();
            TableCellWidth tableCellWidth153 = new TableCellWidth() { Width = "1279", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders44 = new TableCellBorders();
            TopBorder topBorder48 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder47 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder47 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder47 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders44.Append(topBorder48);
            tableCellBorders44.Append(leftBorder47);
            tableCellBorders44.Append(bottomBorder47);
            tableCellBorders44.Append(rightBorder47);
            Shading shading44 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin28 = new TableCellMargin();
            LeftMargin leftMargin28 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin28 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin28.Append(leftMargin28);
            tableCellMargin28.Append(rightMargin28);

            tableCellProperties153.Append(tableCellWidth153);
            tableCellProperties153.Append(tableCellBorders44);
            tableCellProperties153.Append(shading44);
            tableCellProperties153.Append(tableCellMargin28);

            Paragraph paragraph280 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA4", TextId = "77777777" };

            ParagraphProperties paragraphProperties277 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties277 = new ParagraphMarkRunProperties();
            RunFonts runFonts792 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color301 = new Color() { Val = "FF0000" };
            FontSize fontSize800 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript794 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties277.Append(runFonts792);
            paragraphMarkRunProperties277.Append(color301);
            paragraphMarkRunProperties277.Append(fontSize800);
            paragraphMarkRunProperties277.Append(fontSizeComplexScript794);

            paragraphProperties277.Append(paragraphMarkRunProperties277);

            Run run568 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties603 = new RunProperties();
            RunFonts runFonts793 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color302 = new Color() { Val = "FF0000" };
            FontSize fontSize801 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript795 = new FontSizeComplexScript() { Val = "22" };

            runProperties603.Append(runFonts793);
            runProperties603.Append(color302);
            runProperties603.Append(fontSize801);
            runProperties603.Append(fontSizeComplexScript795);
            Text text536 = new Text();
            text536.Text = "W:\\";

            run568.Append(runProperties603);
            run568.Append(text536);

            Run run569 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties604 = new RunProperties();
            RunFonts runFonts794 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color303 = new Color() { Val = "FF0000" };
            FontSize fontSize802 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript796 = new FontSizeComplexScript() { Val = "22" };

            runProperties604.Append(runFonts794);
            runProperties604.Append(color303);
            runProperties604.Append(fontSize802);
            runProperties604.Append(fontSizeComplexScript796);
            Text text537 = new Text();
            text537.Text = "BJCxxxxxxxx";

            run569.Append(runProperties604);
            run569.Append(text537);

            paragraph280.Append(paragraphProperties277);
            paragraph280.Append(run568);
            paragraph280.Append(run569);

            tableCell153.Append(tableCellProperties153);
            tableCell153.Append(paragraph280);

            tableRow34.Append(tableRowProperties21);
            tableRow34.Append(tableCell150);
            tableRow34.Append(tableCell151);
            tableRow34.Append(tableCell152);
            tableRow34.Append(tableCell153);

            TableRow tableRow35 = new TableRow() { RsidTableRowMarkRevision = "00A565FD", RsidTableRowAddition = "00F34C49", RsidTableRowProperties = "001A269D", ParagraphId = "0AAC1AAA", TextId = "77777777" };

            TableRowProperties tableRowProperties22 = new TableRowProperties();
            TableRowHeight tableRowHeight22 = new TableRowHeight() { Val = (UInt32Value)1U };

            tableRowProperties22.Append(tableRowHeight22);

            TableCell tableCell154 = new TableCell();

            TableCellProperties tableCellProperties154 = new TableCellProperties();
            TableCellWidth tableCellWidth154 = new TableCellWidth() { Width = "1012", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders45 = new TableCellBorders();
            TopBorder topBorder49 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder48 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder48 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder48 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders45.Append(topBorder49);
            tableCellBorders45.Append(leftBorder48);
            tableCellBorders45.Append(bottomBorder48);
            tableCellBorders45.Append(rightBorder48);
            Shading shading45 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin29 = new TableCellMargin();
            LeftMargin leftMargin29 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin29 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin29.Append(leftMargin29);
            tableCellMargin29.Append(rightMargin29);

            tableCellProperties154.Append(tableCellWidth154);
            tableCellProperties154.Append(tableCellBorders45);
            tableCellProperties154.Append(shading45);
            tableCellProperties154.Append(tableCellMargin29);

            Paragraph paragraph281 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA6", TextId = "77777777" };

            ParagraphProperties paragraphProperties278 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties278 = new ParagraphMarkRunProperties();
            RunFonts runFonts795 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color304 = new Color() { Val = "FF0000" };
            FontSize fontSize803 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript797 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties278.Append(runFonts795);
            paragraphMarkRunProperties278.Append(color304);
            paragraphMarkRunProperties278.Append(fontSize803);
            paragraphMarkRunProperties278.Append(fontSizeComplexScript797);

            paragraphProperties278.Append(paragraphMarkRunProperties278);

            Run run570 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties605 = new RunProperties();
            RunFonts runFonts796 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color305 = new Color() { Val = "FF0000" };
            FontSize fontSize804 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript798 = new FontSizeComplexScript() { Val = "22" };

            runProperties605.Append(runFonts796);
            runProperties605.Append(color305);
            runProperties605.Append(fontSize804);
            runProperties605.Append(fontSizeComplexScript798);
            LastRenderedPageBreak lastRenderedPageBreak6 = new LastRenderedPageBreak();
            Text text538 = new Text();
            text538.Text = "DISK";

            run570.Append(runProperties605);
            run570.Append(lastRenderedPageBreak6);
            run570.Append(text538);

            paragraph281.Append(paragraphProperties278);
            paragraph281.Append(run570);

            tableCell154.Append(tableCellProperties154);
            tableCell154.Append(paragraph281);

            TableCell tableCell155 = new TableCell();

            TableCellProperties tableCellProperties155 = new TableCellProperties();
            TableCellWidth tableCellWidth155 = new TableCellWidth() { Width = "1314", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders46 = new TableCellBorders();
            TopBorder topBorder50 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder49 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder49 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder49 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders46.Append(topBorder50);
            tableCellBorders46.Append(leftBorder49);
            tableCellBorders46.Append(bottomBorder49);
            tableCellBorders46.Append(rightBorder49);
            Shading shading46 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin30 = new TableCellMargin();
            LeftMargin leftMargin30 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin30 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin30.Append(leftMargin30);
            tableCellMargin30.Append(rightMargin30);

            tableCellProperties155.Append(tableCellWidth155);
            tableCellProperties155.Append(tableCellBorders46);
            tableCellProperties155.Append(shading46);
            tableCellProperties155.Append(tableCellMargin30);

            Paragraph paragraph282 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA7", TextId = "77777777" };

            ParagraphProperties paragraphProperties279 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties279 = new ParagraphMarkRunProperties();
            RunFonts runFonts797 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color306 = new Color() { Val = "FF0000" };
            FontSize fontSize805 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript799 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties279.Append(runFonts797);
            paragraphMarkRunProperties279.Append(color306);
            paragraphMarkRunProperties279.Append(fontSize805);
            paragraphMarkRunProperties279.Append(fontSizeComplexScript799);

            paragraphProperties279.Append(paragraphMarkRunProperties279);

            Run run571 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties606 = new RunProperties();
            RunFonts runFonts798 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color307 = new Color() { Val = "FF0000" };
            FontSize fontSize806 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript800 = new FontSizeComplexScript() { Val = "22" };

            runProperties606.Append(runFonts798);
            runProperties606.Append(color307);
            runProperties606.Append(fontSize806);
            runProperties606.Append(fontSizeComplexScript800);
            Text text539 = new Text();
            text539.Text = "NONE";

            run571.Append(runProperties606);
            run571.Append(text539);

            paragraph282.Append(paragraphProperties279);
            paragraph282.Append(run571);

            tableCell155.Append(tableCellProperties155);
            tableCell155.Append(paragraph282);

            TableCell tableCell156 = new TableCell();

            TableCellProperties tableCellProperties156 = new TableCellProperties();
            TableCellWidth tableCellWidth156 = new TableCellWidth() { Width = "1395", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders47 = new TableCellBorders();
            TopBorder topBorder51 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder50 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder50 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder50 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders47.Append(topBorder51);
            tableCellBorders47.Append(leftBorder50);
            tableCellBorders47.Append(bottomBorder50);
            tableCellBorders47.Append(rightBorder50);
            Shading shading47 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin31 = new TableCellMargin();
            LeftMargin leftMargin31 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin31 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin31.Append(leftMargin31);
            tableCellMargin31.Append(rightMargin31);

            tableCellProperties156.Append(tableCellWidth156);
            tableCellProperties156.Append(tableCellBorders47);
            tableCellProperties156.Append(shading47);
            tableCellProperties156.Append(tableCellMargin31);

            Paragraph paragraph283 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA8", TextId = "77777777" };

            ParagraphProperties paragraphProperties280 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties280 = new ParagraphMarkRunProperties();
            RunFonts runFonts799 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color308 = new Color() { Val = "FF0000" };
            FontSize fontSize807 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript801 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties280.Append(runFonts799);
            paragraphMarkRunProperties280.Append(color308);
            paragraphMarkRunProperties280.Append(fontSize807);
            paragraphMarkRunProperties280.Append(fontSizeComplexScript801);

            paragraphProperties280.Append(paragraphMarkRunProperties280);

            Run run572 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties607 = new RunProperties();
            RunFonts runFonts800 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color309 = new Color() { Val = "FF0000" };
            FontSize fontSize808 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript802 = new FontSizeComplexScript() { Val = "22" };

            runProperties607.Append(runFonts800);
            runProperties607.Append(color309);
            runProperties607.Append(fontSize808);
            runProperties607.Append(fontSizeComplexScript802);
            Text text540 = new Text();
            text540.Text = "D:/E:/F:/G:/L:";

            run572.Append(runProperties607);
            run572.Append(text540);

            paragraph283.Append(paragraphProperties280);
            paragraph283.Append(run572);

            tableCell156.Append(tableCellProperties156);
            tableCell156.Append(paragraph283);

            TableCell tableCell157 = new TableCell();

            TableCellProperties tableCellProperties157 = new TableCellProperties();
            TableCellWidth tableCellWidth157 = new TableCellWidth() { Width = "1279", Type = TableWidthUnitValues.Pct };

            TableCellBorders tableCellBorders48 = new TableCellBorders();
            TopBorder topBorder52 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder51 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder51 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder51 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders48.Append(topBorder52);
            tableCellBorders48.Append(leftBorder51);
            tableCellBorders48.Append(bottomBorder51);
            tableCellBorders48.Append(rightBorder51);
            Shading shading48 = new Shading() { Val = ShadingPatternValues.Clear, Color = "000000", Fill = "FFFFFF" };

            TableCellMargin tableCellMargin32 = new TableCellMargin();
            LeftMargin leftMargin32 = new LeftMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin32 = new RightMargin() { Width = "108", Type = TableWidthUnitValues.Dxa };

            tableCellMargin32.Append(leftMargin32);
            tableCellMargin32.Append(rightMargin32);

            tableCellProperties157.Append(tableCellWidth157);
            tableCellProperties157.Append(tableCellBorders48);
            tableCellProperties157.Append(shading48);
            tableCellProperties157.Append(tableCellMargin32);

            Paragraph paragraph284 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00F34C49", RsidParagraphProperties = "001A269D", RsidRunAdditionDefault = "00F34C49", ParagraphId = "0AAC1AA9", TextId = "77777777" };

            ParagraphProperties paragraphProperties281 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties281 = new ParagraphMarkRunProperties();
            RunFonts runFonts801 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color310 = new Color() { Val = "FF0000" };
            FontSize fontSize809 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript803 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties281.Append(runFonts801);
            paragraphMarkRunProperties281.Append(color310);
            paragraphMarkRunProperties281.Append(fontSize809);
            paragraphMarkRunProperties281.Append(fontSizeComplexScript803);

            paragraphProperties281.Append(paragraphMarkRunProperties281);

            Run run573 = new Run() { RsidRunProperties = "00281D13" };

            RunProperties runProperties608 = new RunProperties();
            RunFonts runFonts802 = new RunFonts() { ComplexScript = "Calibri", AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color311 = new Color() { Val = "FF0000" };
            FontSize fontSize810 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript804 = new FontSizeComplexScript() { Val = "22" };

            runProperties608.Append(runFonts802);
            runProperties608.Append(color311);
            runProperties608.Append(fontSize810);
            runProperties608.Append(fontSizeComplexScript804);
            Text text541 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text541.Text = "See Database configuration section ";

            run573.Append(runProperties608);
            run573.Append(text541);

            paragraph284.Append(paragraphProperties281);
            paragraph284.Append(run573);

            tableCell157.Append(tableCellProperties157);
            tableCell157.Append(paragraph284);

            tableRow35.Append(tableRowProperties22);
            tableRow35.Append(tableCell154);
            tableRow35.Append(tableCell155);
            tableRow35.Append(tableCell156);
            tableRow35.Append(tableCell157);

            table6.Append(tableProperties6);
            table6.Append(tableGrid6);
            table6.Append(tableRow31);
            table6.Append(tableRow32);
            table6.Append(tableRow33);
            table6.Append(tableRow34);
            table6.Append(tableRow35);

            Paragraph paragraph285 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "002B0580", ParagraphId = "0AAC1AAB", TextId = "0FE24F9C" };

            ParagraphProperties paragraphProperties282 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId19 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties282 = new ParagraphMarkRunProperties();
            Underline underline74 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties282.Append(underline74);

            paragraphProperties282.Append(paragraphStyleId19);
            paragraphProperties282.Append(paragraphMarkRunProperties282);

            Run run574 = new Run();

            RunProperties runProperties609 = new RunProperties();
            Underline underline75 = new Underline() { Val = UnderlineValues.Single };

            runProperties609.Append(underline75);
            Text text542 = new Text();
            text542.Text = "15";

            run574.Append(runProperties609);
            run574.Append(text542);

            Run run575 = new Run() { RsidRunAddition = "00E518DD" };

            RunProperties runProperties610 = new RunProperties();
            Underline underline76 = new Underline() { Val = UnderlineValues.Single };

            runProperties610.Append(underline76);
            Text text543 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text543.Text = ". ";

            run575.Append(runProperties610);
            run575.Append(text543);

            Run run576 = new Run() { RsidRunAddition = "0057090B" };

            RunProperties runProperties611 = new RunProperties();
            Underline underline77 = new Underline() { Val = UnderlineValues.Single };

            runProperties611.Append(underline77);
            Text text544 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text544.Text = "Replication ";

            run576.Append(runProperties611);
            run576.Append(text544);

            Run run577 = new Run() { RsidRunAddition = "00116FA1" };

            RunProperties runProperties612 = new RunProperties();
            Underline underline78 = new Underline() { Val = UnderlineValues.Single };

            runProperties612.Append(underline78);
            Text text545 = new Text();
            text545.Text = "C";

            run577.Append(runProperties612);
            run577.Append(text545);

            Run run578 = new Run() { RsidRunAddition = "0057090B" };

            RunProperties runProperties613 = new RunProperties();
            Underline underline79 = new Underline() { Val = UnderlineValues.Single };

            runProperties613.Append(underline79);
            Text text546 = new Text();
            text546.Text = "onfiguration";

            run578.Append(runProperties613);
            run578.Append(text546);

            Run run579 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties614 = new RunProperties();
            Color color312 = new Color() { Val = "FF0000" };
            Underline underline80 = new Underline() { Val = UnderlineValues.Single };

            runProperties614.Append(color312);
            runProperties614.Append(underline80);
            Text text547 = new Text();
            text547.Text = ": N/A";

            run579.Append(runProperties614);
            run579.Append(text547);

            paragraph285.Append(paragraphProperties282);
            paragraph285.Append(run574);
            paragraph285.Append(run575);
            paragraph285.Append(run576);
            paragraph285.Append(run577);
            paragraph285.Append(run578);
            paragraph285.Append(run579);

            Paragraph paragraph286 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "009D7777", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1AAC", TextId = "46F1132F" };

            ParagraphProperties paragraphProperties283 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties283 = new ParagraphMarkRunProperties();
            RunFonts runFonts803 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize811 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript805 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties283.Append(runFonts803);
            paragraphMarkRunProperties283.Append(fontSize811);
            paragraphMarkRunProperties283.Append(fontSizeComplexScript805);

            paragraphProperties283.Append(paragraphMarkRunProperties283);

            SdtRun sdtRun43 = new SdtRun();

            SdtProperties sdtProperties43 = new SdtProperties();

            RunProperties runProperties615 = new RunProperties();
            RunFonts runFonts804 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize812 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript806 = new FontSizeComplexScript() { Val = "22" };

            runProperties615.Append(runFonts804);
            runProperties615.Append(fontSize812);
            runProperties615.Append(fontSizeComplexScript806);
            SdtId sdtId43 = new SdtId() { Val = 32929211 };

            W14.SdtContentCheckBox sdtContentCheckBox43 = new W14.SdtContentCheckBox();
            W14.Checked checked43 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState43 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState43 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox43.Append(checked43);
            sdtContentCheckBox43.Append(checkedState43);
            sdtContentCheckBox43.Append(uncheckedState43);

            sdtProperties43.Append(runProperties615);
            sdtProperties43.Append(sdtId43);
            sdtProperties43.Append(sdtContentCheckBox43);
            SdtEndCharProperties sdtEndCharProperties43 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun43 = new SdtContentRun();

            Run run580 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties616 = new RunProperties();
            RunFonts runFonts805 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize813 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript807 = new FontSizeComplexScript() { Val = "22" };

            runProperties616.Append(runFonts805);
            runProperties616.Append(fontSize813);
            runProperties616.Append(fontSizeComplexScript807);
            Text text548 = new Text();
            text548.Text = "☐";

            run580.Append(runProperties616);
            run580.Append(text548);

            sdtContentRun43.Append(run580);

            sdtRun43.Append(sdtProperties43);
            sdtRun43.Append(sdtEndCharProperties43);
            sdtRun43.Append(sdtContentRun43);

            Run run581 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "009D7777" };

            RunProperties runProperties617 = new RunProperties();
            RunFonts runFonts806 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize814 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript808 = new FontSizeComplexScript() { Val = "22" };

            runProperties617.Append(runFonts806);
            runProperties617.Append(fontSize814);
            runProperties617.Append(fontSizeComplexScript808);
            Text text549 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text549.Text = " ";

            run581.Append(runProperties617);
            run581.Append(text549);

            Run run582 = new Run() { RsidRunAddition = "00F97B58" };

            RunProperties runProperties618 = new RunProperties();
            RunFonts runFonts807 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize815 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript809 = new FontSizeComplexScript() { Val = "22" };

            runProperties618.Append(runFonts807);
            runProperties618.Append(fontSize815);
            runProperties618.Append(fontSizeComplexScript809);
            Text text550 = new Text();
            text550.Text = "SAN Mirror";

            run582.Append(runProperties618);
            run582.Append(text550);

            paragraph286.Append(paragraphProperties283);
            paragraph286.Append(sdtRun43);
            paragraph286.Append(run581);
            paragraph286.Append(run582);

            Paragraph paragraph287 = new Paragraph() { RsidParagraphAddition = "006A5DD3", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "00A563A2", ParagraphId = "7192191D", TextId = "55DFA960" };

            ParagraphProperties paragraphProperties284 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties284 = new ParagraphMarkRunProperties();
            RunFonts runFonts808 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize816 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript810 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties284.Append(runFonts808);
            paragraphMarkRunProperties284.Append(fontSize816);
            paragraphMarkRunProperties284.Append(fontSizeComplexScript810);

            paragraphProperties284.Append(paragraphMarkRunProperties284);

            SdtRun sdtRun44 = new SdtRun();

            SdtProperties sdtProperties44 = new SdtProperties();

            RunProperties runProperties619 = new RunProperties();
            RunFonts runFonts809 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize817 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript811 = new FontSizeComplexScript() { Val = "22" };

            runProperties619.Append(runFonts809);
            runProperties619.Append(fontSize817);
            runProperties619.Append(fontSizeComplexScript811);
            SdtId sdtId44 = new SdtId() { Val = 623129963 };

            W14.SdtContentCheckBox sdtContentCheckBox44 = new W14.SdtContentCheckBox();
            W14.Checked checked44 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState44 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState44 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox44.Append(checked44);
            sdtContentCheckBox44.Append(checkedState44);
            sdtContentCheckBox44.Append(uncheckedState44);

            sdtProperties44.Append(runProperties619);
            sdtProperties44.Append(sdtId44);
            sdtProperties44.Append(sdtContentCheckBox44);
            SdtEndCharProperties sdtEndCharProperties44 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun44 = new SdtContentRun();

            Run run583 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties620 = new RunProperties();
            RunFonts runFonts810 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize818 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript812 = new FontSizeComplexScript() { Val = "22" };

            runProperties620.Append(runFonts810);
            runProperties620.Append(fontSize818);
            runProperties620.Append(fontSizeComplexScript812);
            Text text551 = new Text();
            text551.Text = "☐";

            run583.Append(runProperties620);
            run583.Append(text551);

            sdtContentRun44.Append(run583);

            sdtRun44.Append(sdtProperties44);
            sdtRun44.Append(sdtEndCharProperties44);
            sdtRun44.Append(sdtContentRun44);

            Run run584 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "006A5DD3" };

            RunProperties runProperties621 = new RunProperties();
            RunFonts runFonts811 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize819 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript813 = new FontSizeComplexScript() { Val = "22" };

            runProperties621.Append(runFonts811);
            runProperties621.Append(fontSize819);
            runProperties621.Append(fontSizeComplexScript813);
            Text text552 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text552.Text = " ";

            run584.Append(runProperties621);
            run584.Append(text552);

            Run run585 = new Run() { RsidRunAddition = "006A5DD3" };

            RunProperties runProperties622 = new RunProperties();
            RunFonts runFonts812 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize820 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript814 = new FontSizeComplexScript() { Val = "22" };

            runProperties622.Append(runFonts812);
            runProperties622.Append(fontSize820);
            runProperties622.Append(fontSizeComplexScript814);
            Text text553 = new Text();
            text553.Text = "DFS-R Windows Replication";

            run585.Append(runProperties622);
            run585.Append(text553);

            paragraph287.Append(paragraphProperties284);
            paragraph287.Append(sdtRun44);
            paragraph287.Append(run584);
            paragraph287.Append(run585);

            Paragraph paragraph288 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00F12AD5", RsidRunAdditionDefault = "00A563A2", ParagraphId = "3C6D7B03", TextId = "5502B94F" };

            ParagraphProperties paragraphProperties285 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties285 = new ParagraphMarkRunProperties();
            RunFonts runFonts813 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize821 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript815 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties285.Append(runFonts813);
            paragraphMarkRunProperties285.Append(fontSize821);
            paragraphMarkRunProperties285.Append(fontSizeComplexScript815);

            paragraphProperties285.Append(paragraphMarkRunProperties285);

            SdtRun sdtRun45 = new SdtRun();

            SdtProperties sdtProperties45 = new SdtProperties();

            RunProperties runProperties623 = new RunProperties();
            RunFonts runFonts814 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize822 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript816 = new FontSizeComplexScript() { Val = "22" };

            runProperties623.Append(runFonts814);
            runProperties623.Append(fontSize822);
            runProperties623.Append(fontSizeComplexScript816);
            SdtId sdtId45 = new SdtId() { Val = 12577621 };

            W14.SdtContentCheckBox sdtContentCheckBox45 = new W14.SdtContentCheckBox();
            W14.Checked checked45 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState45 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState45 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox45.Append(checked45);
            sdtContentCheckBox45.Append(checkedState45);
            sdtContentCheckBox45.Append(uncheckedState45);

            sdtProperties45.Append(runProperties623);
            sdtProperties45.Append(sdtId45);
            sdtProperties45.Append(sdtContentCheckBox45);
            SdtEndCharProperties sdtEndCharProperties45 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun45 = new SdtContentRun();

            Run run586 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties624 = new RunProperties();
            RunFonts runFonts815 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize823 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript817 = new FontSizeComplexScript() { Val = "22" };

            runProperties624.Append(runFonts815);
            runProperties624.Append(fontSize823);
            runProperties624.Append(fontSizeComplexScript817);
            Text text554 = new Text();
            text554.Text = "☐";

            run586.Append(runProperties624);
            run586.Append(text554);

            sdtContentRun45.Append(run586);

            sdtRun45.Append(sdtProperties45);
            sdtRun45.Append(sdtEndCharProperties45);
            sdtRun45.Append(sdtContentRun45);

            Run run587 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F12AD5" };

            RunProperties runProperties625 = new RunProperties();
            RunFonts runFonts816 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize824 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript818 = new FontSizeComplexScript() { Val = "22" };

            runProperties625.Append(runFonts816);
            runProperties625.Append(fontSize824);
            runProperties625.Append(fontSizeComplexScript818);
            Text text555 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text555.Text = " ";

            run587.Append(runProperties625);
            run587.Append(text555);

            Run run588 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties626 = new RunProperties();
            RunFonts runFonts817 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize825 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript819 = new FontSizeComplexScript() { Val = "22" };

            runProperties626.Append(runFonts817);
            runProperties626.Append(fontSize825);
            runProperties626.Append(fontSizeComplexScript819);
            Text text556 = new Text();
            text556.Text = "VMWare Site Recovery Manager";

            run588.Append(runProperties626);
            run588.Append(text556);

            paragraph288.Append(paragraphProperties285);
            paragraph288.Append(sdtRun45);
            paragraph288.Append(run587);
            paragraph288.Append(run588);

            Paragraph paragraph289 = new Paragraph() { RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00F12AD5", RsidRunAdditionDefault = "00A563A2", ParagraphId = "3297A2FE", TextId = "1BAB5B02" };

            ParagraphProperties paragraphProperties286 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties286 = new ParagraphMarkRunProperties();
            RunFonts runFonts818 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize826 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript820 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties286.Append(runFonts818);
            paragraphMarkRunProperties286.Append(fontSize826);
            paragraphMarkRunProperties286.Append(fontSizeComplexScript820);

            paragraphProperties286.Append(paragraphMarkRunProperties286);

            SdtRun sdtRun46 = new SdtRun();

            SdtProperties sdtProperties46 = new SdtProperties();

            RunProperties runProperties627 = new RunProperties();
            RunFonts runFonts819 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize827 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript821 = new FontSizeComplexScript() { Val = "22" };

            runProperties627.Append(runFonts819);
            runProperties627.Append(fontSize827);
            runProperties627.Append(fontSizeComplexScript821);
            SdtId sdtId46 = new SdtId() { Val = -928973367 };

            W14.SdtContentCheckBox sdtContentCheckBox46 = new W14.SdtContentCheckBox();
            W14.Checked checked46 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState46 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState46 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox46.Append(checked46);
            sdtContentCheckBox46.Append(checkedState46);
            sdtContentCheckBox46.Append(uncheckedState46);

            sdtProperties46.Append(runProperties627);
            sdtProperties46.Append(sdtId46);
            sdtProperties46.Append(sdtContentCheckBox46);
            SdtEndCharProperties sdtEndCharProperties46 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun46 = new SdtContentRun();

            Run run589 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties628 = new RunProperties();
            RunFonts runFonts820 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize828 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript822 = new FontSizeComplexScript() { Val = "22" };

            runProperties628.Append(runFonts820);
            runProperties628.Append(fontSize828);
            runProperties628.Append(fontSizeComplexScript822);
            Text text557 = new Text();
            text557.Text = "☐";

            run589.Append(runProperties628);
            run589.Append(text557);

            sdtContentRun46.Append(run589);

            sdtRun46.Append(sdtProperties46);
            sdtRun46.Append(sdtEndCharProperties46);
            sdtRun46.Append(sdtContentRun46);

            Run run590 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00F12AD5" };

            RunProperties runProperties629 = new RunProperties();
            RunFonts runFonts821 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize829 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript823 = new FontSizeComplexScript() { Val = "22" };

            runProperties629.Append(runFonts821);
            runProperties629.Append(fontSize829);
            runProperties629.Append(fontSizeComplexScript823);
            Text text558 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text558.Text = " ";

            run590.Append(runProperties629);
            run590.Append(text558);

            Run run591 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties630 = new RunProperties();
            RunFonts runFonts822 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize830 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript824 = new FontSizeComplexScript() { Val = "22" };

            runProperties630.Append(runFonts822);
            runProperties630.Append(fontSize830);
            runProperties630.Append(fontSizeComplexScript824);
            Text text559 = new Text();
            text559.Text = "Oracle Dataguard";

            run591.Append(runProperties630);
            run591.Append(text559);

            paragraph289.Append(paragraphProperties286);
            paragraph289.Append(sdtRun46);
            paragraph289.Append(run590);
            paragraph289.Append(run591);

            Paragraph paragraph290 = new Paragraph() { RsidParagraphAddition = "00A94A66", RsidParagraphProperties = "009032DC", RsidRunAdditionDefault = "009D7777", ParagraphId = "0AAC1AAF", TextId = "2A6CB181" };

            ParagraphProperties paragraphProperties287 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties287 = new ParagraphMarkRunProperties();
            RunFonts runFonts823 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize831 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript825 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties287.Append(runFonts823);
            paragraphMarkRunProperties287.Append(fontSize831);
            paragraphMarkRunProperties287.Append(fontSizeComplexScript825);

            paragraphProperties287.Append(paragraphMarkRunProperties287);

            Run run592 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties631 = new RunProperties();
            RunFonts runFonts824 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize832 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript826 = new FontSizeComplexScript() { Val = "22" };

            runProperties631.Append(runFonts824);
            runProperties631.Append(fontSize832);
            runProperties631.Append(fontSizeComplexScript826);
            Text text560 = new Text();
            text560.Text = "Destination Server";

            run592.Append(runProperties631);
            run592.Append(text560);

            Run run593 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F40936" };

            RunProperties runProperties632 = new RunProperties();
            RunFonts runFonts825 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize833 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript827 = new FontSizeComplexScript() { Val = "22" };

            runProperties632.Append(runFonts825);
            runProperties632.Append(fontSize833);
            runProperties632.Append(fontSizeComplexScript827);
            Text text561 = new Text();
            text561.Text = ":";

            run593.Append(runProperties632);
            run593.Append(text561);

            Run run594 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00EA764C" };

            RunProperties runProperties633 = new RunProperties();
            RunFonts runFonts826 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize834 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript828 = new FontSizeComplexScript() { Val = "22" };

            runProperties633.Append(runFonts826);
            runProperties633.Append(fontSize834);
            runProperties633.Append(fontSizeComplexScript828);
            Text text562 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text562.Text = " ";

            run594.Append(runProperties633);
            run594.Append(text562);

            Run run595 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00EA764C" };

            RunProperties runProperties634 = new RunProperties();
            RunFonts runFonts827 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color313 = new Color() { Val = "FF0000" };
            FontSize fontSize835 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript829 = new FontSizeComplexScript() { Val = "22" };

            runProperties634.Append(runFonts827);
            runProperties634.Append(color313);
            runProperties634.Append(fontSize835);
            runProperties634.Append(fontSizeComplexScript829);
            Text text563 = new Text();
            text563.Text = "BJC";

            run595.Append(runProperties634);
            run595.Append(text563);

            Run run596 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00F97B58" };

            RunProperties runProperties635 = new RunProperties();
            RunFonts runFonts828 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color314 = new Color() { Val = "FF0000" };
            FontSize fontSize836 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript830 = new FontSizeComplexScript() { Val = "22" };

            runProperties635.Append(runFonts828);
            runProperties635.Append(color314);
            runProperties635.Append(fontSize836);
            runProperties635.Append(fontSizeComplexScript830);
            Text text564 = new Text();
            text564.Text = "xxxxxxxx";

            run596.Append(runProperties635);
            run596.Append(text564);

            paragraph290.Append(paragraphProperties287);
            paragraph290.Append(run592);
            paragraph290.Append(run593);
            paragraph290.Append(run594);
            paragraph290.Append(run595);
            paragraph290.Append(run596);

            Paragraph paragraph291 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00A94A66", RsidParagraphProperties = "00A94A66", RsidRunAdditionDefault = "002B0580", ParagraphId = "0AAC1AB0", TextId = "195F9EF2" };

            ParagraphProperties paragraphProperties288 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId20 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties288 = new ParagraphMarkRunProperties();
            Underline underline81 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties288.Append(underline81);

            paragraphProperties288.Append(paragraphStyleId20);
            paragraphProperties288.Append(paragraphMarkRunProperties288);

            Run run597 = new Run();

            RunProperties runProperties636 = new RunProperties();
            Underline underline82 = new Underline() { Val = UnderlineValues.Single };

            runProperties636.Append(underline82);
            Text text565 = new Text();
            text565.Text = "16";

            run597.Append(runProperties636);
            run597.Append(text565);

            Run run598 = new Run() { RsidRunAddition = "00E518DD" };

            RunProperties runProperties637 = new RunProperties();
            Underline underline83 = new Underline() { Val = UnderlineValues.Single };

            runProperties637.Append(underline83);
            Text text566 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text566.Text = ". ";

            run598.Append(runProperties637);
            run598.Append(text566);

            Run run599 = new Run() { RsidRunAddition = "00A94A66" };

            RunProperties runProperties638 = new RunProperties();
            Underline underline84 = new Underline() { Val = UnderlineValues.Single };

            runProperties638.Append(underline84);
            Text text567 = new Text();
            text567.Text = "Citrix Configuration";

            run599.Append(runProperties638);
            run599.Append(text567);

            Run run600 = new Run() { RsidRunProperties = "0057090B", RsidRunAddition = "0057090B" };

            RunProperties runProperties639 = new RunProperties();
            Color color315 = new Color() { Val = "FF0000" };
            Underline underline85 = new Underline() { Val = UnderlineValues.Single };

            runProperties639.Append(color315);
            runProperties639.Append(underline85);
            Text text568 = new Text();
            text568.Text = ": N/A";

            run600.Append(runProperties639);
            run600.Append(text568);

            paragraph291.Append(paragraphProperties288);
            paragraph291.Append(run597);
            paragraph291.Append(run598);
            paragraph291.Append(run599);
            paragraph291.Append(run600);

            Paragraph paragraph292 = new Paragraph() { RsidParagraphMarkRevision = "00624202", RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "00624202", RsidRunAdditionDefault = "00116831", ParagraphId = "59210DC6", TextId = "1CCE8CFC" };

            ParagraphProperties paragraphProperties289 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties289 = new ParagraphMarkRunProperties();
            RunFonts runFonts829 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize837 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript831 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties289.Append(runFonts829);
            paragraphMarkRunProperties289.Append(fontSize837);
            paragraphMarkRunProperties289.Append(fontSizeComplexScript831);

            paragraphProperties289.Append(paragraphMarkRunProperties289);

            Run run601 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties640 = new RunProperties();
            RunFonts runFonts830 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize838 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript832 = new FontSizeComplexScript() { Val = "22" };

            runProperties640.Append(runFonts830);
            runProperties640.Append(fontSize838);
            runProperties640.Append(fontSizeComplexScript832);
            Text text569 = new Text();
            text569.Text = "Citrix Farm hosting this application:";

            run601.Append(runProperties640);
            run601.Append(text569);

            Run run602 = new Run() { RsidRunAddition = "00624202" };

            RunProperties runProperties641 = new RunProperties();
            RunFonts runFonts831 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize839 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript833 = new FontSizeComplexScript() { Val = "22" };

            runProperties641.Append(runFonts831);
            runProperties641.Append(fontSize839);
            runProperties641.Append(fontSizeComplexScript833);
            Text text570 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text570.Text = "  ";

            run602.Append(runProperties641);
            run602.Append(text570);

            Run run603 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00BC048A" };

            RunProperties runProperties642 = new RunProperties();
            RunFonts runFonts832 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color316 = new Color() { Val = "FF0000" };
            FontSize fontSize840 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript834 = new FontSizeComplexScript() { Val = "22" };

            runProperties642.Append(runFonts832);
            runProperties642.Append(color316);
            runProperties642.Append(fontSize840);
            runProperties642.Append(fontSizeComplexScript834);
            Text text571 = new Text();
            text571.Text = "All servers will be placed in the 6.5 farm";

            run603.Append(runProperties642);
            run603.Append(text571);

            Run run604 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00BC048A" };

            RunProperties runProperties643 = new RunProperties();
            RunFonts runFonts833 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize841 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript835 = new FontSizeComplexScript() { Val = "22" };

            runProperties643.Append(runFonts833);
            runProperties643.Append(fontSize841);
            runProperties643.Append(fontSizeComplexScript835);
            Text text572 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text572.Text = " ";

            run604.Append(runProperties643);
            run604.Append(text572);

            Run run605 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties644 = new RunProperties();
            RunFonts runFonts834 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color317 = new Color() { Val = "FF0000" };
            FontSize fontSize842 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript836 = new FontSizeComplexScript() { Val = "22" };

            runProperties644.Append(runFonts834);
            runProperties644.Append(color317);
            runProperties644.Append(fontSize842);
            runProperties644.Append(fontSizeComplexScript836);
            Text text573 = new Text();
            text573.Text = "r";

            run605.Append(runProperties644);
            run605.Append(text573);

            Run run606 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00BC048A" };

            RunProperties runProperties645 = new RunProperties();
            RunFonts runFonts835 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color318 = new Color() { Val = "FF0000" };
            FontSize fontSize843 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript837 = new FontSizeComplexScript() { Val = "22" };

            runProperties645.Append(runFonts835);
            runProperties645.Append(color318);
            runProperties645.Append(fontSize843);
            runProperties645.Append(fontSizeComplexScript837);
            Text text574 = new Text();
            text574.Text = "unning Server 2008 R2";

            run606.Append(runProperties645);
            run606.Append(text574);

            Run run607 = new Run() { RsidRunAddition = "00BC048A" };

            RunProperties runProperties646 = new RunProperties();
            RunFonts runFonts836 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color319 = new Color() { Val = "FF0000" };
            FontSize fontSize844 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript838 = new FontSizeComplexScript() { Val = "22" };

            runProperties646.Append(runFonts836);
            runProperties646.Append(color319);
            runProperties646.Append(fontSize844);
            runProperties646.Append(fontSizeComplexScript838);
            Text text575 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text575.Text = ".  ";

            run607.Append(runProperties646);
            run607.Append(text575);

            Run run608 = new Run() { RsidRunProperties = "009032DC", RsidRunAddition = "00BC048A" };

            RunProperties runProperties647 = new RunProperties();
            RunFonts runFonts837 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color320 = new Color() { Val = "FF0000" };
            FontSize fontSize845 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript839 = new FontSizeComplexScript() { Val = "22" };

            runProperties647.Append(runFonts837);
            runProperties647.Append(color320);
            runProperties647.Append(fontSize845);
            runProperties647.Append(fontSizeComplexScript839);
            Text text576 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text576.Text = "Anything else will require a conversation with Standards. ";

            run608.Append(runProperties647);
            run608.Append(text576);

            paragraph292.Append(paragraphProperties289);
            paragraph292.Append(run601);
            paragraph292.Append(run602);
            paragraph292.Append(run603);
            paragraph292.Append(run604);
            paragraph292.Append(run605);
            paragraph292.Append(run606);
            paragraph292.Append(run607);
            paragraph292.Append(run608);

            Paragraph paragraph293 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00A565FD", RsidParagraphProperties = "00A565FD", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1AB2", TextId = "1456C203" };

            ParagraphProperties paragraphProperties290 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties290 = new ParagraphMarkRunProperties();
            RunFonts runFonts838 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize846 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript840 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties290.Append(runFonts838);
            paragraphMarkRunProperties290.Append(fontSize846);
            paragraphMarkRunProperties290.Append(fontSizeComplexScript840);

            paragraphProperties290.Append(paragraphMarkRunProperties290);

            SdtRun sdtRun47 = new SdtRun();

            SdtProperties sdtProperties47 = new SdtProperties();

            RunProperties runProperties648 = new RunProperties();
            RunFonts runFonts839 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize847 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript841 = new FontSizeComplexScript() { Val = "22" };

            runProperties648.Append(runFonts839);
            runProperties648.Append(fontSize847);
            runProperties648.Append(fontSizeComplexScript841);
            SdtId sdtId47 = new SdtId() { Val = -449857893 };

            W14.SdtContentCheckBox sdtContentCheckBox47 = new W14.SdtContentCheckBox();
            W14.Checked checked47 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState47 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState47 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox47.Append(checked47);
            sdtContentCheckBox47.Append(checkedState47);
            sdtContentCheckBox47.Append(uncheckedState47);

            sdtProperties47.Append(runProperties648);
            sdtProperties47.Append(sdtId47);
            sdtProperties47.Append(sdtContentCheckBox47);
            SdtEndCharProperties sdtEndCharProperties47 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun47 = new SdtContentRun();

            Run run609 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties649 = new RunProperties();
            RunFonts runFonts840 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize848 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript842 = new FontSizeComplexScript() { Val = "22" };

            runProperties649.Append(runFonts840);
            runProperties649.Append(fontSize848);
            runProperties649.Append(fontSizeComplexScript842);
            Text text577 = new Text();
            text577.Text = "☐";

            run609.Append(runProperties649);
            run609.Append(text577);

            sdtContentRun47.Append(run609);

            sdtRun47.Append(sdtProperties47);
            sdtRun47.Append(sdtEndCharProperties47);
            sdtRun47.Append(sdtContentRun47);

            Run run610 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00A565FD" };

            RunProperties runProperties650 = new RunProperties();
            RunFonts runFonts841 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize849 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript843 = new FontSizeComplexScript() { Val = "22" };

            runProperties650.Append(runFonts841);
            runProperties650.Append(fontSize849);
            runProperties650.Append(fontSizeComplexScript843);
            Text text578 = new Text();
            text578.Text = "6.5 Farm";

            run610.Append(runProperties650);
            run610.Append(text578);

            paragraph293.Append(paragraphProperties290);
            paragraph293.Append(sdtRun47);
            paragraph293.Append(run610);

            Paragraph paragraph294 = new Paragraph() { RsidParagraphAddition = "00A565FD", RsidParagraphProperties = "00A565FD", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1AB3", TextId = "05A19505" };

            ParagraphProperties paragraphProperties291 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties291 = new ParagraphMarkRunProperties();
            RunFonts runFonts842 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize850 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript844 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties291.Append(runFonts842);
            paragraphMarkRunProperties291.Append(fontSize850);
            paragraphMarkRunProperties291.Append(fontSizeComplexScript844);

            paragraphProperties291.Append(paragraphMarkRunProperties291);

            SdtRun sdtRun48 = new SdtRun();

            SdtProperties sdtProperties48 = new SdtProperties();

            RunProperties runProperties651 = new RunProperties();
            RunFonts runFonts843 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize851 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript845 = new FontSizeComplexScript() { Val = "22" };

            runProperties651.Append(runFonts843);
            runProperties651.Append(fontSize851);
            runProperties651.Append(fontSizeComplexScript845);
            SdtId sdtId48 = new SdtId() { Val = 583728260 };

            W14.SdtContentCheckBox sdtContentCheckBox48 = new W14.SdtContentCheckBox();
            W14.Checked checked48 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState48 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState48 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox48.Append(checked48);
            sdtContentCheckBox48.Append(checkedState48);
            sdtContentCheckBox48.Append(uncheckedState48);

            sdtProperties48.Append(runProperties651);
            sdtProperties48.Append(sdtId48);
            sdtProperties48.Append(sdtContentCheckBox48);
            SdtEndCharProperties sdtEndCharProperties48 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun48 = new SdtContentRun();

            Run run611 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties652 = new RunProperties();
            RunFonts runFonts844 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize852 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript846 = new FontSizeComplexScript() { Val = "22" };

            runProperties652.Append(runFonts844);
            runProperties652.Append(fontSize852);
            runProperties652.Append(fontSizeComplexScript846);
            Text text579 = new Text();
            text579.Text = "☐";

            run611.Append(runProperties652);
            run611.Append(text579);

            sdtContentRun48.Append(run611);

            sdtRun48.Append(sdtProperties48);
            sdtRun48.Append(sdtEndCharProperties48);
            sdtRun48.Append(sdtContentRun48);

            Run run612 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00A565FD" };

            RunProperties runProperties653 = new RunProperties();
            RunFonts runFonts845 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize853 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript847 = new FontSizeComplexScript() { Val = "22" };

            runProperties653.Append(runFonts845);
            runProperties653.Append(fontSize853);
            runProperties653.Append(fontSizeComplexScript847);
            Text text580 = new Text();
            text580.Text = "6.";

            run612.Append(runProperties653);
            run612.Append(text580);

            Run run613 = new Run() { RsidRunAddition = "00A565FD" };

            RunProperties runProperties654 = new RunProperties();
            RunFonts runFonts846 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize854 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript848 = new FontSizeComplexScript() { Val = "22" };

            runProperties654.Append(runFonts846);
            runProperties654.Append(fontSize854);
            runProperties654.Append(fontSizeComplexScript848);
            Text text581 = new Text();
            text581.Text = "0";

            run613.Append(runProperties654);
            run613.Append(text581);

            Run run614 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00A565FD" };

            RunProperties runProperties655 = new RunProperties();
            RunFonts runFonts847 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize855 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript849 = new FontSizeComplexScript() { Val = "22" };

            runProperties655.Append(runFonts847);
            runProperties655.Append(fontSize855);
            runProperties655.Append(fontSizeComplexScript849);
            Text text582 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text582.Text = " Farm";

            run614.Append(runProperties655);
            run614.Append(text582);

            paragraph294.Append(paragraphProperties291);
            paragraph294.Append(sdtRun48);
            paragraph294.Append(run612);
            paragraph294.Append(run613);
            paragraph294.Append(run614);

            Paragraph paragraph295 = new Paragraph() { RsidParagraphMarkRevision = "00281D13", RsidParagraphAddition = "00A565FD", RsidParagraphProperties = "00A565FD", RsidRunAdditionDefault = "00A563A2", ParagraphId = "0AAC1AB4", TextId = "40FD78DE" };

            ParagraphProperties paragraphProperties292 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties292 = new ParagraphMarkRunProperties();
            RunFonts runFonts848 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize856 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript850 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties292.Append(runFonts848);
            paragraphMarkRunProperties292.Append(fontSize856);
            paragraphMarkRunProperties292.Append(fontSizeComplexScript850);

            paragraphProperties292.Append(paragraphMarkRunProperties292);

            SdtRun sdtRun49 = new SdtRun();

            SdtProperties sdtProperties49 = new SdtProperties();

            RunProperties runProperties656 = new RunProperties();
            RunFonts runFonts849 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize857 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript851 = new FontSizeComplexScript() { Val = "22" };

            runProperties656.Append(runFonts849);
            runProperties656.Append(fontSize857);
            runProperties656.Append(fontSizeComplexScript851);
            SdtId sdtId49 = new SdtId() { Val = 1277376355 };

            W14.SdtContentCheckBox sdtContentCheckBox49 = new W14.SdtContentCheckBox();
            W14.Checked checked49 = new W14.Checked() { Val = W14.OnOffValues.Zero };
            W14.CheckedState checkedState49 = new W14.CheckedState() { Font = "MS Gothic", Val = "2612" };
            W14.UncheckedState uncheckedState49 = new W14.UncheckedState() { Font = "MS Gothic", Val = "2610" };

            sdtContentCheckBox49.Append(checked49);
            sdtContentCheckBox49.Append(checkedState49);
            sdtContentCheckBox49.Append(uncheckedState49);

            sdtProperties49.Append(runProperties656);
            sdtProperties49.Append(sdtId49);
            sdtProperties49.Append(sdtContentCheckBox49);
            SdtEndCharProperties sdtEndCharProperties49 = new SdtEndCharProperties();

            SdtContentRun sdtContentRun49 = new SdtContentRun();

            Run run615 = new Run() { RsidRunAddition = "00F12AD5" };

            RunProperties runProperties657 = new RunProperties();
            RunFonts runFonts850 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic" };
            FontSize fontSize858 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript852 = new FontSizeComplexScript() { Val = "22" };

            runProperties657.Append(runFonts850);
            runProperties657.Append(fontSize858);
            runProperties657.Append(fontSizeComplexScript852);
            Text text583 = new Text();
            text583.Text = "☐";

            run615.Append(runProperties657);
            run615.Append(text583);

            sdtContentRun49.Append(run615);

            sdtRun49.Append(sdtProperties49);
            sdtRun49.Append(sdtEndCharProperties49);
            sdtRun49.Append(sdtContentRun49);

            Run run616 = new Run() { RsidRunAddition = "00A565FD" };

            RunProperties runProperties658 = new RunProperties();
            RunFonts runFonts851 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize859 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript853 = new FontSizeComplexScript() { Val = "22" };

            runProperties658.Append(runFonts851);
            runProperties658.Append(fontSize859);
            runProperties658.Append(fontSizeComplexScript853);
            Text text584 = new Text();
            text584.Text = "Test";

            run616.Append(runProperties658);
            run616.Append(text584);

            paragraph295.Append(paragraphProperties292);
            paragraph295.Append(sdtRun49);
            paragraph295.Append(run616);

            Paragraph paragraph296 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00E8117E", RsidRunAdditionDefault = "00BC048A", ParagraphId = "2A69E2AC", TextId = "77777777" };

            ParagraphProperties paragraphProperties293 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties293 = new ParagraphMarkRunProperties();
            RunFonts runFonts852 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize860 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript854 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties293.Append(runFonts852);
            paragraphMarkRunProperties293.Append(fontSize860);
            paragraphMarkRunProperties293.Append(fontSizeComplexScript854);

            paragraphProperties293.Append(paragraphMarkRunProperties293);

            Run run617 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties659 = new RunProperties();
            RunFonts runFonts853 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize861 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript855 = new FontSizeComplexScript() { Val = "22" };

            runProperties659.Append(runFonts853);
            runProperties659.Append(fontSize861);
            runProperties659.Append(fontSizeComplexScript855);
            Text text585 = new Text();
            text585.Text = "Vendor Supports application in Citrix configuration Yes/No";

            run617.Append(runProperties659);
            run617.Append(text585);

            Run run618 = new Run();

            RunProperties runProperties660 = new RunProperties();
            RunFonts runFonts854 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize862 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript856 = new FontSizeComplexScript() { Val = "22" };

            runProperties660.Append(runFonts854);
            runProperties660.Append(fontSize862);
            runProperties660.Append(fontSizeComplexScript856);
            Text text586 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text586.Text = ": ";

            run618.Append(runProperties660);
            run618.Append(text586);

            Run run619 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties661 = new RunProperties();
            RunFonts runFonts855 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color321 = new Color() { Val = "FF0000" };
            FontSize fontSize863 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript857 = new FontSizeComplexScript() { Val = "22" };

            runProperties661.Append(runFonts855);
            runProperties661.Append(color321);
            runProperties661.Append(fontSize863);
            runProperties661.Append(fontSizeComplexScript857);
            Text text587 = new Text();
            text587.Text = "YES";

            run619.Append(runProperties661);
            run619.Append(text587);

            paragraph296.Append(paragraphProperties293);
            paragraph296.Append(run617);
            paragraph296.Append(run618);
            paragraph296.Append(run619);

            Paragraph paragraph297 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00E8117E", RsidRunAdditionDefault = "00E8117E", ParagraphId = "06A217F5", TextId = "77777777" };

            ParagraphProperties paragraphProperties294 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties294 = new ParagraphMarkRunProperties();
            RunFonts runFonts856 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize864 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript858 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties294.Append(runFonts856);
            paragraphMarkRunProperties294.Append(fontSize864);
            paragraphMarkRunProperties294.Append(fontSizeComplexScript858);

            paragraphProperties294.Append(paragraphMarkRunProperties294);

            Run run620 = new Run();

            RunProperties runProperties662 = new RunProperties();
            RunFonts runFonts857 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize865 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript859 = new FontSizeComplexScript() { Val = "22" };

            runProperties662.Append(runFonts857);
            runProperties662.Append(fontSize865);
            runProperties662.Append(fontSizeComplexScript859);
            Text text588 = new Text();
            text588.Text = "Server Reboot Schedule";

            run620.Append(runProperties662);
            run620.Append(text588);

            paragraph297.Append(paragraphProperties294);
            paragraph297.Append(run620);

            Paragraph paragraph298 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00E8117E", RsidRunAdditionDefault = "00DE0CB0", ParagraphId = "7BCFB1EB", TextId = "058B2FF9" };

            ParagraphProperties paragraphProperties295 = new ParagraphProperties();
            Indentation indentation23 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties295 = new ParagraphMarkRunProperties();
            RunFonts runFonts858 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color322 = new Color() { Val = "FF0000" };
            FontSize fontSize866 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript860 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties295.Append(runFonts858);
            paragraphMarkRunProperties295.Append(color322);
            paragraphMarkRunProperties295.Append(fontSize866);
            paragraphMarkRunProperties295.Append(fontSizeComplexScript860);

            paragraphProperties295.Append(indentation23);
            paragraphProperties295.Append(paragraphMarkRunProperties295);

            Run run621 = new Run();

            RunProperties runProperties663 = new RunProperties();
            RunFonts runFonts859 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color323 = new Color() { Val = "FF0000" };
            FontSize fontSize867 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript861 = new FontSizeComplexScript() { Val = "22" };

            runProperties663.Append(runFonts859);
            runProperties663.Append(color323);
            runProperties663.Append(fontSize867);
            runProperties663.Append(fontSizeComplexScript861);
            Text text589 = new Text();
            text589.Text = "ALL";

            run621.Append(runProperties663);
            run621.Append(text589);

            Run run622 = new Run() { RsidRunAddition = "00E8117E" };

            RunProperties runProperties664 = new RunProperties();
            RunFonts runFonts860 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color324 = new Color() { Val = "FF0000" };
            FontSize fontSize868 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript862 = new FontSizeComplexScript() { Val = "22" };

            runProperties664.Append(runFonts860);
            runProperties664.Append(color324);
            runProperties664.Append(fontSize868);
            runProperties664.Append(fontSizeComplexScript862);
            Text text590 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text590.Text = " servers need to be rebooted once weekly.  A staggered schedule is suggested.  Reboots will be proceeded by a user warning";

            run622.Append(runProperties664);
            run622.Append(text590);

            Run run623 = new Run() { RsidRunAddition = "00116413" };

            RunProperties runProperties665 = new RunProperties();
            RunFonts runFonts861 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color325 = new Color() { Val = "FF0000" };
            FontSize fontSize869 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript863 = new FontSizeComplexScript() { Val = "22" };

            runProperties665.Append(runFonts861);
            runProperties665.Append(color325);
            runProperties665.Append(fontSize869);
            runProperties665.Append(fontSizeComplexScript863);
            Text text591 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text591.Text = " & disabling of any logins";

            run623.Append(runProperties665);
            run623.Append(text591);

            Run run624 = new Run() { RsidRunAddition = "00E8117E" };

            RunProperties runProperties666 = new RunProperties();
            RunFonts runFonts862 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color326 = new Color() { Val = "FF0000" };
            FontSize fontSize870 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript864 = new FontSizeComplexScript() { Val = "22" };

            runProperties666.Append(runFonts862);
            runProperties666.Append(color326);
            runProperties666.Append(fontSize870);
            runProperties666.Append(fontSizeComplexScript864);
            Text text592 = new Text();
            text592.Text = ".";

            run624.Append(runProperties666);
            run624.Append(text592);

            paragraph298.Append(paragraphProperties295);
            paragraph298.Append(run621);
            paragraph298.Append(run622);
            paragraph298.Append(run623);
            paragraph298.Append(run624);

            Table table7 = new Table();

            TableProperties tableProperties7 = new TableProperties();
            TableWidth tableWidth7 = new TableWidth() { Width = "0", Type = TableWidthUnitValues.Auto };
            TableIndentation tableIndentation2 = new TableIndentation() { Width = 1548, Type = TableWidthUnitValues.Dxa };

            TableBorders tableBorders4 = new TableBorders();
            TopBorder topBorder53 = new TopBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder52 = new LeftBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder52 = new BottomBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder52 = new RightBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder4 = new InsideHorizontalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder4 = new InsideVerticalBorder() { Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableBorders4.Append(topBorder53);
            tableBorders4.Append(leftBorder52);
            tableBorders4.Append(bottomBorder52);
            tableBorders4.Append(rightBorder52);
            tableBorders4.Append(insideHorizontalBorder4);
            tableBorders4.Append(insideVerticalBorder4);
            TableLook tableLook7 = new TableLook() { Val = "01E0" };

            tableProperties7.Append(tableWidth7);
            tableProperties7.Append(tableIndentation2);
            tableProperties7.Append(tableBorders4);
            tableProperties7.Append(tableLook7);

            TableGrid tableGrid7 = new TableGrid();
            GridColumn gridColumn35 = new GridColumn() { Width = "2214" };
            GridColumn gridColumn36 = new GridColumn() { Width = "2215" };
            GridColumn gridColumn37 = new GridColumn() { Width = "2215" };
            GridColumn gridColumn38 = new GridColumn() { Width = "3976" };

            tableGrid7.Append(gridColumn35);
            tableGrid7.Append(gridColumn36);
            tableGrid7.Append(gridColumn37);
            tableGrid7.Append(gridColumn38);

            TableRow tableRow36 = new TableRow() { RsidTableRowMarkRevision = "009032DC", RsidTableRowAddition = "00E8117E", RsidTableRowProperties = "0027287B", ParagraphId = "6B699E46", TextId = "0F05B52E" };

            TableCell tableCell158 = new TableCell();

            TableCellProperties tableCellProperties158 = new TableCellProperties();
            TableCellWidth tableCellWidth158 = new TableCellWidth() { Width = "2214", Type = TableWidthUnitValues.Dxa };

            tableCellProperties158.Append(tableCellWidth158);

            Paragraph paragraph299 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "3DDC2CCE", TextId = "5807ED4D" };

            ParagraphProperties paragraphProperties296 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties296 = new ParagraphMarkRunProperties();
            RunFonts runFonts863 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize871 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript865 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties296.Append(runFonts863);
            paragraphMarkRunProperties296.Append(fontSize871);
            paragraphMarkRunProperties296.Append(fontSizeComplexScript865);

            paragraphProperties296.Append(paragraphMarkRunProperties296);

            Run run625 = new Run();

            RunProperties runProperties667 = new RunProperties();
            RunFonts runFonts864 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize872 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript866 = new FontSizeComplexScript() { Val = "22" };

            runProperties667.Append(runFonts864);
            runProperties667.Append(fontSize872);
            runProperties667.Append(fontSizeComplexScript866);
            Text text593 = new Text();
            text593.Text = "Server Name";

            run625.Append(runProperties667);
            run625.Append(text593);

            paragraph299.Append(paragraphProperties296);
            paragraph299.Append(run625);

            tableCell158.Append(tableCellProperties158);
            tableCell158.Append(paragraph299);

            TableCell tableCell159 = new TableCell();

            TableCellProperties tableCellProperties159 = new TableCellProperties();
            TableCellWidth tableCellWidth159 = new TableCellWidth() { Width = "2215", Type = TableWidthUnitValues.Dxa };

            tableCellProperties159.Append(tableCellWidth159);

            Paragraph paragraph300 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "42AFA278", TextId = "5EFCF170" };

            ParagraphProperties paragraphProperties297 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties297 = new ParagraphMarkRunProperties();
            RunFonts runFonts865 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize873 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript867 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties297.Append(runFonts865);
            paragraphMarkRunProperties297.Append(fontSize873);
            paragraphMarkRunProperties297.Append(fontSizeComplexScript867);

            paragraphProperties297.Append(paragraphMarkRunProperties297);

            Run run626 = new Run();

            RunProperties runProperties668 = new RunProperties();
            RunFonts runFonts866 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize874 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript868 = new FontSizeComplexScript() { Val = "22" };

            runProperties668.Append(runFonts866);
            runProperties668.Append(fontSize874);
            runProperties668.Append(fontSizeComplexScript868);
            Text text594 = new Text();
            text594.Text = "Day of the Week";

            run626.Append(runProperties668);
            run626.Append(text594);

            paragraph300.Append(paragraphProperties297);
            paragraph300.Append(run626);

            tableCell159.Append(tableCellProperties159);
            tableCell159.Append(paragraph300);

            TableCell tableCell160 = new TableCell();

            TableCellProperties tableCellProperties160 = new TableCellProperties();
            TableCellWidth tableCellWidth160 = new TableCellWidth() { Width = "2215", Type = TableWidthUnitValues.Dxa };

            tableCellProperties160.Append(tableCellWidth160);

            Paragraph paragraph301 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "66F8A1F2", TextId = "7DBED0F8" };

            ParagraphProperties paragraphProperties298 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties298 = new ParagraphMarkRunProperties();
            RunFonts runFonts867 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize875 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript869 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties298.Append(runFonts867);
            paragraphMarkRunProperties298.Append(fontSize875);
            paragraphMarkRunProperties298.Append(fontSizeComplexScript869);

            paragraphProperties298.Append(paragraphMarkRunProperties298);

            Run run627 = new Run();

            RunProperties runProperties669 = new RunProperties();
            RunFonts runFonts868 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize876 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript870 = new FontSizeComplexScript() { Val = "22" };

            runProperties669.Append(runFonts868);
            runProperties669.Append(fontSize876);
            runProperties669.Append(fontSizeComplexScript870);
            Text text595 = new Text();
            text595.Text = "Time of Day";

            run627.Append(runProperties669);
            run627.Append(text595);

            paragraph301.Append(paragraphProperties298);
            paragraph301.Append(run627);

            tableCell160.Append(tableCellProperties160);
            tableCell160.Append(paragraph301);

            TableCell tableCell161 = new TableCell();

            TableCellProperties tableCellProperties161 = new TableCellProperties();
            TableCellWidth tableCellWidth161 = new TableCellWidth() { Width = "3976", Type = TableWidthUnitValues.Dxa };

            tableCellProperties161.Append(tableCellWidth161);

            Paragraph paragraph302 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00DE0CB0", ParagraphId = "69045A29", TextId = "5E961419" };

            ParagraphProperties paragraphProperties299 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties299 = new ParagraphMarkRunProperties();
            RunFonts runFonts869 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize877 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript871 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties299.Append(runFonts869);
            paragraphMarkRunProperties299.Append(fontSize877);
            paragraphMarkRunProperties299.Append(fontSizeComplexScript871);

            paragraphProperties299.Append(paragraphMarkRunProperties299);

            Run run628 = new Run();

            RunProperties runProperties670 = new RunProperties();
            RunFonts runFonts870 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize878 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript872 = new FontSizeComplexScript() { Val = "22" };

            runProperties670.Append(runFonts870);
            runProperties670.Append(fontSize878);
            runProperties670.Append(fontSizeComplexScript872);
            Text text596 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text596.Text = "User ";

            run628.Append(runProperties670);
            run628.Append(text596);

            Run run629 = new Run() { RsidRunAddition = "00E8117E" };

            RunProperties runProperties671 = new RunProperties();
            RunFonts runFonts871 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize879 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript873 = new FontSizeComplexScript() { Val = "22" };

            runProperties671.Append(runFonts871);
            runProperties671.Append(fontSize879);
            runProperties671.Append(fontSizeComplexScript873);
            Text text597 = new Text();
            text597.Text = "Warning Interval";

            run629.Append(runProperties671);
            run629.Append(text597);

            Run run630 = new Run() { RsidRunAddition = "0027287B" };

            RunProperties runProperties672 = new RunProperties();
            RunFonts runFonts872 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize880 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript874 = new FontSizeComplexScript() { Val = "22" };

            runProperties672.Append(runFonts872);
            runProperties672.Append(fontSize880);
            runProperties672.Append(fontSizeComplexScript874);
            Text text598 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text598.Text = " (in minutes)";

            run630.Append(runProperties672);
            run630.Append(text598);

            paragraph302.Append(paragraphProperties299);
            paragraph302.Append(run628);
            paragraph302.Append(run629);
            paragraph302.Append(run630);

            tableCell161.Append(tableCellProperties161);
            tableCell161.Append(paragraph302);

            tableRow36.Append(tableCell158);
            tableRow36.Append(tableCell159);
            tableRow36.Append(tableCell160);
            tableRow36.Append(tableCell161);

            TableRow tableRow37 = new TableRow() { RsidTableRowMarkRevision = "009032DC", RsidTableRowAddition = "00E8117E", RsidTableRowProperties = "0027287B", ParagraphId = "453D417F", TextId = "6703B66D" };

            TableCell tableCell162 = new TableCell();

            TableCellProperties tableCellProperties162 = new TableCellProperties();
            TableCellWidth tableCellWidth162 = new TableCellWidth() { Width = "2214", Type = TableWidthUnitValues.Dxa };

            tableCellProperties162.Append(tableCellWidth162);

            Paragraph paragraph303 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "4DE9C9B5", TextId = "662CDF54" };

            ParagraphProperties paragraphProperties300 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties300 = new ParagraphMarkRunProperties();
            RunFonts runFonts873 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color327 = new Color() { Val = "FF0000" };
            FontSize fontSize881 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript875 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties300.Append(runFonts873);
            paragraphMarkRunProperties300.Append(color327);
            paragraphMarkRunProperties300.Append(fontSize881);
            paragraphMarkRunProperties300.Append(fontSizeComplexScript875);

            paragraphProperties300.Append(paragraphMarkRunProperties300);

            Run run631 = new Run();

            RunProperties runProperties673 = new RunProperties();
            RunFonts runFonts874 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color328 = new Color() { Val = "FF0000" };
            FontSize fontSize882 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript876 = new FontSizeComplexScript() { Val = "22" };

            runProperties673.Append(runFonts874);
            runProperties673.Append(color328);
            runProperties673.Append(fontSize882);
            runProperties673.Append(fontSizeComplexScript876);
            Text text599 = new Text();
            text599.Text = "BJCxxxXAP";

            run631.Append(runProperties673);
            run631.Append(text599);

            Run run632 = new Run() { RsidRunProperties = "004E361A" };

            RunProperties runProperties674 = new RunProperties();
            RunFonts runFonts875 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color329 = new Color() { Val = "FF0000" };
            FontSize fontSize883 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript877 = new FontSizeComplexScript() { Val = "22" };

            runProperties674.Append(runFonts875);
            runProperties674.Append(color329);
            runProperties674.Append(fontSize883);
            runProperties674.Append(fontSizeComplexScript877);
            Text text600 = new Text();
            text600.Text = "01";

            run632.Append(runProperties674);
            run632.Append(text600);

            paragraph303.Append(paragraphProperties300);
            paragraph303.Append(run631);
            paragraph303.Append(run632);

            tableCell162.Append(tableCellProperties162);
            tableCell162.Append(paragraph303);

            TableCell tableCell163 = new TableCell();

            TableCellProperties tableCellProperties163 = new TableCellProperties();
            TableCellWidth tableCellWidth163 = new TableCellWidth() { Width = "2215", Type = TableWidthUnitValues.Dxa };

            tableCellProperties163.Append(tableCellWidth163);

            Paragraph paragraph304 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "1CEBFC59", TextId = "793A2929" };

            ParagraphProperties paragraphProperties301 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties301 = new ParagraphMarkRunProperties();
            RunFonts runFonts876 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color330 = new Color() { Val = "FF0000" };
            FontSize fontSize884 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript878 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties301.Append(runFonts876);
            paragraphMarkRunProperties301.Append(color330);
            paragraphMarkRunProperties301.Append(fontSize884);
            paragraphMarkRunProperties301.Append(fontSizeComplexScript878);

            paragraphProperties301.Append(paragraphMarkRunProperties301);

            Run run633 = new Run();

            RunProperties runProperties675 = new RunProperties();
            RunFonts runFonts877 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color331 = new Color() { Val = "FF0000" };
            FontSize fontSize885 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript879 = new FontSizeComplexScript() { Val = "22" };

            runProperties675.Append(runFonts877);
            runProperties675.Append(color331);
            runProperties675.Append(fontSize885);
            runProperties675.Append(fontSizeComplexScript879);
            Text text601 = new Text();
            text601.Text = "Sunday";

            run633.Append(runProperties675);
            run633.Append(text601);

            paragraph304.Append(paragraphProperties301);
            paragraph304.Append(run633);

            tableCell163.Append(tableCellProperties163);
            tableCell163.Append(paragraph304);

            TableCell tableCell164 = new TableCell();

            TableCellProperties tableCellProperties164 = new TableCellProperties();
            TableCellWidth tableCellWidth164 = new TableCellWidth() { Width = "2215", Type = TableWidthUnitValues.Dxa };

            tableCellProperties164.Append(tableCellWidth164);

            Paragraph paragraph305 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "243CA2C6", TextId = "7E5E13A8" };

            ParagraphProperties paragraphProperties302 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties302 = new ParagraphMarkRunProperties();
            RunFonts runFonts878 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color332 = new Color() { Val = "FF0000" };
            FontSize fontSize886 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript880 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties302.Append(runFonts878);
            paragraphMarkRunProperties302.Append(color332);
            paragraphMarkRunProperties302.Append(fontSize886);
            paragraphMarkRunProperties302.Append(fontSizeComplexScript880);

            paragraphProperties302.Append(paragraphMarkRunProperties302);

            Run run634 = new Run();

            RunProperties runProperties676 = new RunProperties();
            RunFonts runFonts879 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color333 = new Color() { Val = "FF0000" };
            FontSize fontSize887 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript881 = new FontSizeComplexScript() { Val = "22" };

            runProperties676.Append(runFonts879);
            runProperties676.Append(color333);
            runProperties676.Append(fontSize887);
            runProperties676.Append(fontSizeComplexScript881);
            Text text602 = new Text();
            text602.Text = "12:30am";

            run634.Append(runProperties676);
            run634.Append(text602);

            paragraph305.Append(paragraphProperties302);
            paragraph305.Append(run634);

            tableCell164.Append(tableCellProperties164);
            tableCell164.Append(paragraph305);

            TableCell tableCell165 = new TableCell();

            TableCellProperties tableCellProperties165 = new TableCellProperties();
            TableCellWidth tableCellWidth165 = new TableCellWidth() { Width = "3976", Type = TableWidthUnitValues.Dxa };

            tableCellProperties165.Append(tableCellWidth165);

            Paragraph paragraph306 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00DE0CB0", ParagraphId = "147A6425", TextId = "2DAD0F0A" };

            ParagraphProperties paragraphProperties303 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties303 = new ParagraphMarkRunProperties();
            RunFonts runFonts880 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color334 = new Color() { Val = "FF0000" };
            FontSize fontSize888 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript882 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties303.Append(runFonts880);
            paragraphMarkRunProperties303.Append(color334);
            paragraphMarkRunProperties303.Append(fontSize888);
            paragraphMarkRunProperties303.Append(fontSizeComplexScript882);

            paragraphProperties303.Append(paragraphMarkRunProperties303);

            Run run635 = new Run();

            RunProperties runProperties677 = new RunProperties();
            RunFonts runFonts881 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color335 = new Color() { Val = "FF0000" };
            FontSize fontSize889 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript883 = new FontSizeComplexScript() { Val = "22" };

            runProperties677.Append(runFonts881);
            runProperties677.Append(color335);
            runProperties677.Append(fontSize889);
            runProperties677.Append(fontSizeComplexScript883);
            Text text603 = new Text();
            text603.Text = "5, 10, 15";

            run635.Append(runProperties677);
            run635.Append(text603);

            paragraph306.Append(paragraphProperties303);
            paragraph306.Append(run635);

            tableCell165.Append(tableCellProperties165);
            tableCell165.Append(paragraph306);

            tableRow37.Append(tableCell162);
            tableRow37.Append(tableCell163);
            tableRow37.Append(tableCell164);
            tableRow37.Append(tableCell165);

            TableRow tableRow38 = new TableRow() { RsidTableRowMarkRevision = "009032DC", RsidTableRowAddition = "00E8117E", RsidTableRowProperties = "0027287B", ParagraphId = "3643E075", TextId = "36608C2D" };

            TableCell tableCell166 = new TableCell();

            TableCellProperties tableCellProperties166 = new TableCellProperties();
            TableCellWidth tableCellWidth166 = new TableCellWidth() { Width = "2214", Type = TableWidthUnitValues.Dxa };

            tableCellProperties166.Append(tableCellWidth166);

            Paragraph paragraph307 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "5A068E7C", TextId = "7A250A44" };

            ParagraphProperties paragraphProperties304 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties304 = new ParagraphMarkRunProperties();
            RunFonts runFonts882 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color336 = new Color() { Val = "FF0000" };
            FontSize fontSize890 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript884 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties304.Append(runFonts882);
            paragraphMarkRunProperties304.Append(color336);
            paragraphMarkRunProperties304.Append(fontSize890);
            paragraphMarkRunProperties304.Append(fontSizeComplexScript884);

            paragraphProperties304.Append(paragraphMarkRunProperties304);

            paragraph307.Append(paragraphProperties304);

            tableCell166.Append(tableCellProperties166);
            tableCell166.Append(paragraph307);

            TableCell tableCell167 = new TableCell();

            TableCellProperties tableCellProperties167 = new TableCellProperties();
            TableCellWidth tableCellWidth167 = new TableCellWidth() { Width = "2215", Type = TableWidthUnitValues.Dxa };

            tableCellProperties167.Append(tableCellWidth167);

            Paragraph paragraph308 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "489513B9", TextId = "7A07C4D1" };

            ParagraphProperties paragraphProperties305 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties305 = new ParagraphMarkRunProperties();
            RunFonts runFonts883 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color337 = new Color() { Val = "FF0000" };
            FontSize fontSize891 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript885 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties305.Append(runFonts883);
            paragraphMarkRunProperties305.Append(color337);
            paragraphMarkRunProperties305.Append(fontSize891);
            paragraphMarkRunProperties305.Append(fontSizeComplexScript885);

            paragraphProperties305.Append(paragraphMarkRunProperties305);

            paragraph308.Append(paragraphProperties305);

            tableCell167.Append(tableCellProperties167);
            tableCell167.Append(paragraph308);

            TableCell tableCell168 = new TableCell();

            TableCellProperties tableCellProperties168 = new TableCellProperties();
            TableCellWidth tableCellWidth168 = new TableCellWidth() { Width = "2215", Type = TableWidthUnitValues.Dxa };

            tableCellProperties168.Append(tableCellWidth168);

            Paragraph paragraph309 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "1A227088", TextId = "17167858" };

            ParagraphProperties paragraphProperties306 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties306 = new ParagraphMarkRunProperties();
            RunFonts runFonts884 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color338 = new Color() { Val = "FF0000" };
            FontSize fontSize892 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript886 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties306.Append(runFonts884);
            paragraphMarkRunProperties306.Append(color338);
            paragraphMarkRunProperties306.Append(fontSize892);
            paragraphMarkRunProperties306.Append(fontSizeComplexScript886);

            paragraphProperties306.Append(paragraphMarkRunProperties306);

            paragraph309.Append(paragraphProperties306);

            tableCell168.Append(tableCellProperties168);
            tableCell168.Append(paragraph309);

            TableCell tableCell169 = new TableCell();

            TableCellProperties tableCellProperties169 = new TableCellProperties();
            TableCellWidth tableCellWidth169 = new TableCellWidth() { Width = "3976", Type = TableWidthUnitValues.Dxa };

            tableCellProperties169.Append(tableCellWidth169);

            Paragraph paragraph310 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00D02406", RsidRunAdditionDefault = "00E8117E", ParagraphId = "30EE5EAF", TextId = "77777777" };

            ParagraphProperties paragraphProperties307 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties307 = new ParagraphMarkRunProperties();
            RunFonts runFonts885 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color339 = new Color() { Val = "FF0000" };
            FontSize fontSize893 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript887 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties307.Append(runFonts885);
            paragraphMarkRunProperties307.Append(color339);
            paragraphMarkRunProperties307.Append(fontSize893);
            paragraphMarkRunProperties307.Append(fontSizeComplexScript887);

            paragraphProperties307.Append(paragraphMarkRunProperties307);

            paragraph310.Append(paragraphProperties307);

            tableCell169.Append(tableCellProperties169);
            tableCell169.Append(paragraph310);

            tableRow38.Append(tableCell166);
            tableRow38.Append(tableCell167);
            tableRow38.Append(tableCell168);
            tableRow38.Append(tableCell169);

            table7.Append(tableProperties7);
            table7.Append(tableGrid7);
            table7.Append(tableRow36);
            table7.Append(tableRow37);
            table7.Append(tableRow38);

            Paragraph paragraph311 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "003E56E7", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1AB6", TextId = "40D88CFB" };

            ParagraphProperties paragraphProperties308 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties308 = new ParagraphMarkRunProperties();
            RunFonts runFonts886 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize894 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript888 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties308.Append(runFonts886);
            paragraphMarkRunProperties308.Append(fontSize894);
            paragraphMarkRunProperties308.Append(fontSizeComplexScript888);

            paragraphProperties308.Append(paragraphMarkRunProperties308);

            Run run636 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties678 = new RunProperties();
            RunFonts runFonts887 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize895 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript889 = new FontSizeComplexScript() { Val = "22" };

            runProperties678.Append(runFonts887);
            runProperties678.Append(fontSize895);
            runProperties678.Append(fontSizeComplexScript889);
            Text text604 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text604.Text = "Will this server be added to an ";

            run636.Append(runProperties678);
            run636.Append(text604);

            Run run637 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties679 = new RunProperties();
            RunFonts runFonts888 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color340 = new Color() { Val = "FF0000" };
            FontSize fontSize896 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript890 = new FontSizeComplexScript() { Val = "22" };

            runProperties679.Append(runFonts888);
            runProperties679.Append(color340);
            runProperties679.Append(fontSize896);
            runProperties679.Append(fontSizeComplexScript890);
            Text text605 = new Text();
            text605.Text = "existing";

            run637.Append(runProperties679);
            run637.Append(text605);

            Run run638 = new Run() { RsidRunProperties = "003E56F4", RsidRunAddition = "003E56F4" };

            RunProperties runProperties680 = new RunProperties();
            RunFonts runFonts889 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color341 = new Color() { Val = "FF0000" };
            FontSize fontSize897 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript891 = new FontSizeComplexScript() { Val = "22" };

            runProperties680.Append(runFonts889);
            runProperties680.Append(color341);
            runProperties680.Append(fontSize897);
            runProperties680.Append(fontSizeComplexScript891);
            Text text606 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text606.Text = " ";

            run638.Append(runProperties680);
            run638.Append(text606);

            Run run639 = new Run() { RsidRunAddition = "003E56F4" };

            RunProperties runProperties681 = new RunProperties();
            RunFonts runFonts890 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize898 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript892 = new FontSizeComplexScript() { Val = "22" };

            runProperties681.Append(runFonts890);
            runProperties681.Append(fontSize898);
            runProperties681.Append(fontSizeComplexScript892);
            Text text607 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text607.Text = "or a ";

            run639.Append(runProperties681);
            run639.Append(text607);

            Run run640 = new Run() { RsidRunProperties = "003E56F4", RsidRunAddition = "003E56F4" };

            RunProperties runProperties682 = new RunProperties();
            RunFonts runFonts891 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color342 = new Color() { Val = "FF0000" };
            FontSize fontSize899 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript893 = new FontSizeComplexScript() { Val = "22" };

            runProperties682.Append(runFonts891);
            runProperties682.Append(color342);
            runProperties682.Append(fontSize899);
            runProperties682.Append(fontSizeComplexScript893);
            Text text608 = new Text();
            text608.Text = "new";

            run640.Append(runProperties682);
            run640.Append(text608);

            Run run641 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties683 = new RunProperties();
            RunFonts runFonts892 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color343 = new Color() { Val = "FF0000" };
            FontSize fontSize900 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript894 = new FontSizeComplexScript() { Val = "22" };

            runProperties683.Append(runFonts892);
            runProperties683.Append(color343);
            runProperties683.Append(fontSize900);
            runProperties683.Append(fontSizeComplexScript894);
            Text text609 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text609.Text = " ";

            run641.Append(runProperties683);
            run641.Append(text609);

            Run run642 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties684 = new RunProperties();
            RunFonts runFonts893 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize901 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript895 = new FontSizeComplexScript() { Val = "22" };

            runProperties684.Append(runFonts893);
            runProperties684.Append(fontSize901);
            runProperties684.Append(fontSizeComplexScript895);
            Text text610 = new Text();
            text610.Text = "application?";

            run642.Append(runProperties684);
            run642.Append(text610);

            paragraph311.Append(paragraphProperties308);
            paragraph311.Append(run636);
            paragraph311.Append(run637);
            paragraph311.Append(run638);
            paragraph311.Append(run639);
            paragraph311.Append(run640);
            paragraph311.Append(run641);
            paragraph311.Append(run642);

            Paragraph paragraph312 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "00116831", RsidParagraphProperties = "00BC048A", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1AB7", TextId = "31ED6912" };

            ParagraphProperties paragraphProperties309 = new ParagraphProperties();
            Indentation indentation24 = new Indentation() { FirstLine = "720" };

            ParagraphMarkRunProperties paragraphMarkRunProperties309 = new ParagraphMarkRunProperties();
            RunFonts runFonts894 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize902 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript896 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties309.Append(runFonts894);
            paragraphMarkRunProperties309.Append(fontSize902);
            paragraphMarkRunProperties309.Append(fontSizeComplexScript896);

            paragraphProperties309.Append(indentation24);
            paragraphProperties309.Append(paragraphMarkRunProperties309);

            Run run643 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties685 = new RunProperties();
            RunFonts runFonts895 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize903 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript897 = new FontSizeComplexScript() { Val = "22" };

            runProperties685.Append(runFonts895);
            runProperties685.Append(fontSize903);
            runProperties685.Append(fontSizeComplexScript897);
            Text text611 = new Text();
            text611.Text = "Application Name:";

            run643.Append(runProperties685);
            run643.Append(text611);

            Run run644 = new Run() { RsidRunAddition = "00A565FD" };

            RunProperties runProperties686 = new RunProperties();
            RunFonts runFonts896 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize904 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript898 = new FontSizeComplexScript() { Val = "22" };

            runProperties686.Append(runFonts896);
            runProperties686.Append(fontSize904);
            runProperties686.Append(fontSizeComplexScript898);
            Text text612 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text612.Text = " ";

            run644.Append(runProperties686);
            run644.Append(text612);

            Run run645 = new Run() { RsidRunProperties = "00281D13", RsidRunAddition = "00A565FD" };

            RunProperties runProperties687 = new RunProperties();
            RunFonts runFonts897 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color344 = new Color() { Val = "FF0000" };
            FontSize fontSize905 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript899 = new FontSizeComplexScript() { Val = "22" };

            runProperties687.Append(runFonts897);
            runProperties687.Append(color344);
            runProperties687.Append(fontSize905);
            runProperties687.Append(fontSizeComplexScript899);
            Text text613 = new Text();
            text613.Text = "BJCxxxxxxxx";

            run645.Append(runProperties687);
            run645.Append(text613);

            paragraph312.Append(paragraphProperties309);
            paragraph312.Append(run643);
            paragraph312.Append(run644);
            paragraph312.Append(run645);

            Paragraph paragraph313 = new Paragraph() { RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "00BC048A", RsidRunAdditionDefault = "00BC048A", ParagraphId = "2DE10DE1", TextId = "77777777" };

            ParagraphProperties paragraphProperties310 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties310 = new ParagraphMarkRunProperties();
            RunFonts runFonts898 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize906 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript900 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties310.Append(runFonts898);
            paragraphMarkRunProperties310.Append(fontSize906);
            paragraphMarkRunProperties310.Append(fontSizeComplexScript900);

            paragraphProperties310.Append(paragraphMarkRunProperties310);

            Run run646 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties688 = new RunProperties();
            RunFonts runFonts899 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize907 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript901 = new FontSizeComplexScript() { Val = "22" };

            runProperties688.Append(runFonts899);
            runProperties688.Append(fontSize907);
            runProperties688.Append(fontSizeComplexScript901);
            TabChar tabChar39 = new TabChar();

            run646.Append(runProperties688);
            run646.Append(tabChar39);

            Run run647 = new Run();

            RunProperties runProperties689 = new RunProperties();
            RunFonts runFonts900 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize908 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript902 = new FontSizeComplexScript() { Val = "22" };

            runProperties689.Append(runFonts900);
            runProperties689.Append(fontSize908);
            runProperties689.Append(fontSizeComplexScript902);
            Text text614 = new Text();
            text614.Text = "Citrix Users group: BJC-NT\\CTXI-";

            run647.Append(runProperties689);
            run647.Append(text614);

            Run run648 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties690 = new RunProperties();
            RunFonts runFonts901 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color345 = new Color() { Val = "FF0000" };
            FontSize fontSize909 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript903 = new FontSizeComplexScript() { Val = "22" };

            runProperties690.Append(runFonts901);
            runProperties690.Append(color345);
            runProperties690.Append(fontSize909);
            runProperties690.Append(fontSizeComplexScript903);
            Text text615 = new Text();
            text615.Text = "xxxx";

            run648.Append(runProperties690);
            run648.Append(text615);

            paragraph313.Append(paragraphProperties310);
            paragraph313.Append(run646);
            paragraph313.Append(run647);
            paragraph313.Append(run648);

            Paragraph paragraph314 = new Paragraph() { RsidParagraphAddition = "00BC048A", RsidParagraphProperties = "00BC048A", RsidRunAdditionDefault = "00BC048A", ParagraphId = "2DDE39F2", TextId = "587AD59F" };

            ParagraphProperties paragraphProperties311 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties311 = new ParagraphMarkRunProperties();
            RunFonts runFonts902 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color346 = new Color() { Val = "FF0000" };
            FontSize fontSize910 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript904 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties311.Append(runFonts902);
            paragraphMarkRunProperties311.Append(color346);
            paragraphMarkRunProperties311.Append(fontSize910);
            paragraphMarkRunProperties311.Append(fontSizeComplexScript904);

            paragraphProperties311.Append(paragraphMarkRunProperties311);

            Run run649 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties691 = new RunProperties();
            RunFonts runFonts903 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize911 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript905 = new FontSizeComplexScript() { Val = "22" };

            runProperties691.Append(runFonts903);
            runProperties691.Append(fontSize911);
            runProperties691.Append(fontSizeComplexScript905);
            TabChar tabChar40 = new TabChar();

            run649.Append(runProperties691);
            run649.Append(tabChar40);

            Run run650 = new Run();

            RunProperties runProperties692 = new RunProperties();
            RunFonts runFonts904 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize912 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript906 = new FontSizeComplexScript() { Val = "22" };

            runProperties692.Append(runFonts904);
            runProperties692.Append(fontSize912);
            runProperties692.Append(fontSizeComplexScript906);
            Text text616 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text616.Text = "Publish to desktop or ACCESSBJC only: ";

            run650.Append(runProperties692);
            run650.Append(text616);

            Run run651 = new Run();

            RunProperties runProperties693 = new RunProperties();
            RunFonts runFonts905 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color347 = new Color() { Val = "FF0000" };
            FontSize fontSize913 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript907 = new FontSizeComplexScript() { Val = "22" };

            runProperties693.Append(runFonts905);
            runProperties693.Append(color347);
            runProperties693.Append(fontSize913);
            runProperties693.Append(fontSizeComplexScript907);
            Text text617 = new Text();
            text617.Text = "ACCESSBJC only";

            run651.Append(runProperties693);
            run651.Append(text617);

            paragraph314.Append(paragraphProperties311);
            paragraph314.Append(run649);
            paragraph314.Append(run650);
            paragraph314.Append(run651);

            Paragraph paragraph315 = new Paragraph() { RsidParagraphAddition = "00116831", RsidParagraphProperties = "00BC048A", RsidRunAdditionDefault = "00116831", ParagraphId = "0AAC1AB8", TextId = "148823FA" };

            ParagraphProperties paragraphProperties312 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties312 = new ParagraphMarkRunProperties();
            RunFonts runFonts906 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize914 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript908 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties312.Append(runFonts906);
            paragraphMarkRunProperties312.Append(fontSize914);
            paragraphMarkRunProperties312.Append(fontSizeComplexScript908);

            paragraphProperties312.Append(paragraphMarkRunProperties312);

            Run run652 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties694 = new RunProperties();
            RunFonts runFonts907 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize915 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript909 = new FontSizeComplexScript() { Val = "22" };

            runProperties694.Append(runFonts907);
            runProperties694.Append(fontSize915);
            runProperties694.Append(fontSizeComplexScript909);
            Text text618 = new Text();
            text618.Text = "Location of Install guide: (or insert here)";

            run652.Append(runProperties694);
            run652.Append(text618);

            paragraph315.Append(paragraphProperties312);
            paragraph315.Append(run652);

            Paragraph paragraph316 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "2C3E6CA6", TextId = "4AD05601" };

            ParagraphProperties paragraphProperties313 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId21 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties313 = new ParagraphMarkRunProperties();
            Underline underline86 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties313.Append(underline86);

            paragraphProperties313.Append(paragraphStyleId21);
            paragraphProperties313.Append(paragraphMarkRunProperties313);

            Run run653 = new Run();

            RunProperties runProperties695 = new RunProperties();
            Underline underline87 = new Underline() { Val = UnderlineValues.Single };

            runProperties695.Append(underline87);
            Text text619 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text619.Text = "17. ";

            run653.Append(runProperties695);
            run653.Append(text619);

            Run run654 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties696 = new RunProperties();
            Underline underline88 = new Underline() { Val = UnderlineValues.Single };

            runProperties696.Append(underline88);
            Text text620 = new Text();
            text620.Text = "Dependent Configuration Items";

            run654.Append(runProperties696);
            run654.Append(text620);

            Run run655 = new Run() { RsidRunProperties = "0057090B" };

            RunProperties runProperties697 = new RunProperties();
            Color color348 = new Color() { Val = "FF0000" };
            Underline underline89 = new Underline() { Val = UnderlineValues.Single };

            runProperties697.Append(color348);
            runProperties697.Append(underline89);
            Text text621 = new Text();
            text621.Text = ": N/A";

            run655.Append(runProperties697);
            run655.Append(text621);

            paragraph316.Append(paragraphProperties313);
            paragraph316.Append(run653);
            paragraph316.Append(run654);
            paragraph316.Append(run655);

            Paragraph paragraph317 = new Paragraph() { RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "71DAE5A8", TextId = "77777777" };

            ParagraphProperties paragraphProperties314 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties314 = new ParagraphMarkRunProperties();
            RunFonts runFonts908 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color349 = new Color() { Val = "FF0000" };
            FontSize fontSize916 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript910 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties314.Append(runFonts908);
            paragraphMarkRunProperties314.Append(color349);
            paragraphMarkRunProperties314.Append(fontSize916);
            paragraphMarkRunProperties314.Append(fontSizeComplexScript910);

            paragraphProperties314.Append(paragraphMarkRunProperties314);

            Run run656 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties698 = new RunProperties();
            RunFonts runFonts909 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color350 = new Color() { Val = "FF0000" };
            FontSize fontSize917 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript911 = new FontSizeComplexScript() { Val = "22" };

            runProperties698.Append(runFonts909);
            runProperties698.Append(color350);
            runProperties698.Append(fontSize917);
            runProperties698.Append(fontSizeComplexScript911);
            Text text622 = new Text();
            text622.Text = "Any existing system that has a configuration needed to support this project.";

            run656.Append(runProperties698);
            run656.Append(text622);

            Run run657 = new Run();

            RunProperties runProperties699 = new RunProperties();
            RunFonts runFonts910 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color351 = new Color() { Val = "FF0000" };
            FontSize fontSize918 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript912 = new FontSizeComplexScript() { Val = "22" };

            runProperties699.Append(runFonts910);
            runProperties699.Append(color351);
            runProperties699.Append(fontSize918);
            runProperties699.Append(fontSizeComplexScript912);
            Text text623 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text623.Text = " (ex: ";

            run657.Append(runProperties699);
            run657.Append(text623);

            Run run658 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties700 = new RunProperties();
            RunFonts runFonts911 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color352 = new Color() { Val = "FF0000" };
            FontSize fontSize919 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript913 = new FontSizeComplexScript() { Val = "22" };

            runProperties700.Append(runFonts911);
            runProperties700.Append(color352);
            runProperties700.Append(fontSize919);
            runProperties700.Append(fontSizeComplexScript913);
            Text text624 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text624.Text = "Peripheral devices connect to same IP so server ";

            run658.Append(runProperties700);
            run658.Append(text624);

            Run run659 = new Run();

            RunProperties runProperties701 = new RunProperties();
            RunFonts runFonts912 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color353 = new Color() { Val = "FF0000" };
            FontSize fontSize920 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript914 = new FontSizeComplexScript() { Val = "22" };

            runProperties701.Append(runFonts912);
            runProperties701.Append(color353);
            runProperties701.Append(fontSize920);
            runProperties701.Append(fontSizeComplexScript914);
            Text text625 = new Text();
            text625.Text = "must have same IP as old server)";

            run659.Append(runProperties701);
            run659.Append(text625);

            paragraph317.Append(paragraphProperties314);
            paragraph317.Append(run656);
            paragraph317.Append(run657);
            paragraph317.Append(run658);
            paragraph317.Append(run659);

            Paragraph paragraph318 = new Paragraph() { RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "75A95790", TextId = "77777777" };

            ParagraphProperties paragraphProperties315 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties315 = new ParagraphMarkRunProperties();
            RunFonts runFonts913 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize921 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript915 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties315.Append(runFonts913);
            paragraphMarkRunProperties315.Append(fontSize921);
            paragraphMarkRunProperties315.Append(fontSizeComplexScript915);

            paragraphProperties315.Append(paragraphMarkRunProperties315);

            Run run660 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties702 = new RunProperties();
            RunFonts runFonts914 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize922 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript916 = new FontSizeComplexScript() { Val = "22" };

            runProperties702.Append(runFonts914);
            runProperties702.Append(fontSize922);
            runProperties702.Append(fontSizeComplexScript916);
            Text text626 = new Text();
            text626.Text = "DNS:";

            run660.Append(runProperties702);
            run660.Append(text626);

            paragraph318.Append(paragraphProperties315);
            paragraph318.Append(run660);

            Paragraph paragraph319 = new Paragraph() { RsidParagraphMarkRevision = "001A269D", RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "7C9120FA", TextId = "77777777" };

            ParagraphProperties paragraphProperties316 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties316 = new ParagraphMarkRunProperties();
            RunFonts runFonts915 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color354 = new Color() { Val = "FF0000" };
            FontSize fontSize923 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript917 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties316.Append(runFonts915);
            paragraphMarkRunProperties316.Append(color354);
            paragraphMarkRunProperties316.Append(fontSize923);
            paragraphMarkRunProperties316.Append(fontSizeComplexScript917);

            paragraphProperties316.Append(paragraphMarkRunProperties316);

            Run run661 = new Run();

            RunProperties runProperties703 = new RunProperties();
            RunFonts runFonts916 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize924 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript918 = new FontSizeComplexScript() { Val = "22" };

            runProperties703.Append(runFonts916);
            runProperties703.Append(fontSize924);
            runProperties703.Append(fontSizeComplexScript918);
            Text text627 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text627.Text = "Remote Access for Vendor: ";

            run661.Append(runProperties703);
            run661.Append(text627);

            Run run662 = new Run();

            RunProperties runProperties704 = new RunProperties();
            RunFonts runFonts917 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color355 = new Color() { Val = "FF0000" };
            FontSize fontSize925 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript919 = new FontSizeComplexScript() { Val = "22" };

            runProperties704.Append(runFonts917);
            runProperties704.Append(color355);
            runProperties704.Append(fontSize925);
            runProperties704.Append(fontSizeComplexScript919);
            Text text628 = new Text();
            text628.Text = "Vendor VPN will require additional Service Catalog request";

            run662.Append(runProperties704);
            run662.Append(text628);

            paragraph319.Append(paragraphProperties316);
            paragraph319.Append(run661);
            paragraph319.Append(run662);

            Paragraph paragraph320 = new Paragraph() { RsidParagraphMarkRevision = "009032DC", RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "66AB05C9", TextId = "77777777" };

            ParagraphProperties paragraphProperties317 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties317 = new ParagraphMarkRunProperties();
            RunFonts runFonts918 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize926 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript920 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties317.Append(runFonts918);
            paragraphMarkRunProperties317.Append(fontSize926);
            paragraphMarkRunProperties317.Append(fontSizeComplexScript920);

            paragraphProperties317.Append(paragraphMarkRunProperties317);

            Run run663 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties705 = new RunProperties();
            RunFonts runFonts919 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize927 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript921 = new FontSizeComplexScript() { Val = "22" };

            runProperties705.Append(runFonts919);
            runProperties705.Append(fontSize927);
            runProperties705.Append(fontSizeComplexScript921);
            Text text629 = new Text();
            text629.Text = "NetScaler:";

            run663.Append(runProperties705);
            run663.Append(text629);

            Run run664 = new Run();

            RunProperties runProperties706 = new RunProperties();
            RunFonts runFonts920 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize928 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript922 = new FontSizeComplexScript() { Val = "22" };

            runProperties706.Append(runFonts920);
            runProperties706.Append(fontSize928);
            runProperties706.Append(fontSizeComplexScript922);
            Text text630 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text630.Text = " ";

            run664.Append(runProperties706);
            run664.Append(text630);

            Run run665 = new Run();

            RunProperties runProperties707 = new RunProperties();
            RunFonts runFonts921 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color356 = new Color() { Val = "FF0000" };
            FontSize fontSize929 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript923 = new FontSizeComplexScript() { Val = "22" };

            runProperties707.Append(runFonts921);
            runProperties707.Append(color356);
            runProperties707.Append(fontSize929);
            runProperties707.Append(fontSizeComplexScript923);
            Text text631 = new Text();
            text631.Text = "Service Catalog request to Strategy";

            run665.Append(runProperties707);
            run665.Append(text631);

            paragraph320.Append(paragraphProperties317);
            paragraph320.Append(run663);
            paragraph320.Append(run664);
            paragraph320.Append(run665);

            Paragraph paragraph321 = new Paragraph() { RsidParagraphMarkRevision = "00BC048A", RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "4A09F0AC", TextId = "77777777" };

            ParagraphProperties paragraphProperties318 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties318 = new ParagraphMarkRunProperties();
            RunFonts runFonts922 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize930 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript924 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties318.Append(runFonts922);
            paragraphMarkRunProperties318.Append(fontSize930);
            paragraphMarkRunProperties318.Append(fontSizeComplexScript924);

            paragraphProperties318.Append(paragraphMarkRunProperties318);

            Run run666 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties708 = new RunProperties();
            RunFonts runFonts923 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize931 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript925 = new FontSizeComplexScript() { Val = "22" };

            runProperties708.Append(runFonts923);
            runProperties708.Append(fontSize931);
            runProperties708.Append(fontSizeComplexScript925);
            Text text632 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text632.Text = "Telephony: ";

            run666.Append(runProperties708);
            run666.Append(text632);

            Run run667 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties709 = new RunProperties();
            RunFonts runFonts924 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color357 = new Color() { Val = "FF0000" };
            FontSize fontSize932 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript926 = new FontSizeComplexScript() { Val = "22" };

            runProperties709.Append(runFonts924);
            runProperties709.Append(color357);
            runProperties709.Append(fontSize932);
            runProperties709.Append(fontSizeComplexScript926);
            Text text633 = new Text();
            text633.Text = "T1 configuration will need to be handled by";

            run667.Append(runProperties709);
            run667.Append(text633);

            Run run668 = new Run();

            RunProperties runProperties710 = new RunProperties();
            RunFonts runFonts925 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color358 = new Color() { Val = "FF0000" };
            FontSize fontSize933 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript927 = new FontSizeComplexScript() { Val = "22" };

            runProperties710.Append(runFonts925);
            runProperties710.Append(color358);
            runProperties710.Append(fontSize933);
            runProperties710.Append(fontSizeComplexScript927);
            Text text634 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text634.Text = " Service Catalog request to";

            run668.Append(runProperties710);
            run668.Append(text634);

            Run run669 = new Run() { RsidRunProperties = "00BC048A" };

            RunProperties runProperties711 = new RunProperties();
            RunFonts runFonts926 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color359 = new Color() { Val = "FF0000" };
            FontSize fontSize934 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript928 = new FontSizeComplexScript() { Val = "22" };

            runProperties711.Append(runFonts926);
            runProperties711.Append(color359);
            runProperties711.Append(fontSize934);
            runProperties711.Append(fontSizeComplexScript928);
            Text text635 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text635.Text = " ";

            run669.Append(runProperties711);
            run669.Append(text635);

            Run run670 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties712 = new RunProperties();
            RunFonts runFonts927 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color360 = new Color() { Val = "FF0000" };
            FontSize fontSize935 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript929 = new FontSizeComplexScript() { Val = "22" };

            runProperties712.Append(runFonts927);
            runProperties712.Append(color360);
            runProperties712.Append(fontSize935);
            runProperties712.Append(fontSizeComplexScript929);
            Text text636 = new Text();
            text636.Text = "Move Existing Phone, Fax, or Modem";

            run670.Append(runProperties712);
            run670.Append(text636);

            paragraph321.Append(paragraphProperties318);
            paragraph321.Append(run666);
            paragraph321.Append(run667);
            paragraph321.Append(run668);
            paragraph321.Append(run669);
            paragraph321.Append(run670);

            Paragraph paragraph322 = new Paragraph() { RsidParagraphAddition = "002B0580", RsidParagraphProperties = "002B0580", RsidRunAdditionDefault = "002B0580", ParagraphId = "7A62CB9A", TextId = "77777777" };

            ParagraphProperties paragraphProperties319 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties319 = new ParagraphMarkRunProperties();
            RunFonts runFonts928 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize936 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript930 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties319.Append(runFonts928);
            paragraphMarkRunProperties319.Append(fontSize936);
            paragraphMarkRunProperties319.Append(fontSizeComplexScript930);

            paragraphProperties319.Append(paragraphMarkRunProperties319);

            Run run671 = new Run() { RsidRunProperties = "009032DC" };

            RunProperties runProperties713 = new RunProperties();
            RunFonts runFonts929 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize937 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript931 = new FontSizeComplexScript() { Val = "22" };

            runProperties713.Append(runFonts929);
            runProperties713.Append(fontSize937);
            runProperties713.Append(fontSizeComplexScript931);
            LastRenderedPageBreak lastRenderedPageBreak7 = new LastRenderedPageBreak();
            Text text637 = new Text();
            text637.Text = "Other:";

            run671.Append(runProperties713);
            run671.Append(lastRenderedPageBreak7);
            run671.Append(text637);

            paragraph322.Append(paragraphProperties319);
            paragraph322.Append(run671);

            Paragraph paragraph323 = new Paragraph() { RsidParagraphMarkRevision = "00F12AD5", RsidParagraphAddition = "00F12AD5", RsidParagraphProperties = "00F12AD5", RsidRunAdditionDefault = "00F12AD5", ParagraphId = "737F4846", TextId = "5D813F4B" };

            ParagraphProperties paragraphProperties320 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId22 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties320 = new ParagraphMarkRunProperties();
            Underline underline90 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties320.Append(underline90);

            paragraphProperties320.Append(paragraphStyleId22);
            paragraphProperties320.Append(paragraphMarkRunProperties320);

            Run run672 = new Run();

            RunProperties runProperties714 = new RunProperties();
            Underline underline91 = new Underline() { Val = UnderlineValues.Single };

            runProperties714.Append(underline91);
            Text text638 = new Text();
            text638.Text = "Work Logbook:";

            run672.Append(runProperties714);
            run672.Append(text638);

            paragraph323.Append(paragraphProperties320);
            paragraph323.Append(run672);
            BookmarkEnd bookmarkEnd3 = new BookmarkEnd() { Id = "2" };

            Paragraph paragraph324 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "002B0580", ParagraphId = "4DCBEAD1", TextId = "7AC5E5DC" };

            ParagraphProperties paragraphProperties321 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId23 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties321 = new ParagraphMarkRunProperties();
            RunFonts runFonts930 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize938 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript932 = new FontSizeComplexScript() { Val = "22" };
            Underline underline92 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties321.Append(runFonts930);
            paragraphMarkRunProperties321.Append(fontSize938);
            paragraphMarkRunProperties321.Append(fontSizeComplexScript932);
            paragraphMarkRunProperties321.Append(underline92);

            paragraphProperties321.Append(paragraphStyleId23);
            paragraphProperties321.Append(paragraphMarkRunProperties321);

            Run run673 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties715 = new RunProperties();
            RunFonts runFonts931 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize939 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript933 = new FontSizeComplexScript() { Val = "22" };
            Underline underline93 = new Underline() { Val = UnderlineValues.Single };

            runProperties715.Append(runFonts931);
            runProperties715.Append(fontSize939);
            runProperties715.Append(fontSizeComplexScript933);
            runProperties715.Append(underline93);
            Text text639 = new Text();
            text639.Text = "PROJECT REVISION HISTORY";

            run673.Append(runProperties715);
            run673.Append(text639);

            paragraph324.Append(paragraphProperties321);
            paragraph324.Append(run673);

            Table table8 = new Table();

            TableProperties tableProperties8 = new TableProperties();
            TableWidth tableWidth8 = new TableWidth() { Width = "12330", Type = TableWidthUnitValues.Dxa };
            TableIndentation tableIndentation3 = new TableIndentation() { Width = 108, Type = TableWidthUnitValues.Dxa };
            TableLook tableLook8 = new TableLook() { Val = "01E0" };

            tableProperties8.Append(tableWidth8);
            tableProperties8.Append(tableIndentation3);
            tableProperties8.Append(tableLook8);

            TableGrid tableGrid8 = new TableGrid();
            GridColumn gridColumn39 = new GridColumn() { Width = "1676" };
            GridColumn gridColumn40 = new GridColumn() { Width = "8044" };
            GridColumn gridColumn41 = new GridColumn() { Width = "2610" };

            tableGrid8.Append(gridColumn39);
            tableGrid8.Append(gridColumn40);
            tableGrid8.Append(gridColumn41);

            TableRow tableRow39 = new TableRow() { RsidTableRowMarkRevision = "002B0580", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "1CD30953", TextId = "77777777" };

            TableRowProperties tableRowProperties23 = new TableRowProperties();
            CantSplit cantSplit1 = new CantSplit();
            TableRowHeight tableRowHeight23 = new TableRowHeight() { Val = (UInt32Value)20U };
            TableHeader tableHeader1 = new TableHeader();

            tableRowProperties23.Append(cantSplit1);
            tableRowProperties23.Append(tableRowHeight23);
            tableRowProperties23.Append(tableHeader1);

            TableCell tableCell170 = new TableCell();

            TableCellProperties tableCellProperties170 = new TableCellProperties();
            TableCellWidth tableCellWidth170 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders49 = new TableCellBorders();
            BottomBorder bottomBorder53 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders49.Append(bottomBorder53);
            Shading shading49 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "000080" };

            tableCellProperties170.Append(tableCellWidth170);
            tableCellProperties170.Append(tableCellBorders49);
            tableCellProperties170.Append(shading49);

            Paragraph paragraph325 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "22FC3A7C", TextId = "77777777" };

            ParagraphProperties paragraphProperties322 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties322 = new ParagraphMarkRunProperties();
            RunFonts runFonts932 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize940 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript934 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties322.Append(runFonts932);
            paragraphMarkRunProperties322.Append(fontSize940);
            paragraphMarkRunProperties322.Append(fontSizeComplexScript934);

            paragraphProperties322.Append(paragraphMarkRunProperties322);

            Run run674 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties716 = new RunProperties();
            RunFonts runFonts933 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize941 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript935 = new FontSizeComplexScript() { Val = "22" };

            runProperties716.Append(runFonts933);
            runProperties716.Append(fontSize941);
            runProperties716.Append(fontSizeComplexScript935);
            Text text640 = new Text();
            text640.Text = "Date";

            run674.Append(runProperties716);
            run674.Append(text640);

            paragraph325.Append(paragraphProperties322);
            paragraph325.Append(run674);

            tableCell170.Append(tableCellProperties170);
            tableCell170.Append(paragraph325);

            TableCell tableCell171 = new TableCell();

            TableCellProperties tableCellProperties171 = new TableCellProperties();
            TableCellWidth tableCellWidth171 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders50 = new TableCellBorders();
            BottomBorder bottomBorder54 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders50.Append(bottomBorder54);
            Shading shading50 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "000080" };

            tableCellProperties171.Append(tableCellWidth171);
            tableCellProperties171.Append(tableCellBorders50);
            tableCellProperties171.Append(shading50);

            Paragraph paragraph326 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "415C7BF1", TextId = "77777777" };

            ParagraphProperties paragraphProperties323 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties323 = new ParagraphMarkRunProperties();
            RunFonts runFonts934 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize942 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript936 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties323.Append(runFonts934);
            paragraphMarkRunProperties323.Append(fontSize942);
            paragraphMarkRunProperties323.Append(fontSizeComplexScript936);

            paragraphProperties323.Append(paragraphMarkRunProperties323);

            Run run675 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties717 = new RunProperties();
            RunFonts runFonts935 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize943 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript937 = new FontSizeComplexScript() { Val = "22" };

            runProperties717.Append(runFonts935);
            runProperties717.Append(fontSize943);
            runProperties717.Append(fontSizeComplexScript937);
            Text text641 = new Text();
            text641.Text = "Description of Change";

            run675.Append(runProperties717);
            run675.Append(text641);

            paragraph326.Append(paragraphProperties323);
            paragraph326.Append(run675);

            tableCell171.Append(tableCellProperties171);
            tableCell171.Append(paragraph326);

            TableCell tableCell172 = new TableCell();

            TableCellProperties tableCellProperties172 = new TableCellProperties();
            TableCellWidth tableCellWidth172 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders51 = new TableCellBorders();
            BottomBorder bottomBorder55 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders51.Append(bottomBorder55);
            Shading shading51 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "000080" };

            tableCellProperties172.Append(tableCellWidth172);
            tableCellProperties172.Append(tableCellBorders51);
            tableCellProperties172.Append(shading51);

            Paragraph paragraph327 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "140B9EAD", TextId = "77777777" };

            ParagraphProperties paragraphProperties324 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties324 = new ParagraphMarkRunProperties();
            RunFonts runFonts936 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize944 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript938 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties324.Append(runFonts936);
            paragraphMarkRunProperties324.Append(fontSize944);
            paragraphMarkRunProperties324.Append(fontSizeComplexScript938);

            paragraphProperties324.Append(paragraphMarkRunProperties324);

            Run run676 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties718 = new RunProperties();
            RunFonts runFonts937 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize945 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript939 = new FontSizeComplexScript() { Val = "22" };

            runProperties718.Append(runFonts937);
            runProperties718.Append(fontSize945);
            runProperties718.Append(fontSizeComplexScript939);
            Text text642 = new Text();
            text642.Text = "Author & Information";

            run676.Append(runProperties718);
            run676.Append(text642);

            paragraph327.Append(paragraphProperties324);
            paragraph327.Append(run676);

            tableCell172.Append(tableCellProperties172);
            tableCell172.Append(paragraph327);

            tableRow39.Append(tableRowProperties23);
            tableRow39.Append(tableCell170);
            tableRow39.Append(tableCell171);
            tableRow39.Append(tableCell172);

            TableRow tableRow40 = new TableRow() { RsidTableRowMarkRevision = "002B0580", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "55298438", TextId = "77777777" };

            TableRowProperties tableRowProperties24 = new TableRowProperties();
            TableRowHeight tableRowHeight24 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties24.Append(tableRowHeight24);

            TableCell tableCell173 = new TableCell();

            TableCellProperties tableCellProperties173 = new TableCellProperties();
            TableCellWidth tableCellWidth173 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders52 = new TableCellBorders();
            TopBorder topBorder54 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder53 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder56 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder53 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders52.Append(topBorder54);
            tableCellBorders52.Append(leftBorder53);
            tableCellBorders52.Append(bottomBorder56);
            tableCellBorders52.Append(rightBorder53);

            tableCellProperties173.Append(tableCellWidth173);
            tableCellProperties173.Append(tableCellBorders52);

            Paragraph paragraph328 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "00FF18D7", RsidRunAdditionDefault = "002B0580", ParagraphId = "67196AA6", TextId = "021B2172" };

            ParagraphProperties paragraphProperties325 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties325 = new ParagraphMarkRunProperties();
            RunFonts runFonts938 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color361 = new Color() { Val = "FF0000" };
            FontSize fontSize946 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript940 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties325.Append(runFonts938);
            paragraphMarkRunProperties325.Append(color361);
            paragraphMarkRunProperties325.Append(fontSize946);
            paragraphMarkRunProperties325.Append(fontSizeComplexScript940);

            paragraphProperties325.Append(paragraphMarkRunProperties325);

            Run run677 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties719 = new RunProperties();
            RunFonts runFonts939 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color362 = new Color() { Val = "FF0000" };
            FontSize fontSize947 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript941 = new FontSizeComplexScript() { Val = "22" };

            runProperties719.Append(runFonts939);
            runProperties719.Append(color362);
            runProperties719.Append(fontSize947);
            runProperties719.Append(fontSizeComplexScript941);
            Text text643 = new Text();
            text643.Text = "xx";

            run677.Append(runProperties719);
            run677.Append(text643);

            Run run678 = new Run() { RsidRunProperties = "002B0580", RsidRunAddition = "005763A4" };

            RunProperties runProperties720 = new RunProperties();
            RunFonts runFonts940 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color363 = new Color() { Val = "FF0000" };
            FontSize fontSize948 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript942 = new FontSizeComplexScript() { Val = "22" };

            runProperties720.Append(runFonts940);
            runProperties720.Append(color363);
            runProperties720.Append(fontSize948);
            runProperties720.Append(fontSizeComplexScript942);
            Text text644 = new Text();
            text644.Text = "/";

            run678.Append(runProperties720);
            run678.Append(text644);

            Run run679 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties721 = new RunProperties();
            RunFonts runFonts941 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color364 = new Color() { Val = "FF0000" };
            FontSize fontSize949 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript943 = new FontSizeComplexScript() { Val = "22" };

            runProperties721.Append(runFonts941);
            runProperties721.Append(color364);
            runProperties721.Append(fontSize949);
            runProperties721.Append(fontSizeComplexScript943);
            Text text645 = new Text();
            text645.Text = "xx";

            run679.Append(runProperties721);
            run679.Append(text645);

            Run run680 = new Run() { RsidRunProperties = "002B0580", RsidRunAddition = "005763A4" };

            RunProperties runProperties722 = new RunProperties();
            RunFonts runFonts942 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color365 = new Color() { Val = "FF0000" };
            FontSize fontSize950 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript944 = new FontSizeComplexScript() { Val = "22" };

            runProperties722.Append(runFonts942);
            runProperties722.Append(color365);
            runProperties722.Append(fontSize950);
            runProperties722.Append(fontSizeComplexScript944);
            Text text646 = new Text();
            text646.Text = "/201";

            run680.Append(runProperties722);
            run680.Append(text646);

            Run run681 = new Run() { RsidRunAddition = "00FF18D7" };

            RunProperties runProperties723 = new RunProperties();
            RunFonts runFonts943 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color366 = new Color() { Val = "FF0000" };
            FontSize fontSize951 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript945 = new FontSizeComplexScript() { Val = "22" };

            runProperties723.Append(runFonts943);
            runProperties723.Append(color366);
            runProperties723.Append(fontSize951);
            runProperties723.Append(fontSizeComplexScript945);
            Text text647 = new Text();
            text647.Text = "5";

            run681.Append(runProperties723);
            run681.Append(text647);

            paragraph328.Append(paragraphProperties325);
            paragraph328.Append(run677);
            paragraph328.Append(run678);
            paragraph328.Append(run679);
            paragraph328.Append(run680);
            paragraph328.Append(run681);

            tableCell173.Append(tableCellProperties173);
            tableCell173.Append(paragraph328);

            TableCell tableCell174 = new TableCell();

            TableCellProperties tableCellProperties174 = new TableCellProperties();
            TableCellWidth tableCellWidth174 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders53 = new TableCellBorders();
            TopBorder topBorder55 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder54 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder57 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder54 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders53.Append(topBorder55);
            tableCellBorders53.Append(leftBorder54);
            tableCellBorders53.Append(bottomBorder57);
            tableCellBorders53.Append(rightBorder54);

            tableCellProperties174.Append(tableCellWidth174);
            tableCellProperties174.Append(tableCellBorders53);

            Paragraph paragraph329 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "551D56AB", TextId = "77777777" };

            ParagraphProperties paragraphProperties326 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties326 = new ParagraphMarkRunProperties();
            RunFonts runFonts944 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize952 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript946 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties326.Append(runFonts944);
            paragraphMarkRunProperties326.Append(fontSize952);
            paragraphMarkRunProperties326.Append(fontSizeComplexScript946);

            paragraphProperties326.Append(paragraphMarkRunProperties326);

            Run run682 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties724 = new RunProperties();
            RunFonts runFonts945 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize953 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript947 = new FontSizeComplexScript() { Val = "22" };

            runProperties724.Append(runFonts945);
            runProperties724.Append(fontSize953);
            runProperties724.Append(fontSizeComplexScript947);
            Text text648 = new Text();
            text648.Text = "Initial Release";

            run682.Append(runProperties724);
            run682.Append(text648);

            paragraph329.Append(paragraphProperties326);
            paragraph329.Append(run682);

            tableCell174.Append(tableCellProperties174);
            tableCell174.Append(paragraph329);

            TableCell tableCell175 = new TableCell();

            TableCellProperties tableCellProperties175 = new TableCellProperties();
            TableCellWidth tableCellWidth175 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders54 = new TableCellBorders();
            TopBorder topBorder56 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder55 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder58 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder55 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders54.Append(topBorder56);
            tableCellBorders54.Append(leftBorder55);
            tableCellBorders54.Append(bottomBorder58);
            tableCellBorders54.Append(rightBorder55);

            tableCellProperties175.Append(tableCellWidth175);
            tableCellProperties175.Append(tableCellBorders54);

            Paragraph paragraph330 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "002B0580", ParagraphId = "6192BB55", TextId = "7469E388" };

            ParagraphProperties paragraphProperties327 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties327 = new ParagraphMarkRunProperties();
            RunFonts runFonts946 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color367 = new Color() { Val = "FF0000" };
            FontSize fontSize954 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript948 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties327.Append(runFonts946);
            paragraphMarkRunProperties327.Append(color367);
            paragraphMarkRunProperties327.Append(fontSize954);
            paragraphMarkRunProperties327.Append(fontSizeComplexScript948);

            paragraphProperties327.Append(paragraphMarkRunProperties327);

            Run run683 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties725 = new RunProperties();
            RunFonts runFonts947 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color368 = new Color() { Val = "FF0000" };
            FontSize fontSize955 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript949 = new FontSizeComplexScript() { Val = "22" };

            runProperties725.Append(runFonts947);
            runProperties725.Append(color368);
            runProperties725.Append(fontSize955);
            runProperties725.Append(fontSizeComplexScript949);
            Text text649 = new Text();
            text649.Text = "JohnQPublic";

            run683.Append(runProperties725);
            run683.Append(text649);

            paragraph330.Append(paragraphProperties327);
            paragraph330.Append(run683);

            tableCell175.Append(tableCellProperties175);
            tableCell175.Append(paragraph330);

            tableRow40.Append(tableRowProperties24);
            tableRow40.Append(tableCell173);
            tableRow40.Append(tableCell174);
            tableRow40.Append(tableCell175);

            TableRow tableRow41 = new TableRow() { RsidTableRowMarkRevision = "002B0580", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "2A76AE8A", TextId = "77777777" };

            TableRowProperties tableRowProperties25 = new TableRowProperties();
            TableRowHeight tableRowHeight25 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties25.Append(tableRowHeight25);

            TableCell tableCell176 = new TableCell();

            TableCellProperties tableCellProperties176 = new TableCellProperties();
            TableCellWidth tableCellWidth176 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders55 = new TableCellBorders();
            TopBorder topBorder57 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder56 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder59 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder56 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders55.Append(topBorder57);
            tableCellBorders55.Append(leftBorder56);
            tableCellBorders55.Append(bottomBorder59);
            tableCellBorders55.Append(rightBorder56);

            tableCellProperties176.Append(tableCellWidth176);
            tableCellProperties176.Append(tableCellBorders55);

            Paragraph paragraph331 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "002B0580", ParagraphId = "34C2381A", TextId = "2DDC1332" };

            ParagraphProperties paragraphProperties328 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties328 = new ParagraphMarkRunProperties();
            RunFonts runFonts948 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color369 = new Color() { Val = "FF0000" };
            FontSize fontSize956 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript950 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties328.Append(runFonts948);
            paragraphMarkRunProperties328.Append(color369);
            paragraphMarkRunProperties328.Append(fontSize956);
            paragraphMarkRunProperties328.Append(fontSizeComplexScript950);

            paragraphProperties328.Append(paragraphMarkRunProperties328);

            Run run684 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties726 = new RunProperties();
            RunFonts runFonts949 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color370 = new Color() { Val = "FF0000" };
            FontSize fontSize957 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript951 = new FontSizeComplexScript() { Val = "22" };

            runProperties726.Append(runFonts949);
            runProperties726.Append(color370);
            runProperties726.Append(fontSize957);
            runProperties726.Append(fontSizeComplexScript951);
            Text text650 = new Text();
            text650.Text = "xx/xx/201";

            run684.Append(runProperties726);
            run684.Append(text650);

            Run run685 = new Run() { RsidRunAddition = "00FF18D7" };

            RunProperties runProperties727 = new RunProperties();
            RunFonts runFonts950 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color371 = new Color() { Val = "FF0000" };
            FontSize fontSize958 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript952 = new FontSizeComplexScript() { Val = "22" };

            runProperties727.Append(runFonts950);
            runProperties727.Append(color371);
            runProperties727.Append(fontSize958);
            runProperties727.Append(fontSizeComplexScript952);
            Text text651 = new Text();
            text651.Text = "5";

            run685.Append(runProperties727);
            run685.Append(text651);

            paragraph331.Append(paragraphProperties328);
            paragraph331.Append(run684);
            paragraph331.Append(run685);

            tableCell176.Append(tableCellProperties176);
            tableCell176.Append(paragraph331);

            TableCell tableCell177 = new TableCell();

            TableCellProperties tableCellProperties177 = new TableCellProperties();
            TableCellWidth tableCellWidth177 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders56 = new TableCellBorders();
            TopBorder topBorder58 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder57 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder60 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder57 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders56.Append(topBorder58);
            tableCellBorders56.Append(leftBorder57);
            tableCellBorders56.Append(bottomBorder60);
            tableCellBorders56.Append(rightBorder57);

            tableCellProperties177.Append(tableCellWidth177);
            tableCellProperties177.Append(tableCellBorders56);

            Paragraph paragraph332 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "002B0580", ParagraphId = "19EF1C88", TextId = "791F7222" };

            ParagraphProperties paragraphProperties329 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties329 = new ParagraphMarkRunProperties();
            RunFonts runFonts951 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize959 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript953 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties329.Append(runFonts951);
            paragraphMarkRunProperties329.Append(fontSize959);
            paragraphMarkRunProperties329.Append(fontSizeComplexScript953);

            paragraphProperties329.Append(paragraphMarkRunProperties329);

            Run run686 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties728 = new RunProperties();
            RunFonts runFonts952 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color372 = new Color() { Val = "FF0000" };
            FontSize fontSize960 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript954 = new FontSizeComplexScript() { Val = "22" };

            runProperties728.Append(runFonts952);
            runProperties728.Append(color372);
            runProperties728.Append(fontSize960);
            runProperties728.Append(fontSizeComplexScript954);
            Text text652 = new Text();
            text652.Text = "xxxx";

            run686.Append(runProperties728);
            run686.Append(text652);

            paragraph332.Append(paragraphProperties329);
            paragraph332.Append(run686);

            tableCell177.Append(tableCellProperties177);
            tableCell177.Append(paragraph332);

            TableCell tableCell178 = new TableCell();

            TableCellProperties tableCellProperties178 = new TableCellProperties();
            TableCellWidth tableCellWidth178 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders57 = new TableCellBorders();
            TopBorder topBorder59 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder58 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder61 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder58 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders57.Append(topBorder59);
            tableCellBorders57.Append(leftBorder58);
            tableCellBorders57.Append(bottomBorder61);
            tableCellBorders57.Append(rightBorder58);

            tableCellProperties178.Append(tableCellWidth178);
            tableCellProperties178.Append(tableCellBorders57);

            Paragraph paragraph333 = new Paragraph() { RsidParagraphMarkRevision = "002B0580", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "002B0580", ParagraphId = "05265424", TextId = "17958CE6" };

            ParagraphProperties paragraphProperties330 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties330 = new ParagraphMarkRunProperties();
            RunFonts runFonts953 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color373 = new Color() { Val = "FF0000" };
            FontSize fontSize961 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript955 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties330.Append(runFonts953);
            paragraphMarkRunProperties330.Append(color373);
            paragraphMarkRunProperties330.Append(fontSize961);
            paragraphMarkRunProperties330.Append(fontSizeComplexScript955);

            paragraphProperties330.Append(paragraphMarkRunProperties330);

            Run run687 = new Run() { RsidRunProperties = "002B0580" };

            RunProperties runProperties729 = new RunProperties();
            RunFonts runFonts954 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            Color color374 = new Color() { Val = "FF0000" };
            FontSize fontSize962 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript956 = new FontSizeComplexScript() { Val = "22" };

            runProperties729.Append(runFonts954);
            runProperties729.Append(color374);
            runProperties729.Append(fontSize962);
            runProperties729.Append(fontSizeComplexScript956);
            Text text653 = new Text();
            text653.Text = "JohnQPublic";

            run687.Append(runProperties729);
            run687.Append(text653);

            paragraph333.Append(paragraphProperties330);
            paragraph333.Append(run687);

            tableCell178.Append(tableCellProperties178);
            tableCell178.Append(paragraph333);

            tableRow41.Append(tableRowProperties25);
            tableRow41.Append(tableCell176);
            tableRow41.Append(tableCell177);
            tableRow41.Append(tableCell178);

            table8.Append(tableProperties8);
            table8.Append(tableGrid8);
            table8.Append(tableRow39);
            table8.Append(tableRow40);
            table8.Append(tableRow41);

            Paragraph paragraph334 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "0481B723", TextId = "77777777" };

            ParagraphProperties paragraphProperties331 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId24 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties331 = new ParagraphMarkRunProperties();
            FontSize fontSize963 = new FontSize() { Val = "20" };
            Underline underline94 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties331.Append(fontSize963);
            paragraphMarkRunProperties331.Append(underline94);

            paragraphProperties331.Append(paragraphStyleId24);
            paragraphProperties331.Append(paragraphMarkRunProperties331);

            Run run688 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties730 = new RunProperties();
            FontSize fontSize964 = new FontSize() { Val = "20" };
            Underline underline95 = new Underline() { Val = UnderlineValues.Single };

            runProperties730.Append(fontSize964);
            runProperties730.Append(underline95);
            Text text654 = new Text();
            text654.Text = "Template Revision History";

            run688.Append(runProperties730);
            run688.Append(text654);

            paragraph334.Append(paragraphProperties331);
            paragraph334.Append(run688);

            Table table9 = new Table();

            TableProperties tableProperties9 = new TableProperties();
            TableWidth tableWidth9 = new TableWidth() { Width = "12330", Type = TableWidthUnitValues.Dxa };
            TableIndentation tableIndentation4 = new TableIndentation() { Width = 108, Type = TableWidthUnitValues.Dxa };
            TableLook tableLook9 = new TableLook() { Val = "01E0" };

            tableProperties9.Append(tableWidth9);
            tableProperties9.Append(tableIndentation4);
            tableProperties9.Append(tableLook9);

            TableGrid tableGrid9 = new TableGrid();
            GridColumn gridColumn42 = new GridColumn() { Width = "1676" };
            GridColumn gridColumn43 = new GridColumn() { Width = "8044" };
            GridColumn gridColumn44 = new GridColumn() { Width = "2610" };

            tableGrid9.Append(gridColumn42);
            tableGrid9.Append(gridColumn43);
            tableGrid9.Append(gridColumn44);

            TableRow tableRow42 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "498628EA", TextId = "77777777" };

            TableRowProperties tableRowProperties26 = new TableRowProperties();
            CantSplit cantSplit2 = new CantSplit();
            TableRowHeight tableRowHeight26 = new TableRowHeight() { Val = (UInt32Value)20U };
            TableHeader tableHeader2 = new TableHeader();

            tableRowProperties26.Append(cantSplit2);
            tableRowProperties26.Append(tableRowHeight26);
            tableRowProperties26.Append(tableHeader2);

            TableCell tableCell179 = new TableCell();

            TableCellProperties tableCellProperties179 = new TableCellProperties();
            TableCellWidth tableCellWidth179 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders58 = new TableCellBorders();
            BottomBorder bottomBorder62 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders58.Append(bottomBorder62);
            Shading shading52 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "000080" };

            tableCellProperties179.Append(tableCellWidth179);
            tableCellProperties179.Append(tableCellBorders58);
            tableCellProperties179.Append(shading52);

            Paragraph paragraph335 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "7F5B7A39", TextId = "77777777" };

            ParagraphProperties paragraphProperties332 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties332 = new ParagraphMarkRunProperties();
            RunFonts runFonts955 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize965 = new FontSize() { Val = "18" };

            paragraphMarkRunProperties332.Append(runFonts955);
            paragraphMarkRunProperties332.Append(fontSize965);

            paragraphProperties332.Append(paragraphMarkRunProperties332);

            Run run689 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties731 = new RunProperties();
            RunFonts runFonts956 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize966 = new FontSize() { Val = "18" };

            runProperties731.Append(runFonts956);
            runProperties731.Append(fontSize966);
            Text text655 = new Text();
            text655.Text = "Date";

            run689.Append(runProperties731);
            run689.Append(text655);

            paragraph335.Append(paragraphProperties332);
            paragraph335.Append(run689);

            tableCell179.Append(tableCellProperties179);
            tableCell179.Append(paragraph335);

            TableCell tableCell180 = new TableCell();

            TableCellProperties tableCellProperties180 = new TableCellProperties();
            TableCellWidth tableCellWidth180 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders59 = new TableCellBorders();
            BottomBorder bottomBorder63 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders59.Append(bottomBorder63);
            Shading shading53 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "000080" };

            tableCellProperties180.Append(tableCellWidth180);
            tableCellProperties180.Append(tableCellBorders59);
            tableCellProperties180.Append(shading53);

            Paragraph paragraph336 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "736CEBF8", TextId = "77777777" };

            ParagraphProperties paragraphProperties333 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties333 = new ParagraphMarkRunProperties();
            RunFonts runFonts957 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize967 = new FontSize() { Val = "18" };

            paragraphMarkRunProperties333.Append(runFonts957);
            paragraphMarkRunProperties333.Append(fontSize967);

            paragraphProperties333.Append(paragraphMarkRunProperties333);

            Run run690 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties732 = new RunProperties();
            RunFonts runFonts958 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize968 = new FontSize() { Val = "18" };

            runProperties732.Append(runFonts958);
            runProperties732.Append(fontSize968);
            Text text656 = new Text();
            text656.Text = "Description of Change";

            run690.Append(runProperties732);
            run690.Append(text656);

            paragraph336.Append(paragraphProperties333);
            paragraph336.Append(run690);

            tableCell180.Append(tableCellProperties180);
            tableCell180.Append(paragraph336);

            TableCell tableCell181 = new TableCell();

            TableCellProperties tableCellProperties181 = new TableCellProperties();
            TableCellWidth tableCellWidth181 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders60 = new TableCellBorders();
            BottomBorder bottomBorder64 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders60.Append(bottomBorder64);
            Shading shading54 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "000080" };

            tableCellProperties181.Append(tableCellWidth181);
            tableCellProperties181.Append(tableCellBorders60);
            tableCellProperties181.Append(shading54);

            Paragraph paragraph337 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "34A56E53", TextId = "77777777" };

            ParagraphProperties paragraphProperties334 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties334 = new ParagraphMarkRunProperties();
            RunFonts runFonts959 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize969 = new FontSize() { Val = "18" };

            paragraphMarkRunProperties334.Append(runFonts959);
            paragraphMarkRunProperties334.Append(fontSize969);

            paragraphProperties334.Append(paragraphMarkRunProperties334);

            Run run691 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties733 = new RunProperties();
            RunFonts runFonts960 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize970 = new FontSize() { Val = "18" };

            runProperties733.Append(runFonts960);
            runProperties733.Append(fontSize970);
            Text text657 = new Text();
            text657.Text = "Author & Information";

            run691.Append(runProperties733);
            run691.Append(text657);

            paragraph337.Append(paragraphProperties334);
            paragraph337.Append(run691);

            tableCell181.Append(tableCellProperties181);
            tableCell181.Append(paragraph337);

            tableRow42.Append(tableRowProperties26);
            tableRow42.Append(tableCell179);
            tableRow42.Append(tableCell180);
            tableRow42.Append(tableCell181);

            TableRow tableRow43 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "7FEAA169", TextId = "77777777" };

            TableRowProperties tableRowProperties27 = new TableRowProperties();
            TableRowHeight tableRowHeight27 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties27.Append(tableRowHeight27);

            TableCell tableCell182 = new TableCell();

            TableCellProperties tableCellProperties182 = new TableCellProperties();
            TableCellWidth tableCellWidth182 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders61 = new TableCellBorders();
            TopBorder topBorder60 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder59 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder65 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder59 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders61.Append(topBorder60);
            tableCellBorders61.Append(leftBorder59);
            tableCellBorders61.Append(bottomBorder65);
            tableCellBorders61.Append(rightBorder59);

            tableCellProperties182.Append(tableCellWidth182);
            tableCellProperties182.Append(tableCellBorders61);

            Paragraph paragraph338 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "3ADC6CC7", TextId = "77777777" };

            ParagraphProperties paragraphProperties335 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties335 = new ParagraphMarkRunProperties();
            RunFonts runFonts961 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize971 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript957 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties335.Append(runFonts961);
            paragraphMarkRunProperties335.Append(fontSize971);
            paragraphMarkRunProperties335.Append(fontSizeComplexScript957);

            paragraphProperties335.Append(paragraphMarkRunProperties335);

            Run run692 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties734 = new RunProperties();
            RunFonts runFonts962 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize972 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript958 = new FontSizeComplexScript() { Val = "22" };

            runProperties734.Append(runFonts962);
            runProperties734.Append(fontSize972);
            runProperties734.Append(fontSizeComplexScript958);
            Text text658 = new Text();
            text658.Text = "05/21/2013";

            run692.Append(runProperties734);
            run692.Append(text658);

            paragraph338.Append(paragraphProperties335);
            paragraph338.Append(run692);

            tableCell182.Append(tableCellProperties182);
            tableCell182.Append(paragraph338);

            TableCell tableCell183 = new TableCell();

            TableCellProperties tableCellProperties183 = new TableCellProperties();
            TableCellWidth tableCellWidth183 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders62 = new TableCellBorders();
            TopBorder topBorder61 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder60 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder66 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder60 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders62.Append(topBorder61);
            tableCellBorders62.Append(leftBorder60);
            tableCellBorders62.Append(bottomBorder66);
            tableCellBorders62.Append(rightBorder60);

            tableCellProperties183.Append(tableCellWidth183);
            tableCellProperties183.Append(tableCellBorders62);

            Paragraph paragraph339 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "3545EAFB", TextId = "77777777" };

            ParagraphProperties paragraphProperties336 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties336 = new ParagraphMarkRunProperties();
            RunFonts runFonts963 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize973 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript959 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties336.Append(runFonts963);
            paragraphMarkRunProperties336.Append(fontSize973);
            paragraphMarkRunProperties336.Append(fontSizeComplexScript959);

            paragraphProperties336.Append(paragraphMarkRunProperties336);

            Run run693 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties735 = new RunProperties();
            RunFonts runFonts964 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize974 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript960 = new FontSizeComplexScript() { Val = "22" };

            runProperties735.Append(runFonts964);
            runProperties735.Append(fontSize974);
            runProperties735.Append(fontSizeComplexScript960);
            Text text659 = new Text();
            text659.Text = "Initial Release";

            run693.Append(runProperties735);
            run693.Append(text659);

            paragraph339.Append(paragraphProperties336);
            paragraph339.Append(run693);

            tableCell183.Append(tableCellProperties183);
            tableCell183.Append(paragraph339);

            TableCell tableCell184 = new TableCell();

            TableCellProperties tableCellProperties184 = new TableCellProperties();
            TableCellWidth tableCellWidth184 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders63 = new TableCellBorders();
            TopBorder topBorder62 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder61 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder67 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder61 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders63.Append(topBorder62);
            tableCellBorders63.Append(leftBorder61);
            tableCellBorders63.Append(bottomBorder67);
            tableCellBorders63.Append(rightBorder61);

            tableCellProperties184.Append(tableCellWidth184);
            tableCellProperties184.Append(tableCellBorders63);

            Paragraph paragraph340 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "56546D1C", TextId = "77777777" };

            ParagraphProperties paragraphProperties337 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties337 = new ParagraphMarkRunProperties();
            RunFonts runFonts965 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize975 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript961 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties337.Append(runFonts965);
            paragraphMarkRunProperties337.Append(fontSize975);
            paragraphMarkRunProperties337.Append(fontSizeComplexScript961);

            paragraphProperties337.Append(paragraphMarkRunProperties337);

            Run run694 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties736 = new RunProperties();
            RunFonts runFonts966 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize976 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript962 = new FontSizeComplexScript() { Val = "22" };

            runProperties736.Append(runFonts966);
            runProperties736.Append(fontSize976);
            runProperties736.Append(fontSizeComplexScript962);
            Text text660 = new Text();
            text660.Text = "Tech E. Interviewer III";

            run694.Append(runProperties736);
            run694.Append(text660);

            paragraph340.Append(paragraphProperties337);
            paragraph340.Append(run694);

            tableCell184.Append(tableCellProperties184);
            tableCell184.Append(paragraph340);

            tableRow43.Append(tableRowProperties27);
            tableRow43.Append(tableCell182);
            tableRow43.Append(tableCell183);
            tableRow43.Append(tableCell184);

            TableRow tableRow44 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "2300D970", TextId = "77777777" };

            TableRowProperties tableRowProperties28 = new TableRowProperties();
            TableRowHeight tableRowHeight28 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties28.Append(tableRowHeight28);

            TableCell tableCell185 = new TableCell();

            TableCellProperties tableCellProperties185 = new TableCellProperties();
            TableCellWidth tableCellWidth185 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders64 = new TableCellBorders();
            TopBorder topBorder63 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder62 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder68 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder62 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders64.Append(topBorder63);
            tableCellBorders64.Append(leftBorder62);
            tableCellBorders64.Append(bottomBorder68);
            tableCellBorders64.Append(rightBorder62);

            tableCellProperties185.Append(tableCellWidth185);
            tableCellProperties185.Append(tableCellBorders64);

            Paragraph paragraph341 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "673F3BF8", TextId = "77777777" };

            ParagraphProperties paragraphProperties338 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties338 = new ParagraphMarkRunProperties();
            RunFonts runFonts967 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize977 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript963 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties338.Append(runFonts967);
            paragraphMarkRunProperties338.Append(fontSize977);
            paragraphMarkRunProperties338.Append(fontSizeComplexScript963);

            paragraphProperties338.Append(paragraphMarkRunProperties338);

            Run run695 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties737 = new RunProperties();
            RunFonts runFonts968 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize978 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript964 = new FontSizeComplexScript() { Val = "22" };

            runProperties737.Append(runFonts968);
            runProperties737.Append(fontSize978);
            runProperties737.Append(fontSizeComplexScript964);
            Text text661 = new Text();
            text661.Text = "06/03/2013";

            run695.Append(runProperties737);
            run695.Append(text661);

            paragraph341.Append(paragraphProperties338);
            paragraph341.Append(run695);

            tableCell185.Append(tableCellProperties185);
            tableCell185.Append(paragraph341);

            TableCell tableCell186 = new TableCell();

            TableCellProperties tableCellProperties186 = new TableCellProperties();
            TableCellWidth tableCellWidth186 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders65 = new TableCellBorders();
            TopBorder topBorder64 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder63 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder69 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder63 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders65.Append(topBorder64);
            tableCellBorders65.Append(leftBorder63);
            tableCellBorders65.Append(bottomBorder69);
            tableCellBorders65.Append(rightBorder63);

            tableCellProperties186.Append(tableCellWidth186);
            tableCellProperties186.Append(tableCellBorders65);

            Paragraph paragraph342 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "7FEC7879", TextId = "77777777" };

            ParagraphProperties paragraphProperties339 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties339 = new ParagraphMarkRunProperties();
            RunFonts runFonts969 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize979 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript965 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties339.Append(runFonts969);
            paragraphMarkRunProperties339.Append(fontSize979);
            paragraphMarkRunProperties339.Append(fontSizeComplexScript965);

            paragraphProperties339.Append(paragraphMarkRunProperties339);

            Run run696 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties738 = new RunProperties();
            RunFonts runFonts970 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize980 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript966 = new FontSizeComplexScript() { Val = "22" };

            runProperties738.Append(runFonts970);
            runProperties738.Append(fontSize980);
            runProperties738.Append(fontSizeComplexScript966);
            Text text662 = new Text();
            text662.Text = "Cleared Test Data";

            run696.Append(runProperties738);
            run696.Append(text662);

            paragraph342.Append(paragraphProperties339);
            paragraph342.Append(run696);

            tableCell186.Append(tableCellProperties186);
            tableCell186.Append(paragraph342);

            TableCell tableCell187 = new TableCell();

            TableCellProperties tableCellProperties187 = new TableCellProperties();
            TableCellWidth tableCellWidth187 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders66 = new TableCellBorders();
            TopBorder topBorder65 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder64 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder70 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder64 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders66.Append(topBorder65);
            tableCellBorders66.Append(leftBorder64);
            tableCellBorders66.Append(bottomBorder70);
            tableCellBorders66.Append(rightBorder64);

            tableCellProperties187.Append(tableCellWidth187);
            tableCellProperties187.Append(tableCellBorders66);

            Paragraph paragraph343 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "2DD6C2ED", TextId = "77777777" };

            ParagraphProperties paragraphProperties340 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties340 = new ParagraphMarkRunProperties();
            RunFonts runFonts971 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize981 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript967 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties340.Append(runFonts971);
            paragraphMarkRunProperties340.Append(fontSize981);
            paragraphMarkRunProperties340.Append(fontSizeComplexScript967);

            paragraphProperties340.Append(paragraphMarkRunProperties340);

            Run run697 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties739 = new RunProperties();
            RunFonts runFonts972 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize982 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript968 = new FontSizeComplexScript() { Val = "22" };

            runProperties739.Append(runFonts972);
            runProperties739.Append(fontSize982);
            runProperties739.Append(fontSizeComplexScript968);
            Text text663 = new Text();
            text663.Text = "Philip E Scherry";

            run697.Append(runProperties739);
            run697.Append(text663);

            paragraph343.Append(paragraphProperties340);
            paragraph343.Append(run697);

            tableCell187.Append(tableCellProperties187);
            tableCell187.Append(paragraph343);

            tableRow44.Append(tableRowProperties28);
            tableRow44.Append(tableCell185);
            tableRow44.Append(tableCell186);
            tableRow44.Append(tableCell187);

            TableRow tableRow45 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "0579DCE4", TextId = "77777777" };

            TableRowProperties tableRowProperties29 = new TableRowProperties();
            TableRowHeight tableRowHeight29 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties29.Append(tableRowHeight29);

            TableCell tableCell188 = new TableCell();

            TableCellProperties tableCellProperties188 = new TableCellProperties();
            TableCellWidth tableCellWidth188 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders67 = new TableCellBorders();
            TopBorder topBorder66 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder65 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder71 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder65 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders67.Append(topBorder66);
            tableCellBorders67.Append(leftBorder65);
            tableCellBorders67.Append(bottomBorder71);
            tableCellBorders67.Append(rightBorder65);

            tableCellProperties188.Append(tableCellWidth188);
            tableCellProperties188.Append(tableCellBorders67);

            Paragraph paragraph344 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "72A26145", TextId = "77777777" };

            ParagraphProperties paragraphProperties341 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties341 = new ParagraphMarkRunProperties();
            RunFonts runFonts973 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize983 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript969 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties341.Append(runFonts973);
            paragraphMarkRunProperties341.Append(fontSize983);
            paragraphMarkRunProperties341.Append(fontSizeComplexScript969);

            paragraphProperties341.Append(paragraphMarkRunProperties341);

            Run run698 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties740 = new RunProperties();
            RunFonts runFonts974 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize984 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript970 = new FontSizeComplexScript() { Val = "22" };

            runProperties740.Append(runFonts974);
            runProperties740.Append(fontSize984);
            runProperties740.Append(fontSizeComplexScript970);
            Text text664 = new Text();
            text664.Text = "09/17/2013";

            run698.Append(runProperties740);
            run698.Append(text664);

            paragraph344.Append(paragraphProperties341);
            paragraph344.Append(run698);

            tableCell188.Append(tableCellProperties188);
            tableCell188.Append(paragraph344);

            TableCell tableCell189 = new TableCell();

            TableCellProperties tableCellProperties189 = new TableCellProperties();
            TableCellWidth tableCellWidth189 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders68 = new TableCellBorders();
            TopBorder topBorder67 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder66 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder72 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder66 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders68.Append(topBorder67);
            tableCellBorders68.Append(leftBorder66);
            tableCellBorders68.Append(bottomBorder72);
            tableCellBorders68.Append(rightBorder66);

            tableCellProperties189.Append(tableCellWidth189);
            tableCellProperties189.Append(tableCellBorders68);

            Paragraph paragraph345 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "5A7A8E20", TextId = "77777777" };

            ParagraphProperties paragraphProperties342 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties342 = new ParagraphMarkRunProperties();
            RunFonts runFonts975 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize985 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript971 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties342.Append(runFonts975);
            paragraphMarkRunProperties342.Append(fontSize985);
            paragraphMarkRunProperties342.Append(fontSizeComplexScript971);

            paragraphProperties342.Append(paragraphMarkRunProperties342);

            Run run699 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties741 = new RunProperties();
            RunFonts runFonts976 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize986 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript972 = new FontSizeComplexScript() { Val = "22" };

            runProperties741.Append(runFonts976);
            runProperties741.Append(fontSize986);
            runProperties741.Append(fontSizeComplexScript972);
            Text text665 = new Text();
            text665.Text = "Change page orientation, add VLAN & Clarity info";

            run699.Append(runProperties741);
            run699.Append(text665);

            paragraph345.Append(paragraphProperties342);
            paragraph345.Append(run699);

            tableCell189.Append(tableCellProperties189);
            tableCell189.Append(paragraph345);

            TableCell tableCell190 = new TableCell();

            TableCellProperties tableCellProperties190 = new TableCellProperties();
            TableCellWidth tableCellWidth190 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders69 = new TableCellBorders();
            TopBorder topBorder68 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder67 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder73 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder67 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders69.Append(topBorder68);
            tableCellBorders69.Append(leftBorder67);
            tableCellBorders69.Append(bottomBorder73);
            tableCellBorders69.Append(rightBorder67);

            tableCellProperties190.Append(tableCellWidth190);
            tableCellProperties190.Append(tableCellBorders69);

            Paragraph paragraph346 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "2AAB376B", TextId = "77777777" };

            ParagraphProperties paragraphProperties343 = new ParagraphProperties();

            Tabs tabs1 = new Tabs();
            TabStop tabStop1 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs1.Append(tabStop1);

            ParagraphMarkRunProperties paragraphMarkRunProperties343 = new ParagraphMarkRunProperties();
            RunFonts runFonts977 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize987 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript973 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties343.Append(runFonts977);
            paragraphMarkRunProperties343.Append(fontSize987);
            paragraphMarkRunProperties343.Append(fontSizeComplexScript973);

            paragraphProperties343.Append(tabs1);
            paragraphProperties343.Append(paragraphMarkRunProperties343);

            Run run700 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties742 = new RunProperties();
            RunFonts runFonts978 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize988 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript974 = new FontSizeComplexScript() { Val = "22" };

            runProperties742.Append(runFonts978);
            runProperties742.Append(fontSize988);
            runProperties742.Append(fontSizeComplexScript974);
            Text text666 = new Text();
            text666.Text = "Philip E Scherry";

            run700.Append(runProperties742);
            run700.Append(text666);

            paragraph346.Append(paragraphProperties343);
            paragraph346.Append(run700);

            tableCell190.Append(tableCellProperties190);
            tableCell190.Append(paragraph346);

            tableRow45.Append(tableRowProperties29);
            tableRow45.Append(tableCell188);
            tableRow45.Append(tableCell189);
            tableRow45.Append(tableCell190);

            TableRow tableRow46 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "79DD4939", TextId = "77777777" };

            TableRowProperties tableRowProperties30 = new TableRowProperties();
            TableRowHeight tableRowHeight30 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties30.Append(tableRowHeight30);

            TableCell tableCell191 = new TableCell();

            TableCellProperties tableCellProperties191 = new TableCellProperties();
            TableCellWidth tableCellWidth191 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders70 = new TableCellBorders();
            TopBorder topBorder69 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder68 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder74 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder68 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders70.Append(topBorder69);
            tableCellBorders70.Append(leftBorder68);
            tableCellBorders70.Append(bottomBorder74);
            tableCellBorders70.Append(rightBorder68);

            tableCellProperties191.Append(tableCellWidth191);
            tableCellProperties191.Append(tableCellBorders70);

            Paragraph paragraph347 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "2F1BC237", TextId = "77777777" };

            ParagraphProperties paragraphProperties344 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties344 = new ParagraphMarkRunProperties();
            RunFonts runFonts979 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize989 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript975 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties344.Append(runFonts979);
            paragraphMarkRunProperties344.Append(fontSize989);
            paragraphMarkRunProperties344.Append(fontSizeComplexScript975);

            paragraphProperties344.Append(paragraphMarkRunProperties344);

            Run run701 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties743 = new RunProperties();
            RunFonts runFonts980 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize990 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript976 = new FontSizeComplexScript() { Val = "22" };

            runProperties743.Append(runFonts980);
            runProperties743.Append(fontSize990);
            runProperties743.Append(fontSizeComplexScript976);
            Text text667 = new Text();
            text667.Text = "09/26/2013";

            run701.Append(runProperties743);
            run701.Append(text667);

            paragraph347.Append(paragraphProperties344);
            paragraph347.Append(run701);

            tableCell191.Append(tableCellProperties191);
            tableCell191.Append(paragraph347);

            TableCell tableCell192 = new TableCell();

            TableCellProperties tableCellProperties192 = new TableCellProperties();
            TableCellWidth tableCellWidth192 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders71 = new TableCellBorders();
            TopBorder topBorder70 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder69 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder75 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder69 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders71.Append(topBorder70);
            tableCellBorders71.Append(leftBorder69);
            tableCellBorders71.Append(bottomBorder75);
            tableCellBorders71.Append(rightBorder69);

            tableCellProperties192.Append(tableCellWidth192);
            tableCellProperties192.Append(tableCellBorders71);

            Paragraph paragraph348 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "56F671F9", TextId = "77777777" };

            ParagraphProperties paragraphProperties345 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties345 = new ParagraphMarkRunProperties();
            RunFonts runFonts981 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize991 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript977 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties345.Append(runFonts981);
            paragraphMarkRunProperties345.Append(fontSize991);
            paragraphMarkRunProperties345.Append(fontSizeComplexScript977);

            paragraphProperties345.Append(paragraphMarkRunProperties345);

            Run run702 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties744 = new RunProperties();
            RunFonts runFonts982 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize992 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript978 = new FontSizeComplexScript() { Val = "22" };

            runProperties744.Append(runFonts982);
            runProperties744.Append(fontSize992);
            runProperties744.Append(fontSizeComplexScript978);
            Text text668 = new Text();
            text668.Text = "Added VPN & Vendor Contact Fields.  Removed Storage section";

            run702.Append(runProperties744);
            run702.Append(text668);

            paragraph348.Append(paragraphProperties345);
            paragraph348.Append(run702);

            tableCell192.Append(tableCellProperties192);
            tableCell192.Append(paragraph348);

            TableCell tableCell193 = new TableCell();

            TableCellProperties tableCellProperties193 = new TableCellProperties();
            TableCellWidth tableCellWidth193 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders72 = new TableCellBorders();
            TopBorder topBorder71 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder70 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder76 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder70 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders72.Append(topBorder71);
            tableCellBorders72.Append(leftBorder70);
            tableCellBorders72.Append(bottomBorder76);
            tableCellBorders72.Append(rightBorder70);

            tableCellProperties193.Append(tableCellWidth193);
            tableCellProperties193.Append(tableCellBorders72);

            Paragraph paragraph349 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "477F4DED", TextId = "77777777" };

            ParagraphProperties paragraphProperties346 = new ParagraphProperties();

            Tabs tabs2 = new Tabs();
            TabStop tabStop2 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs2.Append(tabStop2);

            ParagraphMarkRunProperties paragraphMarkRunProperties346 = new ParagraphMarkRunProperties();
            RunFonts runFonts983 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize993 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript979 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties346.Append(runFonts983);
            paragraphMarkRunProperties346.Append(fontSize993);
            paragraphMarkRunProperties346.Append(fontSizeComplexScript979);

            paragraphProperties346.Append(tabs2);
            paragraphProperties346.Append(paragraphMarkRunProperties346);

            Run run703 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties745 = new RunProperties();
            RunFonts runFonts984 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize994 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript980 = new FontSizeComplexScript() { Val = "22" };

            runProperties745.Append(runFonts984);
            runProperties745.Append(fontSize994);
            runProperties745.Append(fontSizeComplexScript980);
            Text text669 = new Text();
            text669.Text = "Philip E Scherry";

            run703.Append(runProperties745);
            run703.Append(text669);

            Run run704 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties746 = new RunProperties();
            RunFonts runFonts985 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize995 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript981 = new FontSizeComplexScript() { Val = "22" };

            runProperties746.Append(runFonts985);
            runProperties746.Append(fontSize995);
            runProperties746.Append(fontSizeComplexScript981);
            TabChar tabChar41 = new TabChar();

            run704.Append(runProperties746);
            run704.Append(tabChar41);

            paragraph349.Append(paragraphProperties346);
            paragraph349.Append(run703);
            paragraph349.Append(run704);

            tableCell193.Append(tableCellProperties193);
            tableCell193.Append(paragraph349);

            tableRow46.Append(tableRowProperties30);
            tableRow46.Append(tableCell191);
            tableRow46.Append(tableCell192);
            tableRow46.Append(tableCell193);

            TableRow tableRow47 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "334F4E00", TextId = "77777777" };

            TableRowProperties tableRowProperties31 = new TableRowProperties();
            TableRowHeight tableRowHeight31 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties31.Append(tableRowHeight31);

            TableCell tableCell194 = new TableCell();

            TableCellProperties tableCellProperties194 = new TableCellProperties();
            TableCellWidth tableCellWidth194 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders73 = new TableCellBorders();
            TopBorder topBorder72 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder71 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder77 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder71 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders73.Append(topBorder72);
            tableCellBorders73.Append(leftBorder71);
            tableCellBorders73.Append(bottomBorder77);
            tableCellBorders73.Append(rightBorder71);

            tableCellProperties194.Append(tableCellWidth194);
            tableCellProperties194.Append(tableCellBorders73);

            Paragraph paragraph350 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "394EFE87", TextId = "77777777" };

            ParagraphProperties paragraphProperties347 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties347 = new ParagraphMarkRunProperties();
            RunFonts runFonts986 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize996 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript982 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties347.Append(runFonts986);
            paragraphMarkRunProperties347.Append(fontSize996);
            paragraphMarkRunProperties347.Append(fontSizeComplexScript982);

            paragraphProperties347.Append(paragraphMarkRunProperties347);

            Run run705 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties747 = new RunProperties();
            RunFonts runFonts987 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize997 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript983 = new FontSizeComplexScript() { Val = "22" };

            runProperties747.Append(runFonts987);
            runProperties747.Append(fontSize997);
            runProperties747.Append(fontSizeComplexScript983);
            Text text670 = new Text();
            text670.Text = "11/22/2013";

            run705.Append(runProperties747);
            run705.Append(text670);

            paragraph350.Append(paragraphProperties347);
            paragraph350.Append(run705);

            tableCell194.Append(tableCellProperties194);
            tableCell194.Append(paragraph350);

            TableCell tableCell195 = new TableCell();

            TableCellProperties tableCellProperties195 = new TableCellProperties();
            TableCellWidth tableCellWidth195 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders74 = new TableCellBorders();
            TopBorder topBorder73 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder72 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder78 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder72 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders74.Append(topBorder73);
            tableCellBorders74.Append(leftBorder72);
            tableCellBorders74.Append(bottomBorder78);
            tableCellBorders74.Append(rightBorder72);

            tableCellProperties195.Append(tableCellWidth195);
            tableCellProperties195.Append(tableCellBorders74);

            Paragraph paragraph351 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "26874D66", TextId = "77777777" };

            ParagraphProperties paragraphProperties348 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties348 = new ParagraphMarkRunProperties();
            RunFonts runFonts988 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize998 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript984 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties348.Append(runFonts988);
            paragraphMarkRunProperties348.Append(fontSize998);
            paragraphMarkRunProperties348.Append(fontSizeComplexScript984);

            paragraphProperties348.Append(paragraphMarkRunProperties348);

            Run run706 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties748 = new RunProperties();
            RunFonts runFonts989 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize999 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript985 = new FontSizeComplexScript() { Val = "22" };

            runProperties748.Append(runFonts989);
            runProperties748.Append(fontSize999);
            runProperties748.Append(fontSizeComplexScript985);
            Text text671 = new Text();
            text671.Text = "Updated for ServiceNow & Dates fields";

            run706.Append(runProperties748);
            run706.Append(text671);

            Run run707 = new Run();

            RunProperties runProperties749 = new RunProperties();
            RunFonts runFonts990 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1000 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript986 = new FontSizeComplexScript() { Val = "22" };

            runProperties749.Append(runFonts990);
            runProperties749.Append(fontSize1000);
            runProperties749.Append(fontSizeComplexScript986);
            Text text672 = new Text();
            text672.Text = ".  Update Citrix questions.  Added: WSP, Admins, Telephony";

            run707.Append(runProperties749);
            run707.Append(text672);

            paragraph351.Append(paragraphProperties348);
            paragraph351.Append(run706);
            paragraph351.Append(run707);

            tableCell195.Append(tableCellProperties195);
            tableCell195.Append(paragraph351);

            TableCell tableCell196 = new TableCell();

            TableCellProperties tableCellProperties196 = new TableCellProperties();
            TableCellWidth tableCellWidth196 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders75 = new TableCellBorders();
            TopBorder topBorder74 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder73 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder79 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder73 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders75.Append(topBorder74);
            tableCellBorders75.Append(leftBorder73);
            tableCellBorders75.Append(bottomBorder79);
            tableCellBorders75.Append(rightBorder73);

            tableCellProperties196.Append(tableCellWidth196);
            tableCellProperties196.Append(tableCellBorders75);

            Paragraph paragraph352 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "2FB0F90E", TextId = "77777777" };

            ParagraphProperties paragraphProperties349 = new ParagraphProperties();

            Tabs tabs3 = new Tabs();
            TabStop tabStop3 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs3.Append(tabStop3);

            ParagraphMarkRunProperties paragraphMarkRunProperties349 = new ParagraphMarkRunProperties();
            RunFonts runFonts991 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1001 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript987 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties349.Append(runFonts991);
            paragraphMarkRunProperties349.Append(fontSize1001);
            paragraphMarkRunProperties349.Append(fontSizeComplexScript987);

            paragraphProperties349.Append(tabs3);
            paragraphProperties349.Append(paragraphMarkRunProperties349);

            Run run708 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties750 = new RunProperties();
            RunFonts runFonts992 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1002 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript988 = new FontSizeComplexScript() { Val = "22" };

            runProperties750.Append(runFonts992);
            runProperties750.Append(fontSize1002);
            runProperties750.Append(fontSizeComplexScript988);
            Text text673 = new Text();
            text673.Text = "Philip E Scherry";

            run708.Append(runProperties750);
            run708.Append(text673);

            Run run709 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties751 = new RunProperties();
            RunFonts runFonts993 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1003 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript989 = new FontSizeComplexScript() { Val = "22" };

            runProperties751.Append(runFonts993);
            runProperties751.Append(fontSize1003);
            runProperties751.Append(fontSizeComplexScript989);
            TabChar tabChar42 = new TabChar();

            run709.Append(runProperties751);
            run709.Append(tabChar42);

            paragraph352.Append(paragraphProperties349);
            paragraph352.Append(run708);
            paragraph352.Append(run709);

            tableCell196.Append(tableCellProperties196);
            tableCell196.Append(paragraph352);

            tableRow47.Append(tableRowProperties31);
            tableRow47.Append(tableCell194);
            tableRow47.Append(tableCell195);
            tableRow47.Append(tableCell196);

            TableRow tableRow48 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "00712EF0", RsidTableRowProperties = "0094109A", ParagraphId = "14628193", TextId = "77777777" };

            TableRowProperties tableRowProperties32 = new TableRowProperties();
            TableRowHeight tableRowHeight32 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties32.Append(tableRowHeight32);

            TableCell tableCell197 = new TableCell();

            TableCellProperties tableCellProperties197 = new TableCellProperties();
            TableCellWidth tableCellWidth197 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders76 = new TableCellBorders();
            TopBorder topBorder75 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder74 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder80 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder74 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders76.Append(topBorder75);
            tableCellBorders76.Append(leftBorder74);
            tableCellBorders76.Append(bottomBorder80);
            tableCellBorders76.Append(rightBorder74);

            tableCellProperties197.Append(tableCellWidth197);
            tableCellProperties197.Append(tableCellBorders76);

            Paragraph paragraph353 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "00712EF0", RsidParagraphProperties = "0094109A", RsidRunAdditionDefault = "00712EF0", ParagraphId = "187329C3", TextId = "77777777" };

            ParagraphProperties paragraphProperties350 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties350 = new ParagraphMarkRunProperties();
            RunFonts runFonts994 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1004 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript990 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties350.Append(runFonts994);
            paragraphMarkRunProperties350.Append(fontSize1004);
            paragraphMarkRunProperties350.Append(fontSizeComplexScript990);

            paragraphProperties350.Append(paragraphMarkRunProperties350);

            Run run710 = new Run();

            RunProperties runProperties752 = new RunProperties();
            RunFonts runFonts995 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1005 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript991 = new FontSizeComplexScript() { Val = "22" };

            runProperties752.Append(runFonts995);
            runProperties752.Append(fontSize1005);
            runProperties752.Append(fontSizeComplexScript991);
            Text text674 = new Text();
            text674.Text = "12/02";

            run710.Append(runProperties752);
            run710.Append(text674);

            Run run711 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties753 = new RunProperties();
            RunFonts runFonts996 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1006 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript992 = new FontSizeComplexScript() { Val = "22" };

            runProperties753.Append(runFonts996);
            runProperties753.Append(fontSize1006);
            runProperties753.Append(fontSizeComplexScript992);
            Text text675 = new Text();
            text675.Text = "/2013";

            run711.Append(runProperties753);
            run711.Append(text675);

            paragraph353.Append(paragraphProperties350);
            paragraph353.Append(run710);
            paragraph353.Append(run711);

            tableCell197.Append(tableCellProperties197);
            tableCell197.Append(paragraph353);

            TableCell tableCell198 = new TableCell();

            TableCellProperties tableCellProperties198 = new TableCellProperties();
            TableCellWidth tableCellWidth198 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders77 = new TableCellBorders();
            TopBorder topBorder76 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder75 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder81 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder75 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders77.Append(topBorder76);
            tableCellBorders77.Append(leftBorder75);
            tableCellBorders77.Append(bottomBorder81);
            tableCellBorders77.Append(rightBorder75);

            tableCellProperties198.Append(tableCellWidth198);
            tableCellProperties198.Append(tableCellBorders77);

            Paragraph paragraph354 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "00712EF0", RsidParagraphProperties = "0094109A", RsidRunAdditionDefault = "00712EF0", ParagraphId = "1515DA29", TextId = "77777777" };

            ParagraphProperties paragraphProperties351 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties351 = new ParagraphMarkRunProperties();
            RunFonts runFonts997 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1007 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript993 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties351.Append(runFonts997);
            paragraphMarkRunProperties351.Append(fontSize1007);
            paragraphMarkRunProperties351.Append(fontSizeComplexScript993);

            paragraphProperties351.Append(paragraphMarkRunProperties351);

            Run run712 = new Run();

            RunProperties runProperties754 = new RunProperties();
            RunFonts runFonts998 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1008 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript994 = new FontSizeComplexScript() { Val = "22" };

            runProperties754.Append(runFonts998);
            runProperties754.Append(fontSize1008);
            runProperties754.Append(fontSizeComplexScript994);
            Text text676 = new Text();
            text676.Text = "Added section numbers & improved page #s.  Added Project Revision section & 64vs32 bit questions";

            run712.Append(runProperties754);
            run712.Append(text676);

            paragraph354.Append(paragraphProperties351);
            paragraph354.Append(run712);

            tableCell198.Append(tableCellProperties198);
            tableCell198.Append(paragraph354);

            TableCell tableCell199 = new TableCell();

            TableCellProperties tableCellProperties199 = new TableCellProperties();
            TableCellWidth tableCellWidth199 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders78 = new TableCellBorders();
            TopBorder topBorder77 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder76 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder82 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder76 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders78.Append(topBorder77);
            tableCellBorders78.Append(leftBorder76);
            tableCellBorders78.Append(bottomBorder82);
            tableCellBorders78.Append(rightBorder76);

            tableCellProperties199.Append(tableCellWidth199);
            tableCellProperties199.Append(tableCellBorders78);

            Paragraph paragraph355 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "00712EF0", RsidParagraphProperties = "0094109A", RsidRunAdditionDefault = "00712EF0", ParagraphId = "025F12D7", TextId = "77777777" };

            ParagraphProperties paragraphProperties352 = new ParagraphProperties();

            Tabs tabs4 = new Tabs();
            TabStop tabStop4 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs4.Append(tabStop4);

            ParagraphMarkRunProperties paragraphMarkRunProperties352 = new ParagraphMarkRunProperties();
            RunFonts runFonts999 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1009 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript995 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties352.Append(runFonts999);
            paragraphMarkRunProperties352.Append(fontSize1009);
            paragraphMarkRunProperties352.Append(fontSizeComplexScript995);

            paragraphProperties352.Append(tabs4);
            paragraphProperties352.Append(paragraphMarkRunProperties352);

            Run run713 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties755 = new RunProperties();
            RunFonts runFonts1000 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1010 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript996 = new FontSizeComplexScript() { Val = "22" };

            runProperties755.Append(runFonts1000);
            runProperties755.Append(fontSize1010);
            runProperties755.Append(fontSizeComplexScript996);
            Text text677 = new Text();
            text677.Text = "Philip E Scherry";

            run713.Append(runProperties755);
            run713.Append(text677);

            Run run714 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties756 = new RunProperties();
            RunFonts runFonts1001 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1011 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript997 = new FontSizeComplexScript() { Val = "22" };

            runProperties756.Append(runFonts1001);
            runProperties756.Append(fontSize1011);
            runProperties756.Append(fontSizeComplexScript997);
            TabChar tabChar43 = new TabChar();

            run714.Append(runProperties756);
            run714.Append(tabChar43);

            paragraph355.Append(paragraphProperties352);
            paragraph355.Append(run713);
            paragraph355.Append(run714);

            tableCell199.Append(tableCellProperties199);
            tableCell199.Append(paragraph355);

            tableRow48.Append(tableRowProperties32);
            tableRow48.Append(tableCell197);
            tableRow48.Append(tableCell198);
            tableRow48.Append(tableCell199);

            TableRow tableRow49 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "005763A4", RsidTableRowProperties = "005763A4", ParagraphId = "2DB56C84", TextId = "77777777" };

            TableRowProperties tableRowProperties33 = new TableRowProperties();
            TableRowHeight tableRowHeight33 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties33.Append(tableRowHeight33);

            TableCell tableCell200 = new TableCell();

            TableCellProperties tableCellProperties200 = new TableCellProperties();
            TableCellWidth tableCellWidth200 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders79 = new TableCellBorders();
            TopBorder topBorder78 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder77 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder83 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder77 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders79.Append(topBorder78);
            tableCellBorders79.Append(leftBorder77);
            tableCellBorders79.Append(bottomBorder83);
            tableCellBorders79.Append(rightBorder77);

            tableCellProperties200.Append(tableCellWidth200);
            tableCellProperties200.Append(tableCellBorders79);

            Paragraph paragraph356 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "00712EF0", RsidRunAdditionDefault = "00712EF0", ParagraphId = "04702D85", TextId = "4C3B1D9A" };

            ParagraphProperties paragraphProperties353 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties353 = new ParagraphMarkRunProperties();
            RunFonts runFonts1002 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1012 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript998 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties353.Append(runFonts1002);
            paragraphMarkRunProperties353.Append(fontSize1012);
            paragraphMarkRunProperties353.Append(fontSizeComplexScript998);

            paragraphProperties353.Append(paragraphMarkRunProperties353);

            Run run715 = new Run();

            RunProperties runProperties757 = new RunProperties();
            RunFonts runFonts1003 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1013 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript999 = new FontSizeComplexScript() { Val = "22" };

            runProperties757.Append(runFonts1003);
            runProperties757.Append(fontSize1013);
            runProperties757.Append(fontSizeComplexScript999);
            Text text678 = new Text();
            text678.Text = "01";

            run715.Append(runProperties757);
            run715.Append(text678);

            Run run716 = new Run() { RsidRunAddition = "005763A4" };

            RunProperties runProperties758 = new RunProperties();
            RunFonts runFonts1004 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1014 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1000 = new FontSizeComplexScript() { Val = "22" };

            runProperties758.Append(runFonts1004);
            runProperties758.Append(fontSize1014);
            runProperties758.Append(fontSizeComplexScript1000);
            Text text679 = new Text();
            text679.Text = "/2";

            run716.Append(runProperties758);
            run716.Append(text679);

            Run run717 = new Run();

            RunProperties runProperties759 = new RunProperties();
            RunFonts runFonts1005 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1015 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1001 = new FontSizeComplexScript() { Val = "22" };

            runProperties759.Append(runFonts1005);
            runProperties759.Append(fontSize1015);
            runProperties759.Append(fontSizeComplexScript1001);
            Text text680 = new Text();
            text680.Text = "1";

            run717.Append(runProperties759);
            run717.Append(text680);

            Run run718 = new Run() { RsidRunProperties = "003E56F4", RsidRunAddition = "005763A4" };

            RunProperties runProperties760 = new RunProperties();
            RunFonts runFonts1006 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1016 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1002 = new FontSizeComplexScript() { Val = "22" };

            runProperties760.Append(runFonts1006);
            runProperties760.Append(fontSize1016);
            runProperties760.Append(fontSizeComplexScript1002);
            Text text681 = new Text();
            text681.Text = "/201";

            run718.Append(runProperties760);
            run718.Append(text681);

            Run run719 = new Run();

            RunProperties runProperties761 = new RunProperties();
            RunFonts runFonts1007 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1017 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1003 = new FontSizeComplexScript() { Val = "22" };

            runProperties761.Append(runFonts1007);
            runProperties761.Append(fontSize1017);
            runProperties761.Append(fontSizeComplexScript1003);
            Text text682 = new Text();
            text682.Text = "4";

            run719.Append(runProperties761);
            run719.Append(text682);

            paragraph356.Append(paragraphProperties353);
            paragraph356.Append(run715);
            paragraph356.Append(run716);
            paragraph356.Append(run717);
            paragraph356.Append(run718);
            paragraph356.Append(run719);

            tableCell200.Append(tableCellProperties200);
            tableCell200.Append(paragraph356);

            TableCell tableCell201 = new TableCell();

            TableCellProperties tableCellProperties201 = new TableCellProperties();
            TableCellWidth tableCellWidth201 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders80 = new TableCellBorders();
            TopBorder topBorder79 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder78 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder84 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder78 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders80.Append(topBorder79);
            tableCellBorders80.Append(leftBorder78);
            tableCellBorders80.Append(bottomBorder84);
            tableCellBorders80.Append(rightBorder78);

            tableCellProperties201.Append(tableCellWidth201);
            tableCellProperties201.Append(tableCellBorders80);

            Paragraph paragraph357 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "00712EF0", ParagraphId = "5E8F00C9", TextId = "399928DE" };

            ParagraphProperties paragraphProperties354 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties354 = new ParagraphMarkRunProperties();
            RunFonts runFonts1008 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1018 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1004 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties354.Append(runFonts1008);
            paragraphMarkRunProperties354.Append(fontSize1018);
            paragraphMarkRunProperties354.Append(fontSizeComplexScript1004);

            paragraphProperties354.Append(paragraphMarkRunProperties354);

            Run run720 = new Run();

            RunProperties runProperties762 = new RunProperties();
            RunFonts runFonts1009 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1019 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1005 = new FontSizeComplexScript() { Val = "22" };

            runProperties762.Append(runFonts1009);
            runProperties762.Append(fontSize1019);
            runProperties762.Append(fontSizeComplexScript1005);
            Text text683 = new Text();
            text683.Text = "Removed SQL Always-On Options";

            run720.Append(runProperties762);
            run720.Append(text683);

            paragraph357.Append(paragraphProperties354);
            paragraph357.Append(run720);

            tableCell201.Append(tableCellProperties201);
            tableCell201.Append(paragraph357);

            TableCell tableCell202 = new TableCell();

            TableCellProperties tableCellProperties202 = new TableCellProperties();
            TableCellWidth tableCellWidth202 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders81 = new TableCellBorders();
            TopBorder topBorder80 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder79 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder85 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder79 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders81.Append(topBorder80);
            tableCellBorders81.Append(leftBorder79);
            tableCellBorders81.Append(bottomBorder85);
            tableCellBorders81.Append(rightBorder79);

            tableCellProperties202.Append(tableCellWidth202);
            tableCellProperties202.Append(tableCellBorders81);

            Paragraph paragraph358 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "005763A4", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "005763A4", ParagraphId = "2F1E0513", TextId = "77777777" };

            ParagraphProperties paragraphProperties355 = new ParagraphProperties();

            Tabs tabs5 = new Tabs();
            TabStop tabStop5 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs5.Append(tabStop5);

            ParagraphMarkRunProperties paragraphMarkRunProperties355 = new ParagraphMarkRunProperties();
            RunFonts runFonts1010 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1020 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1006 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties355.Append(runFonts1010);
            paragraphMarkRunProperties355.Append(fontSize1020);
            paragraphMarkRunProperties355.Append(fontSizeComplexScript1006);

            paragraphProperties355.Append(tabs5);
            paragraphProperties355.Append(paragraphMarkRunProperties355);

            Run run721 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties763 = new RunProperties();
            RunFonts runFonts1011 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1021 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1007 = new FontSizeComplexScript() { Val = "22" };

            runProperties763.Append(runFonts1011);
            runProperties763.Append(fontSize1021);
            runProperties763.Append(fontSizeComplexScript1007);
            Text text684 = new Text();
            text684.Text = "Philip E Scherry";

            run721.Append(runProperties763);
            run721.Append(text684);

            Run run722 = new Run() { RsidRunProperties = "003E56F4" };

            RunProperties runProperties764 = new RunProperties();
            RunFonts runFonts1012 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1022 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1008 = new FontSizeComplexScript() { Val = "22" };

            runProperties764.Append(runFonts1012);
            runProperties764.Append(fontSize1022);
            runProperties764.Append(fontSizeComplexScript1008);
            TabChar tabChar44 = new TabChar();

            run722.Append(runProperties764);
            run722.Append(tabChar44);

            paragraph358.Append(paragraphProperties355);
            paragraph358.Append(run721);
            paragraph358.Append(run722);

            tableCell202.Append(tableCellProperties202);
            tableCell202.Append(paragraph358);

            tableRow49.Append(tableRowProperties33);
            tableRow49.Append(tableCell200);
            tableRow49.Append(tableCell201);
            tableRow49.Append(tableCell202);

            TableRow tableRow50 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "00104E8D", RsidTableRowProperties = "0094109A", ParagraphId = "6D273222", TextId = "77777777" };

            TableRowProperties tableRowProperties34 = new TableRowProperties();
            TableRowHeight tableRowHeight34 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties34.Append(tableRowHeight34);

            TableCell tableCell203 = new TableCell();

            TableCellProperties tableCellProperties203 = new TableCellProperties();
            TableCellWidth tableCellWidth203 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders82 = new TableCellBorders();
            TopBorder topBorder81 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder80 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder86 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder80 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders82.Append(topBorder81);
            tableCellBorders82.Append(leftBorder80);
            tableCellBorders82.Append(bottomBorder86);
            tableCellBorders82.Append(rightBorder80);

            tableCellProperties203.Append(tableCellWidth203);
            tableCellProperties203.Append(tableCellBorders82);

            Paragraph paragraph359 = new Paragraph() { RsidParagraphAddition = "00104E8D", RsidParagraphProperties = "0094109A", RsidRunAdditionDefault = "00104E8D", ParagraphId = "68498EFB", TextId = "77777777" };

            ParagraphProperties paragraphProperties356 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties356 = new ParagraphMarkRunProperties();
            RunFonts runFonts1013 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1023 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1009 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties356.Append(runFonts1013);
            paragraphMarkRunProperties356.Append(fontSize1023);
            paragraphMarkRunProperties356.Append(fontSizeComplexScript1009);

            paragraphProperties356.Append(paragraphMarkRunProperties356);

            Run run723 = new Run();

            RunProperties runProperties765 = new RunProperties();
            RunFonts runFonts1014 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1024 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1010 = new FontSizeComplexScript() { Val = "22" };

            runProperties765.Append(runFonts1014);
            runProperties765.Append(fontSize1024);
            runProperties765.Append(fontSizeComplexScript1010);
            Text text685 = new Text();
            text685.Text = "07/21/2014";

            run723.Append(runProperties765);
            run723.Append(text685);

            paragraph359.Append(paragraphProperties356);
            paragraph359.Append(run723);

            tableCell203.Append(tableCellProperties203);
            tableCell203.Append(paragraph359);

            TableCell tableCell204 = new TableCell();

            TableCellProperties tableCellProperties204 = new TableCellProperties();
            TableCellWidth tableCellWidth204 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders83 = new TableCellBorders();
            TopBorder topBorder82 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder81 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder87 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder81 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders83.Append(topBorder82);
            tableCellBorders83.Append(leftBorder81);
            tableCellBorders83.Append(bottomBorder87);
            tableCellBorders83.Append(rightBorder81);

            tableCellProperties204.Append(tableCellWidth204);
            tableCellProperties204.Append(tableCellBorders83);

            Paragraph paragraph360 = new Paragraph() { RsidParagraphAddition = "00104E8D", RsidParagraphProperties = "0094109A", RsidRunAdditionDefault = "00104E8D", ParagraphId = "68FF3256", TextId = "77777777" };

            ParagraphProperties paragraphProperties357 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties357 = new ParagraphMarkRunProperties();
            RunFonts runFonts1015 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1025 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1011 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties357.Append(runFonts1015);
            paragraphMarkRunProperties357.Append(fontSize1025);
            paragraphMarkRunProperties357.Append(fontSizeComplexScript1011);

            paragraphProperties357.Append(paragraphMarkRunProperties357);

            Run run724 = new Run();

            RunProperties runProperties766 = new RunProperties();
            RunFonts runFonts1016 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1026 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1012 = new FontSizeComplexScript() { Val = "22" };

            runProperties766.Append(runFonts1016);
            runProperties766.Append(fontSize1026);
            runProperties766.Append(fontSizeComplexScript1012);
            Text text686 = new Text();
            text686.Text = "Added SQL drive 10 GB minimum comment section 13";

            run724.Append(runProperties766);
            run724.Append(text686);

            paragraph360.Append(paragraphProperties357);
            paragraph360.Append(run724);

            tableCell204.Append(tableCellProperties204);
            tableCell204.Append(paragraph360);

            TableCell tableCell205 = new TableCell();

            TableCellProperties tableCellProperties205 = new TableCellProperties();
            TableCellWidth tableCellWidth205 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders84 = new TableCellBorders();
            TopBorder topBorder83 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder82 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder88 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder82 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders84.Append(topBorder83);
            tableCellBorders84.Append(leftBorder82);
            tableCellBorders84.Append(bottomBorder88);
            tableCellBorders84.Append(rightBorder82);

            tableCellProperties205.Append(tableCellWidth205);
            tableCellProperties205.Append(tableCellBorders84);

            Paragraph paragraph361 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "00104E8D", RsidParagraphProperties = "0094109A", RsidRunAdditionDefault = "00104E8D", ParagraphId = "213AF073", TextId = "77777777" };

            ParagraphProperties paragraphProperties358 = new ParagraphProperties();

            Tabs tabs6 = new Tabs();
            TabStop tabStop6 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs6.Append(tabStop6);

            ParagraphMarkRunProperties paragraphMarkRunProperties358 = new ParagraphMarkRunProperties();
            RunFonts runFonts1017 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1027 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1013 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties358.Append(runFonts1017);
            paragraphMarkRunProperties358.Append(fontSize1027);
            paragraphMarkRunProperties358.Append(fontSizeComplexScript1013);

            paragraphProperties358.Append(tabs6);
            paragraphProperties358.Append(paragraphMarkRunProperties358);

            Run run725 = new Run();

            RunProperties runProperties767 = new RunProperties();
            RunFonts runFonts1018 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1028 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1014 = new FontSizeComplexScript() { Val = "22" };

            runProperties767.Append(runFonts1018);
            runProperties767.Append(fontSize1028);
            runProperties767.Append(fontSizeComplexScript1014);
            Text text687 = new Text();
            text687.Text = "Darrell Faerber";

            run725.Append(runProperties767);
            run725.Append(text687);

            paragraph361.Append(paragraphProperties358);
            paragraph361.Append(run725);

            tableCell205.Append(tableCellProperties205);
            tableCell205.Append(paragraph361);

            tableRow50.Append(tableRowProperties34);
            tableRow50.Append(tableCell203);
            tableRow50.Append(tableCell204);
            tableRow50.Append(tableCell205);

            TableRow tableRow51 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "003B502F", RsidTableRowProperties = "005763A4", ParagraphId = "0321723C", TextId = "77777777" };

            TableRowProperties tableRowProperties35 = new TableRowProperties();
            TableRowHeight tableRowHeight35 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties35.Append(tableRowHeight35);

            TableCell tableCell206 = new TableCell();

            TableCellProperties tableCellProperties206 = new TableCellProperties();
            TableCellWidth tableCellWidth206 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders85 = new TableCellBorders();
            TopBorder topBorder84 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder83 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder89 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder83 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders85.Append(topBorder84);
            tableCellBorders85.Append(leftBorder83);
            tableCellBorders85.Append(bottomBorder89);
            tableCellBorders85.Append(rightBorder83);

            tableCellProperties206.Append(tableCellWidth206);
            tableCellProperties206.Append(tableCellBorders85);

            Paragraph paragraph362 = new Paragraph() { RsidParagraphAddition = "003B502F", RsidParagraphProperties = "00104E8D", RsidRunAdditionDefault = "003B502F", ParagraphId = "5BEB9B4A", TextId = "21CBFAC1" };

            ParagraphProperties paragraphProperties359 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties359 = new ParagraphMarkRunProperties();
            RunFonts runFonts1019 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1029 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1015 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties359.Append(runFonts1019);
            paragraphMarkRunProperties359.Append(fontSize1029);
            paragraphMarkRunProperties359.Append(fontSizeComplexScript1015);

            paragraphProperties359.Append(paragraphMarkRunProperties359);

            Run run726 = new Run();

            RunProperties runProperties768 = new RunProperties();
            RunFonts runFonts1020 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1030 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1016 = new FontSizeComplexScript() { Val = "22" };

            runProperties768.Append(runFonts1020);
            runProperties768.Append(fontSize1030);
            runProperties768.Append(fontSizeComplexScript1016);
            Text text688 = new Text();
            text688.Text = "0";

            run726.Append(runProperties768);
            run726.Append(text688);

            Run run727 = new Run() { RsidRunAddition = "00104E8D" };

            RunProperties runProperties769 = new RunProperties();
            RunFonts runFonts1021 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1031 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1017 = new FontSizeComplexScript() { Val = "22" };

            runProperties769.Append(runFonts1021);
            runProperties769.Append(fontSize1031);
            runProperties769.Append(fontSizeComplexScript1017);
            Text text689 = new Text();
            text689.Text = "9";

            run727.Append(runProperties769);
            run727.Append(text689);

            Run run728 = new Run();

            RunProperties runProperties770 = new RunProperties();
            RunFonts runFonts1022 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1032 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1018 = new FontSizeComplexScript() { Val = "22" };

            runProperties770.Append(runFonts1022);
            runProperties770.Append(fontSize1032);
            runProperties770.Append(fontSizeComplexScript1018);
            Text text690 = new Text();
            text690.Text = "/2";

            run728.Append(runProperties770);
            run728.Append(text690);

            Run run729 = new Run() { RsidRunAddition = "00104E8D" };

            RunProperties runProperties771 = new RunProperties();
            RunFonts runFonts1023 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1033 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1019 = new FontSizeComplexScript() { Val = "22" };

            runProperties771.Append(runFonts1023);
            runProperties771.Append(fontSize1033);
            runProperties771.Append(fontSizeComplexScript1019);
            Text text691 = new Text();
            text691.Text = "2";

            run729.Append(runProperties771);
            run729.Append(text691);

            Run run730 = new Run();

            RunProperties runProperties772 = new RunProperties();
            RunFonts runFonts1024 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1034 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1020 = new FontSizeComplexScript() { Val = "22" };

            runProperties772.Append(runFonts1024);
            runProperties772.Append(fontSize1034);
            runProperties772.Append(fontSizeComplexScript1020);
            Text text692 = new Text();
            text692.Text = "/2014";

            run730.Append(runProperties772);
            run730.Append(text692);

            paragraph362.Append(paragraphProperties359);
            paragraph362.Append(run726);
            paragraph362.Append(run727);
            paragraph362.Append(run728);
            paragraph362.Append(run729);
            paragraph362.Append(run730);

            tableCell206.Append(tableCellProperties206);
            tableCell206.Append(paragraph362);

            TableCell tableCell207 = new TableCell();

            TableCellProperties tableCellProperties207 = new TableCellProperties();
            TableCellWidth tableCellWidth207 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders86 = new TableCellBorders();
            TopBorder topBorder85 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder84 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder90 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder84 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders86.Append(topBorder85);
            tableCellBorders86.Append(leftBorder84);
            tableCellBorders86.Append(bottomBorder90);
            tableCellBorders86.Append(rightBorder84);

            tableCellProperties207.Append(tableCellWidth207);
            tableCellProperties207.Append(tableCellBorders86);

            Paragraph paragraph363 = new Paragraph() { RsidParagraphAddition = "003B502F", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "00104E8D", ParagraphId = "78B14D5B", TextId = "4DB9055C" };

            ParagraphProperties paragraphProperties360 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties360 = new ParagraphMarkRunProperties();
            RunFonts runFonts1025 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1035 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1021 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties360.Append(runFonts1025);
            paragraphMarkRunProperties360.Append(fontSize1035);
            paragraphMarkRunProperties360.Append(fontSizeComplexScript1021);

            paragraphProperties360.Append(paragraphMarkRunProperties360);

            Run run731 = new Run();

            RunProperties runProperties773 = new RunProperties();
            RunFonts runFonts1026 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1036 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1022 = new FontSizeComplexScript() { Val = "22" };

            runProperties773.Append(runFonts1026);
            runProperties773.Append(fontSize1036);
            runProperties773.Append(fontSizeComplexScript1022);
            Text text693 = new Text();
            text693.Text = "Added SP2 for SQL 2012";

            run731.Append(runProperties773);
            run731.Append(text693);

            paragraph363.Append(paragraphProperties360);
            paragraph363.Append(run731);

            tableCell207.Append(tableCellProperties207);
            tableCell207.Append(paragraph363);

            TableCell tableCell208 = new TableCell();

            TableCellProperties tableCellProperties208 = new TableCellProperties();
            TableCellWidth tableCellWidth208 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders87 = new TableCellBorders();
            TopBorder topBorder86 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder85 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder91 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder85 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders87.Append(topBorder86);
            tableCellBorders87.Append(leftBorder85);
            tableCellBorders87.Append(bottomBorder91);
            tableCellBorders87.Append(rightBorder85);

            tableCellProperties208.Append(tableCellWidth208);
            tableCellProperties208.Append(tableCellBorders87);

            Paragraph paragraph364 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "003B502F", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "00104E8D", ParagraphId = "44F19657", TextId = "607D6D0B" };

            ParagraphProperties paragraphProperties361 = new ParagraphProperties();

            Tabs tabs7 = new Tabs();
            TabStop tabStop7 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs7.Append(tabStop7);

            ParagraphMarkRunProperties paragraphMarkRunProperties361 = new ParagraphMarkRunProperties();
            RunFonts runFonts1027 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1037 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1023 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties361.Append(runFonts1027);
            paragraphMarkRunProperties361.Append(fontSize1037);
            paragraphMarkRunProperties361.Append(fontSizeComplexScript1023);

            paragraphProperties361.Append(tabs7);
            paragraphProperties361.Append(paragraphMarkRunProperties361);

            Run run732 = new Run();

            RunProperties runProperties774 = new RunProperties();
            RunFonts runFonts1028 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1038 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1024 = new FontSizeComplexScript() { Val = "22" };

            runProperties774.Append(runFonts1028);
            runProperties774.Append(fontSize1038);
            runProperties774.Append(fontSizeComplexScript1024);
            Text text694 = new Text();
            text694.Text = "Philip E Scherry";

            run732.Append(runProperties774);
            run732.Append(text694);

            paragraph364.Append(paragraphProperties361);
            paragraph364.Append(run732);

            tableCell208.Append(tableCellProperties208);
            tableCell208.Append(paragraph364);

            tableRow51.Append(tableRowProperties35);
            tableRow51.Append(tableCell206);
            tableRow51.Append(tableCell207);
            tableRow51.Append(tableCell208);

            TableRow tableRow52 = new TableRow() { RsidTableRowMarkRevision = "003E56F4", RsidTableRowAddition = "00E8117E", RsidTableRowProperties = "005763A4", ParagraphId = "0A103113", TextId = "77777777" };

            TableRowProperties tableRowProperties36 = new TableRowProperties();
            TableRowHeight tableRowHeight36 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties36.Append(tableRowHeight36);

            TableCell tableCell209 = new TableCell();

            TableCellProperties tableCellProperties209 = new TableCellProperties();
            TableCellWidth tableCellWidth209 = new TableCellWidth() { Width = "1676", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders88 = new TableCellBorders();
            TopBorder topBorder87 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder86 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder92 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder86 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders88.Append(topBorder87);
            tableCellBorders88.Append(leftBorder86);
            tableCellBorders88.Append(bottomBorder92);
            tableCellBorders88.Append(rightBorder86);

            tableCellProperties209.Append(tableCellWidth209);
            tableCellProperties209.Append(tableCellBorders88);

            Paragraph paragraph365 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "00104E8D", RsidRunAdditionDefault = "00E8117E", ParagraphId = "655E0B0B", TextId = "2A3765E5" };

            ParagraphProperties paragraphProperties362 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties362 = new ParagraphMarkRunProperties();
            RunFonts runFonts1029 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1039 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1025 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties362.Append(runFonts1029);
            paragraphMarkRunProperties362.Append(fontSize1039);
            paragraphMarkRunProperties362.Append(fontSizeComplexScript1025);

            paragraphProperties362.Append(paragraphMarkRunProperties362);

            Run run733 = new Run();

            RunProperties runProperties775 = new RunProperties();
            RunFonts runFonts1030 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1040 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1026 = new FontSizeComplexScript() { Val = "22" };

            runProperties775.Append(runFonts1030);
            runProperties775.Append(fontSize1040);
            runProperties775.Append(fontSizeComplexScript1026);
            Text text695 = new Text();
            text695.Text = "07/22/2015";

            run733.Append(runProperties775);
            run733.Append(text695);

            paragraph365.Append(paragraphProperties362);
            paragraph365.Append(run733);

            tableCell209.Append(tableCellProperties209);
            tableCell209.Append(paragraph365);

            TableCell tableCell210 = new TableCell();

            TableCellProperties tableCellProperties210 = new TableCellProperties();
            TableCellWidth tableCellWidth210 = new TableCellWidth() { Width = "8044", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders89 = new TableCellBorders();
            TopBorder topBorder88 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder87 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder93 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder87 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders89.Append(topBorder88);
            tableCellBorders89.Append(leftBorder87);
            tableCellBorders89.Append(bottomBorder93);
            tableCellBorders89.Append(rightBorder87);

            tableCellProperties210.Append(tableCellWidth210);
            tableCellProperties210.Append(tableCellBorders89);

            Paragraph paragraph366 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "00E8117E", ParagraphId = "63DAA259", TextId = "524DC51D" };

            ParagraphProperties paragraphProperties363 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties363 = new ParagraphMarkRunProperties();
            RunFonts runFonts1031 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1041 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1027 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties363.Append(runFonts1031);
            paragraphMarkRunProperties363.Append(fontSize1041);
            paragraphMarkRunProperties363.Append(fontSizeComplexScript1027);

            paragraphProperties363.Append(paragraphMarkRunProperties363);

            Run run734 = new Run();

            RunProperties runProperties776 = new RunProperties();
            RunFonts runFonts1032 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1042 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1028 = new FontSizeComplexScript() { Val = "22" };

            runProperties776.Append(runFonts1032);
            runProperties776.Append(fontSize1042);
            runProperties776.Append(fontSizeComplexScript1028);
            Text text696 = new Text();
            text696.Text = "Removed network switch info";

            run734.Append(runProperties776);
            run734.Append(text696);

            Run run735 = new Run() { RsidRunAddition = "00DE0CB0" };

            RunProperties runProperties777 = new RunProperties();
            RunFonts runFonts1033 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1043 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1029 = new FontSizeComplexScript() { Val = "22" };

            runProperties777.Append(runFonts1033);
            runProperties777.Append(fontSize1043);
            runProperties777.Append(fontSizeComplexScript1029);
            Text text697 = new Text();
            text697.Text = ", Added Citrix Reboots & responsibility matrix";

            run735.Append(runProperties777);
            run735.Append(text697);

            Run run736 = new Run() { RsidRunAddition = "003C2F92" };

            RunProperties runProperties778 = new RunProperties();
            RunFonts runFonts1034 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1044 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1030 = new FontSizeComplexScript() { Val = "22" };

            runProperties778.Append(runFonts1034);
            runProperties778.Append(fontSize1044);
            runProperties778.Append(fontSizeComplexScript1030);
            Text text698 = new Text();
            text698.Text = ", Added Linux volume info";

            run736.Append(runProperties778);
            run736.Append(text698);

            paragraph366.Append(paragraphProperties363);
            paragraph366.Append(run734);
            paragraph366.Append(run735);
            paragraph366.Append(run736);

            tableCell210.Append(tableCellProperties210);
            tableCell210.Append(paragraph366);

            TableCell tableCell211 = new TableCell();

            TableCellProperties tableCellProperties211 = new TableCellProperties();
            TableCellWidth tableCellWidth211 = new TableCellWidth() { Width = "2610", Type = TableWidthUnitValues.Dxa };

            TableCellBorders tableCellBorders90 = new TableCellBorders();
            TopBorder topBorder89 = new TopBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            LeftBorder leftBorder88 = new LeftBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder94 = new BottomBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            RightBorder rightBorder88 = new RightBorder() { Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders90.Append(topBorder89);
            tableCellBorders90.Append(leftBorder88);
            tableCellBorders90.Append(bottomBorder94);
            tableCellBorders90.Append(rightBorder88);

            tableCellProperties211.Append(tableCellWidth211);
            tableCellProperties211.Append(tableCellBorders90);

            Paragraph paragraph367 = new Paragraph() { RsidParagraphAddition = "00E8117E", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "00E8117E", ParagraphId = "55932C1D", TextId = "5C946AC6" };

            ParagraphProperties paragraphProperties364 = new ParagraphProperties();

            Tabs tabs8 = new Tabs();
            TabStop tabStop8 = new TabStop() { Val = TabStopValues.Left, Position = 2250 };

            tabs8.Append(tabStop8);

            ParagraphMarkRunProperties paragraphMarkRunProperties364 = new ParagraphMarkRunProperties();
            RunFonts runFonts1035 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1045 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1031 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties364.Append(runFonts1035);
            paragraphMarkRunProperties364.Append(fontSize1045);
            paragraphMarkRunProperties364.Append(fontSizeComplexScript1031);

            paragraphProperties364.Append(tabs8);
            paragraphProperties364.Append(paragraphMarkRunProperties364);

            Run run737 = new Run();

            RunProperties runProperties779 = new RunProperties();
            RunFonts runFonts1036 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1046 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1032 = new FontSizeComplexScript() { Val = "22" };

            runProperties779.Append(runFonts1036);
            runProperties779.Append(fontSize1046);
            runProperties779.Append(fontSizeComplexScript1032);
            Text text699 = new Text();
            text699.Text = "Philip E Scherry";

            run737.Append(runProperties779);
            run737.Append(text699);

            paragraph367.Append(paragraphProperties364);
            paragraph367.Append(run737);

            tableCell211.Append(tableCellProperties211);
            tableCell211.Append(paragraph367);

            tableRow52.Append(tableRowProperties36);
            tableRow52.Append(tableCell209);
            tableRow52.Append(tableCell210);
            tableRow52.Append(tableCell211);

            table9.Append(tableProperties9);
            table9.Append(tableGrid9);
            table9.Append(tableRow42);
            table9.Append(tableRow43);
            table9.Append(tableRow44);
            table9.Append(tableRow45);
            table9.Append(tableRow46);
            table9.Append(tableRow47);
            table9.Append(tableRow48);
            table9.Append(tableRow49);
            table9.Append(tableRow50);
            table9.Append(tableRow51);
            table9.Append(tableRow52);

            Paragraph paragraph368 = new Paragraph() { RsidParagraphMarkRevision = "003E56F4", RsidParagraphAddition = "00466521", RsidParagraphProperties = "005763A4", RsidRunAdditionDefault = "00466521", ParagraphId = "62FB4B10", TextId = "77777777" };

            ParagraphProperties paragraphProperties365 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId25 = new ParagraphStyleId() { Val = "Heading2" };

            ParagraphMarkRunProperties paragraphMarkRunProperties365 = new ParagraphMarkRunProperties();
            RunFonts runFonts1037 = new RunFonts() { AsciiTheme = ThemeFontValues.MajorHighAnsi, HighAnsiTheme = ThemeFontValues.MajorHighAnsi };
            FontSize fontSize1047 = new FontSize() { Val = "22" };
            FontSizeComplexScript fontSizeComplexScript1033 = new FontSizeComplexScript() { Val = "22" };

            paragraphMarkRunProperties365.Append(runFonts1037);
            paragraphMarkRunProperties365.Append(fontSize1047);
            paragraphMarkRunProperties365.Append(fontSizeComplexScript1033);

            paragraphProperties365.Append(paragraphStyleId25);
            paragraphProperties365.Append(paragraphMarkRunProperties365);

            paragraph368.Append(paragraphProperties365);

            SectionProperties sectionProperties1 = new SectionProperties() { RsidRPr = "003E56F4", RsidR = "00466521", RsidSect = "003A7AC6" };
            HeaderReference headerReference1 = new HeaderReference() { Type = HeaderFooterValues.Default, Id = "rId12" };
            FooterReference footerReference1 = new FooterReference() { Type = HeaderFooterValues.Default, Id = "rId13" };
            PageSize pageSize1 = new PageSize() { Width = (UInt32Value)15840U, Height = (UInt32Value)12240U, Orient = PageOrientationValues.Landscape };
            PageMargin pageMargin1 = new PageMargin() { Top = 1080, Right = (UInt32Value)1440U, Bottom = 1080, Left = (UInt32Value)1440U, Header = (UInt32Value)720U, Footer = (UInt32Value)720U, Gutter = (UInt32Value)0U };
            Columns columns1 = new Columns() { Space = "720" };
            DocGrid docGrid1 = new DocGrid() { LinePitch = 360 };

            sectionProperties1.Append(headerReference1);
            sectionProperties1.Append(footerReference1);
            sectionProperties1.Append(pageSize1);
            sectionProperties1.Append(pageMargin1);
            sectionProperties1.Append(columns1);
            sectionProperties1.Append(docGrid1);

            body1.Append(paragraph1);
            body1.Append(paragraph2);
            body1.Append(paragraph3);
            body1.Append(paragraph4);
            body1.Append(paragraph5);
            body1.Append(paragraph6);
            body1.Append(paragraph7);
            body1.Append(paragraph8);
            body1.Append(paragraph9);
            body1.Append(paragraph10);
            body1.Append(paragraph11);
            body1.Append(paragraph12);
            body1.Append(paragraph13);
            body1.Append(paragraph14);
            body1.Append(paragraph15);
            body1.Append(paragraph16);
            body1.Append(paragraph17);
            body1.Append(paragraph18);
            body1.Append(paragraph19);
            body1.Append(paragraph20);
            body1.Append(paragraph21);
            body1.Append(paragraph22);
            body1.Append(paragraph23);
            body1.Append(paragraph24);
            body1.Append(paragraph25);
            body1.Append(paragraph26);
            body1.Append(paragraph27);
            body1.Append(paragraph28);
            body1.Append(paragraph29);
            body1.Append(paragraph30);
            body1.Append(paragraph31);
            body1.Append(paragraph32);
            body1.Append(paragraph33);
            body1.Append(paragraph34);
            body1.Append(paragraph35);
            body1.Append(paragraph36);
            body1.Append(paragraph37);
            body1.Append(paragraph38);
            body1.Append(paragraph39);
            body1.Append(paragraph40);
            body1.Append(paragraph41);
            body1.Append(paragraph42);
            body1.Append(paragraph43);
            body1.Append(paragraph44);
            body1.Append(paragraph45);
            body1.Append(paragraph46);
            body1.Append(paragraph47);
            body1.Append(paragraph48);
            body1.Append(paragraph49);
            body1.Append(paragraph50);
            body1.Append(paragraph51);
            body1.Append(paragraph52);
            body1.Append(paragraph53);
            body1.Append(paragraph54);
            body1.Append(paragraph55);
            body1.Append(paragraph56);
            body1.Append(table1);
            body1.Append(paragraph73);
            body1.Append(paragraph74);
            body1.Append(paragraph75);
            body1.Append(paragraph76);
            body1.Append(paragraph77);
            body1.Append(paragraph78);
            body1.Append(paragraph79);
            body1.Append(paragraph80);
            body1.Append(paragraph81);
            body1.Append(paragraph82);
            body1.Append(paragraph83);
            body1.Append(table2);
            body1.Append(paragraph123);
            body1.Append(paragraph124);
            body1.Append(paragraph125);
            body1.Append(table3);
            body1.Append(paragraph156);
            body1.Append(paragraph157);
            body1.Append(paragraph158);
            body1.Append(paragraph159);
            body1.Append(table4);
            body1.Append(paragraph172);
            body1.Append(paragraph173);
            body1.Append(paragraph174);
            body1.Append(paragraph175);
            body1.Append(paragraph176);
            body1.Append(paragraph177);
            body1.Append(paragraph178);
            body1.Append(paragraph179);
            body1.Append(paragraph180);
            body1.Append(paragraph181);
            body1.Append(paragraph182);
            body1.Append(paragraph183);
            body1.Append(paragraph184);
            body1.Append(paragraph185);
            body1.Append(paragraph186);
            body1.Append(paragraph187);
            body1.Append(paragraph188);
            body1.Append(paragraph189);
            body1.Append(paragraph190);
            body1.Append(paragraph191);
            body1.Append(paragraph192);
            body1.Append(paragraph193);
            body1.Append(paragraph194);
            body1.Append(paragraph195);
            body1.Append(paragraph196);
            body1.Append(paragraph197);
            body1.Append(paragraph198);
            body1.Append(table5);
            body1.Append(paragraph249);
            body1.Append(paragraph250);
            body1.Append(paragraph251);
            body1.Append(paragraph252);
            body1.Append(paragraph253);
            body1.Append(paragraph254);
            body1.Append(paragraph255);
            body1.Append(paragraph256);
            body1.Append(paragraph257);
            body1.Append(paragraph258);
            body1.Append(paragraph259);
            body1.Append(paragraph260);
            body1.Append(paragraph261);
            body1.Append(paragraph262);
            body1.Append(paragraph263);
            body1.Append(paragraph264);
            body1.Append(table6);
            body1.Append(paragraph285);
            body1.Append(paragraph286);
            body1.Append(paragraph287);
            body1.Append(paragraph288);
            body1.Append(paragraph289);
            body1.Append(paragraph290);
            body1.Append(paragraph291);
            body1.Append(paragraph292);
            body1.Append(paragraph293);
            body1.Append(paragraph294);
            body1.Append(paragraph295);
            body1.Append(paragraph296);
            body1.Append(paragraph297);
            body1.Append(paragraph298);
            body1.Append(table7);
            body1.Append(paragraph311);
            body1.Append(paragraph312);
            body1.Append(paragraph313);
            body1.Append(paragraph314);
            body1.Append(paragraph315);
            body1.Append(paragraph316);
            body1.Append(paragraph317);
            body1.Append(paragraph318);
            body1.Append(paragraph319);
            body1.Append(paragraph320);
            body1.Append(paragraph321);
            body1.Append(paragraph322);
            body1.Append(paragraph323);
            body1.Append(bookmarkEnd3);
            body1.Append(paragraph324);
            body1.Append(table8);
            body1.Append(paragraph334);
            body1.Append(table9);
            body1.Append(paragraph368);
            body1.Append(sectionProperties1);

            document1.Append(body1);

            mainDocumentPart1.Document = document1;
        }
Esempio n. 25
0
        private static void AddTitleRow(DataTable table, TableStyle tableStyle, Table wordTable)
        {
            // Create a row.
            TableRow tRow = new TableRow();

            // Create a cell.
            TableCell tCell = new TableCell();

            TableCellProperties tCellProperties = new TableCellProperties();

            // Set Cell Color
            Shading tCellColor = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = System.Drawing.ColorTranslator.ToHtml(tableStyle.TitleBackgroundColor) };
            tCellProperties.Append(tCellColor);

            // Set Cell Span
            GridSpan tCellSpan = new GridSpan() { Val = table.Columns.Count };
            tCellProperties.Append(tCellSpan);

            // Append properties to the cell
            tCell.Append(tCellProperties);

            ParagraphProperties paragProperties = new ParagraphProperties();
            Justification justification1 = new Justification() { Val = JustificationValues.Center };
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines() { After = "0" };
            paragProperties.Append(justification1);
            paragProperties.Append(spacingBetweenLines1);

            var titleParagraph = new Paragraph();
            titleParagraph.Append(paragProperties);

            var run = new Run(new Text(tableStyle.Title));
            ApplyFontProperties(tableStyle, RowIdentification.Title, run);

            titleParagraph.Append(run);

            // Specify the table cell content.
            tCell.Append(titleParagraph);

            // Append the table cell to the table row.
            tRow.Append(tCell);

            // Append the table row to the table.
            wordTable.Append(tRow);
        }
        // Creates an Table instance and adds its children.
        public static Table GenerateTable(GenerationData data)
        {
            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableWidth      tableWidth1      = new TableWidth()
            {
                Width = "0", Type = TableWidthUnitValues.Auto
            };
            TableIndentation tableIndentation1 = new TableIndentation()
            {
                Width = 10, Type = TableWidthUnitValues.Dxa
            };

            TableBorders tableBorders1 = new TableBorders();
            TopBorder    topBorder1    = new TopBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder1 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder1 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder1 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };

            tableBorders1.Append(topBorder1);
            tableBorders1.Append(leftBorder1);
            tableBorders1.Append(bottomBorder1);
            tableBorders1.Append(rightBorder1);
            tableBorders1.Append(insideHorizontalBorder1);
            tableBorders1.Append(insideVerticalBorder1);

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TableCellLeftMargin    tableCellLeftMargin1    = new TableCellLeftMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };
            TableCellRightMargin tableCellRightMargin1 = new TableCellRightMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };

            tableCellMarginDefault1.Append(tableCellLeftMargin1);
            tableCellMarginDefault1.Append(tableCellRightMargin1);
            TableLook tableLook1 = new TableLook()
            {
                Val = "0000", FirstRow = false, LastRow = false, FirstColumn = false, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = false
            };

            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableIndentation1);
            tableProperties1.Append(tableBorders1);
            tableProperties1.Append(tableCellMarginDefault1);
            tableProperties1.Append(tableLook1);

            TableGrid  tableGrid1  = new TableGrid();
            GridColumn gridColumn1 = new GridColumn()
            {
                Width = "2550"
            };
            GridColumn gridColumn2 = new GridColumn()
            {
                Width = "5700"
            };
            GridColumn gridColumn3 = new GridColumn()
            {
                Width = "360"
            };

            tableGrid1.Append(gridColumn1);
            tableGrid1.Append(gridColumn2);
            tableGrid1.Append(gridColumn3);

            TableRow tableRow1 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", ParagraphId = "5B63C23B", TextId = "77777777"
            };

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth      tableCellWidth1      = new TableCellWidth()
            {
                Width = "800", Type = TableWidthUnitValues.Dxa
            };
            GridSpan gridSpan1 = new GridSpan()
            {
                Val = 3
            };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            TopBorder        topBorder2        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder2 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder2 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder2 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders1.Append(topBorder2);
            tableCellBorders1.Append(leftBorder2);
            tableCellBorders1.Append(bottomBorder2);
            tableCellBorders1.Append(rightBorder2);

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(gridSpan1);
            tableCellProperties1.Append(tableCellBorders1);

            Paragraph paragraph1 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "459760A7", TextId = "77777777"
            };

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            Bold          bold1          = new Bold();
            FontSize      fontSize1      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties1.Append(bold1);
            runProperties1.Append(fontSize1);
            runProperties1.Append(fontSizeComplexScript1);
            Text text1 = new Text();

            text1.Text = DocumentMetadataTexts.GetText(MetadataTexts.CV_ADDITIONAL_COURSES, data.Language)?.ToUpper();

            run1.Append(runProperties1);
            run1.Append(text1);

            Run run2 = new Run();

            RunProperties runProperties2 = new RunProperties();
            FontSize      fontSize2      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties2.Append(fontSize2);
            runProperties2.Append(fontSizeComplexScript2);
            Text text2 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text2.Text = "  ";

            run2.Append(runProperties2);
            run2.Append(text2);

            paragraph1.Append(run1);
            paragraph1.Append(run2);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph1);

            tableRow1.Append(tableCell1);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);

            var courses = data.AdditionalCourses;

            foreach (var course in courses)
            {
                TableRow generateRow = CreateAdditionalCourseRow(course, data);
                table1.Append(generateRow);
            }

            return(table1);
        }
Esempio n. 27
0
        /// <summary>
        /// Gets a category header row.
        /// </summary>
        /// <remarks>
        /// This method is used in Document assembly to create the details row for a category on the job description page
        /// </remarks>
        /// <returns>An assembled <see cref="T:DocumentFormat.OpenXml.Wordprocessing.TableRow"/></returns>
        public TableRow GenerateDetailsRow()
        {
            TableRow           tableRow1           = new TableRow();
            TableRowProperties tableRowProperties1 = new TableRowProperties();
            CantSplit          cantSplit1          = new CantSplit();
            TableRowHeight     tableRowHeight1     = new TableRowHeight()
            {
                Val = (UInt32Value)1063U
            };
            TableJustification tableJustification1 = new TableJustification()
            {
                Val = TableRowAlignmentValues.Center
            };

            tableRowProperties1.Append(cantSplit1);
            tableRowProperties1.Append(tableRowHeight1);
            tableRowProperties1.Append(tableJustification1);

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth      tableCellWidth1      = new TableCellWidth()
            {
                Width = "535", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            TopBorder        topBorder1        = new TopBorder()
            {
                Val = BorderValues.Nil
            };

            tableCellBorders1.Append(topBorder1);
            Shading shading1 = new Shading()
            {
                Val = ShadingPatternValues.Clear, Color = "auto", Fill = "D9D9D9"
            };

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(tableCellBorders1);
            tableCellProperties1.Append(shading1);

            Paragraph paragraph1 = new Paragraph();

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            Justification       justification1       = new Justification()
            {
                Val = JustificationValues.Center
            };

            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
            RunStyle runStyle1 = new RunStyle()
            {
                Val = "TimesLarge"
            };

            paragraphMarkRunProperties1.Append(runStyle1);

            paragraphProperties1.Append(justification1);
            paragraphProperties1.Append(paragraphMarkRunProperties1);

            paragraph1.Append(paragraphProperties1);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph1);

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth      tableCellWidth2      = new TableCellWidth()
            {
                Width = "545", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders2 = new TableCellBorders();
            TopBorder        topBorder2        = new TopBorder()
            {
                Val = BorderValues.Nil
            };

            tableCellBorders2.Append(topBorder2);
            Shading shading2 = new Shading()
            {
                Val = ShadingPatternValues.Clear, Color = "auto", Fill = "D9D9D9"
            };

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(tableCellBorders2);
            tableCellProperties2.Append(shading2);

            Paragraph paragraph2 = new Paragraph();

            ParagraphProperties paragraphProperties2 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();
            RunStyle runStyle2 = new RunStyle()
            {
                Val = "TimesLarge"
            };

            paragraphMarkRunProperties2.Append(runStyle2);

            paragraphProperties2.Append(paragraphMarkRunProperties2);

            paragraph2.Append(paragraphProperties2);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph2);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth      tableCellWidth3      = new TableCellWidth()
            {
                Width = "4902", Type = TableWidthUnitValues.Dxa
            };
            TableCellBorders tableCellBorders3 = new TableCellBorders();
            TopBorder        topBorder3        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder3 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder3 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder3 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };

            tableCellBorders3.Append(topBorder3);
            tableCellBorders3.Append(leftBorder3);
            tableCellBorders3.Append(bottomBorder3);
            tableCellBorders3.Append(rightBorder3);

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(tableCellBorders3);
            foreach (PositionDescriptionItem p in PositionDescriptionItems)
            {
                Paragraph paragraph3 = new Paragraph();

                ParagraphProperties paragraphProperties3 = new ParagraphProperties();
                SpacingBetweenLines spacingBetweenLines3 = new SpacingBetweenLines()
                {
                    After = "100"
                };
                Indentation indentation1 = new Indentation()
                {
                    Left = "0", Hanging = "0"
                };

                ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();
                RunStyle runStyle3 = new RunStyle()
                {
                    Val = "TimesLarge"
                };
                Bold bold1 = new Bold()
                {
                    Val = false
                };
                Caps caps1 = new Caps()
                {
                    Val = false
                };
                FontSize fontSize1 = new FontSize()
                {
                    Val = "16"
                };
                FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript()
                {
                    Val = "16"
                };

                paragraphMarkRunProperties3.Append(runStyle3);
                paragraphMarkRunProperties3.Append(bold1);
                paragraphMarkRunProperties3.Append(caps1);
                paragraphMarkRunProperties3.Append(fontSize1);
                paragraphMarkRunProperties3.Append(fontSizeComplexScript1);
                paragraphProperties3.Append(spacingBetweenLines3);
                paragraphProperties3.Append(paragraphMarkRunProperties3);
                paragraphProperties3.Append(indentation1);
                ProofError proofError1 = new ProofError()
                {
                    Type = ProofingErrorValues.SpellStart
                };

                Run run1 = new Run();

                RunProperties runProperties1 = new RunProperties();
                RunStyle      runStyle4      = new RunStyle()
                {
                    Val = "TimesLarge"
                };
                Bold bold2 = new Bold()
                {
                    Val = false
                };
                Caps caps2 = new Caps()
                {
                    Val = false
                };
                FontSize fontSize2 = new FontSize()
                {
                    Val = "16"
                };
                FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript()
                {
                    Val = "16"
                };

                runProperties1.Append(runStyle4);
                runProperties1.Append(bold2);
                runProperties1.Append(caps2);
                runProperties1.Append(fontSize2);
                runProperties1.Append(fontSizeComplexScript2);
                Text text1 = new Text();
                text1.Text = p.Detail;

                run1.Append(runProperties1);
                run1.Append(text1);
                ProofError proofError2 = new ProofError()
                {
                    Type = ProofingErrorValues.SpellEnd
                };

                paragraph3.Append(paragraphProperties3);
                //paragraph3.Append(proofError1);
                paragraph3.Append(run1);
                //paragraph3.Append(proofError2);


                tableCell3.Append(paragraph3);
            } // To Here?
            tableCell3.Append(tableCellProperties3);
            TableCell tableCell4 = new TableCell();

            TableCellProperties tableCellProperties4 = new TableCellProperties();
            TableCellWidth      tableCellWidth4      = new TableCellWidth()
            {
                Width = "5538", Type = TableWidthUnitValues.Dxa
            };
            TableCellBorders tableCellBorders4 = new TableCellBorders();
            TopBorder        topBorder4        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder4 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder4 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder4 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "auto", Size = (UInt32Value)4U, Space = (UInt32Value)0U
            };

            tableCellBorders4.Append(topBorder4);
            tableCellBorders4.Append(leftBorder4);
            tableCellBorders4.Append(bottomBorder4);
            tableCellBorders4.Append(rightBorder4);
            GridSpan gridSpan1 = new GridSpan()
            {
                Val = 2
            };

            tableCellProperties4.Append(tableCellWidth4);
            tableCellProperties4.Append(gridSpan1);
            tableCellProperties4.Append(tableCellBorders4);
            int bulletListCount = 1;

            foreach (PerformanceStandardItem p in PerformanceStandardItems)
            {
                Paragraph           paragraph4           = new Paragraph();
                ParagraphProperties paragraphProperties4 = new ParagraphProperties();
                SpacingBetweenLines spacingBetweenLines4 = new SpacingBetweenLines()
                {
                    After = "100"
                };

                ParagraphMarkRunProperties paragraphMarkRunProperties4 = new ParagraphMarkRunProperties();
                FontSize fontSize3 = new FontSize()
                {
                    Val = "16"
                };
                FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript()
                {
                    Val = "16"
                };
                Indentation indentation4 = new Indentation()
                {
                    Left = "270", Hanging = "270"
                };

                paragraphMarkRunProperties4.Append(fontSize3);
                paragraphMarkRunProperties4.Append(fontSizeComplexScript3);
                paragraphProperties4.Append(indentation4);
                paragraphProperties4.Append(spacingBetweenLines4);
                paragraphProperties4.Append(paragraphMarkRunProperties4);
                ProofError proofError3 = new ProofError()
                {
                    Type = ProofingErrorValues.SpellStart
                };

                Run run2 = new Run();

                RunProperties runProperties2 = new RunProperties();
                FontSize      fontSize4      = new FontSize()
                {
                    Val = "16"
                };
                FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript()
                {
                    Val = "16"
                };

                runProperties2.Append(fontSize4);
                runProperties2.Append(fontSizeComplexScript4);
                Text text2 = new Text();
                text2.Text = $"{Letter}{bulletListCount}: {p.Detail}";
                bulletListCount++;
                run2.Append(runProperties2);
                run2.Append(text2);
                ProofError proofError4 = new ProofError()
                {
                    Type = ProofingErrorValues.SpellEnd
                };

                paragraph4.Append(paragraphProperties4);
                paragraph4.Append(proofError3);
                paragraph4.Append(run2);
                paragraph4.Append(proofError4);


                tableCell4.Append(paragraph4);
            }
            tableCell4.Append(tableCellProperties4);
            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);
            tableRow1.Append(tableCell2);
            tableRow1.Append(tableCell3);
            tableRow1.Append(tableCell4);
            return(tableRow1);
        }
Esempio n. 28
0
        public TableRow GenerateTableRow(CellProps[] cellProps, UInt32Value height)
        {
            TableRow tableRow1 = new TableRow();
            TableRowProperties tableRowProperties1 = generateTableRowProperties(height);
            tableRow1.Append(tableRowProperties1);

            foreach (CellProps cp in cellProps) {
                if (cp.span == 0) continue;
                TableCell tableCell1 = new TableCell();
                TableCellProperties tableCellProperties1 = new TableCellProperties();

                TableCellBorders tableCellBorders1 = generateTableCellBordersPlain();
                Shading shading1 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };
                NoWrap noWrap1 = new NoWrap();
                TableCellVerticalAlignment tableCellVerticalAlignment1 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
                HideMark hideMark1 = new HideMark();

                if (cp.span > 1) {
                    GridSpan span = new GridSpan() { Val = (Int32Value)cp.span };
                    tableCellProperties1.Append(span);
                }

                tableCellProperties1.Append(tableCellBorders1);
                tableCellProperties1.Append(shading1);
                tableCellProperties1.Append(noWrap1);
                tableCellProperties1.Append(tableCellVerticalAlignment1);
                tableCellProperties1.Append(hideMark1);

                Paragraph paragraph1 = new Paragraph();

                ParagraphProperties paragraphProperties1 = new ParagraphProperties();
                Justification justification1 = new Justification() { Val = cp.align };

                ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
                FontSize fontSize1 = new FontSize() { Val = "18" };
                FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript() { Val = "18" };

                paragraphMarkRunProperties1.Append(fontSize1);
                paragraphMarkRunProperties1.Append(fontSizeComplexScript1);

                paragraphProperties1.Append(justification1);
                paragraphProperties1.Append(paragraphMarkRunProperties1);

                Run run1 = new Run();

                RunProperties runProperties1 = new RunProperties();
                FontSize fontSize2 = new FontSize() { Val = "18" };
                FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript() { Val = "18" };

                runProperties1.Append(fontSize2);
                runProperties1.Append(fontSizeComplexScript2);

                run1.Append(runProperties1);
                if (cp.text != null) {
                    Text text1 = new Text();
                    text1.Text = cp.text;
                    run1.Append(text1);
                }

                paragraph1.Append(paragraphProperties1);
                paragraph1.Append(run1);

                tableCell1.Append(tableCellProperties1);
                tableCell1.Append(paragraph1);
                tableRow1.Append(tableCell1);

            }

            return tableRow1;
        }
Esempio n. 29
0
        private static TableRow CreateItemRow(string label, string value)
        {
            TableRow tableRow3 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", RsidTableRowProperties = "009E39C2", ParagraphId = "735CF69D", TextId = "77777777"
            };

            TableCell tableCell4 = new TableCell();

            TableCellProperties tableCellProperties4 = new TableCellProperties();
            TableCellWidth      tableCellWidth4      = new TableCellWidth()
            {
                Width = "2552", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders4 = new TableCellBorders();
            TopBorder        topBorder5        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder5 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder5 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder5 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders4.Append(topBorder5);
            tableCellBorders4.Append(leftBorder5);
            tableCellBorders4.Append(bottomBorder5);
            tableCellBorders4.Append(rightBorder5);

            tableCellProperties4.Append(tableCellWidth4);
            tableCellProperties4.Append(tableCellBorders4);

            Paragraph paragraph4 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "5BC1A4D3", TextId = "77777777"
            };

            Run run5 = new Run();

            RunProperties runProperties5 = new RunProperties();
            FontSize      fontSize5      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript5 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties5.Append(fontSize5);
            runProperties5.Append(fontSizeComplexScript5);
            Text text5 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text5.Text = $"{label}: ";

            run5.Append(runProperties5);
            run5.Append(text5);

            paragraph4.Append(run5);

            tableCell4.Append(tableCellProperties4);
            tableCell4.Append(paragraph4);

            TableCell tableCell5 = new TableCell();

            TableCellProperties tableCellProperties5 = new TableCellProperties();
            TableCellWidth      tableCellWidth5      = new TableCellWidth()
            {
                Width = "6379", Type = TableWidthUnitValues.Dxa
            };
            GridSpan gridSpan3 = new GridSpan()
            {
                Val = 2
            };

            TableCellBorders tableCellBorders5 = new TableCellBorders();
            TopBorder        topBorder6        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder6 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)1U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder6 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder6 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders5.Append(topBorder6);
            tableCellBorders5.Append(leftBorder6);
            tableCellBorders5.Append(bottomBorder6);
            tableCellBorders5.Append(rightBorder6);

            tableCellProperties5.Append(tableCellWidth5);
            tableCellProperties5.Append(gridSpan3);
            tableCellProperties5.Append(tableCellBorders5);

            Paragraph paragraph5 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "2EDD1AE1", TextId = "566FE178"
            };

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines()
            {
                After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto
            };
            Indentation indentation1 = new Indentation()
            {
                Left = "144"
            };

            paragraphProperties1.Append(spacingBetweenLines1);
            paragraphProperties1.Append(indentation1);

            Run run6 = new Run();

            RunProperties runProperties6 = new RunProperties();
            FontSize      fontSize6      = new FontSize()
            {
                Val = "21"
            };
            FontSizeComplexScript fontSizeComplexScript6 = new FontSizeComplexScript()
            {
                Val = "21"
            };

            runProperties6.Append(fontSize6);
            runProperties6.Append(fontSizeComplexScript6);
            Text text6 = new Text();

            text6.Text = value;

            run6.Append(runProperties6);
            run6.Append(text6);

            paragraph5.Append(paragraphProperties1);
            paragraph5.Append(run6);

            tableCell5.Append(tableCellProperties5);
            tableCell5.Append(paragraph5);

            tableRow3.Append(tableCell4);
            tableRow3.Append(tableCell5);

            return(tableRow3);
        }
        private static TableRow GenerateHeadline(GenerationData data)
        {
            TableRow tableRow1 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", RsidTableRowProperties = "0007641E", ParagraphId = "4B076042", TextId = "77777777"
            };

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth      tableCellWidth1      = new TableCellWidth()
            {
                Width = "8610", Type = TableWidthUnitValues.Dxa
            };
            GridSpan gridSpan1 = new GridSpan()
            {
                Val = 3
            };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            TopBorder        topBorder2        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder2 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder2 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder2 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders1.Append(topBorder2);
            tableCellBorders1.Append(leftBorder2);
            tableCellBorders1.Append(bottomBorder2);
            tableCellBorders1.Append(rightBorder2);

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(gridSpan1);
            tableCellProperties1.Append(tableCellBorders1);

            Paragraph paragraph1 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "7E6D8800", TextId = "77777777"
            };

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            Bold          bold1          = new Bold();
            FontSize      fontSize1      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties1.Append(bold1);
            runProperties1.Append(fontSize1);
            runProperties1.Append(fontSizeComplexScript1);
            Text text1 = new Text();

            text1.Text = DocumentMetadataTexts.GetText(MetadataTexts.CV_EDUCATION, data.Language)?.ToUpper();

            run1.Append(runProperties1);
            run1.Append(text1);

            Run run2 = new Run();

            RunProperties runProperties2 = new RunProperties();
            FontSize      fontSize2      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties2.Append(fontSize2);
            runProperties2.Append(fontSizeComplexScript2);
            Text text2 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text2.Text = "  ";

            run2.Append(runProperties2);
            run2.Append(text2);

            paragraph1.Append(run1);
            paragraph1.Append(run2);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph1);

            tableRow1.Append(tableCell1);

            return(tableRow1);
        }
Esempio n. 31
0
        public TableRow GenTab()
        {
            
            TableRow tableRow1 = new TableRow();
            TableRowProperties tableRowProperties1 = new TableRowProperties();

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth tableCellWidth1 = new TableCellWidth(){ Width = "1138", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan1 = new GridSpan(){ Val = 6 };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            TopBorder topBorder1 = new TopBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder1 = new StartBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder1 = new BottomBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder1 = new EndBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders1.Append(topBorder1);
            tableCellBorders1.Append(startBorder1);
            tableCellBorders1.Append(bottomBorder1);
            tableCellBorders1.Append(endBorder1);
            tableCellBorders1.Append(insideHorizontalBorder1);
            tableCellBorders1.Append(insideVerticalBorder1);
            Shading shading1 = new Shading(){ Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin1 = new TableCellMargin();
            StartMargin startMargin1 = new StartMargin(){ Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin1.Append(startMargin1);
            TableCellVerticalAlignment tableCellVerticalAlignment1 = new TableCellVerticalAlignment(){ Val = TableVerticalAlignmentValues.Center };

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(gridSpan1);
            tableCellProperties1.Append(tableCellBorders1);
            tableCellProperties1.Append(shading1);
            tableCellProperties1.Append(tableCellMargin1);
            tableCellProperties1.Append(tableCellVerticalAlignment1);

            Paragraph paragraph1 = new Paragraph();

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId(){ Val = "Normal" };
            Justification justification1 = new Justification(){ Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();

            paragraphProperties1.Append(paragraphStyleId1);
            paragraphProperties1.Append(justification1);
            paragraphProperties1.Append(paragraphMarkRunProperties1);

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            FontSize fontSize1 = new FontSize(){ Val = "20" };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript(){ Val = "20" };

            runProperties1.Append(fontSize1);
            runProperties1.Append(fontSizeComplexScript1);
            Text text1 = new Text();
            text1.Text = "2";

            run1.Append(runProperties1);
            run1.Append(text1);

            paragraph1.Append(paragraphProperties1);
            paragraph1.Append(run1);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph1);

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth tableCellWidth2 = new TableCellWidth(){ Width = "1983", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan2 = new GridSpan(){ Val = 11 };

            TableCellBorders tableCellBorders2 = new TableCellBorders();
            TopBorder topBorder2 = new TopBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder2 = new StartBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder2 = new BottomBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder2 = new EndBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder2 = new InsideHorizontalBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder2 = new InsideVerticalBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders2.Append(topBorder2);
            tableCellBorders2.Append(startBorder2);
            tableCellBorders2.Append(bottomBorder2);
            tableCellBorders2.Append(endBorder2);
            tableCellBorders2.Append(insideHorizontalBorder2);
            tableCellBorders2.Append(insideVerticalBorder2);
            Shading shading2 = new Shading(){ Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin2 = new TableCellMargin();
            StartMargin startMargin2 = new StartMargin(){ Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin2.Append(startMargin2);
            TableCellVerticalAlignment tableCellVerticalAlignment2 = new TableCellVerticalAlignment(){ Val = TableVerticalAlignmentValues.Center };

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(gridSpan2);
            tableCellProperties2.Append(tableCellBorders2);
            tableCellProperties2.Append(shading2);
            tableCellProperties2.Append(tableCellMargin2);
            tableCellProperties2.Append(tableCellVerticalAlignment2);

            Paragraph paragraph2 = new Paragraph();

            ParagraphProperties paragraphProperties2 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId2 = new ParagraphStyleId(){ Val = "Normal" };
            Justification justification2 = new Justification(){ Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();

            paragraphProperties2.Append(paragraphStyleId2);
            paragraphProperties2.Append(justification2);
            paragraphProperties2.Append(paragraphMarkRunProperties2);

            Run run2 = new Run();

            RunProperties runProperties2 = new RunProperties();
            FontSize fontSize2 = new FontSize(){ Val = "20" };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript(){ Val = "20" };

            runProperties2.Append(fontSize2);
            runProperties2.Append(fontSizeComplexScript2);
            Text text2 = new Text();
            text2.Text = "Здание объединённого вспомогательного корпуса";

            run2.Append(runProperties2);
            run2.Append(text2);

            paragraph2.Append(paragraphProperties2);
            paragraph2.Append(run2);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph2);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth tableCellWidth3 = new TableCellWidth(){ Width = "6514", Type = TableWidthUnitValues.Dxa };
            GridSpan gridSpan3 = new GridSpan(){ Val = 33 };

            TableCellBorders tableCellBorders3 = new TableCellBorders();
            TopBorder topBorder3 = new TopBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            StartBorder startBorder3 = new StartBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder3 = new BottomBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            EndBorder endBorder3 = new EndBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideHorizontalBorder insideHorizontalBorder3 = new InsideHorizontalBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };
            InsideVerticalBorder insideVerticalBorder3 = new InsideVerticalBorder(){ Val = BorderValues.Single, Color = "00000A", Size = (UInt32Value)4U, Space = (UInt32Value)0U };

            tableCellBorders3.Append(topBorder3);
            tableCellBorders3.Append(startBorder3);
            tableCellBorders3.Append(bottomBorder3);
            tableCellBorders3.Append(endBorder3);
            tableCellBorders3.Append(insideHorizontalBorder3);
            tableCellBorders3.Append(insideVerticalBorder3);
            Shading shading3 = new Shading(){ Val = ShadingPatternValues.Clear, Color = "auto", Fill = "auto" };

            TableCellMargin tableCellMargin3 = new TableCellMargin();
            StartMargin startMargin3 = new StartMargin(){ Width = "103", Type = TableWidthUnitValues.Dxa };

            tableCellMargin3.Append(startMargin3);
            TableCellVerticalAlignment tableCellVerticalAlignment3 = new TableCellVerticalAlignment(){ Val = TableVerticalAlignmentValues.Center };

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(gridSpan3);
            tableCellProperties3.Append(tableCellBorders3);
            tableCellProperties3.Append(shading3);
            tableCellProperties3.Append(tableCellMargin3);
            tableCellProperties3.Append(tableCellVerticalAlignment3);

            Paragraph paragraph3 = new Paragraph();

            ParagraphProperties paragraphProperties3 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId3 = new ParagraphStyleId(){ Val = "Normal" };
            Justification justification3 = new Justification(){ Val = JustificationValues.Center };
            ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();

            paragraphProperties3.Append(paragraphStyleId3);
            paragraphProperties3.Append(justification3);
            paragraphProperties3.Append(paragraphMarkRunProperties3);

            Run run3 = new Run();

            RunProperties runProperties3 = new RunProperties();
            FontSize fontSize3 = new FontSize(){ Val = "20" };
            FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript(){ Val = "20" };

            runProperties3.Append(fontSize3);
            runProperties3.Append(fontSizeComplexScript3);
            Text text3 = new Text();
            text3.Text = "4-х этажное здание, предназначенное для размещения персонала             РТС «Тушино-5», специалистов службы диагностики тепловых сетей Филиала №9, а так же в нем размещена механическая мастерская. Наружные стены выполнены из сэндвич-панелей. Площадь- 673,6 м².";

            run3.Append(runProperties3);
            run3.Append(text3);

            paragraph3.Append(paragraphProperties3);
            paragraph3.Append(run3);

            tableCell3.Append(tableCellProperties3);
            tableCell3.Append(paragraph3);

            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);
            tableRow1.Append(tableCell2);
            tableRow1.Append(tableCell3);
            return tableRow1;
        }
        // Creates an Table instance and adds its children.
        public static Table GenerateTable(GenerationData data)
        {
            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableWidth      tableWidth1      = new TableWidth()
            {
                Width = "0", Type = TableWidthUnitValues.Auto
            };
            TableIndentation tableIndentation1 = new TableIndentation()
            {
                Width = 10, Type = TableWidthUnitValues.Dxa
            };

            TableBorders tableBorders1 = new TableBorders();
            TopBorder    topBorder1    = new TopBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder1 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder1 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder1 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            InsideHorizontalBorder insideHorizontalBorder1 = new InsideHorizontalBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };
            InsideVerticalBorder insideVerticalBorder1 = new InsideVerticalBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)10U, Space = (UInt32Value)0U
            };

            tableBorders1.Append(topBorder1);
            tableBorders1.Append(leftBorder1);
            tableBorders1.Append(bottomBorder1);
            tableBorders1.Append(rightBorder1);
            tableBorders1.Append(insideHorizontalBorder1);
            tableBorders1.Append(insideVerticalBorder1);

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TableCellLeftMargin    tableCellLeftMargin1    = new TableCellLeftMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };
            TableCellRightMargin tableCellRightMargin1 = new TableCellRightMargin()
            {
                Width = 10, Type = TableWidthValues.Dxa
            };

            tableCellMarginDefault1.Append(tableCellLeftMargin1);
            tableCellMarginDefault1.Append(tableCellRightMargin1);
            TableLook tableLook1 = new TableLook()
            {
                Val = "0000", FirstRow = false, LastRow = false, FirstColumn = false, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = false
            };

            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableIndentation1);
            tableProperties1.Append(tableBorders1);
            tableProperties1.Append(tableCellMarginDefault1);
            tableProperties1.Append(tableLook1);

            TableGrid  tableGrid1  = new TableGrid();
            GridColumn gridColumn1 = new GridColumn()
            {
                Width = "2550"
            };
            GridColumn gridColumn2 = new GridColumn()
            {
                Width = "4500"
            };
            GridColumn gridColumn3 = new GridColumn()
            {
                Width = "360"
            };

            tableGrid1.Append(gridColumn1);
            tableGrid1.Append(gridColumn2);
            tableGrid1.Append(gridColumn3);

            TableRow tableRow1 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", ParagraphId = "6A369A48", TextId = "77777777"
            };

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth      tableCellWidth1      = new TableCellWidth()
            {
                Width = "800", Type = TableWidthUnitValues.Dxa
            };
            GridSpan gridSpan1 = new GridSpan()
            {
                Val = 3
            };

            TableCellBorders tableCellBorders1 = new TableCellBorders();
            TopBorder        topBorder2        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder2 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder2 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder2 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders1.Append(topBorder2);
            tableCellBorders1.Append(leftBorder2);
            tableCellBorders1.Append(bottomBorder2);
            tableCellBorders1.Append(rightBorder2);

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(gridSpan1);
            tableCellProperties1.Append(tableCellBorders1);

            Paragraph paragraph1 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "1F571112", TextId = "77777777"
            };

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            Bold          bold1          = new Bold();
            FontSize      fontSize1      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties1.Append(bold1);
            runProperties1.Append(fontSize1);
            runProperties1.Append(fontSizeComplexScript1);
            Text text1 = new Text();

            text1.Text = DocumentMetadataTexts.GetText(MetadataTexts.CV_TRANSITION_TIME, data.Language)?.ToUpper();

            run1.Append(runProperties1);
            run1.Append(text1);

            Run run2 = new Run();

            RunProperties runProperties2 = new RunProperties();
            FontSize      fontSize2      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties2.Append(fontSize2);
            runProperties2.Append(fontSizeComplexScript2);
            Text text2 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text2.Text = "   ";

            run2.Append(runProperties2);
            run2.Append(text2);

            paragraph1.Append(run1);
            paragraph1.Append(run2);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph1);

            tableRow1.Append(tableCell1);

            TableRow tableRow2 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", ParagraphId = "284F9E59", TextId = "77777777"
            };

            TableRowProperties tableRowProperties1 = new TableRowProperties();
            GridAfter          gridAfter1          = new GridAfter()
            {
                Val = 1
            };
            WidthAfterTableRow widthAfterTableRow1 = new WidthAfterTableRow()
            {
                Width = "360", Type = TableWidthUnitValues.Dxa
            };

            tableRowProperties1.Append(gridAfter1);
            tableRowProperties1.Append(widthAfterTableRow1);

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth      tableCellWidth2      = new TableCellWidth()
            {
                Width = "2550", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders2 = new TableCellBorders();
            TopBorder        topBorder3        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder3 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder3 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder3 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders2.Append(topBorder3);
            tableCellBorders2.Append(leftBorder3);
            tableCellBorders2.Append(bottomBorder3);
            tableCellBorders2.Append(rightBorder3);

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(tableCellBorders2);

            Paragraph paragraph2 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "4BC9A594", TextId = "77777777"
            };

            Run run3 = new Run();

            RunProperties runProperties3 = new RunProperties();
            FontSize      fontSize3      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties3.Append(fontSize3);
            runProperties3.Append(fontSizeComplexScript3);
            Text text3 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text3.Text = $"{DocumentMetadataTexts.GetText(MetadataTexts.CV_NOTICE_PERIOD, data.Language)}: ";

            run3.Append(runProperties3);
            run3.Append(text3);

            paragraph2.Append(run3);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph2);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth      tableCellWidth3      = new TableCellWidth()
            {
                Width = "4500", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders3 = new TableCellBorders();
            TopBorder        topBorder4        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder4 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)1U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder4 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder4 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders3.Append(topBorder4);
            tableCellBorders3.Append(leftBorder4);
            tableCellBorders3.Append(bottomBorder4);
            tableCellBorders3.Append(rightBorder4);

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(tableCellBorders3);

            Paragraph paragraph3 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "11E20E69", TextId = "77777777"
            };

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines()
            {
                After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto
            };
            Indentation indentation1 = new Indentation()
            {
                Left = "144"
            };

            paragraphProperties1.Append(spacingBetweenLines1);
            paragraphProperties1.Append(indentation1);

            Run run4 = new Run();

            RunProperties runProperties4 = new RunProperties();
            FontSize      fontSize4      = new FontSize()
            {
                Val = "21"
            };
            FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript()
            {
                Val = "21"
            };

            runProperties4.Append(fontSize4);
            runProperties4.Append(fontSizeComplexScript4);
            Text text4 = new Text();

            text4.Text = data.TransitionTime;

            run4.Append(runProperties4);
            run4.Append(text4);

            paragraph3.Append(paragraphProperties1);
            paragraph3.Append(run4);

            tableCell3.Append(tableCellProperties3);
            tableCell3.Append(paragraph3);

            tableRow2.Append(tableRowProperties1);
            tableRow2.Append(tableCell2);
            tableRow2.Append(tableCell3);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);
            table1.Append(tableRow2);
            return(table1);
        }
Esempio n. 33
0
 private DeselectGridSpan(int row, int a, int b)
 {
     Row  = row;
     Span = new GridSpan(a, b, false);
 }
Esempio n. 34
0
        private static TableRow CreateMembershipRow(SocialActivity data, string language)
        {
            TableRow tableRow2 = new TableRow()
            {
                RsidTableRowAddition = "009B2C1D", RsidTableRowProperties = "009E39C2", ParagraphId = "533821CC", TextId = "77777777"
            };

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth      tableCellWidth2      = new TableCellWidth()
            {
                Width = "2550", Type = TableWidthUnitValues.Dxa
            };

            TableCellBorders tableCellBorders2 = new TableCellBorders();
            TopBorder        topBorder3        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder3 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder3 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder3 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders2.Append(topBorder3);
            tableCellBorders2.Append(leftBorder3);
            tableCellBorders2.Append(bottomBorder3);
            tableCellBorders2.Append(rightBorder3);

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(tableCellBorders2);

            Paragraph paragraph2 = new Paragraph()
            {
                RsidParagraphAddition = "009B2C1D", RsidRunAdditionDefault = "009E39C2", ParagraphId = "6899F9F0", TextId = "77777777"
            };

            Run run3 = new Run();

            RunProperties runProperties3 = new RunProperties();
            FontSize      fontSize3      = new FontSize()
            {
                Val = "22"
            };
            FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript()
            {
                Val = "22"
            };

            runProperties3.Append(fontSize3);
            runProperties3.Append(fontSizeComplexScript3);
            Text text3 = new Text()
            {
                Space = SpaceProcessingModeValues.Preserve
            };

            text3.Text = $" {data.StartingYear} - {GetEndingYear(data, language)} ";

            run3.Append(runProperties3);
            run3.Append(text3);

            paragraph2.Append(run3);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph2);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth      tableCellWidth3      = new TableCellWidth()
            {
                Width = "6239", Type = TableWidthUnitValues.Dxa
            };
            GridSpan gridSpan2 = new GridSpan()
            {
                Val = 2
            };

            TableCellBorders tableCellBorders3 = new TableCellBorders();
            TopBorder        topBorder4        = new TopBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            LeftBorder leftBorder4 = new LeftBorder()
            {
                Val = BorderValues.Single, Color = "000000", Size = (UInt32Value)1U, Space = (UInt32Value)0U
            };
            BottomBorder bottomBorder4 = new BottomBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };
            RightBorder rightBorder4 = new RightBorder()
            {
                Val = BorderValues.Single, Color = "FFFFFF", Size = (UInt32Value)0U, Space = (UInt32Value)0U
            };

            tableCellBorders3.Append(topBorder4);
            tableCellBorders3.Append(leftBorder4);
            tableCellBorders3.Append(bottomBorder4);
            tableCellBorders3.Append(rightBorder4);

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(gridSpan2);
            tableCellProperties3.Append(tableCellBorders3);

            Paragraph paragraph3 = new Paragraph()
            {
                RsidParagraphAddition = "009E39C2", RsidParagraphProperties = "009E39C2", RsidRunAdditionDefault = "009E39C2", ParagraphId = "72BA0AEC", TextId = "77777777"
            };

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines()
            {
                After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto
            };
            Indentation indentation1 = new Indentation()
            {
                Left = "271", Hanging = "127"
            };

            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
            FontSize fontSize4 = new FontSize()
            {
                Val = "21"
            };
            FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript()
            {
                Val = "21"
            };

            paragraphMarkRunProperties1.Append(fontSize4);
            paragraphMarkRunProperties1.Append(fontSizeComplexScript4);

            paragraphProperties1.Append(spacingBetweenLines1);
            paragraphProperties1.Append(indentation1);
            paragraphProperties1.Append(paragraphMarkRunProperties1);

            Run run4 = new Run();

            RunProperties runProperties4 = new RunProperties();
            FontSize      fontSize5      = new FontSize()
            {
                Val = "21"
            };
            FontSizeComplexScript fontSizeComplexScript5 = new FontSizeComplexScript()
            {
                Val = "21"
            };

            runProperties4.Append(fontSize5);
            runProperties4.Append(fontSizeComplexScript5);
            Text text4 = new Text();

            text4.Text = data.Description;

            run4.Append(runProperties4);
            run4.Append(text4);

            paragraph3.Append(paragraphProperties1);
            paragraph3.Append(run4);

            tableCell3.Append(tableCellProperties3);
            tableCell3.Append(paragraph3);

            tableRow2.Append(tableCell2);
            tableRow2.Append(tableCell3);

            return(tableRow2);
        }
        public byte[] CreateWordDocument(Schema schemaData, string templateLocation)
        {

            byte[] binFile = null;


            byte[] byteArray = File.ReadAllBytes(templateLocation);
            using (MemoryStream mem = new MemoryStream())
            {
                mem.Write(byteArray, 0, (int) byteArray.Length);

                using (WordprocessingDocument doc = WordprocessingDocument.Open(mem, true))
                {
                    Table table = doc.MainDocumentPart.Document.Body.GetFirstChild<Table>();

                    RunFonts textFonts =
                        table.GetFirstChild<TableRow>().GetFirstChild<TableCell>().GetFirstChild<Paragraph>().
                            GetFirstChild<ParagraphProperties>().GetFirstChild<ParagraphMarkRunProperties>().
                            GetFirstChild<RunFonts>();
                    string paragraphPropertiesOuterXml = getParagraphPropertiesXml(textFonts);
                    string runPropertiesOuterXml = getRunPropertiesXml(textFonts);


                    table.Elements<TableRow>().ElementAt(0).Elements<TableCell>().ElementAt(1).Elements<Paragraph>().ElementAt(0).Append(new Run(new RunProperties(runPropertiesOuterXml), new Text(schemaData.Title)));
                    table.Elements<TableRow>().ElementAt(1).Elements<TableCell>().ElementAt(1).Elements<Paragraph>().ElementAt(0).Append(new Run(new RunProperties(runPropertiesOuterXml), new Text(schemaData.Description)));
                    table.Elements<TableRow>().ElementAt(2).Elements<TableCell>().ElementAt(1).Elements<Paragraph>().ElementAt(0).Append(new Run(new RunProperties(runPropertiesOuterXml), new Text(schemaData.SchemaType + TEXT_SCHEMA)));
                    table.Elements<TableRow>().ElementAt(3).Elements<TableCell>().ElementAt(1).Elements<Paragraph>().ElementAt(0).Append(new Run(new RunProperties(runPropertiesOuterXml), new Text(schemaData.RootElementName)));
                    table.Elements<TableRow>().ElementAt(4).Elements<TableCell>().ElementAt(1).Elements<Paragraph>().ElementAt(0).Append(new Run(new RunProperties(runPropertiesOuterXml), new Text(schemaData.NamespaceUri)));


                    // Save properties for metadata row
                    TableRowProperties metaDataRowProperties =
                        table.Elements<TableRow>().ElementAt(5).GetFirstChild<TableRowProperties>();
                    TableCellProperties metaDataCellProperties =
                        table.Elements<TableRow>().ElementAt(5).GetFirstChild<TableCell>().GetFirstChild<TableCellProperties>();
                    ParagraphProperties metaDataParagraphProperties =
                        table.Elements<TableRow>().ElementAt(5).GetFirstChild<TableCell>().GetFirstChild<Paragraph>().GetFirstChild<ParagraphProperties>();
                    RunProperties metaDataRunProperties =
                        table.Elements<TableRow>().ElementAt(5).GetFirstChild<TableCell>().GetFirstChild<Paragraph>().GetFirstChild<Run>().GetFirstChild<RunProperties>();


                    // Clear empty rows
                    foreach (TableRow row in table.Elements<TableRow>())
                    {
                        Text text = row.Elements<TableCell>().ElementAt(1).GetFirstChild<Paragraph>().GetFirstChild<Run>().GetFirstChild<Text>();

                        if (string.IsNullOrEmpty(text.InnerText.Trim()))
                        {
                            table.RemoveChild(row);
                        }
                    }

                    foreach (SchemaField field in schemaData.Fields)
                    {
                        TableRow tr = new TableRow();

                        TableCell tc1 = new TableCell();
                        tc1.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.Description))));
                        tr.Append(tc1);

                        TableCell tc2 = new TableCell();
                        tc2.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.XmlName))));
                        tr.Append(tc2);

                        TableCell tc3 = new TableCell();
                        tc3.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.FieldType))));
                        tr.Append(tc3);

                        TableCell tc4 = new TableCell();
                        tc4.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text((field.Required) ? TEXT_YES : TEXT_NO))));
                        tr.Append(tc4);

                        TableCell tc5 = new TableCell();
                        tc5.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text((field.MultiValue) ? TEXT_YES : TEXT_NO))));
                        tr.Append(tc5);

                        TableCell tc6 = new TableCell();
                        tc6.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.Properties))));
                        tr.Append(tc6);

                        table.Append(tr);
                    }


                    if (schemaData.MetadataFields.Count > 0 && schemaData.SchemaType == "Component")
                    {
                        TableRow tr = new TableRow();
                        TableCell tc = new TableCell();
                        TableCellProperties tcProperties = new TableCellProperties(metaDataCellProperties.OuterXml);
                        GridSpan gridSpan = new GridSpan(){ Val = 6 };
                        tcProperties.Append(gridSpan);

                        tr.Append(new TableRowProperties(metaDataRowProperties.OuterXml));
                        tc.Append(tcProperties);
                        tc.Append(new Paragraph(new ParagraphProperties(metaDataParagraphProperties.OuterXml), new Run(new RunProperties(metaDataRunProperties.OuterXml), new Text(TEXT_METADATA))));
                        tr.Append(tc);
                        table.Append(tr);

                    }


                    foreach (SchemaField field in schemaData.MetadataFields)
                    {
                        TableRow tr = new TableRow();

                        TableCell tc1 = new TableCell();
                        tc1.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.Description))));
                        tr.Append(tc1);

                        TableCell tc2 = new TableCell();
                        tc2.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.XmlName))));
                        tr.Append(tc2);

                        TableCell tc3 = new TableCell();
                        tc3.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.FieldType))));
                        tr.Append(tc3);

                        TableCell tc4 = new TableCell();
                        tc4.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text((field.Required) ? TEXT_YES : TEXT_NO))));
                        tr.Append(tc4);

                        TableCell tc5 = new TableCell();
                        tc5.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text((field.MultiValue) ? TEXT_YES : TEXT_NO))));
                        tr.Append(tc5);

                        TableCell tc6 = new TableCell();
                        tc6.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.Properties))));
                        tr.Append(tc6);

                        table.Append(tr);
                    }
                }

                binFile = mem.ToArray();
            }

            return binFile;
        }
        //[LoginFilter(Order = 0)]
        //[SecurityFilter(Order = 1)]
        private TableCell BuildCell(string text, int gridSpan = 1, VerticalMerge vm = null, bool bold = false)
        {
            TableCell cell = new TableCell();
            Paragraph p = new Paragraph();
            ParagraphProperties paragraphProperties = new ParagraphProperties();

            Justification justification = new Justification() { Val = JustificationValues.Center };
            paragraphProperties.Append(justification);

            if (bold)
            {
                ParagraphMarkRunProperties paragraphMarkRunProperties = new ParagraphMarkRunProperties();
                Bold boldStyle = new Bold();

                paragraphMarkRunProperties.Append(boldStyle);
                paragraphProperties.Append(paragraphMarkRunProperties);
            }
            p.Append(paragraphProperties);

            if (!string.IsNullOrEmpty(text))
            {
                Run r = new Run();

                RunProperties runProperties = new RunProperties();

                FontSize fontSize = new FontSize() { Val = "17" };
                FontSizeComplexScript fontSizeComplexScript = new FontSizeComplexScript() { Val = "17" };

                if (bold)
                {
                    Bold boldStyle = new Bold();

                    runProperties.Append(boldStyle);

                    fontSize = new FontSize() { Val = "21" };
                    fontSizeComplexScript = new FontSizeComplexScript() { Val = "21" };
                }

                runProperties.Append(fontSize);
                runProperties.Append(fontSizeComplexScript);

                r.Append(runProperties);

                Text t = new Text { Text = text };
                r.AppendChild<Text>(t);

                p.AppendChild<Run>(r);
            }

            TableCellProperties cellProperty = new TableCellProperties();
            TableCellVerticalAlignment tableCellVerticalAlignment1 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            cellProperty.Append(tableCellVerticalAlignment1);

            if (gridSpan > 1)
            {
                GridSpan gs = new GridSpan { Val = gridSpan };
                cellProperty.Append(gs);
            }

            if (vm != null)
            {
                cellProperty.Append(vm);
            }

            //表格宽度属性
            //TableCellWidth width = new TableCellWidth() { Width = "40", Type = TableWidthUnitValues.Pct };
            TableCellWidth width = new TableCellWidth();
            width.Width = "384";
            width.Type = TableWidthUnitValues.Pct;
            cell.Append(width);

            cell.Append(cellProperty);
            cell.Append(p);

            return cell;
        }
Esempio n. 37
0
        public byte[] CreateWordDocument(Schema schemaData, string templateLocation)
        {
            byte[] binFile = null;


            byte[] byteArray = File.ReadAllBytes(templateLocation);
            using (MemoryStream mem = new MemoryStream())
            {
                mem.Write(byteArray, 0, (int)byteArray.Length);

                using (WordprocessingDocument doc = WordprocessingDocument.Open(mem, true))
                {
                    Table table = doc.MainDocumentPart.Document.Body.GetFirstChild <Table>();

                    RunFonts textFonts =
                        table.GetFirstChild <TableRow>().GetFirstChild <TableCell>().GetFirstChild <Paragraph>().
                        GetFirstChild <ParagraphProperties>().GetFirstChild <ParagraphMarkRunProperties>().
                        GetFirstChild <RunFonts>();
                    string paragraphPropertiesOuterXml = getParagraphPropertiesXml(textFonts);
                    string runPropertiesOuterXml       = getRunPropertiesXml(textFonts);


                    table.Elements <TableRow>().ElementAt(0).Elements <TableCell>().ElementAt(1).Elements <Paragraph>().ElementAt(0).Append(new Run(new RunProperties(runPropertiesOuterXml), new Text(schemaData.Title)));
                    table.Elements <TableRow>().ElementAt(1).Elements <TableCell>().ElementAt(1).Elements <Paragraph>().ElementAt(0).Append(new Run(new RunProperties(runPropertiesOuterXml), new Text(schemaData.Description)));
                    table.Elements <TableRow>().ElementAt(2).Elements <TableCell>().ElementAt(1).Elements <Paragraph>().ElementAt(0).Append(new Run(new RunProperties(runPropertiesOuterXml), new Text(schemaData.SchemaType + TEXT_SCHEMA)));
                    table.Elements <TableRow>().ElementAt(3).Elements <TableCell>().ElementAt(1).Elements <Paragraph>().ElementAt(0).Append(new Run(new RunProperties(runPropertiesOuterXml), new Text(schemaData.RootElementName)));
                    table.Elements <TableRow>().ElementAt(4).Elements <TableCell>().ElementAt(1).Elements <Paragraph>().ElementAt(0).Append(new Run(new RunProperties(runPropertiesOuterXml), new Text(schemaData.NamespaceUri)));


                    // Save properties for metadata row
                    TableRowProperties metaDataRowProperties =
                        table.Elements <TableRow>().ElementAt(5).GetFirstChild <TableRowProperties>();
                    TableCellProperties metaDataCellProperties =
                        table.Elements <TableRow>().ElementAt(5).GetFirstChild <TableCell>().GetFirstChild <TableCellProperties>();
                    ParagraphProperties metaDataParagraphProperties =
                        table.Elements <TableRow>().ElementAt(5).GetFirstChild <TableCell>().GetFirstChild <Paragraph>().GetFirstChild <ParagraphProperties>();
                    RunProperties metaDataRunProperties =
                        table.Elements <TableRow>().ElementAt(5).GetFirstChild <TableCell>().GetFirstChild <Paragraph>().GetFirstChild <Run>().GetFirstChild <RunProperties>();


                    // Clear empty rows
                    foreach (TableRow row in table.Elements <TableRow>())
                    {
                        Text text = row.Elements <TableCell>().ElementAt(1).GetFirstChild <Paragraph>().GetFirstChild <Run>().GetFirstChild <Text>();

                        if (string.IsNullOrEmpty(text.InnerText.Trim()))
                        {
                            table.RemoveChild(row);
                        }
                    }

                    foreach (SchemaField field in schemaData.Fields)
                    {
                        TableRow tr = new TableRow();

                        TableCell tc1 = new TableCell();
                        tc1.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.Description))));
                        tr.Append(tc1);

                        TableCell tc2 = new TableCell();
                        tc2.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.XmlName))));
                        tr.Append(tc2);

                        TableCell tc3 = new TableCell();
                        tc3.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.FieldType))));
                        tr.Append(tc3);

                        TableCell tc4 = new TableCell();
                        tc4.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text((field.Required) ? TEXT_YES : TEXT_NO))));
                        tr.Append(tc4);

                        TableCell tc5 = new TableCell();
                        tc5.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text((field.MultiValue) ? TEXT_YES : TEXT_NO))));
                        tr.Append(tc5);

                        TableCell tc6 = new TableCell();
                        tc6.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.Properties))));
                        tr.Append(tc6);

                        table.Append(tr);
                    }


                    if (schemaData.MetadataFields.Count > 0 && schemaData.SchemaType == "Component")
                    {
                        TableRow            tr           = new TableRow();
                        TableCell           tc           = new TableCell();
                        TableCellProperties tcProperties = new TableCellProperties(metaDataCellProperties.OuterXml);
                        GridSpan            gridSpan     = new GridSpan()
                        {
                            Val = 6
                        };
                        tcProperties.Append(gridSpan);

                        tr.Append(new TableRowProperties(metaDataRowProperties.OuterXml));
                        tc.Append(tcProperties);
                        tc.Append(new Paragraph(new ParagraphProperties(metaDataParagraphProperties.OuterXml), new Run(new RunProperties(metaDataRunProperties.OuterXml), new Text(TEXT_METADATA))));
                        tr.Append(tc);
                        table.Append(tr);
                    }


                    foreach (SchemaField field in schemaData.MetadataFields)
                    {
                        TableRow tr = new TableRow();

                        TableCell tc1 = new TableCell();
                        tc1.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.Description))));
                        tr.Append(tc1);

                        TableCell tc2 = new TableCell();
                        tc2.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.XmlName))));
                        tr.Append(tc2);

                        TableCell tc3 = new TableCell();
                        tc3.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.FieldType))));
                        tr.Append(tc3);

                        TableCell tc4 = new TableCell();
                        tc4.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text((field.Required) ? TEXT_YES : TEXT_NO))));
                        tr.Append(tc4);

                        TableCell tc5 = new TableCell();
                        tc5.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text((field.MultiValue) ? TEXT_YES : TEXT_NO))));
                        tr.Append(tc5);

                        TableCell tc6 = new TableCell();
                        tc6.Append(new Paragraph(new ParagraphProperties(paragraphPropertiesOuterXml), new Run(new RunProperties(runPropertiesOuterXml), new Text(field.Properties))));
                        tr.Append(tc6);

                        table.Append(tr);
                    }
                }

                binFile = mem.ToArray();
            }

            return(binFile);
        }