Link to home
Start Free TrialLog in
Avatar of petersunrise
petersunrise

asked on

UDP multicast

I have a problem with the acquisition of UDP multicast packet from a LAN (using D7).
I'm searching to use INDY, but i'm not able to receive some packet.

Someone could help me?

Thanks a lot

Petersun
Avatar of Ferruccio Accalai
Ferruccio Accalai
Flag of Italy image

That's the fact with UDP. There's not insurance about the receiving of every sent data.
BTW take a look here how indy is used with UDP and other related infos http://delphi.about.com/library/weekly/aa101105a.htm
Avatar of petersunrise
petersunrise

ASKER

My problem is correlated with the use of UDP and Multicast:
In a Form i have inserted a IdIPMCastClient, and after the definition of MulticastGroup and Defaltport, no packet is received in the IPMCASTRead events.
Where i'm doing the error?

Thanks

PeterSunrise
Wich Indy version are you using? AFAIK there are problems for IdIPMCastClient related to the Indy 10 version due to wrong compiled dpks.

Maybe you're having the same matter.

https://forums.embarcadero.com/thread.jspa;jsessionid=CF641F5B74DE31621E9B1BA54C45F432?messageID=90173
https://forums.codegear.com/thread.jspa;jsessionid=ABF6862D36AF7762B4B521B0E9F6CB1E?messageID=90079
The version is Indy 9 and Delphi 7

Thanks

Petersun
ASKER CERTIFIED SOLUTION
Avatar of GeneralTackett
GeneralTackett
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
And the client

unit MainUnit;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  StdCtrls, WinSock, ScktComp, ClientControl, MProtocol, ComCtrls, ToolWin,
  Menus, ExtCtrls, Spin, ImgList;

type
  TMainForm = class(TForm)
    Memo1: TMemo;
    cs: TClientSocket;
    MCClientMainMenu: TMainMenu;
    File1: TMenuItem;
    Local1: TMenuItem;
    Remote1: TMenuItem;
    Tools1: TMenuItem;
    Help1: TMenuItem;
    Connect1: TMenuItem;
    N1: TMenuItem;
    Exit1: TMenuItem;
    About1: TMenuItem;
    ToolBar1: TToolBar;
    ToolButton1: TToolButton;
    Splitter1: TSplitter;
    Panel1: TPanel;
    PageControl1: TPageControl;
    TabSheet1: TTabSheet;
    TabSheet2: TTabSheet;
    TabSheet3: TTabSheet;
    TabSheet4: TTabSheet;
    StatusBar1: TStatusBar;
    Splitter2: TSplitter;
    Panel2: TPanel;
    Splitter3: TSplitter;
    Panel3: TPanel;
    StatusBar2: TStatusBar;
    StatusBar3: TStatusBar;
    lvLocal: TListView;
    ListView2: TListView;
    Label2: TLabel;
    Panel4: TPanel;
    SpinEdit1: TSpinEdit;
    Label1: TLabel;
    ToolBar2: TToolBar;
    ToolButton2: TToolButton;
    ToolButton3: TToolButton;
    ToolButton4: TToolButton;
    ToolButton5: TToolButton;
    ToolButton6: TToolButton;
    ToolButton7: TToolButton;
    ListView3: TListView;
    ImageList1: TImageList;
    ToolBar3: TToolBar;
    ToolButton8: TToolButton;
    ToolButton9: TToolButton;
    ToolButton10: TToolButton;
    ListView4: TListView;
    ToolBar4: TToolBar;
    ToolButton11: TToolButton;
    ToolButton12: TToolButton;
    ToolButton13: TToolButton;
    ListView5: TListView;
    lvRemote: TListView;
    ToolButton14: TToolButton;
    ToolButton15: TToolButton;
    ImageList2: TImageList;
    sd: TSaveDialog;
    ToolButton16: TToolButton;
    ToolButton18: TToolButton;
    procedure FormCreate(Sender: TObject);
    procedure FormDestroy(Sender: TObject);
    procedure csRead(Sender: TObject; Socket: TCustomWinSocket);
    procedure csConnect(Sender: TObject; Socket: TCustomWinSocket);
    procedure Splitter3CanResize(Sender: TObject; var NewSize: Integer;
      var Accept: Boolean);
    procedure Exit1Click(Sender: TObject);
    procedure ToolButton15Click(Sender: TObject);
    procedure ToolButton1Click(Sender: TObject);
    procedure Connect1Click(Sender: TObject);
    procedure ToolButton16Click(Sender: TObject);
    procedure About1Click(Sender: TObject);
    procedure csDisconnect(Sender: TObject; Socket: TCustomWinSocket);
    procedure ToolButton18Click(Sender: TObject);
  private
    { Private declarations }
    nRet:integer;
    stWSAData:WSADATA;
    sfList : TList;//file list from server;
    mcfCln : TMultiCastFileClient;
    CastAddr : String;
  public
    { Public declarations }
  end;

var
  MainForm: TMainForm;

procedure WriteLog(log:String);
implementation
{$R *.DFM}
var csLog:TMCriticalSection;
procedure WriteLog(log:String);
begin
     csLog.Enter;
     try
        MainForm.Memo1.Lines.Add(log);
     finally
     csLog.Leave;
     end;
end;

procedure TMainForm.FormCreate(Sender: TObject);
begin
     nRet:=WSAStartup($0202, stWSAData);
     sfList:=TList.Create;
     mcfCln:=TMultiCastFileClient.Create(Self);
end;

procedure TMainForm.FormDestroy(Sender: TObject);
begin
  mcfCln.ClearAll;
  mcfCln.Free;
  while sfList.Count>0 do
  begin
       Dispose(sfList[0]);
       sfList.Delete(0);      
  end;
  sfList.Free;
  WSACleanup;
end;

procedure TMainForm.csRead(Sender: TObject; Socket: TCustomWinSocket);
var pfli:PFileListItem;
    s:string;
    i:integer;
    aItem:TListItem;
