コード例 #1
0
        /**
         * Constructs a SheetProperties record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public SheetPropertiesRecord(RecordInputStream in1)
        {

            field_1_flags = in1.ReadShort();
            field_2_empty = (byte)in1.ReadByte();
            field_3_reserved = (byte)in1.ReadByte();
        }
コード例 #2
0
ファイル: AutoFilterRecord.cs プロジェクト: babywzazy/Server
 public AutoFilterRecord(RecordInputStream in1)
 {
     field_1_iEntry = in1.ReadShort();
     field_2_grbit = in1.ReadShort();
     field_3_doper1 = new DOPERRecord(in1);
     field_4_doper2 = new DOPERRecord(in1);
     if (field_3_doper1.DataType == DOPERType.String&&field_3_doper1.LengthOfString>0)
     {
         rgch1_multibyte = (in1.ReadByte() != 0);
         if (rgch1_multibyte)
         {
             field_5_rgch1 = in1.ReadUnicodeLEString(field_3_doper1.LengthOfString);
         }
         else
         {
             field_5_rgch1 = in1.ReadCompressedUnicode(field_3_doper1.LengthOfString);
         }
     }
     if (field_4_doper2.DataType == DOPERType.String && field_4_doper2.LengthOfString > 0)
     {
         rgch2_multibyte = (in1.ReadByte() != 0);
         if (rgch2_multibyte)
         {
             field_6_rgch2 = in1.ReadUnicodeLEString(field_4_doper2.LengthOfString);
         }
         else
         {
             field_6_rgch2 = in1.ReadCompressedUnicode(field_4_doper2.LengthOfString);
         }
     }
 }
コード例 #3
0
ファイル: BarRecord.cs プロジェクト: hanwangkun/npoi
        /**
         * Constructs a Bar record and s its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public BarRecord(RecordInputStream in1)
        {

            field_1_barSpace = in1.ReadShort();
            field_2_categorySpace = in1.ReadShort();
            field_3_formatFlags = in1.ReadShort();
        }
コード例 #4
0
        /**
         * Constructs a DataFormat record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public DataFormatRecord(RecordInputStream in1)
        {
            field_1_pointNumber = in1.ReadShort();
            field_2_seriesIndex = in1.ReadShort();
            field_3_seriesNumber = in1.ReadShort();
            field_4_formatFlags = in1.ReadShort();
        }
コード例 #5
0
        /**
         * Constructs a ObjectLink record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public ObjectLinkRecord(RecordInputStream in1)
        {

            field_1_anchorId = in1.ReadShort();
            field_2_link1 = in1.ReadShort();
            field_3_link2 = in1.ReadShort();
        }
コード例 #6
0
ファイル: DOPER.cs プロジェクト: uwitec/web-mvc-logistics
 public DOPERRecord(RecordInputStream in1)
 {
     vt=(DOPERType)in1.ReadByte();
     switch (vt)
     { 
         case DOPERType.RKNumber:
             grbitSgn = (byte)in1.ReadByte();
             _RK = new RKRecord(in1);
             in1.ReadInt();  //reserved
             break;
         case DOPERType.IEEENumber:
             grbitSgn = (byte)in1.ReadByte();
             _IEEENumber = in1.ReadDouble();
             break;          
         case DOPERType.String:
             grbitSgn = (byte)in1.ReadByte();
             in1.ReadInt();  //reserved
             CCH = (byte)in1.ReadByte();
             in1.ReadByte();     //reserved
             in1.ReadShort();    //reserved
             break;
         case DOPERType.BooleanOrErrors:
             grbitSgn = (byte)in1.ReadByte();
             fError=(byte)in1.ReadByte();
             bBoolErr=(byte)in1.ReadByte();
             in1.ReadShort();    //reserved
             in1.ReadInt();      //reserved
             break;
         default:    //FilterCondition,MatchAllBlanks,MatchNoneBlank
             grbitSgn = 0;
             in1.ReadByte();    //reserved
             in1.ReadLong();    //reserved
             break;
     }
 }
コード例 #7
0
ファイル: ShtPropsRecord.cs プロジェクト: 89sos98/npoi
        /**
         * Constructs a SheetProperties record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public ShtPropsRecord(RecordInputStream in1)
        {

            field_1_flags = in1.ReadShort();
            field_2_mdBlank = (byte)in1.ReadByte();
            field_3_reserved = (byte)in1.ReadByte();
        }
コード例 #8
0
        /**
         * Constructs a LineFormat record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public LineFormatRecord(RecordInputStream in1)
        {
            field_1_lineColor = in1.ReadInt();
            field_2_linePattern = in1.ReadShort();
            field_3_weight = in1.ReadShort();
            field_4_format = in1.ReadShort();
            field_5_colourPaletteIndex = in1.ReadShort();
        }
コード例 #9
0
        /**
         * Constructs a CategorySeriesAxis record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public CategorySeriesAxisRecord(RecordInputStream in1)
    {
        field_1_crossingPoint = in1.ReadShort();
        field_2_labelFrequency = in1.ReadShort();
        field_3_tickMarkFrequency = in1.ReadShort();
        field_4_options = in1.ReadShort(); 
    
    }
コード例 #10
0
ファイル: FontBasisRecord.cs プロジェクト: babywzazy/Server
 /**
  * Constructs a FontBasis record and Sets its fields appropriately.
  *
  * @param in the RecordInputstream to Read the record from
  */
 public FontBasisRecord(RecordInputStream in1)
 {
     field_1_xBasis = in1.ReadShort();
     field_2_yBasis = in1.ReadShort();
     field_3_heightBasis = in1.ReadShort();
     field_4_scale = in1.ReadShort();
     field_5_indexToFontTable = in1.ReadShort();
 }
コード例 #11
0
ファイル: AxisRecord.cs プロジェクト: babywzazy/Server
 /**
  * Constructs a Axis record and Sets its fields appropriately.
  *
  * @param in the RecordInputstream to Read the record from
  */
 public AxisRecord(RecordInputStream in1)
 {
     field_1_axisType = in1.ReadShort();
     field_2_reserved1 = in1.ReadInt();
     field_3_reserved2 = in1.ReadInt();
     field_4_reserved3 = in1.ReadInt();
     field_5_reserved4 = in1.ReadInt();
 }
コード例 #12
0
ファイル: CatSerRangeRecord.cs プロジェクト: 89sos98/npoi
        /**
         * Constructs a CategorySeriesAxis record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public CatSerRangeRecord(RecordInputStream in1)
        {
            field_1_catCross = in1.ReadShort();
            field_2_catLabel = in1.ReadShort();
            field_3_catMark = in1.ReadShort();
            field_4_options = in1.ReadShort();

        }
コード例 #13
0
ファイル: ChartRecord.cs プロジェクト: 89sos98/npoi
        /**
         * Constructs a Chart record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public ChartRecord(RecordInputStream in1)
        {
            field_1_x = in1.ReadInt();
            field_2_y = in1.ReadInt();
            field_3_width = in1.ReadInt();
            field_4_height = in1.ReadInt();

        }
コード例 #14
0
ファイル: AxisParentRecord.cs プロジェクト: babywzazy/Server
 /**
  * Constructs a AxisParent record and s its fields appropriately.
  *
  * @param in the RecordInputstream to Read the record from
  */
 public AxisParentRecord(RecordInputStream in1)
 {
     field_1_axisType = in1.ReadShort();
     field_2_x = in1.ReadInt();
     field_3_y = in1.ReadInt();
     field_4_width = in1.ReadInt();
     field_5_height = in1.ReadInt();
 }
コード例 #15
0
ファイル: SeriesRecord.cs プロジェクト: babywzazy/Server
 /**
  * Constructs a Series record and Sets its fields appropriately.
  *
  * @param in the RecordInputstream to Read the record from
  */
 public SeriesRecord(RecordInputStream in1)
 {
     field_1_categoryDataType = in1.ReadShort();
     field_2_valuesDataType = in1.ReadShort();
     field_3_numCategories = in1.ReadShort();
     field_4_numValues = in1.ReadShort();
     field_5_bubbleSeriesType = in1.ReadShort();
     field_6_numBubbleValues = in1.ReadShort();
 }
