Пример #1
0
        private void ProcessLink(HtmlEnumerator en)
        {
            String att = en.Attributes["href"];
            Hyperlink h = null;
            Uri uri = null;

            if (!String.IsNullOrEmpty(att))
            {
                // handle link where the http:// is missing and that starts directly with www
                if (att.StartsWith("www.", StringComparison.OrdinalIgnoreCase))
                    att = Uri.UriSchemeHttp + Uri.SchemeDelimiter + att;

                // is it an anchor?
                if (att[0] == '#' && att.Length > 1)
                {
                    // Always accept _top anchor
                    if (!this.ExcludeLinkAnchor || att == "#_top")
                    {
                        h = new Hyperlink(
                            ) { History = true, Anchor = att.Substring(1) };
                    }
                }
                // ensure the links does not start with javascript:
                else if (Uri.TryCreate(att, UriKind.Absolute, out uri) && uri.Scheme != "javascript")
                {
                    HyperlinkRelationship extLink = mainPart.AddHyperlinkRelationship(uri, true);

                    h = new Hyperlink(
                        ) { History = true, Id = extLink.Id };
                }
            }

            if (h == null)
            {
                // link to a broken url, simply process the content of the tag
                ProcessHtmlChunks(en, "</a>");
                return;
            }

            AlternateProcessHtmlChunks(en, "</a>");

            if (elements.Count == 0) return;

            // Let's see whether the link tag include an image inside its body.
            // If so, the Hyperlink OpenXmlElement is lost and we'll keep only the images
            // and applied a HyperlinkOnClick attribute.
            List<OpenXmlElement> imageInLink = elements.FindAll(e => { return e.HasChild<Drawing>(); });
            if (imageInLink.Count != 0)
            {
                for (int i = 0; i < imageInLink.Count; i++)
                {
                    // Retrieves the "alt" attribute of the image and apply it as the link's tooltip
                    Drawing d = imageInLink[i].GetFirstChild<Drawing>();
                    var enDp = d.Descendants<pic.NonVisualDrawingProperties>().GetEnumerator();
                    String alt;
                    if (enDp.MoveNext()) alt = enDp.Current.Description;
                    else alt = null;

                    d.InsertInDocProperties(
                            new a.HyperlinkOnClick() { Id = h.Id ?? h.Anchor, Tooltip = alt });
                }
            }

            // Append the processed elements and put them to the Run of the Hyperlink
            h.Append(elements);

            // can't use GetFirstChild<Run> or we may find the one containing the image
            foreach (var el in h.ChildElements)
            {
                Run run = el as Run;
                if (run != null && !run.HasChild<Drawing>())
                {
                    htmlStyles.EnsureKnownStyle(HtmlDocumentStyle.KnownStyles.Hyperlink);
                    run.InsertInProperties(prop =>
                        prop.RunStyle = new RunStyle() { Val = htmlStyles.GetStyle("Hyperlink", StyleValues.Character) });
                    break;
                }
            }

            this.elements.Clear();

            // Append the hyperlink
            elements.Add(h);

            if (imageInLink.Count > 0) CompleteCurrentParagraph(true);
        }
        // Generates content of themePart1.
        private static void GenerateThemePart1Content(ThemePart themePart1)
        {
            var theme1 = new A.Theme {
                Name = "Larissa"
            };

            theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            var themeElements1 = new A.ThemeElements();

            var colorScheme1 = new A.ColorScheme {
                Name = "Larissa"
            };

            var dark1Color1  = new A.Dark1Color();
            var systemColor1 = new A.SystemColor {
                Val = A.SystemColorValues.WindowText, LastColor = "000000"
            };

            dark1Color1.Append(systemColor1);

            var light1Color1 = new A.Light1Color();
            var systemColor2 = new A.SystemColor {
                Val = A.SystemColorValues.Window, LastColor = "FFFFFF"
            };

            light1Color1.Append(systemColor2);

            var dark2Color1       = new A.Dark2Color();
            var rgbColorModelHex1 = new A.RgbColorModelHex {
                Val = "1F497D"
            };

            dark2Color1.Append(rgbColorModelHex1);

            var light2Color1      = new A.Light2Color();
            var rgbColorModelHex2 = new A.RgbColorModelHex {
                Val = "EEECE1"
            };

            light2Color1.Append(rgbColorModelHex2);

            var accent1Color1     = new A.Accent1Color();
            var rgbColorModelHex3 = new A.RgbColorModelHex {
                Val = "4F81BD"
            };

            accent1Color1.Append(rgbColorModelHex3);

            var accent2Color1     = new A.Accent2Color();
            var rgbColorModelHex4 = new A.RgbColorModelHex {
                Val = "C0504D"
            };

            accent2Color1.Append(rgbColorModelHex4);

            var accent3Color1     = new A.Accent3Color();
            var rgbColorModelHex5 = new A.RgbColorModelHex {
                Val = "9BBB59"
            };

            accent3Color1.Append(rgbColorModelHex5);

            var accent4Color1     = new A.Accent4Color();
            var rgbColorModelHex6 = new A.RgbColorModelHex {
                Val = "8064A2"
            };

            accent4Color1.Append(rgbColorModelHex6);

            var accent5Color1     = new A.Accent5Color();
            var rgbColorModelHex7 = new A.RgbColorModelHex {
                Val = "4BACC6"
            };

            accent5Color1.Append(rgbColorModelHex7);

            var accent6Color1     = new A.Accent6Color();
            var rgbColorModelHex8 = new A.RgbColorModelHex {
                Val = "F79646"
            };

            accent6Color1.Append(rgbColorModelHex8);

            var hyperlink1        = new A.Hyperlink();
            var rgbColorModelHex9 = new A.RgbColorModelHex {
                Val = "0000FF"
            };

            hyperlink1.Append(rgbColorModelHex9);

            var followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            var rgbColorModelHex10      = new A.RgbColorModelHex {
                Val = "800080"
            };

            followedHyperlinkColor1.Append(rgbColorModelHex10);

            colorScheme1.Append(dark1Color1);
            colorScheme1.Append(light1Color1);
            colorScheme1.Append(dark2Color1);
            colorScheme1.Append(light2Color1);
            colorScheme1.Append(accent1Color1);
            colorScheme1.Append(accent2Color1);
            colorScheme1.Append(accent3Color1);
            colorScheme1.Append(accent4Color1);
            colorScheme1.Append(accent5Color1);
            colorScheme1.Append(accent6Color1);
            colorScheme1.Append(hyperlink1);
            colorScheme1.Append(followedHyperlinkColor1);

            var fontScheme2 = new A.FontScheme {
                Name = "Larissa"
            };

            var majorFont1 = new A.MajorFont();
            var latinFont1 = new A.LatinFont {
                Typeface = "Cambria"
            };
            var eastAsianFont1 = new A.EastAsianFont {
                Typeface = ""
            };
            var complexScriptFont1 = new A.ComplexScriptFont {
                Typeface = ""
            };
            var supplementalFont1 = new A.SupplementalFont {
                Script = "Jpan", Typeface = "MS Pゴシック"
            };
            var supplementalFont2 = new A.SupplementalFont {
                Script = "Hang", Typeface = "맑은 고딕"
            };
            var supplementalFont3 = new A.SupplementalFont {
                Script = "Hans", Typeface = "宋体"
            };
            var supplementalFont4 = new A.SupplementalFont {
                Script = "Hant", Typeface = "新細明體"
            };
            var supplementalFont5 = new A.SupplementalFont {
                Script = "Arab", Typeface = "Times New Roman"
            };
            var supplementalFont6 = new A.SupplementalFont {
                Script = "Hebr", Typeface = "Times New Roman"
            };
            var supplementalFont7 = new A.SupplementalFont {
                Script = "Thai", Typeface = "Tahoma"
            };
            var supplementalFont8 = new A.SupplementalFont {
                Script = "Ethi", Typeface = "Nyala"
            };
            var supplementalFont9 = new A.SupplementalFont {
                Script = "Beng", Typeface = "Vrinda"
            };
            var supplementalFont10 = new A.SupplementalFont {
                Script = "Gujr", Typeface = "Shruti"
            };
            var supplementalFont11 = new A.SupplementalFont {
                Script = "Khmr", Typeface = "MoolBoran"
            };
            var supplementalFont12 = new A.SupplementalFont {
                Script = "Knda", Typeface = "Tunga"
            };
            var supplementalFont13 = new A.SupplementalFont {
                Script = "Guru", Typeface = "Raavi"
            };
            var supplementalFont14 = new A.SupplementalFont {
                Script = "Cans", Typeface = "Euphemia"
            };
            var supplementalFont15 = new A.SupplementalFont {
                Script = "Cher", Typeface = "Plantagenet Cherokee"
            };
            var supplementalFont16 = new A.SupplementalFont {
                Script = "Yiii", Typeface = "Microsoft Yi Baiti"
            };
            var supplementalFont17 = new A.SupplementalFont {
                Script = "Tibt", Typeface = "Microsoft Himalaya"
            };
            var supplementalFont18 = new A.SupplementalFont {
                Script = "Thaa", Typeface = "MV Boli"
            };
            var supplementalFont19 = new A.SupplementalFont {
                Script = "Deva", Typeface = "Mangal"
            };
            var supplementalFont20 = new A.SupplementalFont {
                Script = "Telu", Typeface = "Gautami"
            };
            var supplementalFont21 = new A.SupplementalFont {
                Script = "Taml", Typeface = "Latha"
            };
            var supplementalFont22 = new A.SupplementalFont {
                Script = "Syrc", Typeface = "Estrangelo Edessa"
            };
            var supplementalFont23 = new A.SupplementalFont {
                Script = "Orya", Typeface = "Kalinga"
            };
            var supplementalFont24 = new A.SupplementalFont {
                Script = "Mlym", Typeface = "Kartika"
            };
            var supplementalFont25 = new A.SupplementalFont {
                Script = "Laoo", Typeface = "DokChampa"
            };
            var supplementalFont26 = new A.SupplementalFont {
                Script = "Sinh", Typeface = "Iskoola Pota"
            };
            var supplementalFont27 = new A.SupplementalFont {
                Script = "Mong", Typeface = "Mongolian Baiti"
            };
            var supplementalFont28 = new A.SupplementalFont {
                Script = "Viet", Typeface = "Times New Roman"
            };
            var supplementalFont29 = new A.SupplementalFont {
                Script = "Uigh", Typeface = "Microsoft Uighur"
            };
            var supplementalFont30 = new A.SupplementalFont {
                Script = "Geor", Typeface = "Sylfaen"
            };

            majorFont1.Append(latinFont1);
            majorFont1.Append(eastAsianFont1);
            majorFont1.Append(complexScriptFont1);
            majorFont1.Append(supplementalFont1);
            majorFont1.Append(supplementalFont2);
            majorFont1.Append(supplementalFont3);
            majorFont1.Append(supplementalFont4);
            majorFont1.Append(supplementalFont5);
            majorFont1.Append(supplementalFont6);
            majorFont1.Append(supplementalFont7);
            majorFont1.Append(supplementalFont8);
            majorFont1.Append(supplementalFont9);
            majorFont1.Append(supplementalFont10);
            majorFont1.Append(supplementalFont11);
            majorFont1.Append(supplementalFont12);
            majorFont1.Append(supplementalFont13);
            majorFont1.Append(supplementalFont14);
            majorFont1.Append(supplementalFont15);
            majorFont1.Append(supplementalFont16);
            majorFont1.Append(supplementalFont17);
            majorFont1.Append(supplementalFont18);
            majorFont1.Append(supplementalFont19);
            majorFont1.Append(supplementalFont20);
            majorFont1.Append(supplementalFont21);
            majorFont1.Append(supplementalFont22);
            majorFont1.Append(supplementalFont23);
            majorFont1.Append(supplementalFont24);
            majorFont1.Append(supplementalFont25);
            majorFont1.Append(supplementalFont26);
            majorFont1.Append(supplementalFont27);
            majorFont1.Append(supplementalFont28);
            majorFont1.Append(supplementalFont29);
            majorFont1.Append(supplementalFont30);

            var minorFont1 = new A.MinorFont();
            var latinFont2 = new A.LatinFont {
                Typeface = "Calibri"
            };
            var eastAsianFont2 = new A.EastAsianFont {
                Typeface = ""
            };
            var complexScriptFont2 = new A.ComplexScriptFont {
                Typeface = ""
            };
            var supplementalFont31 = new A.SupplementalFont {
                Script = "Jpan", Typeface = "MS Pゴシック"
            };
            var supplementalFont32 = new A.SupplementalFont {
                Script = "Hang", Typeface = "맑은 고딕"
            };
            var supplementalFont33 = new A.SupplementalFont {
                Script = "Hans", Typeface = "宋体"
            };
            var supplementalFont34 = new A.SupplementalFont {
                Script = "Hant", Typeface = "新細明體"
            };
            var supplementalFont35 = new A.SupplementalFont {
                Script = "Arab", Typeface = "Arial"
            };
            var supplementalFont36 = new A.SupplementalFont {
                Script = "Hebr", Typeface = "Arial"
            };
            var supplementalFont37 = new A.SupplementalFont {
                Script = "Thai", Typeface = "Tahoma"
            };
            var supplementalFont38 = new A.SupplementalFont {
                Script = "Ethi", Typeface = "Nyala"
            };
            var supplementalFont39 = new A.SupplementalFont {
                Script = "Beng", Typeface = "Vrinda"
            };
            var supplementalFont40 = new A.SupplementalFont {
                Script = "Gujr", Typeface = "Shruti"
            };
            var supplementalFont41 = new A.SupplementalFont {
                Script = "Khmr", Typeface = "DaunPenh"
            };
            var supplementalFont42 = new A.SupplementalFont {
                Script = "Knda", Typeface = "Tunga"
            };
            var supplementalFont43 = new A.SupplementalFont {
                Script = "Guru", Typeface = "Raavi"
            };
            var supplementalFont44 = new A.SupplementalFont {
                Script = "Cans", Typeface = "Euphemia"
            };
            var supplementalFont45 = new A.SupplementalFont {
                Script = "Cher", Typeface = "Plantagenet Cherokee"
            };
            var supplementalFont46 = new A.SupplementalFont {
                Script = "Yiii", Typeface = "Microsoft Yi Baiti"
            };
            var supplementalFont47 = new A.SupplementalFont {
                Script = "Tibt", Typeface = "Microsoft Himalaya"
            };
            var supplementalFont48 = new A.SupplementalFont {
                Script = "Thaa", Typeface = "MV Boli"
            };
            var supplementalFont49 = new A.SupplementalFont {
                Script = "Deva", Typeface = "Mangal"
            };
            var supplementalFont50 = new A.SupplementalFont {
                Script = "Telu", Typeface = "Gautami"
            };
            var supplementalFont51 = new A.SupplementalFont {
                Script = "Taml", Typeface = "Latha"
            };
            var supplementalFont52 = new A.SupplementalFont {
                Script = "Syrc", Typeface = "Estrangelo Edessa"
            };
            var supplementalFont53 = new A.SupplementalFont {
                Script = "Orya", Typeface = "Kalinga"
            };
            var supplementalFont54 = new A.SupplementalFont {
                Script = "Mlym", Typeface = "Kartika"
            };
            var supplementalFont55 = new A.SupplementalFont {
                Script = "Laoo", Typeface = "DokChampa"
            };
            var supplementalFont56 = new A.SupplementalFont {
                Script = "Sinh", Typeface = "Iskoola Pota"
            };
            var supplementalFont57 = new A.SupplementalFont {
                Script = "Mong", Typeface = "Mongolian Baiti"
            };
            var supplementalFont58 = new A.SupplementalFont {
                Script = "Viet", Typeface = "Arial"
            };
            var supplementalFont59 = new A.SupplementalFont {
                Script = "Uigh", Typeface = "Microsoft Uighur"
            };
            var supplementalFont60 = new A.SupplementalFont {
                Script = "Geor", Typeface = "Sylfaen"
            };

            minorFont1.Append(latinFont2);
            minorFont1.Append(eastAsianFont2);
            minorFont1.Append(complexScriptFont2);
            minorFont1.Append(supplementalFont31);
            minorFont1.Append(supplementalFont32);
            minorFont1.Append(supplementalFont33);
            minorFont1.Append(supplementalFont34);
            minorFont1.Append(supplementalFont35);
            minorFont1.Append(supplementalFont36);
            minorFont1.Append(supplementalFont37);
            minorFont1.Append(supplementalFont38);
            minorFont1.Append(supplementalFont39);
            minorFont1.Append(supplementalFont40);
            minorFont1.Append(supplementalFont41);
            minorFont1.Append(supplementalFont42);
            minorFont1.Append(supplementalFont43);
            minorFont1.Append(supplementalFont44);
            minorFont1.Append(supplementalFont45);
            minorFont1.Append(supplementalFont46);
            minorFont1.Append(supplementalFont47);
            minorFont1.Append(supplementalFont48);
            minorFont1.Append(supplementalFont49);
            minorFont1.Append(supplementalFont50);
            minorFont1.Append(supplementalFont51);
            minorFont1.Append(supplementalFont52);
            minorFont1.Append(supplementalFont53);
            minorFont1.Append(supplementalFont54);
            minorFont1.Append(supplementalFont55);
            minorFont1.Append(supplementalFont56);
            minorFont1.Append(supplementalFont57);
            minorFont1.Append(supplementalFont58);
            minorFont1.Append(supplementalFont59);
            minorFont1.Append(supplementalFont60);

            fontScheme2.Append(majorFont1);
            fontScheme2.Append(minorFont1);

            var formatScheme1 = new A.FormatScheme {
                Name = "Larissa"
            };

            var fillStyleList1 = new A.FillStyleList();

            var solidFill1   = new A.SolidFill();
            var schemeColor1 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill1.Append(schemeColor1);

            var gradientFill1 = new A.GradientFill {
                RotateWithShape = true
            };

            var gradientStopList1 = new A.GradientStopList();

            var gradientStop1 = new A.GradientStop {
                Position = 0
            };

            var schemeColor2 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var tint1 = new A.Tint {
                Val = 50000
            };
            var saturationModulation1 = new A.SaturationModulation {
                Val = 300000
            };

            schemeColor2.Append(tint1);
            schemeColor2.Append(saturationModulation1);

            gradientStop1.Append(schemeColor2);

            var gradientStop2 = new A.GradientStop {
                Position = 35000
            };

            var schemeColor3 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var tint2 = new A.Tint {
                Val = 37000
            };
            var saturationModulation2 = new A.SaturationModulation {
                Val = 300000
            };

            schemeColor3.Append(tint2);
            schemeColor3.Append(saturationModulation2);

            gradientStop2.Append(schemeColor3);

            var gradientStop3 = new A.GradientStop {
                Position = 100000
            };

            var schemeColor4 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var tint3 = new A.Tint {
                Val = 15000
            };
            var saturationModulation3 = new A.SaturationModulation {
                Val = 350000
            };

            schemeColor4.Append(tint3);
            schemeColor4.Append(saturationModulation3);

            gradientStop3.Append(schemeColor4);

            gradientStopList1.Append(gradientStop1);
            gradientStopList1.Append(gradientStop2);
            gradientStopList1.Append(gradientStop3);
            var linearGradientFill1 = new A.LinearGradientFill {
                Angle = 16200000, Scaled = true
            };

            gradientFill1.Append(gradientStopList1);
            gradientFill1.Append(linearGradientFill1);

            var gradientFill2 = new A.GradientFill {
                RotateWithShape = true
            };

            var gradientStopList2 = new A.GradientStopList();

            var gradientStop4 = new A.GradientStop {
                Position = 0
            };

            var schemeColor5 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var shade1 = new A.Shade {
                Val = 51000
            };
            var saturationModulation4 = new A.SaturationModulation {
                Val = 130000
            };

            schemeColor5.Append(shade1);
            schemeColor5.Append(saturationModulation4);

            gradientStop4.Append(schemeColor5);

            var gradientStop5 = new A.GradientStop {
                Position = 80000
            };

            var schemeColor6 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var shade2 = new A.Shade {
                Val = 93000
            };
            var saturationModulation5 = new A.SaturationModulation {
                Val = 130000
            };

            schemeColor6.Append(shade2);
            schemeColor6.Append(saturationModulation5);

            gradientStop5.Append(schemeColor6);

            var gradientStop6 = new A.GradientStop {
                Position = 100000
            };

            var schemeColor7 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var shade3 = new A.Shade {
                Val = 94000
            };
            var saturationModulation6 = new A.SaturationModulation {
                Val = 135000
            };

            schemeColor7.Append(shade3);
            schemeColor7.Append(saturationModulation6);

            gradientStop6.Append(schemeColor7);

            gradientStopList2.Append(gradientStop4);
            gradientStopList2.Append(gradientStop5);
            gradientStopList2.Append(gradientStop6);
            var linearGradientFill2 = new A.LinearGradientFill {
                Angle = 16200000, Scaled = false
            };

            gradientFill2.Append(gradientStopList2);
            gradientFill2.Append(linearGradientFill2);

            fillStyleList1.Append(solidFill1);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            var lineStyleList1 = new A.LineStyleList();

            var outline1 = new A.Outline {
                Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center
            };

            var solidFill2 = new A.SolidFill();

            var schemeColor8 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var shade4 = new A.Shade {
                Val = 95000
            };
            var saturationModulation7 = new A.SaturationModulation {
                Val = 105000
            };

            schemeColor8.Append(shade4);
            schemeColor8.Append(saturationModulation7);

            solidFill2.Append(schemeColor8);
            var presetDash1 = new A.PresetDash {
                Val = A.PresetLineDashValues.Solid
            };

            outline1.Append(solidFill2);
            outline1.Append(presetDash1);

            var outline2 = new A.Outline {
                Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center
            };

            var solidFill3   = new A.SolidFill();
            var schemeColor9 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill3.Append(schemeColor9);
            var presetDash2 = new A.PresetDash {
                Val = A.PresetLineDashValues.Solid
            };

            outline2.Append(solidFill3);
            outline2.Append(presetDash2);

            var outline3 = new A.Outline {
                Width = 38100, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center
            };

            var solidFill4    = new A.SolidFill();
            var schemeColor10 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill4.Append(schemeColor10);
            var presetDash3 = new A.PresetDash {
                Val = A.PresetLineDashValues.Solid
            };

            outline3.Append(solidFill4);
            outline3.Append(presetDash3);

            lineStyleList1.Append(outline1);
            lineStyleList1.Append(outline2);
            lineStyleList1.Append(outline3);

            var effectStyleList1 = new A.EffectStyleList();

            var effectStyle1 = new A.EffectStyle();

            var effectList1 = new A.EffectList();

            var outerShadow1 = new A.OuterShadow {
                BlurRadius = 40000L, Distance = 20000L, Direction = 5400000, RotateWithShape = false
            };

            var rgbColorModelHex11 = new A.RgbColorModelHex {
                Val = "000000"
            };
            var alpha1 = new A.Alpha {
                Val = 38000
            };

            rgbColorModelHex11.Append(alpha1);

            outerShadow1.Append(rgbColorModelHex11);

            effectList1.Append(outerShadow1);

            effectStyle1.Append(effectList1);

            var effectStyle2 = new A.EffectStyle();

            var effectList2 = new A.EffectList();

            var outerShadow2 = new A.OuterShadow {
                BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false
            };

            var rgbColorModelHex12 = new A.RgbColorModelHex {
                Val = "000000"
            };
            var alpha2 = new A.Alpha {
                Val = 35000
            };

            rgbColorModelHex12.Append(alpha2);

            outerShadow2.Append(rgbColorModelHex12);

            effectList2.Append(outerShadow2);

            effectStyle2.Append(effectList2);

            var effectStyle3 = new A.EffectStyle();

            var effectList3 = new A.EffectList();

            var outerShadow3 = new A.OuterShadow {
                BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false
            };

            var rgbColorModelHex13 = new A.RgbColorModelHex {
                Val = "000000"
            };
            var alpha3 = new A.Alpha {
                Val = 35000
            };

            rgbColorModelHex13.Append(alpha3);

            outerShadow3.Append(rgbColorModelHex13);

            effectList3.Append(outerShadow3);

            var scene3DType1 = new A.Scene3DType();

            var camera1 = new A.Camera {
                Preset = A.PresetCameraValues.OrthographicFront
            };
            var rotation1 = new A.Rotation {
                Latitude = 0, Longitude = 0, Revolution = 0
            };

            camera1.Append(rotation1);

            var lightRig1 = new A.LightRig {
                Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top
            };
            var rotation2 = new A.Rotation {
                Latitude = 0, Longitude = 0, Revolution = 1200000
            };

            lightRig1.Append(rotation2);

            scene3DType1.Append(camera1);
            scene3DType1.Append(lightRig1);

            var shape3DType1 = new A.Shape3DType();
            var bevelTop1    = new A.BevelTop {
                Width = 63500L, Height = 25400L
            };

            shape3DType1.Append(bevelTop1);

            effectStyle3.Append(effectList3);
            effectStyle3.Append(scene3DType1);
            effectStyle3.Append(shape3DType1);

            effectStyleList1.Append(effectStyle1);
            effectStyleList1.Append(effectStyle2);
            effectStyleList1.Append(effectStyle3);

            var backgroundFillStyleList1 = new A.BackgroundFillStyleList();

            var solidFill5    = new A.SolidFill();
            var schemeColor11 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill5.Append(schemeColor11);

            var gradientFill3 = new A.GradientFill {
                RotateWithShape = true
            };

            var gradientStopList3 = new A.GradientStopList();

            var gradientStop7 = new A.GradientStop {
                Position = 0
            };

            var schemeColor12 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var tint4 = new A.Tint {
                Val = 40000
            };
            var saturationModulation8 = new A.SaturationModulation {
                Val = 350000
            };

            schemeColor12.Append(tint4);
            schemeColor12.Append(saturationModulation8);

            gradientStop7.Append(schemeColor12);

            var gradientStop8 = new A.GradientStop {
                Position = 40000
            };

            var schemeColor13 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var tint5 = new A.Tint {
                Val = 45000
            };
            var shade5 = new A.Shade {
                Val = 99000
            };
            var saturationModulation9 = new A.SaturationModulation {
                Val = 350000
            };

            schemeColor13.Append(tint5);
            schemeColor13.Append(shade5);
            schemeColor13.Append(saturationModulation9);

            gradientStop8.Append(schemeColor13);

            var gradientStop9 = new A.GradientStop {
                Position = 100000
            };

            var schemeColor14 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var shade6 = new A.Shade {
                Val = 20000
            };
            var saturationModulation10 = new A.SaturationModulation {
                Val = 255000
            };

            schemeColor14.Append(shade6);
            schemeColor14.Append(saturationModulation10);

            gradientStop9.Append(schemeColor14);

            gradientStopList3.Append(gradientStop7);
            gradientStopList3.Append(gradientStop8);
            gradientStopList3.Append(gradientStop9);

            var pathGradientFill1 = new A.PathGradientFill {
                Path = A.PathShadeValues.Circle
            };
            var fillToRectangle1 = new A.FillToRectangle {
                Left = 50000, Top = -80000, Right = 50000, Bottom = 180000
            };

            pathGradientFill1.Append(fillToRectangle1);

            gradientFill3.Append(gradientStopList3);
            gradientFill3.Append(pathGradientFill1);

            var gradientFill4 = new A.GradientFill {
                RotateWithShape = true
            };

            var gradientStopList4 = new A.GradientStopList();

            var gradientStop10 = new A.GradientStop {
                Position = 0
            };

            var schemeColor15 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var tint6 = new A.Tint {
                Val = 80000
            };
            var saturationModulation11 = new A.SaturationModulation {
                Val = 300000
            };

            schemeColor15.Append(tint6);
            schemeColor15.Append(saturationModulation11);

            gradientStop10.Append(schemeColor15);

            var gradientStop11 = new A.GradientStop {
                Position = 100000
            };

            var schemeColor16 = new A.SchemeColor {
                Val = A.SchemeColorValues.PhColor
            };
            var shade7 = new A.Shade {
                Val = 30000
            };
            var saturationModulation12 = new A.SaturationModulation {
                Val = 200000
            };

            schemeColor16.Append(shade7);
            schemeColor16.Append(saturationModulation12);

            gradientStop11.Append(schemeColor16);

            gradientStopList4.Append(gradientStop10);
            gradientStopList4.Append(gradientStop11);

            var pathGradientFill2 = new A.PathGradientFill {
                Path = A.PathShadeValues.Circle
            };
            var fillToRectangle2 = new A.FillToRectangle {
                Left = 50000, Top = 50000, Right = 50000, Bottom = 50000
            };

            pathGradientFill2.Append(fillToRectangle2);

            gradientFill4.Append(gradientStopList4);
            gradientFill4.Append(pathGradientFill2);

            backgroundFillStyleList1.Append(solidFill5);
            backgroundFillStyleList1.Append(gradientFill3);
            backgroundFillStyleList1.Append(gradientFill4);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme2);
            themeElements1.Append(formatScheme1);
            var objectDefaults1       = new A.ObjectDefaults();
            var extraColorSchemeList1 = new A.ExtraColorSchemeList();

            theme1.Append(themeElements1);
            theme1.Append(objectDefaults1);
            theme1.Append(extraColorSchemeList1);

            themePart1.Theme = theme1;
        }
Пример #3
0
        // Generates content of part.
        private static void GeneratePartContent(MainDocumentPart part)
        {
            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 paragraph5 = new Paragraph() { RsidParagraphMarkRevision = "00933EBD", RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00C20112", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines() { Before = "480", Line = "360", LineRule = LineSpacingRuleValues.Auto };
            Justification justification6 = new Justification() { Val = JustificationValues.Center };
            OutlineLevel outlineLevel1 = new OutlineLevel() { Val = 0 };

            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
            FontSize fontSize9 = new FontSize() { Val = "48" };
            FontSizeComplexScript fontSizeComplexScript10 = new FontSizeComplexScript() { Val = "30" };
            Underline underline2 = new Underline() { Val = UnderlineValues.Single };

            paragraphMarkRunProperties1.Append(fontSize9);
            paragraphMarkRunProperties1.Append(fontSizeComplexScript10);
            paragraphMarkRunProperties1.Append(underline2);

            paragraphProperties1.Append(spacingBetweenLines1);
            paragraphProperties1.Append(justification6);
            paragraphProperties1.Append(outlineLevel1);
            paragraphProperties1.Append(paragraphMarkRunProperties1);

            Run run5 = new Run() { RsidRunProperties = "00933EBD" };

            RunProperties runProperties1 = new RunProperties();
            FontSize fontSize10 = new FontSize() { Val = "48" };
            FontSizeComplexScript fontSizeComplexScript11 = new FontSizeComplexScript() { Val = "30" };
            Underline underline3 = new Underline() { Val = UnderlineValues.Single };

            runProperties1.Append(fontSize10);
            runProperties1.Append(fontSizeComplexScript11);
            runProperties1.Append(underline3);
            Text text1 = new Text();
            text1.Text = "Memorandum";

            run5.Append(runProperties1);
            run5.Append(text1);

            paragraph5.Append(paragraphProperties1);
            paragraph5.Append(run5);

            Paragraph paragraph6 = new Paragraph() { RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00594F7D", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties2 = new ParagraphProperties();
            WordWrap wordWrap1 = new WordWrap() { Val = false };
            SpacingBetweenLines spacingBetweenLines2 = new SpacingBetweenLines() { Line = "360", LineRule = LineSpacingRuleValues.Auto };
            Justification justification7 = new Justification() { Val = JustificationValues.Right };

            ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();
            FontSize fontSize11 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript12 = new FontSizeComplexScript() { Val = "30" };

            paragraphMarkRunProperties2.Append(fontSize11);
            paragraphMarkRunProperties2.Append(fontSizeComplexScript12);

            paragraphProperties2.Append(wordWrap1);
            paragraphProperties2.Append(spacingBetweenLines2);
            paragraphProperties2.Append(justification7);
            paragraphProperties2.Append(paragraphMarkRunProperties2);

            Run run6 = new Run();

            RunProperties runProperties2 = new RunProperties();
            FontSize fontSize12 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript13 = new FontSizeComplexScript() { Val = "30" };

            runProperties2.Append(fontSize12);
            runProperties2.Append(fontSizeComplexScript13);
            Text text2 = new Text();
            text2.Text = "Case No.:";

            run6.Append(runProperties2);
            run6.Append(text2);

            Run run7 = new Run() { RsidRunAddition = "00594F7D" };

            RunProperties runProperties3 = new RunProperties();
            FontSize fontSize13 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript14 = new FontSizeComplexScript() { Val = "30" };

            runProperties3.Append(fontSize13);
            runProperties3.Append(fontSizeComplexScript14);
            Text text3 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text3.Text = " ";

            run7.Append(runProperties3);
            run7.Append(text3);

            Run run8 = new Run() { RsidRunProperties = "00594F7D", RsidRunAddition = "00594F7D" };

            RunProperties runProperties4 = new RunProperties();
            Color color3 = new Color() { Val = "FF0000" };
            FontSize fontSize14 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript15 = new FontSizeComplexScript() { Val = "30" };

            runProperties4.Append(color3);
            runProperties4.Append(fontSize14);
            runProperties4.Append(fontSizeComplexScript15);
            Text text4 = new Text();
            text4.Text = "xxxxxx";

            run8.Append(runProperties4);
            run8.Append(text4);

            paragraph6.Append(paragraphProperties2);
            paragraph6.Append(run6);
            paragraph6.Append(run7);
            paragraph6.Append(run8);

            Table table1 = new Table();

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

            TableBorders tableBorders2 = new TableBorders();
            TopBorder topBorder3 = 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 bottomBorder4 = 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 insideVerticalBorder2 = new InsideVerticalBorder() { Val = BorderValues.None, Color = "auto", Size = (UInt32Value)0U, Space = (UInt32Value)0U };

            tableBorders2.Append(topBorder3);
            tableBorders2.Append(leftBorder3);
            tableBorders2.Append(bottomBorder4);
            tableBorders2.Append(rightBorder3);
            tableBorders2.Append(insideHorizontalBorder2);
            tableBorders2.Append(insideVerticalBorder2);
            TableLook tableLook1 = new TableLook() { Val = "04A0" };

            tableProperties1.Append(tableStyle1);
            tableProperties1.Append(tableWidth1);
            tableProperties1.Append(tableIndentation2);
            tableProperties1.Append(tableBorders2);
            tableProperties1.Append(tableLook1);

            TableGrid tableGrid1 = new TableGrid();
            GridColumn gridColumn1 = new GridColumn() { Width = "1077" };
            GridColumn gridColumn2 = new GridColumn() { Width = "7121" };

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

            TableRow tableRow1 = new TableRow() { RsidTableRowMarkRevision = "000568E3", RsidTableRowAddition = "00C20112", RsidTableRowProperties = "00CA16E1" };

            TableRowProperties tableRowProperties1 = new TableRowProperties();
            TableRowHeight tableRowHeight1 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties1.Append(tableRowHeight1);

            TableCell tableCell1 = new TableCell();

            TableCellProperties tableCellProperties1 = new TableCellProperties();
            TableCellWidth tableCellWidth1 = new TableCellWidth() { Width = "1080", Type = TableWidthUnitValues.Dxa };
            TableCellVerticalAlignment tableCellVerticalAlignment1 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(tableCellVerticalAlignment1);

            Paragraph paragraph7 = new Paragraph() { RsidParagraphMarkRevision = "00E3003B", RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties3 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines3 = new SpacingBetweenLines() { Line = "276", LineRule = LineSpacingRuleValues.Auto };
            Justification justification8 = new Justification() { Val = JustificationValues.Left };

            ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();
            Italic italic1 = new Italic();
            FontSize fontSize15 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript16 = new FontSizeComplexScript() { Val = "30" };

            paragraphMarkRunProperties3.Append(italic1);
            paragraphMarkRunProperties3.Append(fontSize15);
            paragraphMarkRunProperties3.Append(fontSizeComplexScript16);

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

            Run run9 = new Run() { RsidRunProperties = "00E3003B" };

            RunProperties runProperties5 = new RunProperties();
            Italic italic2 = new Italic();
            FontSize fontSize16 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript17 = new FontSizeComplexScript() { Val = "30" };

            runProperties5.Append(italic2);
            runProperties5.Append(fontSize16);
            runProperties5.Append(fontSizeComplexScript17);
            Text text5 = new Text();
            text5.Text = "To:";

            run9.Append(runProperties5);
            run9.Append(text5);

            paragraph7.Append(paragraphProperties3);
            paragraph7.Append(run9);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph7);

            TableCell tableCell2 = new TableCell();

            TableCellProperties tableCellProperties2 = new TableCellProperties();
            TableCellWidth tableCellWidth2 = new TableCellWidth() { Width = "7334", Type = TableWidthUnitValues.Dxa };
            TableCellVerticalAlignment tableCellVerticalAlignment2 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(tableCellVerticalAlignment2);

            Paragraph paragraph8 = new Paragraph() { RsidParagraphMarkRevision = "000568E3", RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties4 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines4 = new SpacingBetweenLines() { Line = "276", LineRule = LineSpacingRuleValues.Auto };
            Justification justification9 = new Justification() { Val = JustificationValues.Left };

            ParagraphMarkRunProperties paragraphMarkRunProperties4 = new ParagraphMarkRunProperties();
            FontSize fontSize17 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript18 = new FontSizeComplexScript() { Val = "30" };

            paragraphMarkRunProperties4.Append(fontSize17);
            paragraphMarkRunProperties4.Append(fontSizeComplexScript18);

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

            Run run10 = new Run() { RsidRunProperties = "000568E3" };

            RunProperties runProperties6 = new RunProperties();
            FontSize fontSize18 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript19 = new FontSizeComplexScript() { Val = "30" };

            runProperties6.Append(fontSize18);
            runProperties6.Append(fontSizeComplexScript19);
            Text text6 = new Text();
            text6.Text = "Dr";

            run10.Append(runProperties6);
            run10.Append(text6);

            Run run11 = new Run();

            RunProperties runProperties7 = new RunProperties();
            FontSize fontSize19 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript20 = new FontSizeComplexScript() { Val = "30" };

            runProperties7.Append(fontSize19);
            runProperties7.Append(fontSizeComplexScript20);
            Text text7 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text7.Text = ". Horst Hohberger, Chair of ";

            run11.Append(runProperties7);
            run11.Append(text7);

            Run run12 = new Run() { RsidRunProperties = "000568E3" };

            RunProperties runProperties8 = new RunProperties();
            FontSize fontSize20 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript21 = new FontSizeComplexScript() { Val = "30" };

            runProperties8.Append(fontSize20);
            runProperties8.Append(fontSizeComplexScript21);
            Text text8 = new Text();
            text8.Text = "Faculty Committee on Discipline";

            run12.Append(runProperties8);
            run12.Append(text8);

            paragraph8.Append(paragraphProperties4);
            paragraph8.Append(run10);
            paragraph8.Append(run11);
            paragraph8.Append(run12);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph8);

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

            TableRow tableRow2 = new TableRow() { RsidTableRowMarkRevision = "000568E3", RsidTableRowAddition = "00C20112", RsidTableRowProperties = "00CA16E1" };

            TableRowProperties tableRowProperties2 = new TableRowProperties();
            TableRowHeight tableRowHeight2 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties2.Append(tableRowHeight2);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth tableCellWidth3 = new TableCellWidth() { Width = "1080", Type = TableWidthUnitValues.Dxa };
            TableCellVerticalAlignment tableCellVerticalAlignment3 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(tableCellVerticalAlignment3);

            Paragraph paragraph9 = new Paragraph() { RsidParagraphMarkRevision = "00E3003B", RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties5 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines5 = new SpacingBetweenLines() { Line = "276", LineRule = LineSpacingRuleValues.Auto };
            Justification justification10 = new Justification() { Val = JustificationValues.Left };
            OutlineLevel outlineLevel2 = new OutlineLevel() { Val = 0 };

            ParagraphMarkRunProperties paragraphMarkRunProperties5 = new ParagraphMarkRunProperties();
            Italic italic3 = new Italic();
            FontSize fontSize21 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript22 = new FontSizeComplexScript() { Val = "30" };

            paragraphMarkRunProperties5.Append(italic3);
            paragraphMarkRunProperties5.Append(fontSize21);
            paragraphMarkRunProperties5.Append(fontSizeComplexScript22);

            paragraphProperties5.Append(spacingBetweenLines5);
            paragraphProperties5.Append(justification10);
            paragraphProperties5.Append(outlineLevel2);
            paragraphProperties5.Append(paragraphMarkRunProperties5);

            Run run13 = new Run() { RsidRunProperties = "00E3003B" };

            RunProperties runProperties9 = new RunProperties();
            Italic italic4 = new Italic();
            FontSize fontSize22 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript23 = new FontSizeComplexScript() { Val = "30" };

            runProperties9.Append(italic4);
            runProperties9.Append(fontSize22);
            runProperties9.Append(fontSizeComplexScript23);
            Text text9 = new Text();
            text9.Text = "From:";

            run13.Append(runProperties9);
            run13.Append(text9);

            paragraph9.Append(paragraphProperties5);
            paragraph9.Append(run13);

            tableCell3.Append(tableCellProperties3);
            tableCell3.Append(paragraph9);

            TableCell tableCell4 = new TableCell();

            TableCellProperties tableCellProperties4 = new TableCellProperties();
            TableCellWidth tableCellWidth4 = new TableCellWidth() { Width = "7334", Type = TableWidthUnitValues.Dxa };
            TableCellVerticalAlignment tableCellVerticalAlignment4 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties4.Append(tableCellWidth4);
            tableCellProperties4.Append(tableCellVerticalAlignment4);

            Paragraph paragraph10 = new Paragraph() { RsidParagraphMarkRevision = "000568E3", RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "00933D40" };

            ParagraphProperties paragraphProperties6 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines6 = new SpacingBetweenLines() { Line = "276", LineRule = LineSpacingRuleValues.Auto };
            Justification justification11 = new Justification() { Val = JustificationValues.Left };
            OutlineLevel outlineLevel3 = new OutlineLevel() { Val = 0 };

            ParagraphMarkRunProperties paragraphMarkRunProperties6 = new ParagraphMarkRunProperties();
            FontSize fontSize23 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript24 = new FontSizeComplexScript() { Val = "30" };

            paragraphMarkRunProperties6.Append(fontSize23);
            paragraphMarkRunProperties6.Append(fontSizeComplexScript24);

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

            Run run14 = new Run();

            RunProperties runProperties10 = new RunProperties();
            FontSize fontSize24 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript25 = new FontSizeComplexScript() { Val = "30" };

            runProperties10.Append(fontSize24);
            runProperties10.Append(fontSizeComplexScript25);
            Text text10 = new Text();
            text10.Text = "Tan Jia";

            run14.Append(runProperties10);
            run14.Append(text10);

            Run run15 = new Run() { RsidRunAddition = "00C20112" };

            RunProperties runProperties11 = new RunProperties();
            FontSize fontSize25 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript26 = new FontSizeComplexScript() { Val = "30" };

            runProperties11.Append(fontSize25);
            runProperties11.Append(fontSizeComplexScript26);
            Text text11 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text11.Text = ", ";

            run15.Append(runProperties11);
            run15.Append(text11);

            Run run16 = new Run() { RsidRunAddition = "00C20112" };

            RunProperties runProperties12 = new RunProperties();
            RunFonts runFonts7 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            FontSize fontSize26 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript27 = new FontSizeComplexScript() { Val = "30" };

            runProperties12.Append(runFonts7);
            runProperties12.Append(fontSize26);
            runProperties12.Append(fontSizeComplexScript27);
            Text text12 = new Text();
            text12.Text = "Chair";

            run16.Append(runProperties12);
            run16.Append(text12);

            Run run17 = new Run() { RsidRunProperties = "000568E3", RsidRunAddition = "00C20112" };

            RunProperties runProperties13 = new RunProperties();
            FontSize fontSize27 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript28 = new FontSizeComplexScript() { Val = "30" };

            runProperties13.Append(fontSize27);
            runProperties13.Append(fontSizeComplexScript28);
            Text text13 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text13.Text = " of Honor Council";

            run17.Append(runProperties13);
            run17.Append(text13);

            Run run18 = new Run() { RsidRunAddition = "00C20112" };

            RunProperties runProperties14 = new RunProperties();
            FontSize fontSize28 = new FontSize() { Val = "24" };

            runProperties14.Append(fontSize28);
            Text text14 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text14.Text = " (On behalf of Honor Council)";

            run18.Append(runProperties14);
            run18.Append(text14);

            paragraph10.Append(paragraphProperties6);
            paragraph10.Append(run14);
            paragraph10.Append(run15);
            paragraph10.Append(run16);
            paragraph10.Append(run17);
            paragraph10.Append(run18);

            tableCell4.Append(tableCellProperties4);
            tableCell4.Append(paragraph10);

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

            TableRow tableRow3 = new TableRow() { RsidTableRowMarkRevision = "000568E3", RsidTableRowAddition = "00C20112", RsidTableRowProperties = "00CA16E1" };

            TableRowProperties tableRowProperties3 = new TableRowProperties();
            TableRowHeight tableRowHeight3 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties3.Append(tableRowHeight3);

            TableCell tableCell5 = new TableCell();

            TableCellProperties tableCellProperties5 = new TableCellProperties();
            TableCellWidth tableCellWidth5 = new TableCellWidth() { Width = "1080", Type = TableWidthUnitValues.Dxa };
            TableCellVerticalAlignment tableCellVerticalAlignment5 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties5.Append(tableCellWidth5);
            tableCellProperties5.Append(tableCellVerticalAlignment5);

            Paragraph paragraph11 = new Paragraph() { RsidParagraphMarkRevision = "00E3003B", RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties7 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines7 = new SpacingBetweenLines() { Line = "276", LineRule = LineSpacingRuleValues.Auto };
            Justification justification12 = new Justification() { Val = JustificationValues.Left };
            OutlineLevel outlineLevel4 = new OutlineLevel() { Val = 0 };

            ParagraphMarkRunProperties paragraphMarkRunProperties7 = new ParagraphMarkRunProperties();
            Italic italic5 = new Italic();
            FontSize fontSize29 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript29 = new FontSizeComplexScript() { Val = "30" };

            paragraphMarkRunProperties7.Append(italic5);
            paragraphMarkRunProperties7.Append(fontSize29);
            paragraphMarkRunProperties7.Append(fontSizeComplexScript29);

            paragraphProperties7.Append(spacingBetweenLines7);
            paragraphProperties7.Append(justification12);
            paragraphProperties7.Append(outlineLevel4);
            paragraphProperties7.Append(paragraphMarkRunProperties7);

            Run run19 = new Run() { RsidRunProperties = "00E3003B" };

            RunProperties runProperties15 = new RunProperties();
            Italic italic6 = new Italic();
            FontSize fontSize30 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript30 = new FontSizeComplexScript() { Val = "30" };

            runProperties15.Append(italic6);
            runProperties15.Append(fontSize30);
            runProperties15.Append(fontSizeComplexScript30);
            Text text15 = new Text();
            text15.Text = "Subject:";

            run19.Append(runProperties15);
            run19.Append(text15);

            paragraph11.Append(paragraphProperties7);
            paragraph11.Append(run19);

            tableCell5.Append(tableCellProperties5);
            tableCell5.Append(paragraph11);

            TableCell tableCell6 = new TableCell();

            TableCellProperties tableCellProperties6 = new TableCellProperties();
            TableCellWidth tableCellWidth6 = new TableCellWidth() { Width = "7334", Type = TableWidthUnitValues.Dxa };
            TableCellVerticalAlignment tableCellVerticalAlignment6 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties6.Append(tableCellWidth6);
            tableCellProperties6.Append(tableCellVerticalAlignment6);

            Paragraph paragraph12 = new Paragraph() { RsidParagraphMarkRevision = "00E3003B", RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties8 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines8 = new SpacingBetweenLines() { Line = "276", LineRule = LineSpacingRuleValues.Auto };
            Justification justification13 = new Justification() { Val = JustificationValues.Left };
            OutlineLevel outlineLevel5 = new OutlineLevel() { Val = 0 };

            ParagraphMarkRunProperties paragraphMarkRunProperties8 = new ParagraphMarkRunProperties();
            Italic italic7 = new Italic();
            FontSize fontSize31 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript31 = new FontSizeComplexScript() { Val = "30" };

            paragraphMarkRunProperties8.Append(italic7);
            paragraphMarkRunProperties8.Append(fontSize31);
            paragraphMarkRunProperties8.Append(fontSizeComplexScript31);

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

            Run run20 = new Run() { RsidRunProperties = "003A553E" };

            RunProperties runProperties16 = new RunProperties();
            Italic italic8 = new Italic();
            FontSize fontSize32 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript32 = new FontSizeComplexScript() { Val = "30" };

            runProperties16.Append(italic8);
            runProperties16.Append(fontSize32);
            runProperties16.Append(fontSizeComplexScript32);
            Text text16 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text16.Text = "Decision ";

            run20.Append(runProperties16);
            run20.Append(text16);

            Run run21 = new Run();

            RunProperties runProperties17 = new RunProperties();
            Italic italic9 = new Italic();
            FontSize fontSize33 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript33 = new FontSizeComplexScript() { Val = "30" };

            runProperties17.Append(italic9);
            runProperties17.Append(fontSize33);
            runProperties17.Append(fontSizeComplexScript33);
            Text text17 = new Text();
            text17.Text = "R";

            run21.Append(runProperties17);
            run21.Append(text17);

            Run run22 = new Run() { RsidRunProperties = "003A553E" };

            RunProperties runProperties18 = new RunProperties();
            Italic italic10 = new Italic();
            FontSize fontSize34 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript34 = new FontSizeComplexScript() { Val = "30" };

            runProperties18.Append(italic10);
            runProperties18.Append(fontSize34);
            runProperties18.Append(fontSizeComplexScript34);
            Text text18 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text18.Text = "egarding an Alleged ";

            run22.Append(runProperties18);
            run22.Append(text18);

            Run run23 = new Run();

            RunProperties runProperties19 = new RunProperties();
            Italic italic11 = new Italic();
            FontSize fontSize35 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript35 = new FontSizeComplexScript() { Val = "30" };

            runProperties19.Append(italic11);
            runProperties19.Append(fontSize35);
            runProperties19.Append(fontSizeComplexScript35);
            Text text19 = new Text();
            text19.Text = "Violation of the Honor Code";

            run23.Append(runProperties19);
            run23.Append(text19);

            paragraph12.Append(paragraphProperties8);
            paragraph12.Append(run20);
            paragraph12.Append(run21);
            paragraph12.Append(run22);
            paragraph12.Append(run23);

            tableCell6.Append(tableCellProperties6);
            tableCell6.Append(paragraph12);

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

            TableRow tableRow4 = new TableRow() { RsidTableRowMarkRevision = "000568E3", RsidTableRowAddition = "00C20112", RsidTableRowProperties = "00CA16E1" };

            TableRowProperties tableRowProperties4 = new TableRowProperties();
            TableRowHeight tableRowHeight4 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties4.Append(tableRowHeight4);

            TableCell tableCell7 = new TableCell();

            TableCellProperties tableCellProperties7 = new TableCellProperties();
            TableCellWidth tableCellWidth7 = new TableCellWidth() { Width = "1080", Type = TableWidthUnitValues.Dxa };
            TableCellVerticalAlignment tableCellVerticalAlignment7 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties7.Append(tableCellWidth7);
            tableCellProperties7.Append(tableCellVerticalAlignment7);

            Paragraph paragraph13 = new Paragraph() { RsidParagraphMarkRevision = "00E3003B", RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties9 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines9 = new SpacingBetweenLines() { Line = "276", LineRule = LineSpacingRuleValues.Auto };
            Justification justification14 = new Justification() { Val = JustificationValues.Left };

            ParagraphMarkRunProperties paragraphMarkRunProperties9 = new ParagraphMarkRunProperties();
            Italic italic12 = new Italic();
            FontSize fontSize36 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript36 = new FontSizeComplexScript() { Val = "30" };

            paragraphMarkRunProperties9.Append(italic12);
            paragraphMarkRunProperties9.Append(fontSize36);
            paragraphMarkRunProperties9.Append(fontSizeComplexScript36);

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

            Run run24 = new Run() { RsidRunProperties = "00E3003B" };

            RunProperties runProperties20 = new RunProperties();
            Italic italic13 = new Italic();
            FontSize fontSize37 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript37 = new FontSizeComplexScript() { Val = "30" };

            runProperties20.Append(italic13);
            runProperties20.Append(fontSize37);
            runProperties20.Append(fontSizeComplexScript37);
            Text text20 = new Text();
            text20.Text = "CC:";

            run24.Append(runProperties20);
            run24.Append(text20);

            paragraph13.Append(paragraphProperties9);
            paragraph13.Append(run24);

            tableCell7.Append(tableCellProperties7);
            tableCell7.Append(paragraph13);

            TableCell tableCell8 = new TableCell();

            TableCellProperties tableCellProperties8 = new TableCellProperties();
            TableCellWidth tableCellWidth8 = new TableCellWidth() { Width = "7334", Type = TableWidthUnitValues.Dxa };
            TableCellVerticalAlignment tableCellVerticalAlignment8 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties8.Append(tableCellWidth8);
            tableCellProperties8.Append(tableCellVerticalAlignment8);

            Paragraph paragraph14 = new Paragraph() { RsidParagraphMarkRevision = "006440BB", RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00EC0F7F", RsidRunAdditionDefault = "00594F7D" };

            ParagraphProperties paragraphProperties10 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines10 = new SpacingBetweenLines() { Line = "276", LineRule = LineSpacingRuleValues.Auto };
            Justification justification15 = new Justification() { Val = JustificationValues.Left };

            ParagraphMarkRunProperties paragraphMarkRunProperties10 = new ParagraphMarkRunProperties();
            FontSize fontSize38 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript38 = new FontSizeComplexScript() { Val = "30" };

            paragraphMarkRunProperties10.Append(fontSize38);
            paragraphMarkRunProperties10.Append(fontSizeComplexScript38);

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

            Run run25 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties21 = new RunProperties();
            FontSize fontSize39 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript39 = new FontSizeComplexScript() { Val = "30" };

            runProperties21.Append(fontSize39);
            runProperties21.Append(fontSizeComplexScript39);
            Text text21 = new Text();
            text21.Text = instructor;
            //text21.Text = "Course Instructor";

            run25.Append(runProperties21);
            run25.Append(text21);

            Run run26 = new Run() { RsidRunAddition = "00EC0F7F" };

            RunProperties runProperties22 = new RunProperties();
            FontSize fontSize40 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript40 = new FontSizeComplexScript() { Val = "30" };

            runProperties22.Append(fontSize40);
            runProperties22.Append(fontSizeComplexScript40);
            Text text22 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text22.Text = " ";

            run26.Append(runProperties22);
            run26.Append(text22);

            Run run27 = new Run() { RsidRunAddition = "00127314" };

            RunProperties runProperties23 = new RunProperties();
            FontSize fontSize41 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript41 = new FontSizeComplexScript() { Val = "30" };

            runProperties23.Append(fontSize41);
            runProperties23.Append(fontSizeComplexScript41);
            Text text23 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text23.Text = "(Course Instructor), ";

            run27.Append(runProperties23);
            run27.Append(text23);

            Run run28 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties24 = new RunProperties();
            FontSize fontSize42 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript42 = new FontSizeComplexScript() { Val = "30" };

            runProperties24.Append(fontSize42);
            runProperties24.Append(fontSizeComplexScript42);
            Text text24 = new Text();
            text24.Text = students[0].name;
            //text24.Text = "student 1";

            run28.Append(runProperties24);
            run28.Append(text24);

            Run run29 = new Run() { RsidRunAddition = "00305AC1" };

            RunProperties runProperties25 = new RunProperties();
            FontSize fontSize43 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript43 = new FontSizeComplexScript() { Val = "30" };

            runProperties25.Append(fontSize43);
            runProperties25.Append(fontSizeComplexScript43);
            Text text25 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text25.Text = ", ";

            run29.Append(runProperties25);
            run29.Append(text25);

            Run run30 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties26 = new RunProperties();
            FontSize fontSize44 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript44 = new FontSizeComplexScript() { Val = "30" };

            runProperties26.Append(fontSize44);
            runProperties26.Append(fontSizeComplexScript44);
            Text text26 = new Text();
            text26.Text = students[1].name;
            //text26.Text = "student 2";

            run30.Append(runProperties26);
            run30.Append(text26);

            paragraph14.Append(paragraphProperties10);
            paragraph14.Append(run25);
            paragraph14.Append(run26);
            paragraph14.Append(run27);
            paragraph14.Append(run28);
            paragraph14.Append(run29);
            paragraph14.Append(run30);

            tableCell8.Append(tableCellProperties8);
            tableCell8.Append(paragraph14);

            tableRow4.Append(tableRowProperties4);
            tableRow4.Append(tableCell7);
            tableRow4.Append(tableCell8);

            TableRow tableRow5 = new TableRow() { RsidTableRowMarkRevision = "000568E3", RsidTableRowAddition = "00C20112", RsidTableRowProperties = "00CA16E1" };

            TableRowProperties tableRowProperties5 = new TableRowProperties();
            TableRowHeight tableRowHeight5 = new TableRowHeight() { Val = (UInt32Value)20U };

            tableRowProperties5.Append(tableRowHeight5);

            TableCell tableCell9 = new TableCell();

            TableCellProperties tableCellProperties9 = new TableCellProperties();
            TableCellWidth tableCellWidth9 = new TableCellWidth() { Width = "1080", Type = TableWidthUnitValues.Dxa };
            TableCellVerticalAlignment tableCellVerticalAlignment9 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties9.Append(tableCellWidth9);
            tableCellProperties9.Append(tableCellVerticalAlignment9);

            Paragraph paragraph15 = new Paragraph() { RsidParagraphMarkRevision = "00E3003B", RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties11 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines11 = new SpacingBetweenLines() { Line = "276", LineRule = LineSpacingRuleValues.Auto };
            Justification justification16 = new Justification() { Val = JustificationValues.Left };

            ParagraphMarkRunProperties paragraphMarkRunProperties11 = new ParagraphMarkRunProperties();
            Italic italic14 = new Italic();
            FontSize fontSize45 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript45 = new FontSizeComplexScript() { Val = "30" };

            paragraphMarkRunProperties11.Append(italic14);
            paragraphMarkRunProperties11.Append(fontSize45);
            paragraphMarkRunProperties11.Append(fontSizeComplexScript45);

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

            Run run31 = new Run() { RsidRunProperties = "00E3003B" };

            RunProperties runProperties27 = new RunProperties();
            Italic italic15 = new Italic();
            FontSize fontSize46 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript46 = new FontSizeComplexScript() { Val = "30" };

            runProperties27.Append(italic15);
            runProperties27.Append(fontSize46);
            runProperties27.Append(fontSizeComplexScript46);
            Text text27 = new Text();
            text27.Text = "Date:";

            run31.Append(runProperties27);
            run31.Append(text27);

            paragraph15.Append(paragraphProperties11);
            paragraph15.Append(run31);

            tableCell9.Append(tableCellProperties9);
            tableCell9.Append(paragraph15);

            TableCell tableCell10 = new TableCell();

            TableCellProperties tableCellProperties10 = new TableCellProperties();
            TableCellWidth tableCellWidth10 = new TableCellWidth() { Width = "7334", Type = TableWidthUnitValues.Dxa };
            TableCellVerticalAlignment tableCellVerticalAlignment10 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };

            tableCellProperties10.Append(tableCellWidth10);
            tableCellProperties10.Append(tableCellVerticalAlignment10);

            Paragraph paragraph16 = new Paragraph() { RsidParagraphMarkRevision = "000568E3", RsidParagraphAddition = "00C20112", RsidParagraphProperties = "0059148C", RsidRunAdditionDefault = "0059148C" };

            ParagraphProperties paragraphProperties12 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines12 = new SpacingBetweenLines() { Line = "276", LineRule = LineSpacingRuleValues.Auto };
            Justification justification17 = new Justification() { Val = JustificationValues.Left };

            ParagraphMarkRunProperties paragraphMarkRunProperties12 = new ParagraphMarkRunProperties();
            FontSize fontSize47 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript47 = new FontSizeComplexScript() { Val = "30" };

            paragraphMarkRunProperties12.Append(fontSize47);
            paragraphMarkRunProperties12.Append(fontSizeComplexScript47);

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

            Run run32 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties28 = new RunProperties();
            Color color7 = new Color() { Val = "FF0000" };
            FontSize fontSize48 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript48 = new FontSizeComplexScript() { Val = "30" };

            runProperties28.Append(color7);
            runProperties28.Append(fontSize48);
            runProperties28.Append(fontSizeComplexScript48);
            Text text28 = new Text();
            text28.Text = "Issue date";

            run32.Append(runProperties28);
            run32.Append(text28);

            paragraph16.Append(paragraphProperties12);
            paragraph16.Append(run32);

            tableCell10.Append(tableCellProperties10);
            tableCell10.Append(paragraph16);

            tableRow5.Append(tableRowProperties5);
            tableRow5.Append(tableCell9);
            tableRow5.Append(tableCell10);

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

            Paragraph paragraph17 = new Paragraph() { RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00C20112", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties13 = new ParagraphProperties();

            ParagraphBorders paragraphBorders2 = new ParagraphBorders();
            BottomBorder bottomBorder5 = new BottomBorder() { Val = BorderValues.Double, Color = "auto", Size = (UInt32Value)6U, Space = (UInt32Value)1U };

            paragraphBorders2.Append(bottomBorder5);

            ParagraphMarkRunProperties paragraphMarkRunProperties13 = new ParagraphMarkRunProperties();
            FontSize fontSize49 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties13.Append(fontSize49);

            paragraphProperties13.Append(paragraphBorders2);
            paragraphProperties13.Append(paragraphMarkRunProperties13);

            paragraph17.Append(paragraphProperties13);

            Paragraph paragraph18 = new Paragraph() { RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00C20112", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties14 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties14 = new ParagraphMarkRunProperties();
            FontSize fontSize50 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties14.Append(fontSize50);

            paragraphProperties14.Append(paragraphMarkRunProperties14);

            paragraph18.Append(paragraphProperties14);

            Table table2 = new Table();

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

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

            TableGrid tableGrid2 = new TableGrid();
            GridColumn gridColumn3 = new GridColumn() { Width = "2407" };
            GridColumn gridColumn4 = new GridColumn() { Width = "5889" };

            tableGrid2.Append(gridColumn3);
            tableGrid2.Append(gridColumn4);

            TableRow tableRow6 = new TableRow() { RsidTableRowAddition = "00C20112", RsidTableRowProperties = "00CA16E1" };

            TableCell tableCell11 = new TableCell();

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

            tableCellProperties11.Append(tableCellWidth11);

            Paragraph paragraph19 = new Paragraph() { RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties15 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties15 = new ParagraphMarkRunProperties();
            FontSize fontSize51 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties15.Append(fontSize51);

            paragraphProperties15.Append(paragraphMarkRunProperties15);

            Run run33 = new Run();

            RunProperties runProperties29 = new RunProperties();
            FontSize fontSize52 = new FontSize() { Val = "24" };

            runProperties29.Append(fontSize52);
            Text text29 = new Text();
            text29.Text = "Instructor";

            run33.Append(runProperties29);
            run33.Append(text29);

            paragraph19.Append(paragraphProperties15);
            paragraph19.Append(run33);

            tableCell11.Append(tableCellProperties11);
            tableCell11.Append(paragraph19);

            TableCell tableCell12 = new TableCell();

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

            tableCellProperties12.Append(tableCellWidth12);

            Paragraph paragraph20 = new Paragraph() { RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00EC5804", RsidRunAdditionDefault = "00EC5804" };

            ParagraphProperties paragraphProperties16 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties16 = new ParagraphMarkRunProperties();
            FontSize fontSize53 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties16.Append(fontSize53);

            paragraphProperties16.Append(paragraphMarkRunProperties16);

            Run run34 = new Run();

            RunProperties runProperties30 = new RunProperties();
            RunFonts runFonts8 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            FontSize fontSize54 = new FontSize() { Val = "24" };

            runProperties30.Append(runFonts8);
            runProperties30.Append(fontSize54);
            Text text30 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text30.Text = "Dr. ";

            run34.Append(runProperties30);
            run34.Append(text30);

            Run run35 = new Run() { RsidRunProperties = "00594F7D", RsidRunAddition = "00594F7D" };

            RunProperties runProperties31 = new RunProperties();
            FontSize fontSize55 = new FontSize() { Val = "24" };

            runProperties31.Append(fontSize55);
            Text text31 = new Text();
            text31.Text = instructor;
            //text31.Text = "instructor";

            run35.Append(runProperties31);
            run35.Append(text31);

            paragraph20.Append(paragraphProperties16);
            paragraph20.Append(run34);
            paragraph20.Append(run35);

            tableCell12.Append(tableCellProperties12);
            tableCell12.Append(paragraph20);

            tableRow6.Append(tableCell11);
            tableRow6.Append(tableCell12);

            TableRow tableRow7 = new TableRow() { RsidTableRowAddition = "00C20112", RsidTableRowProperties = "00CA16E1" };

            TableCell tableCell13 = new TableCell();

            TableCellProperties tableCellProperties13 = new TableCellProperties();
            TableCellWidth tableCellWidth13 = new TableCellWidth() { Width = "2448", Type = TableWidthUnitValues.Dxa };

            tableCellProperties13.Append(tableCellWidth13);

            Paragraph paragraph21 = new Paragraph() { RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties17 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties17 = new ParagraphMarkRunProperties();
            FontSize fontSize56 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties17.Append(fontSize56);

            paragraphProperties17.Append(paragraphMarkRunProperties17);

            Run run36 = new Run();

            RunProperties runProperties32 = new RunProperties();
            FontSize fontSize57 = new FontSize() { Val = "24" };

            runProperties32.Append(fontSize57);
            Text text32 = new Text();
            text32.Text = "Report Date";

            run36.Append(runProperties32);
            run36.Append(text32);

            paragraph21.Append(paragraphProperties17);
            paragraph21.Append(run36);

            tableCell13.Append(tableCellProperties13);
            tableCell13.Append(paragraph21);

            TableCell tableCell14 = new TableCell();

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

            tableCellProperties14.Append(tableCellWidth14);

            Paragraph paragraph22 = new Paragraph() { RsidParagraphMarkRevision = "00D96872", RsidParagraphAddition = "00C20112", RsidParagraphProperties = "0059148C", RsidRunAdditionDefault = "0059148C" };

            ParagraphProperties paragraphProperties18 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties18 = new ParagraphMarkRunProperties();
            FontSize fontSize58 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties18.Append(fontSize58);

            paragraphProperties18.Append(paragraphMarkRunProperties18);

            Run run37 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties33 = new RunProperties();
            FontSize fontSize59 = new FontSize() { Val = "24" };

            runProperties33.Append(fontSize59);
            Text text33 = new Text();
            text33.Text = reportDate.ToString("MMMM dd, yyyy");
            //text33.Text = "Report date";

            run37.Append(runProperties33);
            run37.Append(text33);

            paragraph22.Append(paragraphProperties18);
            paragraph22.Append(run37);

            tableCell14.Append(tableCellProperties14);
            tableCell14.Append(paragraph22);

            tableRow7.Append(tableCell13);
            tableRow7.Append(tableCell14);

            TableRow tableRow8 = new TableRow() { RsidTableRowAddition = "00C20112", RsidTableRowProperties = "00CA16E1" };

            TableCell tableCell15 = new TableCell();

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

            tableCellProperties15.Append(tableCellWidth15);

            Paragraph paragraph23 = new Paragraph() { RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties19 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties19 = new ParagraphMarkRunProperties();
            FontSize fontSize60 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties19.Append(fontSize60);

            paragraphProperties19.Append(paragraphMarkRunProperties19);

            Run run38 = new Run();

            RunProperties runProperties34 = new RunProperties();
            FontSize fontSize61 = new FontSize() { Val = "24" };

            runProperties34.Append(fontSize61);
            Text text34 = new Text();
            text34.Text = "Course Code";

            run38.Append(runProperties34);
            run38.Append(text34);

            paragraph23.Append(paragraphProperties19);
            paragraph23.Append(run38);

            tableCell15.Append(tableCellProperties15);
            tableCell15.Append(paragraph23);

            TableCell tableCell16 = new TableCell();

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

            tableCellProperties16.Append(tableCellWidth16);

            Paragraph paragraph24 = new Paragraph() { RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00EC0F7F", RsidRunAdditionDefault = "00594F7D" };

            ParagraphProperties paragraphProperties20 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties20 = new ParagraphMarkRunProperties();
            FontSize fontSize62 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties20.Append(fontSize62);

            paragraphProperties20.Append(paragraphMarkRunProperties20);

            Run run39 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties35 = new RunProperties();
            FontSize fontSize63 = new FontSize() { Val = "24" };

            runProperties35.Append(fontSize63);
            Text text35 = new Text();
            text35.Text = code;
            //text35.Text = "C";

            run39.Append(runProperties35);
            run39.Append(text35);

            Run run40 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties36 = new RunProperties();
            RunFonts runFonts9 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            Color color11 = new Color() { Val = "FF0000" };
            FontSize fontSize64 = new FontSize() { Val = "24" };

            runProperties36.Append(runFonts9);
            runProperties36.Append(color11);
            runProperties36.Append(fontSize64);
            Text text36 = new Text();
            text36.Text = "";

            run40.Append(runProperties36);
            run40.Append(text36);

            paragraph24.Append(paragraphProperties20);
            paragraph24.Append(run39);
            paragraph24.Append(run40);

            tableCell16.Append(tableCellProperties16);
            tableCell16.Append(paragraph24);

            tableRow8.Append(tableCell15);
            tableRow8.Append(tableCell16);

            TableRow tableRow9 = new TableRow() { RsidTableRowAddition = "00C20112", RsidTableRowProperties = "00CA16E1" };

            TableCell tableCell17 = new TableCell();

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

            tableCellProperties17.Append(tableCellWidth17);

            Paragraph paragraph25 = new Paragraph() { RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties21 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties21 = new ParagraphMarkRunProperties();
            FontSize fontSize65 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties21.Append(fontSize65);

            paragraphProperties21.Append(paragraphMarkRunProperties21);

            Run run41 = new Run();

            RunProperties runProperties37 = new RunProperties();
            FontSize fontSize66 = new FontSize() { Val = "24" };

            runProperties37.Append(fontSize66);
            Text text37 = new Text();
            text37.Text = "Assignment Number";

            run41.Append(runProperties37);
            run41.Append(text37);

            paragraph25.Append(paragraphProperties21);
            paragraph25.Append(run41);

            tableCell17.Append(tableCellProperties17);
            tableCell17.Append(paragraph25);

            TableCell tableCell18 = new TableCell();

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

            tableCellProperties18.Append(tableCellWidth18);

            Paragraph paragraph26 = new Paragraph() { RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00EC0F7F", RsidRunAdditionDefault = "00594F7D" };

            ParagraphProperties paragraphProperties22 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties22 = new ParagraphMarkRunProperties();
            FontSize fontSize67 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties22.Append(fontSize67);

            paragraphProperties22.Append(paragraphMarkRunProperties22);

            Run run42 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties38 = new RunProperties();
            FontSize fontSize68 = new FontSize() { Val = "24" };

            runProperties38.Append(fontSize68);
            Text text38 = new Text();
            text38.Text = assignment;
            //text38.Text = "N";

            run42.Append(runProperties38);
            run42.Append(text38);

            Run run43 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties39 = new RunProperties();
            RunFonts runFonts10 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            Color color13 = new Color() { Val = "FF0000" };
            FontSize fontSize69 = new FontSize() { Val = "24" };

            runProperties39.Append(runFonts10);
            runProperties39.Append(color13);
            runProperties39.Append(fontSize69);
            Text text39 = new Text();
            text39.Text = "";

            run43.Append(runProperties39);
            run43.Append(text39);

            paragraph26.Append(paragraphProperties22);
            paragraph26.Append(run42);
            paragraph26.Append(run43);

            tableCell18.Append(tableCellProperties18);
            tableCell18.Append(paragraph26);

            tableRow9.Append(tableCell17);
            tableRow9.Append(tableCell18);

            TableRow tableRow10 = new TableRow() { RsidTableRowAddition = "00C20112", RsidTableRowProperties = "00CA16E1" };

            TableCell tableCell19 = new TableCell();

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

            tableCellProperties19.Append(tableCellWidth19);

            Paragraph paragraph27 = new Paragraph() { RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties23 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties23 = new ParagraphMarkRunProperties();
            FontSize fontSize70 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties23.Append(fontSize70);

            paragraphProperties23.Append(paragraphMarkRunProperties23);

            Run run44 = new Run();

            RunProperties runProperties40 = new RunProperties();
            FontSize fontSize71 = new FontSize() { Val = "24" };

            runProperties40.Append(fontSize71);
            Text text40 = new Text();
            text40.Text = "Hearing Date";

            run44.Append(runProperties40);
            run44.Append(text40);

            paragraph27.Append(paragraphProperties23);
            paragraph27.Append(run44);

            tableCell19.Append(tableCellProperties19);
            tableCell19.Append(paragraph27);

            TableCell tableCell20 = new TableCell();

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

            tableCellProperties20.Append(tableCellWidth20);

            Paragraph paragraph28 = new Paragraph() { RsidParagraphAddition = "00C20112", RsidParagraphProperties = "0059148C", RsidRunAdditionDefault = "0059148C" };

            ParagraphProperties paragraphProperties24 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties24 = new ParagraphMarkRunProperties();
            FontSize fontSize72 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties24.Append(fontSize72);

            paragraphProperties24.Append(paragraphMarkRunProperties24);

            Run run45 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties41 = new RunProperties();
            FontSize fontSize73 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript49 = new FontSizeComplexScript() { Val = "30" };

            runProperties41.Append(fontSize73);
            runProperties41.Append(fontSizeComplexScript49);
            Text text41 = new Text();
            text41.Text = hearingDate.ToString("MMMM dd, yyyy");
            //text41.Text = "Hearing date";

            run45.Append(runProperties41);
            run45.Append(text41);

            paragraph28.Append(paragraphProperties24);
            paragraph28.Append(run45);

            tableCell20.Append(tableCellProperties20);
            tableCell20.Append(paragraph28);

            tableRow10.Append(tableCell19);
            tableRow10.Append(tableCell20);

            table2.Append(tableProperties2);
            table2.Append(tableGrid2);
            table2.Append(tableRow6);
            table2.Append(tableRow7);
            table2.Append(tableRow8);
            table2.Append(tableRow9);
            table2.Append(tableRow10);

            Paragraph paragraph29 = new Paragraph() { RsidParagraphAddition = "00C20112", RsidParagraphProperties = "00C20112", RsidRunAdditionDefault = "00C20112" };

            ParagraphProperties paragraphProperties25 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties25 = new ParagraphMarkRunProperties();
            FontSize fontSize74 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties25.Append(fontSize74);

            paragraphProperties25.Append(paragraphMarkRunProperties25);

            paragraph29.Append(paragraphProperties25);

            Table table3 = new Table();

            TableProperties tableProperties3 = new TableProperties();
            TableStyle tableStyle3 = new TableStyle() { Val = "TableGrid" };
            TableWidth tableWidth3 = new TableWidth() { Width = "0", Type = TableWidthUnitValues.Auto };
            TableLook tableLook3 = new TableLook() { Val = "04A0" };

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

            TableGrid tableGrid3 = new TableGrid();
            GridColumn gridColumn5 = new GridColumn() { Width = "2425" };
            GridColumn gridColumn6 = new GridColumn() { Width = "2747" };
            GridColumn gridColumn7 = new GridColumn() { Width = "3119" };

            tableGrid3.Append(gridColumn5);
            tableGrid3.Append(gridColumn6);
            tableGrid3.Append(gridColumn7);

            TableRow tableRow11 = new TableRow() { RsidTableRowAddition = "008570E8", RsidTableRowProperties = "00783011" };

            TableRowProperties tableRowProperties6 = new TableRowProperties();
            TableRowHeight tableRowHeight6 = new TableRowHeight() { Val = (UInt32Value)369U };

            tableRowProperties6.Append(tableRowHeight6);

            TableCell tableCell21 = new TableCell();

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

            tableCellProperties21.Append(tableCellWidth21);

            Paragraph paragraph30 = new Paragraph() { RsidParagraphAddition = "008570E8", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "008570E8" };

            ParagraphProperties paragraphProperties26 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties26 = new ParagraphMarkRunProperties();
            FontSize fontSize75 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties26.Append(fontSize75);

            paragraphProperties26.Append(paragraphMarkRunProperties26);

            Run run46 = new Run();

            RunProperties runProperties42 = new RunProperties();
            FontSize fontSize76 = new FontSize() { Val = "24" };

            runProperties42.Append(fontSize76);
            Text text42 = new Text();
            text42.Text = "Student Name";

            run46.Append(runProperties42);
            run46.Append(text42);

            paragraph30.Append(paragraphProperties26);
            paragraph30.Append(run46);

            tableCell21.Append(tableCellProperties21);
            tableCell21.Append(paragraph30);

            TableCell tableCell22 = new TableCell();

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

            tableCellProperties22.Append(tableCellWidth22);

            Paragraph paragraph31 = new Paragraph() { RsidParagraphMarkRevision = "00190B7C", RsidParagraphAddition = "008570E8", RsidParagraphProperties = "00156B7C", RsidRunAdditionDefault = "00594F7D" };

            ParagraphProperties paragraphProperties27 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties27 = new ParagraphMarkRunProperties();
            FontSize fontSize77 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript50 = new FontSizeComplexScript() { Val = "30" };

            paragraphMarkRunProperties27.Append(fontSize77);
            paragraphMarkRunProperties27.Append(fontSizeComplexScript50);

            paragraphProperties27.Append(paragraphMarkRunProperties27);

            Run run47 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties43 = new RunProperties();
            FontSize fontSize78 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript51 = new FontSizeComplexScript() { Val = "30" };

            runProperties43.Append(fontSize78);
            runProperties43.Append(fontSizeComplexScript51);
            Text text43 = new Text();
            text43.Text = students[0].name;
            //text43.Text = "N";

            run47.Append(runProperties43);
            run47.Append(text43);

            Run run48 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties44 = new RunProperties();
            RunFonts runFonts11 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            Color color16 = new Color() { Val = "FF0000" };
            FontSize fontSize79 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript52 = new FontSizeComplexScript() { Val = "30" };

            runProperties44.Append(runFonts11);
            runProperties44.Append(color16);
            runProperties44.Append(fontSize79);
            runProperties44.Append(fontSizeComplexScript52);
            Text text44 = new Text();
            text44.Text = "";

            run48.Append(runProperties44);
            run48.Append(text44);

            paragraph31.Append(paragraphProperties27);
            paragraph31.Append(run47);
            paragraph31.Append(run48);

            tableCell22.Append(tableCellProperties22);
            tableCell22.Append(paragraph31);

            TableCell tableCell23 = new TableCell();

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

            tableCellProperties23.Append(tableCellWidth23);

            Paragraph paragraph32 = new Paragraph() { RsidParagraphMarkRevision = "00190B7C", RsidParagraphAddition = "008570E8", RsidParagraphProperties = "00156B7C", RsidRunAdditionDefault = "00594F7D" };

            ParagraphProperties paragraphProperties28 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties28 = new ParagraphMarkRunProperties();
            FontSize fontSize80 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript53 = new FontSizeComplexScript() { Val = "30" };

            paragraphMarkRunProperties28.Append(fontSize80);
            paragraphMarkRunProperties28.Append(fontSizeComplexScript53);

            paragraphProperties28.Append(paragraphMarkRunProperties28);

            Run run49 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties45 = new RunProperties();
            FontSize fontSize81 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript54 = new FontSizeComplexScript() { Val = "30" };

            runProperties45.Append(fontSize81);
            runProperties45.Append(fontSizeComplexScript54);
            Text text45 = new Text();
            text45.Text = students[1].name;
            //text45.Text = "N";

            run49.Append(runProperties45);
            run49.Append(text45);

            Run run50 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties46 = new RunProperties();
            RunFonts runFonts12 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            Color color18 = new Color() { Val = "FF0000" };
            FontSize fontSize82 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript55 = new FontSizeComplexScript() { Val = "30" };

            runProperties46.Append(runFonts12);
            runProperties46.Append(color18);
            runProperties46.Append(fontSize82);
            runProperties46.Append(fontSizeComplexScript55);
            Text text46 = new Text();
            text46.Text = "";

            run50.Append(runProperties46);
            run50.Append(text46);

            Run run51 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties47 = new RunProperties();
            Color color19 = new Color() { Val = "FF0000" };
            FontSize fontSize83 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript56 = new FontSizeComplexScript() { Val = "30" };

            runProperties47.Append(color19);
            runProperties47.Append(fontSize83);
            runProperties47.Append(fontSizeComplexScript56);
            Text text47 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text47.Text = "";

            run51.Append(runProperties47);
            run51.Append(text47);

            Run run52 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties48 = new RunProperties();
            RunFonts runFonts13 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            Color color20 = new Color() { Val = "FF0000" };
            FontSize fontSize84 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript57 = new FontSizeComplexScript() { Val = "30" };

            runProperties48.Append(runFonts13);
            runProperties48.Append(color20);
            runProperties48.Append(fontSize84);
            runProperties48.Append(fontSizeComplexScript57);
            Text text48 = new Text();
            text48.Text = "";

            run52.Append(runProperties48);
            run52.Append(text48);

            paragraph32.Append(paragraphProperties28);
            paragraph32.Append(run49);
            paragraph32.Append(run50);
            paragraph32.Append(run51);
            paragraph32.Append(run52);

            tableCell23.Append(tableCellProperties23);
            tableCell23.Append(paragraph32);

            tableRow11.Append(tableRowProperties6);
            tableRow11.Append(tableCell21);
            tableRow11.Append(tableCell22);
            tableRow11.Append(tableCell23);

            TableRow tableRow12 = new TableRow() { RsidTableRowAddition = "008570E8", RsidTableRowProperties = "00783011" };

            TableRowProperties tableRowProperties7 = new TableRowProperties();
            TableRowHeight tableRowHeight7 = new TableRowHeight() { Val = (UInt32Value)291U };

            tableRowProperties7.Append(tableRowHeight7);

            TableCell tableCell24 = new TableCell();

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

            tableCellProperties24.Append(tableCellWidth24);

            Paragraph paragraph33 = new Paragraph() { RsidParagraphAddition = "008570E8", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "008570E8" };

            ParagraphProperties paragraphProperties29 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties29 = new ParagraphMarkRunProperties();
            FontSize fontSize85 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties29.Append(fontSize85);

            paragraphProperties29.Append(paragraphMarkRunProperties29);

            Run run53 = new Run();

            RunProperties runProperties49 = new RunProperties();
            FontSize fontSize86 = new FontSize() { Val = "24" };

            runProperties49.Append(fontSize86);
            Text text49 = new Text();
            text49.Text = "Student ID";

            run53.Append(runProperties49);
            run53.Append(text49);

            paragraph33.Append(paragraphProperties29);
            paragraph33.Append(run53);

            tableCell24.Append(tableCellProperties24);
            tableCell24.Append(paragraph33);

            TableCell tableCell25 = new TableCell();

            TableCellProperties tableCellProperties25 = new TableCellProperties();
            TableCellWidth tableCellWidth25 = new TableCellWidth() { Width = "2747", Type = TableWidthUnitValues.Dxa };

            tableCellProperties25.Append(tableCellWidth25);

            Paragraph paragraph34 = new Paragraph() { RsidParagraphAddition = "008570E8", RsidParagraphProperties = "00156B7C", RsidRunAdditionDefault = "00594F7D" };

            ParagraphProperties paragraphProperties30 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties30 = new ParagraphMarkRunProperties();
            FontSize fontSize87 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties30.Append(fontSize87);

            paragraphProperties30.Append(paragraphMarkRunProperties30);

            Run run54 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties50 = new RunProperties();
            FontSize fontSize88 = new FontSize() { Val = "24" };

            runProperties50.Append(fontSize88);
            Text text50 = new Text();
            text50.Text = students[0].id;
            //text50.Text = "I";

            run54.Append(runProperties50);
            run54.Append(text50);

            Run run55 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties51 = new RunProperties();
            RunFonts runFonts14 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            Color color22 = new Color() { Val = "FF0000" };
            FontSize fontSize89 = new FontSize() { Val = "24" };

            runProperties51.Append(runFonts14);
            runProperties51.Append(color22);
            runProperties51.Append(fontSize89);
            Text text51 = new Text();
            text51.Text = "";

            run55.Append(runProperties51);
            run55.Append(text51);

            paragraph34.Append(paragraphProperties30);
            paragraph34.Append(run54);
            paragraph34.Append(run55);

            tableCell25.Append(tableCellProperties25);
            tableCell25.Append(paragraph34);

            TableCell tableCell26 = new TableCell();

            TableCellProperties tableCellProperties26 = new TableCellProperties();
            TableCellWidth tableCellWidth26 = new TableCellWidth() { Width = "3119", Type = TableWidthUnitValues.Dxa };

            tableCellProperties26.Append(tableCellWidth26);

            Paragraph paragraph35 = new Paragraph() { RsidParagraphAddition = "008570E8", RsidParagraphProperties = "00156B7C", RsidRunAdditionDefault = "00594F7D" };

            ParagraphProperties paragraphProperties31 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties31 = new ParagraphMarkRunProperties();
            FontSize fontSize90 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties31.Append(fontSize90);

            paragraphProperties31.Append(paragraphMarkRunProperties31);

            Run run56 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties52 = new RunProperties();
            FontSize fontSize91 = new FontSize() { Val = "24" };

            runProperties52.Append(fontSize91);
            Text text52 = new Text();
            text52.Text = students[1].id;
            //text52.Text = "I";

            run56.Append(runProperties52);
            run56.Append(text52);

            Run run57 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties53 = new RunProperties();
            RunFonts runFonts15 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            Color color24 = new Color() { Val = "FF0000" };
            FontSize fontSize92 = new FontSize() { Val = "24" };

            runProperties53.Append(runFonts15);
            runProperties53.Append(color24);
            runProperties53.Append(fontSize92);
            Text text53 = new Text();
            text53.Text = "";

            run57.Append(runProperties53);
            run57.Append(text53);

            paragraph35.Append(paragraphProperties31);
            paragraph35.Append(run56);
            paragraph35.Append(run57);

            tableCell26.Append(tableCellProperties26);
            tableCell26.Append(paragraph35);

            tableRow12.Append(tableRowProperties7);
            tableRow12.Append(tableCell24);
            tableRow12.Append(tableCell25);
            tableRow12.Append(tableCell26);

            TableRow tableRow13 = new TableRow() { RsidTableRowAddition = "008570E8", RsidTableRowProperties = "00783011" };

            TableRowProperties tableRowProperties8 = new TableRowProperties();
            TableRowHeight tableRowHeight8 = new TableRowHeight() { Val = (UInt32Value)291U };

            tableRowProperties8.Append(tableRowHeight8);

            TableCell tableCell27 = new TableCell();

            TableCellProperties tableCellProperties27 = new TableCellProperties();
            TableCellWidth tableCellWidth27 = new TableCellWidth() { Width = "2425", Type = TableWidthUnitValues.Dxa };

            tableCellProperties27.Append(tableCellWidth27);

            Paragraph paragraph36 = new Paragraph() { RsidParagraphAddition = "008570E8", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "008570E8" };

            ParagraphProperties paragraphProperties32 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties32 = new ParagraphMarkRunProperties();
            FontSize fontSize93 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties32.Append(fontSize93);

            paragraphProperties32.Append(paragraphMarkRunProperties32);

            Run run58 = new Run();

            RunProperties runProperties54 = new RunProperties();
            FontSize fontSize94 = new FontSize() { Val = "24" };

            runProperties54.Append(fontSize94);
            Text text54 = new Text();
            text54.Text = "Decision";

            run58.Append(runProperties54);
            run58.Append(text54);

            paragraph36.Append(paragraphProperties32);
            paragraph36.Append(run58);

            tableCell27.Append(tableCellProperties27);
            tableCell27.Append(paragraph36);

            TableCell tableCell28 = new TableCell();

            TableCellProperties tableCellProperties28 = new TableCellProperties();
            TableCellWidth tableCellWidth28 = new TableCellWidth() { Width = "2747", Type = TableWidthUnitValues.Dxa };

            tableCellProperties28.Append(tableCellWidth28);

            Paragraph paragraph37 = new Paragraph() { RsidParagraphAddition = "008570E8", RsidParagraphProperties = "008A3667", RsidRunAdditionDefault = "00594F7D" };

            ParagraphProperties paragraphProperties33 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties33 = new ParagraphMarkRunProperties();
            FontSize fontSize95 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties33.Append(fontSize95);

            paragraphProperties33.Append(paragraphMarkRunProperties33);

            Run run59 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties55 = new RunProperties();
            RunFonts runFonts16 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            FontSize fontSize96 = new FontSize() { Val = "24" };

            runProperties55.Append(runFonts16);
            runProperties55.Append(fontSize96);
            Text text55 = new Text();
            text55.Text = students[0].decision.ToString();
            //text55.Text = "innocent";

            run59.Append(runProperties55);
            run59.Append(text55);

            paragraph37.Append(paragraphProperties33);
            paragraph37.Append(run59);

            tableCell28.Append(tableCellProperties28);
            tableCell28.Append(paragraph37);

            TableCell tableCell29 = new TableCell();

            TableCellProperties tableCellProperties29 = new TableCellProperties();
            TableCellWidth tableCellWidth29 = new TableCellWidth() { Width = "3119", Type = TableWidthUnitValues.Dxa };

            tableCellProperties29.Append(tableCellWidth29);

            Paragraph paragraph38 = new Paragraph() { RsidParagraphAddition = "008570E8", RsidParagraphProperties = "00C761FE", RsidRunAdditionDefault = "00594F7D" };

            ParagraphProperties paragraphProperties34 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties34 = new ParagraphMarkRunProperties();
            FontSize fontSize97 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties34.Append(fontSize97);

            paragraphProperties34.Append(paragraphMarkRunProperties34);

            Run run60 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties56 = new RunProperties();
            FontSize fontSize98 = new FontSize() { Val = "24" };

            runProperties56.Append(fontSize98);
            Text text56 = new Text();
            text56.Text = students[1].decision.ToString();
            //text56.Text = "guilty";

            run60.Append(runProperties56);
            run60.Append(text56);

            paragraph38.Append(paragraphProperties34);
            paragraph38.Append(run60);

            tableCell29.Append(tableCellProperties29);
            tableCell29.Append(paragraph38);

            tableRow13.Append(tableRowProperties8);
            tableRow13.Append(tableCell27);
            tableRow13.Append(tableCell28);
            tableRow13.Append(tableCell29);

            TableRow tableRow14 = new TableRow() { RsidTableRowAddition = "008570E8", RsidTableRowProperties = "00783011" };

            TableRowProperties tableRowProperties9 = new TableRowProperties();
            TableRowHeight tableRowHeight9 = new TableRowHeight() { Val = (UInt32Value)303U };

            tableRowProperties9.Append(tableRowHeight9);

            TableCell tableCell30 = new TableCell();

            TableCellProperties tableCellProperties30 = new TableCellProperties();
            TableCellWidth tableCellWidth30 = new TableCellWidth() { Width = "2425", Type = TableWidthUnitValues.Dxa };

            tableCellProperties30.Append(tableCellWidth30);

            Paragraph paragraph39 = new Paragraph() { RsidParagraphAddition = "008570E8", RsidParagraphProperties = "00CA16E1", RsidRunAdditionDefault = "008570E8" };

            ParagraphProperties paragraphProperties35 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties35 = new ParagraphMarkRunProperties();
            FontSize fontSize99 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties35.Append(fontSize99);

            paragraphProperties35.Append(paragraphMarkRunProperties35);

            Run run61 = new Run();

            RunProperties runProperties57 = new RunProperties();
            FontSize fontSize100 = new FontSize() { Val = "24" };

            runProperties57.Append(fontSize100);
            Text text57 = new Text();
            text57.Text = "Violation Count";

            run61.Append(runProperties57);
            run61.Append(text57);

            paragraph39.Append(paragraphProperties35);
            paragraph39.Append(run61);

            tableCell30.Append(tableCellProperties30);
            tableCell30.Append(paragraph39);

            TableCell tableCell31 = new TableCell();

            TableCellProperties tableCellProperties31 = new TableCellProperties();
            TableCellWidth tableCellWidth31 = new TableCellWidth() { Width = "2747", Type = TableWidthUnitValues.Dxa };

            tableCellProperties31.Append(tableCellWidth31);

            Paragraph paragraph40 = new Paragraph() { RsidParagraphAddition = "008570E8", RsidParagraphProperties = "00AD59C4", RsidRunAdditionDefault = "00594F7D" };

            ParagraphProperties paragraphProperties36 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties36 = new ParagraphMarkRunProperties();
            FontSize fontSize101 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties36.Append(fontSize101);

            paragraphProperties36.Append(paragraphMarkRunProperties36);

            Run run62 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties58 = new RunProperties();
            RunFonts runFonts17 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            FontSize fontSize102 = new FontSize() { Val = "24" };

            runProperties58.Append(runFonts17);
            runProperties58.Append(fontSize102);
            Text text58 = new Text();
            text58.Text = students[0].count.ToString();
            //text58.Text = "2";

            run62.Append(runProperties58);
            run62.Append(text58);

            paragraph40.Append(paragraphProperties36);
            paragraph40.Append(run62);

            tableCell31.Append(tableCellProperties31);
            tableCell31.Append(paragraph40);

            TableCell tableCell32 = new TableCell();

            TableCellProperties tableCellProperties32 = new TableCellProperties();
            TableCellWidth tableCellWidth32 = new TableCellWidth() { Width = "3119", Type = TableWidthUnitValues.Dxa };

            tableCellProperties32.Append(tableCellWidth32);

            Paragraph paragraph41 = new Paragraph() { RsidParagraphAddition = "008570E8", RsidParagraphProperties = "00AD59C4", RsidRunAdditionDefault = "00594F7D" };

            ParagraphProperties paragraphProperties37 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties37 = new ParagraphMarkRunProperties();
            FontSize fontSize103 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties37.Append(fontSize103);

            paragraphProperties37.Append(paragraphMarkRunProperties37);

            Run run63 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties59 = new RunProperties();
            RunFonts runFonts18 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            FontSize fontSize104 = new FontSize() { Val = "24" };

            runProperties59.Append(runFonts18);
            runProperties59.Append(fontSize104);
            Text text59 = new Text();
            text59.Text = students[1].count.ToString();
            //text59.Text = "3";

            run63.Append(runProperties59);
            run63.Append(text59);

            paragraph41.Append(paragraphProperties37);
            paragraph41.Append(run63);

            tableCell32.Append(tableCellProperties32);
            tableCell32.Append(paragraph41);

            tableRow14.Append(tableRowProperties9);
            tableRow14.Append(tableCell30);
            tableRow14.Append(tableCell31);
            tableRow14.Append(tableCell32);

            table3.Append(tableProperties3);
            table3.Append(tableGrid3);
            table3.Append(tableRow11);
            table3.Append(tableRow12);
            table3.Append(tableRow13);
            table3.Append(tableRow14);

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

            ParagraphProperties paragraphProperties38 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties38 = new ParagraphMarkRunProperties();
            FontSize fontSize105 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties38.Append(fontSize105);

            paragraphProperties38.Append(paragraphMarkRunProperties38);

            paragraph42.Append(paragraphProperties38);

            Paragraph paragraph43 = new Paragraph() { RsidParagraphMarkRevision = "00594F7D", RsidParagraphAddition = "001D24A4", RsidParagraphProperties = "001B238C", RsidRunAdditionDefault = "00594F7D" };

            ParagraphProperties paragraphProperties39 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines13 = new SpacingBetweenLines() { Line = "360", LineRule = LineSpacingRuleValues.Auto };

            ParagraphMarkRunProperties paragraphMarkRunProperties39 = new ParagraphMarkRunProperties();
            Color color29 = new Color() { Val = "FF0000" };
            FontSize fontSize106 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties39.Append(color29);
            paragraphMarkRunProperties39.Append(fontSize106);

            paragraphProperties39.Append(spacingBetweenLines13);
            paragraphProperties39.Append(paragraphMarkRunProperties39);

            Run run64 = new Run() { RsidRunProperties = "00594F7D" };

            RunProperties runProperties60 = new RunProperties();
            RunFonts runFonts19 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            FontSize fontSize107 = new FontSize() { Val = "24" };

            runProperties60.Append(runFonts19);
            runProperties60.Append(fontSize107);
            Text text60 = new Text();
            text60.Text = description;
            //text60.Text = "Enter the case description.";

            run64.Append(runProperties60);
            run64.Append(text60);

            paragraph43.Append(paragraphProperties39);
            paragraph43.Append(run64);

            Paragraph paragraph44 = new Paragraph() { RsidParagraphMarkRevision = "001B238C", RsidParagraphAddition = "002836B8", RsidParagraphProperties = "001B238C", RsidRunAdditionDefault = "002836B8" };

            ParagraphProperties paragraphProperties40 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines14 = new SpacingBetweenLines() { Line = "360", LineRule = LineSpacingRuleValues.Auto };

            ParagraphMarkRunProperties paragraphMarkRunProperties40 = new ParagraphMarkRunProperties();
            FontSize fontSize108 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties40.Append(fontSize108);

            paragraphProperties40.Append(spacingBetweenLines14);
            paragraphProperties40.Append(paragraphMarkRunProperties40);

            Run run65 = new Run();

            RunProperties runProperties61 = new RunProperties();
            FontSize fontSize109 = new FontSize() { Val = "24" };

            runProperties61.Append(fontSize109);
            Text text61 = new Text();
            text61.Text = "The Honor Council therefore decides that";

            run65.Append(runProperties61);
            run65.Append(text61);

            Run run66 = new Run() { RsidRunAddition = "00EB28F3" };

            RunProperties runProperties62 = new RunProperties();
            FontSize fontSize110 = new FontSize() { Val = "24" };

            runProperties62.Append(fontSize110);
            Text text62 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text62.Text = " ";

            run66.Append(runProperties62);
            run66.Append(text62);

            Run run67 = new Run() { RsidRunProperties = "00594F7D", RsidRunAddition = "00594F7D" };

            RunProperties runProperties63 = new RunProperties();
            FontSize fontSize111 = new FontSize() { Val = "24" };

            runProperties63.Append(fontSize111);
            Text text63 = new Text();
            text63.Text = decision;
            //text63.Text = "enter the decision";

            run67.Append(runProperties63);
            run67.Append(text63);

            Run run68 = new Run() { RsidRunAddition = "00594F7D" };

            RunProperties runProperties64 = new RunProperties();
            FontSize fontSize112 = new FontSize() { Val = "24" };

            runProperties64.Append(fontSize112);
            Text text64 = new Text();
            text64.Text = ".";

            run68.Append(runProperties64);
            run68.Append(text64);

            paragraph44.Append(paragraphProperties40);
            paragraph44.Append(run65);
            paragraph44.Append(run66);
            paragraph44.Append(run67);
            paragraph44.Append(run68);

            Paragraph paragraph45 = new Paragraph() { RsidParagraphMarkRevision = "00A56165", RsidParagraphAddition = "007663F0", RsidParagraphProperties = "007663F0", RsidRunAdditionDefault = "007663F0" };

            ParagraphProperties paragraphProperties41 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines15 = new SpacingBetweenLines() { Line = "360", LineRule = LineSpacingRuleValues.Auto };

            ParagraphMarkRunProperties paragraphMarkRunProperties41 = new ParagraphMarkRunProperties();
            FontSize fontSize113 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript58 = new FontSizeComplexScript() { Val = "30" };

            paragraphMarkRunProperties41.Append(fontSize113);
            paragraphMarkRunProperties41.Append(fontSizeComplexScript58);

            paragraphProperties41.Append(spacingBetweenLines15);
            paragraphProperties41.Append(paragraphMarkRunProperties41);

            Run run69 = new Run() { RsidRunProperties = "00390384" };

            RunProperties runProperties65 = new RunProperties();
            FontSize fontSize114 = new FontSize() { Val = "24" };

            runProperties65.Append(fontSize114);
            Text text65 = new Text();
            text65.Text = "The student";

            run69.Append(runProperties65);
            run69.Append(text65);

            Run run70 = new Run();

            RunProperties runProperties66 = new RunProperties();
            RunFonts runFonts20 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            FontSize fontSize115 = new FontSize() { Val = "24" };

            runProperties66.Append(runFonts20);
            runProperties66.Append(fontSize115);
            Text text66 = new Text();
            text66.Text = "s";

            run70.Append(runProperties66);
            run70.Append(text66);

            Run run71 = new Run() { RsidRunProperties = "00390384" };

            RunProperties runProperties67 = new RunProperties();
            FontSize fontSize116 = new FontSize() { Val = "24" };

            runProperties67.Append(fontSize116);
            Text text67 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text67.Text = " or the course instructor may lodge an appeal with the Faculty Commission on Discipline (FCD) within 14 days of receipt of the decision. After this period, the finding of the Honor Council becomes final and irreversible.";

            run71.Append(runProperties67);
            run71.Append(text67);

            Run run72 = new Run() { RsidRunAddition = "001D24A4" };

            RunProperties runProperties68 = new RunProperties();
            FontSize fontSize117 = new FontSize() { Val = "24" };

            runProperties68.Append(fontSize117);
            Text text68 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text68.Text = " Sanctions for students found guilty will be imposed by the FCD. The FCD may be contacted at ";

            run72.Append(runProperties68);
            run72.Append(text68);

            Hyperlink hyperlink2 = new Hyperlink() { History = true, Id = "rId7" };

            Run run73 = new Run() { RsidRunProperties = "006045E0", RsidRunAddition = "001D24A4" };

            RunProperties runProperties69 = new RunProperties();
            RunStyle runStyle1 = new RunStyle() { Val = "Hyperlink" };
            FontSize fontSize118 = new FontSize() { Val = "24" };

            runProperties69.Append(runStyle1);
            runProperties69.Append(fontSize118);
            Text text69 = new Text();
            text69.Text = "*****@*****.**";

            run73.Append(runProperties69);
            run73.Append(text69);

            hyperlink2.Append(run73);

            Run run74 = new Run() { RsidRunAddition = "001D24A4" };

            RunProperties runProperties70 = new RunProperties();
            FontSize fontSize119 = new FontSize() { Val = "24" };

            runProperties70.Append(fontSize119);
            Text text70 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text70.Text = " for appeals and other questions.";

            run74.Append(runProperties70);
            run74.Append(text70);

            paragraph45.Append(paragraphProperties41);
            paragraph45.Append(run69);
            paragraph45.Append(run70);
            paragraph45.Append(run71);
            paragraph45.Append(run72);
            paragraph45.Append(hyperlink2);
            paragraph45.Append(run74);

            Paragraph paragraph46 = new Paragraph() { RsidParagraphMarkRevision = "001B238C", RsidParagraphAddition = "00046D2C", RsidParagraphProperties = "00C47143", RsidRunAdditionDefault = "007663F0" };

            ParagraphProperties paragraphProperties42 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines16 = new SpacingBetweenLines() { Line = "360", LineRule = LineSpacingRuleValues.Auto };

            ParagraphMarkRunProperties paragraphMarkRunProperties42 = new ParagraphMarkRunProperties();
            RunFonts runFonts21 = new RunFonts() { Hint = FontTypeHintValues.EastAsia };
            FontSize fontSize120 = new FontSize() { Val = "24" };

            paragraphMarkRunProperties42.Append(runFonts21);
            paragraphMarkRunProperties42.Append(fontSize120);

            paragraphProperties42.Append(spacingBetweenLines16);
            paragraphProperties42.Append(paragraphMarkRunProperties42);

            Run run75 = new Run();

            RunProperties runProperties71 = new RunProperties();
            FontSize fontSize121 = new FontSize() { Val = "24" };

            runProperties71.Append(fontSize121);
            Text text71 = new Text();
            text71.Text = "If you have any question or need additional information regarding this case, please feel free to contact me.";

            run75.Append(runProperties71);
            run75.Append(text71);
            BookmarkStart bookmarkStart1 = new BookmarkStart() { Name = "_GoBack", Id = "0" };
            BookmarkEnd bookmarkEnd1 = new BookmarkEnd() { Id = "0" };

            paragraph46.Append(paragraphProperties42);
            paragraph46.Append(run75);
            paragraph46.Append(bookmarkStart1);
            paragraph46.Append(bookmarkEnd1);

            SectionProperties sectionProperties1 = new SectionProperties() { RsidRPr = "001B238C", RsidR = "00046D2C", RsidSect = "00E3003B" };
            PageSize pageSize1 = new PageSize() { Width = (UInt32Value)11906U, Height = (UInt32Value)16838U };
            PageMargin pageMargin1 = new PageMargin() { Top = 1440, Right = (UInt32Value)1800U, Bottom = 1440, Left = (UInt32Value)1800U, Header = (UInt32Value)851U, Footer = (UInt32Value)992U, Gutter = (UInt32Value)0U };
            Columns columns1 = new Columns() { Space = "720" };
            DocGrid docGrid1 = new DocGrid() { Type = DocGridValues.Lines, LinePitch = 312 };

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

            body1.Append(paragraph5);
            body1.Append(paragraph6);
            body1.Append(table1);
            body1.Append(paragraph17);
            body1.Append(paragraph18);
            body1.Append(table2);
            body1.Append(paragraph29);
            body1.Append(table3);
            body1.Append(paragraph42);
            body1.Append(paragraph43);
            body1.Append(paragraph44);
            body1.Append(paragraph45);
            body1.Append(paragraph46);
            body1.Append(sectionProperties1);

            document1.Append(body1);

            part.Document = document1;
        }
Пример #4
0
        // Generates content of themePart1.
        private void GenerateThemePart1Content(ThemePart themePart1)
        {
            A.Theme theme1 = new A.Theme(){ Name = "Office Theme" };
            theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.ThemeElements themeElements1 = new A.ThemeElements();

            A.ColorScheme colorScheme1 = new A.ColorScheme(){ Name = "Oriel" };

            A.Dark1Color dark1Color1 = new A.Dark1Color();
            A.SystemColor systemColor1 = new A.SystemColor(){ Val = A.SystemColorValues.WindowText, LastColor = "000000" };

            dark1Color1.Append(systemColor1);

            A.Light1Color light1Color1 = new A.Light1Color();
            A.SystemColor systemColor2 = new A.SystemColor(){ Val = A.SystemColorValues.Window, LastColor = "FFFFFF" };

            light1Color1.Append(systemColor2);

            A.Dark2Color dark2Color1 = new A.Dark2Color();
            A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex(){ Val = "575F6D" };

            dark2Color1.Append(rgbColorModelHex5);

            A.Light2Color light2Color1 = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex(){ Val = "FFF39D" };

            light2Color1.Append(rgbColorModelHex6);

            A.Accent1Color accent1Color1 = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex(){ Val = "FE8637" };

            accent1Color1.Append(rgbColorModelHex7);

            A.Accent2Color accent2Color1 = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex(){ Val = "7598D9" };

            accent2Color1.Append(rgbColorModelHex8);

            A.Accent3Color accent3Color1 = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex(){ Val = "B32C16" };

            accent3Color1.Append(rgbColorModelHex9);

            A.Accent4Color accent4Color1 = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex(){ Val = "F5CD2D" };

            accent4Color1.Append(rgbColorModelHex10);

            A.Accent5Color accent5Color1 = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex(){ Val = "AEBAD5" };

            accent5Color1.Append(rgbColorModelHex11);

            A.Accent6Color accent6Color1 = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex12 = new A.RgbColorModelHex(){ Val = "777C84" };

            accent6Color1.Append(rgbColorModelHex12);

            A.Hyperlink hyperlink1 = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex13 = new A.RgbColorModelHex(){ Val = "D2611C" };

            hyperlink1.Append(rgbColorModelHex13);

            A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex rgbColorModelHex14 = new A.RgbColorModelHex(){ Val = "3B435B" };

            followedHyperlinkColor1.Append(rgbColorModelHex14);

            colorScheme1.Append(dark1Color1);
            colorScheme1.Append(light1Color1);
            colorScheme1.Append(dark2Color1);
            colorScheme1.Append(light2Color1);
            colorScheme1.Append(accent1Color1);
            colorScheme1.Append(accent2Color1);
            colorScheme1.Append(accent3Color1);
            colorScheme1.Append(accent4Color1);
            colorScheme1.Append(accent5Color1);
            colorScheme1.Append(accent6Color1);
            colorScheme1.Append(hyperlink1);
            colorScheme1.Append(followedHyperlinkColor1);

            A.FontScheme fontScheme1 = new A.FontScheme(){ Name = "Verve" };

            A.MajorFont majorFont1 = new A.MajorFont();
            A.LatinFont latinFont19 = new A.LatinFont(){ Typeface = "Century Gothic" };
            A.EastAsianFont eastAsianFont19 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont19 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont1 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "HGゴシックM" };
            A.SupplementalFont supplementalFont2 = new A.SupplementalFont(){ Script = "Hang", Typeface = "HY중고딕" };
            A.SupplementalFont supplementalFont3 = new A.SupplementalFont(){ Script = "Hans", Typeface = "幼圆" };
            A.SupplementalFont supplementalFont4 = new A.SupplementalFont(){ Script = "Hant", Typeface = "微軟正黑體" };
            A.SupplementalFont supplementalFont5 = new A.SupplementalFont(){ Script = "Arab", Typeface = "Tahoma" };
            A.SupplementalFont supplementalFont6 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "Gisha" };
            A.SupplementalFont supplementalFont7 = new A.SupplementalFont(){ Script = "Thai", Typeface = "DilleniaUPC" };
            A.SupplementalFont supplementalFont8 = new A.SupplementalFont(){ Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont9 = new A.SupplementalFont(){ Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont10 = new A.SupplementalFont(){ Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont11 = new A.SupplementalFont(){ Script = "Khmr", Typeface = "DaunPenh" };
            A.SupplementalFont supplementalFont12 = new A.SupplementalFont(){ Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont13 = new A.SupplementalFont(){ Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont14 = new A.SupplementalFont(){ Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont15 = new A.SupplementalFont(){ Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont16 = new A.SupplementalFont(){ Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont17 = new A.SupplementalFont(){ Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont18 = new A.SupplementalFont(){ Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont19 = new A.SupplementalFont(){ Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont20 = new A.SupplementalFont(){ Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont21 = new A.SupplementalFont(){ Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont22 = new A.SupplementalFont(){ Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont23 = new A.SupplementalFont(){ Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont24 = new A.SupplementalFont(){ Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont25 = new A.SupplementalFont(){ Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont26 = new A.SupplementalFont(){ Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont27 = new A.SupplementalFont(){ Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont28 = new A.SupplementalFont(){ Script = "Viet", Typeface = "Tahoma" };
            A.SupplementalFont supplementalFont29 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };

            majorFont1.Append(latinFont19);
            majorFont1.Append(eastAsianFont19);
            majorFont1.Append(complexScriptFont19);
            majorFont1.Append(supplementalFont1);
            majorFont1.Append(supplementalFont2);
            majorFont1.Append(supplementalFont3);
            majorFont1.Append(supplementalFont4);
            majorFont1.Append(supplementalFont5);
            majorFont1.Append(supplementalFont6);
            majorFont1.Append(supplementalFont7);
            majorFont1.Append(supplementalFont8);
            majorFont1.Append(supplementalFont9);
            majorFont1.Append(supplementalFont10);
            majorFont1.Append(supplementalFont11);
            majorFont1.Append(supplementalFont12);
            majorFont1.Append(supplementalFont13);
            majorFont1.Append(supplementalFont14);
            majorFont1.Append(supplementalFont15);
            majorFont1.Append(supplementalFont16);
            majorFont1.Append(supplementalFont17);
            majorFont1.Append(supplementalFont18);
            majorFont1.Append(supplementalFont19);
            majorFont1.Append(supplementalFont20);
            majorFont1.Append(supplementalFont21);
            majorFont1.Append(supplementalFont22);
            majorFont1.Append(supplementalFont23);
            majorFont1.Append(supplementalFont24);
            majorFont1.Append(supplementalFont25);
            majorFont1.Append(supplementalFont26);
            majorFont1.Append(supplementalFont27);
            majorFont1.Append(supplementalFont28);
            majorFont1.Append(supplementalFont29);

            A.MinorFont minorFont1 = new A.MinorFont();
            A.LatinFont latinFont20 = new A.LatinFont(){ Typeface = "Century Gothic" };
            A.EastAsianFont eastAsianFont20 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont20 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont30 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "MS ゴシック" };
            A.SupplementalFont supplementalFont31 = new A.SupplementalFont(){ Script = "Hang", Typeface = "HY중고딕" };
            A.SupplementalFont supplementalFont32 = new A.SupplementalFont(){ Script = "Hans", Typeface = "幼圆" };
            A.SupplementalFont supplementalFont33 = new A.SupplementalFont(){ Script = "Hant", Typeface = "微軟正黑體" };
            A.SupplementalFont supplementalFont34 = new A.SupplementalFont(){ Script = "Arab", Typeface = "Tahoma" };
            A.SupplementalFont supplementalFont35 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "Gisha" };
            A.SupplementalFont supplementalFont36 = new A.SupplementalFont(){ Script = "Thai", Typeface = "DilleniaUPC" };
            A.SupplementalFont supplementalFont37 = new A.SupplementalFont(){ Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont38 = new A.SupplementalFont(){ Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont39 = new A.SupplementalFont(){ Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont40 = new A.SupplementalFont(){ Script = "Khmr", Typeface = "DaunPenh" };
            A.SupplementalFont supplementalFont41 = new A.SupplementalFont(){ Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont42 = new A.SupplementalFont(){ Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont43 = new A.SupplementalFont(){ Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont44 = new A.SupplementalFont(){ Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont45 = new A.SupplementalFont(){ Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont46 = new A.SupplementalFont(){ Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont47 = new A.SupplementalFont(){ Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont48 = new A.SupplementalFont(){ Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont49 = new A.SupplementalFont(){ Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont50 = new A.SupplementalFont(){ Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont51 = new A.SupplementalFont(){ Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont52 = new A.SupplementalFont(){ Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont53 = new A.SupplementalFont(){ Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont54 = new A.SupplementalFont(){ Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont55 = new A.SupplementalFont(){ Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont56 = new A.SupplementalFont(){ Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont57 = new A.SupplementalFont(){ Script = "Viet", Typeface = "Verdana" };
            A.SupplementalFont supplementalFont58 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };

            minorFont1.Append(latinFont20);
            minorFont1.Append(eastAsianFont20);
            minorFont1.Append(complexScriptFont20);
            minorFont1.Append(supplementalFont30);
            minorFont1.Append(supplementalFont31);
            minorFont1.Append(supplementalFont32);
            minorFont1.Append(supplementalFont33);
            minorFont1.Append(supplementalFont34);
            minorFont1.Append(supplementalFont35);
            minorFont1.Append(supplementalFont36);
            minorFont1.Append(supplementalFont37);
            minorFont1.Append(supplementalFont38);
            minorFont1.Append(supplementalFont39);
            minorFont1.Append(supplementalFont40);
            minorFont1.Append(supplementalFont41);
            minorFont1.Append(supplementalFont42);
            minorFont1.Append(supplementalFont43);
            minorFont1.Append(supplementalFont44);
            minorFont1.Append(supplementalFont45);
            minorFont1.Append(supplementalFont46);
            minorFont1.Append(supplementalFont47);
            minorFont1.Append(supplementalFont48);
            minorFont1.Append(supplementalFont49);
            minorFont1.Append(supplementalFont50);
            minorFont1.Append(supplementalFont51);
            minorFont1.Append(supplementalFont52);
            minorFont1.Append(supplementalFont53);
            minorFont1.Append(supplementalFont54);
            minorFont1.Append(supplementalFont55);
            minorFont1.Append(supplementalFont56);
            minorFont1.Append(supplementalFont57);
            minorFont1.Append(supplementalFont58);

            fontScheme1.Append(majorFont1);
            fontScheme1.Append(minorFont1);

            A.FormatScheme formatScheme1 = new A.FormatScheme(){ Name = "Office" };

            A.FillStyleList fillStyleList1 = new A.FillStyleList();

            A.SolidFill solidFill20 = new A.SolidFill();
            A.SchemeColor schemeColor20 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill20.Append(schemeColor20);

            A.GradientFill gradientFill1 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList1 = new A.GradientStopList();

            A.GradientStop gradientStop1 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor21 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint1 = new A.Tint(){ Val = 50000 };
            A.SaturationModulation saturationModulation1 = new A.SaturationModulation(){ Val = 300000 };

            schemeColor21.Append(tint1);
            schemeColor21.Append(saturationModulation1);

            gradientStop1.Append(schemeColor21);

            A.GradientStop gradientStop2 = new A.GradientStop(){ Position = 35000 };

            A.SchemeColor schemeColor22 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint2 = new A.Tint(){ Val = 37000 };
            A.SaturationModulation saturationModulation2 = new A.SaturationModulation(){ Val = 300000 };

            schemeColor22.Append(tint2);
            schemeColor22.Append(saturationModulation2);

            gradientStop2.Append(schemeColor22);

            A.GradientStop gradientStop3 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor23 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint3 = new A.Tint(){ Val = 15000 };
            A.SaturationModulation saturationModulation3 = new A.SaturationModulation(){ Val = 350000 };

            schemeColor23.Append(tint3);
            schemeColor23.Append(saturationModulation3);

            gradientStop3.Append(schemeColor23);

            gradientStopList1.Append(gradientStop1);
            gradientStopList1.Append(gradientStop2);
            gradientStopList1.Append(gradientStop3);
            A.LinearGradientFill linearGradientFill1 = new A.LinearGradientFill(){ Angle = 16200000, Scaled = true };

            gradientFill1.Append(gradientStopList1);
            gradientFill1.Append(linearGradientFill1);

            A.GradientFill gradientFill2 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList2 = new A.GradientStopList();

            A.GradientStop gradientStop4 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor24 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade1 = new A.Shade(){ Val = 51000 };
            A.SaturationModulation saturationModulation4 = new A.SaturationModulation(){ Val = 130000 };

            schemeColor24.Append(shade1);
            schemeColor24.Append(saturationModulation4);

            gradientStop4.Append(schemeColor24);

            A.GradientStop gradientStop5 = new A.GradientStop(){ Position = 80000 };

            A.SchemeColor schemeColor25 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade2 = new A.Shade(){ Val = 93000 };
            A.SaturationModulation saturationModulation5 = new A.SaturationModulation(){ Val = 130000 };

            schemeColor25.Append(shade2);
            schemeColor25.Append(saturationModulation5);

            gradientStop5.Append(schemeColor25);

            A.GradientStop gradientStop6 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor26 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade3 = new A.Shade(){ Val = 94000 };
            A.SaturationModulation saturationModulation6 = new A.SaturationModulation(){ Val = 135000 };

            schemeColor26.Append(shade3);
            schemeColor26.Append(saturationModulation6);

            gradientStop6.Append(schemeColor26);

            gradientStopList2.Append(gradientStop4);
            gradientStopList2.Append(gradientStop5);
            gradientStopList2.Append(gradientStop6);
            A.LinearGradientFill linearGradientFill2 = new A.LinearGradientFill(){ Angle = 16200000, Scaled = false };

            gradientFill2.Append(gradientStopList2);
            gradientFill2.Append(linearGradientFill2);

            fillStyleList1.Append(solidFill20);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            A.LineStyleList lineStyleList1 = new A.LineStyleList();

            A.Outline outline2 = new A.Outline(){ Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill21 = new A.SolidFill();

            A.SchemeColor schemeColor27 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade4 = new A.Shade(){ Val = 95000 };
            A.SaturationModulation saturationModulation7 = new A.SaturationModulation(){ Val = 105000 };

            schemeColor27.Append(shade4);
            schemeColor27.Append(saturationModulation7);

            solidFill21.Append(schemeColor27);
            A.PresetDash presetDash1 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline2.Append(solidFill21);
            outline2.Append(presetDash1);

            A.Outline outline3 = new A.Outline(){ Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill22 = new A.SolidFill();
            A.SchemeColor schemeColor28 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill22.Append(schemeColor28);
            A.PresetDash presetDash2 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline3.Append(solidFill22);
            outline3.Append(presetDash2);

            A.Outline outline4 = new A.Outline(){ Width = 38100, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill23 = new A.SolidFill();
            A.SchemeColor schemeColor29 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill23.Append(schemeColor29);
            A.PresetDash presetDash3 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline4.Append(solidFill23);
            outline4.Append(presetDash3);

            lineStyleList1.Append(outline2);
            lineStyleList1.Append(outline3);
            lineStyleList1.Append(outline4);

            A.EffectStyleList effectStyleList1 = new A.EffectStyleList();

            A.EffectStyle effectStyle1 = new A.EffectStyle();

            A.EffectList effectList1 = new A.EffectList();

            A.OuterShadow outerShadow1 = new A.OuterShadow(){ BlurRadius = 40000L, Distance = 20000L, Direction = 5400000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex15 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha1 = new A.Alpha(){ Val = 38000 };

            rgbColorModelHex15.Append(alpha1);

            outerShadow1.Append(rgbColorModelHex15);

            effectList1.Append(outerShadow1);

            effectStyle1.Append(effectList1);

            A.EffectStyle effectStyle2 = new A.EffectStyle();

            A.EffectList effectList2 = new A.EffectList();

            A.OuterShadow outerShadow2 = new A.OuterShadow(){ BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex16 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha2 = new A.Alpha(){ Val = 35000 };

            rgbColorModelHex16.Append(alpha2);

            outerShadow2.Append(rgbColorModelHex16);

            effectList2.Append(outerShadow2);

            effectStyle2.Append(effectList2);

            A.EffectStyle effectStyle3 = new A.EffectStyle();

            A.EffectList effectList3 = new A.EffectList();

            A.OuterShadow outerShadow3 = new A.OuterShadow(){ BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex17 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha3 = new A.Alpha(){ Val = 35000 };

            rgbColorModelHex17.Append(alpha3);

            outerShadow3.Append(rgbColorModelHex17);

            effectList3.Append(outerShadow3);

            A.Scene3DType scene3DType1 = new A.Scene3DType();

            A.Camera camera1 = new A.Camera(){ Preset = A.PresetCameraValues.OrthographicFront };
            A.Rotation rotation1 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 0 };

            camera1.Append(rotation1);

            A.LightRig lightRig1 = new A.LightRig(){ Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };
            A.Rotation rotation2 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 1200000 };

            lightRig1.Append(rotation2);

            scene3DType1.Append(camera1);
            scene3DType1.Append(lightRig1);

            A.Shape3DType shape3DType1 = new A.Shape3DType();
            A.BevelTop bevelTop1 = new A.BevelTop(){ Width = 63500L, Height = 25400L };

            shape3DType1.Append(bevelTop1);

            effectStyle3.Append(effectList3);
            effectStyle3.Append(scene3DType1);
            effectStyle3.Append(shape3DType1);

            effectStyleList1.Append(effectStyle1);
            effectStyleList1.Append(effectStyle2);
            effectStyleList1.Append(effectStyle3);

            A.BackgroundFillStyleList backgroundFillStyleList1 = new A.BackgroundFillStyleList();

            A.SolidFill solidFill24 = new A.SolidFill();
            A.SchemeColor schemeColor30 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill24.Append(schemeColor30);

            A.GradientFill gradientFill3 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList3 = new A.GradientStopList();

            A.GradientStop gradientStop7 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor31 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint4 = new A.Tint(){ Val = 40000 };
            A.SaturationModulation saturationModulation8 = new A.SaturationModulation(){ Val = 350000 };

            schemeColor31.Append(tint4);
            schemeColor31.Append(saturationModulation8);

            gradientStop7.Append(schemeColor31);

            A.GradientStop gradientStop8 = new A.GradientStop(){ Position = 40000 };

            A.SchemeColor schemeColor32 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint5 = new A.Tint(){ Val = 45000 };
            A.Shade shade5 = new A.Shade(){ Val = 99000 };
            A.SaturationModulation saturationModulation9 = new A.SaturationModulation(){ Val = 350000 };

            schemeColor32.Append(tint5);
            schemeColor32.Append(shade5);
            schemeColor32.Append(saturationModulation9);

            gradientStop8.Append(schemeColor32);

            A.GradientStop gradientStop9 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor33 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade6 = new A.Shade(){ Val = 20000 };
            A.SaturationModulation saturationModulation10 = new A.SaturationModulation(){ Val = 255000 };

            schemeColor33.Append(shade6);
            schemeColor33.Append(saturationModulation10);

            gradientStop9.Append(schemeColor33);

            gradientStopList3.Append(gradientStop7);
            gradientStopList3.Append(gradientStop8);
            gradientStopList3.Append(gradientStop9);

            A.PathGradientFill pathGradientFill1 = new A.PathGradientFill(){ Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle1 = new A.FillToRectangle(){ Left = 50000, Top = -80000, Right = 50000, Bottom = 180000 };

            pathGradientFill1.Append(fillToRectangle1);

            gradientFill3.Append(gradientStopList3);
            gradientFill3.Append(pathGradientFill1);

            A.GradientFill gradientFill4 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList4 = new A.GradientStopList();

            A.GradientStop gradientStop10 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor34 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint6 = new A.Tint(){ Val = 80000 };
            A.SaturationModulation saturationModulation11 = new A.SaturationModulation(){ Val = 300000 };

            schemeColor34.Append(tint6);
            schemeColor34.Append(saturationModulation11);

            gradientStop10.Append(schemeColor34);

            A.GradientStop gradientStop11 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor35 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade7 = new A.Shade(){ Val = 30000 };
            A.SaturationModulation saturationModulation12 = new A.SaturationModulation(){ Val = 200000 };

            schemeColor35.Append(shade7);
            schemeColor35.Append(saturationModulation12);

            gradientStop11.Append(schemeColor35);

            gradientStopList4.Append(gradientStop10);
            gradientStopList4.Append(gradientStop11);

            A.PathGradientFill pathGradientFill2 = new A.PathGradientFill(){ Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle2 = new A.FillToRectangle(){ Left = 50000, Top = 50000, Right = 50000, Bottom = 50000 };

            pathGradientFill2.Append(fillToRectangle2);

            gradientFill4.Append(gradientStopList4);
            gradientFill4.Append(pathGradientFill2);

            backgroundFillStyleList1.Append(solidFill24);
            backgroundFillStyleList1.Append(gradientFill3);
            backgroundFillStyleList1.Append(gradientFill4);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme1);
            themeElements1.Append(formatScheme1);
            A.ObjectDefaults objectDefaults1 = new A.ObjectDefaults();
            A.ExtraColorSchemeList extraColorSchemeList1 = new A.ExtraColorSchemeList();

            theme1.Append(themeElements1);
            theme1.Append(objectDefaults1);
            theme1.Append(extraColorSchemeList1);

            themePart1.Theme = theme1;
        }
Пример #5
0
        // Generates content of themePart2.
        private void GenerateThemePart2Content(ThemePart themePart2)
        {
            A.Theme theme2 = new A.Theme(){ Name = "Office Theme" };
            theme2.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.ThemeElements themeElements2 = new A.ThemeElements();

            A.ColorScheme colorScheme2 = new A.ColorScheme(){ Name = "Office" };

            A.Dark1Color dark1Color2 = new A.Dark1Color();
            A.SystemColor systemColor3 = new A.SystemColor(){ Val = A.SystemColorValues.WindowText, LastColor = "000000" };

            dark1Color2.Append(systemColor3);

            A.Light1Color light1Color2 = new A.Light1Color();
            A.SystemColor systemColor4 = new A.SystemColor(){ Val = A.SystemColorValues.Window, LastColor = "FFFFFF" };

            light1Color2.Append(systemColor4);

            A.Dark2Color dark2Color2 = new A.Dark2Color();
            A.RgbColorModelHex rgbColorModelHex18 = new A.RgbColorModelHex(){ Val = "1F497D" };

            dark2Color2.Append(rgbColorModelHex18);

            A.Light2Color light2Color2 = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex19 = new A.RgbColorModelHex(){ Val = "EEECE1" };

            light2Color2.Append(rgbColorModelHex19);

            A.Accent1Color accent1Color2 = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex20 = new A.RgbColorModelHex(){ Val = "4F81BD" };

            accent1Color2.Append(rgbColorModelHex20);

            A.Accent2Color accent2Color2 = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex21 = new A.RgbColorModelHex(){ Val = "C0504D" };

            accent2Color2.Append(rgbColorModelHex21);

            A.Accent3Color accent3Color2 = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex22 = new A.RgbColorModelHex(){ Val = "9BBB59" };

            accent3Color2.Append(rgbColorModelHex22);

            A.Accent4Color accent4Color2 = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex23 = new A.RgbColorModelHex(){ Val = "8064A2" };

            accent4Color2.Append(rgbColorModelHex23);

            A.Accent5Color accent5Color2 = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex24 = new A.RgbColorModelHex(){ Val = "4BACC6" };

            accent5Color2.Append(rgbColorModelHex24);

            A.Accent6Color accent6Color2 = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex25 = new A.RgbColorModelHex(){ Val = "F79646" };

            accent6Color2.Append(rgbColorModelHex25);

            A.Hyperlink hyperlink2 = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex26 = new A.RgbColorModelHex(){ Val = "0000FF" };

            hyperlink2.Append(rgbColorModelHex26);

            A.FollowedHyperlinkColor followedHyperlinkColor2 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex rgbColorModelHex27 = new A.RgbColorModelHex(){ Val = "800080" };

            followedHyperlinkColor2.Append(rgbColorModelHex27);

            colorScheme2.Append(dark1Color2);
            colorScheme2.Append(light1Color2);
            colorScheme2.Append(dark2Color2);
            colorScheme2.Append(light2Color2);
            colorScheme2.Append(accent1Color2);
            colorScheme2.Append(accent2Color2);
            colorScheme2.Append(accent3Color2);
            colorScheme2.Append(accent4Color2);
            colorScheme2.Append(accent5Color2);
            colorScheme2.Append(accent6Color2);
            colorScheme2.Append(hyperlink2);
            colorScheme2.Append(followedHyperlinkColor2);

            A.FontScheme fontScheme2 = new A.FontScheme(){ Name = "Office" };

            A.MajorFont majorFont2 = new A.MajorFont();
            A.LatinFont latinFont40 = new A.LatinFont(){ Typeface = "Calibri" };
            A.EastAsianFont eastAsianFont40 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont40 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont59 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "MS Pゴシック" };
            A.SupplementalFont supplementalFont60 = new A.SupplementalFont(){ Script = "Hang", Typeface = "맑은 고딕" };
            A.SupplementalFont supplementalFont61 = new A.SupplementalFont(){ Script = "Hans", Typeface = "宋体" };
            A.SupplementalFont supplementalFont62 = new A.SupplementalFont(){ Script = "Hant", Typeface = "新細明體" };
            A.SupplementalFont supplementalFont63 = new A.SupplementalFont(){ Script = "Arab", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont64 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont65 = new A.SupplementalFont(){ Script = "Thai", Typeface = "Angsana New" };
            A.SupplementalFont supplementalFont66 = new A.SupplementalFont(){ Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont67 = new A.SupplementalFont(){ Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont68 = new A.SupplementalFont(){ Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont69 = new A.SupplementalFont(){ Script = "Khmr", Typeface = "MoolBoran" };
            A.SupplementalFont supplementalFont70 = new A.SupplementalFont(){ Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont71 = new A.SupplementalFont(){ Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont72 = new A.SupplementalFont(){ Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont73 = new A.SupplementalFont(){ Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont74 = new A.SupplementalFont(){ Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont75 = new A.SupplementalFont(){ Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont76 = new A.SupplementalFont(){ Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont77 = new A.SupplementalFont(){ Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont78 = new A.SupplementalFont(){ Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont79 = new A.SupplementalFont(){ Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont80 = new A.SupplementalFont(){ Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont81 = new A.SupplementalFont(){ Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont82 = new A.SupplementalFont(){ Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont83 = new A.SupplementalFont(){ Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont84 = new A.SupplementalFont(){ Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont85 = new A.SupplementalFont(){ Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont86 = new A.SupplementalFont(){ Script = "Viet", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont87 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };

            majorFont2.Append(latinFont40);
            majorFont2.Append(eastAsianFont40);
            majorFont2.Append(complexScriptFont40);
            majorFont2.Append(supplementalFont59);
            majorFont2.Append(supplementalFont60);
            majorFont2.Append(supplementalFont61);
            majorFont2.Append(supplementalFont62);
            majorFont2.Append(supplementalFont63);
            majorFont2.Append(supplementalFont64);
            majorFont2.Append(supplementalFont65);
            majorFont2.Append(supplementalFont66);
            majorFont2.Append(supplementalFont67);
            majorFont2.Append(supplementalFont68);
            majorFont2.Append(supplementalFont69);
            majorFont2.Append(supplementalFont70);
            majorFont2.Append(supplementalFont71);
            majorFont2.Append(supplementalFont72);
            majorFont2.Append(supplementalFont73);
            majorFont2.Append(supplementalFont74);
            majorFont2.Append(supplementalFont75);
            majorFont2.Append(supplementalFont76);
            majorFont2.Append(supplementalFont77);
            majorFont2.Append(supplementalFont78);
            majorFont2.Append(supplementalFont79);
            majorFont2.Append(supplementalFont80);
            majorFont2.Append(supplementalFont81);
            majorFont2.Append(supplementalFont82);
            majorFont2.Append(supplementalFont83);
            majorFont2.Append(supplementalFont84);
            majorFont2.Append(supplementalFont85);
            majorFont2.Append(supplementalFont86);
            majorFont2.Append(supplementalFont87);

            A.MinorFont minorFont2 = new A.MinorFont();
            A.LatinFont latinFont41 = new A.LatinFont(){ Typeface = "Calibri" };
            A.EastAsianFont eastAsianFont41 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont41 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont88 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "MS Pゴシック" };
            A.SupplementalFont supplementalFont89 = new A.SupplementalFont(){ Script = "Hang", Typeface = "맑은 고딕" };
            A.SupplementalFont supplementalFont90 = new A.SupplementalFont(){ Script = "Hans", Typeface = "宋体" };
            A.SupplementalFont supplementalFont91 = new A.SupplementalFont(){ Script = "Hant", Typeface = "新細明體" };
            A.SupplementalFont supplementalFont92 = new A.SupplementalFont(){ Script = "Arab", Typeface = "Arial" };
            A.SupplementalFont supplementalFont93 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "Arial" };
            A.SupplementalFont supplementalFont94 = new A.SupplementalFont(){ Script = "Thai", Typeface = "Cordia New" };
            A.SupplementalFont supplementalFont95 = new A.SupplementalFont(){ Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont96 = new A.SupplementalFont(){ Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont97 = new A.SupplementalFont(){ Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont98 = new A.SupplementalFont(){ Script = "Khmr", Typeface = "DaunPenh" };
            A.SupplementalFont supplementalFont99 = new A.SupplementalFont(){ Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont100 = new A.SupplementalFont(){ Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont101 = new A.SupplementalFont(){ Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont102 = new A.SupplementalFont(){ Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont103 = new A.SupplementalFont(){ Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont104 = new A.SupplementalFont(){ Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont105 = new A.SupplementalFont(){ Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont106 = new A.SupplementalFont(){ Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont107 = new A.SupplementalFont(){ Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont108 = new A.SupplementalFont(){ Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont109 = new A.SupplementalFont(){ Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont110 = new A.SupplementalFont(){ Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont111 = new A.SupplementalFont(){ Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont112 = new A.SupplementalFont(){ Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont113 = new A.SupplementalFont(){ Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont114 = new A.SupplementalFont(){ Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont115 = new A.SupplementalFont(){ Script = "Viet", Typeface = "Arial" };
            A.SupplementalFont supplementalFont116 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };

            minorFont2.Append(latinFont41);
            minorFont2.Append(eastAsianFont41);
            minorFont2.Append(complexScriptFont41);
            minorFont2.Append(supplementalFont88);
            minorFont2.Append(supplementalFont89);
            minorFont2.Append(supplementalFont90);
            minorFont2.Append(supplementalFont91);
            minorFont2.Append(supplementalFont92);
            minorFont2.Append(supplementalFont93);
            minorFont2.Append(supplementalFont94);
            minorFont2.Append(supplementalFont95);
            minorFont2.Append(supplementalFont96);
            minorFont2.Append(supplementalFont97);
            minorFont2.Append(supplementalFont98);
            minorFont2.Append(supplementalFont99);
            minorFont2.Append(supplementalFont100);
            minorFont2.Append(supplementalFont101);
            minorFont2.Append(supplementalFont102);
            minorFont2.Append(supplementalFont103);
            minorFont2.Append(supplementalFont104);
            minorFont2.Append(supplementalFont105);
            minorFont2.Append(supplementalFont106);
            minorFont2.Append(supplementalFont107);
            minorFont2.Append(supplementalFont108);
            minorFont2.Append(supplementalFont109);
            minorFont2.Append(supplementalFont110);
            minorFont2.Append(supplementalFont111);
            minorFont2.Append(supplementalFont112);
            minorFont2.Append(supplementalFont113);
            minorFont2.Append(supplementalFont114);
            minorFont2.Append(supplementalFont115);
            minorFont2.Append(supplementalFont116);

            fontScheme2.Append(majorFont2);
            fontScheme2.Append(minorFont2);

            A.FormatScheme formatScheme2 = new A.FormatScheme(){ Name = "Office" };

            A.FillStyleList fillStyleList2 = new A.FillStyleList();

            A.SolidFill solidFill65 = new A.SolidFill();
            A.SchemeColor schemeColor77 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill65.Append(schemeColor77);

            A.GradientFill gradientFill5 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList5 = new A.GradientStopList();

            A.GradientStop gradientStop12 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor78 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint28 = new A.Tint(){ Val = 50000 };
            A.SaturationModulation saturationModulation13 = new A.SaturationModulation(){ Val = 300000 };

            schemeColor78.Append(tint28);
            schemeColor78.Append(saturationModulation13);

            gradientStop12.Append(schemeColor78);

            A.GradientStop gradientStop13 = new A.GradientStop(){ Position = 35000 };

            A.SchemeColor schemeColor79 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint29 = new A.Tint(){ Val = 37000 };
            A.SaturationModulation saturationModulation14 = new A.SaturationModulation(){ Val = 300000 };

            schemeColor79.Append(tint29);
            schemeColor79.Append(saturationModulation14);

            gradientStop13.Append(schemeColor79);

            A.GradientStop gradientStop14 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor80 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint30 = new A.Tint(){ Val = 15000 };
            A.SaturationModulation saturationModulation15 = new A.SaturationModulation(){ Val = 350000 };

            schemeColor80.Append(tint30);
            schemeColor80.Append(saturationModulation15);

            gradientStop14.Append(schemeColor80);

            gradientStopList5.Append(gradientStop12);
            gradientStopList5.Append(gradientStop13);
            gradientStopList5.Append(gradientStop14);
            A.LinearGradientFill linearGradientFill3 = new A.LinearGradientFill(){ Angle = 16200000, Scaled = true };

            gradientFill5.Append(gradientStopList5);
            gradientFill5.Append(linearGradientFill3);

            A.GradientFill gradientFill6 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList6 = new A.GradientStopList();

            A.GradientStop gradientStop15 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor81 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade8 = new A.Shade(){ Val = 51000 };
            A.SaturationModulation saturationModulation16 = new A.SaturationModulation(){ Val = 130000 };

            schemeColor81.Append(shade8);
            schemeColor81.Append(saturationModulation16);

            gradientStop15.Append(schemeColor81);

            A.GradientStop gradientStop16 = new A.GradientStop(){ Position = 80000 };

            A.SchemeColor schemeColor82 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade9 = new A.Shade(){ Val = 93000 };
            A.SaturationModulation saturationModulation17 = new A.SaturationModulation(){ Val = 130000 };

            schemeColor82.Append(shade9);
            schemeColor82.Append(saturationModulation17);

            gradientStop16.Append(schemeColor82);

            A.GradientStop gradientStop17 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor83 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade10 = new A.Shade(){ Val = 94000 };
            A.SaturationModulation saturationModulation18 = new A.SaturationModulation(){ Val = 135000 };

            schemeColor83.Append(shade10);
            schemeColor83.Append(saturationModulation18);

            gradientStop17.Append(schemeColor83);

            gradientStopList6.Append(gradientStop15);
            gradientStopList6.Append(gradientStop16);
            gradientStopList6.Append(gradientStop17);
            A.LinearGradientFill linearGradientFill4 = new A.LinearGradientFill(){ Angle = 16200000, Scaled = false };

            gradientFill6.Append(gradientStopList6);
            gradientFill6.Append(linearGradientFill4);

            fillStyleList2.Append(solidFill65);
            fillStyleList2.Append(gradientFill5);
            fillStyleList2.Append(gradientFill6);

            A.LineStyleList lineStyleList2 = new A.LineStyleList();

            A.Outline outline5 = new A.Outline(){ Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill66 = new A.SolidFill();

            A.SchemeColor schemeColor84 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade11 = new A.Shade(){ Val = 95000 };
            A.SaturationModulation saturationModulation19 = new A.SaturationModulation(){ Val = 105000 };

            schemeColor84.Append(shade11);
            schemeColor84.Append(saturationModulation19);

            solidFill66.Append(schemeColor84);
            A.PresetDash presetDash4 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline5.Append(solidFill66);
            outline5.Append(presetDash4);

            A.Outline outline6 = new A.Outline(){ Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill67 = new A.SolidFill();
            A.SchemeColor schemeColor85 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill67.Append(schemeColor85);
            A.PresetDash presetDash5 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline6.Append(solidFill67);
            outline6.Append(presetDash5);

            A.Outline outline7 = new A.Outline(){ Width = 38100, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill68 = new A.SolidFill();
            A.SchemeColor schemeColor86 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill68.Append(schemeColor86);
            A.PresetDash presetDash6 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline7.Append(solidFill68);
            outline7.Append(presetDash6);

            lineStyleList2.Append(outline5);
            lineStyleList2.Append(outline6);
            lineStyleList2.Append(outline7);

            A.EffectStyleList effectStyleList2 = new A.EffectStyleList();

            A.EffectStyle effectStyle4 = new A.EffectStyle();

            A.EffectList effectList4 = new A.EffectList();

            A.OuterShadow outerShadow4 = new A.OuterShadow(){ BlurRadius = 40000L, Distance = 20000L, Direction = 5400000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex28 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha4 = new A.Alpha(){ Val = 38000 };

            rgbColorModelHex28.Append(alpha4);

            outerShadow4.Append(rgbColorModelHex28);

            effectList4.Append(outerShadow4);

            effectStyle4.Append(effectList4);

            A.EffectStyle effectStyle5 = new A.EffectStyle();

            A.EffectList effectList5 = new A.EffectList();

            A.OuterShadow outerShadow5 = new A.OuterShadow(){ BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex29 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha5 = new A.Alpha(){ Val = 35000 };

            rgbColorModelHex29.Append(alpha5);

            outerShadow5.Append(rgbColorModelHex29);

            effectList5.Append(outerShadow5);

            effectStyle5.Append(effectList5);

            A.EffectStyle effectStyle6 = new A.EffectStyle();

            A.EffectList effectList6 = new A.EffectList();

            A.OuterShadow outerShadow6 = new A.OuterShadow(){ BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex30 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha6 = new A.Alpha(){ Val = 35000 };

            rgbColorModelHex30.Append(alpha6);

            outerShadow6.Append(rgbColorModelHex30);

            effectList6.Append(outerShadow6);

            A.Scene3DType scene3DType2 = new A.Scene3DType();

            A.Camera camera2 = new A.Camera(){ Preset = A.PresetCameraValues.OrthographicFront };
            A.Rotation rotation3 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 0 };

            camera2.Append(rotation3);

            A.LightRig lightRig2 = new A.LightRig(){ Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };
            A.Rotation rotation4 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 1200000 };

            lightRig2.Append(rotation4);

            scene3DType2.Append(camera2);
            scene3DType2.Append(lightRig2);

            A.Shape3DType shape3DType2 = new A.Shape3DType();
            A.BevelTop bevelTop2 = new A.BevelTop(){ Width = 63500L, Height = 25400L };

            shape3DType2.Append(bevelTop2);

            effectStyle6.Append(effectList6);
            effectStyle6.Append(scene3DType2);
            effectStyle6.Append(shape3DType2);

            effectStyleList2.Append(effectStyle4);
            effectStyleList2.Append(effectStyle5);
            effectStyleList2.Append(effectStyle6);

            A.BackgroundFillStyleList backgroundFillStyleList2 = new A.BackgroundFillStyleList();

            A.SolidFill solidFill69 = new A.SolidFill();
            A.SchemeColor schemeColor87 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill69.Append(schemeColor87);

            A.GradientFill gradientFill7 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList7 = new A.GradientStopList();

            A.GradientStop gradientStop18 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor88 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint31 = new A.Tint(){ Val = 40000 };
            A.SaturationModulation saturationModulation20 = new A.SaturationModulation(){ Val = 350000 };

            schemeColor88.Append(tint31);
            schemeColor88.Append(saturationModulation20);

            gradientStop18.Append(schemeColor88);

            A.GradientStop gradientStop19 = new A.GradientStop(){ Position = 40000 };

            A.SchemeColor schemeColor89 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint32 = new A.Tint(){ Val = 45000 };
            A.Shade shade12 = new A.Shade(){ Val = 99000 };
            A.SaturationModulation saturationModulation21 = new A.SaturationModulation(){ Val = 350000 };

            schemeColor89.Append(tint32);
            schemeColor89.Append(shade12);
            schemeColor89.Append(saturationModulation21);

            gradientStop19.Append(schemeColor89);

            A.GradientStop gradientStop20 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor90 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade13 = new A.Shade(){ Val = 20000 };
            A.SaturationModulation saturationModulation22 = new A.SaturationModulation(){ Val = 255000 };

            schemeColor90.Append(shade13);
            schemeColor90.Append(saturationModulation22);

            gradientStop20.Append(schemeColor90);

            gradientStopList7.Append(gradientStop18);
            gradientStopList7.Append(gradientStop19);
            gradientStopList7.Append(gradientStop20);

            A.PathGradientFill pathGradientFill3 = new A.PathGradientFill(){ Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle3 = new A.FillToRectangle(){ Left = 50000, Top = -80000, Right = 50000, Bottom = 180000 };

            pathGradientFill3.Append(fillToRectangle3);

            gradientFill7.Append(gradientStopList7);
            gradientFill7.Append(pathGradientFill3);

            A.GradientFill gradientFill8 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList8 = new A.GradientStopList();

            A.GradientStop gradientStop21 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor91 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint33 = new A.Tint(){ Val = 80000 };
            A.SaturationModulation saturationModulation23 = new A.SaturationModulation(){ Val = 300000 };

            schemeColor91.Append(tint33);
            schemeColor91.Append(saturationModulation23);

            gradientStop21.Append(schemeColor91);

            A.GradientStop gradientStop22 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor92 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade14 = new A.Shade(){ Val = 30000 };
            A.SaturationModulation saturationModulation24 = new A.SaturationModulation(){ Val = 200000 };

            schemeColor92.Append(shade14);
            schemeColor92.Append(saturationModulation24);

            gradientStop22.Append(schemeColor92);

            gradientStopList8.Append(gradientStop21);
            gradientStopList8.Append(gradientStop22);

            A.PathGradientFill pathGradientFill4 = new A.PathGradientFill(){ Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle4 = new A.FillToRectangle(){ Left = 50000, Top = 50000, Right = 50000, Bottom = 50000 };

            pathGradientFill4.Append(fillToRectangle4);

            gradientFill8.Append(gradientStopList8);
            gradientFill8.Append(pathGradientFill4);

            backgroundFillStyleList2.Append(solidFill69);
            backgroundFillStyleList2.Append(gradientFill7);
            backgroundFillStyleList2.Append(gradientFill8);

            formatScheme2.Append(fillStyleList2);
            formatScheme2.Append(lineStyleList2);
            formatScheme2.Append(effectStyleList2);
            formatScheme2.Append(backgroundFillStyleList2);

            themeElements2.Append(colorScheme2);
            themeElements2.Append(fontScheme2);
            themeElements2.Append(formatScheme2);
            A.ObjectDefaults objectDefaults2 = new A.ObjectDefaults();
            A.ExtraColorSchemeList extraColorSchemeList2 = new A.ExtraColorSchemeList();

            theme2.Append(themeElements2);
            theme2.Append(objectDefaults2);
            theme2.Append(extraColorSchemeList2);

            themePart2.Theme = theme2;
        }
        private void ProcessLink(HtmlEnumerator en)
        {
            String att = en.Attributes["href"];
            Hyperlink h = null;
            Uri uri = null;

            if (!String.IsNullOrEmpty(att))
            {
                // is it an anchor?
                if (att[0] == '#' && att.Length > 1)
                {
                    // Always accept _top anchor
                    if (!this.ExcludeLinkAnchor || att == "#_top")
                    {
                        h = new Hyperlink(
                            ) { History = true, Anchor = att.Substring(1) };
                    }
                }
                // ensure the links does not start with javascript:
                else if (Uri.TryCreate(att, UriKind.Absolute, out uri) && uri.Scheme != "javascript")
                {
                    HyperlinkRelationship extLink = mainPart.AddHyperlinkRelationship(uri, true);

                    h = new Hyperlink(
                        ) { History = true, Id = extLink.Id };
                }
            }

            if (h == null)
            {
                // link to a broken url, simply process the content of the tag
                ProcessHtmlChunks(en, "</a>");
                return;
            }

            AlternateProcessHtmlChunks(en, "</a>");

            if (elements.Count > 0)
            {
                // Let's see whether the link tag include an image inside its body.
                // If so, the Hyperlink OpenXmlElement is lost and we'll keep only the images
                // and applied a HyperlinkOnClick attribute.
                List<OpenXmlElement> imageInLink = elements.FindAll(e => { return e.HasChild<Drawing>(); });
                if (imageInLink.Count != 0)
                {
                    for (int i = 0; i < imageInLink.Count; i++)
                    {
                        // Retrieves the "alt" attribute of the image and apply it as the link's tooltip
                        Drawing d = imageInLink[i].GetFirstChild<Drawing>();
                        var enDp = d.Descendants<pic.NonVisualDrawingProperties>().GetEnumerator();
                        String alt;
                        if (enDp.MoveNext()) alt = enDp.Current.Description;
                        else alt = null;

                        d.InsertInDocProperties(
                             new a.HyperlinkOnClick() { Id = h.Id ?? h.Anchor, Tooltip = alt });
                    }

                    CompleteCurrentParagraph();
                    AddParagraph(currentParagraph = htmlStyles.Paragraph.NewParagraph());
                }
                else
                {
                    // Append the processed elements and put them to the Run of the Hyperlink
                    h.Append(elements);

                    if (!htmlStyles.DoesStyleExists("Hyperlink"))
                    {
                        htmlStyles.AddStyle("Hyperlink", new Style(
                            new StyleName() { Val = "Hyperlink" },
                            new UnhideWhenUsed(),
                            new StyleRunProperties(
                                new DocumentFormat.OpenXml.Wordprocessing.Color() { Val = "0000FF", ThemeColor = ThemeColorValues.Hyperlink },
                                new Underline() { Val = UnderlineValues.Single }
                            )
                        ) { Type = StyleValues.Character, StyleId = "Hyperlink" });
                    }

                    h.GetFirstChild<Run>().InsertInProperties(
                        new RunStyle() { Val = htmlStyles.GetStyle("Hyperlink", true) });

                    this.elements.Clear();

                    // Append the hyperlink
                    elements.Add(h);
                }
            }
        }
Пример #7
0
        // Generates content of themePart1.
        private void GenerateThemePart1Content(ThemePart themePart1)
        {
            A.Theme theme1 = new A.Theme(){ Name = "Apex" };
            theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.ThemeElements themeElements1 = new A.ThemeElements();

            A.ColorScheme colorScheme1 = new A.ColorScheme(){ Name = "Apex" };

            A.Dark1Color dark1Color1 = new A.Dark1Color();
            A.SystemColor systemColor1 = new A.SystemColor(){ Val = A.SystemColorValues.WindowText, LastColor = "000000" };

            dark1Color1.Append(systemColor1);

            A.Light1Color light1Color1 = new A.Light1Color();
            A.SystemColor systemColor2 = new A.SystemColor(){ Val = A.SystemColorValues.Window, LastColor = "FFFFFF" };

            light1Color1.Append(systemColor2);

            A.Dark2Color dark2Color1 = new A.Dark2Color();
            A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex(){ Val = "69676D" };

            dark2Color1.Append(rgbColorModelHex4);

            A.Light2Color light2Color1 = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex(){ Val = "C9C2D1" };

            light2Color1.Append(rgbColorModelHex5);

            A.Accent1Color accent1Color1 = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex(){ Val = "CEB966" };

            accent1Color1.Append(rgbColorModelHex6);

            A.Accent2Color accent2Color1 = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex(){ Val = "9CB084" };

            accent2Color1.Append(rgbColorModelHex7);

            A.Accent3Color accent3Color1 = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex(){ Val = "6BB1C9" };

            accent3Color1.Append(rgbColorModelHex8);

            A.Accent4Color accent4Color1 = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex(){ Val = "6585CF" };

            accent4Color1.Append(rgbColorModelHex9);

            A.Accent5Color accent5Color1 = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex(){ Val = "7E6BC9" };

            accent5Color1.Append(rgbColorModelHex10);

            A.Accent6Color accent6Color1 = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex(){ Val = "A379BB" };

            accent6Color1.Append(rgbColorModelHex11);

            A.Hyperlink hyperlink1 = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex12 = new A.RgbColorModelHex(){ Val = "410082" };

            hyperlink1.Append(rgbColorModelHex12);

            A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex rgbColorModelHex13 = new A.RgbColorModelHex(){ Val = "932968" };

            followedHyperlinkColor1.Append(rgbColorModelHex13);

            colorScheme1.Append(dark1Color1);
            colorScheme1.Append(light1Color1);
            colorScheme1.Append(dark2Color1);
            colorScheme1.Append(light2Color1);
            colorScheme1.Append(accent1Color1);
            colorScheme1.Append(accent2Color1);
            colorScheme1.Append(accent3Color1);
            colorScheme1.Append(accent4Color1);
            colorScheme1.Append(accent5Color1);
            colorScheme1.Append(accent6Color1);
            colorScheme1.Append(hyperlink1);
            colorScheme1.Append(followedHyperlinkColor1);

            A.FontScheme fontScheme1 = new A.FontScheme(){ Name = "Apex" };

            A.MajorFont majorFont1 = new A.MajorFont();
            A.LatinFont latinFont30 = new A.LatinFont(){ Typeface = "Lucida Sans" };
            A.EastAsianFont eastAsianFont30 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont30 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont1 = new A.SupplementalFont(){ Script = "Grek", Typeface = "Arial" };
            A.SupplementalFont supplementalFont2 = new A.SupplementalFont(){ Script = "Cyrl", Typeface = "Arial" };
            A.SupplementalFont supplementalFont3 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "HG丸ゴシックM-PRO" };
            A.SupplementalFont supplementalFont4 = new A.SupplementalFont(){ Script = "Hang", Typeface = "휴먼옛체" };
            A.SupplementalFont supplementalFont5 = new A.SupplementalFont(){ Script = "Hans", Typeface = "黑体" };
            A.SupplementalFont supplementalFont6 = new A.SupplementalFont(){ Script = "Hant", Typeface = "微軟正黑體" };
            A.SupplementalFont supplementalFont7 = new A.SupplementalFont(){ Script = "Arab", Typeface = "Tahoma" };
            A.SupplementalFont supplementalFont8 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "Levenim MT" };
            A.SupplementalFont supplementalFont9 = new A.SupplementalFont(){ Script = "Thai", Typeface = "FreesiaUPC" };
            A.SupplementalFont supplementalFont10 = new A.SupplementalFont(){ Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont11 = new A.SupplementalFont(){ Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont12 = new A.SupplementalFont(){ Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont13 = new A.SupplementalFont(){ Script = "Khmr", Typeface = "DaunPenh" };
            A.SupplementalFont supplementalFont14 = new A.SupplementalFont(){ Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont15 = new A.SupplementalFont(){ Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont16 = new A.SupplementalFont(){ Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont17 = new A.SupplementalFont(){ Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont18 = new A.SupplementalFont(){ Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont19 = new A.SupplementalFont(){ Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont20 = new A.SupplementalFont(){ Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont21 = new A.SupplementalFont(){ Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont22 = new A.SupplementalFont(){ Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont23 = new A.SupplementalFont(){ Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont24 = new A.SupplementalFont(){ Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont25 = new A.SupplementalFont(){ Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont26 = new A.SupplementalFont(){ Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont27 = new A.SupplementalFont(){ Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont28 = new A.SupplementalFont(){ Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont29 = new A.SupplementalFont(){ Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont30 = new A.SupplementalFont(){ Script = "Viet", Typeface = "Tahoma" };
            A.SupplementalFont supplementalFont31 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };
            A.SupplementalFont supplementalFont32 = new A.SupplementalFont(){ Script = "Geor", Typeface = "Sylfaen" };

            majorFont1.Append(latinFont30);
            majorFont1.Append(eastAsianFont30);
            majorFont1.Append(complexScriptFont30);
            majorFont1.Append(supplementalFont1);
            majorFont1.Append(supplementalFont2);
            majorFont1.Append(supplementalFont3);
            majorFont1.Append(supplementalFont4);
            majorFont1.Append(supplementalFont5);
            majorFont1.Append(supplementalFont6);
            majorFont1.Append(supplementalFont7);
            majorFont1.Append(supplementalFont8);
            majorFont1.Append(supplementalFont9);
            majorFont1.Append(supplementalFont10);
            majorFont1.Append(supplementalFont11);
            majorFont1.Append(supplementalFont12);
            majorFont1.Append(supplementalFont13);
            majorFont1.Append(supplementalFont14);
            majorFont1.Append(supplementalFont15);
            majorFont1.Append(supplementalFont16);
            majorFont1.Append(supplementalFont17);
            majorFont1.Append(supplementalFont18);
            majorFont1.Append(supplementalFont19);
            majorFont1.Append(supplementalFont20);
            majorFont1.Append(supplementalFont21);
            majorFont1.Append(supplementalFont22);
            majorFont1.Append(supplementalFont23);
            majorFont1.Append(supplementalFont24);
            majorFont1.Append(supplementalFont25);
            majorFont1.Append(supplementalFont26);
            majorFont1.Append(supplementalFont27);
            majorFont1.Append(supplementalFont28);
            majorFont1.Append(supplementalFont29);
            majorFont1.Append(supplementalFont30);
            majorFont1.Append(supplementalFont31);
            majorFont1.Append(supplementalFont32);

            A.MinorFont minorFont1 = new A.MinorFont();
            A.LatinFont latinFont31 = new A.LatinFont(){ Typeface = "Book Antiqua" };
            A.EastAsianFont eastAsianFont31 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont31 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont33 = new A.SupplementalFont(){ Script = "Grek", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont34 = new A.SupplementalFont(){ Script = "Cyrl", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont35 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "HG明朝B" };
            A.SupplementalFont supplementalFont36 = new A.SupplementalFont(){ Script = "Hang", Typeface = "돋움" };
            A.SupplementalFont supplementalFont37 = new A.SupplementalFont(){ Script = "Hans", Typeface = "宋体" };
            A.SupplementalFont supplementalFont38 = new A.SupplementalFont(){ Script = "Hant", Typeface = "新細明體" };
            A.SupplementalFont supplementalFont39 = new A.SupplementalFont(){ Script = "Arab", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont40 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "David" };
            A.SupplementalFont supplementalFont41 = new A.SupplementalFont(){ Script = "Thai", Typeface = "EucrosiaUPC" };
            A.SupplementalFont supplementalFont42 = new A.SupplementalFont(){ Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont43 = new A.SupplementalFont(){ Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont44 = new A.SupplementalFont(){ Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont45 = new A.SupplementalFont(){ Script = "Khmr", Typeface = "MoolBoran" };
            A.SupplementalFont supplementalFont46 = new A.SupplementalFont(){ Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont47 = new A.SupplementalFont(){ Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont48 = new A.SupplementalFont(){ Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont49 = new A.SupplementalFont(){ Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont50 = new A.SupplementalFont(){ Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont51 = new A.SupplementalFont(){ Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont52 = new A.SupplementalFont(){ Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont53 = new A.SupplementalFont(){ Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont54 = new A.SupplementalFont(){ Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont55 = new A.SupplementalFont(){ Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont56 = new A.SupplementalFont(){ Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont57 = new A.SupplementalFont(){ Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont58 = new A.SupplementalFont(){ Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont59 = new A.SupplementalFont(){ Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont60 = new A.SupplementalFont(){ Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont61 = new A.SupplementalFont(){ Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont62 = new A.SupplementalFont(){ Script = "Viet", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont63 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };
            A.SupplementalFont supplementalFont64 = new A.SupplementalFont(){ Script = "Geor", Typeface = "Sylfaen" };

            minorFont1.Append(latinFont31);
            minorFont1.Append(eastAsianFont31);
            minorFont1.Append(complexScriptFont31);
            minorFont1.Append(supplementalFont33);
            minorFont1.Append(supplementalFont34);
            minorFont1.Append(supplementalFont35);
            minorFont1.Append(supplementalFont36);
            minorFont1.Append(supplementalFont37);
            minorFont1.Append(supplementalFont38);
            minorFont1.Append(supplementalFont39);
            minorFont1.Append(supplementalFont40);
            minorFont1.Append(supplementalFont41);
            minorFont1.Append(supplementalFont42);
            minorFont1.Append(supplementalFont43);
            minorFont1.Append(supplementalFont44);
            minorFont1.Append(supplementalFont45);
            minorFont1.Append(supplementalFont46);
            minorFont1.Append(supplementalFont47);
            minorFont1.Append(supplementalFont48);
            minorFont1.Append(supplementalFont49);
            minorFont1.Append(supplementalFont50);
            minorFont1.Append(supplementalFont51);
            minorFont1.Append(supplementalFont52);
            minorFont1.Append(supplementalFont53);
            minorFont1.Append(supplementalFont54);
            minorFont1.Append(supplementalFont55);
            minorFont1.Append(supplementalFont56);
            minorFont1.Append(supplementalFont57);
            minorFont1.Append(supplementalFont58);
            minorFont1.Append(supplementalFont59);
            minorFont1.Append(supplementalFont60);
            minorFont1.Append(supplementalFont61);
            minorFont1.Append(supplementalFont62);
            minorFont1.Append(supplementalFont63);
            minorFont1.Append(supplementalFont64);

            fontScheme1.Append(majorFont1);
            fontScheme1.Append(minorFont1);

            A.FormatScheme formatScheme1 = new A.FormatScheme(){ Name = "Apex" };

            A.FillStyleList fillStyleList1 = new A.FillStyleList();

            A.SolidFill solidFill39 = new A.SolidFill();
            A.SchemeColor schemeColor57 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill39.Append(schemeColor57);

            A.GradientFill gradientFill3 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList3 = new A.GradientStopList();

            A.GradientStop gradientStop7 = new A.GradientStop(){ Position = 20000 };

            A.SchemeColor schemeColor58 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint13 = new A.Tint(){ Val = 9000 };

            schemeColor58.Append(tint13);

            gradientStop7.Append(schemeColor58);

            A.GradientStop gradientStop8 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor59 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint14 = new A.Tint(){ Val = 70000 };
            A.SaturationModulation saturationModulation9 = new A.SaturationModulation(){ Val = 100000 };

            schemeColor59.Append(tint14);
            schemeColor59.Append(saturationModulation9);

            gradientStop8.Append(schemeColor59);

            gradientStopList3.Append(gradientStop7);
            gradientStopList3.Append(gradientStop8);

            A.PathGradientFill pathGradientFill1 = new A.PathGradientFill(){ Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle1 = new A.FillToRectangle(){ Left = -15000, Top = -15000, Right = 115000, Bottom = 115000 };

            pathGradientFill1.Append(fillToRectangle1);

            gradientFill3.Append(gradientStopList3);
            gradientFill3.Append(pathGradientFill1);

            A.GradientFill gradientFill4 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList4 = new A.GradientStopList();

            A.GradientStop gradientStop9 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor60 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade6 = new A.Shade(){ Val = 60000 };

            schemeColor60.Append(shade6);

            gradientStop9.Append(schemeColor60);

            A.GradientStop gradientStop10 = new A.GradientStop(){ Position = 33000 };

            A.SchemeColor schemeColor61 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint15 = new A.Tint(){ Val = 86500 };

            schemeColor61.Append(tint15);

            gradientStop10.Append(schemeColor61);

            A.GradientStop gradientStop11 = new A.GradientStop(){ Position = 46750 };

            A.SchemeColor schemeColor62 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint16 = new A.Tint(){ Val = 71000 };
            A.SaturationModulation saturationModulation10 = new A.SaturationModulation(){ Val = 112000 };

            schemeColor62.Append(tint16);
            schemeColor62.Append(saturationModulation10);

            gradientStop11.Append(schemeColor62);

            A.GradientStop gradientStop12 = new A.GradientStop(){ Position = 53000 };

            A.SchemeColor schemeColor63 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint17 = new A.Tint(){ Val = 71000 };
            A.SaturationModulation saturationModulation11 = new A.SaturationModulation(){ Val = 112000 };

            schemeColor63.Append(tint17);
            schemeColor63.Append(saturationModulation11);

            gradientStop12.Append(schemeColor63);

            A.GradientStop gradientStop13 = new A.GradientStop(){ Position = 68000 };

            A.SchemeColor schemeColor64 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint18 = new A.Tint(){ Val = 86000 };

            schemeColor64.Append(tint18);

            gradientStop13.Append(schemeColor64);

            A.GradientStop gradientStop14 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor65 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade7 = new A.Shade(){ Val = 60000 };

            schemeColor65.Append(shade7);

            gradientStop14.Append(schemeColor65);

            gradientStopList4.Append(gradientStop9);
            gradientStopList4.Append(gradientStop10);
            gradientStopList4.Append(gradientStop11);
            gradientStopList4.Append(gradientStop12);
            gradientStopList4.Append(gradientStop13);
            gradientStopList4.Append(gradientStop14);
            A.LinearGradientFill linearGradientFill3 = new A.LinearGradientFill(){ Angle = 8350000, Scaled = true };

            gradientFill4.Append(gradientStopList4);
            gradientFill4.Append(linearGradientFill3);

            fillStyleList1.Append(solidFill39);
            fillStyleList1.Append(gradientFill3);
            fillStyleList1.Append(gradientFill4);

            A.LineStyleList lineStyleList1 = new A.LineStyleList();

            A.Outline outline5 = new A.Outline(){ Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill40 = new A.SolidFill();

            A.SchemeColor schemeColor66 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade8 = new A.Shade(){ Val = 48000 };
            A.SaturationModulation saturationModulation12 = new A.SaturationModulation(){ Val = 110000 };

            schemeColor66.Append(shade8);
            schemeColor66.Append(saturationModulation12);

            solidFill40.Append(schemeColor66);
            A.PresetDash presetDash1 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline5.Append(solidFill40);
            outline5.Append(presetDash1);

            A.Outline outline6 = new A.Outline(){ Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill41 = new A.SolidFill();
            A.SchemeColor schemeColor67 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill41.Append(schemeColor67);
            A.PresetDash presetDash2 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline6.Append(solidFill41);
            outline6.Append(presetDash2);

            A.Outline outline7 = new A.Outline(){ Width = 38100, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill42 = new A.SolidFill();
            A.SchemeColor schemeColor68 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill42.Append(schemeColor68);
            A.PresetDash presetDash3 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline7.Append(solidFill42);
            outline7.Append(presetDash3);

            lineStyleList1.Append(outline5);
            lineStyleList1.Append(outline6);
            lineStyleList1.Append(outline7);

            A.EffectStyleList effectStyleList1 = new A.EffectStyleList();

            A.EffectStyle effectStyle1 = new A.EffectStyle();

            A.EffectList effectList4 = new A.EffectList();

            A.OuterShadow outerShadow4 = new A.OuterShadow(){ BlurRadius = 130000L, Distance = 101600L, Direction = 2700000, Alignment = A.RectangleAlignmentValues.TopLeft, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex14 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha4 = new A.Alpha(){ Val = 35000 };

            rgbColorModelHex14.Append(alpha4);

            outerShadow4.Append(rgbColorModelHex14);

            effectList4.Append(outerShadow4);

            effectStyle1.Append(effectList4);

            A.EffectStyle effectStyle2 = new A.EffectStyle();

            A.EffectList effectList5 = new A.EffectList();

            A.OuterShadow outerShadow5 = new A.OuterShadow(){ BlurRadius = 190500L, Distance = 228600L, Direction = 2700000, VerticalRatio = 90000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex15 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha5 = new A.Alpha(){ Val = 25500 };

            rgbColorModelHex15.Append(alpha5);

            outerShadow5.Append(rgbColorModelHex15);

            effectList5.Append(outerShadow5);

            effectStyle2.Append(effectList5);

            A.EffectStyle effectStyle3 = new A.EffectStyle();

            A.EffectList effectList6 = new A.EffectList();

            A.OuterShadow outerShadow6 = new A.OuterShadow(){ BlurRadius = 190500L, Distance = 228600L, Direction = 2700000, VerticalRatio = 90000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex16 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha6 = new A.Alpha(){ Val = 25500 };

            rgbColorModelHex16.Append(alpha6);

            outerShadow6.Append(rgbColorModelHex16);

            effectList6.Append(outerShadow6);

            A.Scene3DType scene3DType4 = new A.Scene3DType();

            A.Camera camera4 = new A.Camera(){ Preset = A.PresetCameraValues.OrthographicFront, FieldOfView = 0 };
            A.Rotation rotation4 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 0 };

            camera4.Append(rotation4);

            A.LightRig lightRig4 = new A.LightRig(){ Rig = A.LightRigValues.Soft, Direction = A.LightRigDirectionValues.TopLeft };
            A.Rotation rotation5 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 20100000 };

            lightRig4.Append(rotation5);

            scene3DType4.Append(camera4);
            scene3DType4.Append(lightRig4);

            A.Shape3DType shape3DType5 = new A.Shape3DType();
            A.BevelTop bevelTop4 = new A.BevelTop(){ Width = 50800L, Height = 50800L };

            shape3DType5.Append(bevelTop4);

            effectStyle3.Append(effectList6);
            effectStyle3.Append(scene3DType4);
            effectStyle3.Append(shape3DType5);

            effectStyleList1.Append(effectStyle1);
            effectStyleList1.Append(effectStyle2);
            effectStyleList1.Append(effectStyle3);

            A.BackgroundFillStyleList backgroundFillStyleList1 = new A.BackgroundFillStyleList();

            A.SolidFill solidFill43 = new A.SolidFill();
            A.SchemeColor schemeColor69 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill43.Append(schemeColor69);

            A.GradientFill gradientFill5 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList5 = new A.GradientStopList();

            A.GradientStop gradientStop15 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor70 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint19 = new A.Tint(){ Val = 50000 };
            A.SaturationModulation saturationModulation13 = new A.SaturationModulation(){ Val = 180000 };

            schemeColor70.Append(tint19);
            schemeColor70.Append(saturationModulation13);

            gradientStop15.Append(schemeColor70);

            A.GradientStop gradientStop16 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor71 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade9 = new A.Shade(){ Val = 45000 };
            A.SaturationModulation saturationModulation14 = new A.SaturationModulation(){ Val = 120000 };

            schemeColor71.Append(shade9);
            schemeColor71.Append(saturationModulation14);

            gradientStop16.Append(schemeColor71);

            gradientStopList5.Append(gradientStop15);
            gradientStopList5.Append(gradientStop16);

            A.PathGradientFill pathGradientFill2 = new A.PathGradientFill(){ Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle2 = new A.FillToRectangle(){ Right = 100000, Bottom = 100000 };

            pathGradientFill2.Append(fillToRectangle2);

            gradientFill5.Append(gradientStopList5);
            gradientFill5.Append(pathGradientFill2);

            A.BlipFill blipFill1 = new A.BlipFill();

            A.Blip blip1 = new A.Blip(){ Embed = "rId1" };
            blip1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            A.Duotone duotone1 = new A.Duotone();

            A.SchemeColor schemeColor72 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade10 = new A.Shade(){ Val = 3000 };
            A.SaturationModulation saturationModulation15 = new A.SaturationModulation(){ Val = 110000 };

            schemeColor72.Append(shade10);
            schemeColor72.Append(saturationModulation15);

            A.SchemeColor schemeColor73 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint20 = new A.Tint(){ Val = 60000 };
            A.SaturationModulation saturationModulation16 = new A.SaturationModulation(){ Val = 425000 };

            schemeColor73.Append(tint20);
            schemeColor73.Append(saturationModulation16);

            duotone1.Append(schemeColor72);
            duotone1.Append(schemeColor73);

            blip1.Append(duotone1);

            A.Stretch stretch1 = new A.Stretch();
            A.FillRectangle fillRectangle1 = new A.FillRectangle();

            stretch1.Append(fillRectangle1);

            blipFill1.Append(blip1);
            blipFill1.Append(stretch1);

            backgroundFillStyleList1.Append(solidFill43);
            backgroundFillStyleList1.Append(gradientFill5);
            backgroundFillStyleList1.Append(blipFill1);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme1);
            themeElements1.Append(formatScheme1);
            A.ObjectDefaults objectDefaults1 = new A.ObjectDefaults();
            A.ExtraColorSchemeList extraColorSchemeList1 = new A.ExtraColorSchemeList();

            theme1.Append(themeElements1);
            theme1.Append(objectDefaults1);
            theme1.Append(extraColorSchemeList1);

            themePart1.Theme = theme1;
        }
Пример #8
0
        private static void GeneratePartContent(ThemePart themePart1)
        {
            A.Theme theme1 = new A.Theme()
            {
                Name = "Office テーマ"
            };
            theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.ThemeElements themeElements1 = new A.ThemeElements();

            A.ColorScheme colorScheme1 = new A.ColorScheme()
            {
                Name = "Office テーマ"
            };

            A.Dark1Color  dark1Color1  = new A.Dark1Color();
            A.SystemColor systemColor1 = new A.SystemColor()
            {
                Val = A.SystemColorValues.WindowText, LastColor = "000000"
            };

            dark1Color1.Append(systemColor1);

            A.Light1Color light1Color1 = new A.Light1Color();
            A.SystemColor systemColor2 = new A.SystemColor()
            {
                Val = A.SystemColorValues.Window, LastColor = "FFFFFF"
            };

            light1Color1.Append(systemColor2);

            A.Dark2Color       dark2Color1       = new A.Dark2Color();
            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex()
            {
                Val = "44546A"
            };

            dark2Color1.Append(rgbColorModelHex1);

            A.Light2Color      light2Color1      = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex()
            {
                Val = "E7E6E6"
            };

            light2Color1.Append(rgbColorModelHex2);

            A.Accent1Color     accent1Color1     = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex()
            {
                Val = "4472C4"
            };

            accent1Color1.Append(rgbColorModelHex3);

            A.Accent2Color     accent2Color1     = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex()
            {
                Val = "ED7D31"
            };

            accent2Color1.Append(rgbColorModelHex4);

            A.Accent3Color     accent3Color1     = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex()
            {
                Val = "A5A5A5"
            };

            accent3Color1.Append(rgbColorModelHex5);

            A.Accent4Color     accent4Color1     = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex()
            {
                Val = "FFC000"
            };

            accent4Color1.Append(rgbColorModelHex6);

            A.Accent5Color     accent5Color1     = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex()
            {
                Val = "5B9BD5"
            };

            accent5Color1.Append(rgbColorModelHex7);

            A.Accent6Color     accent6Color1     = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex()
            {
                Val = "70AD47"
            };

            accent6Color1.Append(rgbColorModelHex8);

            A.Hyperlink        hyperlink1        = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex()
            {
                Val = "0563C1"
            };

            hyperlink1.Append(rgbColorModelHex9);

            A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex       rgbColorModelHex10      = new A.RgbColorModelHex()
            {
                Val = "954F72"
            };

            followedHyperlinkColor1.Append(rgbColorModelHex10);

            colorScheme1.Append(dark1Color1);
            colorScheme1.Append(light1Color1);
            colorScheme1.Append(dark2Color1);
            colorScheme1.Append(light2Color1);
            colorScheme1.Append(accent1Color1);
            colorScheme1.Append(accent2Color1);
            colorScheme1.Append(accent3Color1);
            colorScheme1.Append(accent4Color1);
            colorScheme1.Append(accent5Color1);
            colorScheme1.Append(accent6Color1);
            colorScheme1.Append(hyperlink1);
            colorScheme1.Append(followedHyperlinkColor1);

            A.FontScheme fontScheme1 = new A.FontScheme()
            {
                Name = "Office テーマ"
            };

            A.MajorFont majorFont1  = new A.MajorFont();
            A.LatinFont latinFont20 = new A.LatinFont()
            {
                Typeface = "Calibri Light", Panose = "020F0302020204030204"
            };
            A.EastAsianFont eastAsianFont20 = new A.EastAsianFont()
            {
                Typeface = ""
            };
            A.ComplexScriptFont complexScriptFont20 = new A.ComplexScriptFont()
            {
                Typeface = ""
            };
            A.SupplementalFont supplementalFont1 = new A.SupplementalFont()
            {
                Script = "Jpan", Typeface = "游ゴシック Light"
            };
            A.SupplementalFont supplementalFont2 = new A.SupplementalFont()
            {
                Script = "Hang", Typeface = "맑은 고딕"
            };
            A.SupplementalFont supplementalFont3 = new A.SupplementalFont()
            {
                Script = "Hans", Typeface = "等线 Light"
            };
            A.SupplementalFont supplementalFont4 = new A.SupplementalFont()
            {
                Script = "Hant", Typeface = "新細明體"
            };
            A.SupplementalFont supplementalFont5 = new A.SupplementalFont()
            {
                Script = "Arab", Typeface = "Times New Roman"
            };
            A.SupplementalFont supplementalFont6 = new A.SupplementalFont()
            {
                Script = "Hebr", Typeface = "Times New Roman"
            };
            A.SupplementalFont supplementalFont7 = new A.SupplementalFont()
            {
                Script = "Thai", Typeface = "Angsana New"
            };
            A.SupplementalFont supplementalFont8 = new A.SupplementalFont()
            {
                Script = "Ethi", Typeface = "Nyala"
            };
            A.SupplementalFont supplementalFont9 = new A.SupplementalFont()
            {
                Script = "Beng", Typeface = "Vrinda"
            };
            A.SupplementalFont supplementalFont10 = new A.SupplementalFont()
            {
                Script = "Gujr", Typeface = "Shruti"
            };
            A.SupplementalFont supplementalFont11 = new A.SupplementalFont()
            {
                Script = "Khmr", Typeface = "MoolBoran"
            };
            A.SupplementalFont supplementalFont12 = new A.SupplementalFont()
            {
                Script = "Knda", Typeface = "Tunga"
            };
            A.SupplementalFont supplementalFont13 = new A.SupplementalFont()
            {
                Script = "Guru", Typeface = "Raavi"
            };
            A.SupplementalFont supplementalFont14 = new A.SupplementalFont()
            {
                Script = "Cans", Typeface = "Euphemia"
            };
            A.SupplementalFont supplementalFont15 = new A.SupplementalFont()
            {
                Script = "Cher", Typeface = "Plantagenet Cherokee"
            };
            A.SupplementalFont supplementalFont16 = new A.SupplementalFont()
            {
                Script = "Yiii", Typeface = "Microsoft Yi Baiti"
            };
            A.SupplementalFont supplementalFont17 = new A.SupplementalFont()
            {
                Script = "Tibt", Typeface = "Microsoft Himalaya"
            };
            A.SupplementalFont supplementalFont18 = new A.SupplementalFont()
            {
                Script = "Thaa", Typeface = "MV Boli"
            };
            A.SupplementalFont supplementalFont19 = new A.SupplementalFont()
            {
                Script = "Deva", Typeface = "Mangal"
            };
            A.SupplementalFont supplementalFont20 = new A.SupplementalFont()
            {
                Script = "Telu", Typeface = "Gautami"
            };
            A.SupplementalFont supplementalFont21 = new A.SupplementalFont()
            {
                Script = "Taml", Typeface = "Latha"
            };
            A.SupplementalFont supplementalFont22 = new A.SupplementalFont()
            {
                Script = "Syrc", Typeface = "Estrangelo Edessa"
            };
            A.SupplementalFont supplementalFont23 = new A.SupplementalFont()
            {
                Script = "Orya", Typeface = "Kalinga"
            };
            A.SupplementalFont supplementalFont24 = new A.SupplementalFont()
            {
                Script = "Mlym", Typeface = "Kartika"
            };
            A.SupplementalFont supplementalFont25 = new A.SupplementalFont()
            {
                Script = "Laoo", Typeface = "DokChampa"
            };
            A.SupplementalFont supplementalFont26 = new A.SupplementalFont()
            {
                Script = "Sinh", Typeface = "Iskoola Pota"
            };
            A.SupplementalFont supplementalFont27 = new A.SupplementalFont()
            {
                Script = "Mong", Typeface = "Mongolian Baiti"
            };
            A.SupplementalFont supplementalFont28 = new A.SupplementalFont()
            {
                Script = "Viet", Typeface = "Times New Roman"
            };
            A.SupplementalFont supplementalFont29 = new A.SupplementalFont()
            {
                Script = "Uigh", Typeface = "Microsoft Uighur"
            };
            A.SupplementalFont supplementalFont30 = new A.SupplementalFont()
            {
                Script = "Geor", Typeface = "Sylfaen"
            };

            majorFont1.Append(latinFont20);
            majorFont1.Append(eastAsianFont20);
            majorFont1.Append(complexScriptFont20);
            majorFont1.Append(supplementalFont1);
            majorFont1.Append(supplementalFont2);
            majorFont1.Append(supplementalFont3);
            majorFont1.Append(supplementalFont4);
            majorFont1.Append(supplementalFont5);
            majorFont1.Append(supplementalFont6);
            majorFont1.Append(supplementalFont7);
            majorFont1.Append(supplementalFont8);
            majorFont1.Append(supplementalFont9);
            majorFont1.Append(supplementalFont10);
            majorFont1.Append(supplementalFont11);
            majorFont1.Append(supplementalFont12);
            majorFont1.Append(supplementalFont13);
            majorFont1.Append(supplementalFont14);
            majorFont1.Append(supplementalFont15);
            majorFont1.Append(supplementalFont16);
            majorFont1.Append(supplementalFont17);
            majorFont1.Append(supplementalFont18);
            majorFont1.Append(supplementalFont19);
            majorFont1.Append(supplementalFont20);
            majorFont1.Append(supplementalFont21);
            majorFont1.Append(supplementalFont22);
            majorFont1.Append(supplementalFont23);
            majorFont1.Append(supplementalFont24);
            majorFont1.Append(supplementalFont25);
            majorFont1.Append(supplementalFont26);
            majorFont1.Append(supplementalFont27);
            majorFont1.Append(supplementalFont28);
            majorFont1.Append(supplementalFont29);
            majorFont1.Append(supplementalFont30);

            A.MinorFont minorFont1  = new A.MinorFont();
            A.LatinFont latinFont21 = new A.LatinFont()
            {
                Typeface = "Calibri", Panose = "020F0502020204030204"
            };
            A.EastAsianFont eastAsianFont21 = new A.EastAsianFont()
            {
                Typeface = ""
            };
            A.ComplexScriptFont complexScriptFont21 = new A.ComplexScriptFont()
            {
                Typeface = ""
            };
            A.SupplementalFont supplementalFont31 = new A.SupplementalFont()
            {
                Script = "Jpan", Typeface = "游ゴシック"
            };
            A.SupplementalFont supplementalFont32 = new A.SupplementalFont()
            {
                Script = "Hang", Typeface = "맑은 고딕"
            };
            A.SupplementalFont supplementalFont33 = new A.SupplementalFont()
            {
                Script = "Hans", Typeface = "等线"
            };
            A.SupplementalFont supplementalFont34 = new A.SupplementalFont()
            {
                Script = "Hant", Typeface = "新細明體"
            };
            A.SupplementalFont supplementalFont35 = new A.SupplementalFont()
            {
                Script = "Arab", Typeface = "Arial"
            };
            A.SupplementalFont supplementalFont36 = new A.SupplementalFont()
            {
                Script = "Hebr", Typeface = "Arial"
            };
            A.SupplementalFont supplementalFont37 = new A.SupplementalFont()
            {
                Script = "Thai", Typeface = "Cordia New"
            };
            A.SupplementalFont supplementalFont38 = new A.SupplementalFont()
            {
                Script = "Ethi", Typeface = "Nyala"
            };
            A.SupplementalFont supplementalFont39 = new A.SupplementalFont()
            {
                Script = "Beng", Typeface = "Vrinda"
            };
            A.SupplementalFont supplementalFont40 = new A.SupplementalFont()
            {
                Script = "Gujr", Typeface = "Shruti"
            };
            A.SupplementalFont supplementalFont41 = new A.SupplementalFont()
            {
                Script = "Khmr", Typeface = "DaunPenh"
            };
            A.SupplementalFont supplementalFont42 = new A.SupplementalFont()
            {
                Script = "Knda", Typeface = "Tunga"
            };
            A.SupplementalFont supplementalFont43 = new A.SupplementalFont()
            {
                Script = "Guru", Typeface = "Raavi"
            };
            A.SupplementalFont supplementalFont44 = new A.SupplementalFont()
            {
                Script = "Cans", Typeface = "Euphemia"
            };
            A.SupplementalFont supplementalFont45 = new A.SupplementalFont()
            {
                Script = "Cher", Typeface = "Plantagenet Cherokee"
            };
            A.SupplementalFont supplementalFont46 = new A.SupplementalFont()
            {
                Script = "Yiii", Typeface = "Microsoft Yi Baiti"
            };
            A.SupplementalFont supplementalFont47 = new A.SupplementalFont()
            {
                Script = "Tibt", Typeface = "Microsoft Himalaya"
            };
            A.SupplementalFont supplementalFont48 = new A.SupplementalFont()
            {
                Script = "Thaa", Typeface = "MV Boli"
            };
            A.SupplementalFont supplementalFont49 = new A.SupplementalFont()
            {
                Script = "Deva", Typeface = "Mangal"
            };
            A.SupplementalFont supplementalFont50 = new A.SupplementalFont()
            {
                Script = "Telu", Typeface = "Gautami"
            };
            A.SupplementalFont supplementalFont51 = new A.SupplementalFont()
            {
                Script = "Taml", Typeface = "Latha"
            };
            A.SupplementalFont supplementalFont52 = new A.SupplementalFont()
            {
                Script = "Syrc", Typeface = "Estrangelo Edessa"
            };
            A.SupplementalFont supplementalFont53 = new A.SupplementalFont()
            {
                Script = "Orya", Typeface = "Kalinga"
            };
            A.SupplementalFont supplementalFont54 = new A.SupplementalFont()
            {
                Script = "Mlym", Typeface = "Kartika"
            };
            A.SupplementalFont supplementalFont55 = new A.SupplementalFont()
            {
                Script = "Laoo", Typeface = "DokChampa"
            };
            A.SupplementalFont supplementalFont56 = new A.SupplementalFont()
            {
                Script = "Sinh", Typeface = "Iskoola Pota"
            };
            A.SupplementalFont supplementalFont57 = new A.SupplementalFont()
            {
                Script = "Mong", Typeface = "Mongolian Baiti"
            };
            A.SupplementalFont supplementalFont58 = new A.SupplementalFont()
            {
                Script = "Viet", Typeface = "Arial"
            };
            A.SupplementalFont supplementalFont59 = new A.SupplementalFont()
            {
                Script = "Uigh", Typeface = "Microsoft Uighur"
            };
            A.SupplementalFont supplementalFont60 = new A.SupplementalFont()
            {
                Script = "Geor", Typeface = "Sylfaen"
            };

            minorFont1.Append(latinFont21);
            minorFont1.Append(eastAsianFont21);
            minorFont1.Append(complexScriptFont21);
            minorFont1.Append(supplementalFont31);
            minorFont1.Append(supplementalFont32);
            minorFont1.Append(supplementalFont33);
            minorFont1.Append(supplementalFont34);
            minorFont1.Append(supplementalFont35);
            minorFont1.Append(supplementalFont36);
            minorFont1.Append(supplementalFont37);
            minorFont1.Append(supplementalFont38);
            minorFont1.Append(supplementalFont39);
            minorFont1.Append(supplementalFont40);
            minorFont1.Append(supplementalFont41);
            minorFont1.Append(supplementalFont42);
            minorFont1.Append(supplementalFont43);
            minorFont1.Append(supplementalFont44);
            minorFont1.Append(supplementalFont45);
            minorFont1.Append(supplementalFont46);
            minorFont1.Append(supplementalFont47);
            minorFont1.Append(supplementalFont48);
            minorFont1.Append(supplementalFont49);
            minorFont1.Append(supplementalFont50);
            minorFont1.Append(supplementalFont51);
            minorFont1.Append(supplementalFont52);
            minorFont1.Append(supplementalFont53);
            minorFont1.Append(supplementalFont54);
            minorFont1.Append(supplementalFont55);
            minorFont1.Append(supplementalFont56);
            minorFont1.Append(supplementalFont57);
            minorFont1.Append(supplementalFont58);
            minorFont1.Append(supplementalFont59);
            minorFont1.Append(supplementalFont60);

            fontScheme1.Append(majorFont1);
            fontScheme1.Append(minorFont1);

            A.FormatScheme formatScheme1 = new A.FormatScheme()
            {
                Name = "Office テーマ"
            };

            A.FillStyleList fillStyleList1 = new A.FillStyleList();

            A.SolidFill   solidFill32   = new A.SolidFill();
            A.SchemeColor schemeColor33 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill32.Append(schemeColor33);

            A.GradientFill gradientFill1 = new A.GradientFill()
            {
                RotateWithShape = true
            };

            A.GradientStopList gradientStopList1 = new A.GradientStopList();

            A.GradientStop gradientStop1 = new A.GradientStop()
            {
                Position = 0
            };

            A.SchemeColor schemeColor34 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.LuminanceModulation luminanceModulation1 = new A.LuminanceModulation()
            {
                Val = 110000
            };
            A.SaturationModulation saturationModulation1 = new A.SaturationModulation()
            {
                Val = 105000
            };
            A.Tint tint12 = new A.Tint()
            {
                Val = 67000
            };

            schemeColor34.Append(luminanceModulation1);
            schemeColor34.Append(saturationModulation1);
            schemeColor34.Append(tint12);

            gradientStop1.Append(schemeColor34);

            A.GradientStop gradientStop2 = new A.GradientStop()
            {
                Position = 50000
            };

            A.SchemeColor schemeColor35 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.LuminanceModulation luminanceModulation2 = new A.LuminanceModulation()
            {
                Val = 105000
            };
            A.SaturationModulation saturationModulation2 = new A.SaturationModulation()
            {
                Val = 103000
            };
            A.Tint tint13 = new A.Tint()
            {
                Val = 73000
            };

            schemeColor35.Append(luminanceModulation2);
            schemeColor35.Append(saturationModulation2);
            schemeColor35.Append(tint13);

            gradientStop2.Append(schemeColor35);

            A.GradientStop gradientStop3 = new A.GradientStop()
            {
                Position = 100000
            };

            A.SchemeColor schemeColor36 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.LuminanceModulation luminanceModulation3 = new A.LuminanceModulation()
            {
                Val = 105000
            };
            A.SaturationModulation saturationModulation3 = new A.SaturationModulation()
            {
                Val = 109000
            };
            A.Tint tint14 = new A.Tint()
            {
                Val = 81000
            };

            schemeColor36.Append(luminanceModulation3);
            schemeColor36.Append(saturationModulation3);
            schemeColor36.Append(tint14);

            gradientStop3.Append(schemeColor36);

            gradientStopList1.Append(gradientStop1);
            gradientStopList1.Append(gradientStop2);
            gradientStopList1.Append(gradientStop3);
            A.LinearGradientFill linearGradientFill1 = new A.LinearGradientFill()
            {
                Angle = 5400000, Scaled = false
            };

            gradientFill1.Append(gradientStopList1);
            gradientFill1.Append(linearGradientFill1);

            A.GradientFill gradientFill2 = new A.GradientFill()
            {
                RotateWithShape = true
            };

            A.GradientStopList gradientStopList2 = new A.GradientStopList();

            A.GradientStop gradientStop4 = new A.GradientStop()
            {
                Position = 0
            };

            A.SchemeColor schemeColor37 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.SaturationModulation saturationModulation4 = new A.SaturationModulation()
            {
                Val = 103000
            };
            A.LuminanceModulation luminanceModulation4 = new A.LuminanceModulation()
            {
                Val = 102000
            };
            A.Tint tint15 = new A.Tint()
            {
                Val = 94000
            };

            schemeColor37.Append(saturationModulation4);
            schemeColor37.Append(luminanceModulation4);
            schemeColor37.Append(tint15);

            gradientStop4.Append(schemeColor37);

            A.GradientStop gradientStop5 = new A.GradientStop()
            {
                Position = 50000
            };

            A.SchemeColor schemeColor38 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.SaturationModulation saturationModulation5 = new A.SaturationModulation()
            {
                Val = 110000
            };
            A.LuminanceModulation luminanceModulation5 = new A.LuminanceModulation()
            {
                Val = 100000
            };
            A.Shade shade1 = new A.Shade()
            {
                Val = 100000
            };

            schemeColor38.Append(saturationModulation5);
            schemeColor38.Append(luminanceModulation5);
            schemeColor38.Append(shade1);

            gradientStop5.Append(schemeColor38);

            A.GradientStop gradientStop6 = new A.GradientStop()
            {
                Position = 100000
            };

            A.SchemeColor schemeColor39 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.LuminanceModulation luminanceModulation6 = new A.LuminanceModulation()
            {
                Val = 99000
            };
            A.SaturationModulation saturationModulation6 = new A.SaturationModulation()
            {
                Val = 120000
            };
            A.Shade shade2 = new A.Shade()
            {
                Val = 78000
            };

            schemeColor39.Append(luminanceModulation6);
            schemeColor39.Append(saturationModulation6);
            schemeColor39.Append(shade2);

            gradientStop6.Append(schemeColor39);

            gradientStopList2.Append(gradientStop4);
            gradientStopList2.Append(gradientStop5);
            gradientStopList2.Append(gradientStop6);
            A.LinearGradientFill linearGradientFill2 = new A.LinearGradientFill()
            {
                Angle = 5400000, Scaled = false
            };

            gradientFill2.Append(gradientStopList2);
            gradientFill2.Append(linearGradientFill2);

            fillStyleList1.Append(solidFill32);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            A.LineStyleList lineStyleList1 = new A.LineStyleList();

            A.Outline outline1 = new A.Outline()
            {
                Width = 6350, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center
            };

            A.SolidFill   solidFill33   = new A.SolidFill();
            A.SchemeColor schemeColor40 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill33.Append(schemeColor40);
            A.PresetDash presetDash1 = new A.PresetDash()
            {
                Val = A.PresetLineDashValues.Solid
            };
            A.Miter miter1 = new A.Miter()
            {
                Limit = 800000
            };

            outline1.Append(solidFill33);
            outline1.Append(presetDash1);
            outline1.Append(miter1);

            A.Outline outline2 = new A.Outline()
            {
                Width = 12700, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center
            };

            A.SolidFill   solidFill34   = new A.SolidFill();
            A.SchemeColor schemeColor41 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill34.Append(schemeColor41);
            A.PresetDash presetDash2 = new A.PresetDash()
            {
                Val = A.PresetLineDashValues.Solid
            };
            A.Miter miter2 = new A.Miter()
            {
                Limit = 800000
            };

            outline2.Append(solidFill34);
            outline2.Append(presetDash2);
            outline2.Append(miter2);

            A.Outline outline3 = new A.Outline()
            {
                Width = 19050, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center
            };

            A.SolidFill   solidFill35   = new A.SolidFill();
            A.SchemeColor schemeColor42 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill35.Append(schemeColor42);
            A.PresetDash presetDash3 = new A.PresetDash()
            {
                Val = A.PresetLineDashValues.Solid
            };
            A.Miter miter3 = new A.Miter()
            {
                Limit = 800000
            };

            outline3.Append(solidFill35);
            outline3.Append(presetDash3);
            outline3.Append(miter3);

            lineStyleList1.Append(outline1);
            lineStyleList1.Append(outline2);
            lineStyleList1.Append(outline3);

            A.EffectStyleList effectStyleList1 = new A.EffectStyleList();

            A.EffectStyle effectStyle1 = new A.EffectStyle();
            A.EffectList  effectList1  = new A.EffectList();

            effectStyle1.Append(effectList1);

            A.EffectStyle effectStyle2 = new A.EffectStyle();
            A.EffectList  effectList2  = new A.EffectList();

            effectStyle2.Append(effectList2);

            A.EffectStyle effectStyle3 = new A.EffectStyle();

            A.EffectList effectList3 = new A.EffectList();

            A.OuterShadow outerShadow1 = new A.OuterShadow()
            {
                BlurRadius = 57150L, Distance = 19050L, Direction = 5400000, Alignment = A.RectangleAlignmentValues.Center, RotateWithShape = false
            };

            A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex()
            {
                Val = "000000"
            };
            A.Alpha alpha1 = new A.Alpha()
            {
                Val = 63000
            };

            rgbColorModelHex11.Append(alpha1);

            outerShadow1.Append(rgbColorModelHex11);

            effectList3.Append(outerShadow1);

            effectStyle3.Append(effectList3);

            effectStyleList1.Append(effectStyle1);
            effectStyleList1.Append(effectStyle2);
            effectStyleList1.Append(effectStyle3);

            A.BackgroundFillStyleList backgroundFillStyleList1 = new A.BackgroundFillStyleList();

            A.SolidFill   solidFill36   = new A.SolidFill();
            A.SchemeColor schemeColor43 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };

            solidFill36.Append(schemeColor43);

            A.SolidFill solidFill37 = new A.SolidFill();

            A.SchemeColor schemeColor44 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.Tint tint16 = new A.Tint()
            {
                Val = 95000
            };
            A.SaturationModulation saturationModulation7 = new A.SaturationModulation()
            {
                Val = 170000
            };

            schemeColor44.Append(tint16);
            schemeColor44.Append(saturationModulation7);

            solidFill37.Append(schemeColor44);

            A.GradientFill gradientFill3 = new A.GradientFill()
            {
                RotateWithShape = true
            };

            A.GradientStopList gradientStopList3 = new A.GradientStopList();

            A.GradientStop gradientStop7 = new A.GradientStop()
            {
                Position = 0
            };

            A.SchemeColor schemeColor45 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.Tint tint17 = new A.Tint()
            {
                Val = 93000
            };
            A.SaturationModulation saturationModulation8 = new A.SaturationModulation()
            {
                Val = 150000
            };
            A.Shade shade3 = new A.Shade()
            {
                Val = 98000
            };
            A.LuminanceModulation luminanceModulation7 = new A.LuminanceModulation()
            {
                Val = 102000
            };

            schemeColor45.Append(tint17);
            schemeColor45.Append(saturationModulation8);
            schemeColor45.Append(shade3);
            schemeColor45.Append(luminanceModulation7);

            gradientStop7.Append(schemeColor45);

            A.GradientStop gradientStop8 = new A.GradientStop()
            {
                Position = 50000
            };

            A.SchemeColor schemeColor46 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.Tint tint18 = new A.Tint()
            {
                Val = 98000
            };
            A.SaturationModulation saturationModulation9 = new A.SaturationModulation()
            {
                Val = 130000
            };
            A.Shade shade4 = new A.Shade()
            {
                Val = 90000
            };
            A.LuminanceModulation luminanceModulation8 = new A.LuminanceModulation()
            {
                Val = 103000
            };

            schemeColor46.Append(tint18);
            schemeColor46.Append(saturationModulation9);
            schemeColor46.Append(shade4);
            schemeColor46.Append(luminanceModulation8);

            gradientStop8.Append(schemeColor46);

            A.GradientStop gradientStop9 = new A.GradientStop()
            {
                Position = 100000
            };

            A.SchemeColor schemeColor47 = new A.SchemeColor()
            {
                Val = A.SchemeColorValues.PhColor
            };
            A.Shade shade5 = new A.Shade()
            {
                Val = 63000
            };
            A.SaturationModulation saturationModulation10 = new A.SaturationModulation()
            {
                Val = 120000
            };

            schemeColor47.Append(shade5);
            schemeColor47.Append(saturationModulation10);

            gradientStop9.Append(schemeColor47);

            gradientStopList3.Append(gradientStop7);
            gradientStopList3.Append(gradientStop8);
            gradientStopList3.Append(gradientStop9);
            A.LinearGradientFill linearGradientFill3 = new A.LinearGradientFill()
            {
                Angle = 5400000, Scaled = false
            };

            gradientFill3.Append(gradientStopList3);
            gradientFill3.Append(linearGradientFill3);

            backgroundFillStyleList1.Append(solidFill36);
            backgroundFillStyleList1.Append(solidFill37);
            backgroundFillStyleList1.Append(gradientFill3);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme1);
            themeElements1.Append(formatScheme1);
            A.ObjectDefaults       objectDefaults1       = new A.ObjectDefaults();
            A.ExtraColorSchemeList extraColorSchemeList1 = new A.ExtraColorSchemeList();

            A.OfficeStyleSheetExtensionList officeStyleSheetExtensionList1 = new A.OfficeStyleSheetExtensionList();

            A.OfficeStyleSheetExtension officeStyleSheetExtension1 = new A.OfficeStyleSheetExtension()
            {
                Uri = "{05A4C25C-085E-4340-85A3-A5531E510DB2}"
            };

            Thm15.ThemeFamily themeFamily1 = new Thm15.ThemeFamily()
            {
                Name = "Office Theme", Id = "{62F939B6-93AF-4DB8-9C6B-D6C7DFDC589F}", Vid = "{4A3C46E8-61CC-4603-A589-7422A47A8E4A}"
            };
            themeFamily1.AddNamespaceDeclaration("thm15", "http://schemas.microsoft.com/office/thememl/2012/main");

            officeStyleSheetExtension1.Append(themeFamily1);

            officeStyleSheetExtensionList1.Append(officeStyleSheetExtension1);

            theme1.Append(themeElements1);
            theme1.Append(objectDefaults1);
            theme1.Append(extraColorSchemeList1);
            theme1.Append(officeStyleSheetExtensionList1);

            themePart1.Theme = theme1;
        }
Пример #9
0
        private void generateThemePartContent(ThemePart themePart)
        {
            var theme1 = new Theme { Name = "Тема Office" };
            theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            var themeElements1 = new ThemeElements();

            var colorScheme1 = new ColorScheme { Name = "Стандартная" };

            var dark1Color1 = new Dark1Color();
            var systemColor1 = new SystemColor { Val = SystemColorValues.WindowText, LastColor = "000000" };

            dark1Color1.Append(systemColor1);

            var light1Color1 = new Light1Color();
            var systemColor2 = new SystemColor { Val = SystemColorValues.Window, LastColor = "FFFFFF" };

            light1Color1.Append(systemColor2);

            var dark2Color1 = new Dark2Color();
            var rgbColorModelHex1 = new RgbColorModelHex { Val = "1F497D" };

            dark2Color1.Append(rgbColorModelHex1);

            var light2Color1 = new Light2Color();
            var rgbColorModelHex2 = new RgbColorModelHex { Val = "EEECE1" };

            light2Color1.Append(rgbColorModelHex2);

            var accent1Color1 = new Accent1Color();
            var rgbColorModelHex3 = new RgbColorModelHex { Val = "4F81BD" };

            accent1Color1.Append(rgbColorModelHex3);

            var accent2Color1 = new Accent2Color();
            var rgbColorModelHex4 = new RgbColorModelHex { Val = "C0504D" };

            accent2Color1.Append(rgbColorModelHex4);

            var accent3Color1 = new Accent3Color();
            var rgbColorModelHex5 = new RgbColorModelHex { Val = "9BBB59" };

            accent3Color1.Append(rgbColorModelHex5);

            var accent4Color1 = new Accent4Color();
            var rgbColorModelHex6 = new RgbColorModelHex { Val = "8064A2" };

            accent4Color1.Append(rgbColorModelHex6);

            var accent5Color1 = new Accent5Color();
            var rgbColorModelHex7 = new RgbColorModelHex { Val = "4BACC6" };

            accent5Color1.Append(rgbColorModelHex7);

            var accent6Color1 = new Accent6Color();
            var rgbColorModelHex8 = new RgbColorModelHex { Val = "F79646" };

            accent6Color1.Append(rgbColorModelHex8);

            var hyperlink1 = new DocumentFormat.OpenXml.Drawing.Hyperlink();
            var rgbColorModelHex9 = new RgbColorModelHex { Val = "0000FF" };

            hyperlink1.Append(rgbColorModelHex9);

            var followedHyperlinkColor1 = new FollowedHyperlinkColor();
            var rgbColorModelHex10 = new RgbColorModelHex { Val = "800080" };

            followedHyperlinkColor1.Append(rgbColorModelHex10);

            colorScheme1.Append(dark1Color1);
            colorScheme1.Append(light1Color1);
            colorScheme1.Append(dark2Color1);
            colorScheme1.Append(light2Color1);
            colorScheme1.Append(accent1Color1);
            colorScheme1.Append(accent2Color1);
            colorScheme1.Append(accent3Color1);
            colorScheme1.Append(accent4Color1);
            colorScheme1.Append(accent5Color1);
            colorScheme1.Append(accent6Color1);
            colorScheme1.Append(hyperlink1);
            colorScheme1.Append(followedHyperlinkColor1);

            var fontScheme2 = new DocumentFormat.OpenXml.Drawing.FontScheme { Name = "Стандартная" };

            var majorFont1 = new MajorFont();
            var latinFont1 = new LatinFont { Typeface = "Cambria" };
            var eastAsianFont1 = new EastAsianFont { Typeface = "" };
            var complexScriptFont1 = new ComplexScriptFont { Typeface = "" };
            var supplementalFont1 = new SupplementalFont { Script = "Jpan", Typeface = "MS Pゴシック" };
            var supplementalFont2 = new SupplementalFont { Script = "Hang", Typeface = "맑은 고딕" };
            var supplementalFont3 = new SupplementalFont { Script = "Hans", Typeface = "宋体" };
            var supplementalFont4 = new SupplementalFont { Script = "Hant", Typeface = "新細明體" };
            var supplementalFont5 = new SupplementalFont { Script = "Arab", Typeface = "Times New Roman" };
            var supplementalFont6 = new SupplementalFont { Script = "Hebr", Typeface = "Times New Roman" };
            var supplementalFont7 = new SupplementalFont { Script = "Thai", Typeface = "Tahoma" };
            var supplementalFont8 = new SupplementalFont { Script = "Ethi", Typeface = "Nyala" };
            var supplementalFont9 = new SupplementalFont { Script = "Beng", Typeface = "Vrinda" };
            var supplementalFont10 = new SupplementalFont { Script = "Gujr", Typeface = "Shruti" };
            var supplementalFont11 = new SupplementalFont { Script = "Khmr", Typeface = "MoolBoran" };
            var supplementalFont12 = new SupplementalFont { Script = "Knda", Typeface = "Tunga" };
            var supplementalFont13 = new SupplementalFont { Script = "Guru", Typeface = "Raavi" };
            var supplementalFont14 = new SupplementalFont { Script = "Cans", Typeface = "Euphemia" };
            var supplementalFont15 = new SupplementalFont { Script = "Cher", Typeface = "Plantagenet Cherokee" };
            var supplementalFont16 = new SupplementalFont { Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            var supplementalFont17 = new SupplementalFont { Script = "Tibt", Typeface = "Microsoft Himalaya" };
            var supplementalFont18 = new SupplementalFont { Script = "Thaa", Typeface = "MV Boli" };
            var supplementalFont19 = new SupplementalFont { Script = "Deva", Typeface = "Mangal" };
            var supplementalFont20 = new SupplementalFont { Script = "Telu", Typeface = "Gautami" };
            var supplementalFont21 = new SupplementalFont { Script = "Taml", Typeface = "Latha" };
            var supplementalFont22 = new SupplementalFont { Script = "Syrc", Typeface = "Estrangelo Edessa" };
            var supplementalFont23 = new SupplementalFont { Script = "Orya", Typeface = "Kalinga" };
            var supplementalFont24 = new SupplementalFont { Script = "Mlym", Typeface = "Kartika" };
            var supplementalFont25 = new SupplementalFont { Script = "Laoo", Typeface = "DokChampa" };
            var supplementalFont26 = new SupplementalFont { Script = "Sinh", Typeface = "Iskoola Pota" };
            var supplementalFont27 = new SupplementalFont { Script = "Mong", Typeface = "Mongolian Baiti" };
            var supplementalFont28 = new SupplementalFont { Script = "Viet", Typeface = "Times New Roman" };
            var supplementalFont29 = new SupplementalFont { Script = "Uigh", Typeface = "Microsoft Uighur" };
            var supplementalFont30 = new SupplementalFont { Script = "Geor", Typeface = "Sylfaen" };

            majorFont1.Append(latinFont1);
            majorFont1.Append(eastAsianFont1);
            majorFont1.Append(complexScriptFont1);
            majorFont1.Append(supplementalFont1);
            majorFont1.Append(supplementalFont2);
            majorFont1.Append(supplementalFont3);
            majorFont1.Append(supplementalFont4);
            majorFont1.Append(supplementalFont5);
            majorFont1.Append(supplementalFont6);
            majorFont1.Append(supplementalFont7);
            majorFont1.Append(supplementalFont8);
            majorFont1.Append(supplementalFont9);
            majorFont1.Append(supplementalFont10);
            majorFont1.Append(supplementalFont11);
            majorFont1.Append(supplementalFont12);
            majorFont1.Append(supplementalFont13);
            majorFont1.Append(supplementalFont14);
            majorFont1.Append(supplementalFont15);
            majorFont1.Append(supplementalFont16);
            majorFont1.Append(supplementalFont17);
            majorFont1.Append(supplementalFont18);
            majorFont1.Append(supplementalFont19);
            majorFont1.Append(supplementalFont20);
            majorFont1.Append(supplementalFont21);
            majorFont1.Append(supplementalFont22);
            majorFont1.Append(supplementalFont23);
            majorFont1.Append(supplementalFont24);
            majorFont1.Append(supplementalFont25);
            majorFont1.Append(supplementalFont26);
            majorFont1.Append(supplementalFont27);
            majorFont1.Append(supplementalFont28);
            majorFont1.Append(supplementalFont29);
            majorFont1.Append(supplementalFont30);

            var minorFont1 = new MinorFont();
            var latinFont2 = new LatinFont { Typeface = "Calibri" };
            var eastAsianFont2 = new EastAsianFont { Typeface = "" };
            var complexScriptFont2 = new ComplexScriptFont { Typeface = "" };
            var supplementalFont31 = new SupplementalFont { Script = "Jpan", Typeface = "MS Pゴシック" };
            var supplementalFont32 = new SupplementalFont { Script = "Hang", Typeface = "맑은 고딕" };
            var supplementalFont33 = new SupplementalFont { Script = "Hans", Typeface = "宋体" };
            var supplementalFont34 = new SupplementalFont { Script = "Hant", Typeface = "新細明體" };
            var supplementalFont35 = new SupplementalFont { Script = "Arab", Typeface = "Arial" };
            var supplementalFont36 = new SupplementalFont { Script = "Hebr", Typeface = "Arial" };
            var supplementalFont37 = new SupplementalFont { Script = "Thai", Typeface = "Tahoma" };
            var supplementalFont38 = new SupplementalFont { Script = "Ethi", Typeface = "Nyala" };
            var supplementalFont39 = new SupplementalFont { Script = "Beng", Typeface = "Vrinda" };
            var supplementalFont40 = new SupplementalFont { Script = "Gujr", Typeface = "Shruti" };
            var supplementalFont41 = new SupplementalFont { Script = "Khmr", Typeface = "DaunPenh" };
            var supplementalFont42 = new SupplementalFont { Script = "Knda", Typeface = "Tunga" };
            var supplementalFont43 = new SupplementalFont { Script = "Guru", Typeface = "Raavi" };
            var supplementalFont44 = new SupplementalFont { Script = "Cans", Typeface = "Euphemia" };
            var supplementalFont45 = new SupplementalFont { Script = "Cher", Typeface = "Plantagenet Cherokee" };
            var supplementalFont46 = new SupplementalFont { Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            var supplementalFont47 = new SupplementalFont { Script = "Tibt", Typeface = "Microsoft Himalaya" };
            var supplementalFont48 = new SupplementalFont { Script = "Thaa", Typeface = "MV Boli" };
            var supplementalFont49 = new SupplementalFont { Script = "Deva", Typeface = "Mangal" };
            var supplementalFont50 = new SupplementalFont { Script = "Telu", Typeface = "Gautami" };
            var supplementalFont51 = new SupplementalFont { Script = "Taml", Typeface = "Latha" };
            var supplementalFont52 = new SupplementalFont { Script = "Syrc", Typeface = "Estrangelo Edessa" };
            var supplementalFont53 = new SupplementalFont { Script = "Orya", Typeface = "Kalinga" };
            var supplementalFont54 = new SupplementalFont { Script = "Mlym", Typeface = "Kartika" };
            var supplementalFont55 = new SupplementalFont { Script = "Laoo", Typeface = "DokChampa" };
            var supplementalFont56 = new SupplementalFont { Script = "Sinh", Typeface = "Iskoola Pota" };
            var supplementalFont57 = new SupplementalFont { Script = "Mong", Typeface = "Mongolian Baiti" };
            var supplementalFont58 = new SupplementalFont { Script = "Viet", Typeface = "Arial" };
            var supplementalFont59 = new SupplementalFont { Script = "Uigh", Typeface = "Microsoft Uighur" };
            var supplementalFont60 = new SupplementalFont { Script = "Geor", Typeface = "Sylfaen" };

            minorFont1.Append(latinFont2);
            minorFont1.Append(eastAsianFont2);
            minorFont1.Append(complexScriptFont2);
            minorFont1.Append(supplementalFont31);
            minorFont1.Append(supplementalFont32);
            minorFont1.Append(supplementalFont33);
            minorFont1.Append(supplementalFont34);
            minorFont1.Append(supplementalFont35);
            minorFont1.Append(supplementalFont36);
            minorFont1.Append(supplementalFont37);
            minorFont1.Append(supplementalFont38);
            minorFont1.Append(supplementalFont39);
            minorFont1.Append(supplementalFont40);
            minorFont1.Append(supplementalFont41);
            minorFont1.Append(supplementalFont42);
            minorFont1.Append(supplementalFont43);
            minorFont1.Append(supplementalFont44);
            minorFont1.Append(supplementalFont45);
            minorFont1.Append(supplementalFont46);
            minorFont1.Append(supplementalFont47);
            minorFont1.Append(supplementalFont48);
            minorFont1.Append(supplementalFont49);
            minorFont1.Append(supplementalFont50);
            minorFont1.Append(supplementalFont51);
            minorFont1.Append(supplementalFont52);
            minorFont1.Append(supplementalFont53);
            minorFont1.Append(supplementalFont54);
            minorFont1.Append(supplementalFont55);
            minorFont1.Append(supplementalFont56);
            minorFont1.Append(supplementalFont57);
            minorFont1.Append(supplementalFont58);
            minorFont1.Append(supplementalFont59);
            minorFont1.Append(supplementalFont60);

            fontScheme2.Append(majorFont1);
            fontScheme2.Append(minorFont1);

            var formatScheme1 = new FormatScheme { Name = "Стандартная" };

            var fillStyleList1 = new FillStyleList();

            var solidFill1 = new SolidFill();
            var schemeColor1 = new SchemeColor { Val = SchemeColorValues.PhColor };

            solidFill1.Append(schemeColor1);

            var gradientFill1 = new DocumentFormat.OpenXml.Drawing.GradientFill { RotateWithShape = true };

            var gradientStopList1 = new GradientStopList();

            var gradientStop1 = new DocumentFormat.OpenXml.Drawing.GradientStop { Position = 0 };

            var schemeColor2 = new SchemeColor { Val = SchemeColorValues.PhColor };
            var tint1 = new Tint { Val = 50000 };
            var saturationModulation1 = new SaturationModulation { Val = 300000 };

            schemeColor2.Append(tint1);
            schemeColor2.Append(saturationModulation1);

            gradientStop1.Append(schemeColor2);

            var gradientStop2 = new DocumentFormat.OpenXml.Drawing.GradientStop { Position = 35000 };

            var schemeColor3 = new SchemeColor { Val = SchemeColorValues.PhColor };
            var tint2 = new Tint { Val = 37000 };
            var saturationModulation2 = new SaturationModulation { Val = 300000 };

            schemeColor3.Append(tint2);
            schemeColor3.Append(saturationModulation2);

            gradientStop2.Append(schemeColor3);

            var gradientStop3 = new DocumentFormat.OpenXml.Drawing.GradientStop { Position = 100000 };

            var schemeColor4 = new SchemeColor { Val = SchemeColorValues.PhColor };
            var tint3 = new Tint { Val = 15000 };
            var saturationModulation3 = new SaturationModulation { Val = 350000 };

            schemeColor4.Append(tint3);
            schemeColor4.Append(saturationModulation3);

            gradientStop3.Append(schemeColor4);

            gradientStopList1.Append(gradientStop1);
            gradientStopList1.Append(gradientStop2);
            gradientStopList1.Append(gradientStop3);
            var linearGradientFill1 = new LinearGradientFill { Angle = 16200000, Scaled = true };

            gradientFill1.Append(gradientStopList1);
            gradientFill1.Append(linearGradientFill1);

            var gradientFill2 = new DocumentFormat.OpenXml.Drawing.GradientFill { RotateWithShape = true };

            var gradientStopList2 = new GradientStopList();

            var gradientStop4 = new DocumentFormat.OpenXml.Drawing.GradientStop { Position = 0 };

            var schemeColor5 = new SchemeColor { Val = SchemeColorValues.PhColor };
            var shade1 = new Shade { Val = 51000 };
            var saturationModulation4 = new SaturationModulation { Val = 130000 };

            schemeColor5.Append(shade1);
            schemeColor5.Append(saturationModulation4);

            gradientStop4.Append(schemeColor5);

            var gradientStop5 = new DocumentFormat.OpenXml.Drawing.GradientStop { Position = 80000 };

            var schemeColor6 = new SchemeColor { Val = SchemeColorValues.PhColor };
            var shade2 = new Shade { Val = 93000 };
            var saturationModulation5 = new SaturationModulation { Val = 130000 };

            schemeColor6.Append(shade2);
            schemeColor6.Append(saturationModulation5);

            gradientStop5.Append(schemeColor6);

            var gradientStop6 = new DocumentFormat.OpenXml.Drawing.GradientStop { Position = 100000 };

            var schemeColor7 = new SchemeColor { Val = SchemeColorValues.PhColor };
            var shade3 = new Shade { Val = 94000 };
            var saturationModulation6 = new SaturationModulation { Val = 135000 };

            schemeColor7.Append(shade3);
            schemeColor7.Append(saturationModulation6);

            gradientStop6.Append(schemeColor7);

            gradientStopList2.Append(gradientStop4);
            gradientStopList2.Append(gradientStop5);
            gradientStopList2.Append(gradientStop6);
            var linearGradientFill2 = new LinearGradientFill { Angle = 16200000, Scaled = false };

            gradientFill2.Append(gradientStopList2);
            gradientFill2.Append(linearGradientFill2);

            fillStyleList1.Append(solidFill1);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            var lineStyleList1 = new LineStyleList();

            var outline1 = new DocumentFormat.OpenXml.Drawing.Outline { Width = 9525, CapType = LineCapValues.Flat, CompoundLineType = CompoundLineValues.Single, Alignment = PenAlignmentValues.Center };

            var solidFill2 = new SolidFill();

            var schemeColor8 = new SchemeColor { Val = SchemeColorValues.PhColor };
            var shade4 = new Shade { Val = 95000 };
            var saturationModulation7 = new SaturationModulation { Val = 105000 };

            schemeColor8.Append(shade4);
            schemeColor8.Append(saturationModulation7);

            solidFill2.Append(schemeColor8);
            var presetDash1 = new PresetDash { Val = PresetLineDashValues.Solid };

            outline1.Append(solidFill2);
            outline1.Append(presetDash1);

            var outline2 = new DocumentFormat.OpenXml.Drawing.Outline { Width = 25400, CapType = LineCapValues.Flat, CompoundLineType = CompoundLineValues.Single, Alignment = PenAlignmentValues.Center };

            var solidFill3 = new SolidFill();
            var schemeColor9 = new SchemeColor { Val = SchemeColorValues.PhColor };

            solidFill3.Append(schemeColor9);
            var presetDash2 = new PresetDash { Val = PresetLineDashValues.Solid };

            outline2.Append(solidFill3);
            outline2.Append(presetDash2);

            var outline3 = new DocumentFormat.OpenXml.Drawing.Outline { Width = 38100, CapType = LineCapValues.Flat, CompoundLineType = CompoundLineValues.Single, Alignment = PenAlignmentValues.Center };

            var solidFill4 = new SolidFill();
            var schemeColor10 = new SchemeColor { Val = SchemeColorValues.PhColor };

            solidFill4.Append(schemeColor10);
            var presetDash3 = new PresetDash { Val = PresetLineDashValues.Solid };

            outline3.Append(solidFill4);
            outline3.Append(presetDash3);

            lineStyleList1.Append(outline1);
            lineStyleList1.Append(outline2);
            lineStyleList1.Append(outline3);

            var effectStyleList1 = new EffectStyleList();

            var effectStyle1 = new EffectStyle();

            var effectList1 = new EffectList();

            var outerShadow1 = new OuterShadow { BlurRadius = 40000L, Distance = 20000L, Direction = 5400000, RotateWithShape = false };

            var rgbColorModelHex11 = new RgbColorModelHex { Val = "000000" };
            var alpha1 = new Alpha { Val = 38000 };

            rgbColorModelHex11.Append(alpha1);

            outerShadow1.Append(rgbColorModelHex11);

            effectList1.Append(outerShadow1);

            effectStyle1.Append(effectList1);

            var effectStyle2 = new EffectStyle();

            var effectList2 = new EffectList();

            var outerShadow2 = new OuterShadow { BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false };

            var rgbColorModelHex12 = new RgbColorModelHex { Val = "000000" };
            var alpha2 = new Alpha { Val = 35000 };

            rgbColorModelHex12.Append(alpha2);

            outerShadow2.Append(rgbColorModelHex12);

            effectList2.Append(outerShadow2);

            effectStyle2.Append(effectList2);

            var effectStyle3 = new EffectStyle();

            var effectList3 = new EffectList();

            var outerShadow3 = new OuterShadow { BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false };

            var rgbColorModelHex13 = new RgbColorModelHex { Val = "000000" };
            var alpha3 = new Alpha { Val = 35000 };

            rgbColorModelHex13.Append(alpha3);

            outerShadow3.Append(rgbColorModelHex13);

            effectList3.Append(outerShadow3);

            var scene3DType1 = new Scene3DType();

            var camera1 = new Camera { Preset = PresetCameraValues.OrthographicFront };
            var rotation1 = new Rotation { Latitude = 0, Longitude = 0, Revolution = 0 };

            camera1.Append(rotation1);

            var lightRig1 = new LightRig { Rig = LightRigValues.ThreePoints, Direction = LightRigDirectionValues.Top };
            var rotation2 = new Rotation { Latitude = 0, Longitude = 0, Revolution = 1200000 };

            lightRig1.Append(rotation2);

            scene3DType1.Append(camera1);
            scene3DType1.Append(lightRig1);

            var shape3DType1 = new Shape3DType();
            var bevelTop1 = new BevelTop { Width = 63500L, Height = 25400L };

            shape3DType1.Append(bevelTop1);

            effectStyle3.Append(effectList3);
            effectStyle3.Append(scene3DType1);
            effectStyle3.Append(shape3DType1);

            effectStyleList1.Append(effectStyle1);
            effectStyleList1.Append(effectStyle2);
            effectStyleList1.Append(effectStyle3);

            var backgroundFillStyleList1 = new BackgroundFillStyleList();

            var solidFill5 = new SolidFill();
            var schemeColor11 = new SchemeColor { Val = SchemeColorValues.PhColor };

            solidFill5.Append(schemeColor11);

            var gradientFill3 = new DocumentFormat.OpenXml.Drawing.GradientFill { RotateWithShape = true };

            var gradientStopList3 = new GradientStopList();

            var gradientStop7 = new DocumentFormat.OpenXml.Drawing.GradientStop { Position = 0 };

            var schemeColor12 = new SchemeColor { Val = SchemeColorValues.PhColor };
            var tint4 = new Tint { Val = 40000 };
            var saturationModulation8 = new SaturationModulation { Val = 350000 };

            schemeColor12.Append(tint4);
            schemeColor12.Append(saturationModulation8);

            gradientStop7.Append(schemeColor12);

            var gradientStop8 = new DocumentFormat.OpenXml.Drawing.GradientStop { Position = 40000 };

            var schemeColor13 = new SchemeColor { Val = SchemeColorValues.PhColor };
            var tint5 = new Tint { Val = 45000 };
            var shade5 = new Shade { Val = 99000 };
            var saturationModulation9 = new SaturationModulation { Val = 350000 };

            schemeColor13.Append(tint5);
            schemeColor13.Append(shade5);
            schemeColor13.Append(saturationModulation9);

            gradientStop8.Append(schemeColor13);

            var gradientStop9 = new DocumentFormat.OpenXml.Drawing.GradientStop { Position = 100000 };

            var schemeColor14 = new SchemeColor { Val = SchemeColorValues.PhColor };
            var shade6 = new Shade { Val = 20000 };
            var saturationModulation10 = new SaturationModulation { Val = 255000 };

            schemeColor14.Append(shade6);
            schemeColor14.Append(saturationModulation10);

            gradientStop9.Append(schemeColor14);

            gradientStopList3.Append(gradientStop7);
            gradientStopList3.Append(gradientStop8);
            gradientStopList3.Append(gradientStop9);

            var pathGradientFill1 = new PathGradientFill { Path = PathShadeValues.Circle };
            var fillToRectangle1 = new FillToRectangle { Left = 50000, Top = -80000, Right = 50000, Bottom = 180000 };

            pathGradientFill1.Append(fillToRectangle1);

            gradientFill3.Append(gradientStopList3);
            gradientFill3.Append(pathGradientFill1);

            var gradientFill4 = new DocumentFormat.OpenXml.Drawing.GradientFill { RotateWithShape = true };

            var gradientStopList4 = new GradientStopList();

            var gradientStop10 = new DocumentFormat.OpenXml.Drawing.GradientStop { Position = 0 };

            var schemeColor15 = new SchemeColor { Val = SchemeColorValues.PhColor };
            var tint6 = new Tint { Val = 80000 };
            var saturationModulation11 = new SaturationModulation { Val = 300000 };

            schemeColor15.Append(tint6);
            schemeColor15.Append(saturationModulation11);

            gradientStop10.Append(schemeColor15);

            var gradientStop11 = new DocumentFormat.OpenXml.Drawing.GradientStop { Position = 100000 };

            var schemeColor16 = new SchemeColor { Val = SchemeColorValues.PhColor };
            var shade7 = new Shade { Val = 30000 };
            var saturationModulation12 = new SaturationModulation { Val = 200000 };

            schemeColor16.Append(shade7);
            schemeColor16.Append(saturationModulation12);

            gradientStop11.Append(schemeColor16);

            gradientStopList4.Append(gradientStop10);
            gradientStopList4.Append(gradientStop11);

            var pathGradientFill2 = new PathGradientFill { Path = PathShadeValues.Circle };
            var fillToRectangle2 = new FillToRectangle { Left = 50000, Top = 50000, Right = 50000, Bottom = 50000 };

            pathGradientFill2.Append(fillToRectangle2);

            gradientFill4.Append(gradientStopList4);
            gradientFill4.Append(pathGradientFill2);

            backgroundFillStyleList1.Append(solidFill5);
            backgroundFillStyleList1.Append(gradientFill3);
            backgroundFillStyleList1.Append(gradientFill4);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme2);
            themeElements1.Append(formatScheme1);
            var objectDefaults1 = new ObjectDefaults();
            var extraColorSchemeList1 = new ExtraColorSchemeList();

            theme1.Append(themeElements1);
            theme1.Append(objectDefaults1);
            theme1.Append(extraColorSchemeList1);

            themePart.Theme = theme1;
        }
Пример #10
0
        /// <summary>
        /// Add a note to the FootNotes part and ensure it exists.
        /// </summary>
        /// <param name="description">The description of an acronym, abbreviation, some book references, ...</param>
        /// <returns>Returns the id of the footnote reference.</returns>
        private int AddFootnoteReference(string description)
        {
            FootnotesPart fpart = mainPart.FootnotesPart;
            if (fpart == null)
                fpart = mainPart.AddNewPart<FootnotesPart>();

            if (fpart.Footnotes == null)
            {
                // Insert a new Footnotes reference
                new Footnotes(
                    new Footnote(
                        new Paragraph(
                            new ParagraphProperties {
                                SpacingBetweenLines = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto }
                            },
                            new Run(
                                new SeparatorMark())
                        )
                    ) { Type = FootnoteEndnoteValues.Separator, Id = -1 },
                    new Footnote(
                        new Paragraph(
                            new ParagraphProperties {
                                SpacingBetweenLines = new SpacingBetweenLines() { After = "0", Line = "240", LineRule = LineSpacingRuleValues.Auto }
                            },
                            new Run(
                                new ContinuationSeparatorMark())
                        )
                    ) { Type = FootnoteEndnoteValues.ContinuationSeparator, Id = 0 }).Save(fpart);
                footnotesRef = 1;
            }
            else
            {
                // The footnotesRef Id is a required field and should be unique. You can assign yourself some hard-coded
                // value but that's absolutely not safe. We will loop through the existing Footnote
                // to retrieve the highest Id.
                foreach (var fn in fpart.Footnotes.Elements<Footnote>())
                {
                    if (fn.Id.HasValue && fn.Id > footnotesRef) footnotesRef = (int) fn.Id.Value;
                }
                footnotesRef++;
            }

            Run markerRun;
            Paragraph p;
            fpart.Footnotes.Append(
                new Footnote(
                    p = new Paragraph(
                        new ParagraphProperties {
                            ParagraphStyleId = new ParagraphStyleId() { Val = htmlStyles.GetStyle("footnote text", StyleValues.Paragraph) }
                        },
                        markerRun = new Run(
                            new RunProperties {
                                RunStyle = new RunStyle() { Val = htmlStyles.GetStyle("footnote reference", StyleValues.Character) }
                            },
                            new FootnoteReferenceMark()),
                        new Run(
                        // Word insert automatically a space before the definition to separate the
                        // reference number with its description
                            new Text(" ") { Space = SpaceProcessingModeValues.Preserve })
                    )
                ) { Id = footnotesRef });

            // Description in footnote reference can be plain text or a web protocols/file share (like \\server01)
            Uri uriReference;
            Regex linkRegex = new Regex(@"^((https?|ftps?|mailto|file)://|[\\]{2})(?:[\w][\w.-]?)");
            if (linkRegex.IsMatch(description) && Uri.TryCreate(description, UriKind.Absolute, out uriReference))
            {
                HyperlinkRelationship extLink = fpart.AddHyperlinkRelationship(uriReference, true);
                var h = new Hyperlink(
                    ) { History = true, Id = extLink.Id };

                htmlStyles.EnsureKnownStyle(HtmlDocumentStyle.KnownStyles.Hyperlink);

                h.Append(new Run(
                    new RunProperties {
                        RunStyle = new RunStyle() { Val = htmlStyles.GetStyle("Hyperlink", StyleValues.Character) }
                    },
                    new Text(description)));
                p.Append(h);
            }
            else
            {
                p.Append(new Run(
                    new Text(description) { Space = SpaceProcessingModeValues.Preserve }));
            }

            if (!htmlStyles.DoesStyleExists("footnote reference"))
            {
                // Force the superscript style because if the footnote text style does not exists,
                // the rendering will be awful.
                markerRun.InsertInProperties(prop =>
                    prop.VerticalTextAlignment = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript });
            }
            fpart.Footnotes.Save();

            return footnotesRef;
        }
Пример #11
0
        // Generates content of themePart1.
        private void GenerateThemePart1Content(ThemePart themePart1)
        {
            A.Theme theme1 = new A.Theme(){ Name = "Slice" };
            theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.ThemeElements themeElements1 = new A.ThemeElements();

            A.ColorScheme colorScheme1 = new A.ColorScheme(){ Name = "Slice HD-RCA" };

            A.Dark1Color dark1Color1 = new A.Dark1Color();
            A.SystemColor systemColor1 = new A.SystemColor(){ Val = A.SystemColorValues.WindowText, LastColor = "000000" };

            dark1Color1.Append(systemColor1);

            A.Light1Color light1Color1 = new A.Light1Color();
            A.SystemColor systemColor2 = new A.SystemColor(){ Val = A.SystemColorValues.Window, LastColor = "FFFFFF" };

            light1Color1.Append(systemColor2);

            A.Dark2Color dark2Color1 = new A.Dark2Color();
            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex(){ Val = "537D0B" };

            dark2Color1.Append(rgbColorModelHex1);

            A.Light2Color light2Color1 = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex(){ Val = "A9E257" };

            light2Color1.Append(rgbColorModelHex2);

            A.Accent1Color accent1Color1 = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex(){ Val = "38540A" };

            accent1Color1.Append(rgbColorModelHex3);

            A.Accent2Color accent2Color1 = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex(){ Val = "31A274" };

            accent2Color1.Append(rgbColorModelHex4);

            A.Accent3Color accent3Color1 = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex(){ Val = "236073" };

            accent3Color1.Append(rgbColorModelHex5);

            A.Accent4Color accent4Color1 = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex(){ Val = "6C4D90" };

            accent4Color1.Append(rgbColorModelHex6);

            A.Accent5Color accent5Color1 = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex(){ Val = "983C27" };

            accent5Color1.Append(rgbColorModelHex7);

            A.Accent6Color accent6Color1 = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex(){ Val = "CD811F" };

            accent6Color1.Append(rgbColorModelHex8);

            A.Hyperlink hyperlink1 = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex(){ Val = "293F06" };

            hyperlink1.Append(rgbColorModelHex9);

            A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex(){ Val = "68883A" };

            followedHyperlinkColor1.Append(rgbColorModelHex10);

            colorScheme1.Append(dark1Color1);
            colorScheme1.Append(light1Color1);
            colorScheme1.Append(dark2Color1);
            colorScheme1.Append(light2Color1);
            colorScheme1.Append(accent1Color1);
            colorScheme1.Append(accent2Color1);
            colorScheme1.Append(accent3Color1);
            colorScheme1.Append(accent4Color1);
            colorScheme1.Append(accent5Color1);
            colorScheme1.Append(accent6Color1);
            colorScheme1.Append(hyperlink1);
            colorScheme1.Append(followedHyperlinkColor1);

            A.FontScheme fontScheme1 = new A.FontScheme(){ Name = "Slice HD-RCA" };

            A.MajorFont majorFont1 = new A.MajorFont();
            A.LatinFont latinFont32 = new A.LatinFont(){ Typeface = "Century Gothic", Panose = "020B0502020202020204" };
            A.EastAsianFont eastAsianFont29 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont29 = new A.ComplexScriptFont(){ Typeface = "" };

            majorFont1.Append(latinFont32);
            majorFont1.Append(eastAsianFont29);
            majorFont1.Append(complexScriptFont29);

            A.MinorFont minorFont1 = new A.MinorFont();
            A.LatinFont latinFont33 = new A.LatinFont(){ Typeface = "Century Gothic", Panose = "020B0502020202020204" };
            A.EastAsianFont eastAsianFont30 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont30 = new A.ComplexScriptFont(){ Typeface = "" };

            minorFont1.Append(latinFont33);
            minorFont1.Append(eastAsianFont30);
            minorFont1.Append(complexScriptFont30);

            fontScheme1.Append(majorFont1);
            fontScheme1.Append(minorFont1);

            A.FormatScheme formatScheme1 = new A.FormatScheme(){ Name = "Slice HD-RCA" };

            A.FillStyleList fillStyleList1 = new A.FillStyleList();

            A.SolidFill solidFill73 = new A.SolidFill();
            A.SchemeColor schemeColor139 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill73.Append(schemeColor139);

            A.GradientFill gradientFill1 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList1 = new A.GradientStopList();

            A.GradientStop gradientStop1 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor140 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint17 = new A.Tint(){ Val = 62000 };
            A.HueModulation hueModulation1 = new A.HueModulation(){ Val = 94000 };
            A.SaturationModulation saturationModulation1 = new A.SaturationModulation(){ Val = 140000 };
            A.LuminanceModulation luminanceModulation11 = new A.LuminanceModulation(){ Val = 110000 };

            schemeColor140.Append(tint17);
            schemeColor140.Append(hueModulation1);
            schemeColor140.Append(saturationModulation1);
            schemeColor140.Append(luminanceModulation11);

            gradientStop1.Append(schemeColor140);

            A.GradientStop gradientStop2 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor141 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint18 = new A.Tint(){ Val = 84000 };
            A.SaturationModulation saturationModulation2 = new A.SaturationModulation(){ Val = 160000 };

            schemeColor141.Append(tint18);
            schemeColor141.Append(saturationModulation2);

            gradientStop2.Append(schemeColor141);

            gradientStopList1.Append(gradientStop1);
            gradientStopList1.Append(gradientStop2);
            A.LinearGradientFill linearGradientFill1 = new A.LinearGradientFill(){ Angle = 5400000, Scaled = false };

            gradientFill1.Append(gradientStopList1);
            gradientFill1.Append(linearGradientFill1);

            A.GradientFill gradientFill2 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList2 = new A.GradientStopList();

            A.GradientStop gradientStop3 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor142 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint19 = new A.Tint(){ Val = 98000 };
            A.HueModulation hueModulation2 = new A.HueModulation(){ Val = 94000 };
            A.SaturationModulation saturationModulation3 = new A.SaturationModulation(){ Val = 130000 };
            A.LuminanceModulation luminanceModulation12 = new A.LuminanceModulation(){ Val = 128000 };

            schemeColor142.Append(tint19);
            schemeColor142.Append(hueModulation2);
            schemeColor142.Append(saturationModulation3);
            schemeColor142.Append(luminanceModulation12);

            gradientStop3.Append(schemeColor142);

            A.GradientStop gradientStop4 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor143 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade1 = new A.Shade(){ Val = 94000 };
            A.LuminanceModulation luminanceModulation13 = new A.LuminanceModulation(){ Val = 88000 };

            schemeColor143.Append(shade1);
            schemeColor143.Append(luminanceModulation13);

            gradientStop4.Append(schemeColor143);

            gradientStopList2.Append(gradientStop3);
            gradientStopList2.Append(gradientStop4);
            A.LinearGradientFill linearGradientFill2 = new A.LinearGradientFill(){ Angle = 5400000, Scaled = false };

            gradientFill2.Append(gradientStopList2);
            gradientFill2.Append(linearGradientFill2);

            fillStyleList1.Append(solidFill73);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            A.LineStyleList lineStyleList1 = new A.LineStyleList();

            A.Outline outline17 = new A.Outline(){ Width = 9525, CapType = A.LineCapValues.Round, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill74 = new A.SolidFill();

            A.SchemeColor schemeColor144 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint20 = new A.Tint(){ Val = 76000 };
            A.Alpha alpha1 = new A.Alpha(){ Val = 60000 };
            A.HueModulation hueModulation3 = new A.HueModulation(){ Val = 94000 };

            schemeColor144.Append(tint20);
            schemeColor144.Append(alpha1);
            schemeColor144.Append(hueModulation3);

            solidFill74.Append(schemeColor144);
            A.PresetDash presetDash1 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline17.Append(solidFill74);
            outline17.Append(presetDash1);

            A.Outline outline18 = new A.Outline(){ Width = 15875, CapType = A.LineCapValues.Round, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill75 = new A.SolidFill();

            A.SchemeColor schemeColor145 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.HueModulation hueModulation4 = new A.HueModulation(){ Val = 94000 };

            schemeColor145.Append(hueModulation4);

            solidFill75.Append(schemeColor145);
            A.PresetDash presetDash2 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline18.Append(solidFill75);
            outline18.Append(presetDash2);

            A.Outline outline19 = new A.Outline(){ Width = 28575, CapType = A.LineCapValues.Round, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill76 = new A.SolidFill();
            A.SchemeColor schemeColor146 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill76.Append(schemeColor146);
            A.PresetDash presetDash3 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline19.Append(solidFill76);
            outline19.Append(presetDash3);

            lineStyleList1.Append(outline17);
            lineStyleList1.Append(outline18);
            lineStyleList1.Append(outline19);

            A.EffectStyleList effectStyleList1 = new A.EffectStyleList();

            A.EffectStyle effectStyle1 = new A.EffectStyle();
            A.EffectList effectList12 = new A.EffectList();

            effectStyle1.Append(effectList12);

            A.EffectStyle effectStyle2 = new A.EffectStyle();

            A.EffectList effectList13 = new A.EffectList();

            A.InnerShadow innerShadow1 = new A.InnerShadow(){ BlurRadius = 25400L, Distance = 12700L, Direction = 13500000 };

            A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha2 = new A.Alpha(){ Val = 45000 };

            rgbColorModelHex11.Append(alpha2);

            innerShadow1.Append(rgbColorModelHex11);

            effectList13.Append(innerShadow1);

            effectStyle2.Append(effectList13);

            A.EffectStyle effectStyle3 = new A.EffectStyle();

            A.EffectList effectList14 = new A.EffectList();

            A.OuterShadow outerShadow1 = new A.OuterShadow(){ BlurRadius = 50800L, Distance = 38100L, Direction = 5400000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex12 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha3 = new A.Alpha(){ Val = 46000 };

            rgbColorModelHex12.Append(alpha3);

            outerShadow1.Append(rgbColorModelHex12);

            effectList14.Append(outerShadow1);

            A.Scene3DType scene3DType1 = new A.Scene3DType();

            A.Camera camera1 = new A.Camera(){ Preset = A.PresetCameraValues.OrthographicFront };
            A.Rotation rotation1 = new A.Rotation(){ Latitude = 0, Longitude = 0, Revolution = 0 };

            camera1.Append(rotation1);
            A.LightRig lightRig1 = new A.LightRig(){ Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };

            scene3DType1.Append(camera1);
            scene3DType1.Append(lightRig1);

            A.Shape3DType shape3DType1 = new A.Shape3DType(){ PresetMaterial = A.PresetMaterialTypeValues.Plastic };
            A.BevelTop bevelTop1 = new A.BevelTop(){ Width = 25400L, Height = 25400L };

            shape3DType1.Append(bevelTop1);

            effectStyle3.Append(effectList14);
            effectStyle3.Append(scene3DType1);
            effectStyle3.Append(shape3DType1);

            effectStyleList1.Append(effectStyle1);
            effectStyleList1.Append(effectStyle2);
            effectStyleList1.Append(effectStyle3);

            A.BackgroundFillStyleList backgroundFillStyleList1 = new A.BackgroundFillStyleList();

            A.SolidFill solidFill77 = new A.SolidFill();
            A.SchemeColor schemeColor147 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill77.Append(schemeColor147);

            A.GradientFill gradientFill3 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList3 = new A.GradientStopList();

            A.GradientStop gradientStop5 = new A.GradientStop(){ Position = 10000 };

            A.SchemeColor schemeColor148 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint21 = new A.Tint(){ Val = 97000 };
            A.HueModulation hueModulation5 = new A.HueModulation(){ Val = 92000 };
            A.SaturationModulation saturationModulation4 = new A.SaturationModulation(){ Val = 169000 };
            A.LuminanceModulation luminanceModulation14 = new A.LuminanceModulation(){ Val = 164000 };

            schemeColor148.Append(tint21);
            schemeColor148.Append(hueModulation5);
            schemeColor148.Append(saturationModulation4);
            schemeColor148.Append(luminanceModulation14);

            gradientStop5.Append(schemeColor148);

            A.GradientStop gradientStop6 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor149 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade2 = new A.Shade(){ Val = 96000 };
            A.SaturationModulation saturationModulation5 = new A.SaturationModulation(){ Val = 120000 };
            A.LuminanceModulation luminanceModulation15 = new A.LuminanceModulation(){ Val = 90000 };

            schemeColor149.Append(shade2);
            schemeColor149.Append(saturationModulation5);
            schemeColor149.Append(luminanceModulation15);

            gradientStop6.Append(schemeColor149);

            gradientStopList3.Append(gradientStop5);
            gradientStopList3.Append(gradientStop6);
            A.LinearGradientFill linearGradientFill3 = new A.LinearGradientFill(){ Angle = 6120000, Scaled = true };

            gradientFill3.Append(gradientStopList3);
            gradientFill3.Append(linearGradientFill3);

            A.GradientFill gradientFill4 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList4 = new A.GradientStopList();

            A.GradientStop gradientStop7 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor150 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint22 = new A.Tint(){ Val = 97000 };
            A.HueModulation hueModulation6 = new A.HueModulation(){ Val = 92000 };
            A.SaturationModulation saturationModulation6 = new A.SaturationModulation(){ Val = 169000 };
            A.LuminanceModulation luminanceModulation16 = new A.LuminanceModulation(){ Val = 164000 };

            schemeColor150.Append(tint22);
            schemeColor150.Append(hueModulation6);
            schemeColor150.Append(saturationModulation6);
            schemeColor150.Append(luminanceModulation16);

            gradientStop7.Append(schemeColor150);

            A.GradientStop gradientStop8 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor151 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade3 = new A.Shade(){ Val = 96000 };
            A.SaturationModulation saturationModulation7 = new A.SaturationModulation(){ Val = 120000 };
            A.LuminanceModulation luminanceModulation17 = new A.LuminanceModulation(){ Val = 90000 };

            schemeColor151.Append(shade3);
            schemeColor151.Append(saturationModulation7);
            schemeColor151.Append(luminanceModulation17);

            gradientStop8.Append(schemeColor151);

            gradientStopList4.Append(gradientStop7);
            gradientStopList4.Append(gradientStop8);

            A.PathGradientFill pathGradientFill1 = new A.PathGradientFill(){ Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle1 = new A.FillToRectangle(){ Bottom = 100000 };

            pathGradientFill1.Append(fillToRectangle1);

            gradientFill4.Append(gradientStopList4);
            gradientFill4.Append(pathGradientFill1);

            backgroundFillStyleList1.Append(solidFill77);
            backgroundFillStyleList1.Append(gradientFill3);
            backgroundFillStyleList1.Append(gradientFill4);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme1);
            themeElements1.Append(formatScheme1);
            A.ObjectDefaults objectDefaults1 = new A.ObjectDefaults();
            A.ExtraColorSchemeList extraColorSchemeList1 = new A.ExtraColorSchemeList();

            A.OfficeStyleSheetExtensionList officeStyleSheetExtensionList1 = new A.OfficeStyleSheetExtensionList();

            A.OfficeStyleSheetExtension officeStyleSheetExtension1 = new A.OfficeStyleSheetExtension(){ Uri = "{05A4C25C-085E-4340-85A3-A5531E510DB2}" };

            Thm15.ThemeFamily themeFamily1 = new Thm15.ThemeFamily(){ Name = "Slice", Id = "{0507925B-6AC9-4358-8E18-C330545D08F8}", Vid = "{24C90B2D-6D41-4755-90A4-ED86E7EA9F03}" };
            themeFamily1.AddNamespaceDeclaration("thm15", "http://schemas.microsoft.com/office/thememl/2012/main");

            officeStyleSheetExtension1.Append(themeFamily1);

            officeStyleSheetExtensionList1.Append(officeStyleSheetExtension1);

            theme1.Append(themeElements1);
            theme1.Append(objectDefaults1);
            theme1.Append(extraColorSchemeList1);
            theme1.Append(officeStyleSheetExtensionList1);

            themePart1.Theme = theme1;
        }
Пример #12
0
        // Generates content of mainDocumentPart1.
        private void GenerateMainDocumentPart1Content(MainDocumentPart mainDocumentPart1)
        {
            Document document1 = new Document();
            document1.AddNamespaceDeclaration("ve", "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("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("wne", "http://schemas.microsoft.com/office/word/2006/wordml");

            Body body1 = new Body();

            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableStyle tableStyle1 = new TableStyle() { Val = "TableGrid" };
            TableWidth tableWidth1 = new TableWidth() { Width = "9627", Type = TableWidthUnitValues.Dxa };
            TableLook tableLook1 = new TableLook() { Val = "04A0" };

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

            TableGrid tableGrid1 = new TableGrid();
            GridColumn gridColumn1 = new GridColumn() { Width = "9700" };

            tableGrid1.Append(gridColumn1);

            TableRow tableRow1 = new TableRow() { RsidTableRowAddition = "003F5FAE", RsidTableRowProperties = "00E67B26" };

            TableRowProperties tableRowProperties1 = new TableRowProperties();
            TableRowHeight tableRowHeight1 = new TableRowHeight() { Val = (UInt32Value)629U };

            tableRowProperties1.Append(tableRowHeight1);

            TableCell tableCell1 = new TableCell();

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

            tableCellProperties1.Append(tableCellWidth1);

            Paragraph paragraph1 = new Paragraph() { RsidParagraphMarkRevision = "003F5FAE", RsidParagraphAddition = "003F5FAE", RsidParagraphProperties = "003F5FAE", RsidRunAdditionDefault = "003F5FAE" };

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId() { Val = "Heading2" };
            Justification justification1 = new Justification() { Val = JustificationValues.Center };

            paragraphProperties1.Append(paragraphStyleId1);
            paragraphProperties1.Append(justification1);

            Run run1 = new Run() { RsidRunProperties = "003F5FAE" };
            Text text1 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text1.Text = "LOCUM ";

            run1.Append(text1);

            Run run2 = new Run() { RsidRunProperties = "003F5FAE" };

            RunProperties runProperties1 = new RunProperties();
            Color color1 = new Color() { Val = "1F497D", ThemeColor = ThemeColorValues.Text2 };

            runProperties1.Append(color1);
            Text text2 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text2.Text = "Assistance ";

            run2.Append(runProperties1);
            run2.Append(text2);

            Run run3 = new Run();

            RunProperties runProperties2 = new RunProperties();
            Color color2 = new Color() { Val = "1F497D", ThemeColor = ThemeColorValues.Text2 };

            runProperties2.Append(color2);
            Text text3 = new Text();
            text3.Text = "–";

            run3.Append(runProperties2);
            run3.Append(text3);

            Run run4 = new Run() { RsidRunProperties = "003F5FAE" };

            RunProperties runProperties3 = new RunProperties();
            Color color3 = new Color() { Val = "1F497D", ThemeColor = ThemeColorValues.Text2 };

            runProperties3.Append(color3);
            Text text4 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text4.Text = " ";

            run4.Append(runProperties3);
            run4.Append(text4);

            Run run5 = new Run();

            RunProperties runProperties4 = new RunProperties();
            Color color4 = new Color() { Val = "1F497D", ThemeColor = ThemeColorValues.Text2 };

            runProperties4.Append(color4);
            Text text5 = new Text();
            text5.Text = "Invoice";

            run5.Append(runProperties4);
            run5.Append(text5);

            paragraph1.Append(paragraphProperties1);
            paragraph1.Append(run1);
            paragraph1.Append(run2);
            paragraph1.Append(run3);
            paragraph1.Append(run4);
            paragraph1.Append(run5);

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

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

            TableRow tableRow2 = new TableRow() { RsidTableRowAddition = "003F5FAE", RsidTableRowProperties = "00E67B26" };

            TableRowProperties tableRowProperties2 = new TableRowProperties();
            TableRowHeight tableRowHeight2 = new TableRowHeight() { Val = (UInt32Value)5167U };

            tableRowProperties2.Append(tableRowHeight2);

            TableCell tableCell2 = new TableCell();

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

            tableCellProperties2.Append(tableCellWidth2);

            Table table2 = new Table();

            TableProperties tableProperties2 = new TableProperties();
            TableStyle tableStyle2 = new TableStyle() { Val = "LightShading-Accent1" };
            TableWidth tableWidth2 = new TableWidth() { Width = "9483", Type = TableWidthUnitValues.Dxa };
            TableIndentation tableIndentation1 = new TableIndentation() { Width = 1, Type = TableWidthUnitValues.Dxa };
            TableLook tableLook2 = new TableLook() { Val = "04A0" };

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

            TableGrid tableGrid2 = new TableGrid();
            GridColumn gridColumn2 = new GridColumn() { Width = "4741" };
            GridColumn gridColumn3 = new GridColumn() { Width = "4742" };

            tableGrid2.Append(gridColumn2);
            tableGrid2.Append(gridColumn3);

            TableRow tableRow3 = new TableRow() { RsidTableRowAddition = "003F5FAE", RsidTableRowProperties = "00E67B26" };

            TableRowProperties tableRowProperties3 = new TableRowProperties();
            ConditionalFormatStyle conditionalFormatStyle1 = new ConditionalFormatStyle() { Val = "100000000000" };
            TableRowHeight tableRowHeight3 = new TableRowHeight() { Val = (UInt32Value)284U };

            tableRowProperties3.Append(conditionalFormatStyle1);
            tableRowProperties3.Append(tableRowHeight3);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            ConditionalFormatStyle conditionalFormatStyle2 = new ConditionalFormatStyle() { Val = "001000000000" };
            TableCellWidth tableCellWidth3 = new TableCellWidth() { Width = "4741", Type = TableWidthUnitValues.Dxa };

            tableCellProperties3.Append(conditionalFormatStyle2);
            tableCellProperties3.Append(tableCellWidth3);

            Paragraph paragraph2 = new Paragraph() { RsidParagraphAddition = "003F5FAE", RsidParagraphProperties = "003F5FAE", RsidRunAdditionDefault = "003F5FAE" };

            ParagraphProperties paragraphProperties2 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
            RunFonts runFonts1 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold1 = new Bold() { Val = false };
            Color color5 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize1 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript() { Val = "18" };

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

            paragraphProperties2.Append(paragraphMarkRunProperties1);

            Run run6 = new Run();

            RunProperties runProperties5 = new RunProperties();
            Bold bold2 = new Bold() { Val = false };
            Color color6 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties5.Append(bold2);
            runProperties5.Append(color6);
            Text text6 = new Text();
            text6.Text = "TO";

            run6.Append(runProperties5);
            run6.Append(text6);

            Run run7 = new Run();

            RunProperties runProperties6 = new RunProperties();
            Bold bold3 = new Bold() { Val = false };
            Color color7 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties6.Append(bold3);
            runProperties6.Append(color7);
            Break break1 = new Break();

            run7.Append(runProperties6);
            run7.Append(break1);

            Run run8 = new Run() { RsidRunProperties = "003F5FAE" };

            RunProperties runProperties7 = new RunProperties();
            RunFonts runFonts2 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold4 = new Bold() { Val = false };
            Color color8 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties7.Append(runFonts2);
            runProperties7.Append(bold4);
            runProperties7.Append(color8);
            Text text7 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text7.Text = pdetail.Name;

            run8.Append(runProperties7);
            run8.Append(text7);
            ProofError proofError1 = new ProofError() { Type = ProofingErrorValues.SpellStart };

            Run run9 = new Run() { RsidRunProperties = "003F5FAE" };

            RunProperties runProperties8 = new RunProperties();
            RunFonts runFonts3 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold5 = new Bold() { Val = false };
            Color color9 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties8.Append(runFonts3);
            runProperties8.Append(bold5);
            runProperties8.Append(color9);
            Text text8 = new Text();
            text8.Text = "";

            run9.Append(runProperties8);
            run9.Append(text8);
            ProofError proofError2 = new ProofError() { Type = ProofingErrorValues.SpellEnd };

            Run run10 = new Run();

            RunProperties runProperties9 = new RunProperties();
            RunFonts runFonts4 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold6 = new Bold() { Val = false };
            Color color10 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties9.Append(runFonts4);
            runProperties9.Append(bold6);
            runProperties9.Append(color10);
            Break break2 = new Break();

            run10.Append(runProperties9);
            run10.Append(break2);

            Run run11 = new Run() { RsidRunProperties = "003F5FAE" };

            RunProperties runProperties10 = new RunProperties();
            RunFonts runFonts5 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Color color11 = new Color() { Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF" };
            FontSize fontSize2 = new FontSize() { Val = "12" };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript() { Val = "18" };

            runProperties10.Append(runFonts5);
            runProperties10.Append(color11);
            runProperties10.Append(fontSize2);
            runProperties10.Append(fontSizeComplexScript2);
            Text text9 = new Text();
            text9.Text = "Website";

            run11.Append(runProperties10);
            run11.Append(text9);

            Run run12 = new Run();

            RunProperties runProperties11 = new RunProperties();
            RunFonts runFonts6 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold7 = new Bold() { Val = false };
            Color color12 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize3 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript() { Val = "18" };

            runProperties11.Append(runFonts6);
            runProperties11.Append(bold7);
            runProperties11.Append(color12);
            runProperties11.Append(fontSize3);
            runProperties11.Append(fontSizeComplexScript3);
            Text text10 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text10.Text = " : ";

            run12.Append(runProperties11);
            run12.Append(text10);

            Hyperlink hyperlink1 = new Hyperlink() { History = true, Id = "rId4" };

            Run run13 = new Run() { RsidRunProperties = "00366D29" };

            RunProperties runProperties12 = new RunProperties();
            RunStyle runStyle1 = new RunStyle() { Val = "Hyperlink" };
            RunFonts runFonts7 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            FontSize fontSize4 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript() { Val = "18" };

            runProperties12.Append(runStyle1);
            runProperties12.Append(runFonts7);
            runProperties12.Append(fontSize4);
            runProperties12.Append(fontSizeComplexScript4);
            Text text11 = new Text();
            text11.Text = pdetail.cWebsite;

            run13.Append(runProperties12);
            run13.Append(text11);

            hyperlink1.Append(run13);

            Run run14 = new Run();

            RunProperties runProperties13 = new RunProperties();
            RunFonts runFonts8 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold8 = new Bold() { Val = false };
            Color color13 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize5 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript5 = new FontSizeComplexScript() { Val = "18" };

            runProperties13.Append(runFonts8);
            runProperties13.Append(bold8);
            runProperties13.Append(color13);
            runProperties13.Append(fontSize5);
            runProperties13.Append(fontSizeComplexScript5);
            Break break3 = new Break();

            run14.Append(runProperties13);
            run14.Append(break3);

            Run run15 = new Run();

            RunProperties runProperties14 = new RunProperties();
            RunFonts runFonts9 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Color color14 = new Color() { Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF" };
            FontSize fontSize6 = new FontSize() { Val = "12" };
            FontSizeComplexScript fontSizeComplexScript6 = new FontSizeComplexScript() { Val = "18" };

            runProperties14.Append(runFonts9);
            runProperties14.Append(color14);
            runProperties14.Append(fontSize6);
            runProperties14.Append(fontSizeComplexScript6);
            Text text12 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text12.Text = "City        ";

            run15.Append(runProperties14);
            run15.Append(text12);

            Run run16 = new Run();

            RunProperties runProperties15 = new RunProperties();
            RunFonts runFonts10 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold9 = new Bold() { Val = false };
            Color color15 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize7 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript7 = new FontSizeComplexScript() { Val = "18" };

            runProperties15.Append(runFonts10);
            runProperties15.Append(bold9);
            runProperties15.Append(color15);
            runProperties15.Append(fontSize7);
            runProperties15.Append(fontSizeComplexScript7);
            Text text13 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text13.Text = " : " + pdetail.city;

            run16.Append(runProperties15);
            run16.Append(text13);

            paragraph2.Append(paragraphProperties2);
            paragraph2.Append(run6);
            paragraph2.Append(run7);
            paragraph2.Append(run8);
            paragraph2.Append(proofError1);
            paragraph2.Append(run9);
            paragraph2.Append(proofError2);
            paragraph2.Append(run10);
            paragraph2.Append(run11);
            paragraph2.Append(run12);
            paragraph2.Append(hyperlink1);
            paragraph2.Append(run14);
            paragraph2.Append(run15);
            paragraph2.Append(run16);

            Paragraph paragraph3 = new Paragraph() { RsidParagraphAddition = "00E67B26", RsidParagraphProperties = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties3 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();
            RunFonts runFonts11 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold10 = new Bold() { Val = false };
            Color color16 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize8 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript8 = new FontSizeComplexScript() { Val = "18" };

            paragraphMarkRunProperties2.Append(runFonts11);
            paragraphMarkRunProperties2.Append(bold10);
            paragraphMarkRunProperties2.Append(color16);
            paragraphMarkRunProperties2.Append(fontSize8);
            paragraphMarkRunProperties2.Append(fontSizeComplexScript8);

            paragraphProperties3.Append(paragraphMarkRunProperties2);

            Run run17 = new Run();

            RunProperties runProperties16 = new RunProperties();
            RunFonts runFonts12 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Color color17 = new Color() { Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF" };
            FontSize fontSize9 = new FontSize() { Val = "12" };
            FontSizeComplexScript fontSizeComplexScript9 = new FontSizeComplexScript() { Val = "18" };

            runProperties16.Append(runFonts12);
            runProperties16.Append(color17);
            runProperties16.Append(fontSize9);
            runProperties16.Append(fontSizeComplexScript9);
            Text text14 = new Text();
            text14.Text = "Street";

            run17.Append(runProperties16);
            run17.Append(text14);

            Run run18 = new Run() { RsidRunAddition = "003F5FAE" };

            RunProperties runProperties17 = new RunProperties();
            RunFonts runFonts13 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Color color18 = new Color() { Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF" };
            FontSize fontSize10 = new FontSize() { Val = "12" };
            FontSizeComplexScript fontSizeComplexScript10 = new FontSizeComplexScript() { Val = "18" };

            runProperties17.Append(runFonts13);
            runProperties17.Append(color18);
            runProperties17.Append(fontSize10);
            runProperties17.Append(fontSizeComplexScript10);
            Text text15 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text15.Text = "    ";

            run18.Append(runProperties17);
            run18.Append(text15);

            Run run19 = new Run() { RsidRunAddition = "003F5FAE" };

            RunProperties runProperties18 = new RunProperties();
            RunFonts runFonts14 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold11 = new Bold() { Val = false };
            Color color19 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize11 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript11 = new FontSizeComplexScript() { Val = "18" };

            runProperties18.Append(runFonts14);
            runProperties18.Append(bold11);
            runProperties18.Append(color19);
            runProperties18.Append(fontSize11);
            runProperties18.Append(fontSizeComplexScript11);
            Text text16 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text16.Text = " : " + pdetail.streetAdd;

            run19.Append(runProperties18);
            run19.Append(text16);

            Run run20 = new Run();

            RunProperties runProperties19 = new RunProperties();
            RunFonts runFonts15 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold12 = new Bold() { Val = false };
            Color color20 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize12 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript12 = new FontSizeComplexScript() { Val = "18" };

            runProperties19.Append(runFonts15);
            runProperties19.Append(bold12);
            runProperties19.Append(color20);
            runProperties19.Append(fontSize12);
            runProperties19.Append(fontSizeComplexScript12);
            Text text17 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text17.Text = "";

            run20.Append(runProperties19);
            run20.Append(text17);

            Run run21 = new Run();

            RunProperties runProperties20 = new RunProperties();
            RunFonts runFonts16 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold13 = new Bold() { Val = false };
            Color color21 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize13 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript13 = new FontSizeComplexScript() { Val = "18" };

            runProperties20.Append(runFonts16);
            runProperties20.Append(bold13);
            runProperties20.Append(color21);
            runProperties20.Append(fontSize13);
            runProperties20.Append(fontSizeComplexScript13);
            Break break4 = new Break();

            run21.Append(runProperties20);
            run21.Append(break4);

            Run run22 = new Run();

            RunProperties runProperties21 = new RunProperties();
            RunFonts runFonts17 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Color color22 = new Color() { Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF" };
            FontSize fontSize14 = new FontSize() { Val = "12" };
            FontSizeComplexScript fontSizeComplexScript14 = new FontSizeComplexScript() { Val = "18" };

            runProperties21.Append(runFonts17);
            runProperties21.Append(color22);
            runProperties21.Append(fontSize14);
            runProperties21.Append(fontSizeComplexScript14);
            Text text18 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text18.Text = "Phone    ";

            run22.Append(runProperties21);
            run22.Append(text18);

            Run run23 = new Run();

            RunProperties runProperties22 = new RunProperties();
            RunFonts runFonts18 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold14 = new Bold() { Val = false };
            Color color23 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize15 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript15 = new FontSizeComplexScript() { Val = "18" };

            runProperties22.Append(runFonts18);
            runProperties22.Append(bold14);
            runProperties22.Append(color23);
            runProperties22.Append(fontSize15);
            runProperties22.Append(fontSizeComplexScript15);
            Text text19 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text19.Text = "";

            run23.Append(runProperties22);
            run23.Append(text19);

            Run run24 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties23 = new RunProperties();
            RunFonts runFonts19 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold15 = new Bold() { Val = false };
            BoldComplexScript boldComplexScript1 = new BoldComplexScript() { Val = false };
            Color color24 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize16 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript16 = new FontSizeComplexScript() { Val = "18" };

            runProperties23.Append(runFonts19);
            runProperties23.Append(bold15);
            runProperties23.Append(boldComplexScript1);
            runProperties23.Append(color24);
            runProperties23.Append(fontSize16);
            runProperties23.Append(fontSizeComplexScript16);
            Text text20 = new Text();
            text20.Text = ":";

            run24.Append(runProperties23);
            run24.Append(text20);

            Run run25 = new Run();

            RunProperties runProperties24 = new RunProperties();
            RunFonts runFonts20 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold16 = new Bold() { Val = false };
            BoldComplexScript boldComplexScript2 = new BoldComplexScript() { Val = false };
            Color color25 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize17 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript17 = new FontSizeComplexScript() { Val = "18" };

            runProperties24.Append(runFonts20);
            runProperties24.Append(bold16);
            runProperties24.Append(boldComplexScript2);
            runProperties24.Append(color25);
            runProperties24.Append(fontSize17);
            runProperties24.Append(fontSizeComplexScript17);
            Text text21 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text21.Text = " ";

            run25.Append(runProperties24);
            run25.Append(text21);

            Run run26 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties25 = new RunProperties();
            RunFonts runFonts21 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold17 = new Bold() { Val = false };
            BoldComplexScript boldComplexScript3 = new BoldComplexScript() { Val = false };
            Color color26 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize18 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript18 = new FontSizeComplexScript() { Val = "18" };

            runProperties25.Append(runFonts21);
            runProperties25.Append(bold17);
            runProperties25.Append(boldComplexScript3);
            runProperties25.Append(color26);
            runProperties25.Append(fontSize18);
            runProperties25.Append(fontSizeComplexScript18);
            Text text22 = new Text();
            text22.Text = pdetail.Pphone;

            run26.Append(runProperties25);
            run26.Append(text22);

            paragraph3.Append(paragraphProperties3);
            paragraph3.Append(run17);
            paragraph3.Append(run18);
            paragraph3.Append(run19);
            paragraph3.Append(run20);
            paragraph3.Append(run21);
            paragraph3.Append(run22);
            paragraph3.Append(run23);
            paragraph3.Append(run24);
            paragraph3.Append(run25);
            paragraph3.Append(run26);

            Paragraph paragraph4 = new Paragraph() { RsidParagraphMarkRevision = "003F5FAE", RsidParagraphAddition = "003F5FAE", RsidParagraphProperties = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties4 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();
            Bold bold18 = new Bold() { Val = false };
            Color color27 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            paragraphMarkRunProperties3.Append(bold18);
            paragraphMarkRunProperties3.Append(color27);

            paragraphProperties4.Append(paragraphMarkRunProperties3);

            Run run27 = new Run();

            RunProperties runProperties26 = new RunProperties();
            RunFonts runFonts22 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Color color28 = new Color() { Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF" };
            FontSize fontSize19 = new FontSize() { Val = "12" };
            FontSizeComplexScript fontSizeComplexScript19 = new FontSizeComplexScript() { Val = "18" };

            runProperties26.Append(runFonts22);
            runProperties26.Append(color28);
            runProperties26.Append(fontSize19);
            runProperties26.Append(fontSizeComplexScript19);
            Text text23 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text23.Text = "Email     ";

            run27.Append(runProperties26);
            run27.Append(text23);

            Run run28 = new Run();

            RunProperties runProperties27 = new RunProperties();
            RunFonts runFonts23 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold19 = new Bold() { Val = false };
            Color color29 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize20 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript20 = new FontSizeComplexScript() { Val = "18" };

            runProperties27.Append(runFonts23);
            runProperties27.Append(bold19);
            runProperties27.Append(color29);
            runProperties27.Append(fontSize20);
            runProperties27.Append(fontSizeComplexScript20);
            Text text24 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text24.Text = " ";

            run28.Append(runProperties27);
            run28.Append(text24);

            Run run29 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties28 = new RunProperties();
            RunFonts runFonts24 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold20 = new Bold() { Val = false };
            BoldComplexScript boldComplexScript4 = new BoldComplexScript() { Val = false };
            Color color30 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize21 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript21 = new FontSizeComplexScript() { Val = "18" };

            runProperties28.Append(runFonts24);
            runProperties28.Append(bold20);
            runProperties28.Append(boldComplexScript4);
            runProperties28.Append(color30);
            runProperties28.Append(fontSize21);
            runProperties28.Append(fontSizeComplexScript21);
            Text text25 = new Text();
            text25.Text = ":";

            run29.Append(runProperties28);
            run29.Append(text25);

            Run run30 = new Run();

            RunProperties runProperties29 = new RunProperties();
            RunFonts runFonts25 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold21 = new Bold() { Val = false };
            BoldComplexScript boldComplexScript5 = new BoldComplexScript() { Val = false };
            Color color31 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize22 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript22 = new FontSizeComplexScript() { Val = "18" };

            runProperties29.Append(runFonts25);
            runProperties29.Append(bold21);
            runProperties29.Append(boldComplexScript5);
            runProperties29.Append(color31);
            runProperties29.Append(fontSize22);
            runProperties29.Append(fontSizeComplexScript22);
            Text text26 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text26.Text = " ";

            run30.Append(runProperties29);
            run30.Append(text26);

            Hyperlink hyperlink2 = new Hyperlink() { History = true, Id = "rId5" };

            Run run31 = new Run() { RsidRunProperties = "00366D29" };

            RunProperties runProperties30 = new RunProperties();
            RunStyle runStyle2 = new RunStyle() { Val = "Hyperlink" };
            RunFonts runFonts26 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            FontSize fontSize23 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript23 = new FontSizeComplexScript() { Val = "18" };

            runProperties30.Append(runStyle2);
            runProperties30.Append(runFonts26);
            runProperties30.Append(fontSize23);
            runProperties30.Append(fontSizeComplexScript23);
            Text text27 = new Text();
            text27.Text = pdetail.cEmail;

            run31.Append(runProperties30);
            run31.Append(text27);

            hyperlink2.Append(run31);

            paragraph4.Append(paragraphProperties4);
            paragraph4.Append(run27);
            paragraph4.Append(run28);
            paragraph4.Append(run29);
            paragraph4.Append(run30);
            paragraph4.Append(hyperlink2);

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

            TableCell tableCell4 = new TableCell();

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

            tableCellProperties4.Append(tableCellWidth4);

            Paragraph paragraph5 = new Paragraph() { RsidParagraphAddition = "00E67B26", RsidParagraphProperties = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties5 = new ParagraphProperties();
            ConditionalFormatStyle conditionalFormatStyle3 = new ConditionalFormatStyle() { Val = "100000000000" };

            ParagraphMarkRunProperties paragraphMarkRunProperties4 = new ParagraphMarkRunProperties();
            RunFonts runFonts27 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold22 = new Bold() { Val = false };
            Color color32 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize24 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript24 = new FontSizeComplexScript() { Val = "18" };

            paragraphMarkRunProperties4.Append(runFonts27);
            paragraphMarkRunProperties4.Append(bold22);
            paragraphMarkRunProperties4.Append(color32);
            paragraphMarkRunProperties4.Append(fontSize24);
            paragraphMarkRunProperties4.Append(fontSizeComplexScript24);

            paragraphProperties5.Append(conditionalFormatStyle3);
            paragraphProperties5.Append(paragraphMarkRunProperties4);

            Run run32 = new Run();

            RunProperties runProperties31 = new RunProperties();
            Bold bold23 = new Bold() { Val = false };
            Color color33 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties31.Append(bold23);
            runProperties31.Append(color33);
            Text text28 = new Text();
            text28.Text = "From";

            run32.Append(runProperties31);
            run32.Append(text28);

            Run run33 = new Run();

            RunProperties runProperties32 = new RunProperties();
            Bold bold24 = new Bold() { Val = false };
            Color color34 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties32.Append(bold24);
            runProperties32.Append(color34);
            Break break5 = new Break();

            run33.Append(runProperties32);
            run33.Append(break5);

            Run run34 = new Run() { RsidRunProperties = "003F5FAE" };

            RunProperties runProperties33 = new RunProperties();
            RunFonts runFonts28 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold25 = new Bold() { Val = false };
            Color color35 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties33.Append(runFonts28);
            runProperties33.Append(bold25);
            runProperties33.Append(color35);
            Text text29 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text29.Text = "Dr. ";

            run34.Append(runProperties33);
            run34.Append(text29);

            Run run35 = new Run();

            RunProperties runProperties34 = new RunProperties();
            RunFonts runFonts29 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold26 = new Bold() { Val = false };
            Color color36 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties34.Append(runFonts29);
            runProperties34.Append(bold26);
            runProperties34.Append(color36);
            Text text30 = new Text();
            text30.Text = persondetail.FirstName;

            run35.Append(runProperties34);
            run35.Append(text30);

            Run run36 = new Run() { RsidRunProperties = "003F5FAE" };

            RunProperties runProperties35 = new RunProperties();
            RunFonts runFonts30 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold27 = new Bold() { Val = false };
            Color color37 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties35.Append(runFonts30);
            runProperties35.Append(bold27);
            runProperties35.Append(color37);
            Text text31 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text31.Text = " ";

            run36.Append(runProperties35);
            run36.Append(text31);
            ProofError proofError3 = new ProofError() { Type = ProofingErrorValues.SpellStart };

            Run run37 = new Run() { RsidRunProperties = "003F5FAE" };

            RunProperties runProperties36 = new RunProperties();
            RunFonts runFonts31 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold28 = new Bold() { Val = false };
            Color color38 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties36.Append(runFonts31);
            runProperties36.Append(bold28);
            runProperties36.Append(color38);
            Text text32 = new Text();
            text32.Text = persondetail.LastName;

            run37.Append(runProperties36);
            run37.Append(text32);
            ProofError proofError4 = new ProofError() { Type = ProofingErrorValues.SpellEnd };

            Run run38 = new Run();

            RunProperties runProperties37 = new RunProperties();
            RunFonts runFonts32 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold29 = new Bold() { Val = false };
            Color color39 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties37.Append(runFonts32);
            runProperties37.Append(bold29);
            runProperties37.Append(color39);
            Break break6 = new Break();

            run38.Append(runProperties37);
            run38.Append(break6);

            Run run39 = new Run() { RsidRunProperties = "003F5FAE" };

            RunProperties runProperties38 = new RunProperties();
            RunFonts runFonts33 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Color color40 = new Color() { Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF" };
            FontSize fontSize25 = new FontSize() { Val = "12" };
            FontSizeComplexScript fontSizeComplexScript25 = new FontSizeComplexScript() { Val = "18" };

            runProperties38.Append(runFonts33);
            runProperties38.Append(color40);
            runProperties38.Append(fontSize25);
            runProperties38.Append(fontSizeComplexScript25);
            Text text33 = new Text();
            text33.Text = "Website";

            run39.Append(runProperties38);
            run39.Append(text33);

            Run run40 = new Run();

            RunProperties runProperties39 = new RunProperties();
            RunFonts runFonts34 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold30 = new Bold() { Val = false };
            Color color41 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize26 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript26 = new FontSizeComplexScript() { Val = "18" };

            runProperties39.Append(runFonts34);
            runProperties39.Append(bold30);
            runProperties39.Append(color41);
            runProperties39.Append(fontSize26);
            runProperties39.Append(fontSizeComplexScript26);
            Text text34 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text34.Text = " : ";

            run40.Append(runProperties39);
            run40.Append(text34);

            Hyperlink hyperlink3 = new Hyperlink() { History = true, Id = "rId6" };

            Run run41 = new Run() { RsidRunProperties = "00366D29" };

            RunProperties runProperties40 = new RunProperties();
            RunStyle runStyle3 = new RunStyle() { Val = "Hyperlink" };
            RunFonts runFonts35 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            FontSize fontSize27 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript27 = new FontSizeComplexScript() { Val = "18" };

            runProperties40.Append(runStyle3);
            runProperties40.Append(runFonts35);
            runProperties40.Append(fontSize27);
            runProperties40.Append(fontSizeComplexScript27);
            Text text35 = new Text();
            text35.Text = "www.shivam.com";

            run41.Append(runProperties40);
            run41.Append(text35);

            hyperlink3.Append(run41);

            Run run42 = new Run();

            RunProperties runProperties41 = new RunProperties();
            RunFonts runFonts36 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold31 = new Bold() { Val = false };
            Color color42 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize28 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript28 = new FontSizeComplexScript() { Val = "18" };

            runProperties41.Append(runFonts36);
            runProperties41.Append(bold31);
            runProperties41.Append(color42);
            runProperties41.Append(fontSize28);
            runProperties41.Append(fontSizeComplexScript28);
            Break break7 = new Break();

            run42.Append(runProperties41);
            run42.Append(break7);

            Run run43 = new Run();

            RunProperties runProperties42 = new RunProperties();
            RunFonts runFonts37 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Color color43 = new Color() { Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF" };
            FontSize fontSize29 = new FontSize() { Val = "12" };
            FontSizeComplexScript fontSizeComplexScript29 = new FontSizeComplexScript() { Val = "18" };

            runProperties42.Append(runFonts37);
            runProperties42.Append(color43);
            runProperties42.Append(fontSize29);
            runProperties42.Append(fontSizeComplexScript29);
            Text text36 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text36.Text = "City        ";

            run43.Append(runProperties42);
            run43.Append(text36);

            Run run44 = new Run();

            RunProperties runProperties43 = new RunProperties();
            RunFonts runFonts38 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold32 = new Bold() { Val = false };
            Color color44 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize30 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript30 = new FontSizeComplexScript() { Val = "18" };

            runProperties43.Append(runFonts38);
            runProperties43.Append(bold32);
            runProperties43.Append(color44);
            runProperties43.Append(fontSize30);
            runProperties43.Append(fontSizeComplexScript30);
            Text text37 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text37.Text = persondetail.city;

            run44.Append(runProperties43);
            run44.Append(text37);

            paragraph5.Append(paragraphProperties5);
            paragraph5.Append(run32);
            paragraph5.Append(run33);
            paragraph5.Append(run34);
            paragraph5.Append(run35);
            paragraph5.Append(run36);
            paragraph5.Append(proofError3);
            paragraph5.Append(run37);
            paragraph5.Append(proofError4);
            paragraph5.Append(run38);
            paragraph5.Append(run39);
            paragraph5.Append(run40);
            paragraph5.Append(hyperlink3);
            paragraph5.Append(run42);
            paragraph5.Append(run43);
            paragraph5.Append(run44);

            Paragraph paragraph6 = new Paragraph() { RsidParagraphAddition = "00E67B26", RsidParagraphProperties = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties6 = new ParagraphProperties();
            ConditionalFormatStyle conditionalFormatStyle4 = new ConditionalFormatStyle() { Val = "100000000000" };

            ParagraphMarkRunProperties paragraphMarkRunProperties5 = new ParagraphMarkRunProperties();
            RunFonts runFonts39 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold33 = new Bold() { Val = false };
            Color color45 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize31 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript31 = new FontSizeComplexScript() { Val = "18" };

            paragraphMarkRunProperties5.Append(runFonts39);
            paragraphMarkRunProperties5.Append(bold33);
            paragraphMarkRunProperties5.Append(color45);
            paragraphMarkRunProperties5.Append(fontSize31);
            paragraphMarkRunProperties5.Append(fontSizeComplexScript31);

            paragraphProperties6.Append(conditionalFormatStyle4);
            paragraphProperties6.Append(paragraphMarkRunProperties5);

            Run run45 = new Run();

            RunProperties runProperties44 = new RunProperties();
            RunFonts runFonts40 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Color color46 = new Color() { Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF" };
            FontSize fontSize32 = new FontSize() { Val = "12" };
            FontSizeComplexScript fontSizeComplexScript32 = new FontSizeComplexScript() { Val = "18" };

            runProperties44.Append(runFonts40);
            runProperties44.Append(color46);
            runProperties44.Append(fontSize32);
            runProperties44.Append(fontSizeComplexScript32);
            Text text38 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text38.Text = "Street :    ";

            run45.Append(runProperties44);
            run45.Append(text38);

            Run run46 = new Run();

            RunProperties runProperties45 = new RunProperties();
            RunFonts runFonts41 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold34 = new Bold() { Val = false };
            Color color47 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize33 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript33 = new FontSizeComplexScript() { Val = "18" };

            runProperties45.Append(runFonts41);
            runProperties45.Append(bold34);
            runProperties45.Append(color47);
            runProperties45.Append(fontSize33);
            runProperties45.Append(fontSizeComplexScript33);
            Text text39 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text39.Text = persondetail.streetAdd;

            run46.Append(runProperties45);
            run46.Append(text39);

            Run run47 = new Run();

            RunProperties runProperties46 = new RunProperties();
            RunFonts runFonts42 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold35 = new Bold() { Val = false };
            Color color48 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize34 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript34 = new FontSizeComplexScript() { Val = "18" };

            runProperties46.Append(runFonts42);
            runProperties46.Append(bold35);
            runProperties46.Append(color48);
            runProperties46.Append(fontSize34);
            runProperties46.Append(fontSizeComplexScript34);
            Break break8 = new Break();

            run47.Append(runProperties46);
            run47.Append(break8);

            Run run48 = new Run();

            RunProperties runProperties47 = new RunProperties();
            RunFonts runFonts43 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Color color49 = new Color() { Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF" };
            FontSize fontSize35 = new FontSize() { Val = "12" };
            FontSizeComplexScript fontSizeComplexScript35 = new FontSizeComplexScript() { Val = "18" };

            runProperties47.Append(runFonts43);
            runProperties47.Append(color49);
            runProperties47.Append(fontSize35);
            runProperties47.Append(fontSizeComplexScript35);
            Text text40 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text40.Text = "Phone :    ";

            run48.Append(runProperties47);
            run48.Append(text40);

            Run run49 = new Run();

            RunProperties runProperties48 = new RunProperties();
            RunFonts runFonts44 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold36 = new Bold() { Val = false };
            Color color50 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize36 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript36 = new FontSizeComplexScript() { Val = "18" };

            runProperties48.Append(runFonts44);
            runProperties48.Append(bold36);
            runProperties48.Append(color50);
            runProperties48.Append(fontSize36);
            runProperties48.Append(fontSizeComplexScript36);
            Text text41 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text41.Text = " ";

            run49.Append(runProperties48);
            run49.Append(text41);

            Run run50 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties49 = new RunProperties();
            RunFonts runFonts45 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold37 = new Bold() { Val = false };
            BoldComplexScript boldComplexScript6 = new BoldComplexScript() { Val = false };
            Color color51 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize37 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript37 = new FontSizeComplexScript() { Val = "18" };

            runProperties49.Append(runFonts45);
            runProperties49.Append(bold37);
            runProperties49.Append(boldComplexScript6);
            runProperties49.Append(color51);
            runProperties49.Append(fontSize37);
            runProperties49.Append(fontSizeComplexScript37);
            Text text42 = new Text();
            text42.Text = ":";

            run50.Append(runProperties49);
            run50.Append(text42);

            Run run51 = new Run();

            RunProperties runProperties50 = new RunProperties();
            RunFonts runFonts46 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold38 = new Bold() { Val = false };
            BoldComplexScript boldComplexScript7 = new BoldComplexScript() { Val = false };
            Color color52 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize38 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript38 = new FontSizeComplexScript() { Val = "18" };

            runProperties50.Append(runFonts46);
            runProperties50.Append(bold38);
            runProperties50.Append(boldComplexScript7);
            runProperties50.Append(color52);
            runProperties50.Append(fontSize38);
            runProperties50.Append(fontSizeComplexScript38);
            Text text43 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text43.Text = " ";

            run51.Append(runProperties50);
            run51.Append(text43);

            Run run52 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties51 = new RunProperties();
            RunFonts runFonts47 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold39 = new Bold() { Val = false };
            BoldComplexScript boldComplexScript8 = new BoldComplexScript() { Val = false };
            Color color53 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize39 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript39 = new FontSizeComplexScript() { Val = "18" };

            runProperties51.Append(runFonts47);
            runProperties51.Append(bold39);
            runProperties51.Append(boldComplexScript8);
            runProperties51.Append(color53);
            runProperties51.Append(fontSize39);
            runProperties51.Append(fontSizeComplexScript39);
            Text text44 = new Text();
            text44.Text = persondetail.phone;

            run52.Append(runProperties51);
            run52.Append(text44);

            paragraph6.Append(paragraphProperties6);
            paragraph6.Append(run45);
            paragraph6.Append(run46);
            paragraph6.Append(run47);
            paragraph6.Append(run48);
            paragraph6.Append(run49);
            paragraph6.Append(run50);
            paragraph6.Append(run51);
            paragraph6.Append(run52);

            Paragraph paragraph7 = new Paragraph() { RsidParagraphAddition = "003F5FAE", RsidParagraphProperties = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties7 = new ParagraphProperties();
            ConditionalFormatStyle conditionalFormatStyle5 = new ConditionalFormatStyle() { Val = "100000000000" };

            ParagraphMarkRunProperties paragraphMarkRunProperties6 = new ParagraphMarkRunProperties();
            Bold bold40 = new Bold() { Val = false };
            Color color54 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            paragraphMarkRunProperties6.Append(bold40);
            paragraphMarkRunProperties6.Append(color54);

            paragraphProperties7.Append(conditionalFormatStyle5);
            paragraphProperties7.Append(paragraphMarkRunProperties6);

            Run run53 = new Run();

            RunProperties runProperties52 = new RunProperties();
            RunFonts runFonts48 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Color color55 = new Color() { Val = "17365D", ThemeColor = ThemeColorValues.Text2, ThemeShade = "BF" };
            FontSize fontSize40 = new FontSize() { Val = "12" };
            FontSizeComplexScript fontSizeComplexScript40 = new FontSizeComplexScript() { Val = "18" };

            runProperties52.Append(runFonts48);
            runProperties52.Append(color55);
            runProperties52.Append(fontSize40);
            runProperties52.Append(fontSizeComplexScript40);
            Text text45 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text45.Text = "Email     ";

            run53.Append(runProperties52);
            run53.Append(text45);

            Run run54 = new Run();

            RunProperties runProperties53 = new RunProperties();
            RunFonts runFonts49 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold41 = new Bold() { Val = false };
            Color color56 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize41 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript41 = new FontSizeComplexScript() { Val = "18" };

            runProperties53.Append(runFonts49);
            runProperties53.Append(bold41);
            runProperties53.Append(color56);
            runProperties53.Append(fontSize41);
            runProperties53.Append(fontSizeComplexScript41);
            Text text46 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text46.Text = " ";

            run54.Append(runProperties53);
            run54.Append(text46);

            Run run55 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties54 = new RunProperties();
            RunFonts runFonts50 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold42 = new Bold() { Val = false };
            BoldComplexScript boldComplexScript9 = new BoldComplexScript() { Val = false };
            Color color57 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize42 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript42 = new FontSizeComplexScript() { Val = "18" };

            runProperties54.Append(runFonts50);
            runProperties54.Append(bold42);
            runProperties54.Append(boldComplexScript9);
            runProperties54.Append(color57);
            runProperties54.Append(fontSize42);
            runProperties54.Append(fontSizeComplexScript42);
            Text text47 = new Text();
            text47.Text = ":";

            run55.Append(runProperties54);
            run55.Append(text47);

            Run run56 = new Run();

            RunProperties runProperties55 = new RunProperties();
            RunFonts runFonts51 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            Bold bold43 = new Bold() { Val = false };
            BoldComplexScript boldComplexScript10 = new BoldComplexScript() { Val = false };
            Color color58 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };
            FontSize fontSize43 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript43 = new FontSizeComplexScript() { Val = "18" };

            runProperties55.Append(runFonts51);
            runProperties55.Append(bold43);
            runProperties55.Append(boldComplexScript10);
            runProperties55.Append(color58);
            runProperties55.Append(fontSize43);
            runProperties55.Append(fontSizeComplexScript43);
            Text text48 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text48.Text = " ";

            run56.Append(runProperties55);
            run56.Append(text48);

            Hyperlink hyperlink4 = new Hyperlink() { History = true, Id = "rId7" };

            Run run57 = new Run() { RsidRunProperties = "00366D29" };

            RunProperties runProperties56 = new RunProperties();
            RunStyle runStyle4 = new RunStyle() { Val = "Hyperlink" };
            RunFonts runFonts52 = new RunFonts() { Ascii = "Segoe UI", HighAnsi = "Segoe UI", ComplexScript = "Segoe UI" };
            FontSize fontSize44 = new FontSize() { Val = "18" };
            FontSizeComplexScript fontSizeComplexScript44 = new FontSizeComplexScript() { Val = "18" };

            runProperties56.Append(runStyle4);
            runProperties56.Append(runFonts52);
            runProperties56.Append(fontSize44);
            runProperties56.Append(fontSizeComplexScript44);
            Text text49 = new Text();
            text49.Text = persondetail.Email;

            run57.Append(runProperties56);
            run57.Append(text49);

            hyperlink4.Append(run57);

            paragraph7.Append(paragraphProperties7);
            paragraph7.Append(run53);
            paragraph7.Append(run54);
            paragraph7.Append(run55);
            paragraph7.Append(run56);
            paragraph7.Append(hyperlink4);

            tableCell4.Append(tableCellProperties4);
            tableCell4.Append(paragraph5);
            tableCell4.Append(paragraph6);
            tableCell4.Append(paragraph7);

            tableRow3.Append(tableRowProperties3);
            tableRow3.Append(tableCell3);
            tableRow3.Append(tableCell4);

            TableRow tableRow4 = new TableRow() { RsidTableRowAddition = "00E67B26", RsidTableRowProperties = "00E67B26" };

            TableRowProperties tableRowProperties4 = new TableRowProperties();
            ConditionalFormatStyle conditionalFormatStyle6 = new ConditionalFormatStyle() { Val = "000000100000" };
            TableRowHeight tableRowHeight4 = new TableRowHeight() { Val = (UInt32Value)284U };

            tableRowProperties4.Append(conditionalFormatStyle6);
            tableRowProperties4.Append(tableRowHeight4);

            TableCell tableCell5 = new TableCell();

            TableCellProperties tableCellProperties5 = new TableCellProperties();
            ConditionalFormatStyle conditionalFormatStyle7 = new ConditionalFormatStyle() { Val = "001000000000" };
            TableCellWidth tableCellWidth5 = new TableCellWidth() { Width = "4741", Type = TableWidthUnitValues.Dxa };

            tableCellProperties5.Append(conditionalFormatStyle7);
            tableCellProperties5.Append(tableCellWidth5);

            Paragraph paragraph8 = new Paragraph() { RsidParagraphAddition = "00E67B26", RsidParagraphProperties = "003F5FAE", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties8 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties7 = new ParagraphMarkRunProperties();
            Bold bold44 = new Bold() { Val = false };
            Color color59 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            paragraphMarkRunProperties7.Append(bold44);
            paragraphMarkRunProperties7.Append(color59);

            paragraphProperties8.Append(paragraphMarkRunProperties7);

            paragraph8.Append(paragraphProperties8);

            tableCell5.Append(tableCellProperties5);
            tableCell5.Append(paragraph8);

            TableCell tableCell6 = new TableCell();

            TableCellProperties tableCellProperties6 = new TableCellProperties();
            TableCellWidth tableCellWidth6 = new TableCellWidth() { Width = "4742", Type = TableWidthUnitValues.Dxa };

            tableCellProperties6.Append(tableCellWidth6);

            Paragraph paragraph9 = new Paragraph() { RsidParagraphAddition = "00E67B26", RsidParagraphProperties = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties9 = new ParagraphProperties();
            ConditionalFormatStyle conditionalFormatStyle8 = new ConditionalFormatStyle() { Val = "000000100000" };

            ParagraphMarkRunProperties paragraphMarkRunProperties8 = new ParagraphMarkRunProperties();
            Bold bold45 = new Bold();
            Color color60 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            paragraphMarkRunProperties8.Append(bold45);
            paragraphMarkRunProperties8.Append(color60);

            paragraphProperties9.Append(conditionalFormatStyle8);
            paragraphProperties9.Append(paragraphMarkRunProperties8);

            paragraph9.Append(paragraphProperties9);

            tableCell6.Append(tableCellProperties6);
            tableCell6.Append(paragraph9);

            tableRow4.Append(tableRowProperties4);
            tableRow4.Append(tableCell5);
            tableRow4.Append(tableCell6);

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

            Paragraph paragraph10 = new Paragraph() { RsidParagraphAddition = "003F5FAE", RsidRunAdditionDefault = "003F5FAE" };

            ParagraphProperties paragraphProperties10 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties9 = new ParagraphMarkRunProperties();
            Bold bold46 = new Bold();
            Color color61 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            paragraphMarkRunProperties9.Append(bold46);
            paragraphMarkRunProperties9.Append(color61);

            paragraphProperties10.Append(paragraphMarkRunProperties9);

            paragraph10.Append(paragraphProperties10);

            Table table3 = new Table();

            TableProperties tableProperties3 = new TableProperties();
            TableStyle tableStyle3 = new TableStyle() { Val = "LightShading-Accent1" };
            TableWidth tableWidth3 = new TableWidth() { Width = "0", Type = TableWidthUnitValues.Auto };
            TableIndentation tableIndentation2 = new TableIndentation() { Width = 1, Type = TableWidthUnitValues.Dxa };
            TableLook tableLook3 = new TableLook() { Val = "04A0" };

            tableProperties3.Append(tableStyle3);
            tableProperties3.Append(tableWidth3);
            tableProperties3.Append(tableIndentation2);
            tableProperties3.Append(tableLook3);

            TableGrid tableGrid3 = new TableGrid();
            GridColumn gridColumn4 = new GridColumn() { Width = "3132" };
            GridColumn gridColumn5 = new GridColumn() { Width = "3132" };
            GridColumn gridColumn6 = new GridColumn() { Width = "3132" };

            tableGrid3.Append(gridColumn4);
            tableGrid3.Append(gridColumn5);
            tableGrid3.Append(gridColumn6);

            TableRow tableRow5 = new TableRow() { RsidTableRowAddition = "00E67B26", RsidTableRowProperties = "00E67B26" };

            TableRowProperties tableRowProperties5 = new TableRowProperties();
            ConditionalFormatStyle conditionalFormatStyle9 = new ConditionalFormatStyle() { Val = "100000000000" };
            TableRowHeight tableRowHeight5 = new TableRowHeight() { Val = (UInt32Value)330U };

            tableRowProperties5.Append(conditionalFormatStyle9);
            tableRowProperties5.Append(tableRowHeight5);

            TableCell tableCell7 = new TableCell();

            TableCellProperties tableCellProperties7 = new TableCellProperties();
            ConditionalFormatStyle conditionalFormatStyle10 = new ConditionalFormatStyle() { Val = "001000000000" };
            TableCellWidth tableCellWidth7 = new TableCellWidth() { Width = "3132", Type = TableWidthUnitValues.Dxa };

            tableCellProperties7.Append(conditionalFormatStyle10);
            tableCellProperties7.Append(tableCellWidth7);

            Paragraph paragraph11 = new Paragraph() { RsidParagraphMarkRevision = "00E67B26", RsidParagraphAddition = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties11 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties10 = new ParagraphMarkRunProperties();
            Color color62 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            paragraphMarkRunProperties10.Append(color62);

            paragraphProperties11.Append(paragraphMarkRunProperties10);

            Run run58 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties57 = new RunProperties();
            Color color63 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties57.Append(color63);
            Text text50 = new Text();
            text50.Text = "Invoiced Date";

            run58.Append(runProperties57);
            run58.Append(text50);

            paragraph11.Append(paragraphProperties11);
            paragraph11.Append(run58);

            tableCell7.Append(tableCellProperties7);
            tableCell7.Append(paragraph11);

            TableCell tableCell8 = new TableCell();

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

            tableCellProperties8.Append(tableCellWidth8);

            Paragraph paragraph12 = new Paragraph() { RsidParagraphMarkRevision = "00E67B26", RsidParagraphAddition = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties12 = new ParagraphProperties();
            ConditionalFormatStyle conditionalFormatStyle11 = new ConditionalFormatStyle() { Val = "100000000000" };

            ParagraphMarkRunProperties paragraphMarkRunProperties11 = new ParagraphMarkRunProperties();
            Color color64 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            paragraphMarkRunProperties11.Append(color64);

            paragraphProperties12.Append(conditionalFormatStyle11);
            paragraphProperties12.Append(paragraphMarkRunProperties11);

            Run run59 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties58 = new RunProperties();
            Color color65 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties58.Append(color65);
            Text text51 = new Text();
            text51.Text = "Session";

            run59.Append(runProperties58);
            run59.Append(text51);

            paragraph12.Append(paragraphProperties12);
            paragraph12.Append(run59);

            tableCell8.Append(tableCellProperties8);
            tableCell8.Append(paragraph12);

            TableCell tableCell9 = new TableCell();

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

            tableCellProperties9.Append(tableCellWidth9);

            Paragraph paragraph13 = new Paragraph() { RsidParagraphMarkRevision = "00E67B26", RsidParagraphAddition = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties13 = new ParagraphProperties();
            ConditionalFormatStyle conditionalFormatStyle12 = new ConditionalFormatStyle() { Val = "100000000000" };

            ParagraphMarkRunProperties paragraphMarkRunProperties12 = new ParagraphMarkRunProperties();
            Color color66 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            paragraphMarkRunProperties12.Append(color66);

            paragraphProperties13.Append(conditionalFormatStyle12);
            paragraphProperties13.Append(paragraphMarkRunProperties12);

            Run run60 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties59 = new RunProperties();
            Color color67 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties59.Append(color67);
            Text text52 = new Text();
            text52.Text = "Fees";

            run60.Append(runProperties59);
            run60.Append(text52);

            paragraph13.Append(paragraphProperties13);
            paragraph13.Append(run60);

            tableCell9.Append(tableCellProperties9);
            tableCell9.Append(paragraph13);

            tableRow5.Append(tableRowProperties5);
            tableRow5.Append(tableCell7);
            tableRow5.Append(tableCell8);
            tableRow5.Append(tableCell9);

            table3.Append(tableProperties3);
            table3.Append(tableGrid3);
            table3.Append(tableRow5);

            foreach (var item in InvoiceD)
            {
                startDate = item.Appointment.startDate.ToString();
                endDate = item.Appointment.endDate.ToString();
                TableRow tableRow6 = new TableRow() { RsidTableRowAddition = "00E67B26", RsidTableRowProperties = "00E67B26" };

                TableRowProperties tableRowProperties6 = new TableRowProperties();
                ConditionalFormatStyle conditionalFormatStyle13 = new ConditionalFormatStyle() { Val = "000000100000" };
                TableRowHeight tableRowHeight6 = new TableRowHeight() { Val = (UInt32Value)330U };

                tableRowProperties6.Append(conditionalFormatStyle13);
                tableRowProperties6.Append(tableRowHeight6);

                TableCell tableCell10 = new TableCell();

                TableCellProperties tableCellProperties10 = new TableCellProperties();
                ConditionalFormatStyle conditionalFormatStyle14 = new ConditionalFormatStyle() { Val = "001000000000" };
                TableCellWidth tableCellWidth10 = new TableCellWidth() { Width = "3132", Type = TableWidthUnitValues.Dxa };

                tableCellProperties10.Append(conditionalFormatStyle14);
                tableCellProperties10.Append(tableCellWidth10);

                Paragraph paragraph14 = new Paragraph() { RsidParagraphMarkRevision = "00E67B26", RsidParagraphAddition = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

                ParagraphProperties paragraphProperties14 = new ParagraphProperties();

                ParagraphMarkRunProperties paragraphMarkRunProperties13 = new ParagraphMarkRunProperties();
                Color color68 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

                paragraphMarkRunProperties13.Append(color68);

                paragraphProperties14.Append(paragraphMarkRunProperties13);

                Run run61 = new Run();

                RunProperties runProperties60 = new RunProperties();
                RunFonts runFonts53 = new RunFonts() { Ascii = "Verdana", HighAnsi = "Verdana" };
                Color color69 = new Color() { Val = "000000" };
                FontSize fontSize45 = new FontSize() { Val = "15" };
                FontSizeComplexScript fontSizeComplexScript45 = new FontSizeComplexScript() { Val = "15" };

                runProperties60.Append(runFonts53);
                runProperties60.Append(color69);
                runProperties60.Append(fontSize45);
                runProperties60.Append(fontSizeComplexScript45);
                Text text53 = new Text();
                text53.Text = item.InvoicedDate.ToString();

                run61.Append(runProperties60);
                run61.Append(text53);

                paragraph14.Append(paragraphProperties14);
                paragraph14.Append(run61);

                tableCell10.Append(tableCellProperties10);
                tableCell10.Append(paragraph14);

                TableCell tableCell11 = new TableCell();

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

                tableCellProperties11.Append(tableCellWidth11);

                Paragraph paragraph15 = new Paragraph() { RsidParagraphMarkRevision = "00E67B26", RsidParagraphAddition = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

                ParagraphProperties paragraphProperties15 = new ParagraphProperties();
                ConditionalFormatStyle conditionalFormatStyle15 = new ConditionalFormatStyle() { Val = "000000100000" };

                ParagraphMarkRunProperties paragraphMarkRunProperties14 = new ParagraphMarkRunProperties();
                Color color70 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

                paragraphMarkRunProperties14.Append(color70);

                paragraphProperties15.Append(conditionalFormatStyle15);
                paragraphProperties15.Append(paragraphMarkRunProperties14);

                Run run62 = new Run() { RsidRunProperties = "00E67B26" };

                RunProperties runProperties61 = new RunProperties();
                Color color71 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

                runProperties61.Append(color71);
                Text text54 = new Text();
                text54.Text = item.SessionName;

                run62.Append(runProperties61);
                run62.Append(text54);

                paragraph15.Append(paragraphProperties15);
                paragraph15.Append(run62);

                tableCell11.Append(tableCellProperties11);
                tableCell11.Append(paragraph15);

                TableCell tableCell12 = new TableCell();

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

                tableCellProperties12.Append(tableCellWidth12);

                Paragraph paragraph16 = new Paragraph() { RsidParagraphMarkRevision = "00E67B26", RsidParagraphAddition = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

                ParagraphProperties paragraphProperties16 = new ParagraphProperties();
                ConditionalFormatStyle conditionalFormatStyle16 = new ConditionalFormatStyle() { Val = "000000100000" };

                ParagraphMarkRunProperties paragraphMarkRunProperties15 = new ParagraphMarkRunProperties();
                Color color72 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

                paragraphMarkRunProperties15.Append(color72);

                paragraphProperties16.Append(conditionalFormatStyle16);
                paragraphProperties16.Append(paragraphMarkRunProperties15);

                Run run63 = new Run() { RsidRunProperties = "00E67B26" };

                RunProperties runProperties62 = new RunProperties();
                Color color73 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

                runProperties62.Append(color73);
                Text text55 = new Text();
                text55.Text = item.Appointment.Total.ToString();

                run63.Append(runProperties62);
                run63.Append(text55);

                paragraph16.Append(paragraphProperties16);
                paragraph16.Append(run63);

                tableCell12.Append(tableCellProperties12);
                tableCell12.Append(paragraph16);

                tableRow6.Append(tableRowProperties6);
                tableRow6.Append(tableCell10);
                tableRow6.Append(tableCell11);
                tableRow6.Append(tableCell12);

                table3.Append(tableRow6);
            }
            //End loop
            Paragraph paragraph23 = new Paragraph() { RsidParagraphMarkRevision = "003F5FAE", RsidParagraphAddition = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties23 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties22 = new ParagraphMarkRunProperties();
            Bold bold47 = new Bold();
            Color color83 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            paragraphMarkRunProperties22.Append(bold47);
            paragraphMarkRunProperties22.Append(color83);

            paragraphProperties23.Append(paragraphMarkRunProperties22);

            paragraph23.Append(paragraphProperties23);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(table2);
            tableCell2.Append(paragraph10);
            tableCell2.Append(table3);
            tableCell2.Append(paragraph23);

            tableRow2.Append(tableRowProperties2);
            tableRow2.Append(tableCell2);

            TableRow tableRow9 = new TableRow() { RsidTableRowAddition = "003F5FAE", RsidTableRowProperties = "00E67B26" };

            TableRowProperties tableRowProperties9 = new TableRowProperties();
            TableRowHeight tableRowHeight9 = new TableRowHeight() { Val = (UInt32Value)394U };

            tableRowProperties9.Append(tableRowHeight9);

            TableCell tableCell19 = new TableCell();

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

            tableCellProperties19.Append(tableCellWidth19);

            Table table4 = new Table();

            TableProperties tableProperties4 = new TableProperties();
            TableStyle tableStyle4 = new TableStyle() { Val = "LightShading-Accent1" };
            TableWidth tableWidth4 = new TableWidth() { Width = "0", Type = TableWidthUnitValues.Auto };
            TableIndentation tableIndentation3 = new TableIndentation() { Width = 1, Type = TableWidthUnitValues.Dxa };
            TableLook tableLook4 = new TableLook() { Val = "04A0" };

            tableProperties4.Append(tableStyle4);
            tableProperties4.Append(tableWidth4);
            tableProperties4.Append(tableIndentation3);
            tableProperties4.Append(tableLook4);

            TableGrid tableGrid4 = new TableGrid();
            GridColumn gridColumn7 = new GridColumn() { Width = "3197" };
            GridColumn gridColumn8 = new GridColumn() { Width = "3107" };
            GridColumn gridColumn9 = new GridColumn() { Width = "3105" };

            tableGrid4.Append(gridColumn7);
            tableGrid4.Append(gridColumn8);
            tableGrid4.Append(gridColumn9);

            TableRow tableRow10 = new TableRow() { RsidTableRowAddition = "00E67B26", RsidTableRowProperties = "00905126" };

            TableRowProperties tableRowProperties10 = new TableRowProperties();
            ConditionalFormatStyle conditionalFormatStyle24 = new ConditionalFormatStyle() { Val = "100000000000" };
            TableRowHeight tableRowHeight10 = new TableRowHeight() { Val = (UInt32Value)51U };

            tableRowProperties10.Append(conditionalFormatStyle24);
            tableRowProperties10.Append(tableRowHeight10);

            TableCell tableCell20 = new TableCell();

            TableCellProperties tableCellProperties20 = new TableCellProperties();
            ConditionalFormatStyle conditionalFormatStyle25 = new ConditionalFormatStyle() { Val = "001000000000" };
            TableCellWidth tableCellWidth20 = new TableCellWidth() { Width = "3197", Type = TableWidthUnitValues.Dxa };

            tableCellProperties20.Append(conditionalFormatStyle25);
            tableCellProperties20.Append(tableCellWidth20);

            Paragraph paragraph24 = new Paragraph() { RsidParagraphAddition = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties24 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties23 = new ParagraphMarkRunProperties();
            Bold bold48 = new Bold() { Val = false };
            Color color84 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            paragraphMarkRunProperties23.Append(bold48);
            paragraphMarkRunProperties23.Append(color84);

            paragraphProperties24.Append(paragraphMarkRunProperties23);

            Run run67 = new Run();

            RunProperties runProperties66 = new RunProperties();
            Bold bold49 = new Bold() { Val = false };
            Color color85 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties66.Append(bold49);
            runProperties66.Append(color85);
            Text text59 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text59.Text = "  ";

            run67.Append(runProperties66);
            run67.Append(text59);

            paragraph24.Append(paragraphProperties24);
            paragraph24.Append(run67);

            tableCell20.Append(tableCellProperties20);
            tableCell20.Append(paragraph24);

            TableCell tableCell21 = new TableCell();

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

            tableCellProperties21.Append(tableCellWidth21);

            Paragraph paragraph25 = new Paragraph() { RsidParagraphMarkRevision = "00E67B26", RsidParagraphAddition = "00E67B26", RsidParagraphProperties = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties25 = new ParagraphProperties();
            ConditionalFormatStyle conditionalFormatStyle26 = new ConditionalFormatStyle() { Val = "100000000000" };

            ParagraphMarkRunProperties paragraphMarkRunProperties24 = new ParagraphMarkRunProperties();
            Bold bold50 = new Bold() { Val = false };
            Color color86 = new Color() { Val = "FF0000" };

            paragraphMarkRunProperties24.Append(bold50);
            paragraphMarkRunProperties24.Append(color86);

            paragraphProperties25.Append(conditionalFormatStyle26);
            paragraphProperties25.Append(paragraphMarkRunProperties24);

            Run run68 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties67 = new RunProperties();
            Bold bold51 = new Bold() { Val = false };
            Color color87 = new Color() { Val = "FF0000" };

            runProperties67.Append(bold51);
            runProperties67.Append(color87);
            Text text60 = new Text();
            text60.Text = "Total";

            run68.Append(runProperties67);
            run68.Append(text60);

            paragraph25.Append(paragraphProperties25);
            paragraph25.Append(run68);

            tableCell21.Append(tableCellProperties21);
            tableCell21.Append(paragraph25);

            TableCell tableCell22 = new TableCell();

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

            tableCellProperties22.Append(tableCellWidth22);

            Paragraph paragraph26 = new Paragraph() { RsidParagraphMarkRevision = "00E67B26", RsidParagraphAddition = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties26 = new ParagraphProperties();
            ConditionalFormatStyle conditionalFormatStyle27 = new ConditionalFormatStyle() { Val = "100000000000" };

            ParagraphMarkRunProperties paragraphMarkRunProperties25 = new ParagraphMarkRunProperties();
            Color color88 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            paragraphMarkRunProperties25.Append(color88);

            paragraphProperties26.Append(conditionalFormatStyle27);
            paragraphProperties26.Append(paragraphMarkRunProperties25);

            Run run69 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties68 = new RunProperties();
            Color color89 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties68.Append(color89);
            Text text61 = new Text();
            text61.Text = total.ToString();

            run69.Append(runProperties68);
            run69.Append(text61);

            paragraph26.Append(paragraphProperties26);
            paragraph26.Append(run69);

            tableCell22.Append(tableCellProperties22);
            tableCell22.Append(paragraph26);

            tableRow10.Append(tableRowProperties10);
            tableRow10.Append(tableCell20);
            tableRow10.Append(tableCell21);
            tableRow10.Append(tableCell22);

            table4.Append(tableProperties4);
            table4.Append(tableGrid4);
            table4.Append(tableRow10);

            Paragraph paragraph27 = new Paragraph() { RsidParagraphAddition = "003F5FAE", RsidRunAdditionDefault = "003F5FAE" };

            ParagraphProperties paragraphProperties27 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties26 = new ParagraphMarkRunProperties();
            Bold bold52 = new Bold();
            Color color90 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            paragraphMarkRunProperties26.Append(bold52);
            paragraphMarkRunProperties26.Append(color90);

            paragraphProperties27.Append(paragraphMarkRunProperties26);

            paragraph27.Append(paragraphProperties27);

            tableCell19.Append(tableCellProperties19);
            tableCell19.Append(table4);
            tableCell19.Append(paragraph27);

            tableRow9.Append(tableRowProperties9);
            tableRow9.Append(tableCell19);

            TableRow tableRow11 = new TableRow() { RsidTableRowAddition = "00E67B26", RsidTableRowProperties = "00E67B26" };

            TableRowProperties tableRowProperties11 = new TableRowProperties();
            TableRowHeight tableRowHeight11 = new TableRowHeight() { Val = (UInt32Value)330U };

            tableRowProperties11.Append(tableRowHeight11);

            TableCell tableCell23 = new TableCell();

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

            tableCellProperties23.Append(tableCellWidth23);

            Paragraph paragraph28 = new Paragraph() { RsidParagraphAddition = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties28 = new ParagraphProperties();

            ParagraphMarkRunProperties paragraphMarkRunProperties27 = new ParagraphMarkRunProperties();
            Bold bold53 = new Bold();
            Color color91 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            paragraphMarkRunProperties27.Append(bold53);
            paragraphMarkRunProperties27.Append(color91);

            paragraphProperties28.Append(paragraphMarkRunProperties27);

            paragraph28.Append(paragraphProperties28);

            tableCell23.Append(tableCellProperties23);
            tableCell23.Append(paragraph28);

            tableRow11.Append(tableRowProperties11);
            tableRow11.Append(tableCell23);

            TableRow tableRow12 = new TableRow() { RsidTableRowAddition = "00E67B26", RsidTableRowProperties = "00E67B26" };

            TableRowProperties tableRowProperties12 = new TableRowProperties();
            TableRowHeight tableRowHeight12 = new TableRowHeight() { Val = (UInt32Value)708U };

            tableRowProperties12.Append(tableRowHeight12);

            TableCell tableCell24 = new TableCell();

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

            tableCellProperties24.Append(tableCellWidth24);

            Paragraph paragraph29 = new Paragraph() { RsidParagraphAddition = "00E67B26", RsidParagraphProperties = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties29 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId2 = new ParagraphStyleId() { Val = "Heading5" };
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines() { Before = "13", After = "38" };

            ParagraphMarkRunProperties paragraphMarkRunProperties28 = new ParagraphMarkRunProperties();
            Bold bold54 = new Bold();
            Color color92 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            paragraphMarkRunProperties28.Append(bold54);
            paragraphMarkRunProperties28.Append(color92);

            paragraphProperties29.Append(paragraphStyleId2);
            paragraphProperties29.Append(spacingBetweenLines1);
            paragraphProperties29.Append(paragraphMarkRunProperties28);

            Run run70 = new Run();

            RunProperties runProperties69 = new RunProperties();
            Bold bold55 = new Bold();
            Color color93 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties69.Append(bold55);
            runProperties69.Append(color93);
            Text text62 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text62.Text = "Invoice Generated ";

            run70.Append(runProperties69);
            run70.Append(text62);

            Run run71 = new Run();

            RunProperties runProperties70 = new RunProperties();
            Bold bold56 = new Bold();
            Color color94 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties70.Append(bold56);
            runProperties70.Append(color94);
            Text text63 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text63.Text = "For ";

            run71.Append(runProperties70);
            run71.Append(text63);

            Run run72 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties71 = new RunProperties();
            Bold bold57 = new Bold();
            Color color95 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties71.Append(bold57);
            runProperties71.Append(color95);
            Text text64 = new Text();
            text64.Text = "-";

            run72.Append(runProperties71);
            run72.Append(text64);

            Run run73 = new Run();

            RunProperties runProperties72 = new RunProperties();
            Bold bold58 = new Bold();
            Color color96 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties72.Append(bold58);
            runProperties72.Append(color96);
            Text text65 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text65.Text = " ";

            run73.Append(runProperties72);
            run73.Append(text65);

            Run run74 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties73 = new RunProperties();
            Bold bold59 = new Bold();
            Color color97 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties73.Append(bold59);
            runProperties73.Append(color97);
            Text text66 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text66.Text = startDate;

            run74.Append(runProperties73);
            run74.Append(text66);

            Run run75 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties74 = new RunProperties();
            Bold bold60 = new Bold();
            Color color98 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties74.Append(bold60);
            runProperties74.Append(color98);
            Text text67 = new Text();
            text67.Text = " to ";

            run75.Append(runProperties74);
            run75.Append(text67);

            Run run76 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties75 = new RunProperties();
            Bold bold61 = new Bold();
            Color color99 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties75.Append(bold61);
            runProperties75.Append(color99);
            Text text68 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text68.Text = endDate;

            run76.Append(runProperties75);
            run76.Append(text68);

            Run run77 = new Run();

            RunProperties runProperties76 = new RunProperties();
            Bold bold62 = new Bold();
            Color color100 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties76.Append(bold62);
            runProperties76.Append(color100);
            Text text69 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text69.Text = " ";

            run77.Append(runProperties76);
            run77.Append(text69);

            Run run78 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties77 = new RunProperties();
            Color color101 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties77.Append(color101);
            Text text70 = new Text();
            text70.Text = "period";

            run78.Append(runProperties77);
            run78.Append(text70);

            Run run79 = new Run();

            RunProperties runProperties78 = new RunProperties();
            Color color102 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties78.Append(color102);
            Text text71 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text71.Text = " ";

            run79.Append(runProperties78);
            run79.Append(text71);

            Run run80 = new Run();

            RunProperties runProperties79 = new RunProperties();
            Color color103 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties79.Append(color103);
            Break break9 = new Break();

            run80.Append(runProperties79);
            run80.Append(break9);
            ProofError proofError5 = new ProofError() { Type = ProofingErrorValues.GrammarStart };

            Run run81 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties80 = new RunProperties();
            Bold bold63 = new Bold();
            Color color104 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties80.Append(bold63);
            runProperties80.Append(color104);
            Text text72 = new Text();
            text72.Text = "For";

            run81.Append(runProperties80);
            run81.Append(text72);
            ProofError proofError6 = new ProofError() { Type = ProofingErrorValues.GrammarEnd };

            Run run82 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties81 = new RunProperties();
            Bold bold64 = new Bold();
            Color color105 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties81.Append(bold64);
            runProperties81.Append(color105);
            Text text73 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text73.Text = " practice";

            run82.Append(runProperties81);
            run82.Append(text73);

            Run run83 = new Run();

            RunProperties runProperties82 = new RunProperties();
            Bold bold65 = new Bold();
            Color color106 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties82.Append(bold65);
            runProperties82.Append(color106);
            Text text74 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text74.Text = " ";

            run83.Append(runProperties82);
            run83.Append(text74);

            Run run84 = new Run();

            RunProperties runProperties83 = new RunProperties();
            Color color107 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties83.Append(color107);
            Text text75 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text75.Text = "- ";

            run84.Append(runProperties83);
            run84.Append(text75);

            Run run85 = new Run() { RsidRunProperties = "00E67B26" };

            RunProperties runProperties84 = new RunProperties();
            Bold bold66 = new Bold();
            Color color108 = new Color() { Val = "000000", ThemeColor = ThemeColorValues.Text1 };

            runProperties84.Append(bold66);
            runProperties84.Append(color108);
            Text text76 = new Text();
            text76.Text = pdetail.Name;

            run85.Append(runProperties84);
            run85.Append(text76);

            paragraph29.Append(paragraphProperties29);
            paragraph29.Append(run70);
            paragraph29.Append(run71);
            paragraph29.Append(run72);
            paragraph29.Append(run73);
            paragraph29.Append(run74);
            paragraph29.Append(run75);
            paragraph29.Append(run76);
            paragraph29.Append(run77);
            paragraph29.Append(run78);
            paragraph29.Append(run79);
            paragraph29.Append(run80);
            paragraph29.Append(proofError5);
            paragraph29.Append(run81);
            paragraph29.Append(proofError6);
            paragraph29.Append(run82);
            paragraph29.Append(run83);
            paragraph29.Append(run84);
            paragraph29.Append(run85);

            tableCell24.Append(tableCellProperties24);
            tableCell24.Append(paragraph29);

            tableRow12.Append(tableRowProperties12);
            tableRow12.Append(tableCell24);

            TableRow tableRow13 = new TableRow() { RsidTableRowAddition = "00E67B26", RsidTableRowProperties = "00E67B26" };

            TableRowProperties tableRowProperties13 = new TableRowProperties();
            TableRowHeight tableRowHeight13 = new TableRowHeight() { Val = (UInt32Value)377U };

            tableRowProperties13.Append(tableRowHeight13);

            TableCell tableCell25 = new TableCell();

            TableCellProperties tableCellProperties25 = new TableCellProperties();
            TableCellWidth tableCellWidth25 = new TableCellWidth() { Width = "9627", Type = TableWidthUnitValues.Dxa };

            tableCellProperties25.Append(tableCellWidth25);

            Paragraph paragraph30 = new Paragraph() { RsidParagraphAddition = "00E67B26", RsidParagraphProperties = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties30 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId3 = new ParagraphStyleId() { Val = "Heading5" };
            SpacingBetweenLines spacingBetweenLines2 = new SpacingBetweenLines() { Before = "13", After = "38" };
            OutlineLevel outlineLevel1 = new OutlineLevel() { Val = 4 };

            ParagraphMarkRunProperties paragraphMarkRunProperties29 = new ParagraphMarkRunProperties();
            Bold bold67 = new Bold();
            Color color109 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            paragraphMarkRunProperties29.Append(bold67);
            paragraphMarkRunProperties29.Append(color109);

            paragraphProperties30.Append(paragraphStyleId3);
            paragraphProperties30.Append(spacingBetweenLines2);
            paragraphProperties30.Append(outlineLevel1);
            paragraphProperties30.Append(paragraphMarkRunProperties29);

            Run run86 = new Run();

            RunProperties runProperties85 = new RunProperties();
            Bold bold68 = new Bold();
            Color color110 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            runProperties85.Append(bold68);
            runProperties85.Append(color110);
            Text text77 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text77.Text = "                                                                                                                                                               Thanks";

            run86.Append(runProperties85);
            run86.Append(text77);

            paragraph30.Append(paragraphProperties30);
            paragraph30.Append(run86);

            tableCell25.Append(tableCellProperties25);
            tableCell25.Append(paragraph30);

            tableRow13.Append(tableRowProperties13);
            tableRow13.Append(tableCell25);

            TableRow tableRow14 = new TableRow() { RsidTableRowAddition = "00E67B26", RsidTableRowProperties = "00E67B26" };

            TableRowProperties tableRowProperties14 = new TableRowProperties();
            TableRowHeight tableRowHeight14 = new TableRowHeight() { Val = (UInt32Value)394U };

            tableRowProperties14.Append(tableRowHeight14);

            TableCell tableCell26 = new TableCell();

            TableCellProperties tableCellProperties26 = new TableCellProperties();
            TableCellWidth tableCellWidth26 = new TableCellWidth() { Width = "9627", Type = TableWidthUnitValues.Dxa };

            tableCellProperties26.Append(tableCellWidth26);

            Paragraph paragraph31 = new Paragraph() { RsidParagraphAddition = "00E67B26", RsidParagraphProperties = "00E67B26", RsidRunAdditionDefault = "00E67B26" };

            ParagraphProperties paragraphProperties31 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId4 = new ParagraphStyleId() { Val = "Heading5" };
            SpacingBetweenLines spacingBetweenLines3 = new SpacingBetweenLines() { Before = "13", After = "38" };
            OutlineLevel outlineLevel2 = new OutlineLevel() { Val = 4 };

            ParagraphMarkRunProperties paragraphMarkRunProperties30 = new ParagraphMarkRunProperties();
            Bold bold69 = new Bold();
            Color color111 = new Color() { Val = "548DD4", ThemeColor = ThemeColorValues.Text2, ThemeTint = "99" };

            paragraphMarkRunProperties30.Append(bold69);
            paragraphMarkRunProperties30.Append(color111);

            paragraphProperties31.Append(paragraphStyleId4);
            paragraphProperties31.Append(spacingBetweenLines3);
            paragraphProperties31.Append(outlineLevel2);
            paragraphProperties31.Append(paragraphMarkRunProperties30);

            paragraph31.Append(paragraphProperties31);

            tableCell26.Append(tableCellProperties26);
            tableCell26.Append(paragraph31);

            tableRow14.Append(tableRowProperties14);
            tableRow14.Append(tableCell26);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);
            table1.Append(tableRow2);
            table1.Append(tableRow9);
            table1.Append(tableRow11);
            table1.Append(tableRow12);
            table1.Append(tableRow13);
            table1.Append(tableRow14);
            Paragraph paragraph32 = new Paragraph() { RsidParagraphAddition = "00931F72", RsidParagraphProperties = "00E67B26", RsidRunAdditionDefault = "00931F72" };

            SectionProperties sectionProperties1 = new SectionProperties() { RsidR = "00931F72", RsidSect = "00931F72" };
            PageSize pageSize1 = new PageSize() { Width = (UInt32Value)12240U, Height = (UInt32Value)15840U };
            PageMargin pageMargin1 = new PageMargin() { Top = 1440, Right = (UInt32Value)1440U, Bottom = 1440, 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(pageSize1);
            sectionProperties1.Append(pageMargin1);
            sectionProperties1.Append(columns1);
            sectionProperties1.Append(docGrid1);

            body1.Append(table1);
            body1.Append(paragraph32);
            body1.Append(sectionProperties1);

            document1.Append(body1);

            mainDocumentPart1.Document = document1;
        }
        // Generates content of mainDocumentPart1.
        private void GenerateMainDocumentPart1Content(MainDocumentPart mainDocumentPart1)
        {
            Document document1 = new Document() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "w14 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("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() { RsidParagraphAddition = "00365B67", RsidRunAdditionDefault = "00D831F8" };

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            NoProof noProof1 = new NoProof();

            runProperties1.Append(noProof1);

            Drawing drawing1 = new Drawing();

            Wp.Inline inline1 = new Wp.Inline() { DistanceFromTop = (UInt32Value)0U, DistanceFromBottom = (UInt32Value)0U, DistanceFromLeft = (UInt32Value)0U, DistanceFromRight = (UInt32Value)0U };
            Wp.Extent extent1 = new Wp.Extent() { Cx = 5486400L, Cy = 3200400L };
            Wp.EffectExtent effectExtent1 = new Wp.EffectExtent() { LeftEdge = 0L, TopEdge = 0L, RightEdge = 19050L, BottomEdge = 19050L };
            Wp.DocProperties docProperties1 = new Wp.DocProperties() { Id = (UInt32Value)1U, Name = "Chart 1" };
            Wp.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties1 = new Wp.NonVisualGraphicFrameDrawingProperties();

            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/chart" };

            C.ChartReference chartReference1 = new C.ChartReference() { Id = "rId7" };
            chartReference1.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData1.Append(chartReference1);

            graphic1.Append(graphicData1);

            inline1.Append(extent1);
            inline1.Append(effectExtent1);
            inline1.Append(docProperties1);
            inline1.Append(nonVisualGraphicFrameDrawingProperties1);
            inline1.Append(graphic1);

            drawing1.Append(inline1);

            run1.Append(runProperties1);
            run1.Append(drawing1);

            paragraph1.Append(run1);

            Table table1 = new Table();

            TableProperties tableProperties1 = new TableProperties();
            TableWidth tableWidth1 = new TableWidth() { Width = "9527", Type = TableWidthUnitValues.Dxa };

            TableBorders tableBorders1 = new TableBorders();
            TopBorder topBorder1 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder1 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder1 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder1 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableBorders1.Append(topBorder1);
            tableBorders1.Append(leftBorder1);
            tableBorders1.Append(bottomBorder1);
            tableBorders1.Append(rightBorder1);
            Shading shading1 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMarginDefault tableCellMarginDefault1 = new TableCellMarginDefault();
            TopMargin topMargin1 = new TopMargin() { Width = "15", Type = TableWidthUnitValues.Dxa };
            TableCellLeftMargin tableCellLeftMargin1 = new TableCellLeftMargin() { Width = 15, Type = TableWidthValues.Dxa };
            BottomMargin bottomMargin1 = new BottomMargin() { Width = "15", Type = TableWidthUnitValues.Dxa };
            TableCellRightMargin tableCellRightMargin1 = new TableCellRightMargin() { Width = 15, Type = TableWidthValues.Dxa };

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

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

            TableGrid tableGrid1 = new TableGrid();
            GridColumn gridColumn1 = new GridColumn() { Width = "2160" };
            GridColumn gridColumn2 = new GridColumn() { Width = "952" };
            GridColumn gridColumn3 = new GridColumn() { Width = "952" };
            GridColumn gridColumn4 = new GridColumn() { Width = "607" };
            GridColumn gridColumn5 = new GridColumn() { Width = "607" };
            GridColumn gridColumn6 = new GridColumn() { Width = "607" };
            GridColumn gridColumn7 = new GridColumn() { Width = "607" };
            GridColumn gridColumn8 = new GridColumn() { Width = "607" };
            GridColumn gridColumn9 = new GridColumn() { Width = "607" };
            GridColumn gridColumn10 = new GridColumn() { Width = "607" };
            GridColumn gridColumn11 = new GridColumn() { Width = "607" };
            GridColumn gridColumn12 = new GridColumn() { Width = "607" };

            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);

            TableRow tableRow1 = new TableRow() { RsidTableRowMarkRevision = "00C802B4", RsidTableRowAddition = "00C802B4", RsidTableRowProperties = "00C802B4" };

            TableRowProperties tableRowProperties1 = new TableRowProperties();
            TableRowHeight tableRowHeight1 = new TableRowHeight() { Val = (UInt32Value)780U };

            tableRowProperties1.Append(tableRowHeight1);

            TableCell tableCell1 = new TableCell();

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

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

            tableCellBorders1.Append(topBorder2);
            tableCellBorders1.Append(leftBorder2);
            tableCellBorders1.Append(bottomBorder2);
            tableCellBorders1.Append(rightBorder2);
            Shading shading2 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin1 = new TableCellMargin();
            TopMargin topMargin2 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin1 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin2 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin1 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin1.Append(topMargin2);
            tableCellMargin1.Append(leftMargin1);
            tableCellMargin1.Append(bottomMargin2);
            tableCellMargin1.Append(rightMargin1);
            TableCellVerticalAlignment tableCellVerticalAlignment1 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark1 = new HideMark();

            tableCellProperties1.Append(tableCellWidth1);
            tableCellProperties1.Append(tableCellBorders1);
            tableCellProperties1.Append(shading2);
            tableCellProperties1.Append(tableCellMargin1);
            tableCellProperties1.Append(tableCellVerticalAlignment1);
            tableCellProperties1.Append(hideMark1);

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

            ParagraphProperties paragraphProperties1 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines1 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties1 = new ParagraphMarkRunProperties();
            RunFonts runFonts1 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color1 = new Color() { Val = "000000" };
            FontSize fontSize1 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript1 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties1.Append(runFonts1);
            paragraphMarkRunProperties1.Append(color1);
            paragraphMarkRunProperties1.Append(fontSize1);
            paragraphMarkRunProperties1.Append(fontSizeComplexScript1);

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

            Hyperlink hyperlink1 = new Hyperlink() { Tooltip = "Million", History = true, Id = "rId8" };

            Run run2 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties2 = new RunProperties();
            RunFonts runFonts2 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color2 = new Color() { Val = "0B0080" };
            FontSize fontSize2 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript2 = new FontSizeComplexScript() { Val = "20" };

            runProperties2.Append(runFonts2);
            runProperties2.Append(color2);
            runProperties2.Append(fontSize2);
            runProperties2.Append(fontSizeComplexScript2);
            Text text1 = new Text();
            text1.Text = "Million";

            run2.Append(runProperties2);
            run2.Append(text1);

            hyperlink1.Append(run2);

            paragraph2.Append(paragraphProperties1);
            paragraph2.Append(hyperlink1);

            tableCell1.Append(tableCellProperties1);
            tableCell1.Append(paragraph2);

            TableCell tableCell2 = new TableCell();

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

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

            tableCellBorders2.Append(topBorder3);
            tableCellBorders2.Append(leftBorder3);
            tableCellBorders2.Append(bottomBorder3);
            tableCellBorders2.Append(rightBorder3);
            Shading shading3 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin2 = new TableCellMargin();
            TopMargin topMargin3 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin2 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin3 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin2 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin2.Append(topMargin3);
            tableCellMargin2.Append(leftMargin2);
            tableCellMargin2.Append(bottomMargin3);
            tableCellMargin2.Append(rightMargin2);
            TableCellVerticalAlignment tableCellVerticalAlignment2 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark2 = new HideMark();

            tableCellProperties2.Append(tableCellWidth2);
            tableCellProperties2.Append(tableCellBorders2);
            tableCellProperties2.Append(shading3);
            tableCellProperties2.Append(tableCellMargin2);
            tableCellProperties2.Append(tableCellVerticalAlignment2);
            tableCellProperties2.Append(hideMark2);

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

            ParagraphProperties paragraphProperties2 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines2 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification1 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties2 = new ParagraphMarkRunProperties();
            RunFonts runFonts3 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color3 = new Color() { Val = "000000" };
            FontSize fontSize3 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript3 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties2.Append(runFonts3);
            paragraphMarkRunProperties2.Append(color3);
            paragraphMarkRunProperties2.Append(fontSize3);
            paragraphMarkRunProperties2.Append(fontSizeComplexScript3);

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

            Run run3 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties3 = new RunProperties();
            RunFonts runFonts4 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color4 = new Color() { Val = "000000" };
            FontSize fontSize4 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript4 = new FontSizeComplexScript() { Val = "20" };

            runProperties3.Append(runFonts4);
            runProperties3.Append(color4);
            runProperties3.Append(fontSize4);
            runProperties3.Append(fontSizeComplexScript4);
            Text text2 = new Text();
            text2.Text = "10";

            run3.Append(runProperties3);
            run3.Append(text2);

            Run run4 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties4 = new RunProperties();
            RunFonts runFonts5 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color5 = new Color() { Val = "000000" };
            FontSize fontSize5 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript5 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment1 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties4.Append(runFonts5);
            runProperties4.Append(color5);
            runProperties4.Append(fontSize5);
            runProperties4.Append(fontSizeComplexScript5);
            runProperties4.Append(verticalTextAlignment1);
            Text text3 = new Text();
            text3.Text = "6";

            run4.Append(runProperties4);
            run4.Append(text3);

            paragraph3.Append(paragraphProperties2);
            paragraph3.Append(run3);
            paragraph3.Append(run4);

            tableCell2.Append(tableCellProperties2);
            tableCell2.Append(paragraph3);

            TableCell tableCell3 = new TableCell();

            TableCellProperties tableCellProperties3 = new TableCellProperties();
            TableCellWidth tableCellWidth3 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

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

            tableCellBorders3.Append(topBorder4);
            tableCellBorders3.Append(leftBorder4);
            tableCellBorders3.Append(bottomBorder4);
            tableCellBorders3.Append(rightBorder4);
            Shading shading4 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin3 = new TableCellMargin();
            TopMargin topMargin4 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin3 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin4 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin3 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin3.Append(topMargin4);
            tableCellMargin3.Append(leftMargin3);
            tableCellMargin3.Append(bottomMargin4);
            tableCellMargin3.Append(rightMargin3);
            TableCellVerticalAlignment tableCellVerticalAlignment3 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark3 = new HideMark();

            tableCellProperties3.Append(tableCellWidth3);
            tableCellProperties3.Append(tableCellBorders3);
            tableCellProperties3.Append(shading4);
            tableCellProperties3.Append(tableCellMargin3);
            tableCellProperties3.Append(tableCellVerticalAlignment3);
            tableCellProperties3.Append(hideMark3);

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

            ParagraphProperties paragraphProperties3 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines3 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification2 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties3 = new ParagraphMarkRunProperties();
            RunFonts runFonts6 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color6 = new Color() { Val = "000000" };
            FontSize fontSize6 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript6 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties3.Append(runFonts6);
            paragraphMarkRunProperties3.Append(color6);
            paragraphMarkRunProperties3.Append(fontSize6);
            paragraphMarkRunProperties3.Append(fontSizeComplexScript6);

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

            Run run5 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties5 = new RunProperties();
            RunFonts runFonts7 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color7 = new Color() { Val = "000000" };
            FontSize fontSize7 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript7 = new FontSizeComplexScript() { Val = "20" };

            runProperties5.Append(runFonts7);
            runProperties5.Append(color7);
            runProperties5.Append(fontSize7);
            runProperties5.Append(fontSizeComplexScript7);
            Text text4 = new Text();
            text4.Text = "10";

            run5.Append(runProperties5);
            run5.Append(text4);

            Run run6 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties6 = new RunProperties();
            RunFonts runFonts8 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color8 = new Color() { Val = "000000" };
            FontSize fontSize8 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript8 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment2 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties6.Append(runFonts8);
            runProperties6.Append(color8);
            runProperties6.Append(fontSize8);
            runProperties6.Append(fontSizeComplexScript8);
            runProperties6.Append(verticalTextAlignment2);
            Text text5 = new Text();
            text5.Text = "6";

            run6.Append(runProperties6);
            run6.Append(text5);

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

            tableCell3.Append(tableCellProperties3);
            tableCell3.Append(paragraph4);

            TableCell tableCell4 = new TableCell();

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

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

            tableCellBorders4.Append(topBorder5);
            tableCellBorders4.Append(leftBorder5);
            tableCellBorders4.Append(bottomBorder5);
            tableCellBorders4.Append(rightBorder5);
            Shading shading5 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin4 = new TableCellMargin();
            TopMargin topMargin5 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin4 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin5 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin4 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin4.Append(topMargin5);
            tableCellMargin4.Append(leftMargin4);
            tableCellMargin4.Append(bottomMargin5);
            tableCellMargin4.Append(rightMargin4);
            TableCellVerticalAlignment tableCellVerticalAlignment4 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark4 = new HideMark();

            tableCellProperties4.Append(tableCellWidth4);
            tableCellProperties4.Append(tableCellBorders4);
            tableCellProperties4.Append(shading5);
            tableCellProperties4.Append(tableCellMargin4);
            tableCellProperties4.Append(tableCellVerticalAlignment4);
            tableCellProperties4.Append(hideMark4);

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

            ParagraphProperties paragraphProperties4 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines4 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties4 = new ParagraphMarkRunProperties();
            RunFonts runFonts9 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color9 = new Color() { Val = "000000" };
            FontSize fontSize9 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript9 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties4.Append(runFonts9);
            paragraphMarkRunProperties4.Append(color9);
            paragraphMarkRunProperties4.Append(fontSize9);
            paragraphMarkRunProperties4.Append(fontSizeComplexScript9);

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

            Run run7 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties7 = new RunProperties();
            RunFonts runFonts10 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color10 = new Color() { Val = "000000" };
            FontSize fontSize10 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript10 = new FontSizeComplexScript() { Val = "20" };

            runProperties7.Append(runFonts10);
            runProperties7.Append(color10);
            runProperties7.Append(fontSize10);
            runProperties7.Append(fontSizeComplexScript10);
            Text text6 = new Text();
            text6.Text = "✓";

            run7.Append(runProperties7);
            run7.Append(text6);

            paragraph5.Append(paragraphProperties4);
            paragraph5.Append(run7);

            tableCell4.Append(tableCellProperties4);
            tableCell4.Append(paragraph5);

            TableCell tableCell5 = new TableCell();

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

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

            tableCellBorders5.Append(topBorder6);
            tableCellBorders5.Append(leftBorder6);
            tableCellBorders5.Append(bottomBorder6);
            tableCellBorders5.Append(rightBorder6);
            Shading shading6 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin5 = new TableCellMargin();
            TopMargin topMargin6 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin5 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin6 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin5 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin5.Append(topMargin6);
            tableCellMargin5.Append(leftMargin5);
            tableCellMargin5.Append(bottomMargin6);
            tableCellMargin5.Append(rightMargin5);
            TableCellVerticalAlignment tableCellVerticalAlignment5 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark5 = new HideMark();

            tableCellProperties5.Append(tableCellWidth5);
            tableCellProperties5.Append(tableCellBorders5);
            tableCellProperties5.Append(shading6);
            tableCellProperties5.Append(tableCellMargin5);
            tableCellProperties5.Append(tableCellVerticalAlignment5);
            tableCellProperties5.Append(hideMark5);

            Paragraph paragraph6 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties5 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines5 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties5 = new ParagraphMarkRunProperties();
            RunFonts runFonts11 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color11 = new Color() { Val = "000000" };
            FontSize fontSize11 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript11 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties5.Append(runFonts11);
            paragraphMarkRunProperties5.Append(color11);
            paragraphMarkRunProperties5.Append(fontSize11);
            paragraphMarkRunProperties5.Append(fontSizeComplexScript11);

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

            Run run8 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties8 = new RunProperties();
            RunFonts runFonts12 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color12 = new Color() { Val = "000000" };
            FontSize fontSize12 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript12 = new FontSizeComplexScript() { Val = "20" };

            runProperties8.Append(runFonts12);
            runProperties8.Append(color12);
            runProperties8.Append(fontSize12);
            runProperties8.Append(fontSizeComplexScript12);
            Text text7 = new Text();
            text7.Text = "✓";

            run8.Append(runProperties8);
            run8.Append(text7);

            paragraph6.Append(paragraphProperties5);
            paragraph6.Append(run8);

            tableCell5.Append(tableCellProperties5);
            tableCell5.Append(paragraph6);

            TableCell tableCell6 = new TableCell();

            TableCellProperties tableCellProperties6 = new TableCellProperties();
            TableCellWidth tableCellWidth6 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders6 = new TableCellBorders();
            TopBorder topBorder7 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder7 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder7 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder7 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders6.Append(topBorder7);
            tableCellBorders6.Append(leftBorder7);
            tableCellBorders6.Append(bottomBorder7);
            tableCellBorders6.Append(rightBorder7);
            Shading shading7 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin6 = new TableCellMargin();
            TopMargin topMargin7 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin6 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin7 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin6 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin6.Append(topMargin7);
            tableCellMargin6.Append(leftMargin6);
            tableCellMargin6.Append(bottomMargin7);
            tableCellMargin6.Append(rightMargin6);
            TableCellVerticalAlignment tableCellVerticalAlignment6 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark6 = new HideMark();

            tableCellProperties6.Append(tableCellWidth6);
            tableCellProperties6.Append(tableCellBorders6);
            tableCellProperties6.Append(shading7);
            tableCellProperties6.Append(tableCellMargin6);
            tableCellProperties6.Append(tableCellVerticalAlignment6);
            tableCellProperties6.Append(hideMark6);

            Paragraph paragraph7 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties6 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines6 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties6 = new ParagraphMarkRunProperties();
            RunFonts runFonts13 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color13 = new Color() { Val = "000000" };
            FontSize fontSize13 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript13 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties6.Append(runFonts13);
            paragraphMarkRunProperties6.Append(color13);
            paragraphMarkRunProperties6.Append(fontSize13);
            paragraphMarkRunProperties6.Append(fontSizeComplexScript13);

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

            Run run9 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties9 = new RunProperties();
            RunFonts runFonts14 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color14 = new Color() { Val = "000000" };
            FontSize fontSize14 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript14 = new FontSizeComplexScript() { Val = "20" };

            runProperties9.Append(runFonts14);
            runProperties9.Append(color14);
            runProperties9.Append(fontSize14);
            runProperties9.Append(fontSizeComplexScript14);
            Text text8 = new Text();
            text8.Text = "✓";

            run9.Append(runProperties9);
            run9.Append(text8);

            paragraph7.Append(paragraphProperties6);
            paragraph7.Append(run9);

            tableCell6.Append(tableCellProperties6);
            tableCell6.Append(paragraph7);

            TableCell tableCell7 = new TableCell();

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

            TableCellBorders tableCellBorders7 = new TableCellBorders();
            TopBorder topBorder8 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder8 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder8 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder8 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders7.Append(topBorder8);
            tableCellBorders7.Append(leftBorder8);
            tableCellBorders7.Append(bottomBorder8);
            tableCellBorders7.Append(rightBorder8);
            Shading shading8 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin7 = new TableCellMargin();
            TopMargin topMargin8 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin7 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin8 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin7 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin7.Append(topMargin8);
            tableCellMargin7.Append(leftMargin7);
            tableCellMargin7.Append(bottomMargin8);
            tableCellMargin7.Append(rightMargin7);
            TableCellVerticalAlignment tableCellVerticalAlignment7 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark7 = new HideMark();

            tableCellProperties7.Append(tableCellWidth7);
            tableCellProperties7.Append(tableCellBorders7);
            tableCellProperties7.Append(shading8);
            tableCellProperties7.Append(tableCellMargin7);
            tableCellProperties7.Append(tableCellVerticalAlignment7);
            tableCellProperties7.Append(hideMark7);

            Paragraph paragraph8 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties7 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines7 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties7 = new ParagraphMarkRunProperties();
            RunFonts runFonts15 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color15 = new Color() { Val = "000000" };
            FontSize fontSize15 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript15 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties7.Append(runFonts15);
            paragraphMarkRunProperties7.Append(color15);
            paragraphMarkRunProperties7.Append(fontSize15);
            paragraphMarkRunProperties7.Append(fontSizeComplexScript15);

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

            Run run10 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties10 = new RunProperties();
            RunFonts runFonts16 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color16 = new Color() { Val = "000000" };
            FontSize fontSize16 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript16 = new FontSizeComplexScript() { Val = "20" };

            runProperties10.Append(runFonts16);
            runProperties10.Append(color16);
            runProperties10.Append(fontSize16);
            runProperties10.Append(fontSizeComplexScript16);
            Text text9 = new Text();
            text9.Text = "✓";

            run10.Append(runProperties10);
            run10.Append(text9);

            paragraph8.Append(paragraphProperties7);
            paragraph8.Append(run10);

            tableCell7.Append(tableCellProperties7);
            tableCell7.Append(paragraph8);

            TableCell tableCell8 = new TableCell();

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

            TableCellBorders tableCellBorders8 = new TableCellBorders();
            TopBorder topBorder9 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder9 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder9 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder9 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders8.Append(topBorder9);
            tableCellBorders8.Append(leftBorder9);
            tableCellBorders8.Append(bottomBorder9);
            tableCellBorders8.Append(rightBorder9);
            Shading shading9 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin8 = new TableCellMargin();
            TopMargin topMargin9 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin8 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin9 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin8 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin8.Append(topMargin9);
            tableCellMargin8.Append(leftMargin8);
            tableCellMargin8.Append(bottomMargin9);
            tableCellMargin8.Append(rightMargin8);
            TableCellVerticalAlignment tableCellVerticalAlignment8 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark8 = new HideMark();

            tableCellProperties8.Append(tableCellWidth8);
            tableCellProperties8.Append(tableCellBorders8);
            tableCellProperties8.Append(shading9);
            tableCellProperties8.Append(tableCellMargin8);
            tableCellProperties8.Append(tableCellVerticalAlignment8);
            tableCellProperties8.Append(hideMark8);

            Paragraph paragraph9 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties8 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines8 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties8 = new ParagraphMarkRunProperties();
            RunFonts runFonts17 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color17 = new Color() { Val = "000000" };
            FontSize fontSize17 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript17 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties8.Append(runFonts17);
            paragraphMarkRunProperties8.Append(color17);
            paragraphMarkRunProperties8.Append(fontSize17);
            paragraphMarkRunProperties8.Append(fontSizeComplexScript17);

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

            Run run11 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties11 = new RunProperties();
            RunFonts runFonts18 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color18 = new Color() { Val = "000000" };
            FontSize fontSize18 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript18 = new FontSizeComplexScript() { Val = "20" };

            runProperties11.Append(runFonts18);
            runProperties11.Append(color18);
            runProperties11.Append(fontSize18);
            runProperties11.Append(fontSizeComplexScript18);
            Text text10 = new Text();
            text10.Text = "✓";

            run11.Append(runProperties11);
            run11.Append(text10);

            paragraph9.Append(paragraphProperties8);
            paragraph9.Append(run11);

            tableCell8.Append(tableCellProperties8);
            tableCell8.Append(paragraph9);

            TableCell tableCell9 = new TableCell();

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

            TableCellBorders tableCellBorders9 = new TableCellBorders();
            TopBorder topBorder10 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder10 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder10 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder10 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders9.Append(topBorder10);
            tableCellBorders9.Append(leftBorder10);
            tableCellBorders9.Append(bottomBorder10);
            tableCellBorders9.Append(rightBorder10);
            Shading shading10 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin9 = new TableCellMargin();
            TopMargin topMargin10 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin9 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin10 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin9 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin9.Append(topMargin10);
            tableCellMargin9.Append(leftMargin9);
            tableCellMargin9.Append(bottomMargin10);
            tableCellMargin9.Append(rightMargin9);
            TableCellVerticalAlignment tableCellVerticalAlignment9 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark9 = new HideMark();

            tableCellProperties9.Append(tableCellWidth9);
            tableCellProperties9.Append(tableCellBorders9);
            tableCellProperties9.Append(shading10);
            tableCellProperties9.Append(tableCellMargin9);
            tableCellProperties9.Append(tableCellVerticalAlignment9);
            tableCellProperties9.Append(hideMark9);

            Paragraph paragraph10 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties9 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines9 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties9 = new ParagraphMarkRunProperties();
            RunFonts runFonts19 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color19 = new Color() { Val = "000000" };
            FontSize fontSize19 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript19 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties9.Append(runFonts19);
            paragraphMarkRunProperties9.Append(color19);
            paragraphMarkRunProperties9.Append(fontSize19);
            paragraphMarkRunProperties9.Append(fontSizeComplexScript19);

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

            Run run12 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties12 = new RunProperties();
            RunFonts runFonts20 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color20 = new Color() { Val = "000000" };
            FontSize fontSize20 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript20 = new FontSizeComplexScript() { Val = "20" };

            runProperties12.Append(runFonts20);
            runProperties12.Append(color20);
            runProperties12.Append(fontSize20);
            runProperties12.Append(fontSizeComplexScript20);
            Text text11 = new Text();
            text11.Text = "✓";

            run12.Append(runProperties12);
            run12.Append(text11);

            paragraph10.Append(paragraphProperties9);
            paragraph10.Append(run12);

            tableCell9.Append(tableCellProperties9);
            tableCell9.Append(paragraph10);

            TableCell tableCell10 = new TableCell();

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

            TableCellBorders tableCellBorders10 = new TableCellBorders();
            TopBorder topBorder11 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder11 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder11 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder11 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders10.Append(topBorder11);
            tableCellBorders10.Append(leftBorder11);
            tableCellBorders10.Append(bottomBorder11);
            tableCellBorders10.Append(rightBorder11);
            Shading shading11 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin10 = new TableCellMargin();
            TopMargin topMargin11 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin10 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin11 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin10 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin10.Append(topMargin11);
            tableCellMargin10.Append(leftMargin10);
            tableCellMargin10.Append(bottomMargin11);
            tableCellMargin10.Append(rightMargin10);
            TableCellVerticalAlignment tableCellVerticalAlignment10 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark10 = new HideMark();

            tableCellProperties10.Append(tableCellWidth10);
            tableCellProperties10.Append(tableCellBorders10);
            tableCellProperties10.Append(shading11);
            tableCellProperties10.Append(tableCellMargin10);
            tableCellProperties10.Append(tableCellVerticalAlignment10);
            tableCellProperties10.Append(hideMark10);

            Paragraph paragraph11 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties10 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines10 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties10 = new ParagraphMarkRunProperties();
            RunFonts runFonts21 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color21 = new Color() { Val = "000000" };
            FontSize fontSize21 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript21 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties10.Append(runFonts21);
            paragraphMarkRunProperties10.Append(color21);
            paragraphMarkRunProperties10.Append(fontSize21);
            paragraphMarkRunProperties10.Append(fontSizeComplexScript21);

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

            Run run13 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties13 = new RunProperties();
            RunFonts runFonts22 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color22 = new Color() { Val = "000000" };
            FontSize fontSize22 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript22 = new FontSizeComplexScript() { Val = "20" };

            runProperties13.Append(runFonts22);
            runProperties13.Append(color22);
            runProperties13.Append(fontSize22);
            runProperties13.Append(fontSizeComplexScript22);
            Text text12 = new Text();
            text12.Text = "✓";

            run13.Append(runProperties13);
            run13.Append(text12);

            paragraph11.Append(paragraphProperties10);
            paragraph11.Append(run13);

            tableCell10.Append(tableCellProperties10);
            tableCell10.Append(paragraph11);

            TableCell tableCell11 = new TableCell();

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

            TableCellBorders tableCellBorders11 = new TableCellBorders();
            TopBorder topBorder12 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder12 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder12 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder12 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders11.Append(topBorder12);
            tableCellBorders11.Append(leftBorder12);
            tableCellBorders11.Append(bottomBorder12);
            tableCellBorders11.Append(rightBorder12);
            Shading shading12 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin11 = new TableCellMargin();
            TopMargin topMargin12 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin11 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin12 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin11 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin11.Append(topMargin12);
            tableCellMargin11.Append(leftMargin11);
            tableCellMargin11.Append(bottomMargin12);
            tableCellMargin11.Append(rightMargin11);
            TableCellVerticalAlignment tableCellVerticalAlignment11 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark11 = new HideMark();

            tableCellProperties11.Append(tableCellWidth11);
            tableCellProperties11.Append(tableCellBorders11);
            tableCellProperties11.Append(shading12);
            tableCellProperties11.Append(tableCellMargin11);
            tableCellProperties11.Append(tableCellVerticalAlignment11);
            tableCellProperties11.Append(hideMark11);

            Paragraph paragraph12 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties11 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines11 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties11 = new ParagraphMarkRunProperties();
            RunFonts runFonts23 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color23 = new Color() { Val = "000000" };
            FontSize fontSize23 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript23 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties11.Append(runFonts23);
            paragraphMarkRunProperties11.Append(color23);
            paragraphMarkRunProperties11.Append(fontSize23);
            paragraphMarkRunProperties11.Append(fontSizeComplexScript23);

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

            Run run14 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties14 = new RunProperties();
            RunFonts runFonts24 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color24 = new Color() { Val = "000000" };
            FontSize fontSize24 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript24 = new FontSizeComplexScript() { Val = "20" };

            runProperties14.Append(runFonts24);
            runProperties14.Append(color24);
            runProperties14.Append(fontSize24);
            runProperties14.Append(fontSizeComplexScript24);
            Text text13 = new Text();
            text13.Text = "✓";

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

            paragraph12.Append(paragraphProperties11);
            paragraph12.Append(run14);

            tableCell11.Append(tableCellProperties11);
            tableCell11.Append(paragraph12);

            TableCell tableCell12 = new TableCell();

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

            TableCellBorders tableCellBorders12 = new TableCellBorders();
            TopBorder topBorder13 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder13 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder13 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder13 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders12.Append(topBorder13);
            tableCellBorders12.Append(leftBorder13);
            tableCellBorders12.Append(bottomBorder13);
            tableCellBorders12.Append(rightBorder13);
            Shading shading13 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin12 = new TableCellMargin();
            TopMargin topMargin13 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin12 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin13 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin12 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin12.Append(topMargin13);
            tableCellMargin12.Append(leftMargin12);
            tableCellMargin12.Append(bottomMargin13);
            tableCellMargin12.Append(rightMargin12);
            TableCellVerticalAlignment tableCellVerticalAlignment12 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark12 = new HideMark();

            tableCellProperties12.Append(tableCellWidth12);
            tableCellProperties12.Append(tableCellBorders12);
            tableCellProperties12.Append(shading13);
            tableCellProperties12.Append(tableCellMargin12);
            tableCellProperties12.Append(tableCellVerticalAlignment12);
            tableCellProperties12.Append(hideMark12);

            Paragraph paragraph13 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties12 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines12 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties12 = new ParagraphMarkRunProperties();
            RunFonts runFonts25 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color25 = new Color() { Val = "000000" };
            FontSize fontSize25 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript25 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties12.Append(runFonts25);
            paragraphMarkRunProperties12.Append(color25);
            paragraphMarkRunProperties12.Append(fontSize25);
            paragraphMarkRunProperties12.Append(fontSizeComplexScript25);

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

            Run run15 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties15 = new RunProperties();
            RunFonts runFonts26 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color26 = new Color() { Val = "000000" };
            FontSize fontSize26 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript26 = new FontSizeComplexScript() { Val = "20" };

            runProperties15.Append(runFonts26);
            runProperties15.Append(color26);
            runProperties15.Append(fontSize26);
            runProperties15.Append(fontSizeComplexScript26);
            Text text14 = new Text();
            text14.Text = "✓";

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

            paragraph13.Append(paragraphProperties12);
            paragraph13.Append(run15);

            tableCell12.Append(tableCellProperties12);
            tableCell12.Append(paragraph13);

            tableRow1.Append(tableRowProperties1);
            tableRow1.Append(tableCell1);
            tableRow1.Append(tableCell2);
            tableRow1.Append(tableCell3);
            tableRow1.Append(tableCell4);
            tableRow1.Append(tableCell5);
            tableRow1.Append(tableCell6);
            tableRow1.Append(tableCell7);
            tableRow1.Append(tableCell8);
            tableRow1.Append(tableCell9);
            tableRow1.Append(tableCell10);
            tableRow1.Append(tableCell11);
            tableRow1.Append(tableCell12);

            TableRow tableRow2 = new TableRow() { RsidTableRowMarkRevision = "00C802B4", RsidTableRowAddition = "00C802B4", RsidTableRowProperties = "00C802B4" };

            TableRowProperties tableRowProperties2 = new TableRowProperties();
            TableRowHeight tableRowHeight2 = new TableRowHeight() { Val = (UInt32Value)765U };

            tableRowProperties2.Append(tableRowHeight2);

            TableCell tableCell13 = new TableCell();

            TableCellProperties tableCellProperties13 = new TableCellProperties();
            TableCellWidth tableCellWidth13 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders13 = new TableCellBorders();
            TopBorder topBorder14 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder14 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder14 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder14 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders13.Append(topBorder14);
            tableCellBorders13.Append(leftBorder14);
            tableCellBorders13.Append(bottomBorder14);
            tableCellBorders13.Append(rightBorder14);
            Shading shading14 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin13 = new TableCellMargin();
            TopMargin topMargin14 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin13 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin14 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin13 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin13.Append(topMargin14);
            tableCellMargin13.Append(leftMargin13);
            tableCellMargin13.Append(bottomMargin14);
            tableCellMargin13.Append(rightMargin13);
            TableCellVerticalAlignment tableCellVerticalAlignment13 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark13 = new HideMark();

            tableCellProperties13.Append(tableCellWidth13);
            tableCellProperties13.Append(tableCellBorders13);
            tableCellProperties13.Append(shading14);
            tableCellProperties13.Append(tableCellMargin13);
            tableCellProperties13.Append(tableCellVerticalAlignment13);
            tableCellProperties13.Append(hideMark13);

            Paragraph paragraph14 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties13 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines13 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties13 = new ParagraphMarkRunProperties();
            RunFonts runFonts27 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color27 = new Color() { Val = "000000" };
            FontSize fontSize27 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript27 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties13.Append(runFonts27);
            paragraphMarkRunProperties13.Append(color27);
            paragraphMarkRunProperties13.Append(fontSize27);
            paragraphMarkRunProperties13.Append(fontSizeComplexScript27);

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

            Hyperlink hyperlink2 = new Hyperlink() { Tooltip = "1,000,000,000", History = true, Id = "rId9" };

            Run run16 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties16 = new RunProperties();
            RunFonts runFonts28 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color28 = new Color() { Val = "0B0080" };
            FontSize fontSize28 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript28 = new FontSizeComplexScript() { Val = "20" };

            runProperties16.Append(runFonts28);
            runProperties16.Append(color28);
            runProperties16.Append(fontSize28);
            runProperties16.Append(fontSizeComplexScript28);
            Text text15 = new Text();
            text15.Text = "Milliard";

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

            hyperlink2.Append(run16);

            paragraph14.Append(paragraphProperties13);
            paragraph14.Append(hyperlink2);

            tableCell13.Append(tableCellProperties13);
            tableCell13.Append(paragraph14);

            TableCell tableCell14 = new TableCell();

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

            TableCellBorders tableCellBorders14 = new TableCellBorders();
            TopBorder topBorder15 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder15 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder15 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder15 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders14.Append(topBorder15);
            tableCellBorders14.Append(leftBorder15);
            tableCellBorders14.Append(bottomBorder15);
            tableCellBorders14.Append(rightBorder15);
            Shading shading15 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin14 = new TableCellMargin();
            TopMargin topMargin15 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin14 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin15 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin14 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin14.Append(topMargin15);
            tableCellMargin14.Append(leftMargin14);
            tableCellMargin14.Append(bottomMargin15);
            tableCellMargin14.Append(rightMargin14);
            TableCellVerticalAlignment tableCellVerticalAlignment14 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark14 = new HideMark();

            tableCellProperties14.Append(tableCellWidth14);
            tableCellProperties14.Append(tableCellBorders14);
            tableCellProperties14.Append(shading15);
            tableCellProperties14.Append(tableCellMargin14);
            tableCellProperties14.Append(tableCellVerticalAlignment14);
            tableCellProperties14.Append(hideMark14);

            Paragraph paragraph15 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties14 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines14 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties14 = new ParagraphMarkRunProperties();
            RunFonts runFonts29 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color29 = new Color() { Val = "000000" };
            FontSize fontSize29 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript29 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties14.Append(runFonts29);
            paragraphMarkRunProperties14.Append(color29);
            paragraphMarkRunProperties14.Append(fontSize29);
            paragraphMarkRunProperties14.Append(fontSizeComplexScript29);

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

            Run run17 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties17 = new RunProperties();
            RunFonts runFonts30 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color30 = new Color() { Val = "000000" };
            FontSize fontSize30 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript30 = new FontSizeComplexScript() { Val = "20" };

            runProperties17.Append(runFonts30);
            runProperties17.Append(color30);
            runProperties17.Append(fontSize30);
            runProperties17.Append(fontSizeComplexScript30);
            Text text16 = new Text();
            text16.Text = " ";

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

            paragraph15.Append(paragraphProperties14);
            paragraph15.Append(run17);

            tableCell14.Append(tableCellProperties14);
            tableCell14.Append(paragraph15);

            TableCell tableCell15 = new TableCell();

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

            TableCellBorders tableCellBorders15 = new TableCellBorders();
            TopBorder topBorder16 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder16 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder16 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder16 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders15.Append(topBorder16);
            tableCellBorders15.Append(leftBorder16);
            tableCellBorders15.Append(bottomBorder16);
            tableCellBorders15.Append(rightBorder16);
            Shading shading16 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin15 = new TableCellMargin();
            TopMargin topMargin16 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin15 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin16 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin15 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin15.Append(topMargin16);
            tableCellMargin15.Append(leftMargin15);
            tableCellMargin15.Append(bottomMargin16);
            tableCellMargin15.Append(rightMargin15);
            TableCellVerticalAlignment tableCellVerticalAlignment15 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark15 = new HideMark();

            tableCellProperties15.Append(tableCellWidth15);
            tableCellProperties15.Append(tableCellBorders15);
            tableCellProperties15.Append(shading16);
            tableCellProperties15.Append(tableCellMargin15);
            tableCellProperties15.Append(tableCellVerticalAlignment15);
            tableCellProperties15.Append(hideMark15);

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

            ParagraphProperties paragraphProperties15 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines15 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification3 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties15 = new ParagraphMarkRunProperties();
            RunFonts runFonts31 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color31 = new Color() { Val = "000000" };
            FontSize fontSize31 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript31 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties15.Append(runFonts31);
            paragraphMarkRunProperties15.Append(color31);
            paragraphMarkRunProperties15.Append(fontSize31);
            paragraphMarkRunProperties15.Append(fontSizeComplexScript31);

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

            Run run18 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties18 = new RunProperties();
            RunFonts runFonts32 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color32 = new Color() { Val = "000000" };
            FontSize fontSize32 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript32 = new FontSizeComplexScript() { Val = "20" };

            runProperties18.Append(runFonts32);
            runProperties18.Append(color32);
            runProperties18.Append(fontSize32);
            runProperties18.Append(fontSizeComplexScript32);
            Text text17 = new Text();
            text17.Text = "10";

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

            Run run19 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties19 = new RunProperties();
            RunFonts runFonts33 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color33 = new Color() { Val = "000000" };
            FontSize fontSize33 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript33 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment3 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties19.Append(runFonts33);
            runProperties19.Append(color33);
            runProperties19.Append(fontSize33);
            runProperties19.Append(fontSizeComplexScript33);
            runProperties19.Append(verticalTextAlignment3);
            Text text18 = new Text();
            text18.Text = "9";

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

            paragraph16.Append(paragraphProperties15);
            paragraph16.Append(run18);
            paragraph16.Append(run19);

            tableCell15.Append(tableCellProperties15);
            tableCell15.Append(paragraph16);

            TableCell tableCell16 = new TableCell();

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

            TableCellBorders tableCellBorders16 = new TableCellBorders();
            TopBorder topBorder17 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder17 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder17 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder17 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders16.Append(topBorder17);
            tableCellBorders16.Append(leftBorder17);
            tableCellBorders16.Append(bottomBorder17);
            tableCellBorders16.Append(rightBorder17);
            Shading shading17 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin16 = new TableCellMargin();
            TopMargin topMargin17 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin16 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin17 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin16 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin16.Append(topMargin17);
            tableCellMargin16.Append(leftMargin16);
            tableCellMargin16.Append(bottomMargin17);
            tableCellMargin16.Append(rightMargin16);
            TableCellVerticalAlignment tableCellVerticalAlignment16 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark16 = new HideMark();

            tableCellProperties16.Append(tableCellWidth16);
            tableCellProperties16.Append(tableCellBorders16);
            tableCellProperties16.Append(shading17);
            tableCellProperties16.Append(tableCellMargin16);
            tableCellProperties16.Append(tableCellVerticalAlignment16);
            tableCellProperties16.Append(hideMark16);

            Paragraph paragraph17 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties16 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines16 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties16 = new ParagraphMarkRunProperties();
            RunFonts runFonts34 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color34 = new Color() { Val = "000000" };
            FontSize fontSize34 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript34 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties16.Append(runFonts34);
            paragraphMarkRunProperties16.Append(color34);
            paragraphMarkRunProperties16.Append(fontSize34);
            paragraphMarkRunProperties16.Append(fontSizeComplexScript34);

            paragraphProperties16.Append(spacingBetweenLines16);
            paragraphProperties16.Append(paragraphMarkRunProperties16);

            Run run20 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties20 = new RunProperties();
            RunFonts runFonts35 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color35 = new Color() { Val = "000000" };
            FontSize fontSize35 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript35 = new FontSizeComplexScript() { Val = "20" };

            runProperties20.Append(runFonts35);
            runProperties20.Append(color35);
            runProperties20.Append(fontSize35);
            runProperties20.Append(fontSizeComplexScript35);
            Text text19 = new Text();
            text19.Text = "✓";

            run20.Append(runProperties20);
            run20.Append(text19);

            paragraph17.Append(paragraphProperties16);
            paragraph17.Append(run20);

            tableCell16.Append(tableCellProperties16);
            tableCell16.Append(paragraph17);

            TableCell tableCell17 = new TableCell();

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

            TableCellBorders tableCellBorders17 = new TableCellBorders();
            TopBorder topBorder18 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder18 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder18 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder18 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders17.Append(topBorder18);
            tableCellBorders17.Append(leftBorder18);
            tableCellBorders17.Append(bottomBorder18);
            tableCellBorders17.Append(rightBorder18);
            Shading shading18 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin17 = new TableCellMargin();
            TopMargin topMargin18 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin17 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin18 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin17 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin17.Append(topMargin18);
            tableCellMargin17.Append(leftMargin17);
            tableCellMargin17.Append(bottomMargin18);
            tableCellMargin17.Append(rightMargin17);
            TableCellVerticalAlignment tableCellVerticalAlignment17 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark17 = new HideMark();

            tableCellProperties17.Append(tableCellWidth17);
            tableCellProperties17.Append(tableCellBorders17);
            tableCellProperties17.Append(shading18);
            tableCellProperties17.Append(tableCellMargin17);
            tableCellProperties17.Append(tableCellVerticalAlignment17);
            tableCellProperties17.Append(hideMark17);

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

            ParagraphProperties paragraphProperties17 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines17 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties17 = new ParagraphMarkRunProperties();
            RunFonts runFonts36 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color36 = new Color() { Val = "000000" };
            FontSize fontSize36 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript36 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties17.Append(runFonts36);
            paragraphMarkRunProperties17.Append(color36);
            paragraphMarkRunProperties17.Append(fontSize36);
            paragraphMarkRunProperties17.Append(fontSizeComplexScript36);

            paragraphProperties17.Append(spacingBetweenLines17);
            paragraphProperties17.Append(paragraphMarkRunProperties17);

            Run run21 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties21 = new RunProperties();
            RunFonts runFonts37 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color37 = new Color() { Val = "000000" };
            FontSize fontSize37 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript37 = new FontSizeComplexScript() { Val = "20" };

            runProperties21.Append(runFonts37);
            runProperties21.Append(color37);
            runProperties21.Append(fontSize37);
            runProperties21.Append(fontSizeComplexScript37);
            Text text20 = new Text();
            text20.Text = "✓";

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

            paragraph18.Append(paragraphProperties17);
            paragraph18.Append(run21);

            tableCell17.Append(tableCellProperties17);
            tableCell17.Append(paragraph18);

            TableCell tableCell18 = new TableCell();

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

            TableCellBorders tableCellBorders18 = new TableCellBorders();
            TopBorder topBorder19 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder19 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder19 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder19 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders18.Append(topBorder19);
            tableCellBorders18.Append(leftBorder19);
            tableCellBorders18.Append(bottomBorder19);
            tableCellBorders18.Append(rightBorder19);
            Shading shading19 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin18 = new TableCellMargin();
            TopMargin topMargin19 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin18 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin19 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin18 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin18.Append(topMargin19);
            tableCellMargin18.Append(leftMargin18);
            tableCellMargin18.Append(bottomMargin19);
            tableCellMargin18.Append(rightMargin18);
            TableCellVerticalAlignment tableCellVerticalAlignment18 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark18 = new HideMark();

            tableCellProperties18.Append(tableCellWidth18);
            tableCellProperties18.Append(tableCellBorders18);
            tableCellProperties18.Append(shading19);
            tableCellProperties18.Append(tableCellMargin18);
            tableCellProperties18.Append(tableCellVerticalAlignment18);
            tableCellProperties18.Append(hideMark18);

            Paragraph paragraph19 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties18 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines18 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties18 = new ParagraphMarkRunProperties();
            RunFonts runFonts38 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color38 = new Color() { Val = "000000" };
            FontSize fontSize38 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript38 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties18.Append(runFonts38);
            paragraphMarkRunProperties18.Append(color38);
            paragraphMarkRunProperties18.Append(fontSize38);
            paragraphMarkRunProperties18.Append(fontSizeComplexScript38);

            paragraphProperties18.Append(spacingBetweenLines18);
            paragraphProperties18.Append(paragraphMarkRunProperties18);

            Run run22 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties22 = new RunProperties();
            RunFonts runFonts39 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color39 = new Color() { Val = "000000" };
            FontSize fontSize39 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript39 = new FontSizeComplexScript() { Val = "20" };

            runProperties22.Append(runFonts39);
            runProperties22.Append(color39);
            runProperties22.Append(fontSize39);
            runProperties22.Append(fontSizeComplexScript39);
            Text text21 = new Text();
            text21.Text = " ";

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

            paragraph19.Append(paragraphProperties18);
            paragraph19.Append(run22);

            tableCell18.Append(tableCellProperties18);
            tableCell18.Append(paragraph19);

            TableCell tableCell19 = new TableCell();

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

            TableCellBorders tableCellBorders19 = new TableCellBorders();
            TopBorder topBorder20 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder20 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder20 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder20 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders19.Append(topBorder20);
            tableCellBorders19.Append(leftBorder20);
            tableCellBorders19.Append(bottomBorder20);
            tableCellBorders19.Append(rightBorder20);
            Shading shading20 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin19 = new TableCellMargin();
            TopMargin topMargin20 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin19 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin20 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin19 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin19.Append(topMargin20);
            tableCellMargin19.Append(leftMargin19);
            tableCellMargin19.Append(bottomMargin20);
            tableCellMargin19.Append(rightMargin19);
            TableCellVerticalAlignment tableCellVerticalAlignment19 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark19 = new HideMark();

            tableCellProperties19.Append(tableCellWidth19);
            tableCellProperties19.Append(tableCellBorders19);
            tableCellProperties19.Append(shading20);
            tableCellProperties19.Append(tableCellMargin19);
            tableCellProperties19.Append(tableCellVerticalAlignment19);
            tableCellProperties19.Append(hideMark19);

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

            ParagraphProperties paragraphProperties19 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines19 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties19 = new ParagraphMarkRunProperties();
            RunFonts runFonts40 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color40 = new Color() { Val = "000000" };
            FontSize fontSize40 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript40 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties19.Append(runFonts40);
            paragraphMarkRunProperties19.Append(color40);
            paragraphMarkRunProperties19.Append(fontSize40);
            paragraphMarkRunProperties19.Append(fontSizeComplexScript40);

            paragraphProperties19.Append(spacingBetweenLines19);
            paragraphProperties19.Append(paragraphMarkRunProperties19);

            Run run23 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties23 = new RunProperties();
            RunFonts runFonts41 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color41 = new Color() { Val = "000000" };
            FontSize fontSize41 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript41 = new FontSizeComplexScript() { Val = "20" };

            runProperties23.Append(runFonts41);
            runProperties23.Append(color41);
            runProperties23.Append(fontSize41);
            runProperties23.Append(fontSizeComplexScript41);
            Text text22 = new Text();
            text22.Text = "✓";

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

            paragraph20.Append(paragraphProperties19);
            paragraph20.Append(run23);

            tableCell19.Append(tableCellProperties19);
            tableCell19.Append(paragraph20);

            TableCell tableCell20 = new TableCell();

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

            TableCellBorders tableCellBorders20 = new TableCellBorders();
            TopBorder topBorder21 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder21 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder21 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder21 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders20.Append(topBorder21);
            tableCellBorders20.Append(leftBorder21);
            tableCellBorders20.Append(bottomBorder21);
            tableCellBorders20.Append(rightBorder21);
            Shading shading21 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin20 = new TableCellMargin();
            TopMargin topMargin21 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin20 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin21 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin20 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin20.Append(topMargin21);
            tableCellMargin20.Append(leftMargin20);
            tableCellMargin20.Append(bottomMargin21);
            tableCellMargin20.Append(rightMargin20);
            TableCellVerticalAlignment tableCellVerticalAlignment20 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark20 = new HideMark();

            tableCellProperties20.Append(tableCellWidth20);
            tableCellProperties20.Append(tableCellBorders20);
            tableCellProperties20.Append(shading21);
            tableCellProperties20.Append(tableCellMargin20);
            tableCellProperties20.Append(tableCellVerticalAlignment20);
            tableCellProperties20.Append(hideMark20);

            Paragraph paragraph21 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties20 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines20 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties20 = new ParagraphMarkRunProperties();
            RunFonts runFonts42 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color42 = new Color() { Val = "000000" };
            FontSize fontSize42 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript42 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties20.Append(runFonts42);
            paragraphMarkRunProperties20.Append(color42);
            paragraphMarkRunProperties20.Append(fontSize42);
            paragraphMarkRunProperties20.Append(fontSizeComplexScript42);

            paragraphProperties20.Append(spacingBetweenLines20);
            paragraphProperties20.Append(paragraphMarkRunProperties20);

            Run run24 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties24 = new RunProperties();
            RunFonts runFonts43 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color43 = new Color() { Val = "000000" };
            FontSize fontSize43 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript43 = new FontSizeComplexScript() { Val = "20" };

            runProperties24.Append(runFonts43);
            runProperties24.Append(color43);
            runProperties24.Append(fontSize43);
            runProperties24.Append(fontSizeComplexScript43);
            Text text23 = new Text();
            text23.Text = "✓";

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

            paragraph21.Append(paragraphProperties20);
            paragraph21.Append(run24);

            tableCell20.Append(tableCellProperties20);
            tableCell20.Append(paragraph21);

            TableCell tableCell21 = new TableCell();

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

            TableCellBorders tableCellBorders21 = new TableCellBorders();
            TopBorder topBorder22 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder22 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder22 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder22 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders21.Append(topBorder22);
            tableCellBorders21.Append(leftBorder22);
            tableCellBorders21.Append(bottomBorder22);
            tableCellBorders21.Append(rightBorder22);
            Shading shading22 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin21 = new TableCellMargin();
            TopMargin topMargin22 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin21 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin22 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin21 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin21.Append(topMargin22);
            tableCellMargin21.Append(leftMargin21);
            tableCellMargin21.Append(bottomMargin22);
            tableCellMargin21.Append(rightMargin21);
            TableCellVerticalAlignment tableCellVerticalAlignment21 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark21 = new HideMark();

            tableCellProperties21.Append(tableCellWidth21);
            tableCellProperties21.Append(tableCellBorders21);
            tableCellProperties21.Append(shading22);
            tableCellProperties21.Append(tableCellMargin21);
            tableCellProperties21.Append(tableCellVerticalAlignment21);
            tableCellProperties21.Append(hideMark21);

            Paragraph paragraph22 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties21 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines21 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties21 = new ParagraphMarkRunProperties();
            RunFonts runFonts44 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color44 = new Color() { Val = "000000" };
            FontSize fontSize44 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript44 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties21.Append(runFonts44);
            paragraphMarkRunProperties21.Append(color44);
            paragraphMarkRunProperties21.Append(fontSize44);
            paragraphMarkRunProperties21.Append(fontSizeComplexScript44);

            paragraphProperties21.Append(spacingBetweenLines21);
            paragraphProperties21.Append(paragraphMarkRunProperties21);

            Run run25 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties25 = new RunProperties();
            RunFonts runFonts45 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color45 = new Color() { Val = "000000" };
            FontSize fontSize45 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript45 = new FontSizeComplexScript() { Val = "20" };

            runProperties25.Append(runFonts45);
            runProperties25.Append(color45);
            runProperties25.Append(fontSize45);
            runProperties25.Append(fontSizeComplexScript45);
            Text text24 = new Text();
            text24.Text = "✓";

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

            paragraph22.Append(paragraphProperties21);
            paragraph22.Append(run25);

            tableCell21.Append(tableCellProperties21);
            tableCell21.Append(paragraph22);

            TableCell tableCell22 = new TableCell();

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

            TableCellBorders tableCellBorders22 = new TableCellBorders();
            TopBorder topBorder23 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder23 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder23 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder23 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders22.Append(topBorder23);
            tableCellBorders22.Append(leftBorder23);
            tableCellBorders22.Append(bottomBorder23);
            tableCellBorders22.Append(rightBorder23);
            Shading shading23 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin22 = new TableCellMargin();
            TopMargin topMargin23 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin22 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin23 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin22 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin22.Append(topMargin23);
            tableCellMargin22.Append(leftMargin22);
            tableCellMargin22.Append(bottomMargin23);
            tableCellMargin22.Append(rightMargin22);
            TableCellVerticalAlignment tableCellVerticalAlignment22 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark22 = new HideMark();

            tableCellProperties22.Append(tableCellWidth22);
            tableCellProperties22.Append(tableCellBorders22);
            tableCellProperties22.Append(shading23);
            tableCellProperties22.Append(tableCellMargin22);
            tableCellProperties22.Append(tableCellVerticalAlignment22);
            tableCellProperties22.Append(hideMark22);

            Paragraph paragraph23 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties22 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines22 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties22 = new ParagraphMarkRunProperties();
            RunFonts runFonts46 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color46 = new Color() { Val = "000000" };
            FontSize fontSize46 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript46 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties22.Append(runFonts46);
            paragraphMarkRunProperties22.Append(color46);
            paragraphMarkRunProperties22.Append(fontSize46);
            paragraphMarkRunProperties22.Append(fontSizeComplexScript46);

            paragraphProperties22.Append(spacingBetweenLines22);
            paragraphProperties22.Append(paragraphMarkRunProperties22);

            Run run26 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties26 = new RunProperties();
            RunFonts runFonts47 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color47 = new Color() { Val = "000000" };
            FontSize fontSize47 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript47 = new FontSizeComplexScript() { Val = "20" };

            runProperties26.Append(runFonts47);
            runProperties26.Append(color47);
            runProperties26.Append(fontSize47);
            runProperties26.Append(fontSizeComplexScript47);
            Text text25 = new Text();
            text25.Text = " ";

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

            paragraph23.Append(paragraphProperties22);
            paragraph23.Append(run26);

            tableCell22.Append(tableCellProperties22);
            tableCell22.Append(paragraph23);

            TableCell tableCell23 = new TableCell();

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

            TableCellBorders tableCellBorders23 = new TableCellBorders();
            TopBorder topBorder24 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder24 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder24 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder24 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders23.Append(topBorder24);
            tableCellBorders23.Append(leftBorder24);
            tableCellBorders23.Append(bottomBorder24);
            tableCellBorders23.Append(rightBorder24);
            Shading shading24 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin23 = new TableCellMargin();
            TopMargin topMargin24 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin23 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin24 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin23 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin23.Append(topMargin24);
            tableCellMargin23.Append(leftMargin23);
            tableCellMargin23.Append(bottomMargin24);
            tableCellMargin23.Append(rightMargin23);
            TableCellVerticalAlignment tableCellVerticalAlignment23 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark23 = new HideMark();

            tableCellProperties23.Append(tableCellWidth23);
            tableCellProperties23.Append(tableCellBorders23);
            tableCellProperties23.Append(shading24);
            tableCellProperties23.Append(tableCellMargin23);
            tableCellProperties23.Append(tableCellVerticalAlignment23);
            tableCellProperties23.Append(hideMark23);

            Paragraph paragraph24 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties23 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines23 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties23 = new ParagraphMarkRunProperties();
            RunFonts runFonts48 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color48 = new Color() { Val = "000000" };
            FontSize fontSize48 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript48 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties23.Append(runFonts48);
            paragraphMarkRunProperties23.Append(color48);
            paragraphMarkRunProperties23.Append(fontSize48);
            paragraphMarkRunProperties23.Append(fontSizeComplexScript48);

            paragraphProperties23.Append(spacingBetweenLines23);
            paragraphProperties23.Append(paragraphMarkRunProperties23);

            Run run27 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties27 = new RunProperties();
            RunFonts runFonts49 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color49 = new Color() { Val = "000000" };
            FontSize fontSize49 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript49 = new FontSizeComplexScript() { Val = "20" };

            runProperties27.Append(runFonts49);
            runProperties27.Append(color49);
            runProperties27.Append(fontSize49);
            runProperties27.Append(fontSizeComplexScript49);
            Text text26 = new Text();
            text26.Text = " ";

            run27.Append(runProperties27);
            run27.Append(text26);

            paragraph24.Append(paragraphProperties23);
            paragraph24.Append(run27);

            tableCell23.Append(tableCellProperties23);
            tableCell23.Append(paragraph24);

            TableCell tableCell24 = new TableCell();

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

            TableCellBorders tableCellBorders24 = new TableCellBorders();
            TopBorder topBorder25 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder25 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder25 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder25 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders24.Append(topBorder25);
            tableCellBorders24.Append(leftBorder25);
            tableCellBorders24.Append(bottomBorder25);
            tableCellBorders24.Append(rightBorder25);
            Shading shading25 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin24 = new TableCellMargin();
            TopMargin topMargin25 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin24 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin25 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin24 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin24.Append(topMargin25);
            tableCellMargin24.Append(leftMargin24);
            tableCellMargin24.Append(bottomMargin25);
            tableCellMargin24.Append(rightMargin24);
            TableCellVerticalAlignment tableCellVerticalAlignment24 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark24 = new HideMark();

            tableCellProperties24.Append(tableCellWidth24);
            tableCellProperties24.Append(tableCellBorders24);
            tableCellProperties24.Append(shading25);
            tableCellProperties24.Append(tableCellMargin24);
            tableCellProperties24.Append(tableCellVerticalAlignment24);
            tableCellProperties24.Append(hideMark24);

            Paragraph paragraph25 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties24 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines24 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties24 = new ParagraphMarkRunProperties();
            RunFonts runFonts50 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color50 = new Color() { Val = "000000" };
            FontSize fontSize50 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript50 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties24.Append(runFonts50);
            paragraphMarkRunProperties24.Append(color50);
            paragraphMarkRunProperties24.Append(fontSize50);
            paragraphMarkRunProperties24.Append(fontSizeComplexScript50);

            paragraphProperties24.Append(spacingBetweenLines24);
            paragraphProperties24.Append(paragraphMarkRunProperties24);

            Run run28 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties28 = new RunProperties();
            RunFonts runFonts51 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color51 = new Color() { Val = "000000" };
            FontSize fontSize51 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript51 = new FontSizeComplexScript() { Val = "20" };

            runProperties28.Append(runFonts51);
            runProperties28.Append(color51);
            runProperties28.Append(fontSize51);
            runProperties28.Append(fontSizeComplexScript51);
            Text text27 = new Text();
            text27.Text = "✓";

            run28.Append(runProperties28);
            run28.Append(text27);

            paragraph25.Append(paragraphProperties24);
            paragraph25.Append(run28);

            tableCell24.Append(tableCellProperties24);
            tableCell24.Append(paragraph25);

            tableRow2.Append(tableRowProperties2);
            tableRow2.Append(tableCell13);
            tableRow2.Append(tableCell14);
            tableRow2.Append(tableCell15);
            tableRow2.Append(tableCell16);
            tableRow2.Append(tableCell17);
            tableRow2.Append(tableCell18);
            tableRow2.Append(tableCell19);
            tableRow2.Append(tableCell20);
            tableRow2.Append(tableCell21);
            tableRow2.Append(tableCell22);
            tableRow2.Append(tableCell23);
            tableRow2.Append(tableCell24);

            TableRow tableRow3 = new TableRow() { RsidTableRowMarkRevision = "00C802B4", RsidTableRowAddition = "00C802B4", RsidTableRowProperties = "00C802B4" };

            TableRowProperties tableRowProperties3 = new TableRowProperties();
            TableRowHeight tableRowHeight3 = new TableRowHeight() { Val = (UInt32Value)780U };

            tableRowProperties3.Append(tableRowHeight3);

            TableCell tableCell25 = new TableCell();

            TableCellProperties tableCellProperties25 = new TableCellProperties();
            TableCellWidth tableCellWidth25 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders25 = new TableCellBorders();
            TopBorder topBorder26 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder26 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder26 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder26 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders25.Append(topBorder26);
            tableCellBorders25.Append(leftBorder26);
            tableCellBorders25.Append(bottomBorder26);
            tableCellBorders25.Append(rightBorder26);
            Shading shading26 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin25 = new TableCellMargin();
            TopMargin topMargin26 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin25 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin26 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin25 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin25.Append(topMargin26);
            tableCellMargin25.Append(leftMargin25);
            tableCellMargin25.Append(bottomMargin26);
            tableCellMargin25.Append(rightMargin25);
            TableCellVerticalAlignment tableCellVerticalAlignment25 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark25 = new HideMark();

            tableCellProperties25.Append(tableCellWidth25);
            tableCellProperties25.Append(tableCellBorders25);
            tableCellProperties25.Append(shading26);
            tableCellProperties25.Append(tableCellMargin25);
            tableCellProperties25.Append(tableCellVerticalAlignment25);
            tableCellProperties25.Append(hideMark25);

            Paragraph paragraph26 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties25 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines25 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties25 = new ParagraphMarkRunProperties();
            RunFonts runFonts52 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color52 = new Color() { Val = "000000" };
            FontSize fontSize52 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript52 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties25.Append(runFonts52);
            paragraphMarkRunProperties25.Append(color52);
            paragraphMarkRunProperties25.Append(fontSize52);
            paragraphMarkRunProperties25.Append(fontSizeComplexScript52);

            paragraphProperties25.Append(spacingBetweenLines25);
            paragraphProperties25.Append(paragraphMarkRunProperties25);

            Hyperlink hyperlink3 = new Hyperlink() { Tooltip = "Billion", History = true, Id = "rId10" };

            Run run29 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties29 = new RunProperties();
            RunFonts runFonts53 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color53 = new Color() { Val = "0B0080" };
            FontSize fontSize53 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript53 = new FontSizeComplexScript() { Val = "20" };

            runProperties29.Append(runFonts53);
            runProperties29.Append(color53);
            runProperties29.Append(fontSize53);
            runProperties29.Append(fontSizeComplexScript53);
            Text text28 = new Text();
            text28.Text = "Billion";

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

            hyperlink3.Append(run29);

            paragraph26.Append(paragraphProperties25);
            paragraph26.Append(hyperlink3);

            tableCell25.Append(tableCellProperties25);
            tableCell25.Append(paragraph26);

            TableCell tableCell26 = new TableCell();

            TableCellProperties tableCellProperties26 = new TableCellProperties();
            TableCellWidth tableCellWidth26 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders26 = new TableCellBorders();
            TopBorder topBorder27 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder27 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder27 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder27 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders26.Append(topBorder27);
            tableCellBorders26.Append(leftBorder27);
            tableCellBorders26.Append(bottomBorder27);
            tableCellBorders26.Append(rightBorder27);
            Shading shading27 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin26 = new TableCellMargin();
            TopMargin topMargin27 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin26 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin27 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin26 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin26.Append(topMargin27);
            tableCellMargin26.Append(leftMargin26);
            tableCellMargin26.Append(bottomMargin27);
            tableCellMargin26.Append(rightMargin26);
            TableCellVerticalAlignment tableCellVerticalAlignment26 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark26 = new HideMark();

            tableCellProperties26.Append(tableCellWidth26);
            tableCellProperties26.Append(tableCellBorders26);
            tableCellProperties26.Append(shading27);
            tableCellProperties26.Append(tableCellMargin26);
            tableCellProperties26.Append(tableCellVerticalAlignment26);
            tableCellProperties26.Append(hideMark26);

            Paragraph paragraph27 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties26 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines26 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification4 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties26 = new ParagraphMarkRunProperties();
            RunFonts runFonts54 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color54 = new Color() { Val = "000000" };
            FontSize fontSize54 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript54 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties26.Append(runFonts54);
            paragraphMarkRunProperties26.Append(color54);
            paragraphMarkRunProperties26.Append(fontSize54);
            paragraphMarkRunProperties26.Append(fontSizeComplexScript54);

            paragraphProperties26.Append(spacingBetweenLines26);
            paragraphProperties26.Append(justification4);
            paragraphProperties26.Append(paragraphMarkRunProperties26);

            Run run30 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties30 = new RunProperties();
            RunFonts runFonts55 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color55 = new Color() { Val = "000000" };
            FontSize fontSize55 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript55 = new FontSizeComplexScript() { Val = "20" };

            runProperties30.Append(runFonts55);
            runProperties30.Append(color55);
            runProperties30.Append(fontSize55);
            runProperties30.Append(fontSizeComplexScript55);
            Text text29 = new Text();
            text29.Text = "10";

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

            Run run31 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties31 = new RunProperties();
            RunFonts runFonts56 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color56 = new Color() { Val = "000000" };
            FontSize fontSize56 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript56 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment4 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties31.Append(runFonts56);
            runProperties31.Append(color56);
            runProperties31.Append(fontSize56);
            runProperties31.Append(fontSizeComplexScript56);
            runProperties31.Append(verticalTextAlignment4);
            Text text30 = new Text();
            text30.Text = "9";

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

            paragraph27.Append(paragraphProperties26);
            paragraph27.Append(run30);
            paragraph27.Append(run31);

            tableCell26.Append(tableCellProperties26);
            tableCell26.Append(paragraph27);

            TableCell tableCell27 = new TableCell();

            TableCellProperties tableCellProperties27 = new TableCellProperties();
            TableCellWidth tableCellWidth27 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders27 = new TableCellBorders();
            TopBorder topBorder28 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder28 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder28 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder28 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders27.Append(topBorder28);
            tableCellBorders27.Append(leftBorder28);
            tableCellBorders27.Append(bottomBorder28);
            tableCellBorders27.Append(rightBorder28);
            Shading shading28 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin27 = new TableCellMargin();
            TopMargin topMargin28 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin27 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin28 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin27 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin27.Append(topMargin28);
            tableCellMargin27.Append(leftMargin27);
            tableCellMargin27.Append(bottomMargin28);
            tableCellMargin27.Append(rightMargin27);
            TableCellVerticalAlignment tableCellVerticalAlignment27 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark27 = new HideMark();

            tableCellProperties27.Append(tableCellWidth27);
            tableCellProperties27.Append(tableCellBorders27);
            tableCellProperties27.Append(shading28);
            tableCellProperties27.Append(tableCellMargin27);
            tableCellProperties27.Append(tableCellVerticalAlignment27);
            tableCellProperties27.Append(hideMark27);

            Paragraph paragraph28 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties27 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines27 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification5 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties27 = new ParagraphMarkRunProperties();
            RunFonts runFonts57 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color57 = new Color() { Val = "000000" };
            FontSize fontSize57 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript57 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties27.Append(runFonts57);
            paragraphMarkRunProperties27.Append(color57);
            paragraphMarkRunProperties27.Append(fontSize57);
            paragraphMarkRunProperties27.Append(fontSizeComplexScript57);

            paragraphProperties27.Append(spacingBetweenLines27);
            paragraphProperties27.Append(justification5);
            paragraphProperties27.Append(paragraphMarkRunProperties27);

            Run run32 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties32 = new RunProperties();
            RunFonts runFonts58 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color58 = new Color() { Val = "000000" };
            FontSize fontSize58 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript58 = new FontSizeComplexScript() { Val = "20" };

            runProperties32.Append(runFonts58);
            runProperties32.Append(color58);
            runProperties32.Append(fontSize58);
            runProperties32.Append(fontSizeComplexScript58);
            Text text31 = new Text();
            text31.Text = "10";

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

            Run run33 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties33 = new RunProperties();
            RunFonts runFonts59 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color59 = new Color() { Val = "000000" };
            FontSize fontSize59 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript59 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment5 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties33.Append(runFonts59);
            runProperties33.Append(color59);
            runProperties33.Append(fontSize59);
            runProperties33.Append(fontSizeComplexScript59);
            runProperties33.Append(verticalTextAlignment5);
            Text text32 = new Text();
            text32.Text = "12";

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

            paragraph28.Append(paragraphProperties27);
            paragraph28.Append(run32);
            paragraph28.Append(run33);

            tableCell27.Append(tableCellProperties27);
            tableCell27.Append(paragraph28);

            TableCell tableCell28 = new TableCell();

            TableCellProperties tableCellProperties28 = new TableCellProperties();
            TableCellWidth tableCellWidth28 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders28 = new TableCellBorders();
            TopBorder topBorder29 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder29 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder29 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder29 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders28.Append(topBorder29);
            tableCellBorders28.Append(leftBorder29);
            tableCellBorders28.Append(bottomBorder29);
            tableCellBorders28.Append(rightBorder29);
            Shading shading29 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin28 = new TableCellMargin();
            TopMargin topMargin29 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin28 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin29 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin28 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin28.Append(topMargin29);
            tableCellMargin28.Append(leftMargin28);
            tableCellMargin28.Append(bottomMargin29);
            tableCellMargin28.Append(rightMargin28);
            TableCellVerticalAlignment tableCellVerticalAlignment28 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark28 = new HideMark();

            tableCellProperties28.Append(tableCellWidth28);
            tableCellProperties28.Append(tableCellBorders28);
            tableCellProperties28.Append(shading29);
            tableCellProperties28.Append(tableCellMargin28);
            tableCellProperties28.Append(tableCellVerticalAlignment28);
            tableCellProperties28.Append(hideMark28);

            Paragraph paragraph29 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties28 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines28 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties28 = new ParagraphMarkRunProperties();
            RunFonts runFonts60 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color60 = new Color() { Val = "000000" };
            FontSize fontSize60 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript60 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties28.Append(runFonts60);
            paragraphMarkRunProperties28.Append(color60);
            paragraphMarkRunProperties28.Append(fontSize60);
            paragraphMarkRunProperties28.Append(fontSizeComplexScript60);

            paragraphProperties28.Append(spacingBetweenLines28);
            paragraphProperties28.Append(paragraphMarkRunProperties28);

            Run run34 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties34 = new RunProperties();
            RunFonts runFonts61 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color61 = new Color() { Val = "000000" };
            FontSize fontSize61 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript61 = new FontSizeComplexScript() { Val = "20" };

            runProperties34.Append(runFonts61);
            runProperties34.Append(color61);
            runProperties34.Append(fontSize61);
            runProperties34.Append(fontSizeComplexScript61);
            Text text33 = new Text();
            text33.Text = "✓";

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

            paragraph29.Append(paragraphProperties28);
            paragraph29.Append(run34);

            tableCell28.Append(tableCellProperties28);
            tableCell28.Append(paragraph29);

            TableCell tableCell29 = new TableCell();

            TableCellProperties tableCellProperties29 = new TableCellProperties();
            TableCellWidth tableCellWidth29 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders29 = new TableCellBorders();
            TopBorder topBorder30 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder30 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder30 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder30 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders29.Append(topBorder30);
            tableCellBorders29.Append(leftBorder30);
            tableCellBorders29.Append(bottomBorder30);
            tableCellBorders29.Append(rightBorder30);
            Shading shading30 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin29 = new TableCellMargin();
            TopMargin topMargin30 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin29 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin30 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin29 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin29.Append(topMargin30);
            tableCellMargin29.Append(leftMargin29);
            tableCellMargin29.Append(bottomMargin30);
            tableCellMargin29.Append(rightMargin29);
            TableCellVerticalAlignment tableCellVerticalAlignment29 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark29 = new HideMark();

            tableCellProperties29.Append(tableCellWidth29);
            tableCellProperties29.Append(tableCellBorders29);
            tableCellProperties29.Append(shading30);
            tableCellProperties29.Append(tableCellMargin29);
            tableCellProperties29.Append(tableCellVerticalAlignment29);
            tableCellProperties29.Append(hideMark29);

            Paragraph paragraph30 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties29 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines29 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties29 = new ParagraphMarkRunProperties();
            RunFonts runFonts62 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color62 = new Color() { Val = "000000" };
            FontSize fontSize62 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript62 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties29.Append(runFonts62);
            paragraphMarkRunProperties29.Append(color62);
            paragraphMarkRunProperties29.Append(fontSize62);
            paragraphMarkRunProperties29.Append(fontSizeComplexScript62);

            paragraphProperties29.Append(spacingBetweenLines29);
            paragraphProperties29.Append(paragraphMarkRunProperties29);

            Run run35 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties35 = new RunProperties();
            RunFonts runFonts63 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color63 = new Color() { Val = "000000" };
            FontSize fontSize63 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript63 = new FontSizeComplexScript() { Val = "20" };

            runProperties35.Append(runFonts63);
            runProperties35.Append(color63);
            runProperties35.Append(fontSize63);
            runProperties35.Append(fontSizeComplexScript63);
            Text text34 = new Text();
            text34.Text = "✓";

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

            paragraph30.Append(paragraphProperties29);
            paragraph30.Append(run35);

            tableCell29.Append(tableCellProperties29);
            tableCell29.Append(paragraph30);

            TableCell tableCell30 = new TableCell();

            TableCellProperties tableCellProperties30 = new TableCellProperties();
            TableCellWidth tableCellWidth30 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders30 = new TableCellBorders();
            TopBorder topBorder31 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder31 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder31 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder31 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders30.Append(topBorder31);
            tableCellBorders30.Append(leftBorder31);
            tableCellBorders30.Append(bottomBorder31);
            tableCellBorders30.Append(rightBorder31);
            Shading shading31 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin30 = new TableCellMargin();
            TopMargin topMargin31 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin30 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin31 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin30 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin30.Append(topMargin31);
            tableCellMargin30.Append(leftMargin30);
            tableCellMargin30.Append(bottomMargin31);
            tableCellMargin30.Append(rightMargin30);
            TableCellVerticalAlignment tableCellVerticalAlignment30 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark30 = new HideMark();

            tableCellProperties30.Append(tableCellWidth30);
            tableCellProperties30.Append(tableCellBorders30);
            tableCellProperties30.Append(shading31);
            tableCellProperties30.Append(tableCellMargin30);
            tableCellProperties30.Append(tableCellVerticalAlignment30);
            tableCellProperties30.Append(hideMark30);

            Paragraph paragraph31 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties30 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines30 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties30 = new ParagraphMarkRunProperties();
            RunFonts runFonts64 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color64 = new Color() { Val = "000000" };
            FontSize fontSize64 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript64 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties30.Append(runFonts64);
            paragraphMarkRunProperties30.Append(color64);
            paragraphMarkRunProperties30.Append(fontSize64);
            paragraphMarkRunProperties30.Append(fontSizeComplexScript64);

            paragraphProperties30.Append(spacingBetweenLines30);
            paragraphProperties30.Append(paragraphMarkRunProperties30);

            Run run36 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties36 = new RunProperties();
            RunFonts runFonts65 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color65 = new Color() { Val = "000000" };
            FontSize fontSize65 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript65 = new FontSizeComplexScript() { Val = "20" };

            runProperties36.Append(runFonts65);
            runProperties36.Append(color65);
            runProperties36.Append(fontSize65);
            runProperties36.Append(fontSizeComplexScript65);
            Text text35 = new Text();
            text35.Text = "✓";

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

            paragraph31.Append(paragraphProperties30);
            paragraph31.Append(run36);

            tableCell30.Append(tableCellProperties30);
            tableCell30.Append(paragraph31);

            TableCell tableCell31 = new TableCell();

            TableCellProperties tableCellProperties31 = new TableCellProperties();
            TableCellWidth tableCellWidth31 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders31 = new TableCellBorders();
            TopBorder topBorder32 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder32 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder32 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder32 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders31.Append(topBorder32);
            tableCellBorders31.Append(leftBorder32);
            tableCellBorders31.Append(bottomBorder32);
            tableCellBorders31.Append(rightBorder32);
            Shading shading32 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin31 = new TableCellMargin();
            TopMargin topMargin32 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin31 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin32 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin31 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin31.Append(topMargin32);
            tableCellMargin31.Append(leftMargin31);
            tableCellMargin31.Append(bottomMargin32);
            tableCellMargin31.Append(rightMargin31);
            TableCellVerticalAlignment tableCellVerticalAlignment31 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark31 = new HideMark();

            tableCellProperties31.Append(tableCellWidth31);
            tableCellProperties31.Append(tableCellBorders31);
            tableCellProperties31.Append(shading32);
            tableCellProperties31.Append(tableCellMargin31);
            tableCellProperties31.Append(tableCellVerticalAlignment31);
            tableCellProperties31.Append(hideMark31);

            Paragraph paragraph32 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties31 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines31 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties31 = new ParagraphMarkRunProperties();
            RunFonts runFonts66 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color66 = new Color() { Val = "000000" };
            FontSize fontSize66 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript66 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties31.Append(runFonts66);
            paragraphMarkRunProperties31.Append(color66);
            paragraphMarkRunProperties31.Append(fontSize66);
            paragraphMarkRunProperties31.Append(fontSizeComplexScript66);

            paragraphProperties31.Append(spacingBetweenLines31);
            paragraphProperties31.Append(paragraphMarkRunProperties31);

            Run run37 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties37 = new RunProperties();
            RunFonts runFonts67 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color67 = new Color() { Val = "000000" };
            FontSize fontSize67 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript67 = new FontSizeComplexScript() { Val = "20" };

            runProperties37.Append(runFonts67);
            runProperties37.Append(color67);
            runProperties37.Append(fontSize67);
            runProperties37.Append(fontSizeComplexScript67);
            Text text36 = new Text();
            text36.Text = "✓";

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

            paragraph32.Append(paragraphProperties31);
            paragraph32.Append(run37);

            tableCell31.Append(tableCellProperties31);
            tableCell31.Append(paragraph32);

            TableCell tableCell32 = new TableCell();

            TableCellProperties tableCellProperties32 = new TableCellProperties();
            TableCellWidth tableCellWidth32 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders32 = new TableCellBorders();
            TopBorder topBorder33 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder33 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder33 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder33 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders32.Append(topBorder33);
            tableCellBorders32.Append(leftBorder33);
            tableCellBorders32.Append(bottomBorder33);
            tableCellBorders32.Append(rightBorder33);
            Shading shading33 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin32 = new TableCellMargin();
            TopMargin topMargin33 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin32 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin33 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin32 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin32.Append(topMargin33);
            tableCellMargin32.Append(leftMargin32);
            tableCellMargin32.Append(bottomMargin33);
            tableCellMargin32.Append(rightMargin32);
            TableCellVerticalAlignment tableCellVerticalAlignment32 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark32 = new HideMark();

            tableCellProperties32.Append(tableCellWidth32);
            tableCellProperties32.Append(tableCellBorders32);
            tableCellProperties32.Append(shading33);
            tableCellProperties32.Append(tableCellMargin32);
            tableCellProperties32.Append(tableCellVerticalAlignment32);
            tableCellProperties32.Append(hideMark32);

            Paragraph paragraph33 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties32 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines32 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties32 = new ParagraphMarkRunProperties();
            RunFonts runFonts68 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color68 = new Color() { Val = "000000" };
            FontSize fontSize68 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript68 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties32.Append(runFonts68);
            paragraphMarkRunProperties32.Append(color68);
            paragraphMarkRunProperties32.Append(fontSize68);
            paragraphMarkRunProperties32.Append(fontSizeComplexScript68);

            paragraphProperties32.Append(spacingBetweenLines32);
            paragraphProperties32.Append(paragraphMarkRunProperties32);

            Run run38 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties38 = new RunProperties();
            RunFonts runFonts69 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color69 = new Color() { Val = "000000" };
            FontSize fontSize69 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript69 = new FontSizeComplexScript() { Val = "20" };

            runProperties38.Append(runFonts69);
            runProperties38.Append(color69);
            runProperties38.Append(fontSize69);
            runProperties38.Append(fontSizeComplexScript69);
            Text text37 = new Text();
            text37.Text = "✓";

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

            paragraph33.Append(paragraphProperties32);
            paragraph33.Append(run38);

            tableCell32.Append(tableCellProperties32);
            tableCell32.Append(paragraph33);

            TableCell tableCell33 = new TableCell();

            TableCellProperties tableCellProperties33 = new TableCellProperties();
            TableCellWidth tableCellWidth33 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders33 = new TableCellBorders();
            TopBorder topBorder34 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder34 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder34 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder34 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders33.Append(topBorder34);
            tableCellBorders33.Append(leftBorder34);
            tableCellBorders33.Append(bottomBorder34);
            tableCellBorders33.Append(rightBorder34);
            Shading shading34 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin33 = new TableCellMargin();
            TopMargin topMargin34 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin33 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin34 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin33 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin33.Append(topMargin34);
            tableCellMargin33.Append(leftMargin33);
            tableCellMargin33.Append(bottomMargin34);
            tableCellMargin33.Append(rightMargin33);
            TableCellVerticalAlignment tableCellVerticalAlignment33 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark33 = new HideMark();

            tableCellProperties33.Append(tableCellWidth33);
            tableCellProperties33.Append(tableCellBorders33);
            tableCellProperties33.Append(shading34);
            tableCellProperties33.Append(tableCellMargin33);
            tableCellProperties33.Append(tableCellVerticalAlignment33);
            tableCellProperties33.Append(hideMark33);

            Paragraph paragraph34 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties33 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines33 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties33 = new ParagraphMarkRunProperties();
            RunFonts runFonts70 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color70 = new Color() { Val = "000000" };
            FontSize fontSize70 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript70 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties33.Append(runFonts70);
            paragraphMarkRunProperties33.Append(color70);
            paragraphMarkRunProperties33.Append(fontSize70);
            paragraphMarkRunProperties33.Append(fontSizeComplexScript70);

            paragraphProperties33.Append(spacingBetweenLines33);
            paragraphProperties33.Append(paragraphMarkRunProperties33);

            Run run39 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties39 = new RunProperties();
            RunFonts runFonts71 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color71 = new Color() { Val = "000000" };
            FontSize fontSize71 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript71 = new FontSizeComplexScript() { Val = "20" };

            runProperties39.Append(runFonts71);
            runProperties39.Append(color71);
            runProperties39.Append(fontSize71);
            runProperties39.Append(fontSizeComplexScript71);
            Text text38 = new Text();
            text38.Text = "✓";

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

            paragraph34.Append(paragraphProperties33);
            paragraph34.Append(run39);

            tableCell33.Append(tableCellProperties33);
            tableCell33.Append(paragraph34);

            TableCell tableCell34 = new TableCell();

            TableCellProperties tableCellProperties34 = new TableCellProperties();
            TableCellWidth tableCellWidth34 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders34 = new TableCellBorders();
            TopBorder topBorder35 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder35 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder35 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder35 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders34.Append(topBorder35);
            tableCellBorders34.Append(leftBorder35);
            tableCellBorders34.Append(bottomBorder35);
            tableCellBorders34.Append(rightBorder35);
            Shading shading35 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin34 = new TableCellMargin();
            TopMargin topMargin35 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin34 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin35 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin34 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin34.Append(topMargin35);
            tableCellMargin34.Append(leftMargin34);
            tableCellMargin34.Append(bottomMargin35);
            tableCellMargin34.Append(rightMargin34);
            TableCellVerticalAlignment tableCellVerticalAlignment34 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark34 = new HideMark();

            tableCellProperties34.Append(tableCellWidth34);
            tableCellProperties34.Append(tableCellBorders34);
            tableCellProperties34.Append(shading35);
            tableCellProperties34.Append(tableCellMargin34);
            tableCellProperties34.Append(tableCellVerticalAlignment34);
            tableCellProperties34.Append(hideMark34);

            Paragraph paragraph35 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties34 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines34 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties34 = new ParagraphMarkRunProperties();
            RunFonts runFonts72 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color72 = new Color() { Val = "000000" };
            FontSize fontSize72 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript72 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties34.Append(runFonts72);
            paragraphMarkRunProperties34.Append(color72);
            paragraphMarkRunProperties34.Append(fontSize72);
            paragraphMarkRunProperties34.Append(fontSizeComplexScript72);

            paragraphProperties34.Append(spacingBetweenLines34);
            paragraphProperties34.Append(paragraphMarkRunProperties34);

            Run run40 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties40 = new RunProperties();
            RunFonts runFonts73 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color73 = new Color() { Val = "000000" };
            FontSize fontSize73 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript73 = new FontSizeComplexScript() { Val = "20" };

            runProperties40.Append(runFonts73);
            runProperties40.Append(color73);
            runProperties40.Append(fontSize73);
            runProperties40.Append(fontSizeComplexScript73);
            Text text39 = new Text();
            text39.Text = "✓";

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

            paragraph35.Append(paragraphProperties34);
            paragraph35.Append(run40);

            tableCell34.Append(tableCellProperties34);
            tableCell34.Append(paragraph35);

            TableCell tableCell35 = new TableCell();

            TableCellProperties tableCellProperties35 = new TableCellProperties();
            TableCellWidth tableCellWidth35 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders35 = new TableCellBorders();
            TopBorder topBorder36 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder36 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder36 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder36 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders35.Append(topBorder36);
            tableCellBorders35.Append(leftBorder36);
            tableCellBorders35.Append(bottomBorder36);
            tableCellBorders35.Append(rightBorder36);
            Shading shading36 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin35 = new TableCellMargin();
            TopMargin topMargin36 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin35 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin36 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin35 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin35.Append(topMargin36);
            tableCellMargin35.Append(leftMargin35);
            tableCellMargin35.Append(bottomMargin36);
            tableCellMargin35.Append(rightMargin35);
            TableCellVerticalAlignment tableCellVerticalAlignment35 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark35 = new HideMark();

            tableCellProperties35.Append(tableCellWidth35);
            tableCellProperties35.Append(tableCellBorders35);
            tableCellProperties35.Append(shading36);
            tableCellProperties35.Append(tableCellMargin35);
            tableCellProperties35.Append(tableCellVerticalAlignment35);
            tableCellProperties35.Append(hideMark35);

            Paragraph paragraph36 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties35 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines35 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties35 = new ParagraphMarkRunProperties();
            RunFonts runFonts74 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color74 = new Color() { Val = "000000" };
            FontSize fontSize74 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript74 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties35.Append(runFonts74);
            paragraphMarkRunProperties35.Append(color74);
            paragraphMarkRunProperties35.Append(fontSize74);
            paragraphMarkRunProperties35.Append(fontSizeComplexScript74);

            paragraphProperties35.Append(spacingBetweenLines35);
            paragraphProperties35.Append(paragraphMarkRunProperties35);

            Run run41 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties41 = new RunProperties();
            RunFonts runFonts75 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color75 = new Color() { Val = "000000" };
            FontSize fontSize75 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript75 = new FontSizeComplexScript() { Val = "20" };

            runProperties41.Append(runFonts75);
            runProperties41.Append(color75);
            runProperties41.Append(fontSize75);
            runProperties41.Append(fontSizeComplexScript75);
            Text text40 = new Text();
            text40.Text = "✓";

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

            paragraph36.Append(paragraphProperties35);
            paragraph36.Append(run41);

            tableCell35.Append(tableCellProperties35);
            tableCell35.Append(paragraph36);

            TableCell tableCell36 = new TableCell();

            TableCellProperties tableCellProperties36 = new TableCellProperties();
            TableCellWidth tableCellWidth36 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders36 = new TableCellBorders();
            TopBorder topBorder37 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder37 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder37 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder37 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders36.Append(topBorder37);
            tableCellBorders36.Append(leftBorder37);
            tableCellBorders36.Append(bottomBorder37);
            tableCellBorders36.Append(rightBorder37);
            Shading shading37 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin36 = new TableCellMargin();
            TopMargin topMargin37 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin36 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin37 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin36 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin36.Append(topMargin37);
            tableCellMargin36.Append(leftMargin36);
            tableCellMargin36.Append(bottomMargin37);
            tableCellMargin36.Append(rightMargin36);
            TableCellVerticalAlignment tableCellVerticalAlignment36 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark36 = new HideMark();

            tableCellProperties36.Append(tableCellWidth36);
            tableCellProperties36.Append(tableCellBorders36);
            tableCellProperties36.Append(shading37);
            tableCellProperties36.Append(tableCellMargin36);
            tableCellProperties36.Append(tableCellVerticalAlignment36);
            tableCellProperties36.Append(hideMark36);

            Paragraph paragraph37 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties36 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines36 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties36 = new ParagraphMarkRunProperties();
            RunFonts runFonts76 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color76 = new Color() { Val = "000000" };
            FontSize fontSize76 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript76 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties36.Append(runFonts76);
            paragraphMarkRunProperties36.Append(color76);
            paragraphMarkRunProperties36.Append(fontSize76);
            paragraphMarkRunProperties36.Append(fontSizeComplexScript76);

            paragraphProperties36.Append(spacingBetweenLines36);
            paragraphProperties36.Append(paragraphMarkRunProperties36);

            Run run42 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties42 = new RunProperties();
            RunFonts runFonts77 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color77 = new Color() { Val = "000000" };
            FontSize fontSize77 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript77 = new FontSizeComplexScript() { Val = "20" };

            runProperties42.Append(runFonts77);
            runProperties42.Append(color77);
            runProperties42.Append(fontSize77);
            runProperties42.Append(fontSizeComplexScript77);
            Text text41 = new Text();
            text41.Text = "✓";

            run42.Append(runProperties42);
            run42.Append(text41);

            paragraph37.Append(paragraphProperties36);
            paragraph37.Append(run42);

            tableCell36.Append(tableCellProperties36);
            tableCell36.Append(paragraph37);

            tableRow3.Append(tableRowProperties3);
            tableRow3.Append(tableCell25);
            tableRow3.Append(tableCell26);
            tableRow3.Append(tableCell27);
            tableRow3.Append(tableCell28);
            tableRow3.Append(tableCell29);
            tableRow3.Append(tableCell30);
            tableRow3.Append(tableCell31);
            tableRow3.Append(tableCell32);
            tableRow3.Append(tableCell33);
            tableRow3.Append(tableCell34);
            tableRow3.Append(tableCell35);
            tableRow3.Append(tableCell36);

            TableRow tableRow4 = new TableRow() { RsidTableRowMarkRevision = "00C802B4", RsidTableRowAddition = "00C802B4", RsidTableRowProperties = "00C802B4" };

            TableRowProperties tableRowProperties4 = new TableRowProperties();
            TableRowHeight tableRowHeight4 = new TableRowHeight() { Val = (UInt32Value)765U };

            tableRowProperties4.Append(tableRowHeight4);

            TableCell tableCell37 = new TableCell();

            TableCellProperties tableCellProperties37 = new TableCellProperties();
            TableCellWidth tableCellWidth37 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders37 = new TableCellBorders();
            TopBorder topBorder38 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder38 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder38 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder38 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders37.Append(topBorder38);
            tableCellBorders37.Append(leftBorder38);
            tableCellBorders37.Append(bottomBorder38);
            tableCellBorders37.Append(rightBorder38);
            Shading shading38 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin37 = new TableCellMargin();
            TopMargin topMargin38 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin37 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin38 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin37 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin37.Append(topMargin38);
            tableCellMargin37.Append(leftMargin37);
            tableCellMargin37.Append(bottomMargin38);
            tableCellMargin37.Append(rightMargin37);
            TableCellVerticalAlignment tableCellVerticalAlignment37 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark37 = new HideMark();

            tableCellProperties37.Append(tableCellWidth37);
            tableCellProperties37.Append(tableCellBorders37);
            tableCellProperties37.Append(shading38);
            tableCellProperties37.Append(tableCellMargin37);
            tableCellProperties37.Append(tableCellVerticalAlignment37);
            tableCellProperties37.Append(hideMark37);

            Paragraph paragraph38 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties37 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines37 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties37 = new ParagraphMarkRunProperties();
            RunFonts runFonts78 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color78 = new Color() { Val = "000000" };
            FontSize fontSize78 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript78 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties37.Append(runFonts78);
            paragraphMarkRunProperties37.Append(color78);
            paragraphMarkRunProperties37.Append(fontSize78);
            paragraphMarkRunProperties37.Append(fontSizeComplexScript78);

            paragraphProperties37.Append(spacingBetweenLines37);
            paragraphProperties37.Append(paragraphMarkRunProperties37);

            Hyperlink hyperlink4 = new Hyperlink() { Tooltip = "Trillion", History = true, Id = "rId11" };

            Run run43 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties43 = new RunProperties();
            RunFonts runFonts79 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color79 = new Color() { Val = "0B0080" };
            FontSize fontSize79 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript79 = new FontSizeComplexScript() { Val = "20" };

            runProperties43.Append(runFonts79);
            runProperties43.Append(color79);
            runProperties43.Append(fontSize79);
            runProperties43.Append(fontSizeComplexScript79);
            Text text42 = new Text();
            text42.Text = "Trillion";

            run43.Append(runProperties43);
            run43.Append(text42);

            hyperlink4.Append(run43);

            paragraph38.Append(paragraphProperties37);
            paragraph38.Append(hyperlink4);

            tableCell37.Append(tableCellProperties37);
            tableCell37.Append(paragraph38);

            TableCell tableCell38 = new TableCell();

            TableCellProperties tableCellProperties38 = new TableCellProperties();
            TableCellWidth tableCellWidth38 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders38 = new TableCellBorders();
            TopBorder topBorder39 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder39 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder39 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder39 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders38.Append(topBorder39);
            tableCellBorders38.Append(leftBorder39);
            tableCellBorders38.Append(bottomBorder39);
            tableCellBorders38.Append(rightBorder39);
            Shading shading39 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin38 = new TableCellMargin();
            TopMargin topMargin39 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin38 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin39 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin38 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin38.Append(topMargin39);
            tableCellMargin38.Append(leftMargin38);
            tableCellMargin38.Append(bottomMargin39);
            tableCellMargin38.Append(rightMargin38);
            TableCellVerticalAlignment tableCellVerticalAlignment38 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark38 = new HideMark();

            tableCellProperties38.Append(tableCellWidth38);
            tableCellProperties38.Append(tableCellBorders38);
            tableCellProperties38.Append(shading39);
            tableCellProperties38.Append(tableCellMargin38);
            tableCellProperties38.Append(tableCellVerticalAlignment38);
            tableCellProperties38.Append(hideMark38);

            Paragraph paragraph39 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties38 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines38 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification6 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties38 = new ParagraphMarkRunProperties();
            RunFonts runFonts80 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color80 = new Color() { Val = "000000" };
            FontSize fontSize80 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript80 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties38.Append(runFonts80);
            paragraphMarkRunProperties38.Append(color80);
            paragraphMarkRunProperties38.Append(fontSize80);
            paragraphMarkRunProperties38.Append(fontSizeComplexScript80);

            paragraphProperties38.Append(spacingBetweenLines38);
            paragraphProperties38.Append(justification6);
            paragraphProperties38.Append(paragraphMarkRunProperties38);

            Run run44 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties44 = new RunProperties();
            RunFonts runFonts81 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color81 = new Color() { Val = "000000" };
            FontSize fontSize81 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript81 = new FontSizeComplexScript() { Val = "20" };

            runProperties44.Append(runFonts81);
            runProperties44.Append(color81);
            runProperties44.Append(fontSize81);
            runProperties44.Append(fontSizeComplexScript81);
            Text text43 = new Text();
            text43.Text = "10";

            run44.Append(runProperties44);
            run44.Append(text43);

            Run run45 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties45 = new RunProperties();
            RunFonts runFonts82 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color82 = new Color() { Val = "000000" };
            FontSize fontSize82 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript82 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment6 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties45.Append(runFonts82);
            runProperties45.Append(color82);
            runProperties45.Append(fontSize82);
            runProperties45.Append(fontSizeComplexScript82);
            runProperties45.Append(verticalTextAlignment6);
            Text text44 = new Text();
            text44.Text = "12";

            run45.Append(runProperties45);
            run45.Append(text44);

            paragraph39.Append(paragraphProperties38);
            paragraph39.Append(run44);
            paragraph39.Append(run45);

            tableCell38.Append(tableCellProperties38);
            tableCell38.Append(paragraph39);

            TableCell tableCell39 = new TableCell();

            TableCellProperties tableCellProperties39 = new TableCellProperties();
            TableCellWidth tableCellWidth39 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders39 = new TableCellBorders();
            TopBorder topBorder40 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder40 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder40 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder40 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders39.Append(topBorder40);
            tableCellBorders39.Append(leftBorder40);
            tableCellBorders39.Append(bottomBorder40);
            tableCellBorders39.Append(rightBorder40);
            Shading shading40 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin39 = new TableCellMargin();
            TopMargin topMargin40 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin39 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin40 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin39 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin39.Append(topMargin40);
            tableCellMargin39.Append(leftMargin39);
            tableCellMargin39.Append(bottomMargin40);
            tableCellMargin39.Append(rightMargin39);
            TableCellVerticalAlignment tableCellVerticalAlignment39 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark39 = new HideMark();

            tableCellProperties39.Append(tableCellWidth39);
            tableCellProperties39.Append(tableCellBorders39);
            tableCellProperties39.Append(shading40);
            tableCellProperties39.Append(tableCellMargin39);
            tableCellProperties39.Append(tableCellVerticalAlignment39);
            tableCellProperties39.Append(hideMark39);

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

            ParagraphProperties paragraphProperties39 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines39 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification7 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties39 = new ParagraphMarkRunProperties();
            RunFonts runFonts83 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color83 = new Color() { Val = "000000" };
            FontSize fontSize83 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript83 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties39.Append(runFonts83);
            paragraphMarkRunProperties39.Append(color83);
            paragraphMarkRunProperties39.Append(fontSize83);
            paragraphMarkRunProperties39.Append(fontSizeComplexScript83);

            paragraphProperties39.Append(spacingBetweenLines39);
            paragraphProperties39.Append(justification7);
            paragraphProperties39.Append(paragraphMarkRunProperties39);

            Run run46 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties46 = new RunProperties();
            RunFonts runFonts84 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color84 = new Color() { Val = "000000" };
            FontSize fontSize84 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript84 = new FontSizeComplexScript() { Val = "20" };

            runProperties46.Append(runFonts84);
            runProperties46.Append(color84);
            runProperties46.Append(fontSize84);
            runProperties46.Append(fontSizeComplexScript84);
            Text text45 = new Text();
            text45.Text = "10";

            run46.Append(runProperties46);
            run46.Append(text45);

            Run run47 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties47 = new RunProperties();
            RunFonts runFonts85 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color85 = new Color() { Val = "000000" };
            FontSize fontSize85 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript85 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment7 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties47.Append(runFonts85);
            runProperties47.Append(color85);
            runProperties47.Append(fontSize85);
            runProperties47.Append(fontSizeComplexScript85);
            runProperties47.Append(verticalTextAlignment7);
            Text text46 = new Text();
            text46.Text = "18";

            run47.Append(runProperties47);
            run47.Append(text46);

            paragraph40.Append(paragraphProperties39);
            paragraph40.Append(run46);
            paragraph40.Append(run47);

            tableCell39.Append(tableCellProperties39);
            tableCell39.Append(paragraph40);

            TableCell tableCell40 = new TableCell();

            TableCellProperties tableCellProperties40 = new TableCellProperties();
            TableCellWidth tableCellWidth40 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders40 = new TableCellBorders();
            TopBorder topBorder41 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder41 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder41 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder41 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders40.Append(topBorder41);
            tableCellBorders40.Append(leftBorder41);
            tableCellBorders40.Append(bottomBorder41);
            tableCellBorders40.Append(rightBorder41);
            Shading shading41 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin40 = new TableCellMargin();
            TopMargin topMargin41 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin40 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin41 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin40 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin40.Append(topMargin41);
            tableCellMargin40.Append(leftMargin40);
            tableCellMargin40.Append(bottomMargin41);
            tableCellMargin40.Append(rightMargin40);
            TableCellVerticalAlignment tableCellVerticalAlignment40 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark40 = new HideMark();

            tableCellProperties40.Append(tableCellWidth40);
            tableCellProperties40.Append(tableCellBorders40);
            tableCellProperties40.Append(shading41);
            tableCellProperties40.Append(tableCellMargin40);
            tableCellProperties40.Append(tableCellVerticalAlignment40);
            tableCellProperties40.Append(hideMark40);

            Paragraph paragraph41 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties40 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines40 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties40 = new ParagraphMarkRunProperties();
            RunFonts runFonts86 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color86 = new Color() { Val = "000000" };
            FontSize fontSize86 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript86 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties40.Append(runFonts86);
            paragraphMarkRunProperties40.Append(color86);
            paragraphMarkRunProperties40.Append(fontSize86);
            paragraphMarkRunProperties40.Append(fontSizeComplexScript86);

            paragraphProperties40.Append(spacingBetweenLines40);
            paragraphProperties40.Append(paragraphMarkRunProperties40);

            Run run48 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties48 = new RunProperties();
            RunFonts runFonts87 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color87 = new Color() { Val = "000000" };
            FontSize fontSize87 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript87 = new FontSizeComplexScript() { Val = "20" };

            runProperties48.Append(runFonts87);
            runProperties48.Append(color87);
            runProperties48.Append(fontSize87);
            runProperties48.Append(fontSizeComplexScript87);
            Text text47 = new Text();
            text47.Text = "✓";

            run48.Append(runProperties48);
            run48.Append(text47);

            paragraph41.Append(paragraphProperties40);
            paragraph41.Append(run48);

            tableCell40.Append(tableCellProperties40);
            tableCell40.Append(paragraph41);

            TableCell tableCell41 = new TableCell();

            TableCellProperties tableCellProperties41 = new TableCellProperties();
            TableCellWidth tableCellWidth41 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders41 = new TableCellBorders();
            TopBorder topBorder42 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder42 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder42 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder42 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders41.Append(topBorder42);
            tableCellBorders41.Append(leftBorder42);
            tableCellBorders41.Append(bottomBorder42);
            tableCellBorders41.Append(rightBorder42);
            Shading shading42 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin41 = new TableCellMargin();
            TopMargin topMargin42 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin41 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin42 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin41 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin41.Append(topMargin42);
            tableCellMargin41.Append(leftMargin41);
            tableCellMargin41.Append(bottomMargin42);
            tableCellMargin41.Append(rightMargin41);
            TableCellVerticalAlignment tableCellVerticalAlignment41 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark41 = new HideMark();

            tableCellProperties41.Append(tableCellWidth41);
            tableCellProperties41.Append(tableCellBorders41);
            tableCellProperties41.Append(shading42);
            tableCellProperties41.Append(tableCellMargin41);
            tableCellProperties41.Append(tableCellVerticalAlignment41);
            tableCellProperties41.Append(hideMark41);

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

            ParagraphProperties paragraphProperties41 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines41 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties41 = new ParagraphMarkRunProperties();
            RunFonts runFonts88 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color88 = new Color() { Val = "000000" };
            FontSize fontSize88 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript88 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties41.Append(runFonts88);
            paragraphMarkRunProperties41.Append(color88);
            paragraphMarkRunProperties41.Append(fontSize88);
            paragraphMarkRunProperties41.Append(fontSizeComplexScript88);

            paragraphProperties41.Append(spacingBetweenLines41);
            paragraphProperties41.Append(paragraphMarkRunProperties41);

            Run run49 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties49 = new RunProperties();
            RunFonts runFonts89 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color89 = new Color() { Val = "000000" };
            FontSize fontSize89 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript89 = new FontSizeComplexScript() { Val = "20" };

            runProperties49.Append(runFonts89);
            runProperties49.Append(color89);
            runProperties49.Append(fontSize89);
            runProperties49.Append(fontSizeComplexScript89);
            Text text48 = new Text();
            text48.Text = "✓";

            run49.Append(runProperties49);
            run49.Append(text48);

            paragraph42.Append(paragraphProperties41);
            paragraph42.Append(run49);

            tableCell41.Append(tableCellProperties41);
            tableCell41.Append(paragraph42);

            TableCell tableCell42 = new TableCell();

            TableCellProperties tableCellProperties42 = new TableCellProperties();
            TableCellWidth tableCellWidth42 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders42 = new TableCellBorders();
            TopBorder topBorder43 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder43 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder43 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder43 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders42.Append(topBorder43);
            tableCellBorders42.Append(leftBorder43);
            tableCellBorders42.Append(bottomBorder43);
            tableCellBorders42.Append(rightBorder43);
            Shading shading43 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin42 = new TableCellMargin();
            TopMargin topMargin43 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin42 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin43 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin42 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin42.Append(topMargin43);
            tableCellMargin42.Append(leftMargin42);
            tableCellMargin42.Append(bottomMargin43);
            tableCellMargin42.Append(rightMargin42);
            TableCellVerticalAlignment tableCellVerticalAlignment42 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark42 = new HideMark();

            tableCellProperties42.Append(tableCellWidth42);
            tableCellProperties42.Append(tableCellBorders42);
            tableCellProperties42.Append(shading43);
            tableCellProperties42.Append(tableCellMargin42);
            tableCellProperties42.Append(tableCellVerticalAlignment42);
            tableCellProperties42.Append(hideMark42);

            Paragraph paragraph43 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties42 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines42 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties42 = new ParagraphMarkRunProperties();
            RunFonts runFonts90 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color90 = new Color() { Val = "000000" };
            FontSize fontSize90 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript90 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties42.Append(runFonts90);
            paragraphMarkRunProperties42.Append(color90);
            paragraphMarkRunProperties42.Append(fontSize90);
            paragraphMarkRunProperties42.Append(fontSizeComplexScript90);

            paragraphProperties42.Append(spacingBetweenLines42);
            paragraphProperties42.Append(paragraphMarkRunProperties42);

            Run run50 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties50 = new RunProperties();
            RunFonts runFonts91 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color91 = new Color() { Val = "000000" };
            FontSize fontSize91 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript91 = new FontSizeComplexScript() { Val = "20" };

            runProperties50.Append(runFonts91);
            runProperties50.Append(color91);
            runProperties50.Append(fontSize91);
            runProperties50.Append(fontSizeComplexScript91);
            Text text49 = new Text();
            text49.Text = "✓";

            run50.Append(runProperties50);
            run50.Append(text49);

            paragraph43.Append(paragraphProperties42);
            paragraph43.Append(run50);

            tableCell42.Append(tableCellProperties42);
            tableCell42.Append(paragraph43);

            TableCell tableCell43 = new TableCell();

            TableCellProperties tableCellProperties43 = new TableCellProperties();
            TableCellWidth tableCellWidth43 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders43 = new TableCellBorders();
            TopBorder topBorder44 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder44 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder44 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder44 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders43.Append(topBorder44);
            tableCellBorders43.Append(leftBorder44);
            tableCellBorders43.Append(bottomBorder44);
            tableCellBorders43.Append(rightBorder44);
            Shading shading44 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin43 = new TableCellMargin();
            TopMargin topMargin44 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin43 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin44 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin43 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin43.Append(topMargin44);
            tableCellMargin43.Append(leftMargin43);
            tableCellMargin43.Append(bottomMargin44);
            tableCellMargin43.Append(rightMargin43);
            TableCellVerticalAlignment tableCellVerticalAlignment43 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark43 = new HideMark();

            tableCellProperties43.Append(tableCellWidth43);
            tableCellProperties43.Append(tableCellBorders43);
            tableCellProperties43.Append(shading44);
            tableCellProperties43.Append(tableCellMargin43);
            tableCellProperties43.Append(tableCellVerticalAlignment43);
            tableCellProperties43.Append(hideMark43);

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

            ParagraphProperties paragraphProperties43 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines43 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties43 = new ParagraphMarkRunProperties();
            RunFonts runFonts92 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color92 = new Color() { Val = "000000" };
            FontSize fontSize92 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript92 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties43.Append(runFonts92);
            paragraphMarkRunProperties43.Append(color92);
            paragraphMarkRunProperties43.Append(fontSize92);
            paragraphMarkRunProperties43.Append(fontSizeComplexScript92);

            paragraphProperties43.Append(spacingBetweenLines43);
            paragraphProperties43.Append(paragraphMarkRunProperties43);

            Run run51 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties51 = new RunProperties();
            RunFonts runFonts93 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color93 = new Color() { Val = "000000" };
            FontSize fontSize93 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript93 = new FontSizeComplexScript() { Val = "20" };

            runProperties51.Append(runFonts93);
            runProperties51.Append(color93);
            runProperties51.Append(fontSize93);
            runProperties51.Append(fontSizeComplexScript93);
            Text text50 = new Text();
            text50.Text = "✓";

            run51.Append(runProperties51);
            run51.Append(text50);

            paragraph44.Append(paragraphProperties43);
            paragraph44.Append(run51);

            tableCell43.Append(tableCellProperties43);
            tableCell43.Append(paragraph44);

            TableCell tableCell44 = new TableCell();

            TableCellProperties tableCellProperties44 = new TableCellProperties();
            TableCellWidth tableCellWidth44 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders44 = new TableCellBorders();
            TopBorder topBorder45 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder45 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder45 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder45 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders44.Append(topBorder45);
            tableCellBorders44.Append(leftBorder45);
            tableCellBorders44.Append(bottomBorder45);
            tableCellBorders44.Append(rightBorder45);
            Shading shading45 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin44 = new TableCellMargin();
            TopMargin topMargin45 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin44 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin45 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin44 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin44.Append(topMargin45);
            tableCellMargin44.Append(leftMargin44);
            tableCellMargin44.Append(bottomMargin45);
            tableCellMargin44.Append(rightMargin44);
            TableCellVerticalAlignment tableCellVerticalAlignment44 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark44 = new HideMark();

            tableCellProperties44.Append(tableCellWidth44);
            tableCellProperties44.Append(tableCellBorders44);
            tableCellProperties44.Append(shading45);
            tableCellProperties44.Append(tableCellMargin44);
            tableCellProperties44.Append(tableCellVerticalAlignment44);
            tableCellProperties44.Append(hideMark44);

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

            ParagraphProperties paragraphProperties44 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines44 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties44 = new ParagraphMarkRunProperties();
            RunFonts runFonts94 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color94 = new Color() { Val = "000000" };
            FontSize fontSize94 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript94 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties44.Append(runFonts94);
            paragraphMarkRunProperties44.Append(color94);
            paragraphMarkRunProperties44.Append(fontSize94);
            paragraphMarkRunProperties44.Append(fontSizeComplexScript94);

            paragraphProperties44.Append(spacingBetweenLines44);
            paragraphProperties44.Append(paragraphMarkRunProperties44);

            Run run52 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties52 = new RunProperties();
            RunFonts runFonts95 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color95 = new Color() { Val = "000000" };
            FontSize fontSize95 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript95 = new FontSizeComplexScript() { Val = "20" };

            runProperties52.Append(runFonts95);
            runProperties52.Append(color95);
            runProperties52.Append(fontSize95);
            runProperties52.Append(fontSizeComplexScript95);
            Text text51 = new Text();
            text51.Text = "✓";

            run52.Append(runProperties52);
            run52.Append(text51);

            paragraph45.Append(paragraphProperties44);
            paragraph45.Append(run52);

            tableCell44.Append(tableCellProperties44);
            tableCell44.Append(paragraph45);

            TableCell tableCell45 = new TableCell();

            TableCellProperties tableCellProperties45 = new TableCellProperties();
            TableCellWidth tableCellWidth45 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders45 = new TableCellBorders();
            TopBorder topBorder46 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder46 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder46 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder46 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders45.Append(topBorder46);
            tableCellBorders45.Append(leftBorder46);
            tableCellBorders45.Append(bottomBorder46);
            tableCellBorders45.Append(rightBorder46);
            Shading shading46 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin45 = new TableCellMargin();
            TopMargin topMargin46 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin45 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin46 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin45 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin45.Append(topMargin46);
            tableCellMargin45.Append(leftMargin45);
            tableCellMargin45.Append(bottomMargin46);
            tableCellMargin45.Append(rightMargin45);
            TableCellVerticalAlignment tableCellVerticalAlignment45 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark45 = new HideMark();

            tableCellProperties45.Append(tableCellWidth45);
            tableCellProperties45.Append(tableCellBorders45);
            tableCellProperties45.Append(shading46);
            tableCellProperties45.Append(tableCellMargin45);
            tableCellProperties45.Append(tableCellVerticalAlignment45);
            tableCellProperties45.Append(hideMark45);

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

            ParagraphProperties paragraphProperties45 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines45 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties45 = new ParagraphMarkRunProperties();
            RunFonts runFonts96 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color96 = new Color() { Val = "000000" };
            FontSize fontSize96 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript96 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties45.Append(runFonts96);
            paragraphMarkRunProperties45.Append(color96);
            paragraphMarkRunProperties45.Append(fontSize96);
            paragraphMarkRunProperties45.Append(fontSizeComplexScript96);

            paragraphProperties45.Append(spacingBetweenLines45);
            paragraphProperties45.Append(paragraphMarkRunProperties45);

            Run run53 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties53 = new RunProperties();
            RunFonts runFonts97 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color97 = new Color() { Val = "000000" };
            FontSize fontSize97 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript97 = new FontSizeComplexScript() { Val = "20" };

            runProperties53.Append(runFonts97);
            runProperties53.Append(color97);
            runProperties53.Append(fontSize97);
            runProperties53.Append(fontSizeComplexScript97);
            Text text52 = new Text();
            text52.Text = "✓";

            run53.Append(runProperties53);
            run53.Append(text52);

            paragraph46.Append(paragraphProperties45);
            paragraph46.Append(run53);

            tableCell45.Append(tableCellProperties45);
            tableCell45.Append(paragraph46);

            TableCell tableCell46 = new TableCell();

            TableCellProperties tableCellProperties46 = new TableCellProperties();
            TableCellWidth tableCellWidth46 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders46 = new TableCellBorders();
            TopBorder topBorder47 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder47 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder47 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder47 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders46.Append(topBorder47);
            tableCellBorders46.Append(leftBorder47);
            tableCellBorders46.Append(bottomBorder47);
            tableCellBorders46.Append(rightBorder47);
            Shading shading47 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin46 = new TableCellMargin();
            TopMargin topMargin47 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin46 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin47 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin46 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin46.Append(topMargin47);
            tableCellMargin46.Append(leftMargin46);
            tableCellMargin46.Append(bottomMargin47);
            tableCellMargin46.Append(rightMargin46);
            TableCellVerticalAlignment tableCellVerticalAlignment46 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark46 = new HideMark();

            tableCellProperties46.Append(tableCellWidth46);
            tableCellProperties46.Append(tableCellBorders46);
            tableCellProperties46.Append(shading47);
            tableCellProperties46.Append(tableCellMargin46);
            tableCellProperties46.Append(tableCellVerticalAlignment46);
            tableCellProperties46.Append(hideMark46);

            Paragraph paragraph47 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties46 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines46 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties46 = new ParagraphMarkRunProperties();
            RunFonts runFonts98 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color98 = new Color() { Val = "000000" };
            FontSize fontSize98 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript98 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties46.Append(runFonts98);
            paragraphMarkRunProperties46.Append(color98);
            paragraphMarkRunProperties46.Append(fontSize98);
            paragraphMarkRunProperties46.Append(fontSizeComplexScript98);

            paragraphProperties46.Append(spacingBetweenLines46);
            paragraphProperties46.Append(paragraphMarkRunProperties46);

            Run run54 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties54 = new RunProperties();
            RunFonts runFonts99 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color99 = new Color() { Val = "000000" };
            FontSize fontSize99 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript99 = new FontSizeComplexScript() { Val = "20" };

            runProperties54.Append(runFonts99);
            runProperties54.Append(color99);
            runProperties54.Append(fontSize99);
            runProperties54.Append(fontSizeComplexScript99);
            Text text53 = new Text();
            text53.Text = "✓";

            run54.Append(runProperties54);
            run54.Append(text53);

            paragraph47.Append(paragraphProperties46);
            paragraph47.Append(run54);

            tableCell46.Append(tableCellProperties46);
            tableCell46.Append(paragraph47);

            TableCell tableCell47 = new TableCell();

            TableCellProperties tableCellProperties47 = new TableCellProperties();
            TableCellWidth tableCellWidth47 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders47 = new TableCellBorders();
            TopBorder topBorder48 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder48 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder48 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder48 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders47.Append(topBorder48);
            tableCellBorders47.Append(leftBorder48);
            tableCellBorders47.Append(bottomBorder48);
            tableCellBorders47.Append(rightBorder48);
            Shading shading48 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin47 = new TableCellMargin();
            TopMargin topMargin48 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin47 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin48 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin47 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin47.Append(topMargin48);
            tableCellMargin47.Append(leftMargin47);
            tableCellMargin47.Append(bottomMargin48);
            tableCellMargin47.Append(rightMargin47);
            TableCellVerticalAlignment tableCellVerticalAlignment47 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark47 = new HideMark();

            tableCellProperties47.Append(tableCellWidth47);
            tableCellProperties47.Append(tableCellBorders47);
            tableCellProperties47.Append(shading48);
            tableCellProperties47.Append(tableCellMargin47);
            tableCellProperties47.Append(tableCellVerticalAlignment47);
            tableCellProperties47.Append(hideMark47);

            Paragraph paragraph48 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties47 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines47 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties47 = new ParagraphMarkRunProperties();
            RunFonts runFonts100 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color100 = new Color() { Val = "000000" };
            FontSize fontSize100 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript100 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties47.Append(runFonts100);
            paragraphMarkRunProperties47.Append(color100);
            paragraphMarkRunProperties47.Append(fontSize100);
            paragraphMarkRunProperties47.Append(fontSizeComplexScript100);

            paragraphProperties47.Append(spacingBetweenLines47);
            paragraphProperties47.Append(paragraphMarkRunProperties47);

            Run run55 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties55 = new RunProperties();
            RunFonts runFonts101 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color101 = new Color() { Val = "000000" };
            FontSize fontSize101 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript101 = new FontSizeComplexScript() { Val = "20" };

            runProperties55.Append(runFonts101);
            runProperties55.Append(color101);
            runProperties55.Append(fontSize101);
            runProperties55.Append(fontSizeComplexScript101);
            Text text54 = new Text();
            text54.Text = "✓";

            run55.Append(runProperties55);
            run55.Append(text54);

            paragraph48.Append(paragraphProperties47);
            paragraph48.Append(run55);

            tableCell47.Append(tableCellProperties47);
            tableCell47.Append(paragraph48);

            TableCell tableCell48 = new TableCell();

            TableCellProperties tableCellProperties48 = new TableCellProperties();
            TableCellWidth tableCellWidth48 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders48 = new TableCellBorders();
            TopBorder topBorder49 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder49 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder49 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder49 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders48.Append(topBorder49);
            tableCellBorders48.Append(leftBorder49);
            tableCellBorders48.Append(bottomBorder49);
            tableCellBorders48.Append(rightBorder49);
            Shading shading49 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin48 = new TableCellMargin();
            TopMargin topMargin49 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin48 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin49 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin48 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin48.Append(topMargin49);
            tableCellMargin48.Append(leftMargin48);
            tableCellMargin48.Append(bottomMargin49);
            tableCellMargin48.Append(rightMargin48);
            TableCellVerticalAlignment tableCellVerticalAlignment48 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark48 = new HideMark();

            tableCellProperties48.Append(tableCellWidth48);
            tableCellProperties48.Append(tableCellBorders48);
            tableCellProperties48.Append(shading49);
            tableCellProperties48.Append(tableCellMargin48);
            tableCellProperties48.Append(tableCellVerticalAlignment48);
            tableCellProperties48.Append(hideMark48);

            Paragraph paragraph49 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties48 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines48 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties48 = new ParagraphMarkRunProperties();
            RunFonts runFonts102 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color102 = new Color() { Val = "000000" };
            FontSize fontSize102 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript102 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties48.Append(runFonts102);
            paragraphMarkRunProperties48.Append(color102);
            paragraphMarkRunProperties48.Append(fontSize102);
            paragraphMarkRunProperties48.Append(fontSizeComplexScript102);

            paragraphProperties48.Append(spacingBetweenLines48);
            paragraphProperties48.Append(paragraphMarkRunProperties48);

            Run run56 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties56 = new RunProperties();
            RunFonts runFonts103 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color103 = new Color() { Val = "000000" };
            FontSize fontSize103 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript103 = new FontSizeComplexScript() { Val = "20" };

            runProperties56.Append(runFonts103);
            runProperties56.Append(color103);
            runProperties56.Append(fontSize103);
            runProperties56.Append(fontSizeComplexScript103);
            Text text55 = new Text();
            text55.Text = "✓";

            run56.Append(runProperties56);
            run56.Append(text55);

            paragraph49.Append(paragraphProperties48);
            paragraph49.Append(run56);

            tableCell48.Append(tableCellProperties48);
            tableCell48.Append(paragraph49);

            tableRow4.Append(tableRowProperties4);
            tableRow4.Append(tableCell37);
            tableRow4.Append(tableCell38);
            tableRow4.Append(tableCell39);
            tableRow4.Append(tableCell40);
            tableRow4.Append(tableCell41);
            tableRow4.Append(tableCell42);
            tableRow4.Append(tableCell43);
            tableRow4.Append(tableCell44);
            tableRow4.Append(tableCell45);
            tableRow4.Append(tableCell46);
            tableRow4.Append(tableCell47);
            tableRow4.Append(tableCell48);

            TableRow tableRow5 = new TableRow() { RsidTableRowMarkRevision = "00C802B4", RsidTableRowAddition = "00C802B4", RsidTableRowProperties = "00C802B4" };

            TableRowProperties tableRowProperties5 = new TableRowProperties();
            TableRowHeight tableRowHeight5 = new TableRowHeight() { Val = (UInt32Value)780U };

            tableRowProperties5.Append(tableRowHeight5);

            TableCell tableCell49 = new TableCell();

            TableCellProperties tableCellProperties49 = new TableCellProperties();
            TableCellWidth tableCellWidth49 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders49 = new TableCellBorders();
            TopBorder topBorder50 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder50 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder50 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder50 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders49.Append(topBorder50);
            tableCellBorders49.Append(leftBorder50);
            tableCellBorders49.Append(bottomBorder50);
            tableCellBorders49.Append(rightBorder50);
            Shading shading50 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin49 = new TableCellMargin();
            TopMargin topMargin50 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin49 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin50 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin49 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin49.Append(topMargin50);
            tableCellMargin49.Append(leftMargin49);
            tableCellMargin49.Append(bottomMargin50);
            tableCellMargin49.Append(rightMargin49);
            TableCellVerticalAlignment tableCellVerticalAlignment49 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark49 = new HideMark();

            tableCellProperties49.Append(tableCellWidth49);
            tableCellProperties49.Append(tableCellBorders49);
            tableCellProperties49.Append(shading50);
            tableCellProperties49.Append(tableCellMargin49);
            tableCellProperties49.Append(tableCellVerticalAlignment49);
            tableCellProperties49.Append(hideMark49);

            Paragraph paragraph50 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties49 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines49 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties49 = new ParagraphMarkRunProperties();
            RunFonts runFonts104 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color104 = new Color() { Val = "000000" };
            FontSize fontSize104 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript104 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties49.Append(runFonts104);
            paragraphMarkRunProperties49.Append(color104);
            paragraphMarkRunProperties49.Append(fontSize104);
            paragraphMarkRunProperties49.Append(fontSizeComplexScript104);

            paragraphProperties49.Append(spacingBetweenLines49);
            paragraphProperties49.Append(paragraphMarkRunProperties49);

            Hyperlink hyperlink5 = new Hyperlink() { Tooltip = "Quadrillion", History = true, Id = "rId12" };

            Run run57 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties57 = new RunProperties();
            RunFonts runFonts105 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color105 = new Color() { Val = "0B0080" };
            FontSize fontSize105 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript105 = new FontSizeComplexScript() { Val = "20" };

            runProperties57.Append(runFonts105);
            runProperties57.Append(color105);
            runProperties57.Append(fontSize105);
            runProperties57.Append(fontSizeComplexScript105);
            Text text56 = new Text();
            text56.Text = "Quadrillion";

            run57.Append(runProperties57);
            run57.Append(text56);

            hyperlink5.Append(run57);

            paragraph50.Append(paragraphProperties49);
            paragraph50.Append(hyperlink5);

            tableCell49.Append(tableCellProperties49);
            tableCell49.Append(paragraph50);

            TableCell tableCell50 = new TableCell();

            TableCellProperties tableCellProperties50 = new TableCellProperties();
            TableCellWidth tableCellWidth50 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders50 = new TableCellBorders();
            TopBorder topBorder51 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder51 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder51 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder51 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders50.Append(topBorder51);
            tableCellBorders50.Append(leftBorder51);
            tableCellBorders50.Append(bottomBorder51);
            tableCellBorders50.Append(rightBorder51);
            Shading shading51 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin50 = new TableCellMargin();
            TopMargin topMargin51 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin50 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin51 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin50 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin50.Append(topMargin51);
            tableCellMargin50.Append(leftMargin50);
            tableCellMargin50.Append(bottomMargin51);
            tableCellMargin50.Append(rightMargin50);
            TableCellVerticalAlignment tableCellVerticalAlignment50 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark50 = new HideMark();

            tableCellProperties50.Append(tableCellWidth50);
            tableCellProperties50.Append(tableCellBorders50);
            tableCellProperties50.Append(shading51);
            tableCellProperties50.Append(tableCellMargin50);
            tableCellProperties50.Append(tableCellVerticalAlignment50);
            tableCellProperties50.Append(hideMark50);

            Paragraph paragraph51 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties50 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines50 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification8 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties50 = new ParagraphMarkRunProperties();
            RunFonts runFonts106 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color106 = new Color() { Val = "000000" };
            FontSize fontSize106 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript106 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties50.Append(runFonts106);
            paragraphMarkRunProperties50.Append(color106);
            paragraphMarkRunProperties50.Append(fontSize106);
            paragraphMarkRunProperties50.Append(fontSizeComplexScript106);

            paragraphProperties50.Append(spacingBetweenLines50);
            paragraphProperties50.Append(justification8);
            paragraphProperties50.Append(paragraphMarkRunProperties50);

            Run run58 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties58 = new RunProperties();
            RunFonts runFonts107 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color107 = new Color() { Val = "000000" };
            FontSize fontSize107 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript107 = new FontSizeComplexScript() { Val = "20" };

            runProperties58.Append(runFonts107);
            runProperties58.Append(color107);
            runProperties58.Append(fontSize107);
            runProperties58.Append(fontSizeComplexScript107);
            Text text57 = new Text();
            text57.Text = "10";

            run58.Append(runProperties58);
            run58.Append(text57);

            Run run59 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties59 = new RunProperties();
            RunFonts runFonts108 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color108 = new Color() { Val = "000000" };
            FontSize fontSize108 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript108 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment8 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties59.Append(runFonts108);
            runProperties59.Append(color108);
            runProperties59.Append(fontSize108);
            runProperties59.Append(fontSizeComplexScript108);
            runProperties59.Append(verticalTextAlignment8);
            Text text58 = new Text();
            text58.Text = "15";

            run59.Append(runProperties59);
            run59.Append(text58);

            paragraph51.Append(paragraphProperties50);
            paragraph51.Append(run58);
            paragraph51.Append(run59);

            tableCell50.Append(tableCellProperties50);
            tableCell50.Append(paragraph51);

            TableCell tableCell51 = new TableCell();

            TableCellProperties tableCellProperties51 = new TableCellProperties();
            TableCellWidth tableCellWidth51 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders51 = new TableCellBorders();
            TopBorder topBorder52 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder52 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder52 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder52 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders51.Append(topBorder52);
            tableCellBorders51.Append(leftBorder52);
            tableCellBorders51.Append(bottomBorder52);
            tableCellBorders51.Append(rightBorder52);
            Shading shading52 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin51 = new TableCellMargin();
            TopMargin topMargin52 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin51 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin52 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin51 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin51.Append(topMargin52);
            tableCellMargin51.Append(leftMargin51);
            tableCellMargin51.Append(bottomMargin52);
            tableCellMargin51.Append(rightMargin51);
            TableCellVerticalAlignment tableCellVerticalAlignment51 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark51 = new HideMark();

            tableCellProperties51.Append(tableCellWidth51);
            tableCellProperties51.Append(tableCellBorders51);
            tableCellProperties51.Append(shading52);
            tableCellProperties51.Append(tableCellMargin51);
            tableCellProperties51.Append(tableCellVerticalAlignment51);
            tableCellProperties51.Append(hideMark51);

            Paragraph paragraph52 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties51 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines51 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };
            Justification justification9 = new Justification() { Val = JustificationValues.Center };

            ParagraphMarkRunProperties paragraphMarkRunProperties51 = new ParagraphMarkRunProperties();
            RunFonts runFonts109 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color109 = new Color() { Val = "000000" };
            FontSize fontSize109 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript109 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties51.Append(runFonts109);
            paragraphMarkRunProperties51.Append(color109);
            paragraphMarkRunProperties51.Append(fontSize109);
            paragraphMarkRunProperties51.Append(fontSizeComplexScript109);

            paragraphProperties51.Append(spacingBetweenLines51);
            paragraphProperties51.Append(justification9);
            paragraphProperties51.Append(paragraphMarkRunProperties51);

            Run run60 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties60 = new RunProperties();
            RunFonts runFonts110 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color110 = new Color() { Val = "000000" };
            FontSize fontSize110 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript110 = new FontSizeComplexScript() { Val = "20" };

            runProperties60.Append(runFonts110);
            runProperties60.Append(color110);
            runProperties60.Append(fontSize110);
            runProperties60.Append(fontSizeComplexScript110);
            Text text59 = new Text();
            text59.Text = "10";

            run60.Append(runProperties60);
            run60.Append(text59);

            Run run61 = new Run();

            RunProperties runProperties61 = new RunProperties();
            RunFonts runFonts111 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color111 = new Color() { Val = "000000" };
            FontSize fontSize111 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript111 = new FontSizeComplexScript() { Val = "20" };
            VerticalTextAlignment verticalTextAlignment9 = new VerticalTextAlignment() { Val = VerticalPositionValues.Superscript };

            runProperties61.Append(runFonts111);
            runProperties61.Append(color111);
            runProperties61.Append(fontSize111);
            runProperties61.Append(fontSizeComplexScript111);
            runProperties61.Append(verticalTextAlignment9);
            Text text60 = new Text();
            text60.Text = "24";

            run61.Append(runProperties61);
            run61.Append(text60);

            paragraph52.Append(paragraphProperties51);
            paragraph52.Append(run60);
            paragraph52.Append(run61);

            tableCell51.Append(tableCellProperties51);
            tableCell51.Append(paragraph52);

            TableCell tableCell52 = new TableCell();

            TableCellProperties tableCellProperties52 = new TableCellProperties();
            TableCellWidth tableCellWidth52 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders52 = new TableCellBorders();
            TopBorder topBorder53 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder53 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder53 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder53 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders52.Append(topBorder53);
            tableCellBorders52.Append(leftBorder53);
            tableCellBorders52.Append(bottomBorder53);
            tableCellBorders52.Append(rightBorder53);
            Shading shading53 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin52 = new TableCellMargin();
            TopMargin topMargin53 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin52 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin53 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin52 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin52.Append(topMargin53);
            tableCellMargin52.Append(leftMargin52);
            tableCellMargin52.Append(bottomMargin53);
            tableCellMargin52.Append(rightMargin52);
            TableCellVerticalAlignment tableCellVerticalAlignment52 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark52 = new HideMark();

            tableCellProperties52.Append(tableCellWidth52);
            tableCellProperties52.Append(tableCellBorders52);
            tableCellProperties52.Append(shading53);
            tableCellProperties52.Append(tableCellMargin52);
            tableCellProperties52.Append(tableCellVerticalAlignment52);
            tableCellProperties52.Append(hideMark52);

            Paragraph paragraph53 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties52 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines52 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties52 = new ParagraphMarkRunProperties();
            RunFonts runFonts112 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color112 = new Color() { Val = "000000" };
            FontSize fontSize112 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript112 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties52.Append(runFonts112);
            paragraphMarkRunProperties52.Append(color112);
            paragraphMarkRunProperties52.Append(fontSize112);
            paragraphMarkRunProperties52.Append(fontSizeComplexScript112);

            paragraphProperties52.Append(spacingBetweenLines52);
            paragraphProperties52.Append(paragraphMarkRunProperties52);

            Run run62 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties62 = new RunProperties();
            RunFonts runFonts113 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color113 = new Color() { Val = "000000" };
            FontSize fontSize113 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript113 = new FontSizeComplexScript() { Val = "20" };

            runProperties62.Append(runFonts113);
            runProperties62.Append(color113);
            runProperties62.Append(fontSize113);
            runProperties62.Append(fontSizeComplexScript113);
            Text text61 = new Text();
            text61.Text = "✓";

            run62.Append(runProperties62);
            run62.Append(text61);

            paragraph53.Append(paragraphProperties52);
            paragraph53.Append(run62);

            tableCell52.Append(tableCellProperties52);
            tableCell52.Append(paragraph53);

            TableCell tableCell53 = new TableCell();

            TableCellProperties tableCellProperties53 = new TableCellProperties();
            TableCellWidth tableCellWidth53 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders53 = new TableCellBorders();
            TopBorder topBorder54 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder54 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder54 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder54 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders53.Append(topBorder54);
            tableCellBorders53.Append(leftBorder54);
            tableCellBorders53.Append(bottomBorder54);
            tableCellBorders53.Append(rightBorder54);
            Shading shading54 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin53 = new TableCellMargin();
            TopMargin topMargin54 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin53 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin54 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin53 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin53.Append(topMargin54);
            tableCellMargin53.Append(leftMargin53);
            tableCellMargin53.Append(bottomMargin54);
            tableCellMargin53.Append(rightMargin53);
            TableCellVerticalAlignment tableCellVerticalAlignment53 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark53 = new HideMark();

            tableCellProperties53.Append(tableCellWidth53);
            tableCellProperties53.Append(tableCellBorders53);
            tableCellProperties53.Append(shading54);
            tableCellProperties53.Append(tableCellMargin53);
            tableCellProperties53.Append(tableCellVerticalAlignment53);
            tableCellProperties53.Append(hideMark53);

            Paragraph paragraph54 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties53 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines53 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties53 = new ParagraphMarkRunProperties();
            RunFonts runFonts114 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color114 = new Color() { Val = "000000" };
            FontSize fontSize114 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript114 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties53.Append(runFonts114);
            paragraphMarkRunProperties53.Append(color114);
            paragraphMarkRunProperties53.Append(fontSize114);
            paragraphMarkRunProperties53.Append(fontSizeComplexScript114);

            paragraphProperties53.Append(spacingBetweenLines53);
            paragraphProperties53.Append(paragraphMarkRunProperties53);

            Run run63 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties63 = new RunProperties();
            RunFonts runFonts115 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color115 = new Color() { Val = "000000" };
            FontSize fontSize115 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript115 = new FontSizeComplexScript() { Val = "20" };

            runProperties63.Append(runFonts115);
            runProperties63.Append(color115);
            runProperties63.Append(fontSize115);
            runProperties63.Append(fontSizeComplexScript115);
            Text text62 = new Text();
            text62.Text = "✓";

            run63.Append(runProperties63);
            run63.Append(text62);

            paragraph54.Append(paragraphProperties53);
            paragraph54.Append(run63);

            tableCell53.Append(tableCellProperties53);
            tableCell53.Append(paragraph54);

            TableCell tableCell54 = new TableCell();

            TableCellProperties tableCellProperties54 = new TableCellProperties();
            TableCellWidth tableCellWidth54 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders54 = new TableCellBorders();
            TopBorder topBorder55 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder55 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder55 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder55 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders54.Append(topBorder55);
            tableCellBorders54.Append(leftBorder55);
            tableCellBorders54.Append(bottomBorder55);
            tableCellBorders54.Append(rightBorder55);
            Shading shading55 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin54 = new TableCellMargin();
            TopMargin topMargin55 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin54 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin55 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin54 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin54.Append(topMargin55);
            tableCellMargin54.Append(leftMargin54);
            tableCellMargin54.Append(bottomMargin55);
            tableCellMargin54.Append(rightMargin54);
            TableCellVerticalAlignment tableCellVerticalAlignment54 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark54 = new HideMark();

            tableCellProperties54.Append(tableCellWidth54);
            tableCellProperties54.Append(tableCellBorders54);
            tableCellProperties54.Append(shading55);
            tableCellProperties54.Append(tableCellMargin54);
            tableCellProperties54.Append(tableCellVerticalAlignment54);
            tableCellProperties54.Append(hideMark54);

            Paragraph paragraph55 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties54 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines54 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties54 = new ParagraphMarkRunProperties();
            RunFonts runFonts116 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color116 = new Color() { Val = "000000" };
            FontSize fontSize116 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript116 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties54.Append(runFonts116);
            paragraphMarkRunProperties54.Append(color116);
            paragraphMarkRunProperties54.Append(fontSize116);
            paragraphMarkRunProperties54.Append(fontSizeComplexScript116);

            paragraphProperties54.Append(spacingBetweenLines54);
            paragraphProperties54.Append(paragraphMarkRunProperties54);

            Run run64 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties64 = new RunProperties();
            RunFonts runFonts117 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color117 = new Color() { Val = "000000" };
            FontSize fontSize117 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript117 = new FontSizeComplexScript() { Val = "20" };

            runProperties64.Append(runFonts117);
            runProperties64.Append(color117);
            runProperties64.Append(fontSize117);
            runProperties64.Append(fontSizeComplexScript117);
            Text text63 = new Text();
            text63.Text = " ";

            run64.Append(runProperties64);
            run64.Append(text63);

            paragraph55.Append(paragraphProperties54);
            paragraph55.Append(run64);

            tableCell54.Append(tableCellProperties54);
            tableCell54.Append(paragraph55);

            TableCell tableCell55 = new TableCell();

            TableCellProperties tableCellProperties55 = new TableCellProperties();
            TableCellWidth tableCellWidth55 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders55 = new TableCellBorders();
            TopBorder topBorder56 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder56 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder56 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder56 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders55.Append(topBorder56);
            tableCellBorders55.Append(leftBorder56);
            tableCellBorders55.Append(bottomBorder56);
            tableCellBorders55.Append(rightBorder56);
            Shading shading56 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin55 = new TableCellMargin();
            TopMargin topMargin56 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin55 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin56 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin55 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin55.Append(topMargin56);
            tableCellMargin55.Append(leftMargin55);
            tableCellMargin55.Append(bottomMargin56);
            tableCellMargin55.Append(rightMargin55);
            TableCellVerticalAlignment tableCellVerticalAlignment55 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark55 = new HideMark();

            tableCellProperties55.Append(tableCellWidth55);
            tableCellProperties55.Append(tableCellBorders55);
            tableCellProperties55.Append(shading56);
            tableCellProperties55.Append(tableCellMargin55);
            tableCellProperties55.Append(tableCellVerticalAlignment55);
            tableCellProperties55.Append(hideMark55);

            Paragraph paragraph56 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties55 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines55 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties55 = new ParagraphMarkRunProperties();
            RunFonts runFonts118 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color118 = new Color() { Val = "000000" };
            FontSize fontSize118 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript118 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties55.Append(runFonts118);
            paragraphMarkRunProperties55.Append(color118);
            paragraphMarkRunProperties55.Append(fontSize118);
            paragraphMarkRunProperties55.Append(fontSizeComplexScript118);

            paragraphProperties55.Append(spacingBetweenLines55);
            paragraphProperties55.Append(paragraphMarkRunProperties55);

            Run run65 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties65 = new RunProperties();
            RunFonts runFonts119 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color119 = new Color() { Val = "000000" };
            FontSize fontSize119 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript119 = new FontSizeComplexScript() { Val = "20" };

            runProperties65.Append(runFonts119);
            runProperties65.Append(color119);
            runProperties65.Append(fontSize119);
            runProperties65.Append(fontSizeComplexScript119);
            Text text64 = new Text();
            text64.Text = "✓";

            run65.Append(runProperties65);
            run65.Append(text64);

            paragraph56.Append(paragraphProperties55);
            paragraph56.Append(run65);

            tableCell55.Append(tableCellProperties55);
            tableCell55.Append(paragraph56);

            TableCell tableCell56 = new TableCell();

            TableCellProperties tableCellProperties56 = new TableCellProperties();
            TableCellWidth tableCellWidth56 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders56 = new TableCellBorders();
            TopBorder topBorder57 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder57 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder57 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder57 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders56.Append(topBorder57);
            tableCellBorders56.Append(leftBorder57);
            tableCellBorders56.Append(bottomBorder57);
            tableCellBorders56.Append(rightBorder57);
            Shading shading57 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin56 = new TableCellMargin();
            TopMargin topMargin57 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin56 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin57 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin56 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin56.Append(topMargin57);
            tableCellMargin56.Append(leftMargin56);
            tableCellMargin56.Append(bottomMargin57);
            tableCellMargin56.Append(rightMargin56);
            TableCellVerticalAlignment tableCellVerticalAlignment56 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark56 = new HideMark();

            tableCellProperties56.Append(tableCellWidth56);
            tableCellProperties56.Append(tableCellBorders56);
            tableCellProperties56.Append(shading57);
            tableCellProperties56.Append(tableCellMargin56);
            tableCellProperties56.Append(tableCellVerticalAlignment56);
            tableCellProperties56.Append(hideMark56);

            Paragraph paragraph57 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties56 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines56 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties56 = new ParagraphMarkRunProperties();
            RunFonts runFonts120 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color120 = new Color() { Val = "000000" };
            FontSize fontSize120 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript120 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties56.Append(runFonts120);
            paragraphMarkRunProperties56.Append(color120);
            paragraphMarkRunProperties56.Append(fontSize120);
            paragraphMarkRunProperties56.Append(fontSizeComplexScript120);

            paragraphProperties56.Append(spacingBetweenLines56);
            paragraphProperties56.Append(paragraphMarkRunProperties56);

            Run run66 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties66 = new RunProperties();
            RunFonts runFonts121 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color121 = new Color() { Val = "000000" };
            FontSize fontSize121 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript121 = new FontSizeComplexScript() { Val = "20" };

            runProperties66.Append(runFonts121);
            runProperties66.Append(color121);
            runProperties66.Append(fontSize121);
            runProperties66.Append(fontSizeComplexScript121);
            Text text65 = new Text();
            text65.Text = "✓";

            run66.Append(runProperties66);
            run66.Append(text65);

            paragraph57.Append(paragraphProperties56);
            paragraph57.Append(run66);

            tableCell56.Append(tableCellProperties56);
            tableCell56.Append(paragraph57);

            TableCell tableCell57 = new TableCell();

            TableCellProperties tableCellProperties57 = new TableCellProperties();
            TableCellWidth tableCellWidth57 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders57 = new TableCellBorders();
            TopBorder topBorder58 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder58 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder58 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder58 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders57.Append(topBorder58);
            tableCellBorders57.Append(leftBorder58);
            tableCellBorders57.Append(bottomBorder58);
            tableCellBorders57.Append(rightBorder58);
            Shading shading58 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin57 = new TableCellMargin();
            TopMargin topMargin58 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin57 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin58 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin57 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin57.Append(topMargin58);
            tableCellMargin57.Append(leftMargin57);
            tableCellMargin57.Append(bottomMargin58);
            tableCellMargin57.Append(rightMargin57);
            TableCellVerticalAlignment tableCellVerticalAlignment57 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark57 = new HideMark();

            tableCellProperties57.Append(tableCellWidth57);
            tableCellProperties57.Append(tableCellBorders57);
            tableCellProperties57.Append(shading58);
            tableCellProperties57.Append(tableCellMargin57);
            tableCellProperties57.Append(tableCellVerticalAlignment57);
            tableCellProperties57.Append(hideMark57);

            Paragraph paragraph58 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties57 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines57 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties57 = new ParagraphMarkRunProperties();
            RunFonts runFonts122 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color122 = new Color() { Val = "000000" };
            FontSize fontSize122 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript122 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties57.Append(runFonts122);
            paragraphMarkRunProperties57.Append(color122);
            paragraphMarkRunProperties57.Append(fontSize122);
            paragraphMarkRunProperties57.Append(fontSizeComplexScript122);

            paragraphProperties57.Append(spacingBetweenLines57);
            paragraphProperties57.Append(paragraphMarkRunProperties57);

            Run run67 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties67 = new RunProperties();
            RunFonts runFonts123 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color123 = new Color() { Val = "000000" };
            FontSize fontSize123 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript123 = new FontSizeComplexScript() { Val = "20" };

            runProperties67.Append(runFonts123);
            runProperties67.Append(color123);
            runProperties67.Append(fontSize123);
            runProperties67.Append(fontSizeComplexScript123);
            Text text66 = new Text();
            text66.Text = "✓";

            run67.Append(runProperties67);
            run67.Append(text66);

            paragraph58.Append(paragraphProperties57);
            paragraph58.Append(run67);

            tableCell57.Append(tableCellProperties57);
            tableCell57.Append(paragraph58);

            TableCell tableCell58 = new TableCell();

            TableCellProperties tableCellProperties58 = new TableCellProperties();
            TableCellWidth tableCellWidth58 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders58 = new TableCellBorders();
            TopBorder topBorder59 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder59 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder59 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder59 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders58.Append(topBorder59);
            tableCellBorders58.Append(leftBorder59);
            tableCellBorders58.Append(bottomBorder59);
            tableCellBorders58.Append(rightBorder59);
            Shading shading59 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin58 = new TableCellMargin();
            TopMargin topMargin59 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin58 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin59 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin58 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin58.Append(topMargin59);
            tableCellMargin58.Append(leftMargin58);
            tableCellMargin58.Append(bottomMargin59);
            tableCellMargin58.Append(rightMargin58);
            TableCellVerticalAlignment tableCellVerticalAlignment58 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark58 = new HideMark();

            tableCellProperties58.Append(tableCellWidth58);
            tableCellProperties58.Append(tableCellBorders58);
            tableCellProperties58.Append(shading59);
            tableCellProperties58.Append(tableCellMargin58);
            tableCellProperties58.Append(tableCellVerticalAlignment58);
            tableCellProperties58.Append(hideMark58);

            Paragraph paragraph59 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties58 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines58 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties58 = new ParagraphMarkRunProperties();
            RunFonts runFonts124 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color124 = new Color() { Val = "000000" };
            FontSize fontSize124 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript124 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties58.Append(runFonts124);
            paragraphMarkRunProperties58.Append(color124);
            paragraphMarkRunProperties58.Append(fontSize124);
            paragraphMarkRunProperties58.Append(fontSizeComplexScript124);

            paragraphProperties58.Append(spacingBetweenLines58);
            paragraphProperties58.Append(paragraphMarkRunProperties58);

            Run run68 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties68 = new RunProperties();
            RunFonts runFonts125 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color125 = new Color() { Val = "000000" };
            FontSize fontSize125 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript125 = new FontSizeComplexScript() { Val = "20" };

            runProperties68.Append(runFonts125);
            runProperties68.Append(color125);
            runProperties68.Append(fontSize125);
            runProperties68.Append(fontSizeComplexScript125);
            Text text67 = new Text();
            text67.Text = "✓";

            run68.Append(runProperties68);
            run68.Append(text67);

            paragraph59.Append(paragraphProperties58);
            paragraph59.Append(run68);

            tableCell58.Append(tableCellProperties58);
            tableCell58.Append(paragraph59);

            TableCell tableCell59 = new TableCell();

            TableCellProperties tableCellProperties59 = new TableCellProperties();
            TableCellWidth tableCellWidth59 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders59 = new TableCellBorders();
            TopBorder topBorder60 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder60 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder60 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder60 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders59.Append(topBorder60);
            tableCellBorders59.Append(leftBorder60);
            tableCellBorders59.Append(bottomBorder60);
            tableCellBorders59.Append(rightBorder60);
            Shading shading60 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin59 = new TableCellMargin();
            TopMargin topMargin60 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin59 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin60 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin59 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin59.Append(topMargin60);
            tableCellMargin59.Append(leftMargin59);
            tableCellMargin59.Append(bottomMargin60);
            tableCellMargin59.Append(rightMargin59);
            TableCellVerticalAlignment tableCellVerticalAlignment59 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark59 = new HideMark();

            tableCellProperties59.Append(tableCellWidth59);
            tableCellProperties59.Append(tableCellBorders59);
            tableCellProperties59.Append(shading60);
            tableCellProperties59.Append(tableCellMargin59);
            tableCellProperties59.Append(tableCellVerticalAlignment59);
            tableCellProperties59.Append(hideMark59);

            Paragraph paragraph60 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties59 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines59 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties59 = new ParagraphMarkRunProperties();
            RunFonts runFonts126 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color126 = new Color() { Val = "000000" };
            FontSize fontSize126 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript126 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties59.Append(runFonts126);
            paragraphMarkRunProperties59.Append(color126);
            paragraphMarkRunProperties59.Append(fontSize126);
            paragraphMarkRunProperties59.Append(fontSizeComplexScript126);

            paragraphProperties59.Append(spacingBetweenLines59);
            paragraphProperties59.Append(paragraphMarkRunProperties59);

            Run run69 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties69 = new RunProperties();
            RunFonts runFonts127 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color127 = new Color() { Val = "000000" };
            FontSize fontSize127 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript127 = new FontSizeComplexScript() { Val = "20" };

            runProperties69.Append(runFonts127);
            runProperties69.Append(color127);
            runProperties69.Append(fontSize127);
            runProperties69.Append(fontSizeComplexScript127);
            Text text68 = new Text();
            text68.Text = "✓";

            run69.Append(runProperties69);
            run69.Append(text68);

            paragraph60.Append(paragraphProperties59);
            paragraph60.Append(run69);

            tableCell59.Append(tableCellProperties59);
            tableCell59.Append(paragraph60);

            TableCell tableCell60 = new TableCell();

            TableCellProperties tableCellProperties60 = new TableCellProperties();
            TableCellWidth tableCellWidth60 = new TableCellWidth() { Width = "0", Type = TableWidthUnitValues.Auto };

            TableCellBorders tableCellBorders60 = new TableCellBorders();
            TopBorder topBorder61 = new TopBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            LeftBorder leftBorder61 = new LeftBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            BottomBorder bottomBorder61 = new BottomBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };
            RightBorder rightBorder61 = new RightBorder() { Val = BorderValues.Single, Color = "AAAAAA", Size = (UInt32Value)6U, Space = (UInt32Value)0U };

            tableCellBorders60.Append(topBorder61);
            tableCellBorders60.Append(leftBorder61);
            tableCellBorders60.Append(bottomBorder61);
            tableCellBorders60.Append(rightBorder61);
            Shading shading61 = new Shading() { Val = ShadingPatternValues.Clear, Color = "auto", Fill = "F9F9F9" };

            TableCellMargin tableCellMargin60 = new TableCellMargin();
            TopMargin topMargin61 = new TopMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            LeftMargin leftMargin60 = new LeftMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            BottomMargin bottomMargin61 = new BottomMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };
            RightMargin rightMargin60 = new RightMargin() { Width = "48", Type = TableWidthUnitValues.Dxa };

            tableCellMargin60.Append(topMargin61);
            tableCellMargin60.Append(leftMargin60);
            tableCellMargin60.Append(bottomMargin61);
            tableCellMargin60.Append(rightMargin60);
            TableCellVerticalAlignment tableCellVerticalAlignment60 = new TableCellVerticalAlignment() { Val = TableVerticalAlignmentValues.Center };
            HideMark hideMark60 = new HideMark();

            tableCellProperties60.Append(tableCellWidth60);
            tableCellProperties60.Append(tableCellBorders60);
            tableCellProperties60.Append(shading61);
            tableCellProperties60.Append(tableCellMargin60);
            tableCellProperties60.Append(tableCellVerticalAlignment60);
            tableCellProperties60.Append(hideMark60);

            Paragraph paragraph61 = new Paragraph() { RsidParagraphMarkRevision = "00C802B4", RsidParagraphAddition = "00C802B4", RsidParagraphProperties = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            ParagraphProperties paragraphProperties60 = new ParagraphProperties();
            SpacingBetweenLines spacingBetweenLines60 = new SpacingBetweenLines() { Before = "240", After = "240", Line = "288", LineRule = LineSpacingRuleValues.AtLeast };

            ParagraphMarkRunProperties paragraphMarkRunProperties60 = new ParagraphMarkRunProperties();
            RunFonts runFonts128 = new RunFonts() { Ascii = "Arial", HighAnsi = "Arial", EastAsia = "Times New Roman", ComplexScript = "Arial" };
            Color color128 = new Color() { Val = "000000" };
            FontSize fontSize128 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript128 = new FontSizeComplexScript() { Val = "20" };

            paragraphMarkRunProperties60.Append(runFonts128);
            paragraphMarkRunProperties60.Append(color128);
            paragraphMarkRunProperties60.Append(fontSize128);
            paragraphMarkRunProperties60.Append(fontSizeComplexScript128);

            paragraphProperties60.Append(spacingBetweenLines60);
            paragraphProperties60.Append(paragraphMarkRunProperties60);

            Run run70 = new Run() { RsidRunProperties = "00C802B4" };

            RunProperties runProperties70 = new RunProperties();
            RunFonts runFonts129 = new RunFonts() { Ascii = "MS Gothic", HighAnsi = "MS Gothic", EastAsia = "MS Gothic", ComplexScript = "MS Gothic" };
            Color color129 = new Color() { Val = "000000" };
            FontSize fontSize129 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript129 = new FontSizeComplexScript() { Val = "20" };

            runProperties70.Append(runFonts129);
            runProperties70.Append(color129);
            runProperties70.Append(fontSize129);
            runProperties70.Append(fontSizeComplexScript129);
            Text text69 = new Text();
            text69.Text = "✓";

            run70.Append(runProperties70);
            run70.Append(text69);

            paragraph61.Append(paragraphProperties60);
            paragraph61.Append(run70);

            tableCell60.Append(tableCellProperties60);
            tableCell60.Append(paragraph61);

            tableRow5.Append(tableRowProperties5);
            tableRow5.Append(tableCell49);
            tableRow5.Append(tableCell50);
            tableRow5.Append(tableCell51);
            tableRow5.Append(tableCell52);
            tableRow5.Append(tableCell53);
            tableRow5.Append(tableCell54);
            tableRow5.Append(tableCell55);
            tableRow5.Append(tableCell56);
            tableRow5.Append(tableCell57);
            tableRow5.Append(tableCell58);
            tableRow5.Append(tableCell59);
            tableRow5.Append(tableCell60);

            table1.Append(tableProperties1);
            table1.Append(tableGrid1);
            table1.Append(tableRow1);
            table1.Append(tableRow2);
            table1.Append(tableRow3);
            table1.Append(tableRow4);
            table1.Append(tableRow5);
            Paragraph paragraph62 = new Paragraph() { RsidParagraphAddition = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            Paragraph paragraph63 = new Paragraph() { RsidParagraphAddition = "00C802B4", RsidRunAdditionDefault = "00C802B4" };

            Run run71 = new Run();
            Text text70 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text70.Text = "Current world population is expected to be 7 billion. Once world has supported a population of 71 billion. India is 3.5 million square km in area. Assuming only 60% of the land is usable. We are left with 2 million square km. Divide this land among 7 billion. ";

            run71.Append(text70);

            Run run72 = new Run() { RsidRunAddition = "00F216F1" };
            Text text71 = new Text();
            text71.Text = "2000/7= 300 sq. meters (17 m X 17 m)";

            run72.Append(text71);

            paragraph63.Append(run71);
            paragraph63.Append(run72);
            Paragraph paragraph64 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

            Table table2 = new Table();

            TableProperties tableProperties2 = new TableProperties();
            TableStyle tableStyle1 = new TableStyle() { Val = "TableGrid" };
            TableWidth tableWidth2 = new TableWidth() { Width = "0", Type = TableWidthUnitValues.Auto };
            TableLook tableLook2 = new TableLook() { Val = "04A0", FirstRow = true, LastRow = false, FirstColumn = true, LastColumn = false, NoHorizontalBand = false, NoVerticalBand = true };

            tableProperties2.Append(tableStyle1);
            tableProperties2.Append(tableWidth2);
            tableProperties2.Append(tableLook2);

            TableGrid tableGrid2 = new TableGrid();
            GridColumn gridColumn13 = new GridColumn() { Width = "1368" };
            GridColumn gridColumn14 = new GridColumn() { Width = "1368" };
            GridColumn gridColumn15 = new GridColumn() { Width = "1368" };
            GridColumn gridColumn16 = new GridColumn() { Width = "1368" };
            GridColumn gridColumn17 = new GridColumn() { Width = "1368" };
            GridColumn gridColumn18 = new GridColumn() { Width = "1368" };
            GridColumn gridColumn19 = new GridColumn() { Width = "1368" };

            tableGrid2.Append(gridColumn13);
            tableGrid2.Append(gridColumn14);
            tableGrid2.Append(gridColumn15);
            tableGrid2.Append(gridColumn16);
            tableGrid2.Append(gridColumn17);
            tableGrid2.Append(gridColumn18);
            tableGrid2.Append(gridColumn19);

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

            for (var i = 0; i <= 5; i++)
            {
                var tr = new TableRow() { RsidTableRowAddition = "00F216F1", RsidTableRowProperties = "00F216F1" };
                for (var j = 0; j <= 6; j++)
                {
                    var tableCell61 = new TableCell();

                    TableCellProperties tableCellProperties61 = new TableCellProperties();
                    TableCellWidth tableCellWidth61 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

                    tableCellProperties61.Append(tableCellWidth61);

                    Paragraph paragraph65 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

                    Run run73 = new Run();
                    Text text72 = new Text();
                    text72.Text = (i+j).ToString();

                    run73.Append(text72);

                    paragraph65.Append(run73);

                    tableCell61.Append(tableCellProperties61);
                    tableCell61.Append(paragraph65);

                    tr.Append(tableCell61);
                }
                table2.Append(tr);
            }
            #region CommentsTable
            /* TableRow tableRow6 = new TableRow() { RsidTableRowAddition = "00F216F1", RsidTableRowProperties = "00F216F1" };

             TableCell tableCell61 = new TableCell();

             TableCellProperties tableCellProperties61 = new TableCellProperties();
             TableCellWidth tableCellWidth61 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties61.Append(tableCellWidth61);

             Paragraph paragraph65 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run73 = new Run();
             Text text72 = new Text();
             text72.Text = "Pradeep";

             run73.Append(text72);

             paragraph65.Append(run73);

             tableCell61.Append(tableCellProperties61);
             tableCell61.Append(paragraph65);

             TableCell tableCell62 = new TableCell();

             TableCellProperties tableCellProperties62 = new TableCellProperties();
             TableCellWidth tableCellWidth62 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties62.Append(tableCellWidth62);

             Paragraph paragraph66 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run74 = new Run();
             Text text73 = new Text();
             text73.Text = "2";

             run74.Append(text73);

             paragraph66.Append(run74);

             tableCell62.Append(tableCellProperties62);
             tableCell62.Append(paragraph66);

             TableCell tableCell63 = new TableCell();

             TableCellProperties tableCellProperties63 = new TableCellProperties();
             TableCellWidth tableCellWidth63 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties63.Append(tableCellWidth63);

             Paragraph paragraph67 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run75 = new Run();
             Text text74 = new Text();
             text74.Text = "3";

             run75.Append(text74);

             paragraph67.Append(run75);

             tableCell63.Append(tableCellProperties63);
             tableCell63.Append(paragraph67);

             TableCell tableCell64 = new TableCell();

             TableCellProperties tableCellProperties64 = new TableCellProperties();
             TableCellWidth tableCellWidth64 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties64.Append(tableCellWidth64);

             Paragraph paragraph68 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run76 = new Run();
             Text text75 = new Text();
             text75.Text = "4";

             run76.Append(text75);

             paragraph68.Append(run76);

             tableCell64.Append(tableCellProperties64);
             tableCell64.Append(paragraph68);

             TableCell tableCell65 = new TableCell();

             TableCellProperties tableCellProperties65 = new TableCellProperties();
             TableCellWidth tableCellWidth65 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties65.Append(tableCellWidth65);

             Paragraph paragraph69 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run77 = new Run();
             Text text76 = new Text();
             text76.Text = "5";

             run77.Append(text76);

             paragraph69.Append(run77);

             tableCell65.Append(tableCellProperties65);
             tableCell65.Append(paragraph69);

             TableCell tableCell66 = new TableCell();

             TableCellProperties tableCellProperties66 = new TableCellProperties();
             TableCellWidth tableCellWidth66 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties66.Append(tableCellWidth66);

             Paragraph paragraph70 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run78 = new Run();
             Text text77 = new Text();
             text77.Text = "6";

             run78.Append(text77);

             paragraph70.Append(run78);

             tableCell66.Append(tableCellProperties66);
             tableCell66.Append(paragraph70);

             TableCell tableCell67 = new TableCell();

             TableCellProperties tableCellProperties67 = new TableCellProperties();
             TableCellWidth tableCellWidth67 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties67.Append(tableCellWidth67);

             Paragraph paragraph71 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run79 = new Run();
             Text text78 = new Text();
             text78.Text = "7";

             run79.Append(text78);

             paragraph71.Append(run79);

             tableCell67.Append(tableCellProperties67);
             tableCell67.Append(paragraph71);

             tableRow6.Append(tableCell61);
             tableRow6.Append(tableCell62);
             tableRow6.Append(tableCell63);
             tableRow6.Append(tableCell64);
             tableRow6.Append(tableCell65);
             tableRow6.Append(tableCell66);
             tableRow6.Append(tableCell67);

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

             TableCell tableCell68 = new TableCell();

             TableCellProperties tableCellProperties68 = new TableCellProperties();
             TableCellWidth tableCellWidth68 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties68.Append(tableCellWidth68);

             Paragraph paragraph72 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run80 = new Run();
             Text text79 = new Text();
             text79.Text = "8";

             run80.Append(text79);

             paragraph72.Append(run80);

             tableCell68.Append(tableCellProperties68);
             tableCell68.Append(paragraph72);

             TableCell tableCell69 = new TableCell();

             TableCellProperties tableCellProperties69 = new TableCellProperties();
             TableCellWidth tableCellWidth69 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties69.Append(tableCellWidth69);

             Paragraph paragraph73 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run81 = new Run();
             Text text80 = new Text();
             text80.Text = "9";

             run81.Append(text80);

             paragraph73.Append(run81);

             tableCell69.Append(tableCellProperties69);
             tableCell69.Append(paragraph73);

             TableCell tableCell70 = new TableCell();

             TableCellProperties tableCellProperties70 = new TableCellProperties();
             TableCellWidth tableCellWidth70 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties70.Append(tableCellWidth70);

             Paragraph paragraph74 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run82 = new Run();
             Text text81 = new Text();
             text81.Text = "10";

             run82.Append(text81);

             paragraph74.Append(run82);

             tableCell70.Append(tableCellProperties70);
             tableCell70.Append(paragraph74);

             TableCell tableCell71 = new TableCell();

             TableCellProperties tableCellProperties71 = new TableCellProperties();
             TableCellWidth tableCellWidth71 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties71.Append(tableCellWidth71);

             Paragraph paragraph75 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run83 = new Run();
             Text text82 = new Text();
             text82.Text = "11";

             run83.Append(text82);

             paragraph75.Append(run83);

             tableCell71.Append(tableCellProperties71);
             tableCell71.Append(paragraph75);

             TableCell tableCell72 = new TableCell();

             TableCellProperties tableCellProperties72 = new TableCellProperties();
             TableCellWidth tableCellWidth72 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties72.Append(tableCellWidth72);

             Paragraph paragraph76 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run84 = new Run();
             Text text83 = new Text();
             text83.Text = "12";

             run84.Append(text83);

             paragraph76.Append(run84);

             tableCell72.Append(tableCellProperties72);
             tableCell72.Append(paragraph76);

             TableCell tableCell73 = new TableCell();

             TableCellProperties tableCellProperties73 = new TableCellProperties();
             TableCellWidth tableCellWidth73 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties73.Append(tableCellWidth73);

             Paragraph paragraph77 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run85 = new Run();
             Text text84 = new Text();
             text84.Text = "13";

             run85.Append(text84);

             paragraph77.Append(run85);

             tableCell73.Append(tableCellProperties73);
             tableCell73.Append(paragraph77);

             TableCell tableCell74 = new TableCell();

             TableCellProperties tableCellProperties74 = new TableCellProperties();
             TableCellWidth tableCellWidth74 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties74.Append(tableCellWidth74);

             Paragraph paragraph78 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run86 = new Run();
             Text text85 = new Text();
             text85.Text = "14";

             run86.Append(text85);

             paragraph78.Append(run86);

             tableCell74.Append(tableCellProperties74);
             tableCell74.Append(paragraph78);

             tableRow7.Append(tableCell68);
             tableRow7.Append(tableCell69);
             tableRow7.Append(tableCell70);
             tableRow7.Append(tableCell71);
             tableRow7.Append(tableCell72);
             tableRow7.Append(tableCell73);
             tableRow7.Append(tableCell74);

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

             TableCell tableCell75 = new TableCell();

             TableCellProperties tableCellProperties75 = new TableCellProperties();
             TableCellWidth tableCellWidth75 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties75.Append(tableCellWidth75);

             Paragraph paragraph79 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run87 = new Run();
             Text text86 = new Text();
             text86.Text = "15";

             run87.Append(text86);

             paragraph79.Append(run87);

             tableCell75.Append(tableCellProperties75);
             tableCell75.Append(paragraph79);

             TableCell tableCell76 = new TableCell();

             TableCellProperties tableCellProperties76 = new TableCellProperties();
             TableCellWidth tableCellWidth76 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties76.Append(tableCellWidth76);

             Paragraph paragraph80 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run88 = new Run();
             Text text87 = new Text();
             text87.Text = "16";

             run88.Append(text87);

             paragraph80.Append(run88);

             tableCell76.Append(tableCellProperties76);
             tableCell76.Append(paragraph80);

             TableCell tableCell77 = new TableCell();

             TableCellProperties tableCellProperties77 = new TableCellProperties();
             TableCellWidth tableCellWidth77 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties77.Append(tableCellWidth77);

             Paragraph paragraph81 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run89 = new Run();
             Text text88 = new Text();
             text88.Text = "17";

             run89.Append(text88);

             paragraph81.Append(run89);

             tableCell77.Append(tableCellProperties77);
             tableCell77.Append(paragraph81);

             TableCell tableCell78 = new TableCell();

             TableCellProperties tableCellProperties78 = new TableCellProperties();
             TableCellWidth tableCellWidth78 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties78.Append(tableCellWidth78);

             Paragraph paragraph82 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run90 = new Run();
             Text text89 = new Text();
             text89.Text = "18";

             run90.Append(text89);

             paragraph82.Append(run90);

             tableCell78.Append(tableCellProperties78);
             tableCell78.Append(paragraph82);

             TableCell tableCell79 = new TableCell();

             TableCellProperties tableCellProperties79 = new TableCellProperties();
             TableCellWidth tableCellWidth79 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties79.Append(tableCellWidth79);

             Paragraph paragraph83 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run91 = new Run();
             Text text90 = new Text();
             text90.Text = "19";

             run91.Append(text90);

             paragraph83.Append(run91);

             tableCell79.Append(tableCellProperties79);
             tableCell79.Append(paragraph83);

             TableCell tableCell80 = new TableCell();

             TableCellProperties tableCellProperties80 = new TableCellProperties();
             TableCellWidth tableCellWidth80 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties80.Append(tableCellWidth80);

             Paragraph paragraph84 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run92 = new Run();
             Text text91 = new Text();
             text91.Text = "20";

             run92.Append(text91);

             paragraph84.Append(run92);

             tableCell80.Append(tableCellProperties80);
             tableCell80.Append(paragraph84);

             TableCell tableCell81 = new TableCell();

             TableCellProperties tableCellProperties81 = new TableCellProperties();
             TableCellWidth tableCellWidth81 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties81.Append(tableCellWidth81);

             Paragraph paragraph85 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run93 = new Run();
             Text text92 = new Text();
             text92.Text = "21";

             run93.Append(text92);

             paragraph85.Append(run93);

             tableCell81.Append(tableCellProperties81);
             tableCell81.Append(paragraph85);

             tableRow8.Append(tableCell75);
             tableRow8.Append(tableCell76);
             tableRow8.Append(tableCell77);
             tableRow8.Append(tableCell78);
             tableRow8.Append(tableCell79);
             tableRow8.Append(tableCell80);
             tableRow8.Append(tableCell81);

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

             TableCell tableCell82 = new TableCell();

             TableCellProperties tableCellProperties82 = new TableCellProperties();
             TableCellWidth tableCellWidth82 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties82.Append(tableCellWidth82);

             Paragraph paragraph86 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run94 = new Run();
             LastRenderedPageBreak lastRenderedPageBreak1 = new LastRenderedPageBreak();
             Text text93 = new Text();
             text93.Text = "A";

             run94.Append(lastRenderedPageBreak1);
             run94.Append(text93);

             paragraph86.Append(run94);

             tableCell82.Append(tableCellProperties82);
             tableCell82.Append(paragraph86);

             TableCell tableCell83 = new TableCell();

             TableCellProperties tableCellProperties83 = new TableCellProperties();
             TableCellWidth tableCellWidth83 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties83.Append(tableCellWidth83);

             Paragraph paragraph87 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run95 = new Run();
             Text text94 = new Text();
             text94.Text = "BB";

             run95.Append(text94);

             paragraph87.Append(run95);

             tableCell83.Append(tableCellProperties83);
             tableCell83.Append(paragraph87);

             TableCell tableCell84 = new TableCell();

             TableCellProperties tableCellProperties84 = new TableCellProperties();
             TableCellWidth tableCellWidth84 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties84.Append(tableCellWidth84);

             Paragraph paragraph88 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run96 = new Run();
             Text text95 = new Text();
             text95.Text = "CC";

             run96.Append(text95);

             paragraph88.Append(run96);

             tableCell84.Append(tableCellProperties84);
             tableCell84.Append(paragraph88);

             TableCell tableCell85 = new TableCell();

             TableCellProperties tableCellProperties85 = new TableCellProperties();
             TableCellWidth tableCellWidth85 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties85.Append(tableCellWidth85);

             Paragraph paragraph89 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run97 = new Run();
             Text text96 = new Text();
             text96.Text = "DD";

             run97.Append(text96);

             paragraph89.Append(run97);

             tableCell85.Append(tableCellProperties85);
             tableCell85.Append(paragraph89);

             TableCell tableCell86 = new TableCell();

             TableCellProperties tableCellProperties86 = new TableCellProperties();
             TableCellWidth tableCellWidth86 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties86.Append(tableCellWidth86);

             Paragraph paragraph90 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run98 = new Run();
             Text text97 = new Text();
             text97.Text = "EE";

             run98.Append(text97);

             paragraph90.Append(run98);

             tableCell86.Append(tableCellProperties86);
             tableCell86.Append(paragraph90);

             TableCell tableCell87 = new TableCell();

             TableCellProperties tableCellProperties87 = new TableCellProperties();
             TableCellWidth tableCellWidth87 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties87.Append(tableCellWidth87);

             Paragraph paragraph91 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run99 = new Run();
             Text text98 = new Text();
             text98.Text = "FF";

             run99.Append(text98);

             paragraph91.Append(run99);

             tableCell87.Append(tableCellProperties87);
             tableCell87.Append(paragraph91);

             TableCell tableCell88 = new TableCell();

             TableCellProperties tableCellProperties88 = new TableCellProperties();
             TableCellWidth tableCellWidth88 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties88.Append(tableCellWidth88);

             Paragraph paragraph92 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run100 = new Run();
             Text text99 = new Text();
             text99.Text = "GG";

             run100.Append(text99);

             paragraph92.Append(run100);

             tableCell88.Append(tableCellProperties88);
             tableCell88.Append(paragraph92);

             tableRow9.Append(tableCell82);
             tableRow9.Append(tableCell83);
             tableRow9.Append(tableCell84);
             tableRow9.Append(tableCell85);
             tableRow9.Append(tableCell86);
             tableRow9.Append(tableCell87);
             tableRow9.Append(tableCell88);

             TableRow tableRow10 = new TableRow() { RsidTableRowAddition = "00F216F1", RsidTableRowProperties = "00F216F1" };

             TableCell tableCell89 = new TableCell();

             TableCellProperties tableCellProperties89 = new TableCellProperties();
             TableCellWidth tableCellWidth89 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties89.Append(tableCellWidth89);

             Paragraph paragraph93 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run101 = new Run();
             Text text100 = new Text();
             text100.Text = "HH";

             run101.Append(text100);

             paragraph93.Append(run101);

             tableCell89.Append(tableCellProperties89);
             tableCell89.Append(paragraph93);

             TableCell tableCell90 = new TableCell();

             TableCellProperties tableCellProperties90 = new TableCellProperties();
             TableCellWidth tableCellWidth90 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties90.Append(tableCellWidth90);

             Paragraph paragraph94 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run102 = new Run();
             Text text101 = new Text() { Space = SpaceProcessingModeValues.Preserve };
             text101.Text = "EE ";

             run102.Append(text101);

             paragraph94.Append(run102);

             tableCell90.Append(tableCellProperties90);
             tableCell90.Append(paragraph94);

             TableCell tableCell91 = new TableCell();

             TableCellProperties tableCellProperties91 = new TableCellProperties();
             TableCellWidth tableCellWidth91 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties91.Append(tableCellWidth91);

             Paragraph paragraph95 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run103 = new Run();
             Text text102 = new Text();
             text102.Text = "MM";

             run103.Append(text102);

             paragraph95.Append(run103);

             tableCell91.Append(tableCellProperties91);
             tableCell91.Append(paragraph95);

             TableCell tableCell92 = new TableCell();

             TableCellProperties tableCellProperties92 = new TableCellProperties();
             TableCellWidth tableCellWidth92 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties92.Append(tableCellWidth92);

             Paragraph paragraph96 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run104 = new Run();
             Text text103 = new Text();
             text103.Text = "TT";

             run104.Append(text103);

             paragraph96.Append(run104);

             tableCell92.Append(tableCellProperties92);
             tableCell92.Append(paragraph96);

             TableCell tableCell93 = new TableCell();

             TableCellProperties tableCellProperties93 = new TableCellProperties();
             TableCellWidth tableCellWidth93 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties93.Append(tableCellWidth93);

             Paragraph paragraph97 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run105 = new Run();
             Text text104 = new Text();
             text104.Text = "KK";

             run105.Append(text104);

             paragraph97.Append(run105);

             tableCell93.Append(tableCellProperties93);
             tableCell93.Append(paragraph97);

             TableCell tableCell94 = new TableCell();

             TableCellProperties tableCellProperties94 = new TableCellProperties();
             TableCellWidth tableCellWidth94 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties94.Append(tableCellWidth94);

             Paragraph paragraph98 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run106 = new Run();
             Text text105 = new Text();
             text105.Text = "LL";

             run106.Append(text105);

             paragraph98.Append(run106);

             tableCell94.Append(tableCellProperties94);
             tableCell94.Append(paragraph98);

             TableCell tableCell95 = new TableCell();

             TableCellProperties tableCellProperties95 = new TableCellProperties();
             TableCellWidth tableCellWidth95 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties95.Append(tableCellWidth95);

             Paragraph paragraph99 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run107 = new Run();
             Text text106 = new Text();
             text106.Text = "PP";

             run107.Append(text106);

             paragraph99.Append(run107);

             tableCell95.Append(tableCellProperties95);
             tableCell95.Append(paragraph99);

             tableRow10.Append(tableCell89);
             tableRow10.Append(tableCell90);
             tableRow10.Append(tableCell91);
             tableRow10.Append(tableCell92);
             tableRow10.Append(tableCell93);
             tableRow10.Append(tableCell94);
             tableRow10.Append(tableCell95);

             TableRow tableRow11 = new TableRow() { RsidTableRowAddition = "00F216F1", RsidTableRowProperties = "00F216F1" };

             TableCell tableCell96 = new TableCell();

             TableCellProperties tableCellProperties96 = new TableCellProperties();
             TableCellWidth tableCellWidth96 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties96.Append(tableCellWidth96);

             Paragraph paragraph100 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run108 = new Run();
             Text text107 = new Text();
             text107.Text = "HH";

             run108.Append(text107);

             paragraph100.Append(run108);

             tableCell96.Append(tableCellProperties96);
             tableCell96.Append(paragraph100);

             TableCell tableCell97 = new TableCell();

             TableCellProperties tableCellProperties97 = new TableCellProperties();
             TableCellWidth tableCellWidth97 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties97.Append(tableCellWidth97);

             Paragraph paragraph101 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run109 = new Run();
             Text text108 = new Text();
             text108.Text = "LLL";

             run109.Append(text108);

             paragraph101.Append(run109);

             tableCell97.Append(tableCellProperties97);
             tableCell97.Append(paragraph101);

             TableCell tableCell98 = new TableCell();

             TableCellProperties tableCellProperties98 = new TableCellProperties();
             TableCellWidth tableCellWidth98 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties98.Append(tableCellWidth98);

             Paragraph paragraph102 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run110 = new Run();
             Text text109 = new Text();
             text109.Text = "LLLLLL";

             run110.Append(text109);

             paragraph102.Append(run110);

             tableCell98.Append(tableCellProperties98);
             tableCell98.Append(paragraph102);

             TableCell tableCell99 = new TableCell();

             TableCellProperties tableCellProperties99 = new TableCellProperties();
             TableCellWidth tableCellWidth99 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties99.Append(tableCellWidth99);

             Paragraph paragraph103 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run111 = new Run();
             Text text110 = new Text();
             text110.Text = "MMMM";

             run111.Append(text110);

             paragraph103.Append(run111);

             tableCell99.Append(tableCellProperties99);
             tableCell99.Append(paragraph103);

             TableCell tableCell100 = new TableCell();

             TableCellProperties tableCellProperties100 = new TableCellProperties();
             TableCellWidth tableCellWidth100 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties100.Append(tableCellWidth100);

             Paragraph paragraph104 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run112 = new Run();
             Text text111 = new Text();
             text111.Text = "BOU";

             run112.Append(text111);

             paragraph104.Append(run112);

             tableCell100.Append(tableCellProperties100);
             tableCell100.Append(paragraph104);

             TableCell tableCell101 = new TableCell();

             TableCellProperties tableCellProperties101 = new TableCellProperties();
             TableCellWidth tableCellWidth101 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties101.Append(tableCellWidth101);

             Paragraph paragraph105 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run113 = new Run();
             Text text112 = new Text();
             text112.Text = "NOIULJ";

             run113.Append(text112);

             paragraph105.Append(run113);

             tableCell101.Append(tableCellProperties101);
             tableCell101.Append(paragraph105);

             TableCell tableCell102 = new TableCell();

             TableCellProperties tableCellProperties102 = new TableCellProperties();
             TableCellWidth tableCellWidth102 = new TableCellWidth() { Width = "1368", Type = TableWidthUnitValues.Dxa };

             tableCellProperties102.Append(tableCellWidth102);

             Paragraph paragraph106 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

             Run run114 = new Run();
             Text text113 = new Text();
             text113.Text = "LUIOI";

             run114.Append(text113);

             paragraph106.Append(run114);

             tableCell102.Append(tableCellProperties102);
             tableCell102.Append(paragraph106);

             tableRow11.Append(tableCell96);
             tableRow11.Append(tableCell97);
             tableRow11.Append(tableCell98);
             tableRow11.Append(tableCell99);
             tableRow11.Append(tableCell100);
             tableRow11.Append(tableCell101);
             tableRow11.Append(tableCell102);

             table2.Append(tableProperties2);
             table2.Append(tableGrid2);
             table2.Append(tableRow6);
             table2.Append(tableRow7);
             table2.Append(tableRow8);
             table2.Append(tableRow9);
             table2.Append(tableRow10);
             table2.Append(tableRow11);*/
            #endregion
            Paragraph paragraph107 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };
            BookmarkStart bookmarkStart1 = new BookmarkStart() { Name = "_GoBack", Id = "0" };

            paragraph107.Append(bookmarkStart1);
            BookmarkEnd bookmarkEnd1 = new BookmarkEnd() { Id = "0" };

            Paragraph paragraph108 = new Paragraph() { RsidParagraphAddition = "00F216F1", RsidRunAdditionDefault = "00F216F1" };

            Run run115 = new Run();

            RunProperties runProperties71 = new RunProperties();
            NoProof noProof2 = new NoProof();

            runProperties71.Append(noProof2);

            Drawing drawing2 = new Drawing();

            Wp.Inline inline2 = new Wp.Inline() { DistanceFromTop = (UInt32Value)0U, DistanceFromBottom = (UInt32Value)0U, DistanceFromLeft = (UInt32Value)0U, DistanceFromRight = (UInt32Value)0U };
            Wp.Extent extent2 = new Wp.Extent() { Cx = 5486400L, Cy = 3200400L };
            Wp.EffectExtent effectExtent2 = new Wp.EffectExtent() { LeftEdge = 0L, TopEdge = 0L, RightEdge = 19050L, BottomEdge = 19050L };
            Wp.DocProperties docProperties2 = new Wp.DocProperties() { Id = (UInt32Value)2U, Name = "Chart 2" };
            Wp.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties2 = new Wp.NonVisualGraphicFrameDrawingProperties();

            A.Graphic graphic2 = new A.Graphic();
            graphic2.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.GraphicData graphicData2 = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };

            C.ChartReference chartReference2 = new C.ChartReference() { Id = "rId13" };
            chartReference2.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
            chartReference2.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");

            graphicData2.Append(chartReference2);

            graphic2.Append(graphicData2);

            inline2.Append(extent2);
            inline2.Append(effectExtent2);
            inline2.Append(docProperties2);
            inline2.Append(nonVisualGraphicFrameDrawingProperties2);
            inline2.Append(graphic2);

            drawing2.Append(inline2);

            run115.Append(runProperties71);
            run115.Append(drawing2);

            paragraph108.Append(run115);

            SectionProperties sectionProperties1 = new SectionProperties() { RsidR = "00F216F1" };
            HeaderReference headerReference1 = new HeaderReference() { Type = HeaderFooterValues.Default, Id = "rId14" };
            PageSize pageSize1 = new PageSize() { Width = (UInt32Value)12240U, Height = (UInt32Value)15840U };
            PageMargin pageMargin1 = new PageMargin() { Top = 1440, Right = (UInt32Value)1440U, Bottom = 1440, 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(pageSize1);
            sectionProperties1.Append(pageMargin1);
            sectionProperties1.Append(columns1);
            sectionProperties1.Append(docGrid1);

            body1.Append(paragraph1);
            body1.Append(table1);
            body1.Append(paragraph62);
            body1.Append(paragraph63);
            body1.Append(paragraph64);
            body1.Append(table2);
            body1.Append(paragraph107);
            body1.Append(bookmarkEnd1);
            body1.Append(paragraph108);
            body1.Append(sectionProperties1);

            document1.Append(body1);

            mainDocumentPart1.Document = document1;
        }
        // Generates content of worksheetPart2.
        private void GenerateWorksheetPart2Content(WorksheetPart worksheetPart2)
        {
            Worksheet worksheet2 = new Worksheet() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "x14ac" } };
            worksheet2.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            worksheet2.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
            worksheet2.AddNamespaceDeclaration("x14", "http://schemas.microsoft.com/office/spreadsheetml/2009/9/main");
            worksheet2.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            worksheet2.AddNamespaceDeclaration("x14ac", "http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac");
            SheetDimension sheetDimension2 = new SheetDimension() { Reference = "A1:V19" };

            SheetViews sheetViews2 = new SheetViews();

            SheetView sheetView2 = new SheetView() { TabSelected = true, WorkbookViewId = (UInt32Value)0U };
            Selection selection2 = new Selection() { ActiveCell = "X5", SequenceOfReferences = new ListValue<StringValue>() { InnerText = "X5" } };

            sheetView2.Append(selection2);

            sheetViews2.Append(sheetView2);
            SheetFormatProperties sheetFormatProperties2 = new SheetFormatProperties() { DefaultRowHeight = 15D, DyDescent = 0.25D };

            SheetData sheetData2 = new SheetData();

            Row row2 = new Row() { RowIndex = (UInt32Value)1U, Spans = new ListValue<StringValue>() { InnerText = "1:22" }, DyDescent = 0.25D };

            Cell cell2 = new Cell() { CellReference = "A1" };
            CellValue cellValue2 = new CellValue();
            cellValue2.Text = "1";

            cell2.Append(cellValue2);

            Cell cell3 = new Cell() { CellReference = "C1", StyleIndex = (UInt32Value)1U, DataType = CellValues.SharedString };
            CellValue cellValue3 = new CellValue();
            cellValue3.Text = "0";

            cell3.Append(cellValue3);

            row2.Append(cell2);
            row2.Append(cell3);

            Row row3 = new Row() { RowIndex = (UInt32Value)2U, Spans = new ListValue<StringValue>() { InnerText = "1:22" }, DyDescent = 0.25D };

            Cell cell4 = new Cell() { CellReference = "A2" };
            CellValue cellValue4 = new CellValue();
            cellValue4.Text = "2";

            cell4.Append(cellValue4);

            row3.Append(cell4);

            Row row4 = new Row() { RowIndex = (UInt32Value)3U, Spans = new ListValue<StringValue>() { InnerText = "1:22" }, DyDescent = 0.25D };

            Cell cell5 = new Cell() { CellReference = "A3" };
            CellValue cellValue5 = new CellValue();
            cellValue5.Text = "3";

            cell5.Append(cellValue5);

            row4.Append(cell5);

            Row row5 = new Row() { RowIndex = (UInt32Value)4U, Spans = new ListValue<StringValue>() { InnerText = "1:22" }, Height = 135D, DyDescent = 0.25D };

            Cell cell6 = new Cell() { CellReference = "A4" };
            CellValue cellValue6 = new CellValue();
            cellValue6.Text = "4";

            cell6.Append(cellValue6);

            Cell cell7 = new Cell() { CellReference = "C4", StyleIndex = (UInt32Value)2U, DataType = CellValues.SharedString };
            CellValue cellValue7 = new CellValue();
            cellValue7.Text = "1";

            cell7.Append(cellValue7);

            row5.Append(cell6);
            row5.Append(cell7);

            Row row6 = new Row() { RowIndex = (UInt32Value)5U, Spans = new ListValue<StringValue>() { InnerText = "1:22" }, DyDescent = 0.25D };

            Cell cell8 = new Cell() { CellReference = "A5" };
            CellValue cellValue8 = new CellValue();
            cellValue8.Text = "5";

            cell8.Append(cellValue8);

            Cell cell9 = new Cell() { CellReference = "Q5", StyleIndex = (UInt32Value)3U, DataType = CellValues.SharedString };
            CellValue cellValue9 = new CellValue();
            cellValue9.Text = "6";

            cell9.Append(cellValue9);

            Cell cell10 = new Cell() { CellReference = "T5" };
            CellValue cellValue10 = new CellValue();
            cellValue10.Text = "4";

            cell10.Append(cellValue10);

            row6.Append(cell8);
            row6.Append(cell9);
            row6.Append(cell10);

            Row row7 = new Row() { RowIndex = (UInt32Value)6U, Spans = new ListValue<StringValue>() { InnerText = "1:22" }, DyDescent = 0.25D };

            Cell cell11 = new Cell() { CellReference = "A6" };
            CellFormula cellFormula1 = new CellFormula();
            cellFormula1.Text = "SUM(A1:A5)";
            CellValue cellValue11 = new CellValue();
            cellValue11.Text = "15";

            cell11.Append(cellFormula1);
            cell11.Append(cellValue11);

            Cell cell12 = new Cell() { CellReference = "T6" };
            CellValue cellValue12 = new CellValue();
            cellValue12.Text = "7";

            cell12.Append(cellValue12);

            row7.Append(cell11);
            row7.Append(cell12);

            Row row8 = new Row() { RowIndex = (UInt32Value)7U, Spans = new ListValue<StringValue>() { InnerText = "1:22" }, DyDescent = 0.25D };

            Cell cell13 = new Cell() { CellReference = "T7" };
            CellValue cellValue13 = new CellValue();
            cellValue13.Text = "6";

            cell13.Append(cellValue13);

            row8.Append(cell13);

            Row row9 = new Row() { RowIndex = (UInt32Value)8U, Spans = new ListValue<StringValue>() { InnerText = "1:22" }, DyDescent = 0.25D };

            Cell cell14 = new Cell() { CellReference = "T8" };
            CellValue cellValue14 = new CellValue();
            cellValue14.Text = "5";

            cell14.Append(cellValue14);

            row9.Append(cell14);

            Row row10 = new Row() { RowIndex = (UInt32Value)9U, Spans = new ListValue<StringValue>() { InnerText = "1:22" }, DyDescent = 0.25D };

            Cell cell15 = new Cell() { CellReference = "T9" };
            CellValue cellValue15 = new CellValue();
            cellValue15.Text = "4";

            cell15.Append(cellValue15);

            row10.Append(cell15);

            Row row11 = new Row() { RowIndex = (UInt32Value)10U, Spans = new ListValue<StringValue>() { InnerText = "1:22" }, DyDescent = 0.25D };

            Cell cell16 = new Cell() { CellReference = "T10" };
            CellValue cellValue16 = new CellValue();
            cellValue16.Text = "7";

            cell16.Append(cellValue16);

            row11.Append(cell16);

            Row row12 = new Row() { RowIndex = (UInt32Value)17U, Spans = new ListValue<StringValue>() { InnerText = "1:3" }, DyDescent = 0.25D };

            Cell cell17 = new Cell() { CellReference = "A17", DataType = CellValues.SharedString };
            CellValue cellValue17 = new CellValue();
            cellValue17.Text = "3";

            cell17.Append(cellValue17);

            Cell cell18 = new Cell() { CellReference = "B17", DataType = CellValues.SharedString };
            CellValue cellValue18 = new CellValue();
            cellValue18.Text = "4";

            cell18.Append(cellValue18);

            Cell cell19 = new Cell() { CellReference = "C17", DataType = CellValues.SharedString };
            CellValue cellValue19 = new CellValue();
            cellValue19.Text = "5";

            cell19.Append(cellValue19);

            row12.Append(cell17);
            row12.Append(cell18);
            row12.Append(cell19);

            Row row13 = new Row() { RowIndex = (UInt32Value)18U, Spans = new ListValue<StringValue>() { InnerText = "1:3" }, DyDescent = 0.25D };

            Cell cell20 = new Cell() { CellReference = "A18" };
            CellValue cellValue20 = new CellValue();
            cellValue20.Text = "1";

            cell20.Append(cellValue20);

            Cell cell21 = new Cell() { CellReference = "B18" };
            CellValue cellValue21 = new CellValue();
            cellValue21.Text = "2";

            cell21.Append(cellValue21);

            Cell cell22 = new Cell() { CellReference = "C18" };
            CellValue cellValue22 = new CellValue();
            cellValue22.Text = "3";

            cell22.Append(cellValue22);

            row13.Append(cell20);
            row13.Append(cell21);
            row13.Append(cell22);

            Row row14 = new Row() { RowIndex = (UInt32Value)19U, Spans = new ListValue<StringValue>() { InnerText = "1:3" }, DyDescent = 0.25D };

            Cell cell23 = new Cell() { CellReference = "A19" };
            CellValue cellValue23 = new CellValue();
            cellValue23.Text = "4";

            cell23.Append(cellValue23);

            Cell cell24 = new Cell() { CellReference = "B19" };
            CellValue cellValue24 = new CellValue();
            cellValue24.Text = "5";

            cell24.Append(cellValue24);

            Cell cell25 = new Cell() { CellReference = "C19" };
            CellValue cellValue25 = new CellValue();
            cellValue25.Text = "6";

            cell25.Append(cellValue25);

            row14.Append(cell23);
            row14.Append(cell24);
            row14.Append(cell25);

            sheetData2.Append(row2);
            sheetData2.Append(row3);
            sheetData2.Append(row4);
            sheetData2.Append(row5);
            sheetData2.Append(row6);
            sheetData2.Append(row7);
            sheetData2.Append(row8);
            sheetData2.Append(row9);
            sheetData2.Append(row10);
            sheetData2.Append(row11);
            sheetData2.Append(row12);
            sheetData2.Append(row13);
            sheetData2.Append(row14);

            Hyperlinks hyperlinks1 = new Hyperlinks();
            Hyperlink hyperlink2 = new Hyperlink() { Reference = "Q5", Id = "rId1" };

            hyperlinks1.Append(hyperlink2);
            PageMargins pageMargins2 = new PageMargins() { Left = 0.25D, Right = 0.25D, Top = 0.75D, Bottom = 0.75D, Header = 0.3D, Footer = 0.3D };
            PageSetup pageSetup1 = new PageSetup() { Orientation = OrientationValues.Landscape, HorizontalDpi = (UInt32Value)4294967293U, VerticalDpi = (UInt32Value)0U, Id = "rId2" };
            S.Drawing drawing3 = new S.Drawing() { Id = "rId3" };
            LegacyDrawing legacyDrawing1 = new LegacyDrawing() { Id = "rId4" };

            TableParts tableParts1 = new TableParts() { Count = (UInt32Value)1U };
            TablePart tablePart1 = new TablePart() { Id = "rId5" };

            tableParts1.Append(tablePart1);

            worksheet2.Append(sheetDimension2);
            worksheet2.Append(sheetViews2);
            worksheet2.Append(sheetFormatProperties2);
            worksheet2.Append(sheetData2);
            worksheet2.Append(hyperlinks1);
            worksheet2.Append(pageMargins2);
            worksheet2.Append(pageSetup1);
            worksheet2.Append(drawing3);
            worksheet2.Append(legacyDrawing1);
            worksheet2.Append(tableParts1);

            worksheetPart2.Worksheet = worksheet2;
        }
        // Generates content of themePart1.
        private void GenerateThemePart1Content(ThemePart themePart1)
        {
            A.Theme theme1 = new A.Theme() { Name = "Tema de Office" };
            theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.ThemeElements themeElements1 = new A.ThemeElements();

            A.ColorScheme colorScheme1 = new A.ColorScheme() { Name = "Office" };

            A.Dark1Color dark1Color1 = new A.Dark1Color();
            A.SystemColor systemColor1 = new A.SystemColor() { Val = A.SystemColorValues.WindowText, LastColor = "000000" };

            dark1Color1.Append(systemColor1);

            A.Light1Color light1Color1 = new A.Light1Color();
            A.SystemColor systemColor2 = new A.SystemColor() { Val = A.SystemColorValues.Window, LastColor = "FFFFFF" };

            light1Color1.Append(systemColor2);

            A.Dark2Color dark2Color1 = new A.Dark2Color();
            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex() { Val = "1F497D" };

            dark2Color1.Append(rgbColorModelHex1);

            A.Light2Color light2Color1 = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex() { Val = "EEECE1" };

            light2Color1.Append(rgbColorModelHex2);

            A.Accent1Color accent1Color1 = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex() { Val = "4F81BD" };

            accent1Color1.Append(rgbColorModelHex3);

            A.Accent2Color accent2Color1 = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex() { Val = "C0504D" };

            accent2Color1.Append(rgbColorModelHex4);

            A.Accent3Color accent3Color1 = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex() { Val = "9BBB59" };

            accent3Color1.Append(rgbColorModelHex5);

            A.Accent4Color accent4Color1 = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex() { Val = "8064A2" };

            accent4Color1.Append(rgbColorModelHex6);

            A.Accent5Color accent5Color1 = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex() { Val = "4BACC6" };

            accent5Color1.Append(rgbColorModelHex7);

            A.Accent6Color accent6Color1 = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex() { Val = "F79646" };

            accent6Color1.Append(rgbColorModelHex8);

            A.Hyperlink hyperlink1 = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex() { Val = "0000FF" };

            hyperlink1.Append(rgbColorModelHex9);

            A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex() { Val = "800080" };

            followedHyperlinkColor1.Append(rgbColorModelHex10);

            colorScheme1.Append(dark1Color1);
            colorScheme1.Append(light1Color1);
            colorScheme1.Append(dark2Color1);
            colorScheme1.Append(light2Color1);
            colorScheme1.Append(accent1Color1);
            colorScheme1.Append(accent2Color1);
            colorScheme1.Append(accent3Color1);
            colorScheme1.Append(accent4Color1);
            colorScheme1.Append(accent5Color1);
            colorScheme1.Append(accent6Color1);
            colorScheme1.Append(hyperlink1);
            colorScheme1.Append(followedHyperlinkColor1);

            A.FontScheme fontScheme1 = new A.FontScheme() { Name = "Office" };

            A.MajorFont majorFont1 = new A.MajorFont();
            A.LatinFont latinFont1 = new A.LatinFont() { Typeface = "Cambria" };
            A.EastAsianFont eastAsianFont1 = new A.EastAsianFont() { Typeface = "" };
            A.ComplexScriptFont complexScriptFont1 = new A.ComplexScriptFont() { Typeface = "" };
            A.SupplementalFont supplementalFont1 = new A.SupplementalFont() { Script = "Jpan", Typeface = "MS Pゴシック" };
            A.SupplementalFont supplementalFont2 = new A.SupplementalFont() { Script = "Hang", Typeface = "맑은 고딕" };
            A.SupplementalFont supplementalFont3 = new A.SupplementalFont() { Script = "Hans", Typeface = "宋体" };
            A.SupplementalFont supplementalFont4 = new A.SupplementalFont() { Script = "Hant", Typeface = "新細明體" };
            A.SupplementalFont supplementalFont5 = new A.SupplementalFont() { Script = "Arab", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont6 = new A.SupplementalFont() { Script = "Hebr", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont7 = new A.SupplementalFont() { Script = "Thai", Typeface = "Tahoma" };
            A.SupplementalFont supplementalFont8 = new A.SupplementalFont() { Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont9 = new A.SupplementalFont() { Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont10 = new A.SupplementalFont() { Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont11 = new A.SupplementalFont() { Script = "Khmr", Typeface = "MoolBoran" };
            A.SupplementalFont supplementalFont12 = new A.SupplementalFont() { Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont13 = new A.SupplementalFont() { Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont14 = new A.SupplementalFont() { Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont15 = new A.SupplementalFont() { Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont16 = new A.SupplementalFont() { Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont17 = new A.SupplementalFont() { Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont18 = new A.SupplementalFont() { Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont19 = new A.SupplementalFont() { Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont20 = new A.SupplementalFont() { Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont21 = new A.SupplementalFont() { Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont22 = new A.SupplementalFont() { Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont23 = new A.SupplementalFont() { Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont24 = new A.SupplementalFont() { Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont25 = new A.SupplementalFont() { Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont26 = new A.SupplementalFont() { Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont27 = new A.SupplementalFont() { Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont28 = new A.SupplementalFont() { Script = "Viet", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont29 = new A.SupplementalFont() { Script = "Uigh", Typeface = "Microsoft Uighur" };

            majorFont1.Append(latinFont1);
            majorFont1.Append(eastAsianFont1);
            majorFont1.Append(complexScriptFont1);
            majorFont1.Append(supplementalFont1);
            majorFont1.Append(supplementalFont2);
            majorFont1.Append(supplementalFont3);
            majorFont1.Append(supplementalFont4);
            majorFont1.Append(supplementalFont5);
            majorFont1.Append(supplementalFont6);
            majorFont1.Append(supplementalFont7);
            majorFont1.Append(supplementalFont8);
            majorFont1.Append(supplementalFont9);
            majorFont1.Append(supplementalFont10);
            majorFont1.Append(supplementalFont11);
            majorFont1.Append(supplementalFont12);
            majorFont1.Append(supplementalFont13);
            majorFont1.Append(supplementalFont14);
            majorFont1.Append(supplementalFont15);
            majorFont1.Append(supplementalFont16);
            majorFont1.Append(supplementalFont17);
            majorFont1.Append(supplementalFont18);
            majorFont1.Append(supplementalFont19);
            majorFont1.Append(supplementalFont20);
            majorFont1.Append(supplementalFont21);
            majorFont1.Append(supplementalFont22);
            majorFont1.Append(supplementalFont23);
            majorFont1.Append(supplementalFont24);
            majorFont1.Append(supplementalFont25);
            majorFont1.Append(supplementalFont26);
            majorFont1.Append(supplementalFont27);
            majorFont1.Append(supplementalFont28);
            majorFont1.Append(supplementalFont29);

            A.MinorFont minorFont1 = new A.MinorFont();
            A.LatinFont latinFont2 = new A.LatinFont() { Typeface = "Calibri" };
            A.EastAsianFont eastAsianFont2 = new A.EastAsianFont() { Typeface = "" };
            A.ComplexScriptFont complexScriptFont2 = new A.ComplexScriptFont() { Typeface = "" };
            A.SupplementalFont supplementalFont30 = new A.SupplementalFont() { Script = "Jpan", Typeface = "MS Pゴシック" };
            A.SupplementalFont supplementalFont31 = new A.SupplementalFont() { Script = "Hang", Typeface = "맑은 고딕" };
            A.SupplementalFont supplementalFont32 = new A.SupplementalFont() { Script = "Hans", Typeface = "宋体" };
            A.SupplementalFont supplementalFont33 = new A.SupplementalFont() { Script = "Hant", Typeface = "新細明體" };
            A.SupplementalFont supplementalFont34 = new A.SupplementalFont() { Script = "Arab", Typeface = "Arial" };
            A.SupplementalFont supplementalFont35 = new A.SupplementalFont() { Script = "Hebr", Typeface = "Arial" };
            A.SupplementalFont supplementalFont36 = new A.SupplementalFont() { Script = "Thai", Typeface = "Tahoma" };
            A.SupplementalFont supplementalFont37 = new A.SupplementalFont() { Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont38 = new A.SupplementalFont() { Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont39 = new A.SupplementalFont() { Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont40 = new A.SupplementalFont() { Script = "Khmr", Typeface = "DaunPenh" };
            A.SupplementalFont supplementalFont41 = new A.SupplementalFont() { Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont42 = new A.SupplementalFont() { Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont43 = new A.SupplementalFont() { Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont44 = new A.SupplementalFont() { Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont45 = new A.SupplementalFont() { Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont46 = new A.SupplementalFont() { Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont47 = new A.SupplementalFont() { Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont48 = new A.SupplementalFont() { Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont49 = new A.SupplementalFont() { Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont50 = new A.SupplementalFont() { Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont51 = new A.SupplementalFont() { Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont52 = new A.SupplementalFont() { Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont53 = new A.SupplementalFont() { Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont54 = new A.SupplementalFont() { Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont55 = new A.SupplementalFont() { Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont56 = new A.SupplementalFont() { Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont57 = new A.SupplementalFont() { Script = "Viet", Typeface = "Arial" };
            A.SupplementalFont supplementalFont58 = new A.SupplementalFont() { Script = "Uigh", Typeface = "Microsoft Uighur" };

            minorFont1.Append(latinFont2);
            minorFont1.Append(eastAsianFont2);
            minorFont1.Append(complexScriptFont2);
            minorFont1.Append(supplementalFont30);
            minorFont1.Append(supplementalFont31);
            minorFont1.Append(supplementalFont32);
            minorFont1.Append(supplementalFont33);
            minorFont1.Append(supplementalFont34);
            minorFont1.Append(supplementalFont35);
            minorFont1.Append(supplementalFont36);
            minorFont1.Append(supplementalFont37);
            minorFont1.Append(supplementalFont38);
            minorFont1.Append(supplementalFont39);
            minorFont1.Append(supplementalFont40);
            minorFont1.Append(supplementalFont41);
            minorFont1.Append(supplementalFont42);
            minorFont1.Append(supplementalFont43);
            minorFont1.Append(supplementalFont44);
            minorFont1.Append(supplementalFont45);
            minorFont1.Append(supplementalFont46);
            minorFont1.Append(supplementalFont47);
            minorFont1.Append(supplementalFont48);
            minorFont1.Append(supplementalFont49);
            minorFont1.Append(supplementalFont50);
            minorFont1.Append(supplementalFont51);
            minorFont1.Append(supplementalFont52);
            minorFont1.Append(supplementalFont53);
            minorFont1.Append(supplementalFont54);
            minorFont1.Append(supplementalFont55);
            minorFont1.Append(supplementalFont56);
            minorFont1.Append(supplementalFont57);
            minorFont1.Append(supplementalFont58);

            fontScheme1.Append(majorFont1);
            fontScheme1.Append(minorFont1);

            A.FormatScheme formatScheme1 = new A.FormatScheme() { Name = "Office" };

            A.FillStyleList fillStyleList1 = new A.FillStyleList();

            A.SolidFill solidFill1 = new A.SolidFill();
            A.SchemeColor schemeColor1 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill1.Append(schemeColor1);

            A.GradientFill gradientFill1 = new A.GradientFill() { RotateWithShape = true };

            A.GradientStopList gradientStopList1 = new A.GradientStopList();

            A.GradientStop gradientStop1 = new A.GradientStop() { Position = 0 };

            A.SchemeColor schemeColor2 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Tint tint1 = new A.Tint() { Val = 50000 };
            A.SaturationModulation saturationModulation1 = new A.SaturationModulation() { Val = 300000 };

            schemeColor2.Append(tint1);
            schemeColor2.Append(saturationModulation1);

            gradientStop1.Append(schemeColor2);

            A.GradientStop gradientStop2 = new A.GradientStop() { Position = 35000 };

            A.SchemeColor schemeColor3 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Tint tint2 = new A.Tint() { Val = 37000 };
            A.SaturationModulation saturationModulation2 = new A.SaturationModulation() { Val = 300000 };

            schemeColor3.Append(tint2);
            schemeColor3.Append(saturationModulation2);

            gradientStop2.Append(schemeColor3);

            A.GradientStop gradientStop3 = new A.GradientStop() { Position = 100000 };

            A.SchemeColor schemeColor4 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Tint tint3 = new A.Tint() { Val = 15000 };
            A.SaturationModulation saturationModulation3 = new A.SaturationModulation() { Val = 350000 };

            schemeColor4.Append(tint3);
            schemeColor4.Append(saturationModulation3);

            gradientStop3.Append(schemeColor4);

            gradientStopList1.Append(gradientStop1);
            gradientStopList1.Append(gradientStop2);
            gradientStopList1.Append(gradientStop3);
            A.LinearGradientFill linearGradientFill1 = new A.LinearGradientFill() { Angle = 16200000, Scaled = true };

            gradientFill1.Append(gradientStopList1);
            gradientFill1.Append(linearGradientFill1);

            A.GradientFill gradientFill2 = new A.GradientFill() { RotateWithShape = true };

            A.GradientStopList gradientStopList2 = new A.GradientStopList();

            A.GradientStop gradientStop4 = new A.GradientStop() { Position = 0 };

            A.SchemeColor schemeColor5 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Shade shade1 = new A.Shade() { Val = 51000 };
            A.SaturationModulation saturationModulation4 = new A.SaturationModulation() { Val = 130000 };

            schemeColor5.Append(shade1);
            schemeColor5.Append(saturationModulation4);

            gradientStop4.Append(schemeColor5);

            A.GradientStop gradientStop5 = new A.GradientStop() { Position = 80000 };

            A.SchemeColor schemeColor6 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Shade shade2 = new A.Shade() { Val = 93000 };
            A.SaturationModulation saturationModulation5 = new A.SaturationModulation() { Val = 130000 };

            schemeColor6.Append(shade2);
            schemeColor6.Append(saturationModulation5);

            gradientStop5.Append(schemeColor6);

            A.GradientStop gradientStop6 = new A.GradientStop() { Position = 100000 };

            A.SchemeColor schemeColor7 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Shade shade3 = new A.Shade() { Val = 94000 };
            A.SaturationModulation saturationModulation6 = new A.SaturationModulation() { Val = 135000 };

            schemeColor7.Append(shade3);
            schemeColor7.Append(saturationModulation6);

            gradientStop6.Append(schemeColor7);

            gradientStopList2.Append(gradientStop4);
            gradientStopList2.Append(gradientStop5);
            gradientStopList2.Append(gradientStop6);
            A.LinearGradientFill linearGradientFill2 = new A.LinearGradientFill() { Angle = 16200000, Scaled = false };

            gradientFill2.Append(gradientStopList2);
            gradientFill2.Append(linearGradientFill2);

            fillStyleList1.Append(solidFill1);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            A.LineStyleList lineStyleList1 = new A.LineStyleList();

            A.Outline outline1 = new A.Outline() { Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill2 = new A.SolidFill();

            A.SchemeColor schemeColor8 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Shade shade4 = new A.Shade() { Val = 95000 };
            A.SaturationModulation saturationModulation7 = new A.SaturationModulation() { Val = 105000 };

            schemeColor8.Append(shade4);
            schemeColor8.Append(saturationModulation7);

            solidFill2.Append(schemeColor8);
            A.PresetDash presetDash1 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };

            outline1.Append(solidFill2);
            outline1.Append(presetDash1);

            A.Outline outline2 = new A.Outline() { Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill3 = new A.SolidFill();
            A.SchemeColor schemeColor9 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill3.Append(schemeColor9);
            A.PresetDash presetDash2 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };

            outline2.Append(solidFill3);
            outline2.Append(presetDash2);

            A.Outline outline3 = new A.Outline() { Width = 38100, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill4 = new A.SolidFill();
            A.SchemeColor schemeColor10 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill4.Append(schemeColor10);
            A.PresetDash presetDash3 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };

            outline3.Append(solidFill4);
            outline3.Append(presetDash3);

            lineStyleList1.Append(outline1);
            lineStyleList1.Append(outline2);
            lineStyleList1.Append(outline3);

            A.EffectStyleList effectStyleList1 = new A.EffectStyleList();

            A.EffectStyle effectStyle1 = new A.EffectStyle();

            A.EffectList effectList1 = new A.EffectList();

            A.OuterShadow outerShadow1 = new A.OuterShadow() { BlurRadius = 40000L, Distance = 20000L, Direction = 5400000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex() { Val = "000000" };
            A.Alpha alpha1 = new A.Alpha() { Val = 38000 };

            rgbColorModelHex11.Append(alpha1);

            outerShadow1.Append(rgbColorModelHex11);

            effectList1.Append(outerShadow1);

            effectStyle1.Append(effectList1);

            A.EffectStyle effectStyle2 = new A.EffectStyle();

            A.EffectList effectList2 = new A.EffectList();

            A.OuterShadow outerShadow2 = new A.OuterShadow() { BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex12 = new A.RgbColorModelHex() { Val = "000000" };
            A.Alpha alpha2 = new A.Alpha() { Val = 35000 };

            rgbColorModelHex12.Append(alpha2);

            outerShadow2.Append(rgbColorModelHex12);

            effectList2.Append(outerShadow2);

            effectStyle2.Append(effectList2);

            A.EffectStyle effectStyle3 = new A.EffectStyle();

            A.EffectList effectList3 = new A.EffectList();

            A.OuterShadow outerShadow3 = new A.OuterShadow() { BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex13 = new A.RgbColorModelHex() { Val = "000000" };
            A.Alpha alpha3 = new A.Alpha() { Val = 35000 };

            rgbColorModelHex13.Append(alpha3);

            outerShadow3.Append(rgbColorModelHex13);

            effectList3.Append(outerShadow3);

            A.Scene3DType scene3DType1 = new A.Scene3DType();

            A.Camera camera1 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
            A.Rotation rotation1 = new A.Rotation() { Latitude = 0, Longitude = 0, Revolution = 0 };

            camera1.Append(rotation1);

            A.LightRig lightRig1 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };
            A.Rotation rotation2 = new A.Rotation() { Latitude = 0, Longitude = 0, Revolution = 1200000 };

            lightRig1.Append(rotation2);

            scene3DType1.Append(camera1);
            scene3DType1.Append(lightRig1);

            A.Shape3DType shape3DType1 = new A.Shape3DType();
            A.BevelTop bevelTop1 = new A.BevelTop() { Width = 63500L, Height = 25400L };

            shape3DType1.Append(bevelTop1);

            effectStyle3.Append(effectList3);
            effectStyle3.Append(scene3DType1);
            effectStyle3.Append(shape3DType1);

            effectStyleList1.Append(effectStyle1);
            effectStyleList1.Append(effectStyle2);
            effectStyleList1.Append(effectStyle3);

            A.BackgroundFillStyleList backgroundFillStyleList1 = new A.BackgroundFillStyleList();

            A.SolidFill solidFill5 = new A.SolidFill();
            A.SchemeColor schemeColor11 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill5.Append(schemeColor11);

            A.GradientFill gradientFill3 = new A.GradientFill() { RotateWithShape = true };

            A.GradientStopList gradientStopList3 = new A.GradientStopList();

            A.GradientStop gradientStop7 = new A.GradientStop() { Position = 0 };

            A.SchemeColor schemeColor12 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Tint tint4 = new A.Tint() { Val = 40000 };
            A.SaturationModulation saturationModulation8 = new A.SaturationModulation() { Val = 350000 };

            schemeColor12.Append(tint4);
            schemeColor12.Append(saturationModulation8);

            gradientStop7.Append(schemeColor12);

            A.GradientStop gradientStop8 = new A.GradientStop() { Position = 40000 };

            A.SchemeColor schemeColor13 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Tint tint5 = new A.Tint() { Val = 45000 };
            A.Shade shade5 = new A.Shade() { Val = 99000 };
            A.SaturationModulation saturationModulation9 = new A.SaturationModulation() { Val = 350000 };

            schemeColor13.Append(tint5);
            schemeColor13.Append(shade5);
            schemeColor13.Append(saturationModulation9);

            gradientStop8.Append(schemeColor13);

            A.GradientStop gradientStop9 = new A.GradientStop() { Position = 100000 };

            A.SchemeColor schemeColor14 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Shade shade6 = new A.Shade() { Val = 20000 };
            A.SaturationModulation saturationModulation10 = new A.SaturationModulation() { Val = 255000 };

            schemeColor14.Append(shade6);
            schemeColor14.Append(saturationModulation10);

            gradientStop9.Append(schemeColor14);

            gradientStopList3.Append(gradientStop7);
            gradientStopList3.Append(gradientStop8);
            gradientStopList3.Append(gradientStop9);

            A.PathGradientFill pathGradientFill1 = new A.PathGradientFill() { Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle1 = new A.FillToRectangle() { Left = 50000, Top = -80000, Right = 50000, Bottom = 180000 };

            pathGradientFill1.Append(fillToRectangle1);

            gradientFill3.Append(gradientStopList3);
            gradientFill3.Append(pathGradientFill1);

            A.GradientFill gradientFill4 = new A.GradientFill() { RotateWithShape = true };

            A.GradientStopList gradientStopList4 = new A.GradientStopList();

            A.GradientStop gradientStop10 = new A.GradientStop() { Position = 0 };

            A.SchemeColor schemeColor15 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Tint tint6 = new A.Tint() { Val = 80000 };
            A.SaturationModulation saturationModulation11 = new A.SaturationModulation() { Val = 300000 };

            schemeColor15.Append(tint6);
            schemeColor15.Append(saturationModulation11);

            gradientStop10.Append(schemeColor15);

            A.GradientStop gradientStop11 = new A.GradientStop() { Position = 100000 };

            A.SchemeColor schemeColor16 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Shade shade7 = new A.Shade() { Val = 30000 };
            A.SaturationModulation saturationModulation12 = new A.SaturationModulation() { Val = 200000 };

            schemeColor16.Append(shade7);
            schemeColor16.Append(saturationModulation12);

            gradientStop11.Append(schemeColor16);

            gradientStopList4.Append(gradientStop10);
            gradientStopList4.Append(gradientStop11);

            A.PathGradientFill pathGradientFill2 = new A.PathGradientFill() { Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle2 = new A.FillToRectangle() { Left = 50000, Top = 50000, Right = 50000, Bottom = 50000 };

            pathGradientFill2.Append(fillToRectangle2);

            gradientFill4.Append(gradientStopList4);
            gradientFill4.Append(pathGradientFill2);

            backgroundFillStyleList1.Append(solidFill5);
            backgroundFillStyleList1.Append(gradientFill3);
            backgroundFillStyleList1.Append(gradientFill4);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme1);
            themeElements1.Append(formatScheme1);

            A.ObjectDefaults objectDefaults1 = new A.ObjectDefaults();

            A.ShapeDefault shapeDefault1 = new A.ShapeDefault();

            A.ShapeProperties shapeProperties1 = new A.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 = 1L, Cy = 1L };

            transform2D1.Append(offset1);
            transform2D1.Append(extents1);

            A.CustomGeometry customGeometry1 = new A.CustomGeometry();
            A.AdjustValueList adjustValueList1 = new A.AdjustValueList();
            A.ShapeGuideList shapeGuideList1 = new A.ShapeGuideList();
            A.AdjustHandleList adjustHandleList1 = new A.AdjustHandleList();
            A.ConnectionSiteList connectionSiteList1 = new A.ConnectionSiteList();
            A.Rectangle rectangle1 = new A.Rectangle() { Left = "0", Top = "0", Right = "0", Bottom = "0" };
            A.PathList pathList1 = new A.PathList();

            customGeometry1.Append(adjustValueList1);
            customGeometry1.Append(shapeGuideList1);
            customGeometry1.Append(adjustHandleList1);
            customGeometry1.Append(connectionSiteList1);
            customGeometry1.Append(rectangle1);
            customGeometry1.Append(pathList1);

            A.SolidFill solidFill6 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex14 = new A.RgbColorModelHex() { Val = "FFFFFF" };

            solidFill6.Append(rgbColorModelHex14);

            A.Outline outline4 = new A.Outline() { Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill7 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex15 = new A.RgbColorModelHex() { Val = "000000" };

            solidFill7.Append(rgbColorModelHex15);
            A.PresetDash presetDash4 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
            A.Round round1 = new A.Round();
            A.HeadEnd headEnd1 = new A.HeadEnd() { Type = A.LineEndValues.None, Width = A.LineEndWidthValues.Medium, Length = A.LineEndLengthValues.Medium };
            A.TailEnd tailEnd1 = new A.TailEnd() { Type = A.LineEndValues.None, Width = A.LineEndWidthValues.Medium, Length = A.LineEndLengthValues.Medium };

            outline4.Append(solidFill7);
            outline4.Append(presetDash4);
            outline4.Append(round1);
            outline4.Append(headEnd1);
            outline4.Append(tailEnd1);
            A.EffectList effectList4 = new A.EffectList();

            shapeProperties1.Append(transform2D1);
            shapeProperties1.Append(customGeometry1);
            shapeProperties1.Append(solidFill6);
            shapeProperties1.Append(outline4);
            shapeProperties1.Append(effectList4);
            A.BodyProperties bodyProperties1 = new A.BodyProperties() { VerticalOverflow = A.TextVerticalOverflowValues.Clip, Wrap = A.TextWrappingValues.Square, LeftInset = 18288, TopInset = 0, RightInset = 0, BottomInset = 0, UpRight = true };
            A.ListStyle listStyle1 = new A.ListStyle();

            shapeDefault1.Append(shapeProperties1);
            shapeDefault1.Append(bodyProperties1);
            shapeDefault1.Append(listStyle1);

            A.LineDefault lineDefault1 = new A.LineDefault();

            A.ShapeProperties shapeProperties2 = new A.ShapeProperties() { BlackWhiteMode = A.BlackWhiteModeValues.Auto };

            A.Transform2D transform2D2 = new A.Transform2D();
            A.Offset offset2 = new A.Offset() { X = 0L, Y = 0L };
            A.Extents extents2 = new A.Extents() { Cx = 1L, Cy = 1L };

            transform2D2.Append(offset2);
            transform2D2.Append(extents2);

            A.CustomGeometry customGeometry2 = new A.CustomGeometry();
            A.AdjustValueList adjustValueList2 = new A.AdjustValueList();
            A.ShapeGuideList shapeGuideList2 = new A.ShapeGuideList();
            A.AdjustHandleList adjustHandleList2 = new A.AdjustHandleList();
            A.ConnectionSiteList connectionSiteList2 = new A.ConnectionSiteList();
            A.Rectangle rectangle2 = new A.Rectangle() { Left = "0", Top = "0", Right = "0", Bottom = "0" };
            A.PathList pathList2 = new A.PathList();

            customGeometry2.Append(adjustValueList2);
            customGeometry2.Append(shapeGuideList2);
            customGeometry2.Append(adjustHandleList2);
            customGeometry2.Append(connectionSiteList2);
            customGeometry2.Append(rectangle2);
            customGeometry2.Append(pathList2);

            A.SolidFill solidFill8 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex16 = new A.RgbColorModelHex() { Val = "FFFFFF" };

            solidFill8.Append(rgbColorModelHex16);

            A.Outline outline5 = new A.Outline() { Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill9 = new A.SolidFill();
            A.RgbColorModelHex rgbColorModelHex17 = new A.RgbColorModelHex() { Val = "000000" };

            solidFill9.Append(rgbColorModelHex17);
            A.PresetDash presetDash5 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
            A.Round round2 = new A.Round();
            A.HeadEnd headEnd2 = new A.HeadEnd() { Type = A.LineEndValues.None, Width = A.LineEndWidthValues.Medium, Length = A.LineEndLengthValues.Medium };
            A.TailEnd tailEnd2 = new A.TailEnd() { Type = A.LineEndValues.None, Width = A.LineEndWidthValues.Medium, Length = A.LineEndLengthValues.Medium };

            outline5.Append(solidFill9);
            outline5.Append(presetDash5);
            outline5.Append(round2);
            outline5.Append(headEnd2);
            outline5.Append(tailEnd2);
            A.EffectList effectList5 = new A.EffectList();

            shapeProperties2.Append(transform2D2);
            shapeProperties2.Append(customGeometry2);
            shapeProperties2.Append(solidFill8);
            shapeProperties2.Append(outline5);
            shapeProperties2.Append(effectList5);
            A.BodyProperties bodyProperties2 = new A.BodyProperties() { VerticalOverflow = A.TextVerticalOverflowValues.Clip, Wrap = A.TextWrappingValues.Square, LeftInset = 18288, TopInset = 0, RightInset = 0, BottomInset = 0, UpRight = true };
            A.ListStyle listStyle2 = new A.ListStyle();

            lineDefault1.Append(shapeProperties2);
            lineDefault1.Append(bodyProperties2);
            lineDefault1.Append(listStyle2);

            objectDefaults1.Append(shapeDefault1);
            objectDefaults1.Append(lineDefault1);
            A.ExtraColorSchemeList extraColorSchemeList1 = new A.ExtraColorSchemeList();

            theme1.Append(themeElements1);
            theme1.Append(objectDefaults1);
            theme1.Append(extraColorSchemeList1);

            themePart1.Theme = theme1;
        }
Пример #16
0
        private ColorScheme GenerateColorScheme()
        {
            ColorScheme colorScheme1 = new ColorScheme()
            {
                Name = "Office"
            };

            Dark1Color  dark1Color1  = new Dark1Color();
            SystemColor systemColor1 = new SystemColor()
            {
                Val = SystemColorValues.WindowText, LastColor = "000000"
            };

            dark1Color1.Append(systemColor1);

            Dark2Color       dark2Color1       = new Dark2Color();
            RgbColorModelHex rgbColorModelHex1 = new RgbColorModelHex()
            {
                Val = "44546A"
            };

            dark2Color1.Append(rgbColorModelHex1);

            Light1Color light1Color1 = new Light1Color();
            SystemColor systemColor2 = new SystemColor()
            {
                Val = SystemColorValues.Window, LastColor = "FFFFFF"
            };

            light1Color1.Append(systemColor2);

            Light2Color      light2Color1      = new Light2Color();
            RgbColorModelHex rgbColorModelHex2 = new RgbColorModelHex()
            {
                Val = "E7E6E6"
            };

            light2Color1.Append(rgbColorModelHex2);

            Accent1Color     accent1Color1     = new Accent1Color();
            RgbColorModelHex rgbColorModelHex3 = new RgbColorModelHex()
            {
                Val = "4472C4"
            };

            accent1Color1.Append(rgbColorModelHex3);

            Accent2Color     accent2Color1     = new Accent2Color();
            RgbColorModelHex rgbColorModelHex4 = new RgbColorModelHex()
            {
                Val = "ED7D31"
            };

            accent2Color1.Append(rgbColorModelHex4);

            Accent3Color     accent3Color1     = new Accent3Color();
            RgbColorModelHex rgbColorModelHex5 = new RgbColorModelHex()
            {
                Val = "A5A5A5"
            };

            accent3Color1.Append(rgbColorModelHex5);

            Accent4Color     accent4Color1     = new Accent4Color();
            RgbColorModelHex rgbColorModelHex6 = new RgbColorModelHex()
            {
                Val = "FFC000"
            };

            accent4Color1.Append(rgbColorModelHex6);

            Accent5Color     accent5Color1     = new Accent5Color();
            RgbColorModelHex rgbColorModelHex7 = new RgbColorModelHex()
            {
                Val = "5B9BD5"
            };

            accent5Color1.Append(rgbColorModelHex7);

            Accent6Color     accent6Color1     = new Accent6Color();
            RgbColorModelHex rgbColorModelHex8 = new RgbColorModelHex()
            {
                Val = "70AD47"
            };

            accent6Color1.Append(rgbColorModelHex8);

            var hyperlink1 = new DocumentFormat.OpenXml.Drawing.Hyperlink();
            RgbColorModelHex rgbColorModelHex9 = new RgbColorModelHex()
            {
                Val = "0563C1"
            };

            hyperlink1.Append(rgbColorModelHex9);

            FollowedHyperlinkColor followedHyperlinkColor1 = new FollowedHyperlinkColor();
            RgbColorModelHex       rgbColorModelHex10      = new RgbColorModelHex()
            {
                Val = "954F72"
            };

            followedHyperlinkColor1.Append(rgbColorModelHex10);

            colorScheme1.Append(dark1Color1);
            colorScheme1.Append(light1Color1);
            colorScheme1.Append(dark2Color1);
            colorScheme1.Append(light2Color1);
            colorScheme1.Append(accent1Color1);
            colorScheme1.Append(accent2Color1);
            colorScheme1.Append(accent3Color1);
            colorScheme1.Append(accent4Color1);
            colorScheme1.Append(accent5Color1);
            colorScheme1.Append(accent6Color1);
            colorScheme1.Append(hyperlink1);
            colorScheme1.Append(followedHyperlinkColor1);
            return(colorScheme1);
        }
Пример #17
0
        // Generates content of themePart1.
        private void GenerateThemePart1Content(ThemePart themePart1)
        {
            A.Theme theme1 = new A.Theme() { Name = "Office Theme" };
            theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");

            A.ThemeElements themeElements1 = new A.ThemeElements();

            A.ColorScheme colorScheme1 = new A.ColorScheme() { Name = "Office" };

            A.Dark1Color dark1Color1 = new A.Dark1Color();
            A.SystemColor systemColor1 = new A.SystemColor() { Val = A.SystemColorValues.WindowText, LastColor = "000000" };

            dark1Color1.Append(systemColor1);

            A.Light1Color light1Color1 = new A.Light1Color();
            A.SystemColor systemColor2 = new A.SystemColor() { Val = A.SystemColorValues.Window, LastColor = "FFFFFF" };

            light1Color1.Append(systemColor2);

            A.Dark2Color dark2Color1 = new A.Dark2Color();
            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex() { Val = "44546A" };

            dark2Color1.Append(rgbColorModelHex1);

            A.Light2Color light2Color1 = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex() { Val = "E7E6E6" };

            light2Color1.Append(rgbColorModelHex2);

            A.Accent1Color accent1Color1 = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex() { Val = "5B9BD5" };

            accent1Color1.Append(rgbColorModelHex3);

            A.Accent2Color accent2Color1 = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex() { Val = "ED7D31" };

            accent2Color1.Append(rgbColorModelHex4);

            A.Accent3Color accent3Color1 = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex() { Val = "A5A5A5" };

            accent3Color1.Append(rgbColorModelHex5);

            A.Accent4Color accent4Color1 = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex() { Val = "FFC000" };

            accent4Color1.Append(rgbColorModelHex6);

            A.Accent5Color accent5Color1 = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex() { Val = "4472C4" };

            accent5Color1.Append(rgbColorModelHex7);

            A.Accent6Color accent6Color1 = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex() { Val = "70AD47" };

            accent6Color1.Append(rgbColorModelHex8);

            A.Hyperlink hyperlink1 = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex() { Val = "0563C1" };

            hyperlink1.Append(rgbColorModelHex9);

            A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex() { Val = "954F72" };

            followedHyperlinkColor1.Append(rgbColorModelHex10);

            colorScheme1.Append(dark1Color1);
            colorScheme1.Append(light1Color1);
            colorScheme1.Append(dark2Color1);
            colorScheme1.Append(light2Color1);
            colorScheme1.Append(accent1Color1);
            colorScheme1.Append(accent2Color1);
            colorScheme1.Append(accent3Color1);
            colorScheme1.Append(accent4Color1);
            colorScheme1.Append(accent5Color1);
            colorScheme1.Append(accent6Color1);
            colorScheme1.Append(hyperlink1);
            colorScheme1.Append(followedHyperlinkColor1);

            A.FontScheme fontScheme1 = new A.FontScheme() { Name = "Office" };

            A.MajorFont majorFont1 = new A.MajorFont();
            A.LatinFont latinFont1 = new A.LatinFont() { Typeface = "Calibri Light", Panose = "020F0302020204030204" };
            A.EastAsianFont eastAsianFont1 = new A.EastAsianFont() { Typeface = "" };
            A.ComplexScriptFont complexScriptFont1 = new A.ComplexScriptFont() { Typeface = "" };
            A.SupplementalFont supplementalFont1 = new A.SupplementalFont() { Script = "Jpan", Typeface = "MS ゴシック" };
            A.SupplementalFont supplementalFont2 = new A.SupplementalFont() { Script = "Hang", Typeface = "맑은 고딕" };
            A.SupplementalFont supplementalFont3 = new A.SupplementalFont() { Script = "Hans", Typeface = "宋体" };
            A.SupplementalFont supplementalFont4 = new A.SupplementalFont() { Script = "Hant", Typeface = "新細明體" };
            A.SupplementalFont supplementalFont5 = new A.SupplementalFont() { Script = "Arab", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont6 = new A.SupplementalFont() { Script = "Hebr", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont7 = new A.SupplementalFont() { Script = "Thai", Typeface = "Angsana New" };
            A.SupplementalFont supplementalFont8 = new A.SupplementalFont() { Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont9 = new A.SupplementalFont() { Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont10 = new A.SupplementalFont() { Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont11 = new A.SupplementalFont() { Script = "Khmr", Typeface = "MoolBoran" };
            A.SupplementalFont supplementalFont12 = new A.SupplementalFont() { Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont13 = new A.SupplementalFont() { Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont14 = new A.SupplementalFont() { Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont15 = new A.SupplementalFont() { Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont16 = new A.SupplementalFont() { Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont17 = new A.SupplementalFont() { Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont18 = new A.SupplementalFont() { Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont19 = new A.SupplementalFont() { Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont20 = new A.SupplementalFont() { Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont21 = new A.SupplementalFont() { Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont22 = new A.SupplementalFont() { Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont23 = new A.SupplementalFont() { Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont24 = new A.SupplementalFont() { Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont25 = new A.SupplementalFont() { Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont26 = new A.SupplementalFont() { Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont27 = new A.SupplementalFont() { Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont28 = new A.SupplementalFont() { Script = "Viet", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont29 = new A.SupplementalFont() { Script = "Uigh", Typeface = "Microsoft Uighur" };
            A.SupplementalFont supplementalFont30 = new A.SupplementalFont() { Script = "Geor", Typeface = "Sylfaen" };

            majorFont1.Append(latinFont1);
            majorFont1.Append(eastAsianFont1);
            majorFont1.Append(complexScriptFont1);
            majorFont1.Append(supplementalFont1);
            majorFont1.Append(supplementalFont2);
            majorFont1.Append(supplementalFont3);
            majorFont1.Append(supplementalFont4);
            majorFont1.Append(supplementalFont5);
            majorFont1.Append(supplementalFont6);
            majorFont1.Append(supplementalFont7);
            majorFont1.Append(supplementalFont8);
            majorFont1.Append(supplementalFont9);
            majorFont1.Append(supplementalFont10);
            majorFont1.Append(supplementalFont11);
            majorFont1.Append(supplementalFont12);
            majorFont1.Append(supplementalFont13);
            majorFont1.Append(supplementalFont14);
            majorFont1.Append(supplementalFont15);
            majorFont1.Append(supplementalFont16);
            majorFont1.Append(supplementalFont17);
            majorFont1.Append(supplementalFont18);
            majorFont1.Append(supplementalFont19);
            majorFont1.Append(supplementalFont20);
            majorFont1.Append(supplementalFont21);
            majorFont1.Append(supplementalFont22);
            majorFont1.Append(supplementalFont23);
            majorFont1.Append(supplementalFont24);
            majorFont1.Append(supplementalFont25);
            majorFont1.Append(supplementalFont26);
            majorFont1.Append(supplementalFont27);
            majorFont1.Append(supplementalFont28);
            majorFont1.Append(supplementalFont29);
            majorFont1.Append(supplementalFont30);

            A.MinorFont minorFont1 = new A.MinorFont();
            A.LatinFont latinFont2 = new A.LatinFont() { Typeface = "Calibri", Panose = "020F0502020204030204" };
            A.EastAsianFont eastAsianFont2 = new A.EastAsianFont() { Typeface = "" };
            A.ComplexScriptFont complexScriptFont2 = new A.ComplexScriptFont() { Typeface = "" };
            A.SupplementalFont supplementalFont31 = new A.SupplementalFont() { Script = "Jpan", Typeface = "MS 明朝" };
            A.SupplementalFont supplementalFont32 = new A.SupplementalFont() { Script = "Hang", Typeface = "맑은 고딕" };
            A.SupplementalFont supplementalFont33 = new A.SupplementalFont() { Script = "Hans", Typeface = "宋体" };
            A.SupplementalFont supplementalFont34 = new A.SupplementalFont() { Script = "Hant", Typeface = "新細明體" };
            A.SupplementalFont supplementalFont35 = new A.SupplementalFont() { Script = "Arab", Typeface = "Arial" };
            A.SupplementalFont supplementalFont36 = new A.SupplementalFont() { Script = "Hebr", Typeface = "Arial" };
            A.SupplementalFont supplementalFont37 = new A.SupplementalFont() { Script = "Thai", Typeface = "Cordia New" };
            A.SupplementalFont supplementalFont38 = new A.SupplementalFont() { Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont39 = new A.SupplementalFont() { Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont40 = new A.SupplementalFont() { Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont41 = new A.SupplementalFont() { Script = "Khmr", Typeface = "DaunPenh" };
            A.SupplementalFont supplementalFont42 = new A.SupplementalFont() { Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont43 = new A.SupplementalFont() { Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont44 = new A.SupplementalFont() { Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont45 = new A.SupplementalFont() { Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont46 = new A.SupplementalFont() { Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont47 = new A.SupplementalFont() { Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont48 = new A.SupplementalFont() { Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont49 = new A.SupplementalFont() { Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont50 = new A.SupplementalFont() { Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont51 = new A.SupplementalFont() { Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont52 = new A.SupplementalFont() { Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont53 = new A.SupplementalFont() { Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont54 = new A.SupplementalFont() { Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont55 = new A.SupplementalFont() { Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont56 = new A.SupplementalFont() { Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont57 = new A.SupplementalFont() { Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont58 = new A.SupplementalFont() { Script = "Viet", Typeface = "Arial" };
            A.SupplementalFont supplementalFont59 = new A.SupplementalFont() { Script = "Uigh", Typeface = "Microsoft Uighur" };
            A.SupplementalFont supplementalFont60 = new A.SupplementalFont() { Script = "Geor", Typeface = "Sylfaen" };

            minorFont1.Append(latinFont2);
            minorFont1.Append(eastAsianFont2);
            minorFont1.Append(complexScriptFont2);
            minorFont1.Append(supplementalFont31);
            minorFont1.Append(supplementalFont32);
            minorFont1.Append(supplementalFont33);
            minorFont1.Append(supplementalFont34);
            minorFont1.Append(supplementalFont35);
            minorFont1.Append(supplementalFont36);
            minorFont1.Append(supplementalFont37);
            minorFont1.Append(supplementalFont38);
            minorFont1.Append(supplementalFont39);
            minorFont1.Append(supplementalFont40);
            minorFont1.Append(supplementalFont41);
            minorFont1.Append(supplementalFont42);
            minorFont1.Append(supplementalFont43);
            minorFont1.Append(supplementalFont44);
            minorFont1.Append(supplementalFont45);
            minorFont1.Append(supplementalFont46);
            minorFont1.Append(supplementalFont47);
            minorFont1.Append(supplementalFont48);
            minorFont1.Append(supplementalFont49);
            minorFont1.Append(supplementalFont50);
            minorFont1.Append(supplementalFont51);
            minorFont1.Append(supplementalFont52);
            minorFont1.Append(supplementalFont53);
            minorFont1.Append(supplementalFont54);
            minorFont1.Append(supplementalFont55);
            minorFont1.Append(supplementalFont56);
            minorFont1.Append(supplementalFont57);
            minorFont1.Append(supplementalFont58);
            minorFont1.Append(supplementalFont59);
            minorFont1.Append(supplementalFont60);

            fontScheme1.Append(majorFont1);
            fontScheme1.Append(minorFont1);

            A.FormatScheme formatScheme1 = new A.FormatScheme() { Name = "Office" };

            A.FillStyleList fillStyleList1 = new A.FillStyleList();

            A.SolidFill solidFill1 = new A.SolidFill();
            A.SchemeColor schemeColor1 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill1.Append(schemeColor1);

            A.GradientFill gradientFill1 = new A.GradientFill() { RotateWithShape = true };

            A.GradientStopList gradientStopList1 = new A.GradientStopList();

            A.GradientStop gradientStop1 = new A.GradientStop() { Position = 0 };

            A.SchemeColor schemeColor2 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.LuminanceModulation luminanceModulation1 = new A.LuminanceModulation() { Val = 110000 };
            A.SaturationModulation saturationModulation1 = new A.SaturationModulation() { Val = 105000 };
            A.Tint tint1 = new A.Tint() { Val = 67000 };

            schemeColor2.Append(luminanceModulation1);
            schemeColor2.Append(saturationModulation1);
            schemeColor2.Append(tint1);

            gradientStop1.Append(schemeColor2);

            A.GradientStop gradientStop2 = new A.GradientStop() { Position = 50000 };

            A.SchemeColor schemeColor3 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.LuminanceModulation luminanceModulation2 = new A.LuminanceModulation() { Val = 105000 };
            A.SaturationModulation saturationModulation2 = new A.SaturationModulation() { Val = 103000 };
            A.Tint tint2 = new A.Tint() { Val = 73000 };

            schemeColor3.Append(luminanceModulation2);
            schemeColor3.Append(saturationModulation2);
            schemeColor3.Append(tint2);

            gradientStop2.Append(schemeColor3);

            A.GradientStop gradientStop3 = new A.GradientStop() { Position = 100000 };

            A.SchemeColor schemeColor4 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.LuminanceModulation luminanceModulation3 = new A.LuminanceModulation() { Val = 105000 };
            A.SaturationModulation saturationModulation3 = new A.SaturationModulation() { Val = 109000 };
            A.Tint tint3 = new A.Tint() { Val = 81000 };

            schemeColor4.Append(luminanceModulation3);
            schemeColor4.Append(saturationModulation3);
            schemeColor4.Append(tint3);

            gradientStop3.Append(schemeColor4);

            gradientStopList1.Append(gradientStop1);
            gradientStopList1.Append(gradientStop2);
            gradientStopList1.Append(gradientStop3);
            A.LinearGradientFill linearGradientFill1 = new A.LinearGradientFill() { Angle = 5400000, Scaled = false };

            gradientFill1.Append(gradientStopList1);
            gradientFill1.Append(linearGradientFill1);

            A.GradientFill gradientFill2 = new A.GradientFill() { RotateWithShape = true };

            A.GradientStopList gradientStopList2 = new A.GradientStopList();

            A.GradientStop gradientStop4 = new A.GradientStop() { Position = 0 };

            A.SchemeColor schemeColor5 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.SaturationModulation saturationModulation4 = new A.SaturationModulation() { Val = 103000 };
            A.LuminanceModulation luminanceModulation4 = new A.LuminanceModulation() { Val = 102000 };
            A.Tint tint4 = new A.Tint() { Val = 94000 };

            schemeColor5.Append(saturationModulation4);
            schemeColor5.Append(luminanceModulation4);
            schemeColor5.Append(tint4);

            gradientStop4.Append(schemeColor5);

            A.GradientStop gradientStop5 = new A.GradientStop() { Position = 50000 };

            A.SchemeColor schemeColor6 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.SaturationModulation saturationModulation5 = new A.SaturationModulation() { Val = 110000 };
            A.LuminanceModulation luminanceModulation5 = new A.LuminanceModulation() { Val = 100000 };
            A.Shade shade1 = new A.Shade() { Val = 100000 };

            schemeColor6.Append(saturationModulation5);
            schemeColor6.Append(luminanceModulation5);
            schemeColor6.Append(shade1);

            gradientStop5.Append(schemeColor6);

            A.GradientStop gradientStop6 = new A.GradientStop() { Position = 100000 };

            A.SchemeColor schemeColor7 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.LuminanceModulation luminanceModulation6 = new A.LuminanceModulation() { Val = 99000 };
            A.SaturationModulation saturationModulation6 = new A.SaturationModulation() { Val = 120000 };
            A.Shade shade2 = new A.Shade() { Val = 78000 };

            schemeColor7.Append(luminanceModulation6);
            schemeColor7.Append(saturationModulation6);
            schemeColor7.Append(shade2);

            gradientStop6.Append(schemeColor7);

            gradientStopList2.Append(gradientStop4);
            gradientStopList2.Append(gradientStop5);
            gradientStopList2.Append(gradientStop6);
            A.LinearGradientFill linearGradientFill2 = new A.LinearGradientFill() { Angle = 5400000, Scaled = false };

            gradientFill2.Append(gradientStopList2);
            gradientFill2.Append(linearGradientFill2);

            fillStyleList1.Append(solidFill1);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            A.LineStyleList lineStyleList1 = new A.LineStyleList();

            A.Outline outline1 = new A.Outline() { Width = 6350, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill2 = new A.SolidFill();
            A.SchemeColor schemeColor8 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill2.Append(schemeColor8);
            A.PresetDash presetDash1 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
            A.Miter miter1 = new A.Miter() { Limit = 800000 };

            outline1.Append(solidFill2);
            outline1.Append(presetDash1);
            outline1.Append(miter1);

            A.Outline outline2 = new A.Outline() { Width = 12700, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill3 = new A.SolidFill();
            A.SchemeColor schemeColor9 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill3.Append(schemeColor9);
            A.PresetDash presetDash2 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
            A.Miter miter2 = new A.Miter() { Limit = 800000 };

            outline2.Append(solidFill3);
            outline2.Append(presetDash2);
            outline2.Append(miter2);

            A.Outline outline3 = new A.Outline() { Width = 19050, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill4 = new A.SolidFill();
            A.SchemeColor schemeColor10 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill4.Append(schemeColor10);
            A.PresetDash presetDash3 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
            A.Miter miter3 = new A.Miter() { Limit = 800000 };

            outline3.Append(solidFill4);
            outline3.Append(presetDash3);
            outline3.Append(miter3);

            lineStyleList1.Append(outline1);
            lineStyleList1.Append(outline2);
            lineStyleList1.Append(outline3);

            A.EffectStyleList effectStyleList1 = new A.EffectStyleList();

            A.EffectStyle effectStyle1 = new A.EffectStyle();
            A.EffectList effectList1 = new A.EffectList();

            effectStyle1.Append(effectList1);

            A.EffectStyle effectStyle2 = new A.EffectStyle();
            A.EffectList effectList2 = new A.EffectList();

            effectStyle2.Append(effectList2);

            A.EffectStyle effectStyle3 = new A.EffectStyle();

            A.EffectList effectList3 = new A.EffectList();

            A.OuterShadow outerShadow1 = new A.OuterShadow() { BlurRadius = 57150L, Distance = 19050L, Direction = 5400000, Alignment = A.RectangleAlignmentValues.Center, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex() { Val = "000000" };
            A.Alpha alpha1 = new A.Alpha() { Val = 63000 };

            rgbColorModelHex11.Append(alpha1);

            outerShadow1.Append(rgbColorModelHex11);

            effectList3.Append(outerShadow1);

            effectStyle3.Append(effectList3);

            effectStyleList1.Append(effectStyle1);
            effectStyleList1.Append(effectStyle2);
            effectStyleList1.Append(effectStyle3);

            A.BackgroundFillStyleList backgroundFillStyleList1 = new A.BackgroundFillStyleList();

            A.SolidFill solidFill5 = new A.SolidFill();
            A.SchemeColor schemeColor11 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };

            solidFill5.Append(schemeColor11);

            A.SolidFill solidFill6 = new A.SolidFill();

            A.SchemeColor schemeColor12 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Tint tint5 = new A.Tint() { Val = 95000 };
            A.SaturationModulation saturationModulation7 = new A.SaturationModulation() { Val = 170000 };

            schemeColor12.Append(tint5);
            schemeColor12.Append(saturationModulation7);

            solidFill6.Append(schemeColor12);

            A.GradientFill gradientFill3 = new A.GradientFill() { RotateWithShape = true };

            A.GradientStopList gradientStopList3 = new A.GradientStopList();

            A.GradientStop gradientStop7 = new A.GradientStop() { Position = 0 };

            A.SchemeColor schemeColor13 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Tint tint6 = new A.Tint() { Val = 93000 };
            A.SaturationModulation saturationModulation8 = new A.SaturationModulation() { Val = 150000 };
            A.Shade shade3 = new A.Shade() { Val = 98000 };
            A.LuminanceModulation luminanceModulation7 = new A.LuminanceModulation() { Val = 102000 };

            schemeColor13.Append(tint6);
            schemeColor13.Append(saturationModulation8);
            schemeColor13.Append(shade3);
            schemeColor13.Append(luminanceModulation7);

            gradientStop7.Append(schemeColor13);

            A.GradientStop gradientStop8 = new A.GradientStop() { Position = 50000 };

            A.SchemeColor schemeColor14 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Tint tint7 = new A.Tint() { Val = 98000 };
            A.SaturationModulation saturationModulation9 = new A.SaturationModulation() { Val = 130000 };
            A.Shade shade4 = new A.Shade() { Val = 90000 };
            A.LuminanceModulation luminanceModulation8 = new A.LuminanceModulation() { Val = 103000 };

            schemeColor14.Append(tint7);
            schemeColor14.Append(saturationModulation9);
            schemeColor14.Append(shade4);
            schemeColor14.Append(luminanceModulation8);

            gradientStop8.Append(schemeColor14);

            A.GradientStop gradientStop9 = new A.GradientStop() { Position = 100000 };

            A.SchemeColor schemeColor15 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
            A.Shade shade5 = new A.Shade() { Val = 63000 };
            A.SaturationModulation saturationModulation10 = new A.SaturationModulation() { Val = 120000 };

            schemeColor15.Append(shade5);
            schemeColor15.Append(saturationModulation10);

            gradientStop9.Append(schemeColor15);

            gradientStopList3.Append(gradientStop7);
            gradientStopList3.Append(gradientStop8);
            gradientStopList3.Append(gradientStop9);
            A.LinearGradientFill linearGradientFill3 = new A.LinearGradientFill() { Angle = 5400000, Scaled = false };

            gradientFill3.Append(gradientStopList3);
            gradientFill3.Append(linearGradientFill3);

            backgroundFillStyleList1.Append(solidFill5);
            backgroundFillStyleList1.Append(solidFill6);
            backgroundFillStyleList1.Append(gradientFill3);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme1);
            themeElements1.Append(formatScheme1);
            A.ObjectDefaults objectDefaults1 = new A.ObjectDefaults();
            A.ExtraColorSchemeList extraColorSchemeList1 = new A.ExtraColorSchemeList();

            A.ExtensionList extensionList1 = new A.ExtensionList();

            A.Extension extension1 = new A.Extension() { Uri = "{05A4C25C-085E-4340-85A3-A5531E510DB2}" };

            OpenXmlUnknownElement openXmlUnknownElement3 = OpenXmlUnknownElement.CreateOpenXmlUnknownElement("<thm15:themeFamily xmlns:thm15=\"http://schemas.microsoft.com/office/thememl/2012/main\" name=\"Office Theme\" id=\"{62F939B6-93AF-4DB8-9C6B-D6C7DFDC589F}\" vid=\"{4A3C46E8-61CC-4603-A589-7422A47A8E4A}\" />");

            extension1.Append(openXmlUnknownElement3);

            extensionList1.Append(extension1);

            theme1.Append(themeElements1);
            theme1.Append(objectDefaults1);
            theme1.Append(extraColorSchemeList1);
            theme1.Append(extensionList1);

            themePart1.Theme = theme1;
        }
Пример #18
0
        // Generates content of footerPart1.
        private void GenerateFooterPart1Content(FooterPart footerPart1)
        {
            Footer footer1 = new Footer() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "w14 w15 w16se wp14" } };
            footer1.AddNamespaceDeclaration("wpc", "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas");
            footer1.AddNamespaceDeclaration("cx", "http://schemas.microsoft.com/office/drawing/2014/chartex");
            footer1.AddNamespaceDeclaration("cx1", "http://schemas.microsoft.com/office/drawing/2015/9/8/chartex");
            footer1.AddNamespaceDeclaration("cx2", "http://schemas.microsoft.com/office/drawing/2015/10/21/chartex");
            footer1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            footer1.AddNamespaceDeclaration("o", "urn:schemas-microsoft-com:office:office");
            footer1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            footer1.AddNamespaceDeclaration("m", "http://schemas.openxmlformats.org/officeDocument/2006/math");
            footer1.AddNamespaceDeclaration("v", "urn:schemas-microsoft-com:vml");
            footer1.AddNamespaceDeclaration("wp14", "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing");
            footer1.AddNamespaceDeclaration("wp", "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing");
            footer1.AddNamespaceDeclaration("w10", "urn:schemas-microsoft-com:office:word");
            footer1.AddNamespaceDeclaration("w", "http://schemas.openxmlformats.org/wordprocessingml/2006/main");
            footer1.AddNamespaceDeclaration("w14", "http://schemas.microsoft.com/office/word/2010/wordml");
            footer1.AddNamespaceDeclaration("w15", "http://schemas.microsoft.com/office/word/2012/wordml");
            footer1.AddNamespaceDeclaration("w16se", "http://schemas.microsoft.com/office/word/2015/wordml/symex");
            footer1.AddNamespaceDeclaration("wpg", "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup");
            footer1.AddNamespaceDeclaration("wpi", "http://schemas.microsoft.com/office/word/2010/wordprocessingInk");
            footer1.AddNamespaceDeclaration("wne", "http://schemas.microsoft.com/office/word/2006/wordml");
            footer1.AddNamespaceDeclaration("wps", "http://schemas.microsoft.com/office/word/2010/wordprocessingShape");

            SdtBlock sdtBlock1 = new SdtBlock();

            SdtProperties sdtProperties50 = new SdtProperties();
            SdtId sdtId50 = new SdtId() { Val = -1161223993 };

            SdtContentDocPartObject sdtContentDocPartObject1 = new SdtContentDocPartObject();
            DocPartGallery docPartGallery1 = new DocPartGallery() { Val = "Page Numbers (Bottom of Page)" };
            DocPartUnique docPartUnique1 = new DocPartUnique();

            sdtContentDocPartObject1.Append(docPartGallery1);
            sdtContentDocPartObject1.Append(docPartUnique1);

            sdtProperties50.Append(sdtId50);
            sdtProperties50.Append(sdtContentDocPartObject1);
            SdtEndCharProperties sdtEndCharProperties50 = new SdtEndCharProperties();

            SdtContentBlock sdtContentBlock1 = new SdtContentBlock();

            Paragraph paragraph369 = new Paragraph() { RsidParagraphAddition = "0094109A", RsidParagraphProperties = "00697199", RsidRunAdditionDefault = "00A563A2", ParagraphId = "3CF2B95B", TextId = "59B2ED64" };

            ParagraphProperties paragraphProperties366 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId26 = new ParagraphStyleId() { Val = "Footer" };

            paragraphProperties366.Append(paragraphStyleId26);

            Hyperlink hyperlink1 = new Hyperlink() { History = true, Id = "rId1" };

            Run run738 = new Run() { RsidRunProperties = "00697199", RsidRunAddition = "00697199" };

            RunProperties runProperties780 = new RunProperties();
            FontSize fontSize1048 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript1034 = new FontSizeComplexScript() { Val = "20" };

            runProperties780.Append(fontSize1048);
            runProperties780.Append(fontSizeComplexScript1034);
            Text text700 = new Text();
            text700.Text = "BJC IS Tech Management Standards";

            run738.Append(runProperties780);
            run738.Append(text700);

            hyperlink1.Append(run738);

            Run run739 = new Run() { RsidRunProperties = "00697199", RsidRunAddition = "00697199" };

            RunProperties runProperties781 = new RunProperties();
            FontSize fontSize1049 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript1035 = new FontSizeComplexScript() { Val = "20" };

            runProperties781.Append(fontSize1049);
            runProperties781.Append(fontSizeComplexScript1035);
            Text text701 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text701.Text = "  can be found at: ";

            run739.Append(runProperties781);
            run739.Append(text701);

            Hyperlink hyperlink2 = new Hyperlink() { History = true, Id = "rId2" };

            Run run740 = new Run() { RsidRunProperties = "00697199", RsidRunAddition = "00697199" };

            RunProperties runProperties782 = new RunProperties();
            RunStyle runStyle2 = new RunStyle() { Val = "Hyperlink" };
            FontSize fontSize1050 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript1036 = new FontSizeComplexScript() { Val = "20" };

            runProperties782.Append(runStyle2);
            runProperties782.Append(fontSize1050);
            runProperties782.Append(fontSizeComplexScript1036);
            Text text702 = new Text();
            text702.Text = "http://bjcis/sites/techservices/Informational%20Documents/Forms/AllItems.aspx";

            run740.Append(runProperties782);
            run740.Append(text702);

            hyperlink2.Append(run740);

            Run run741 = new Run() { RsidRunProperties = "00697199", RsidRunAddition = "00697199" };

            RunProperties runProperties783 = new RunProperties();
            FontSize fontSize1051 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript1037 = new FontSizeComplexScript() { Val = "20" };

            runProperties783.Append(fontSize1051);
            runProperties783.Append(fontSizeComplexScript1037);
            TabChar tabChar45 = new TabChar();

            run741.Append(runProperties783);
            run741.Append(tabChar45);

            Run run742 = new Run() { RsidRunAddition = "00697199" };

            RunProperties runProperties784 = new RunProperties();
            FontSize fontSize1052 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript1038 = new FontSizeComplexScript() { Val = "20" };

            runProperties784.Append(fontSize1052);
            runProperties784.Append(fontSizeComplexScript1038);
            Text text703 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text703.Text = "       ";

            run742.Append(runProperties784);
            run742.Append(text703);

            SdtRun sdtRun50 = new SdtRun();

            SdtProperties sdtProperties51 = new SdtProperties();

            RunProperties runProperties785 = new RunProperties();
            FontSize fontSize1053 = new FontSize() { Val = "20" };
            FontSizeComplexScript fontSizeComplexScript1039 = new FontSizeComplexScript() { Val = "20" };

            runProperties785.Append(fontSize1053);
            runProperties785.Append(fontSizeComplexScript1039);
            SdtId sdtId51 = new SdtId() { Val = 860082579 };

            SdtContentDocPartObject sdtContentDocPartObject2 = new SdtContentDocPartObject();
            DocPartGallery docPartGallery2 = new DocPartGallery() { Val = "Page Numbers (Top of Page)" };
            DocPartUnique docPartUnique2 = new DocPartUnique();

            sdtContentDocPartObject2.Append(docPartGallery2);
            sdtContentDocPartObject2.Append(docPartUnique2);

            sdtProperties51.Append(runProperties785);
            sdtProperties51.Append(sdtId51);
            sdtProperties51.Append(sdtContentDocPartObject2);

            SdtEndCharProperties sdtEndCharProperties51 = new SdtEndCharProperties();

            RunProperties runProperties786 = new RunProperties();
            FontSize fontSize1054 = new FontSize() { Val = "24" };
            FontSizeComplexScript fontSizeComplexScript1040 = new FontSizeComplexScript() { Val = "24" };

            runProperties786.Append(fontSize1054);
            runProperties786.Append(fontSizeComplexScript1040);

            sdtEndCharProperties51.Append(runProperties786);

            SdtContentRun sdtContentRun50 = new SdtContentRun();

            Run run743 = new Run() { RsidRunAddition = "0094109A" };
            Text text704 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text704.Text = "Page ";

            run743.Append(text704);

            Run run744 = new Run() { RsidRunAddition = "0094109A" };

            RunProperties runProperties787 = new RunProperties();
            Bold bold109 = new Bold();
            BoldComplexScript boldComplexScript4 = new BoldComplexScript();

            runProperties787.Append(bold109);
            runProperties787.Append(boldComplexScript4);
            FieldChar fieldChar1 = new FieldChar() { FieldCharType = FieldCharValues.Begin };

            run744.Append(runProperties787);
            run744.Append(fieldChar1);

            Run run745 = new Run() { RsidRunAddition = "0094109A" };

            RunProperties runProperties788 = new RunProperties();
            Bold bold110 = new Bold();
            BoldComplexScript boldComplexScript5 = new BoldComplexScript();

            runProperties788.Append(bold110);
            runProperties788.Append(boldComplexScript5);
            FieldCode fieldCode1 = new FieldCode() { Space = SpaceProcessingModeValues.Preserve };
            fieldCode1.Text = " PAGE ";

            run745.Append(runProperties788);
            run745.Append(fieldCode1);

            Run run746 = new Run() { RsidRunAddition = "0094109A" };

            RunProperties runProperties789 = new RunProperties();
            Bold bold111 = new Bold();
            BoldComplexScript boldComplexScript6 = new BoldComplexScript();

            runProperties789.Append(bold111);
            runProperties789.Append(boldComplexScript6);
            FieldChar fieldChar2 = new FieldChar() { FieldCharType = FieldCharValues.Separate };

            run746.Append(runProperties789);
            run746.Append(fieldChar2);

            Run run747 = new Run() { RsidRunAddition = "007F6223" };

            RunProperties runProperties790 = new RunProperties();
            Bold bold112 = new Bold();
            BoldComplexScript boldComplexScript7 = new BoldComplexScript();
            NoProof noProof2 = new NoProof();

            runProperties790.Append(bold112);
            runProperties790.Append(boldComplexScript7);
            runProperties790.Append(noProof2);
            Text text705 = new Text();
            text705.Text = "1";

            run747.Append(runProperties790);
            run747.Append(text705);

            Run run748 = new Run() { RsidRunAddition = "0094109A" };

            RunProperties runProperties791 = new RunProperties();
            Bold bold113 = new Bold();
            BoldComplexScript boldComplexScript8 = new BoldComplexScript();

            runProperties791.Append(bold113);
            runProperties791.Append(boldComplexScript8);
            FieldChar fieldChar3 = new FieldChar() { FieldCharType = FieldCharValues.End };

            run748.Append(runProperties791);
            run748.Append(fieldChar3);

            Run run749 = new Run() { RsidRunAddition = "0094109A" };
            Text text706 = new Text() { Space = SpaceProcessingModeValues.Preserve };
            text706.Text = " of ";

            run749.Append(text706);

            Run run750 = new Run() { RsidRunAddition = "0094109A" };

            RunProperties runProperties792 = new RunProperties();
            Bold bold114 = new Bold();
            BoldComplexScript boldComplexScript9 = new BoldComplexScript();

            runProperties792.Append(bold114);
            runProperties792.Append(boldComplexScript9);
            FieldChar fieldChar4 = new FieldChar() { FieldCharType = FieldCharValues.Begin };

            run750.Append(runProperties792);
            run750.Append(fieldChar4);

            Run run751 = new Run() { RsidRunAddition = "0094109A" };

            RunProperties runProperties793 = new RunProperties();
            Bold bold115 = new Bold();
            BoldComplexScript boldComplexScript10 = new BoldComplexScript();

            runProperties793.Append(bold115);
            runProperties793.Append(boldComplexScript10);
            FieldCode fieldCode2 = new FieldCode() { Space = SpaceProcessingModeValues.Preserve };
            fieldCode2.Text = " NUMPAGES  ";

            run751.Append(runProperties793);
            run751.Append(fieldCode2);

            Run run752 = new Run() { RsidRunAddition = "0094109A" };

            RunProperties runProperties794 = new RunProperties();
            Bold bold116 = new Bold();
            BoldComplexScript boldComplexScript11 = new BoldComplexScript();

            runProperties794.Append(bold116);
            runProperties794.Append(boldComplexScript11);
            FieldChar fieldChar5 = new FieldChar() { FieldCharType = FieldCharValues.Separate };

            run752.Append(runProperties794);
            run752.Append(fieldChar5);

            Run run753 = new Run() { RsidRunAddition = "007F6223" };

            RunProperties runProperties795 = new RunProperties();
            Bold bold117 = new Bold();
            BoldComplexScript boldComplexScript12 = new BoldComplexScript();
            NoProof noProof3 = new NoProof();

            runProperties795.Append(bold117);
            runProperties795.Append(boldComplexScript12);
            runProperties795.Append(noProof3);
            Text text707 = new Text();
            text707.Text = "8";

            run753.Append(runProperties795);
            run753.Append(text707);

            Run run754 = new Run() { RsidRunAddition = "0094109A" };

            RunProperties runProperties796 = new RunProperties();
            Bold bold118 = new Bold();
            BoldComplexScript boldComplexScript13 = new BoldComplexScript();

            runProperties796.Append(bold118);
            runProperties796.Append(boldComplexScript13);
            FieldChar fieldChar6 = new FieldChar() { FieldCharType = FieldCharValues.End };

            run754.Append(runProperties796);
            run754.Append(fieldChar6);

            sdtContentRun50.Append(run743);
            sdtContentRun50.Append(run744);
            sdtContentRun50.Append(run745);
            sdtContentRun50.Append(run746);
            sdtContentRun50.Append(run747);
            sdtContentRun50.Append(run748);
            sdtContentRun50.Append(run749);
            sdtContentRun50.Append(run750);
            sdtContentRun50.Append(run751);
            sdtContentRun50.Append(run752);
            sdtContentRun50.Append(run753);
            sdtContentRun50.Append(run754);

            sdtRun50.Append(sdtProperties51);
            sdtRun50.Append(sdtEndCharProperties51);
            sdtRun50.Append(sdtContentRun50);

            paragraph369.Append(paragraphProperties366);
            paragraph369.Append(hyperlink1);
            paragraph369.Append(run739);
            paragraph369.Append(hyperlink2);
            paragraph369.Append(run741);
            paragraph369.Append(run742);
            paragraph369.Append(sdtRun50);

            sdtContentBlock1.Append(paragraph369);

            sdtBlock1.Append(sdtProperties50);
            sdtBlock1.Append(sdtEndCharProperties50);
            sdtBlock1.Append(sdtContentBlock1);

            Paragraph paragraph370 = new Paragraph() { RsidParagraphAddition = "0094109A", RsidParagraphProperties = "000F55C6", RsidRunAdditionDefault = "0094109A", ParagraphId = "0AAC1AD4", TextId = "7EFCA27E" };

            ParagraphProperties paragraphProperties367 = new ParagraphProperties();
            ParagraphStyleId paragraphStyleId27 = new ParagraphStyleId() { Val = "Footer" };
            Justification justification77 = new Justification() { Val = JustificationValues.Center };

            paragraphProperties367.Append(paragraphStyleId27);
            paragraphProperties367.Append(justification77);

            paragraph370.Append(paragraphProperties367);

            footer1.Append(sdtBlock1);
            footer1.Append(paragraph370);

            footerPart1.Footer = footer1;
        }
Пример #19
0
        // Generates content of themePart1.
        private void GenerateThemePart1Content(ThemePart themePart1)
        {
            A.Theme theme1 = new A.Theme(){ Name = "Office Theme", ThemeId = "{62F939B6-93AF-4DB8-9C6B-D6C7DFDC589F}", MCAttributes = new MarkupCompatibilityAttributes(){ Ignorable = "thm15" }  };
            theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
            theme1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            theme1.AddNamespaceDeclaration("thm15", "http://schemas.microsoft.com/office/thememl/2012/main");

            A.ThemeElements themeElements1 = new A.ThemeElements();

            A.ColorScheme colorScheme1 = new A.ColorScheme(){ Name = "Office" };

            A.Dark1Color dark1Color1 = new A.Dark1Color();
            A.SystemColor systemColor1 = new A.SystemColor(){ Val = A.SystemColorValues.WindowText, LastColor = "000000" };

            dark1Color1.Append(systemColor1);

            A.Light1Color light1Color1 = new A.Light1Color();
            A.SystemColor systemColor2 = new A.SystemColor(){ Val = A.SystemColorValues.Window, LastColor = "FFFFFF" };

            light1Color1.Append(systemColor2);

            A.Dark2Color dark2Color1 = new A.Dark2Color();
            A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex(){ Val = "6E747A" };

            dark2Color1.Append(rgbColorModelHex1);

            A.Light2Color light2Color1 = new A.Light2Color();
            A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex(){ Val = "E7E6E6" };

            light2Color1.Append(rgbColorModelHex2);

            A.Accent1Color accent1Color1 = new A.Accent1Color();
            A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex(){ Val = "5B9BD5" };

            accent1Color1.Append(rgbColorModelHex3);

            A.Accent2Color accent2Color1 = new A.Accent2Color();
            A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex(){ Val = "ED7D31" };

            accent2Color1.Append(rgbColorModelHex4);

            A.Accent3Color accent3Color1 = new A.Accent3Color();
            A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex(){ Val = "A5A5A5" };

            accent3Color1.Append(rgbColorModelHex5);

            A.Accent4Color accent4Color1 = new A.Accent4Color();
            A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex(){ Val = "FFC000" };

            accent4Color1.Append(rgbColorModelHex6);

            A.Accent5Color accent5Color1 = new A.Accent5Color();
            A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex(){ Val = "4472C4" };

            accent5Color1.Append(rgbColorModelHex7);

            A.Accent6Color accent6Color1 = new A.Accent6Color();
            A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex(){ Val = "70AD47" };

            accent6Color1.Append(rgbColorModelHex8);

            A.Hyperlink hyperlink1 = new A.Hyperlink();
            A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex(){ Val = "085296" };

            hyperlink1.Append(rgbColorModelHex9);

            A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
            A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex(){ Val = "993366" };

            followedHyperlinkColor1.Append(rgbColorModelHex10);

            colorScheme1.Append(dark1Color1);
            colorScheme1.Append(light1Color1);
            colorScheme1.Append(dark2Color1);
            colorScheme1.Append(light2Color1);
            colorScheme1.Append(accent1Color1);
            colorScheme1.Append(accent2Color1);
            colorScheme1.Append(accent3Color1);
            colorScheme1.Append(accent4Color1);
            colorScheme1.Append(accent5Color1);
            colorScheme1.Append(accent6Color1);
            colorScheme1.Append(hyperlink1);
            colorScheme1.Append(followedHyperlinkColor1);

            A.FontScheme fontScheme1 = new A.FontScheme(){ Name = "Office" };

            A.MajorFont majorFont1 = new A.MajorFont();
            A.LatinFont latinFont1 = new A.LatinFont(){ Typeface = "Arial" };
            A.EastAsianFont eastAsianFont1 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont1 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont1 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "MS ゴシック" };
            A.SupplementalFont supplementalFont2 = new A.SupplementalFont(){ Script = "Hang", Typeface = "맑은 고딕" };
            A.SupplementalFont supplementalFont3 = new A.SupplementalFont(){ Script = "Hans", Typeface = "宋体" };
            A.SupplementalFont supplementalFont4 = new A.SupplementalFont(){ Script = "Hant", Typeface = "新細明體" };
            A.SupplementalFont supplementalFont5 = new A.SupplementalFont(){ Script = "Arab", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont6 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont7 = new A.SupplementalFont(){ Script = "Thai", Typeface = "Angsana New" };
            A.SupplementalFont supplementalFont8 = new A.SupplementalFont(){ Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont9 = new A.SupplementalFont(){ Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont10 = new A.SupplementalFont(){ Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont11 = new A.SupplementalFont(){ Script = "Khmr", Typeface = "MoolBoran" };
            A.SupplementalFont supplementalFont12 = new A.SupplementalFont(){ Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont13 = new A.SupplementalFont(){ Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont14 = new A.SupplementalFont(){ Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont15 = new A.SupplementalFont(){ Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont16 = new A.SupplementalFont(){ Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont17 = new A.SupplementalFont(){ Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont18 = new A.SupplementalFont(){ Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont19 = new A.SupplementalFont(){ Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont20 = new A.SupplementalFont(){ Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont21 = new A.SupplementalFont(){ Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont22 = new A.SupplementalFont(){ Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont23 = new A.SupplementalFont(){ Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont24 = new A.SupplementalFont(){ Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont25 = new A.SupplementalFont(){ Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont26 = new A.SupplementalFont(){ Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont27 = new A.SupplementalFont(){ Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont28 = new A.SupplementalFont(){ Script = "Viet", Typeface = "Times New Roman" };
            A.SupplementalFont supplementalFont29 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };
            A.SupplementalFont supplementalFont30 = new A.SupplementalFont(){ Script = "Geor", Typeface = "Sylfaen" };

            majorFont1.Append(latinFont1);
            majorFont1.Append(eastAsianFont1);
            majorFont1.Append(complexScriptFont1);
            majorFont1.Append(supplementalFont1);
            majorFont1.Append(supplementalFont2);
            majorFont1.Append(supplementalFont3);
            majorFont1.Append(supplementalFont4);
            majorFont1.Append(supplementalFont5);
            majorFont1.Append(supplementalFont6);
            majorFont1.Append(supplementalFont7);
            majorFont1.Append(supplementalFont8);
            majorFont1.Append(supplementalFont9);
            majorFont1.Append(supplementalFont10);
            majorFont1.Append(supplementalFont11);
            majorFont1.Append(supplementalFont12);
            majorFont1.Append(supplementalFont13);
            majorFont1.Append(supplementalFont14);
            majorFont1.Append(supplementalFont15);
            majorFont1.Append(supplementalFont16);
            majorFont1.Append(supplementalFont17);
            majorFont1.Append(supplementalFont18);
            majorFont1.Append(supplementalFont19);
            majorFont1.Append(supplementalFont20);
            majorFont1.Append(supplementalFont21);
            majorFont1.Append(supplementalFont22);
            majorFont1.Append(supplementalFont23);
            majorFont1.Append(supplementalFont24);
            majorFont1.Append(supplementalFont25);
            majorFont1.Append(supplementalFont26);
            majorFont1.Append(supplementalFont27);
            majorFont1.Append(supplementalFont28);
            majorFont1.Append(supplementalFont29);
            majorFont1.Append(supplementalFont30);

            A.MinorFont minorFont1 = new A.MinorFont();
            A.LatinFont latinFont2 = new A.LatinFont(){ Typeface = "Century" };
            A.EastAsianFont eastAsianFont2 = new A.EastAsianFont(){ Typeface = "" };
            A.ComplexScriptFont complexScriptFont2 = new A.ComplexScriptFont(){ Typeface = "" };
            A.SupplementalFont supplementalFont31 = new A.SupplementalFont(){ Script = "Jpan", Typeface = "MS 明朝" };
            A.SupplementalFont supplementalFont32 = new A.SupplementalFont(){ Script = "Hang", Typeface = "맑은 고딕" };
            A.SupplementalFont supplementalFont33 = new A.SupplementalFont(){ Script = "Hans", Typeface = "宋体" };
            A.SupplementalFont supplementalFont34 = new A.SupplementalFont(){ Script = "Hant", Typeface = "新細明體" };
            A.SupplementalFont supplementalFont35 = new A.SupplementalFont(){ Script = "Arab", Typeface = "Arial" };
            A.SupplementalFont supplementalFont36 = new A.SupplementalFont(){ Script = "Hebr", Typeface = "Arial" };
            A.SupplementalFont supplementalFont37 = new A.SupplementalFont(){ Script = "Thai", Typeface = "Cordia New" };
            A.SupplementalFont supplementalFont38 = new A.SupplementalFont(){ Script = "Ethi", Typeface = "Nyala" };
            A.SupplementalFont supplementalFont39 = new A.SupplementalFont(){ Script = "Beng", Typeface = "Vrinda" };
            A.SupplementalFont supplementalFont40 = new A.SupplementalFont(){ Script = "Gujr", Typeface = "Shruti" };
            A.SupplementalFont supplementalFont41 = new A.SupplementalFont(){ Script = "Khmr", Typeface = "DaunPenh" };
            A.SupplementalFont supplementalFont42 = new A.SupplementalFont(){ Script = "Knda", Typeface = "Tunga" };
            A.SupplementalFont supplementalFont43 = new A.SupplementalFont(){ Script = "Guru", Typeface = "Raavi" };
            A.SupplementalFont supplementalFont44 = new A.SupplementalFont(){ Script = "Cans", Typeface = "Euphemia" };
            A.SupplementalFont supplementalFont45 = new A.SupplementalFont(){ Script = "Cher", Typeface = "Plantagenet Cherokee" };
            A.SupplementalFont supplementalFont46 = new A.SupplementalFont(){ Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
            A.SupplementalFont supplementalFont47 = new A.SupplementalFont(){ Script = "Tibt", Typeface = "Microsoft Himalaya" };
            A.SupplementalFont supplementalFont48 = new A.SupplementalFont(){ Script = "Thaa", Typeface = "MV Boli" };
            A.SupplementalFont supplementalFont49 = new A.SupplementalFont(){ Script = "Deva", Typeface = "Mangal" };
            A.SupplementalFont supplementalFont50 = new A.SupplementalFont(){ Script = "Telu", Typeface = "Gautami" };
            A.SupplementalFont supplementalFont51 = new A.SupplementalFont(){ Script = "Taml", Typeface = "Latha" };
            A.SupplementalFont supplementalFont52 = new A.SupplementalFont(){ Script = "Syrc", Typeface = "Estrangelo Edessa" };
            A.SupplementalFont supplementalFont53 = new A.SupplementalFont(){ Script = "Orya", Typeface = "Kalinga" };
            A.SupplementalFont supplementalFont54 = new A.SupplementalFont(){ Script = "Mlym", Typeface = "Kartika" };
            A.SupplementalFont supplementalFont55 = new A.SupplementalFont(){ Script = "Laoo", Typeface = "DokChampa" };
            A.SupplementalFont supplementalFont56 = new A.SupplementalFont(){ Script = "Sinh", Typeface = "Iskoola Pota" };
            A.SupplementalFont supplementalFont57 = new A.SupplementalFont(){ Script = "Mong", Typeface = "Mongolian Baiti" };
            A.SupplementalFont supplementalFont58 = new A.SupplementalFont(){ Script = "Viet", Typeface = "Arial" };
            A.SupplementalFont supplementalFont59 = new A.SupplementalFont(){ Script = "Uigh", Typeface = "Microsoft Uighur" };
            A.SupplementalFont supplementalFont60 = new A.SupplementalFont(){ Script = "Geor", Typeface = "Sylfaen" };

            minorFont1.Append(latinFont2);
            minorFont1.Append(eastAsianFont2);
            minorFont1.Append(complexScriptFont2);
            minorFont1.Append(supplementalFont31);
            minorFont1.Append(supplementalFont32);
            minorFont1.Append(supplementalFont33);
            minorFont1.Append(supplementalFont34);
            minorFont1.Append(supplementalFont35);
            minorFont1.Append(supplementalFont36);
            minorFont1.Append(supplementalFont37);
            minorFont1.Append(supplementalFont38);
            minorFont1.Append(supplementalFont39);
            minorFont1.Append(supplementalFont40);
            minorFont1.Append(supplementalFont41);
            minorFont1.Append(supplementalFont42);
            minorFont1.Append(supplementalFont43);
            minorFont1.Append(supplementalFont44);
            minorFont1.Append(supplementalFont45);
            minorFont1.Append(supplementalFont46);
            minorFont1.Append(supplementalFont47);
            minorFont1.Append(supplementalFont48);
            minorFont1.Append(supplementalFont49);
            minorFont1.Append(supplementalFont50);
            minorFont1.Append(supplementalFont51);
            minorFont1.Append(supplementalFont52);
            minorFont1.Append(supplementalFont53);
            minorFont1.Append(supplementalFont54);
            minorFont1.Append(supplementalFont55);
            minorFont1.Append(supplementalFont56);
            minorFont1.Append(supplementalFont57);
            minorFont1.Append(supplementalFont58);
            minorFont1.Append(supplementalFont59);
            minorFont1.Append(supplementalFont60);

            fontScheme1.Append(majorFont1);
            fontScheme1.Append(minorFont1);

            A.FormatScheme formatScheme1 = new A.FormatScheme(){ Name = "Office" };

            A.FillStyleList fillStyleList1 = new A.FillStyleList();

            A.SolidFill solidFill1 = new A.SolidFill();
            A.SchemeColor schemeColor1 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill1.Append(schemeColor1);

            A.GradientFill gradientFill1 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList1 = new A.GradientStopList();

            A.GradientStop gradientStop1 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor2 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.LuminanceModulation luminanceModulation1 = new A.LuminanceModulation(){ Val = 157000 };
            A.SaturationModulation saturationModulation1 = new A.SaturationModulation(){ Val = 101000 };

            schemeColor2.Append(luminanceModulation1);
            schemeColor2.Append(saturationModulation1);

            gradientStop1.Append(schemeColor2);

            A.GradientStop gradientStop2 = new A.GradientStop(){ Position = 50000 };

            A.SchemeColor schemeColor3 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.LuminanceModulation luminanceModulation2 = new A.LuminanceModulation(){ Val = 137000 };
            A.SaturationModulation saturationModulation2 = new A.SaturationModulation(){ Val = 103000 };

            schemeColor3.Append(luminanceModulation2);
            schemeColor3.Append(saturationModulation2);

            gradientStop2.Append(schemeColor3);

            A.GradientStop gradientStop3 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor4 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.LuminanceModulation luminanceModulation3 = new A.LuminanceModulation(){ Val = 115000 };
            A.SaturationModulation saturationModulation3 = new A.SaturationModulation(){ Val = 109000 };

            schemeColor4.Append(luminanceModulation3);
            schemeColor4.Append(saturationModulation3);

            gradientStop3.Append(schemeColor4);

            gradientStopList1.Append(gradientStop1);
            gradientStopList1.Append(gradientStop2);
            gradientStopList1.Append(gradientStop3);
            A.LinearGradientFill linearGradientFill1 = new A.LinearGradientFill(){ Angle = 5400000, Scaled = false };

            gradientFill1.Append(gradientStopList1);
            gradientFill1.Append(linearGradientFill1);

            A.GradientFill gradientFill2 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList2 = new A.GradientStopList();

            A.GradientStop gradientStop4 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor5 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.SaturationModulation saturationModulation4 = new A.SaturationModulation(){ Val = 103000 };
            A.LuminanceModulation luminanceModulation4 = new A.LuminanceModulation(){ Val = 118000 };

            schemeColor5.Append(saturationModulation4);
            schemeColor5.Append(luminanceModulation4);

            gradientStop4.Append(schemeColor5);

            A.GradientStop gradientStop5 = new A.GradientStop(){ Position = 50000 };

            A.SchemeColor schemeColor6 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.SaturationModulation saturationModulation5 = new A.SaturationModulation(){ Val = 89000 };
            A.LuminanceModulation luminanceModulation5 = new A.LuminanceModulation(){ Val = 91000 };

            schemeColor6.Append(saturationModulation5);
            schemeColor6.Append(luminanceModulation5);

            gradientStop5.Append(schemeColor6);

            A.GradientStop gradientStop6 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor7 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.LuminanceModulation luminanceModulation6 = new A.LuminanceModulation(){ Val = 69000 };

            schemeColor7.Append(luminanceModulation6);

            gradientStop6.Append(schemeColor7);

            gradientStopList2.Append(gradientStop4);
            gradientStopList2.Append(gradientStop5);
            gradientStopList2.Append(gradientStop6);
            A.LinearGradientFill linearGradientFill2 = new A.LinearGradientFill(){ Angle = 5400000, Scaled = false };

            gradientFill2.Append(gradientStopList2);
            gradientFill2.Append(linearGradientFill2);

            fillStyleList1.Append(solidFill1);
            fillStyleList1.Append(gradientFill1);
            fillStyleList1.Append(gradientFill2);

            A.LineStyleList lineStyleList1 = new A.LineStyleList();

            A.Outline outline1 = new A.Outline(){ Width = 6350, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill2 = new A.SolidFill();
            A.SchemeColor schemeColor8 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill2.Append(schemeColor8);
            A.PresetDash presetDash1 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline1.Append(solidFill2);
            outline1.Append(presetDash1);

            A.Outline outline2 = new A.Outline(){ Width = 12700, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill3 = new A.SolidFill();
            A.SchemeColor schemeColor9 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill3.Append(schemeColor9);
            A.PresetDash presetDash2 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline2.Append(solidFill3);
            outline2.Append(presetDash2);

            A.Outline outline3 = new A.Outline(){ Width = 19050, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };

            A.SolidFill solidFill4 = new A.SolidFill();
            A.SchemeColor schemeColor10 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill4.Append(schemeColor10);
            A.PresetDash presetDash3 = new A.PresetDash(){ Val = A.PresetLineDashValues.Solid };

            outline3.Append(solidFill4);
            outline3.Append(presetDash3);

            lineStyleList1.Append(outline1);
            lineStyleList1.Append(outline2);
            lineStyleList1.Append(outline3);

            A.EffectStyleList effectStyleList1 = new A.EffectStyleList();

            A.EffectStyle effectStyle1 = new A.EffectStyle();
            A.EffectList effectList1 = new A.EffectList();

            effectStyle1.Append(effectList1);

            A.EffectStyle effectStyle2 = new A.EffectStyle();
            A.EffectList effectList2 = new A.EffectList();

            effectStyle2.Append(effectList2);

            A.EffectStyle effectStyle3 = new A.EffectStyle();

            A.EffectList effectList3 = new A.EffectList();

            A.OuterShadow outerShadow1 = new A.OuterShadow(){ BlurRadius = 57150L, Distance = 19050L, Direction = 5400000, Alignment = A.RectangleAlignmentValues.Center, RotateWithShape = false };

            A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex(){ Val = "000000" };
            A.Alpha alpha1 = new A.Alpha(){ Val = 63000 };

            rgbColorModelHex11.Append(alpha1);

            outerShadow1.Append(rgbColorModelHex11);

            effectList3.Append(outerShadow1);

            effectStyle3.Append(effectList3);

            effectStyleList1.Append(effectStyle1);
            effectStyleList1.Append(effectStyle2);
            effectStyleList1.Append(effectStyle3);

            A.BackgroundFillStyleList backgroundFillStyleList1 = new A.BackgroundFillStyleList();

            A.SolidFill solidFill5 = new A.SolidFill();
            A.SchemeColor schemeColor11 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };

            solidFill5.Append(schemeColor11);

            A.GradientFill gradientFill3 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList3 = new A.GradientStopList();

            A.GradientStop gradientStop7 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor12 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint1 = new A.Tint(){ Val = 100000 };
            A.SaturationModulation saturationModulation6 = new A.SaturationModulation(){ Val = 100000 };
            A.Shade shade1 = new A.Shade(){ Val = 0 };

            schemeColor12.Append(tint1);
            schemeColor12.Append(saturationModulation6);
            schemeColor12.Append(shade1);

            gradientStop7.Append(schemeColor12);

            A.GradientStop gradientStop8 = new A.GradientStop(){ Position = 0 };
            A.RgbColorModelPercentage rgbColorModelPercentage1 = new A.RgbColorModelPercentage(){ RedPortion = 0, GreenPortion = 0, BluePortion = 0 };

            gradientStop8.Append(rgbColorModelPercentage1);

            A.GradientStop gradientStop9 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor13 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade2 = new A.Shade(){ Val = 100000 };
            A.SaturationModulation saturationModulation7 = new A.SaturationModulation(){ Val = 100000 };

            schemeColor13.Append(shade2);
            schemeColor13.Append(saturationModulation7);

            gradientStop9.Append(schemeColor13);

            gradientStopList3.Append(gradientStop7);
            gradientStopList3.Append(gradientStop8);
            gradientStopList3.Append(gradientStop9);
            A.LinearGradientFill linearGradientFill3 = new A.LinearGradientFill(){ Angle = 5400000, Scaled = false };

            gradientFill3.Append(gradientStopList3);
            gradientFill3.Append(linearGradientFill3);

            A.GradientFill gradientFill4 = new A.GradientFill(){ RotateWithShape = true };

            A.GradientStopList gradientStopList4 = new A.GradientStopList();

            A.GradientStop gradientStop10 = new A.GradientStop(){ Position = 0 };

            A.SchemeColor schemeColor14 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Tint tint2 = new A.Tint(){ Val = 80000 };
            A.SaturationModulation saturationModulation8 = new A.SaturationModulation(){ Val = 300000 };

            schemeColor14.Append(tint2);
            schemeColor14.Append(saturationModulation8);

            gradientStop10.Append(schemeColor14);

            A.GradientStop gradientStop11 = new A.GradientStop(){ Position = 100000 };

            A.SchemeColor schemeColor15 = new A.SchemeColor(){ Val = A.SchemeColorValues.PhColor };
            A.Shade shade3 = new A.Shade(){ Val = 30000 };
            A.SaturationModulation saturationModulation9 = new A.SaturationModulation(){ Val = 200000 };

            schemeColor15.Append(shade3);
            schemeColor15.Append(saturationModulation9);

            gradientStop11.Append(schemeColor15);

            gradientStopList4.Append(gradientStop10);
            gradientStopList4.Append(gradientStop11);

            A.PathGradientFill pathGradientFill1 = new A.PathGradientFill(){ Path = A.PathShadeValues.Circle };
            A.FillToRectangle fillToRectangle1 = new A.FillToRectangle(){ Left = 50000, Top = 50000, Right = 50000, Bottom = 50000 };

            pathGradientFill1.Append(fillToRectangle1);

            gradientFill4.Append(gradientStopList4);
            gradientFill4.Append(pathGradientFill1);

            backgroundFillStyleList1.Append(solidFill5);
            backgroundFillStyleList1.Append(gradientFill3);
            backgroundFillStyleList1.Append(gradientFill4);

            formatScheme1.Append(fillStyleList1);
            formatScheme1.Append(lineStyleList1);
            formatScheme1.Append(effectStyleList1);
            formatScheme1.Append(backgroundFillStyleList1);

            themeElements1.Append(colorScheme1);
            themeElements1.Append(fontScheme1);
            themeElements1.Append(formatScheme1);
            A.ObjectDefaults objectDefaults1 = new A.ObjectDefaults();
            A.ExtraColorSchemeList extraColorSchemeList1 = new A.ExtraColorSchemeList();

            theme1.Append(themeElements1);
            theme1.Append(objectDefaults1);
            theme1.Append(extraColorSchemeList1);

            themePart1.Theme = theme1;
        }
        // Generates content of Sheet.
        private void GenerateWorksheetPartContent(WorksheetPart worksheetPart, DataTable data, bool isPrimaryTab = false)
        {
            Worksheet worksheet1 = new Worksheet() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "x14ac" } };
            worksheet1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
            worksheet1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
            worksheet1.AddNamespaceDeclaration("x14ac", "http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac");

            SheetViews sheetViews = new SheetViews();
            SheetView sheetView = new SheetView() { TabSelected = isPrimaryTab, WorkbookViewId = (UInt32Value)0U };
            sheetViews.Append(sheetView);
            SheetFormatProperties sheetFormatProperties1 = new SheetFormatProperties() { DefaultRowHeight = 15D, DyDescent = 0.25D };

            //If you want to default select a cell
            //Selection selection1 = new Selection() { ActiveCell = "A3", SequenceOfReferences = new ListValue<StringValue>() { InnerText = "A3" } };
            //sheetView1.Append(selection1);

            //Column Creation
            Column tempCol;
            Columns columns = new Columns();
            for (int ii = 0; ii < data.Columns.Count; ii++)
            {
                tempCol = new Column() {
                    Min = (UInt32Value)Convert.ToUInt32(ii + 1),
                    Max = (UInt32Value)Convert.ToUInt32(ii + 1),
                    Width = 10.28515625D,
                    CustomWidth = true,
                    BestFit = true
                };
                columns.Append(tempCol);
            }

            SheetData sheetData = new SheetData();

            //Creating cells and adding them to rows
            Row row;
            Cell cell;
            CellValue cellVal;
            int rowIndex = 1;
            string cellName = "";
            List<string> cellsWithHyperLinks = new List<string>();

            //Insert Header Row
            row = new Row() { RowIndex = (UInt32Value)Convert.ToUInt32(rowIndex), Spans = new ListValue<StringValue>() { InnerText = "1:" + data.Columns.Count } };//, DyDescent = 0.25D };
            for (int jj = 0; jj < data.Columns.Count; jj++)
            {
                cellName = GetExcelCellName(jj + 1, rowIndex);
                cell = new Cell() { CellReference = cellName, StyleIndex = (UInt32Value)1U, DataType = CellValues.String };
                cellVal = new CellValue() { Text = data.Columns[jj].ColumnName };
                cell.Append(cellVal);
                row.Append(cell);
            }
            sheetData.Append(row);
            rowIndex++;

            //Insert Data
            foreach (DataRow datarow in data.Rows)
            {
                row = new Row() { RowIndex = (UInt32Value)Convert.ToUInt32(rowIndex), Spans = new ListValue<StringValue>() { InnerText = "1:" + data.Columns.Count } };//, DyDescent = 0.25D };

                for (int jj = 0; jj < data.Columns.Count; jj++)
                {
                    cellName = GetExcelCellName(jj + 1, rowIndex);
                    cell = new Cell() { CellReference = cellName, StyleIndex = (UInt32Value)0U };
                    if (data.Columns[jj].DataType == typeof(int) || data.Columns[jj].DataType == typeof(double))
                    {
                        cell.DataType = CellValues.Number;
                    }
                    else if (data.Columns[jj].DataType == typeof(DateTime))
                    {
                        cell.DataType = CellValues.Date;
                    }
                    else
                    {
                        cell.DataType = CellValues.String;
                    }

                    cellVal = new CellValue() { Text = datarow[jj].ToString() };

                    if (cellVal.Text.ToLower().Contains("http"))
                    {
                        cell.StyleIndex = (UInt32Value)2U;
                        cellsWithHyperLinks.Add(cellName);
                    }

                    cell.Append(cellVal);
                    row.Append(cell);
                }

                //Add the row to the sheetdata object
                sheetData.Append(row);
                rowIndex++;
            }

            //Adding hyperlinks
            Hyperlink hyperlink;
            Hyperlinks hyperlinks = null;
            if (cellsWithHyperLinks.Count > 0)
            {
                hyperlinks = new Hyperlinks();

                for (int ii = 0; ii < cellsWithHyperLinks.Count; ii++)
                {
                    hyperlink = new Hyperlink() { Reference = cellsWithHyperLinks[ii], Id = "rId" + (ii + 1) };
                    hyperlinks.Append(hyperlink);
                }
            }

            //PageMargins pageMargins1 = new PageMargins() { Left = 0.7D, Right = 0.7D, Top = 0.75D, Bottom = 0.75D, Header = 0.3D, Footer = 0.3D };
            //PageSetup pageSetup1 = new PageSetup() { Orientation = OrientationValues.Portrait, VerticalDpi = (UInt32Value)0U, Id = "rId2" };

            worksheet1.Append(sheetViews);
            worksheet1.Append(sheetFormatProperties1);
            worksheet1.Append(columns);
            worksheet1.Append(sheetData);
            if (hyperlinks != null)
            {
                worksheet1.Append(hyperlinks);
            }
            //worksheet1.Append(pageMargins1);
            //worksheet1.Append(pageSetup1);

            worksheetPart.Worksheet = worksheet1;
        }