begin
     i:=Socket.ReceiveLength;
     while i>=sizeof(TFileListItem) do
     begin
     new(pfli);
     i:=Socket.ReceiveBuf(pfli^,sizeof(TFileListItem));
     s:=copy(pfli.fname,0,pfli.namesize);
     memo1.lines.add({'size:'+inttostr(pfli.size)+#13#10+
                 'port:'+inttostr(pfli.port)+#13#10+
                 'namelength:'+inttostr(pfli.namesize)+#13#10+}
                 s);
     sfList.Add(pfli);
     aItem:=lvRemote.Items.Add;
     aItem.Caption:=s;
     aItem.SubItems.Add(inttostr(pfli.size));
     aItem.Data:=pfli;
     i:=Socket.ReceiveLength;
     end;
     lvRemote.Color:=clWindow;
     lvRemote.Enabled:=True;
end;

procedure TMainForm.csConnect(Sender: TObject; Socket: TCustomWinSocket);
var qb:TQueryBlockPkg;
    sAddr:TSockAddrIn;
begin
     sAddr:=cs.Socket.Addr;
     sAddr.sin_addr.S_un_b.s_b1:=chr(CAST_ADDR);
     CastAddr:=inet_ntoa(sAddr.sin_addr);
     StrCopy(PChar(@(qb.CmdStr[0])),PChar(CTRLCMD_LIST));
     cs.Socket.SendBuf(qb,sizeof(qb));
end;

procedure TMainForm.Splitter3CanResize(Sender: TObject;
  var NewSize: Integer; var Accept: Boolean);
begin
     if NewSize<40 then Accept:=False;
end;

procedure TMainForm.Exit1Click(Sender: TObject);
begin
     Close;
end;

procedure TMainForm.ToolButton15Click(Sender: TObject);
begin
     Exit1Click(Sender);
end;

procedure TMainForm.ToolButton1Click(Sender: TObject);
begin
     Connect1Click(Sender);
end;

procedure TMainForm.Connect1Click(Sender: TObject);
var input:String;
begin
     if InputQuery('Remote IP Address','Please input server ip here',input)
     then begin
          cs.Address:=input;
          cs.Active:=True;
          end;
end;

procedure TMainForm.ToolButton16Click(Sender: TObject);
var pfli:PFileListItem;
    i:integer;
begin
     if lvRemote.SelCount>0 then
     begin
          pfli:=PFileListItem(lvRemote.Selected.Data);
          sd.FileName:=lvRemote.Selected.Caption;
          if sd.Execute then
          begin
               memo1.Lines.Add(sd.FileName);
               mcfCln.Add(sd.FileName,CastAddr,pfli^.size,pfli^.port);
          end;
     end;
end;

procedure TMainForm.About1Click(Sender: TObject);
begin
     ShowMessage('Multicast File Transfer Client by She');
end;

procedure TMainForm.csDisconnect(Sender: TObject;
  Socket: TCustomWinSocket);
begin
     lvRemote.Items.Clear;
     lvRemote.Color:=clBtnFace;
     lvRemote.Enabled:=False;
end;

procedure TMainForm.ToolButton18Click(Sender: TObject);
begin
     cs.Close;
end;

initialization
csLog:=TMCriticalSection.Create;
finalization
csLog.Free;

end.
----------------------
object MainForm: TMainForm
  Left = 113
  Top = 104
  Width = 622
  Height = 435
  Caption = 'File Cast Client'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clBlack
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  Menu = MCClientMainMenu
  OldCreateOrder = False
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  PixelsPerInch = 96
  TextHeight = 13
  object Splitter1: TSplitter
    Left = 0
    Top = 185
    Width = 614
    Height = 3
    Cursor = crVSplit
    Align = alTop
  end
  object Splitter2: TSplitter
    Left = 185
    Top = 188
    Width = 3
    Height = 201
    Cursor = crHSplit
    OnCanResize = Splitter3CanResize
  end
  object Splitter3: TSplitter
    Left = 401
    Top = 188
    Width = 3
    Height = 201
    Cursor = crHSplit
    OnCanResize = Splitter3CanResize
  end
  object Memo1: TMemo
    Left = 0
    Top = 40
    Width = 614
    Height = 145
    Align = alTop
    ReadOnly = True
    TabOrder = 0
  end
  object ToolBar1: TToolBar
    Left = 0
    Top = 0
    Width = 614
    Height = 40
    AutoSize = True
    ButtonHeight = 38
    ButtonWidth = 39
    Caption = 'ToolBar1'
    Flat = True
    Images = ImageList2
    TabOrder = 1
    object ToolButton1: TToolButton
      Left = 0
      Top = 0
      Caption = 'ToolButton1'
      ImageIndex = 0
      OnClick = ToolButton1Click
    end
    object ToolButton14: TToolButton
      Left = 39
      Top = 0
      Width = 8
      Caption = 'ToolButton14'
      ImageIndex = 1
      Style = tbsSeparator
    end
    object ToolButton16: TToolButton
      Left = 47
      Top = 0
      Caption = 'ToolButton16'
      ImageIndex = 2
      OnClick = ToolButton16Click
    end
    object ToolButton18: TToolButton
      Left = 86
      Top = 0
      Caption = 'ToolButton18'
      ImageIndex = 3
      OnClick = ToolButton18Click
    end
    object ToolButton15: TToolButton
      Left = 125
      Top = 0
      Caption = 'ToolButton15'
      ImageIndex = 1
      OnClick = ToolButton15Click
    end
  end
  object Panel1: TPanel
    Left = 0
    Top = 188
    Width = 185
    Height = 201
    Align = alLeft
    BevelOuter = bvNone
    Caption = 'Panel1'
    TabOrder = 2
    object PageControl1: TPageControl
      Left = 0
      Top = 0
      Width = 185
      Height = 182
      ActivePage = TabSheet2
      Align = alClient
      Style = tsFlatButtons
      TabIndex = 1
      TabOrder = 0
      object TabSheet1: TTabSheet
        Caption = 'Queue'
        object ListView2: TListView
          Left = 0
          Top = 30
          Width = 177
          Height = 121
          Align = alClient
          Columns = <
            item
              Caption = 'FileName'
              Width = 100
            end
            item
              Caption = 'Size'
            end>
          TabOrder = 0
          ViewStyle = vsReport
        end
        object ToolBar2: TToolBar
          Left = 0
          Top = 0
          Width = 177
          Height = 30
          AutoSize = True
          ButtonHeight = 30
          ButtonWidth = 31
          Caption = 'ToolBar2'
          EdgeBorders = []
          Flat = True
          Images = ImageList1
          TabOrder = 1
          object ToolButton2: TToolButton
            Left = 0
            Top = 0
            Caption = 'ToolButton2'
            ImageIndex = 0
          end
          object ToolButton3: TToolButton
            Left = 31
            Top = 0
            Width = 8
            Caption = 'ToolButton3'
            ImageIndex = 1
            Style = tbsSeparator
          end
          object ToolButton4: TToolButton
            Left = 39
            Top = 0
            Caption = 'ToolButton4'
            ImageIndex = 1
          end
          object ToolButton5: TToolButton
            Left = 70
            Top = 0
            Width = 8
            Caption = 'ToolButton5'
            ImageIndex = 2
            Style = tbsSeparator
          end
          object ToolButton6: TToolButton
            Left = 78
            Top = 0
            Caption = 'ToolButton6'
            ImageIndex = 2
          end
          object ToolButton7: TToolButton
            Left = 109
            Top = 0
            Caption = 'ToolButton7'
            ImageIndex = 3
          end
        end
      end
      object TabSheet2: TTabSheet
        Caption = 'Threads'
        Font.Charset = DEFAULT_CHARSET
        Font.Color = clNavy
        Font.Height = -11
        Font.Name = 'MS Sans Serif'
        Font.Style = []
        ImageIndex = 1
        ParentFont = False
        object Label2: TLabel
          Left = 0
          Top = 25
          Width = 177
          Height = 26
          Align = alTop
          Caption = '0 threads running, total transfer speed is 0.0 kb/s'
          Color = clBtnFace
          ParentColor = False
          WordWrap = True
        end
        object Panel4: TPanel
          Left = 0
          Top = 0
          Width = 177
          Height = 25
          Align = alTop
          BevelOuter = bvNone
          TabOrder = 0
          object Label1: TLabel
            Left = 48
            Top = 8
            Width = 57
            Height = 13
            Caption = 'max threads'
            Font.Charset = DEFAULT_CHARSET
            Font.Color = clBlack
            Font.Height = -11
            Font.Name = 'MS Sans Serif'
            Font.Style = []
            ParentFont = False
          end
          object SpinEdit1: TSpinEdit
            Left = 8
            Top = 3
            Width = 33
            Height = 22
            MaxValue = 10
            MinValue = 1
            TabOrder = 0
            Value = 1
          end
        end
        object ListView3: TListView
          Left = 0
          Top = 51
          Width = 177
          Height = 100
          Align = alClient
          Columns = <
            item
              Caption = 'FileName'
              Width = 120
            end
            item
              Caption = 'Status'
            end>
          TabOrder = 1
          ViewStyle = vsReport
        end
      end
      object TabSheet3: TTabSheet
        Caption = 'Downloads'
        ImageIndex = 2
        object ToolBar3: TToolBar
          Left = 0
          Top = 0
          Width = 177
          Height = 29
          Caption = 'ToolBar3'
          EdgeBorders = []
          Flat = True
          TabOrder = 0
          object ToolButton8: TToolButton
            Left = 0
            Top = 0
            Caption = 'ToolButton8'
            ImageIndex = 0
          end
          object ToolButton9: TToolButton
            Left = 23
            Top = 0
            Width = 8
            Caption = 'ToolButton9'
            ImageIndex = 1
            Style = tbsSeparator
          end
          object ToolButton10: TToolButton
            Left = 31
            Top = 0
            Caption = 'ToolButton10'
            ImageIndex = 1
          end
        end
        object ListView4: TListView
          Left = 0
          Top = 29
          Width = 177
          Height = 122
          Align = alClient
          Columns = <
            item
              Caption = 'FileName'
              Width = 100
            end
            item
              Caption = 'Size'
            end>
          TabOrder = 1
          ViewStyle = vsReport
        end
      end
      object TabSheet4: TTabSheet
        Caption = 'Failures'
        ImageIndex = 3
        object ToolBar4: TToolBar
          Left = 0
          Top = 0
          Width = 177
          Height = 29
          Caption = 'ToolBar3'
          EdgeBorders = []
          Flat = True
          TabOrder = 0
          object ToolButton11: TToolButton
            Left = 0
            Top = 0
            Caption = 'ToolButton8'
            ImageIndex = 0
          end
          object ToolButton12: TToolButton
            Left = 23
            Top = 0
            Width = 8
            Caption = 'ToolButton9'
            ImageIndex = 1
            Style = tbsSeparator
          end
          object ToolButton13: TToolButton
            Left = 31
            Top = 0
            Caption = 'ToolButton10'
            ImageIndex = 1
          end
        end
        object ListView5: TListView
          Left = 0
          Top = 29
          Width = 177
          Height = 122
          Align = alClient
          Columns = <
            item
              Caption = 'FileName'
              Width = 100
            end
            item
              Caption = 'Size'
            end>
          TabOrder = 1
          ViewStyle = vsReport
        end
      end
    end
    object StatusBar1: TStatusBar
      Left = 0
      Top = 182
      Width = 185
      Height = 19
      Panels = <>
      SimplePanel = False
    end
  end
  object Panel2: TPanel
    Left = 188
    Top = 188
    Width = 213
    Height = 201
    Align = alLeft
    BevelOuter = bvNone
    Caption = 'Panel2'
    TabOrder = 3
    object StatusBar2: TStatusBar
      Left = 0
      Top = 182
      Width = 213
      Height = 19
      Panels = <>
      SimplePanel = False
    end
    object lvLocal: TListView
      Left = 0
      Top = 0
      Width = 213
      Height = 182
      Align = alClient
      Columns = <
        item
          Caption = 'FileName'
          Width = 150
        end
        item
          Caption = 'Size'
        end>
      TabOrder = 1
      ViewStyle = vsReport
    end
  end
  object Panel3: TPanel
    Left = 404
    Top = 188
    Width = 210
    Height = 201
    Align = alClient
    BevelOuter = bvNone
    Caption = 'Panel3'
    TabOrder = 4
    object StatusBar3: TStatusBar
      Left = 0
      Top = 182
      Width = 210
      Height = 19
      Panels = <>
      SimplePanel = False
    end
    object lvRemote: TListView
      Left = 0
      Top = 0
      Width = 210
      Height = 182
      Align = alClient
      Color = clBtnFace
      Columns = <
        item
          Caption = 'FileName'
          Width = 150
        end
        item
          Caption = 'Size'
        end>
      Enabled = False
      TabOrder = 1
      ViewStyle = vsReport
    end
  end
  object cs: TClientSocket
    Active = False
    Address = '127.0.0.1'
    ClientType = ctNonBlocking
    Port = 1406
    OnConnect = csConnect
    OnDisconnect = csDisconnect
    OnRead = csRead
    Left = 416
  end
  object MCClientMainMenu: TMainMenu
    Left = 200
    Top = 4
    object File1: TMenuItem
      Caption = '&File'
      object Connect1: TMenuItem
        Caption = '&Connect ...'
        OnClick = Connect1Click
      end
      object N1: TMenuItem
        Caption = '-'
      end
      object Exit1: TMenuItem
        Caption = 'E&xit'
        OnClick = Exit1Click
      end
    end
    object Local1: TMenuItem
      Caption = '&Local'
    end
    object Remote1: TMenuItem
      Caption = '&Remote'
    end
    object Tools1: TMenuItem
      Caption = '&Tools'
    end
    object Help1: TMenuItem
      Caption = '&Help'
      object About1: TMenuItem
        Caption = '&About ...'
        OnClick = About1Click
      end
    end
  end
  object ImageList1: TImageList
    Height = 24
    Width = 24
    Left = 296
    Top = 2
    Bitmap = {
      494C010104000900040018001800FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
      0000000000003600000028000000600000004800000001001000000000000036
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000010421042
      1042000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000104200000000
      0000104200000000000000000000000000000000000000000000000000000000
      000000000000000000000000000010424A294A294A294A294A294A294A294A29
      4A294A294A294A29000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000CE39CE39CE39CE39CE39CE39CE39CE39CE39CE39
      CE39CE39CE39CE390000000000000000000000000000000000000000FF7FFF7F
      FF7F000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000104239673967396739673967396739673967
      3967396739674A290000000000000000000000000000000000000000CE39CE39
      CE39CE39CE39CE39CE39CE39CE39CE39CE39CE39CE39CE390000000000000000
      000000000000000000000000CE397B6FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F
      FF7FFF7FF75E734ECE39000000000000000000000000000000000000FF7FFF7F
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000000000001042FE7FFE7FFE7F9C739C739C739C739C73
      9C739C7339674A290000000000000000000000000000000000000000CE397B6F
      FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FF75E734ECE39000000000000
      000000000000000000000000CE397B6FCE39CE39CE39CE39CE39CE39CE39CE39
      CE39CE39F75E1042EF3D00000000000000000000000000000000000000000000
      F75E104210421042104210420000000000000000000000000000000000000000
      00000000000000000000000000001042FE7FFE7FFE7FBD779C739C739C739C73
      9C739C7339674A290000000000000000000000000000000000000000CE397B6F
      CE39CE39CE39CE39CE39CE39CE39CE39CE39CE39F75E1042EF3D000000000000
      000000000000000000000000CE397B6FF75EF75EF75EF75EF75EF75EF75E734E
      734EF75EF75E734ECE3900000000000000000000000000000000000000001042
      1042000000000000000000001042104210420000000000000000000000000000
      00000000000000000000000000001042FE7FFE7FFE7FFE7FBD779C739C739C73
      9C739C7339674A290000000000000000000000000000000000000000CE397B6F
      F75EF75EF75EF75EF75EF75EF75E734E734EF75EF75E734ECE39000000000000
      000000000000000000000000CE39F75EF75EF75EF75EF75EF75EF75EF75EF75E
      E0030002734E734ECE3900000000000000000000000000000000000010420000
      0000FF7FFF7FFF7FFF7FFF7F0000000000001042000000000000000000000000
      00000000000000000000000000001042FE7FFE7FFE7FFE7FBD77BD779C739C73
      9C739C7339674A290000000000000000000000000000000000000000CE39F75E
      F75EF75EF75EF75EF75EF75EF75EF75EE0030002734E734ECE39000000000000
      000000000000000000000000CE39FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F
      FF7FFF7FFF7F734ECE390000000000000000000000000000000010420000FF7F
      FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0000104200000000000000000000
      00000000000000000000000000001042FE7FFE7FFE7FFE7FFE7FBD77BD779C73
      9C739C7339674A290000000000000000000000000000000000000000CE39FF7F
      FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F734ECE39000000000000
      0000000000000000000000000000EF3DF75EF75EF75EF75EF75EF75EF75EF75E
      F75EA514F75EF75ECE390000000000000000000000000000000010420000FF7F
      FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F000010420000000000000000
      00000000000000000000000000001042FE7FFE7FFE7FFE7FFE7FBD77BD77BD77
      9C739C7339674A2900000000000000000000000000000000000000000000EF3D
      F75EA514A514A514F75EF75EF75EF75EF75EF75EF75EF75ECE39000000000000
      00000000000000000000000000000000CE39CE39CE39CE39CE39CE39CE39CE39
      A514006CA514CE39CE39000000000000000000000000000000000000FF7FFF7F
      FF7F1000100010001000FF7F100010001000FF7FFF7F00000000000000000000
      00000000000000000000000000001042FE7FFE7FFE7FFE7FFE7FFE7FBD77BD77
      9C739C7339674A29000000000000000000000000000000000000000000000000
      CE39A514F31BA514CE39CE39A514A514CE39CE39CE39CE39CE39000000000000
      000000000000000000000000000000000000000000000000000000000000A514
      006C006C006CA5140000000000000000000000000000000000000000FF7FFF7F
      FF7FFF7F1000FF7FFF7FFF7FFF7F1000FF7FFF7FFF7F00000000000000000000
      00000000000000000000000000001042FE7FFE7FFE7FFE7FFE7FFE7FFE7FBD77
      9C739C7339674A29000000000000000000000000000000000000000000000000
      0000A514F31BA51400000000A514F31BA5140000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000A514006C
      006C006C006C006CA5140000000000000000000000000000000000000000FF7F
      FF7FFF7FFF7F1000FF7FFF7F100010001000FF7FFF7F00000000000000000000
      00000000000000000000000000001042FE7FFE7FFE7FFE7FFE7FFE7FFE7FBD77
      9C733967734E4A29000000000000000000000000000000000000000000000000
      0000A514F31BA514A514A514A514F31BF31BA514000000000000000000000000
      00000000000000000000000000000000000000000000000000000000A514A514
      A514006CA514A514A5140000000000000000000000000000000000000000FF7F
      FF7FFF7F100010001000FF7FFF7FFF7FFF7FFF7F000000000000000000000000
      00000000000000000000000000001042FE7FFE7FFE7FFE7FFE7FFE7FFE7FBD77
      3967734EEF3D4A29000000000000000000000000000000000000000000000000
      0000A514F31BF31BF31BF31BF31BF31BF31BF31BA51400000000000000000000
      00000000000000000000000000000000000000000000A514A514A514A5142925
      2925006CA5140000000000000000000000000000000000000000000000000000
      0000FF7FFF7FFF7FFF7FFF7FFF7FFF7F00000000000000000000000000000000
      00000000000000000000000000001042FE7FFE7FFE7FFE7FFE7FFE7FFE7F3967
      4A29C618C618C618000000000000000000000000000000000000000000000000
      0000A514A514A514A514A514A514F31BF31BA514000000000000000000000000
      00000000000000000000000000000000000000000000A514006C006C006C006C
      006C006CA5140000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000000000001042FE7FFE7FFE7FFE7FFE7FFE7FFE7F3967
      734EFE7F4A290000000000000000000000000000000000000000000000000000
      000000000000000000000000A514F31BA5140000000000000000000000000000
      00000000000000000000000000000000000000000000A514A514A514A514A514
      A514A514A5140000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000000000001042FE7FFE7FFE7FFE7FFE7FFE7FFE7F3967
      734E4A2900000000000000000000000000000000000000000000000000000000
      000000000000000000000000A514A51400000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000104210421042104210421042104210421042
      1042000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000000000424D3E000000000000003E000000
      2800000060000000480000000100010000000000600300000000000000000000
      000000000000000000000000FFFFFF0000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
      FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
      F8FFFFFFFFFFFFFFFFFC001FF07FFFFC001FFC001FF8000FF07FFFFC001FF800
      0FF80007F0FFFFFC001FF80007F80007F807FFFC001FF80007F80007FC00FFFC
      001FF80007F80007F8007FFC001FF80007F80007F0003FFC001FF80007FC0007
      F0001FFC001FFC0007FE000FF0001FFC001FFE000FFFFC1FF0001FFC001FFF18
      FFFFF80FF8001FFC001FFF007FFFF80FF8003FFC001FFF003FFFC03FFC007FFC
      001FFF007FFFC03FFF01FFFC003FFFF8FFFFC03FFFFFFFFC007FFFF9FFFFFFFF
      FFFFFFFC00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
      FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000
      000000000000}
  end
  object ImageList2: TImageList
    Height = 32
    Width = 32
    Left = 336
    Top = 2
    Bitmap = {
      494C010104000900040020002000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
      0000000000003600000028000000800000006000000001001000000000000060
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000E0450029000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000004A294A294A294A290000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000E045E045002900000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000DF5ADF5ABF3500004A294A294A294A29000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000E045E04500290000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000DF5A173CDF5ADF5ABF35BF3500004A294A294A294A294A290000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000008210000630C630C000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000E045CE7FE0450029000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000DF5ADF5A173CDF5ADF5ABF35BF3500004A294A294A294A294A294A29
      4A29000000000000000000000000000000000000000000000000000000000000
      0000104210421042104210421042104210421042104210421042104210421042
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000004A2921048C3194524A290000D65A00000000E77F
      E77FE77F00000000000000000000000000000000000000000000000000000000
      000000000000000000000000E045CE7F607FE045002900000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000DF5ADF5A173CDF5ADF5ABF35BF3500004A294A294A294A294A294A29
      4A294A294A290000000000000000000000000000000000000000000000000000
      0000104218631863186318631863186318631863186318631863186318631042
      1042000000000000000000000000000000000000000000000000000000000000
      0000000000000000524A0000C618EF3D7B6FB556F03D0000D65AE77FE77FE77F
      E77FE77F00000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000E045CE7F607FE04500290000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000DF5ADF5A173CDF5ADF5ABF35BF3500004A294A294A294A294A294A29
      4A294A294A290000000000000000000000000000000000000000000000000000
      000010421863FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F18631042
      1042104200000000000000000000000000000000000000000000000000000000
      0000000000003146A5149452DE7B9C735A6BB556CE39A514D65AE77FE77FE77F
      00000000E77FE77F000000000000000000000000000000000000000000000000
      000000000000E045E045E045E045E045CE7F607F607FE0450029000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000DF5ADF5A173CDF5ADF5ABF35BF3500004A294A294A29000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000104218631042104210421042104210421042104210421042104218631042
      1042104200000000000000000000000000000000000000000000000000000000
      00000000D65A524AFF7FFF7FFF7FBD77B55631468C3100000000000000000000
      E77FE77FE77FE77F000000000000000000000000000000000000000000000000
      0000000000000000E045F67FCE7F607F607F607F607F607FE045002900000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000DF5ADF5A173CDF5A173C173CBF3500004A2900000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000010421863FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F18631863186318631042
      104210420000000000000000000000000000000000000000000000000000CE39
      CE39CE39CE39524AFF7FFF7F94523146AD35104231468C318C314208D65AE77F
      E77FE77F00000000000000000000000000000000000000000000000000000000
      0000000000000000E045F67FCE7F607F607F607F607F607F607FE04500290000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000DF5ADF5A173CDF5ADF5A173C173C0000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000104218631042104210421042104210421042104218630002000218631042
      10421042000000000000000000000000000000000000000000000000CE394056
      607F607F607F524A5A6B8C31D65A5A6B5A6BBD773967D65ACE39292500000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000E045F67FCE7F607FE045E045E045E045E045E0450000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000DF5ADF5ADF5ADF5ADF5ABF35173C0000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000104218631863186318631863186318631863186318630002E00318631042
      10421042000000000000000000000000000000000000000000000000CE39607F
      607FA514A51431468C31FF7FFF7FFF7F9C739C737B6F18631863F75EF03D0000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000E045E045F67F607F607FE04500290000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000DF5ADF5ADF5ADF5ADF5ABF35BF35173C000000000000000000000000
      0000004000400000000000000000000000000000000000000000000000000000
      00001042FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F1042
      10421042000000000000000000000000000000000000000000000000CE39607F
      A514000000005A6B8C31734EDE7BFF7FBD779C7339677B6FDE7BFF7FFF7F0000
      0000000000000000000000000000000000000000000000000000000000000000
      E045E045E045E045E045E045E045E045CE7F607F607FE0450029000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000DF5ADF5ADF5ADF5ADF5ADF5ABF35BF35BF35000000000000000000000000
      00000040007C0040000000000000000000000000000000000000000000000000
      0000000010421863186300401042186318631863186318631863186318631863
      10421042000000000000000000000000000000000000000000000000CE39607F
      A51400000000000031468C311042CE398C31AD35A51400000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000E045F67FCE7F607F607F607F607F607F607F607F607FE045002900000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000DF5ADF5ADF5ADF5ADF5ADF5ABF35BF35BF35000000000000004000400040
      00400040007C007C004000000000000000000000000000000000000000000000
      00000000000000000040007C0040104218631863186318631863186318631863
      18631042000000000000000000000000000000000000000000000000CE39607F
      A514000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000E045F67FCE7F607F607F607F607F607F607F607F607F607FE04500290000
      0000000000000000000000000000000000000000000000000000000000000000
      0000DF5ADF5ADF5ADF5ADF5ADF5ABF35BF35BF350000000000000040007C007C
      007C007C007C007C007C00400000000000000000000000000000000000000000
      0000000000000040007C007C007C004010421042104210421042104210421042
      10421042000000000000000000000000000000000000000000000000CE39607F
      607FA51400000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000E045F67FCE7F607F607F607F607FE045E045E045E045E045E0450000
      0000000000000000000000000000000000000000000000000000000000000000
      0000DF5ADF5ADF5ADF5AFF7FFF7FDF5ABF35BF35000000000000004000400040
      00400040007C007C004000000000000000000000000000000000000000000000
      000000000040007C007C007C007C007C00401042000000000000000000000000
      00000000000000000000000000000000000000000000000000000000D65ACE39
      607F607FA5140000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000E045F67FCE7F607F607F607F607F607FE04500290000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000DF5ADF5ADF5AFF7FDF5ADF5ADF5ADF5ABF35000000000000000000000000
      00000040007C0040000000000000000000000000000000000000000000000000
      00000000004000400040007C0040004000400000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000D65A
      CE39607F607FA514000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000E045F67FCE7F607F607F607F607F607FE0450029000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000DF5AFF7FFF7FBF35BF35BF35BF35BF35DF5A000000000000000000000000
      0000004000400000000000000000000000000000000000000000000000000000
      00000000000000000040007C0040104200000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      D65ACE39607FA514000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000E045F67FCE7F607F607F607F607F607F607FE045002900000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000FF7FDF5ABF35000000000000BF3500000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000040007C0040104200000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      D65ACE39607FA514000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000E045F67FCE7F607F607F607F607F607F607FE04500290000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000DF5A00004A2929254A29000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000040007C0040104200000000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000D65A
      CE39607F607FA514000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000E045F67FCE7F607F607F607F607F607F607F607FE0450029
      0000000000000000000000000000000000000000000000000000000000000000
      00000000630C2925B556B5564A29292500000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000040007C0040104200000000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000CE39
      607F607FA5140000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000E045F67FCE7F607F607F607F607F607F607F607FE045
      0029000000000000000000000000000000000000000000000000000000000000
      00000000A514B5569C731863524A292500000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000040007C0040104200000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      607F104200000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000E045E045E045E045E045E045E045E045E045E045E045
      E045000000000000000000000000000000000000000000000000000000000000
      00000000A5149C73FF7F9C73B556292500000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000004000400040000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000A5149C73524A2925630C00000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000630C00002925000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000000000424D3E000000000000003E000000
      2800000080000000600000000100010000000000000600000000000000000000
      000000000000000000000000FFFFFF0000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
      FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
      FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3FFFFFFF01FFFFFFFFFFFFFFFFFFF
      FFF1FFFFFFC00FFFFFFFFFFFFFFFFFFFFFF8FFFFFF0003FFFF8001FFFFFE0C7F
      FFF87FFFFF0000FFFF0000FFFFF8003FFFF83FFFFF00003FFF00007FFFE0001F
      FFFC1FFFFF00003FFF00003FFFC0000FFFC00FFFFF000FFFFF00003FFF80000F
      FFE007FFFF003FFFFF00003FFC00001FFFE003FFFF007FFFFF00003FF800007F
      FFF003FFFF007FFFFF00003FF80001FFFFF01FFFFF003F3FFF00003FF8C001FF
      FE000FFFFE003F1FFF80003FF8E003FFFF0007FFFE00300FFFE0003FF8FFFFFF
      FF0003FFFE003007FFC0007FF87FFFFFFF8003FFFE00300FFF807FFFF83FFFFF
      FF801FFFFE003F1FFF80FFFFFC1FFFFFFFC00FFFFE003F3FFFE1FFFFFE1FFFFF
      FFC007FFFE007FFFFFE1FFFFFE1FFFFFFFE003FFFF01FFFFFFE1FFFFFC1FFFFF
      FFE001FFFF80FFFFFFE1FFFFFC3FFFFFFFF000FFFF80FFFFFFE1FFFFFE7FFFFF
      FFF000FFFF80FFFFFFE3FFFFFFFFFFFFFFFFFFFFFFC1FFFFFFFFFFFFFFFFFFFF
      FFFFFFFFFFE3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
      FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
      FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000
      000000000000}
  end
  object sd: TSaveDialog
    Left = 376
    Top = 2
  end
end
-------------------
unit ClnCastThread;

interface

uses
  Windows, Classes, SysUtils, WinSock, MProtocol, ScktComp;
const
     TIMEOUT_SECONDS  = 30;
type
  ip_mreq = record
      imr_multiaddr: in_addr ;      // IP multicast address of group */
      imr_interface: in_addr ;      // local IP address of interface */
  end;

  TClnCastThread = class(TThread)
  private
    { Private declarations }
    FCastingFile:THandle;
    FBlockLeft:integer;//Blocks number left to be download
    FSerialNum:integer;//the oldest package's  SerialNum
    FStartBlock:integer;//
  protected
    procedure Execute; override;
  public
    DstFileName:String;
    DstFileSize:integer;
    Addr:String;
    Port:u_short;
    CtrlItem:Pointer;
    sClient:TClientSocket;
  end;

implementation
Uses MainUnit, ClientControl;
var csQueryBlock:TMCriticalSection;
    //Client use csQueryBlock to synchronize the call to the TClientSocket component
    //used in the MainForm

{ Important: Methods and properties of objects in VCL can only be used in a
  method called using Synchronize, for example,

      Synchronize(UpdateCaption);

  and UpdateCaption could look like,

    procedure TClnCastThread.UpdateCaption;
    begin
      Form1.Caption := 'Updated in a thread';
    end; }

{ TClnCastThread }

procedure TClnCastThread.Execute;
var
  nRet,i,j:integer;
  stLclAddr, stSrcAddr: SOCKADDR_IN;
  stMreq:ip_mreq;        //* Multicast interface structure */
  hSocket:TSOCKET;
  lTTL:u_long;
  aPkg:TCastPkg;
  addr_size:integer;
  curB:integer;
  bExpect,bLast,bTotal:integer;
  PkgSize:integer;
  l,h:DWord;
  fSize:Longint;
  isIt:Boolean;
  b:Byte;
  pkgQueryBlock:TQueryBlockPkg;
begin
  FBlockLeft:=DstFileSize div FILE_BLOCK_SIZE+1;
  bTotal:=FBlockLeft;
  FSerialNum:=MaxInt;
  FStartBlock:=MaxInt;

  isIt:=False;
  j:=FBlockLeft;
  if FileExists(DstFileName)
  then begin//open and check
       FCastingFile:=FileOpen(DstFileName,fmOpenReadWrite);
       l:=GetFileSize(FCastingFile,@h);
       fSize:=l or h shl 16;
       //check size, and whether all bytes are 0 and 1
       isIt:=True;
       if fSize<>DstFileSize+FBlockLeft then isIt:=False;
       FileSeek(FCastingFile,DstFileSize,0);
       for i:=0 to FBlockLeft-1 do
       begin
            FileRead(FCastingFile,b,1);
            if (b or 1)<>1 then isIt:=False
                           else if b=1 then Dec(j);
       end;
       end
  else FCastingFile:=FileCreate(DstFileName);

  if not isIt
  then begin//Create tail control block, and initialize to be all 0
       FileSeek(FCastingFile,DstFileSize,0);
       b:=0;
       for i:=0 to FBlockLeft-1 do
           FileWrite(FCastingFile,b,1);
       SetEndOfFile(FCastingFile);
       end
  else FBlockLeft:=j;

  hSocket := socket(AF_INET,
     SOCK_DGRAM,
     0);
  lTTL:=1;
  nRet := setsockopt(hSocket,SOL_SOCKET,SO_REUSEADDR,PChar(@lTTL),sizeof(stMreq));
  stLclAddr.sin_family      := AF_INET;
  stLclAddr.sin_addr.s_addr := htonl(INADDR_ANY);
  stLclAddr.sin_port        := htons(Port);
  nRet := bind(hSocket,stLclAddr,sizeof(stLclAddr));
  stMreq.imr_multiaddr.s_addr := inet_addr(PChar(Addr));
  stMreq.imr_interface.s_addr := INADDR_ANY;
  nRet := setsockopt(hSocket,IPPROTO_IP,IP_ADD_MEMBERSHIP,PChar(@stMreq),sizeof(stMreq));
  addr_size:=sizeof(sockaddr_in);
  WriteLog('Begin listening Port '+inttostr(Port)+' for file '+DstFileName);


  bExpect:=-1;
  bLast:=-1;
  //tell server to activate the casting thread
  StrCopy(pkgQueryBlock.CmdStr,CTRLCMD_DOWNLOAD);
  pkgQueryBlock.FileID:=Port;
  csQueryBlock.Enter;
  try
     sClient.Socket.SendBuf(pkgQueryBlock,sizeof(pkgQueryBlock));
  finally
  csQueryBlock.Leave;
  end;

  while not Terminated do
  begin
    PkgSize := recvfrom(hSocket,aPkg,sizeof(TCastPkg),0,stSrcAddr,addr_size);

    if PkgSize = 0 then
    begin
         PClnCtrlItem(CtrlItem)^.Status:=8;
         WriteLog('Error End');
         Terminate;
    end;
    //use seriallized pkg to initialize FSerialNumºÍFStartBlock
    if aPkg.header.nType = PKGTYPE_SERIAL
    then begin
         if aPkg.header.nSerial<FSerialNum then
         begin
              FSerialNum:=aPkg.header.nSerial;//init FSerialNum
              WriteLog(inttostr(Port)+' Initialize FSerialNum = '+inttostr(FSerialNum));
         end;
         if aPkg.header.nSerial=FSerialNum
         then begin
              if aPkg.header.nBlockPos<FStartBlock then
              begin
                   FStartBlock:=aPkg.header.nBlockPos;//init FStartBlock
                   WriteLog(inttostr(Port)+' Initialize FStartBlock '+inttostr(FStartBlock));
              end;
              end
         else begin
              if aPkg.header.nBlockPos<FStartBlock
              then begin
                   end
              else begin
                   end;
              end;
         end;
    //init end
    curB:=aPkg.header.nBlockPos;

    FileSeek(FCastingFile,DstFileSize+curB,0);
    FileRead(FCastingFile,b,1);
    if b=0 then
    begin //write this pkg to file
         FileSeek(FCastingFile,curB*FILE_BLOCK_SIZE,0);
         FileWrite(FCastingFile,aPkg.data,PkgSize-sizeof(TPkgHeader));
         Dec(FBlockLeft);
         FileSeek(FCastingFile,DstFileSize+curB,0);
         b:=1;
         FileWrite(FCastingFile,b,1);
         //MainForm.Log.Caption:=inttostr(FBlockLeft);
         if aPkg.header.nType = PKGTYPE_SERIAL then
         begin
              if (bExpect<>-1) then
                 if (curB > bExpect) and (curB > bLast)then //lack pkgs
                 begin
                      StrCopy(pkgQueryBlock.CmdStr,CTRLCMD_QUERYBLK);
                      pkgQueryBlock.FileID:=Port;
                      pkgQueryBlock.BlockStart:=bExpect;
                      pkgQueryBlock.BlockEnd:=(curB+bTotal-1)mod bTotal;

                      csQueryBlock.Enter;
                      try
                         sClient.Socket.SendBuf(pkgQueryBlock,sizeof(pkgQueryBlock));
                      finally
                      csQueryBlock.Leave;
                      end;
                      //WriteLog('Query:'+inttostr(bExpect)+'->'+inttostr(pkgQueryBlock.BlockEnd));
                 end;
              bLast:=curB;
              bExpect:=(curB+1) mod bTotal;
         end;
    end;
    if FBlockLeft=0 then //end
    begin
         PClnCtrlItem(CtrlItem)^.Status:=4;
         WriteLog(inttostr(Port)+' End');
         FileSeek(FCastingFile,DstFileSize,0);
         SetEndOfFile(FCastingFile);
         Terminate;
    end;
    PClnCtrlItem(CtrlItem)^.Life:=TIMEOUT_SECONDS;
  end;
  stMreq.imr_multiaddr.s_addr := inet_addr(PChar(Addr));
  stMreq.imr_interface.s_addr := INADDR_ANY;
  nRet := setsockopt(hSocket,IPPROTO_IP,IP_DROP_MEMBERSHIP,PChar(@stMreq),sizeof(stMreq));

  closesocket(hSocket);

  FileClose(FCastingFile);
end;

initialization
csQueryBlock:=TMCriticalSection.Create;

finalization
csQueryBlock.Free;

end.

-----------------
unit ClientControl;

interface
uses
    Classes, extctrls, ClnCastThread;
type
  PClnCtrlItem = ^TClnCtrlItem;
  TClnCtrlItem = record
    ID : integer; // = port
    Status : integer; //0:not begin yet
                      //1:begun
                      //2:timeout error
                      //4:Successfully finished
                      //8:Error
    FileSize : integer;
    FileName : String; // pure name from server and when the user select the path
                       // FileName include the path info
    Parent : TList;
    Life : integer;//for timeout test
    thread : TClnCastThread;
  end;

  TMultiCastFileClient = class(TComponent)
    private
      FTimeoutTimer : TTimer;
      FDelTimer     : TTimer;
      FClnCtrlList : TList;

      procedure OnTimeoutTimer(Sender:TObject);
      procedure OnDelTimer(Sender:TObject);
    public
      constructor Create(AOwner:TComponent);override;
      destructor Destroy;override;

      function  Add(FileName,Addr:String;Size:integer;port:word):PClnCtrlItem;
      function  Get(index:integer):PClnCtrlItem;
      function  Count:integer;

      procedure Del(Item:PClnCtrlItem);overload;
      procedure Del(index:integer);overload;
      procedure StartAll;
      procedure StopAll;
      procedure ClearAll;
  end;

implementation
uses MainUnit;
constructor TMultiCastFileClient.Create(AOwner:TComponent);
begin
     inherited Create(AOwner);
     FClnCtrlList := TList.Create;

     FTimeoutTimer := TTimer.Create(Self);
     FTimeoutTimer.Enabled:=False;
     FTimeoutTimer.OnTimer:=OnTimeoutTimer;
     FDelTimer := TTimer.Create(Self);
     FDelTimer.Enabled:=False;
     FDelTimer.OnTimer:=OnDelTimer;
end;

destructor TMultiCastFileClient.Destroy;
begin
     ClearAll;
     FClnCtrlList.Free;
     
     FTimeoutTimer.Free;
     inherited;
end;

procedure TMultiCastFileClient.OnTimeoutTimer(Sender:TObject);
var i:integer;
begin
     for i:=0 to FClnCtrlList.Count-1 do
     case PClnCtrlItem(FClnCtrlList[i])^.Status of
     4,8  : begin//end successfully

            end;
     0,1,2: if not PClnCtrlItem(FClnCtrlList[i])^.thread.Suspended
            then begin
                 Dec(PClnCtrlItem(FClnCtrlList[i])^.Life);
                 //test life<0
                 if PClnCtrlItem(FClnCtrlList[i])^.Life<0 then
                    begin
                    //do sth.
                    PClnCtrlItem(FClnCtrlList[i])^.Status:=2;
                    end;
                 end;
     end;
end;

procedure TMultiCastFileClient.OnDelTimer(Sender:TObject);
var i:integer;
begin
     i:=FClnCtrlList.Count-1;
     while i>=0 do
     begin
          if (PClnCtrlItem(FClnCtrlList[i])^.Status=4)or
          (PClnCtrlItem(FClnCtrlList[i])^.Status=8) then Del(i);
          Dec(i);
     end;
end;

function  TMultiCastFileClient.Add(FileName,Addr:String;Size:integer;port:word):PClnCtrlItem;
var Item:PClnCtrlItem;
begin
     New(Item);
     Item.ID:=Port;
     Item.Status:=0;
     Item.FileSize:=Size;
     Item.FileName:=FileName;
     Item.Parent:=FClnCtrlList;
     Item.Life:=TIMEOUT_SECONDS;
     Item.thread:=TClnCastThread.Create(True);//not freed on terminate
     Item.thread.DstFileName:=FileName;
     Item.thread.DstFileSize:=Size;
     Item.thread.Addr:=Addr;
     Item.thread.Port:=port;
     Item.thread.CtrlItem:=Item;
     Item.thread.sClient:=MainForm.cs;
     FClnCtrlList.Add(Item);
     Item.thread.Resume;
     Result:=Item;

     FTimeoutTimer.Enabled:=True;
     FDelTimer.Enabled:=True;
end;

function  TMultiCastFileClient.Get(index:integer):PClnCtrlItem;
begin
     Result:=nil;
     if (index<0) or (index>=FClnCtrlList.Count) then exit;
     Result:=FClnCtrlList[index];
end;

function TMultiCastFileClient.Count:integer;
begin
     Result:=FClnCtrlList.Count;
end;

procedure TMultiCastFileClient.Del(Item:PClnCtrlItem);
begin
     Del(FClnCtrlList.IndexOf(Item));
end;

procedure TMultiCastFileClient.Del(index:integer);
begin
     if (index<0) or (index>=FClnCtrlList.Count) then exit;
     PClnCtrlItem(FClnCtrlList[index])^.thread.Terminate;
     Dispose(FClnCtrlList[index]);
     FClnCtrlList.Delete(index);
     if FClnCtrlList.Count=0 then
     begin
          FTimeoutTimer.Enabled:=False;
          FDelTimer.Enabled:=False;
     end;
end;

procedure TMultiCastFileClient.StartAll;
var i:integer;
begin
     for i:=0 to FClnCtrlList.Count-1 do
     PClnCtrlItem(FClnCtrlList[i])^.thread.Resume;
     FTimeoutTimer.Enabled:=True;
     FDelTimer.Enabled:=True;
end;

procedure TMultiCastFileClient.StopAll;
var i:integer;
begin
     FTimeoutTimer.Enabled:=False;
     FDelTimer.Enabled:=False;
     for i:=0 to FClnCtrlList.Count-1 do
     PClnCtrlItem(FClnCtrlList[i])^.thread.Suspend;
end;

procedure TMultiCastFileClient.ClearAll;
begin
     while FClnCtrlList.Count>0 do
     begin
          Del(PClnCtrlItem(FClnCtrlList[0]));
     end;
end;

end.