コード例 #16
0
        /**
         * Constructs a LinkedData record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public LinkedDataRecord(RecordInputStream in1)
        {
            field_1_linkType = (byte)in1.ReadByte();
            field_2_referenceType = (byte)in1.ReadByte();
            field_3_options = in1.ReadShort();
            field_4_indexNumberFmtRecord = in1.ReadShort();
            int encodedTokenLen = in1.ReadUShort();
            field_5_formulaOfLink = Formula.Read(encodedTokenLen, in1);
        }
コード例 #17
0
 public ChartStartBlockRecord(RecordInputStream in1)
 {
     rt = in1.ReadShort();
     grbitFrt = in1.ReadShort();
     iObjectKind = in1.ReadShort();
     iObjectContext = in1.ReadShort();
     iObjectInstance1 = in1.ReadShort();
     iObjectInstance2 = in1.ReadShort();
 }
コード例 #18
0
ファイル: AreaFormatRecord.cs プロジェクト: babywzazy/Server
 /**
  * Constructs a AreaFormat record and s its fields appropriately.
  *
  * @param in the RecordInputstream to Read the record from
  */
 public AreaFormatRecord(RecordInputStream in1)
 {
     field_1_foregroundColor = in1.ReadInt();
     field_2_backgroundColor = in1.ReadInt();
     field_3_pattern = in1.ReadShort();
     field_4_formatFlags = in1.ReadShort();
     field_5_forecolorIndex = in1.ReadShort();
     field_6_backcolorIndex = in1.ReadShort();
 }
コード例 #19
0
ファイル: ValueRangeRecord.cs プロジェクト: babywzazy/Server
 /**
  * Constructs a ValueRange record and Sets its fields appropriately.
  *
  * @param in the RecordInputstream to Read the record from
  */
 public ValueRangeRecord(RecordInputStream in1)
 {
     field_1_minimumAxisValue = in1.ReadDouble();
     field_2_maximumAxisValue = in1.ReadDouble();
     field_3_majorIncrement = in1.ReadDouble();
     field_4_minorIncrement = in1.ReadDouble();
     field_5_categoryAxisCross = in1.ReadDouble();
     field_6_options = in1.ReadShort();
 }
コード例 #20
0
ファイル: LegendRecord.cs プロジェクト: babywzazy/Server
 /**
  * Constructs a Legend record and Sets its fields appropriately.
  *
  * @param in the RecordInputstream to Read the record from
  */
 public LegendRecord(RecordInputStream in1)
 {
     field_1_xAxisUpperLeft = in1.ReadInt();
     field_2_yAxisUpperLeft = in1.ReadInt();
     field_3_xSize = in1.ReadInt();
     field_4_ySize = in1.ReadInt();
     field_5_type = (byte)in1.ReadByte();
     field_6_spacing = (byte)in1.ReadByte();
     field_7_options = in1.ReadShort();
 }
コード例 #21
0
ファイル: Chart3dRecord.cs プロジェクト: ctddjyds/npoi
 public Chart3dRecord(RecordInputStream in1)
 {
     field_1_anRot = in1.ReadShort();
     field_2_anElev = in1.ReadShort();
     field_3_pcDist = in1.ReadShort();
     field_4_pcHeight = in1.ReadShort();
     field_5_pcDepth = in1.ReadShort();
     field_6_pcGap = in1.ReadShort();
     field_7_option = in1.ReadShort();
 }
コード例 #22
0
ファイル: SeriesListRecord.cs プロジェクト: babywzazy/Server
        /**
         * Constructs a SeriesList record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */
        public SeriesListRecord(RecordInputStream in1)
        {
            int nItems = in1.ReadUShort();
            short[] ss = new short[nItems];
            for (int i = 0; i < nItems; i++) {
                ss[i] = in1.ReadShort();

            }
            field_1_seriesNumbers = ss;
        }
コード例 #23
0
ファイル: MarkerFormatRecord.cs プロジェクト: hanwangkun/npoi
 public MarkerFormatRecord(RecordInputStream ris)
 {
     field_1_rgbFore = ris.ReadInt();
     field_2_rgbBack = ris.ReadInt();
     field_3_imk = ris.ReadShort();
     field_4_flag = ris.ReadShort();
     field_5_icvFore = ris.ReadShort();
     field_6_icvBack = ris.ReadShort();
     field_7_miSize = ris.ReadInt();
 }
コード例 #24
0
ファイル: OfficeArtFOPTE.cs プロジェクト: hanwangkun/npoi
 public OfficeArtFOPTE(RecordInputStream ris)
 {
     Opid = new OfficeArtFOPTEOPID((ushort)ris.ReadUShort());
     Op = ris.ReadInt();
     if (Opid.IsComplex)
     {
         complexData = new byte[Op];
         for (int i = 0; i < complexData.Length; i++)
             complexData[i] = (byte)ris.ReadByte();
     }
 }
コード例 #25
0
ファイル: AxisOptionsRecord.cs プロジェクト: babywzazy/Server
 /**
  * Constructs a AxisOptions record and Sets its fields appropriately.
  *
  * @param in the RecordInputstream to Read the record from
  */
 public AxisOptionsRecord(RecordInputStream in1)
 {
     field_1_minimumCategory = in1.ReadShort();
     field_2_maximumCategory = in1.ReadShort();
     field_3_majorUnitValue = in1.ReadShort();
     field_4_majorUnit = in1.ReadShort();
     field_5_minorUnitValue = in1.ReadShort();
     field_6_minorUnit = in1.ReadShort();
     field_7_baseUnit = in1.ReadShort();
     field_8_crossingPoint = in1.ReadShort();
     field_9_options = in1.ReadShort();
 }
コード例 #26
0
ファイル: PosRecord.cs プロジェクト: xoposhiy/npoi
 public PosRecord(RecordInputStream in1)
 {
     mdTopLt = in1.ReadShort();
     mdBotRt = in1.ReadShort();
     x1 = in1.ReadShort();
     in1.ReadShort();    //unused1
     y1 = in1.ReadShort();
     in1.ReadShort();    //unused2
     x2 = in1.ReadShort();
     in1.ReadShort();    //unused3
     y2 = in1.ReadShort();
     in1.ReadShort();    //unused4
 }
コード例 #27
0
ファイル: AxcExtRecord.cs プロジェクト: xiepeixing/npoi
        /*
         * Constructs a AxisOptions record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public AxcExtRecord(RecordInputStream in1)
        {
            field_1_catMin = in1.ReadShort();
            field_2_catMax = in1.ReadShort();
            field_3_catMajor = in1.ReadShort();
            field_4_duMajor = in1.ReadShort();
            field_5_catMinor = in1.ReadShort();
            field_6_duMinor = in1.ReadShort();
            field_7_duBase = in1.ReadShort();
            field_8_catCrossDate = in1.ReadShort();
            field_9_options = in1.ReadShort();

        }
コード例 #28
0
ファイル: OfficeArtFOPT.cs プロジェクト: ctddjyds/npoi
        //private byte[] complexData = new byte[0];

        public OfficeArtFOPT(RecordInputStream ris)
        {
            _rh = new OfficeArtRecordHeader(ris);
            _fopt = new List<OfficeArtFOPTE>();
            int dataRemian = _rh.Len;
            while (dataRemian > 0)
            {
                OfficeArtFOPTE opte = new OfficeArtFOPTE(ris);
                _fopt.Add(opte);
                dataRemian -= opte.DataSize;
                dictOptions.Add(opte.Opid.OpId, opte);
            }
            
        }
コード例 #29
0
ファイル: SeriesTextRecord.cs プロジェクト: xoposhiy/npoi
        /**
         * Constructs a SeriesText record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public SeriesTextRecord(RecordInputStream in1)
        {

            field_1_id = in1.ReadShort();
            int field_2_textLength = (byte)in1.ReadByte();
            is16bit = (in1.ReadUByte() & 0x01) != 0;
            if (is16bit)
            {
                field_4_text = in1.ReadUnicodeLEString(field_2_textLength);
            }
            else
            {
                field_4_text = in1.ReadCompressedUnicode(field_2_textLength);
            }
        }
コード例 #30
0
 public ChartTitleFormatRecord(RecordInputStream in1)
 {
     m_recs = in1.ReadUShort();
     int idx;
     CTFormat ctf;
     if (m_formats == null)
     {
         m_formats = new ArrayList(m_recs);
     }
     for (idx = 0; idx < m_recs; idx++)
     {
         ctf = new CTFormat(in1.ReadShort(), in1.ReadShort());
         m_formats.Add(ctf);
     }
 }
コード例 #31
0
ファイル: EndRecord.cs プロジェクト: ruo2012/Npoi.Core
        /**
         * Constructs a EndRecord record and Sets its fields appropriately.
         * @param in the RecordInputstream to Read the record from
         */

        public EndRecord(RecordInputStream in1)
        {
        }
コード例 #32
0
 public PieFormatRecord(RecordInputStream ris)
 {
     field_1_pcExplode = ris.ReadShort();
 }
コード例 #33
0
        /**
         * Constructs a SeriesIndex record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public SeriesIndexRecord(RecordInputStream in1)
        {
            field_1_index = in1.ReadShort();
        }
コード例 #34
0
        /**
         * Constructs a SheetProperties record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public SheetPropertiesRecord(RecordInputStream in1)
        {
            field_1_flags    = in1.ReadShort();
            field_2_empty    = (byte)in1.ReadByte();
            field_3_reserved = (byte)in1.ReadByte();
        }
コード例 #35
0
        /**
         * Constructs a SeriesLabels record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public AttachedLabelRecord(RecordInputStream in1)
        {
            field_1_formatFlags = in1.ReadShort();
        }
コード例 #36
0
        /**
         * Constructs a AxisLineFormat record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public AxisLineRecord(RecordInputStream in1)
        {
            field_1_axisType = in1.ReadShort();
        }
コード例 #37
0
ファイル: OldExcelExtractor.cs プロジェクト: twxstar/npoi
 private void Open(Stream biffStream)
 {
     streamInput = biffStream;
     ris         = new RecordInputStream(biffStream);
     Prepare();
 }
コード例 #38
0
ファイル: BarRecord.cs プロジェクト: xewn/Npoi.Core
        /**
         * Constructs a Bar record and s its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public BarRecord(RecordInputStream in1)
        {
            field_1_barSpace      = in1.ReadShort();
            field_2_categorySpace = in1.ReadShort();
            field_3_formatFlags   = in1.ReadShort();
        }
コード例 #39
0
 public LegendExceptionRecord(RecordInputStream ris)
     : base(ris)
 {
 }
コード例 #40
0
 public ContinueFrt12Record(RecordInputStream ris)
     : base(ris)
 {
 }
コード例 #41
0
ファイル: DataLabExtRecord.cs プロジェクト: zanhaipeng/npoi
 public DataLabExtRecord(RecordInputStream in1)
 {
     rt       = in1.ReadShort();
     grbitFrt = in1.ReadShort();
     in1.ReadFully(unused);
 }
コード例 #42
0
ファイル: TestNameRecord.cs プロジェクト: zzy092/npoi
        public void Test50244()
        {
            String record_0x0018 =
                "                                          18 00 " +
                "21 1E 00 00 00 11 08 00 00 00 03 00 00 00 00 00 " +
                "00 77 44 61 74 61 47 72 75 70 70 65 53 65 72 69 " +
                "65 2E 60 00 B7 02 0C 00 57 03 00 B7 02 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 30 31 02 09 00 00 31 2E " +
                "54 32 30 2E 30 30 31 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 30 31 02 09 00 00 31 2E 54 32 30 2E 30 30 " +
                "32 02 09 00 00 31 2E 54 32 30 2E 30 30 32 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 30 32 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 30 33 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 30 33 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "30 33 02 09 00 00 31 2E 54 32 30 2E 30 31 33 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 31 33 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 31 33 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 31 34 02 09 00 00 31 2E 54 32 30 2E " +
                "30 31 34 02 09 00 00 31 2E 54 32 30 2E 30 31 34 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 31 35 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 31 35 02 09 00 00 31 2E " +
                "54 32 30 2E 30 31 35 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 32 35 02 09 00 00 31 2E 54 32 30 2E 30 32 " +
                "35 02 09 00 00 31 2E 54 32 30 2E 30 32 35 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 32 36 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 32 36 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 32 36 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "32 37 02 09 00 00 31 2E 54 32 30 2E 30 32 37 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 32 37 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 33 37 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 33 37 02 09 00 00 31 2E 54 32 30 2E " +
                "30 33 37 02 09 00 00 31 2E 54 32 30 2E 30 33 38 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 33 38 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 33 38 02 09 00 00 31 2E " +
                "54 32 30 2E 30 33 39 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 33 39 02 09 00 00 31 2E 54 32 30 2E 30 33 " +
                "39 02 09 00 00 31 2E 54 32 30 2E 30 34 39 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 34 39 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 34 39 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 35 30 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "35 30 02 09 00 00 31 2E 54 32 30 2E 30 35 30 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 35 31 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 35 31 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 35 31 02 09 00 00 31 2E 54 32 30 2E " +
                "30 36 31 02 09 00 00 31 2E 54 32 30 2E 30 36 31 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 36 31 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 36 32 02 09 00 00 31 2E " +
                "54 32 30 2E 30 36 32 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 36 32 02 09 00 00 31 2E 54 32 30 2E 30 36 " +
                "33 02 09 00 00 31 2E 54 32 30 2E 30 36 33 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 36 33 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 37 33 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 37 33 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "37 33 02 09 00 00 31 2E 54 32 30 2E 30 37 34 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 37 34 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 37 34 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 37 35 02 09 00 00 31 2E 54 32 30 2E " +
                "30 37 35 02 09 00 00 31 2E 54 32 30 2E 30 37 35 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 38 35 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 38 35 02 09 00 00 31 2E " +
                "54 32 30 2E 30 38 35 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 38 36 02 09 00 00 31 2E 54 32 30 2E 30 38 " +
                "36 02 09 00 00 31 2E 54 32 30 2E 30 38 36 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 38 37 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 38 37 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 38 37 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "39 37 02 09 00 00 31 2E 54 32 30 2E 30 39 37 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 39 37 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 39 38 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 39 38 02 09 00 00 31 2E 54 32 30 2E " +
                "30 39 38 02 09 00 00 31 2E 54 32 30 2E 30 39 39 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 39 39 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 39 39 02 09 00 00 31 2E " +
                "54 32 30 2E 31 30 39 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 30 39 02 09 00 00 31 2E 54 32 30 2E 31 30 " +
                "39 02 09 00 00 31 2E 54 32 30 2E 31 31 30 02 09 " +
                "00 00 31 2E 54 32 30 2E 31 31 30 02 09 00 00 31 " +
                "2E 54 32 30 2E 31 31 30 02 09 00 00 31 2E 54 32 " +
                "30 2E 31 31 31 02 09 00 00 31 2E 54 32 30 2E 31 " +
                "31 31 02 09 00 00 31 2E 54 32 30 2E 31 31 31 02 " +
                "09 00 00 31 2E 54 32 30 2E 31 32 31 02 09 00 00 " +
                "31 2E 54 32 30 2E 31 32 31 02 09 00 00 31 2E 54 " +
                "32 30 2E 31 32 31 02 09 00 00 31 2E 54 32 30 2E " +
                "31 32 32 02 09 00 00 31 2E 54 32 30 2E 31 32 32 " +
                "02 09 00 00 31 2E 54 32 30 2E 31 32 32 02 09 00 " +
                "00 31 2E 54 32 30 2E 31 32 33 02 09 00 00 31 2E " +
                "54 32 30 2E 31 32 33 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 32 33 02 09 00 00 31 2E 54 32 30 2E 31 33 " +
                "33 02 09 00 00 31 2E 54 32 30 2E 31 33 33 02 09 " +
                "00 00 31 2E 54 32 30 2E 31 33 33 02 09 00 00 31 " +
                "2E 54 32 30 2E 31 33 34 02 09 00 00 31 2E 54 32 " +
                "30 2E 31 33 34 02 09 00 00 31 2E 54 32 30 2E 31 " +
                "33 34 02 09 00 00 31 2E 54 32 30 2E 31 33 35 02 " +
                "09 00 00 31 2E 54 32 30 2E 31 33 35 02 09 00 00 " +
                "31 2E 54 32 30 2E 31 33 35 02 09 00 00 31 2E 54 " +
                "32 30 2E 31 34 35 02 09 00 00 31 2E 54 32 30 2E " +
                "31 34 35 02 09 00 00 31 2E 54 32 30 2E 31 34 35 " +
                "02 09 00 00 31 2E 54 32 30 2E 31 34 36 02 09 00 " +
                "00 31 2E 54 32 30 2E 31 34 36 02 09 00 00 31 2E " +
                "54 32 30 2E 31 34 36 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 34 37 02 09 00 00 31 2E 54 32 30 2E 31 34 " +
                "37 02 09 00 00 31 2E 54 32 30 2E 31 34 37 02 09 " +
                "00 00 31 2E 54 32 30 2E 31 35 37 02 09 00 00 31 " +
                "2E 54 32 30 2E 31 35 37 02 09 00 00 31 2E 54 32 " +
                "30 2E 31 35 37 02 09 00 00 31 2E 54 32 30 2E 31 " +
                "35 38 02 09 00 00 31 2E 54 32 30 2E 31 35 38 02 " +
                "09 00 00 31 2E 54 32 30 2E 31 35 38 02 09 00 00 " +
                "31 2E 54 32 30 2E 31 35 39 02 09 00 00 31 2E 54 " +
                "32 30 2E 31 35 39 02 09 00 00 31 2E 54 32 30 2E " +
                "31 35 39 02 09 00 00 31 2E 54 32 30 2E 31 36 39 " +
                "02 09 00 00 31 2E 54 32 30 2E 31 36 39 02 09 00 " +
                "00 31 2E 54 32 30 2E 31 36 39 02 09 00 00 31 2E " +
                "54 32 30 2E 31 37 30 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 37 30 02 09 00 00 31 2E 54 32 30 2E 31 37 " +
                "30 02 09 00 00 31 2E 54 32 30 2E 31 37 31 02 09 " +
                "00 00 31 2E 54 32 30 2E 31 37 31 02 09 00 00 31 " +
                "2E 54 32 30 2E 31 37 31 02 09 00 00 31 2E 54 36 " +
                "30 2E 30 30 39 02 09 00 00 31 2E 54 36 30 2E 30 " +
                "30 39 02 09 00 00 31 2E 54 36 30 2E 30 30 39 02 " +
                "09 00 00 31 2E 54 36 30 2E 30 31 30 02 09 00 00 " +
                "31 2E 54 36 30 2E 30 31 30 02 09 00 00 31 2E 54 " +
                "36 30 2E 30 31 30 02 09 00 00 31 2E 54 36 30 2E " +
                "30 31 31 02 09 00 00 31 2E 54 36 30 2E 30 31 31 " +
                "02 09 00 00 31 2E 54 36 30 2E 30 31 31 02 09 00 " +
                "00 31 2E 54 36 30 2E 30 32 31 02 09 00 00 31 2E " +
                "54 36 30 2E 30 32 31 02 09 00 00 31 2E 54 36 30 " +
                "2E 30 32 31 02 09 00 00 31 2E 54 36 30 2E 30 32 " +
                "32 02 09 00 00 31 2E 54 36 30 2E 30 32 32 02 09 " +
                "00 00 31 2E 54 36 30 2E 30 32 32 02 09 00 00 31 " +
                "2E 54 36 30 2E 30 32 33 02 09 00 00 31 2E 54 36 " +
                "30 2E 30 32 33 02 09 00 00 31 2E 54 36 30 2E 30 " +
                "32 33 02 09 00 00 31 2E 54 36 30 2E 30 33 33 02 " +
                "09 00 00 31 2E 54 36 30 2E 30 33 33 02 09 00 00 " +
                "31 2E 54 36 30 2E 30 33 33 02 09 00 00 31 2E 54 " +
                "36 30 2E 30 33 34 02 09 00 00 31 2E 54 36 30 2E " +
                "30 33 34 02 09 00 00 31 2E 54 36 30 2E 30 33 34 " +
                "02 09 00 00 31 2E 54 36 30 2E 30 33 35 02 09 00 " +
                "00 31 2E 54 36 30 2E 30 33 35 02 09 00 00 31 2E " +
                "54 36 30 2E 30 33 35 02 09 00 00 31 2E 54 36 30 " +
                "2E 30 34 35 02 09 00 00 31 2E 54 36 30 2E 30 34 " +
                "35 02 09 00 00 31 2E 54 36 30 2E 30 34 35 02 09 " +
                "00 00 31 2E 54 36 30 2E 30 34 36 02 09 00 00 31 " +
                "2E 54 36 30 2E 30 34 36 02 09 00 00 31 2E 54 36 " +
                "30 2E 30 34 36 02 09 00 00 31 2E 54 36 30 2E 30 " +
                "34 37 02 09 00 00 31 2E 54 36 30 2E 30 34 37 02 " +
                "09 00 00 31 2E 54 36 30 2E 30 34 37 02 09 00 00 " +
                "31 2E 54 36 30 2E 30 35 37 02 09 00 00 31 2E 54 " +
                "36 30 2E 30 35 37 02 09 00 00 31 2E 54 36 30 2E " +
                "30 35 37 02 09 00 00 31 2E 54 36 30 2E 30 35 38 " +
                "02 09 00 00 31 2E 54 36 30 2E 30 35 38 02 09 00 " +
                "00 31 2E 54 36 30 2E 30 35 38 02 09 00 00 31 2E " +
                "54 36 30 2E 30 35 39 02 09 00 00 31 2E 54 36 30 " +
                "2E 30 35 39 02 09 00 00 31 2E 54 36 30 2E 30 35 " +
                "39 02 09 00 00 31 2E 54 36 30 2E 30 36 30 02 09 " +
                "00 00 31 2E 54 36 30 2E 30 36 30 02 09 00 00 31 " +
                "2E 54 36 30 2E 30 36 30 02 09 00 00 31 2E 54 36 " +
                "30 2E 30 35 30 02 09 00 00 31 2E 54 36 30 2E 30 " +
                "35 30 02 09 00 00 31 2E 54 36 30 2E 30 35 30 02 " +
                "09 00 00 31 2E 54 36 30 2E 30 34 39 02 09 00 00 " +
                "31 2E 54 36 30 2E 30 34 39 02 09 00 00 31 2E 54 " +
                "36 30 2E 30 34 39 02 09 00 00 31 2E 54 36 30 2E " +
                "30 34 38 02 09 00 00 31 2E 54 36 30 2E 30 34 38 " +
                "02 09 00 00 31 2E 54 36 30 2E 30 34 38 02 09 00 " +
                "00 31 2E 54 36 30 2E 30 33 38 02 09 00 00 31 2E " +
                "54 36 30 2E 30 33 38 02 09 00 00 31 2E 54 36 30 " +
                "2E 30 33 38 02 09 00 00 31 2E 54 36 30 2E 30 33 " +
                "37 02 09 00 00 31 2E 54 36 30 2E 30 33 37 02 09 " +
                "00 00 31 2E 54 36 30 2E 30 33 37 02 09 00 00 31 " +
                "2E 54 36 30 2E 30 33 36 02 09 00 00 31 2E 54 36 " +
                "30 2E 30 33 36 02 09 00 00 31 2E 54 36 30 2E 30 " +
                "33 36 02 09 00 00 31 2E 54 36 30 2E 30 32 36 02 " +
                "09 00 00 31 2E 54 36 30 2E 30 32 36 02 09 00 00 " +
                "31 2E 54 36 30 2E 30 32 36 02 09 00 00 31 2E 54 " +
                "36 30 2E 30 32 35 02 09 00 00 31 2E 54 36 30 2E " +
                "30 32 35 02 09 00 00 31 2E 54 36 30 2E 30 32 35 " +
                "02 09 00 00 31 2E 54 36 30 2E 30 32 34 02 09 00 " +
                "00 31 2E 54 36 30 2E 30 32 34 02 09 00 00 31 2E " +
                "54 36 30 2E 30 32 34 02 09 00 00 31 2E 54 36 30 " +
                "2E 30 31 34 02 09 00 00 31 2E 54 36 30 2E 30 31 " +
                "34 02 09 00 00 31 2E 54 36 30 2E 30 31 34 02 09 " +
                "00 00 31 2E 54 36 30 2E 30 31 33 02 09 00 00 31 " +
                "2E 54 36 30 2E 30 31 33 02 09 00 00 31 2E 54 36 " +
                "30 2E 30 31 33 02 09 00 00 31 2E 54 36 30 2E 30 " +
                "31 32 02 09 00 00 31 2E 54 36 30 2E 30 31 32 02 " +
                "09 00 00 31 2E 54 36 30 2E 30 31 32 02 09 00 00 " +
                "31 2E 54 36 30 2E 30 30 32 02 09 00 00 31 2E 54 " +
                "36 30 2E 30 30 32 02 09 00 00 31 2E 54 36 30 2E " +
                "30 30 32 02 09 00 00 31 2E 54 36 30 2E 30 30 31 " +
                "02 09 00 00 31 2E 54 36 30 2E 30 30 31 02 09 00 " +
                "00 31 2E 54 36 30 2E 30 30 31 02 09 00 00 31 2E " +
                "54 32 30 2E 31 37 32 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 37 32 02 09 00 00 31 2E 54 32 30 2E 31 37 " +
                "32 02 09 00 00 31 2E 54 32 30 2E 31 36 32 02 09 " +
                "00 00 31 2E 54 32 30 2E 31 36 32 02 09 00 00 31 " +
                "2E 54 32 30 2E 31 36 32 02 09 00 00 31 2E 54 32 " +
                "30 2E 31 36 31 02 09 00 00 31 2E 54 32 30 2E 31 " +
                "36 31 02 09 00 00 31 2E 54 32 30 2E 31 36 31 02 " +
                "09 00 00 31 2E 54 32 30 2E 31 36 30 02 09 00 00 " +
                "31 2E 54 32 30 2E 31 36 30 02 09 00 00 31 2E 54 " +
                "32 30 2E 31 36 30 02 09 00 00 31 2E 54 32 30 2E " +
                "31 35 30 02 09 00 00 31 2E 54 32 30 2E 31 35 30 " +
                "02 09 00 00 31 2E 54 32 30 2E 31 35 30 02 09 00 " +
                "00 31 2E 54 32 30 2E 31 34 39 02 09 00 00 31 2E " +
                "54 32 30 2E 31 34 39 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 34 39 02 09 00 00 31 2E 54 32 30 2E 31 34 " +
                "38 02 09 00 00 31 2E 54 32 30 2E 31 34 38 02 09 " +
                "00 00 31 2E 54 32 30 2E 31 34 38 02 09 00 00 31 " +
                "2E 54 32 30 2E 31 33 38 02 09 00 00 31 2E 54 32 " +
                "30 2E 31 33 38 02 09 00 00 31 2E 54 32 30 2E 31 " +
                "33 38 02 09 00 00 31 2E 54 32 30 2E 31 33 37 02 " +
                "09 00 00 31 2E 54 32 30 2E 31 33 37 02 09 00 00 " +
                "31 2E 54 32 30 2E 31 33 37 02 09 00 00 31 2E 54 " +
                "32 30 2E 31 33 36 02 09 00 00 31 2E 54 32 30 2E " +
                "31 33 36 02 09 00 00 31 2E 54 32 30 2E 31 33 36 " +
                "02 09 00 00 31 2E 54 32 30 2E 31 32 36 02 09 00 " +
                "00 31 2E 54 32 30 2E 31 32 36 02 09 00 00 31 2E " +
                "54 32 30 2E 31 32 36 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 32 35 02 09 00 00 31 2E 54 32 30 2E 31 32 " +
                "35 02 09 00 00 31 2E 54 32 30 2E 31 32 35 02 09 " +
                "00 00 31 2E 54 32 30 2E 31 32 34 02 09 00 00 31 " +
                "2E 54 32 30 2E 31 32 34 02 09 00 00 31 2E 54 32 " +
                "30 2E 31 32 34 02 09 00 00 31 2E 54 32 30 2E 31 " +
                "31 34 02 09 00 00 31 2E 54 32 30 2E 31 31 34 02 " +
                "09 00 00 31 2E 54 32 30 2E 31 31 34 02 09 00 00 " +
                "31 2E 54 32 30 2E 31 31 33 02 09 00 00 31 2E 54 " +
                "32 30 2E 31 31 33 02 09 00 00 31 2E 54 32 30 2E " +
                "31 31 33 02 09 00 00 31 2E 54 32 30 2E 31 31 32 " +
                "02 09 00 00 31 2E 54 32 30 2E 31 31 32 02 09 00 " +
                "00 31 2E 54 32 30 2E 31 31 32 02 09 00 00 31 2E " +
                "54 32 30 2E 31 30 32 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 30 32 02 09 00 00 31 2E 54 32 30 2E 31 30 " +
                "32 02 09 00 00 31 2E 54 32 30 2E 31 30 31 02 09 " +
                "00 00 31 2E 54 32 30 2E 31 30 31 02 09 00 00 31 " +
                "2E 54 32 30 2E 31 30 31 02 09 00 00 31 2E 54 32 " +
                "30 2E 31 30 30 02 09 00 00 31 2E 54 32 30 2E 31 " +
                "30 30 02 09 00 00 31 2E 54 32 30 2E 31 30 30 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 39 30 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 39 30 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 39 30 02 09 00 00 31 2E 54 32 30 2E " +
                "30 38 39 02 09 00 00 31 2E 54 32 30 2E 30 38 39 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 38 39 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 38 38 02 09 00 00 31 2E " +
                "54 32 30 2E 30 38 38 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 38 38 02 09 00 00 31 2E 54 32 30 2E 30 37 " +
                "38 02 09 00 00 31 2E 54 32 30 2E 30 37 38 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 37 38 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 37 37 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 37 37 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "37 37 02 09 00 00 31 2E 54 32 30 2E 30 37 36 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 37 36 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 37 36 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 36 36 02 09 00 00 31 2E 54 32 30 2E " +
                "30 36 36 02 09 00 00 31 2E 54 32 30 2E 30 36 36 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 36 35 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 36 35 02 09 00 00 31 2E " +
                "54 32 30 2E 30 36 35 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 36 34 02 09 00 00 31 2E 54 32 30 2E 30 36 " +
                "34 02 09 00 00 31 2E 54 32 30 2E 30 36 34 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 35 34 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 35 34 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 35 34 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "35 33 02 09 00 00 31 2E 54 32 30 2E 30 35 33 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 35 33 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 35 32 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 35 32 02 09 00 00 31 2E 54 32 30 2E " +
                "30 35 32 02 09 00 00 31 2E 54 32 30 2E 30 34 32 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 34 32 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 34 32 02 09 00 00 31 2E " +
                "54 32 30 2E 30 34 31 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 34 31 02 09 00 00 31 2E 54 32 30 2E 30 34 " +
                "31 02 09 00 00 31 2E 54 32 30 2E 30 34 30 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 34 30 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 34 30 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 33 30 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "33 30 02 09 00 00 31 2E 54 32 30 2E 30 33 30 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 32 39 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 32 39 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 32 39 02 09 00 00 31 2E 54 32 30 2E " +
                "30 32 38 02 09 00 00 31 2E 54 32 30 2E 30 32 38 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 32 38 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 31 38 02 09 00 00 31 2E " +
                "54 32 30 2E 30 31 38 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 31 38 02 09 00 00 31 2E 54 32 30 2E 30 31 " +
                "37 02 09 00 00 31 2E 54 32 30 2E 30 31 37 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 31 37 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 31 36 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 31 36 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "31 36 02 09 00 00 31 2E 54 32 30 2E 30 30 36 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 30 36 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 30 36 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 30 35 02 09 00 00 31 2E 54 32 30 2E " +
                "30 30 35 02 09 00 00 31 2E 54 32 30 2E 30 30 35 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 30 34 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 30 34 02 09 00 00 31 2E " +
                "54 32 30 2E 30 30 34 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 30 37 02 09 00 00 31 2E 54 32 30 2E 30 30 " +
                "37 02 09 00 00 31 2E 54 32 30 2E 30 30 37 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 30 38 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 30 38 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 30 38 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "30 39 02 09 00 00 31 2E 54 32 30 2E 30 30 39 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 30 39 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 31 39 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 31 39 02 09 00 00 31 2E 54 32 30 2E " +
                "30 31 39 02 09 00 00 31 2E 54 32 30 2E 30 32 30 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 32 30 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 32 30 02 09 00 00 31 2E " +
                "54 32 30 2E 30 32 31 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 32 31 02 09 00 00 31 2E 54 32 30 2E 30 32 " +
                "31 02 09 00 00 31 2E 54 32 30 2E 30 33 31 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 33 31 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 33 31 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 33 32 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "33 32 02 09 00 00 31 2E 54 32 30 2E 30 33 32 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 33 33 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 33 33 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 33 33 02 09 00 00 31 2E 54 32 30 2E " +
                "30 34 33 02 09 00 00 31 2E 54 32 30 2E 30 34 33 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 34 33 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 34 34 02 09 00 00 31 2E " +
                "54 32 30 2E 30 34 34 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 34 34 02 09 00 00 31 2E 54 32 30 2E 30 34 " +
                "35 02 09 00 00 31 2E 54 32 30 2E 30 34 35 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 34 35 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 35 35 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 35 35 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "35 35 02 09 00 00 31 2E 54 32 30 2E 30 35 36 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 35 36 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 35 36 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 35 37 02 09 00 00 31 2E 54 32 30 2E " +
                "30 35 37 02 09 00 00 31 2E 54 32 30 2E 30 35 37 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 36 37 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 36 37 02 09 00 00 31 2E " +
                "54 32 30 2E 30 36 37 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 36 38 02 09 00 00 31 2E 54 32 30 2E 30 36 " +
                "38 02 09 00 00 31 2E 54 32 30 2E 30 36 38 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 36 39 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 36 39 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 36 39 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "37 39 02 09 00 00 31 2E 54 32 30 2E 30 37 39 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 37 39 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 38 30 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 38 30 02 09 00 00 31 2E 54 32 30 2E " +
                "30 38 30 02 09 00 00 31 2E 54 32 30 2E 30 38 31 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 38 31 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 38 31 02 09 00 00 31 2E " +
                "54 32 30 2E 30 39 31 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 39 31 02 09 00 00 31 2E 54 32 30 2E 30 39 " +
                "31 02 09 00 00 31 2E 54 32 30 2E 30 39 32 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 39 32 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 39 32 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 39 33 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "39 33 02 09 00 00 31 2E 54 32 30 2E 30 39 33 02 " +
                "09 00 00 31 2E 54 32 30 2E 31 30 33 02 09 00 00 " +
                "31 2E 54 32 30 2E 31 30 33 02 09 00 00 31 2E 54 " +
                "32 30 2E 31 30 33 02 09 00 00 31 2E 54 32 30 2E " +
                "31 30 34 02 09 00 00 31 2E 54 32 30 2E 31 30 34 " +
                "02 09 00 00 31 2E 54 32 30 2E 31 30 34 02 09 00 " +
                "00 31 2E 54 32 30 2E 31 30 35 02 09 00 00 31 2E " +
                "54 32 30 2E 31 30 35 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 30 35 02 09 00 00 31 2E 54 32 30 2E 31 31 " +
                "35 02 09 00 00 31 2E 54 32 30 2E 31 31 35 02 09 " +
                "00 00 31 2E 54 32 30 2E 31 31 35 02 09 00 00 31 " +
                "2E 54 32 30 2E 31 31 36 02 09 00 00 31 2E 54 32 " +
                "30 2E 31 31 36 02 09 00 00 31 2E 54 32 30 2E 31 " +
                "31 36 02 09 00 00 31 2E 54 32 30 2E 31 31 37 02 " +
                "09 00 00 31 2E 54 32 30 2E 31 31 37 02 09 00 00 " +
                "31 2E 54 32 30 2E 31 31 37 02 09 00 00 31 2E 54 " +
                "32 30 2E 31 32 37 02 09 00 00 31 2E 54 32 30 2E " +
                "31 32 37 02 09 00 00 31 2E 54 32 30 2E 31 32 37 " +
                "02 09 00 00 31 2E 54 32 30 2E 31 32 38 02 09 00 " +
                "00 31 2E 54 32 30 2E 31 32 38 02 09 00 00 31 2E " +
                "54 32 30 2E 31 32 38 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 32 39 02 09 00 00 31 2E 54 32 30 2E 31 32 " +
                "39 02 09 00 00 31 2E 54 32 30 2E 31 32 39 02 09 " +
                "00 00 31 2E 54 32 30 2E 31 33 39 02 09 00 00 31 " +
                "2E 54 32 30 2E 31 33 39 02 09 00 00 31 2E 54 32 " +
                "30 2E 31 33 39 02 09 00 00 31 2E 54 32 30 2E 31 " +
                "34 30 02 09 00 00 31 2E 54 32 30 2E 31 34 30 02 " +
                "09 00 00 31 2E 54 32 30 2E 31 34 30 02 09 00 00 " +
                "31 2E 54 32 30 2E 31 34 31 02 09 00 00 31 2E 54 " +
                "32 30 2E 31 34 31 02 09 00 00 31 2E 54 32 30 2E " +
                "31 34 31 02 09 00 00 31 2E 54 32 30 2E 31 35 31 " +
                "02 09 00 00 31 2E 54 32 30 2E 31 35 31 02 09 00 " +
                "00 31 2E 54 32 30 2E 31 35 31 02 09 00 00 31 2E " +
                "54 32 30 2E 31 35 32 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 35 32 02 09 00 00 31 2E 54 32 30 2E 31 35 " +
                "32 02 09 00 00 31 2E 54 32 30 2E 31 35 33 02 09 " +
                "00 00 31 2E 54 32 30 2E 31 35 33 02 09 00 00 31 " +
                "2E 54 32 30 2E 31 35 33 02 09 00 00 31 2E 54 32 " +
                "30 2E 31 36 33 02 09 00 00 31 2E 54 32 30 2E 31 " +
                "36 33 02 09 00 00 31 2E 54 32 30 2E 31 36 33 02 " +
                "09 00 00 31 2E 54 32 30 2E 31 36 34 02 09 00 00 " +
                "31 2E 54 32 30 2E 31 36 34 02 09 00 00 31 2E 54 " +
                "32 30 2E 31 36 34 02 09 00 00 31 2E 54 32 30 2E " +
                "31 36 35 02 09 00 00 31 2E 54 32 30 2E 31 36 35 " +
                "02 09 00 00 31 2E 54 32 30 2E 31 36 35 02 09 00 " +
                "00 31 2E 54 36 30 2E 30 30 33 02 09 00 00 31 2E " +
                "54 36 30 2E 30 30 33 02 09 00 00 31 2E 54 36 30 " +
                "2E 30 30 33 02 09 00 00 31 2E 54 36 30 2E 30 30 " +
                "34 02 09 00 00 31 2E 54 36 30 2E 30 30 34 02 09 " +
                "00 00 31 2E 54 36 30 2E 30 30 34 02 09 00 00 31 " +
                "2E 54 36 30 2E 30 30 35 02 09 00 00 31 2E 54 36 " +
                "30 2E 30 30 35 02 09 00 00 31 2E 54 36 30 2E 30 " +
                "30 35 02 09 00 00 31 2E 54 36 30 2E 30 31 35 02 " +
                "09 00 00 31 2E 54 36 30 2E 30 31 35 02 09 00 00 " +
                "31 2E 54 36 30 2E 30 31 35 02 09 00 00 31 2E 54 " +
                "36 30 2E 30 31 36 02 09 00 00 31 2E 54 36 30 2E " +
                "30 31 36 02 09 00 00 31 2E 54 36 30 2E 30 31 36 " +
                "02 09 00 00 31 2E 54 36 30 2E 30 31 37 02 09 00 " +
                "00 31 2E 54 36 30 2E 30 31 37 02 09 00 00 31 2E " +
                "54 36 30 2E 30 31 37 02 09 00 00 31 2E 54 36 30 " +
                "2E 30 32 37 02 09 00 00 31 2E 54 36 30 2E 30 32 " +
                "37 02 09 00 00 31 2E 54 36 30 2E 30 32 37 02 09 " +
                "00 00 31 2E 54 36 30 2E 30 32 38 02 09 00 00 31 " +
                "2E 54 36 30 2E 30 32 38 02 09 00 00 31 2E 54 36 " +
                "30 2E 30 32 38 02 09 00 00 31 2E 54 36 30 2E 30 " +
                "32 39 02 09 00 00 31 2E 54 36 30 2E 30 32 39 02 " +
                "09 00 00 31 2E 54 36 30 2E 30 32 39 02 09 00 00 " +
                "31 2E 54 36 30 2E 30 33 39 02 09 00 00 31 2E 54 " +
                "36 30 2E 30 33 39 02 09 00 00 31 2E 54 36 30 2E " +
                "30 33 39 02 09 00 00 31 2E 54 36 30 2E 30 34 30 " +
                "02 09 00 00 31 2E 54 36 30 2E 30 34 30 02 09 00 " +
                "00 31 2E 54 36 30 2E 30 34 30 02 09 00 00 31 2E " +
                "54 36 30 2E 30 34 31 02 09 00 00 31 2E 54 36 30 " +
                "2E 30 34 31 02 09 00 00 31 2E 54 36 30 2E 30 34 " +
                "31 02 09 00 00 31 2E 54 36 30 2E 30 35 31 02 09 " +
                "00 00 31 2E 54 36 30 2E 30 35 31 02 09 00 00 31 " +
                "2E 54 36 30 2E 30 35 31 02 09 00 00 31 2E 54 36 " +
                "30 2E 30 35 32 02 09 00 00 31 2E 54 36 30 2E 30 " +
                "35 32 02 09 00 00 31 2E 54 36 30 2E 30 35 32 02 " +
                "09 00 00 31 2E 54 36 30 2E 30 35 33 02 09 00 00 " +
                "31 2E 54 36 30 2E 30 35 33 02 09 00 00 31 2E 54 " +
                "36 30 2E 30 35 33 02 09 00 00 31 2E 54 36 30 2E " +
                "30 35 36 02 09 00 00 31 2E 54 36 30 2E 30 35 36 " +
                "02 09 00 00 31 2E 54 36 30 2E 30 35 36 02 09 00 " +
                "00 31 2E 54 36 30 2E 30 35 35 02 09 00 00 31 2E " +
                "54 36 30 2E 30 35 35 02 09 00 00 31 2E 54 36 30 " +
                "2E 30 35 35 02 09 00 00 31 2E 54 36 30 2E 30 35 " +
                "34 02 09 00 00 31 2E 54 36 30 2E 30 35 34 02 09 " +
                "00 00 31 2E 54 36 30 2E 30 35 34 02 09 00 00 31 " +
                "2E 54 36 30 2E 30 34 34 02 09 00 00 31 2E 54 36 " +
                "30 2E 30 34 34 02 09 00 00 31 2E 54 36 30 2E 30 " +
                "34 34 02 09 00 00 31 2E 54 36 30 2E 30 34 33 02 " +
                "09 00 00 31 2E 54 36 30 2E 30 34 33 02 09 00 00 " +
                "31 2E 54 36 30 2E 30 34 33 02 09 00 00 31 2E 54 " +
                "36 30 2E 30 34 32 02 09 00 00 31 2E 54 36 30 2E " +
                "30 34 32 02 09 00 00 31 2E 54 36 30 2E 30 34 32 " +
                "02 09 00 00 31 2E 54 36 30 2E 30 33 32 02 09 00 " +
                "00 31 2E 54 36 30 2E 30 33 32 02 09 00 00 31 2E " +
                "54 36 30 2E 30 33 32 02 09 00 00 31 2E 54 36 30 " +
                "2E 30 33 31 02 09 00 00 31 2E 54 36 30 2E 30 33 " +
                "31 02 09 00 00 31 2E 54 36 30 2E 30 33 31 02 09 " +
                "00 00 31 2E 54 36 30 2E 30 33 30 02 09 00 00 31 " +
                "2E 54 36 30 2E 30 33 30 02 09 00 00 31 2E 54 36 " +
                "30 2E 30 33 30 02 09 00 00 31 2E 54 36 30 2E 30 " +
                "32 30 02 09 00 00 31 2E 54 36 30 2E 30 32 30 02 " +
                "09 00 00 31 2E 54 36 30 2E 30 32 30 02 09 00 00 " +
                "31 2E 54 36 30 2E 30 31 39 02 09 00 00 31 2E 54 " +
                "36 30 2E 30 31 39 02 09 00 00 31 2E 54 36 30 2E " +
                "30 31 39 02 09 00 00 31 2E 54 36 30 2E 30 31 38 " +
                "02 09 00 00 31 2E 54 36 30 2E 30 31 38 02 09 00 " +
                "00 31 2E 54 36 30 2E 30 31 38 02 09 00 00 31 2E " +
                "54 36 30 2E 30 30 38 02 09 00 00 31 2E 54 36 30 " +
                "2E 30 30 38 02 09 00 00 31 2E 54 36 30 2E 30 30 " +
                "38 02 09 00 00 31 2E 54 36 30 2E 30 30 37 02 09 " +
                "00 00 31 2E 54 36 30 2E 30 30 37 02 09 00 00 31 " +
                "2E 54 36 30 2E 30 30 37 02 09 00 00 31 2E 54 36 " +
                "30 2E 30 30 36 02 09 00 00 31 2E 54 36 30 2E 30 " +
                "30 36 02 09 00 00 31 2E 54 36 30 2E 30 30 36 02 " +
                "09 00 00 31 2E 54 32 30 2E 31 36 38 02 09 00 00 " +
                "31 2E 54 32 30 2E 31 36 38 02 09 00 00 31 2E 54 " +
                "32 30 2E 31 36 38 02 09 00 00 31 2E 54 32 30 2E " +
                "31 36 37 02 09 00 00 31 2E 54 32 30 2E 31 36 37 " +
                "02 09 00 00 31 2E 54 32 30 2E 31 36 37 02 09 00 " +
                "00 31 2E 54 32 30 2E 31 36 36 02 09 00 00 31 2E " +
                "54 32 30 2E 31 36 36 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 36 36 02 09 00 00 31 2E 54 32 30 2E 31 35 " +
                "36 02 09 00 00 31 2E 54 32 30 2E 31 35 36 02 09 " +
                "00 00 31 2E 54 32 30 2E 31 35 36 02 09 00 00 31 " +
                "2E 54 32 30 2E 31 35 35 02 09 00 00 31 2E 54 32 " +
                "30 2E 31 35 35 02 09 00 00 31 2E 54 32 30 2E 31 " +
                "35 35 02 09 00 00 31 2E 54 32 30 2E 31 35 34 02 " +
                "09 00 00 31 2E 54 32 30 2E 31 35 34 02 09 00 00 " +
                "31 2E 54 32 30 2E 31 35 34 02 09 00 00 31 2E 54 " +
                "32 30 2E 31 34 34 02 09 00 00 31 2E 54 32 30 2E " +
                "31 34 34                                       ";

            String record_0x03C =
                "         3C 00 62 05 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 34 34 02 09 00 00 31 2E 54 32 30 2E 31 34 " +
                "33 02 09 00 00 31 2E 54 32 30 2E 31 34 33 02 09 " +
                "00 00 31 2E 54 32 30 2E 31 34 33 02 09 00 00 31 " +
                "2E 54 32 30 2E 31 34 32 02 09 00 00 31 2E 54 32 " +
                "30 2E 31 34 32 02 09 00 00 31 2E 54 32 30 2E 31 " +
                "34 32 02 09 00 00 31 2E 54 32 30 2E 31 33 32 02 " +
                "09 00 00 31 2E 54 32 30 2E 31 33 32 02 09 00 00 " +
                "31 2E 54 32 30 2E 31 33 32 02 09 00 00 31 2E 54 " +
                "32 30 2E 31 33 31 02 09 00 00 31 2E 54 32 30 2E " +
                "31 33 31 02 09 00 00 31 2E 54 32 30 2E 31 33 31 " +
                "02 09 00 00 31 2E 54 32 30 2E 31 33 30 02 09 00 " +
                "00 31 2E 54 32 30 2E 31 33 30 02 09 00 00 31 2E " +
                "54 32 30 2E 31 33 30 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 32 30 02 09 00 00 31 2E 54 32 30 2E 31 32 " +
                "30 02 09 00 00 31 2E 54 32 30 2E 31 32 30 02 09 " +
                "00 00 31 2E 54 32 30 2E 31 31 39 02 09 00 00 31 " +
                "2E 54 32 30 2E 31 31 39 02 09 00 00 31 2E 54 32 " +
                "30 2E 31 31 39 02 09 00 00 31 2E 54 32 30 2E 31 " +
                "31 38 02 09 00 00 31 2E 54 32 30 2E 31 31 38 02 " +
                "09 00 00 31 2E 54 32 30 2E 31 31 38 02 09 00 00 " +
                "31 2E 54 32 30 2E 31 30 38 02 09 00 00 31 2E 54 " +
                "32 30 2E 31 30 38 02 09 00 00 31 2E 54 32 30 2E " +
                "31 30 38 02 09 00 00 31 2E 54 32 30 2E 31 30 37 " +
                "02 09 00 00 31 2E 54 32 30 2E 31 30 37 02 09 00 " +
                "00 31 2E 54 32 30 2E 31 30 37 02 09 00 00 31 2E " +
                "54 32 30 2E 31 30 36 02 09 00 00 31 2E 54 32 30 " +
                "2E 31 30 36 02 09 00 00 31 2E 54 32 30 2E 31 30 " +
                "36 02 09 00 00 31 2E 54 32 30 2E 30 39 36 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 39 36 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 39 36 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 39 35 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "39 35 02 09 00 00 31 2E 54 32 30 2E 30 39 35 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 39 34 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 39 34 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 39 34 02 09 00 00 31 2E 54 32 30 2E " +
                "30 38 34 02 09 00 00 31 2E 54 32 30 2E 30 38 34 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 38 34 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 38 33 02 09 00 00 31 2E " +
                "54 32 30 2E 30 38 33 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 38 33 02 09 00 00 31 2E 54 32 30 2E 30 38 " +
                "32 02 09 00 00 31 2E 54 32 30 2E 30 38 32 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 38 32 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 37 32 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 37 32 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "37 32 02 09 00 00 31 2E 54 32 30 2E 30 37 31 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 37 31 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 37 31 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 37 30 02 09 00 00 31 2E 54 32 30 2E " +
                "30 37 30 02 09 00 00 31 2E 54 32 30 2E 30 37 30 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 36 30 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 36 30 02 09 00 00 31 2E " +
                "54 32 30 2E 30 36 30 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 35 39 02 09 00 00 31 2E 54 32 30 2E 30 35 " +
                "39 02 09 00 00 31 2E 54 32 30 2E 30 35 39 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 35 38 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 35 38 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 35 38 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "34 38 02 09 00 00 31 2E 54 32 30 2E 30 34 38 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 34 38 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 34 37 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 34 37 02 09 00 00 31 2E 54 32 30 2E " +
                "30 34 37 02 09 00 00 31 2E 54 32 30 2E 30 34 36 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 34 36 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 34 36 02 09 00 00 31 2E " +
                "54 32 30 2E 30 33 36 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 33 36 02 09 00 00 31 2E 54 32 30 2E 30 33 " +
                "36 02 09 00 00 31 2E 54 32 30 2E 30 33 35 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 33 35 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 33 35 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 33 34 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "33 34 02 09 00 00 31 2E 54 32 30 2E 30 33 34 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 32 34 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 32 34 02 09 00 00 31 2E 54 " +
                "32 30 2E 30 32 34 02 09 00 00 31 2E 54 32 30 2E " +
                "30 32 33 02 09 00 00 31 2E 54 32 30 2E 30 32 33 " +
                "02 09 00 00 31 2E 54 32 30 2E 30 32 33 02 09 00 " +
                "00 31 2E 54 32 30 2E 30 32 32 02 09 00 00 31 2E " +
                "54 32 30 2E 30 32 32 02 09 00 00 31 2E 54 32 30 " +
                "2E 30 32 32 02 09 00 00 31 2E 54 32 30 2E 30 31 " +
                "32 02 09 00 00 31 2E 54 32 30 2E 30 31 32 02 09 " +
                "00 00 31 2E 54 32 30 2E 30 31 32 02 09 00 00 31 " +
                "2E 54 32 30 2E 30 31 31 02 09 00 00 31 2E 54 32 " +
                "30 2E 30 31 31 02 09 00 00 31 2E 54 32 30 2E 30 " +
                "31 31 02 09 00 00 31 2E 54 32 30 2E 30 31 30 02 " +
                "09 00 00 31 2E 54 32 30 2E 30 31 30 02 09 00 00 " +
                "31 2E 54 32 30 2E 30 31 30                     ";

            byte[]            data1 = HexRead.ReadFromString(record_0x0018 + record_0x03C);
            RecordInputStream in1   = TestcaseRecordInputStream.Create(data1);
            NameRecord        nr1   = new NameRecord(in1);

            assert_bug50244(nr1);

            byte[] data2 = nr1.Serialize();

            Assert.AreEqual(data1.Length, data2.Length);
            RecordInputStream in2 = TestcaseRecordInputStream.Create(data2);
            NameRecord        nr2 = new NameRecord(in2);

            assert_bug50244(nr2);
        }
コード例 #43
0
 public FeatSmartTag(RecordInputStream in1)
 {
     data = in1.ReadRemainder();
 }
コード例 #44
0
ファイル: PlotGrowthRecord.cs プロジェクト: ruo2012/Npoi.Core
        /**
         * Constructs a PlotGrowth record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public PlotGrowthRecord(RecordInputStream in1)
        {
            field_1_horizontalScale = in1.ReadInt();
            field_2_verticalScale   = in1.ReadInt();
        }
コード例 #45
0
        /**
         * Constructs a AxisUsed record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public AxisUsedRecord(RecordInputStream in1)
        {
            field_1_numAxis = in1.ReadShort();
        }
コード例 #46
0
 public SerAuxErrBarRecord(RecordInputStream ris)
     : base(ris)
 {
 }
コード例 #47
0
 public Chart3DBarShapeRecord(RecordInputStream in1)
 {
     field_1_riser = (byte)in1.ReadByte();
     field_2_taper = (byte)in1.ReadByte();
 }
コード例 #48
0
        /**
         * Constructs a DefaultDataLabelTextProperties record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public DefaultTextRecord(RecordInputStream in1)
        {
            field_1_categoryDataType = in1.ReadShort();
        }
コード例 #49
0
 public CellRangeAddress(RecordInputStream in1)
     : base(ReadUShortAndCheck(in1), in1.ReadUShort(), in1.ReadUShort(), in1.ReadUShort())
 {
 }
コード例 #50
0
        /**
         * Constructs a Area record and s its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public AreaRecord(RecordInputStream in1)
        {
            field_1_formatFlags = in1.ReadShort();
        }
コード例 #51
0
ファイル: RadarRecord.cs プロジェクト: yesonsik/npoi
 public RadarRecord(RecordInputStream ris)
     : base(ris)
 {
 }
コード例 #52
0
ファイル: SurfRecord.cs プロジェクト: FilRip/IMDEV.Commun
 public SurfRecord(RecordInputStream ris)
     : base(ris)
 {
 }
コード例 #53
0
 public UnknownPtg(RecordInputStream in1)
 {
     // doesn't need anything
 }
コード例 #54
0
 public YMultRecord(RecordInputStream ris)
     : base(ris)
 {
 }
コード例 #55
0
ファイル: PlotAreaRecord.cs プロジェクト: okevin/chama
        /**
         * Constructs a PlotArea record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public PlotAreaRecord(RecordInputStream in1)
        {
        }
コード例 #56
0
 /** Creates new FontFormatting */
 public BorderFormatting(RecordInputStream in1)
 {
     field_13_border_styles1 = in1.ReadInt();
     field_14_border_styles2 = in1.ReadInt();
 }
コード例 #57
0
        /**
         * Constructs a Frame record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public FrameRecord(RecordInputStream in1)
        {
            field_1_borderType = in1.ReadShort();
            field_2_options    = in1.ReadShort();
        }
コード例 #58
0
 public PageItemRecord(RecordInputStream in1)
 {
     isxvi = in1.ReadShort();
     isxvd = in1.ReadShort();
     idObj = in1.ReadShort();
 }
コード例 #59
0
        /**
         * Constructs a SeriesLabels record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public SeriesLabelsRecord(RecordInputStream in1)
        {
            field_1_formatFlags = in1.ReadShort();
        }
コード例 #60
0
ファイル: SerToCrtRecord.cs プロジェクト: zanhaipeng/npoi
        /**
         * Constructs a SeriesChartGroupIndex record and Sets its fields appropriately.
         *
         * @param in the RecordInputstream to Read the record from
         */

        public SerToCrtRecord(RecordInputStream in1)
        {
            field_1_chartGroupIndex = in1.ReadShort();
        }