Alex Vinokur | 24 Mar 19:56
Picon

<Release> Simple C/C++ Perfometer: Reading file to string (Versions 1.x)


###############
### Release ###
###############

=========================================
* Performance
* Comparative Performance Measurement
-----------------------------------------
* Tool     : Simple C/C++ Perfometer
* Algorithm: Reading file to string
* Language : C++
* Version  : F2S-1.0
-----------------------------------------
* Environment: Windows 2000 Professional
               Intel(R) Celeron(R) CPU 1.70 GHz
               Cygwin, Mingw32 interface, Djgpp
* Compilers  : GNU g++
=========================================



===================== 1. Testsuites : BEGIN =====================

    Testsuites
    ---------- 
    C-01      : C-Functions getc()
    C-02      : C-Functions fgetc()
    C-03      : C-Functions fread() - with const size buffer
    C-04      : C-Functions fread() - with max size buffer
    Unix-C-05 : UNIX system call mmap
    CPP-01    : istream::operator>>
    CPP-02    : streambuf::sbumpc()
    CPP-03    : streambuf::sbumpc() and ostream::operator<<
    CPP-04    : ifstream::rdbuf() and ostream::operator<<
    CPP-05    : istream::read() and ostream::write() - with const size buffer
    CPP-06    : istream::read() and ostream::write(), std::ostringstream, ostream::operator<< - with const buffer
    CPP-07    : istream::readsome() and ostream::write() - with const size buffer
    CPP-08    : istream::read() and ostream::write() - with max size buffer
    CPP-09    : std::getline, std::ostringstream, ostream::operator<<
    CPP-10    : std::getline, std::string, ostream::operator<<
    CPP-11    : istream::getline, std::ostringstream, ostream::operator<<
    CPP-12    : istream::get(char) and ostream::put
    CPP-13    : istream::get(char)
    CPP-14    : istream::get(char*, streamsize) , ostream::operator<< - with const size buffer
    CPP-15    : istream::get(streambuf&)  and std::streambuf, ostream::operator<<
    CPP-16    : std::istream_iterator, std::ostream_iterator and std::copy
    CPP-17    : std::istream_iterator, std::string
    CPP-18    : std::istreambuf_iterator, std::ostreambuf_iterator and std::copy
    CPP-19    : std::istreambuf_iterator, std::ostreambuf_iterator and std::transform
    CPP-20    : std::istreambuf_iterator and std::string
    CPP-21    : std::vector and std::copy
    CPP-22    : std::vector and push_back()
    CPP-23    : std::vector and istream::read()
    CPP-24    : std::string and istream::read()

===================== 1. Testsuites : END =======================




===================== 2. Program files : BEGIN =====================

Program file file2str-1-0.cpp can found at:


     ------ Via Google Groups --- 
http://groups-beta.google.com/group/sources/msg/874798865afae595
http://groups-beta.google.com/group/sources/attach/874798865afae595/file2str-1-0.cpp?part=2


     ------ Via Gmane Groups --- 
http://article.gmane.org/gmane.comp.lang.c++.perfometer/100
http://article.gmane.org/gmane.comp.lang.c++.perfometer/108

http://permalink.gmane.org/gmane.comp.lang.c++.perfometer/100
http://permalink.gmane.org/gmane.comp.lang.c++.perfometer/108

http://cache.gmane.org/gmane/comp/lang/c++/perfometer/100
http://cache.gmane.org/gmane/comp/lang/c++/perfometer/108

===================== 2. Program files : END =======================



===================== 3. Performance tests : BEGIN =====================

Raw log files can found at:


     ------ Via Google Groups --- 
* http://groups-beta.google.com/group/log-files/msg/4700f0280a273a49

            -- Cygwin ---
*** http://groups-beta.google.com/group/log-files/attach/4700f0280a273a49/f2s-cyg-1000.log?part=2
*** http://groups-beta.google.com/group/log-files/attach/4700f0280a273a49/f2s-cyg-10000.log?part=3

            -- Mingw32 interface ---
*** http://groups-beta.google.com/group/log-files/attach/f080af0c8fdc6b93/f2s-mgw-1000.log?part=2
*** http://groups-beta.google.com/group/log-files/attach/f080af0c8fdc6b93/f2s-mgw-10000.log?part=3

            -- Djgpp ---
*** http://groups-beta.google.com/group/log-files/attach/edf6295cc3f68c58/f2s-dj-1000.log?part=2
*** http://groups-beta.google.com/group/log-files/attach/edf6295cc3f68c58/f2s-dj-10000.log?part=3


     ------ Via Gmane Groups --- 
* http://thread.gmane.org/gmane.comp.lang.c++.perfometer/103
* http://comments.gmane.org/gmane.comp.lang.c++.perfometer/103

            -- Cygwin ---
*** http://article.gmane.org/gmane.comp.lang.c++.perfometer/103
*** http://permalink.gmane.org/gmane.comp.lang.c++.perfometer/103
*** http://cache.gmane.org/gmane/comp/lang/c++/perfometer/103
*** http://cache.gmane.org/gmane/comp/lang/c++/perfometer/103-001.bin
*** http://cache.gmane.org/gmane/comp/lang/c++/perfometer/103-002.bin

            -- Mingw32 interface ---
*** http://article.gmane.org/gmane.comp.lang.c++.perfometer/109
*** http://permalink.gmane.org/gmane.comp.lang.c++.perfometer/109
*** http://cache.gmane.org/gmane/comp/lang/c++/perfometer/109
*** http://cache.gmane.org/gmane/comp/lang/c++/perfometer/109-001.bin
*** http://cache.gmane.org/gmane/comp/lang/c++/perfometer/109-002.bin

            -- Djgpp ---
*** http://article.gmane.org/gmane.comp.lang.c++.perfometer/107
*** http://permalink.gmane.org/gmane.comp.lang.c++.perfometer/107
*** http://cache.gmane.org/gmane/comp/lang/c++/perfometer/107
*** http://cache.gmane.org/gmane/comp/lang/c++/perfometer/107-001.bin
*** http://cache.gmane.org/gmane/comp/lang/c++/perfometer/107-002.bin

===================== 3. Performance tests : END =======================




===================== 4. Methods of copying : BEGIN =====================

FILE*         ifp;  // input  file pointer
int           ifd;  // input  file descriptor; UNIX
ifstream      ifs;  // input  file stream
string        ret_str;

// -----
// Note. Files are tested in both modes text and binary
// -----


char          ch;
int           ich;
const int     newline_int_symbol (int ('\n'));


size_t        nread;
streamsize    len;
size_t        no_of_file_bytes;  // File size (number of bytes)
size_t        no_of_file_lines;  // Number of file lines
// -----
// Note. 'no_of_file_bytes' doesn't contain number of '\r' in '\r\n'
// -----

char          const_buf [4096];
char*         max_buf = new char [no_of_file_bytes + no_of_file_lines + 1];


string        line;
string        str;
ostringstream oss;


struct char_identity { char operator()(char ch) const { return ch; } };




    ### C-01: C-Function getc()
    ------------------------------------------------
    while ((ich = getc(ifp)) != EOF) ret_str += char(int_ch);
    ------------------------------------------------


    ### C-02: C-Function fgetc()
    ------------------------------------------------
    while ((ich = fgetc(ifp)) != EOF) ret_str += char(int_ch);
    ------------------------------------------------


    ### C-03: C-Function fread() - with const size buffer
    ------------------------------------------------
    while ((nread = fread(const_buf, sizeof(char), sizeof(const_buf), ifp)) > 0)
    {
      const_buf[nread] = 0;
      ret_str += const_buf;
    }
    ------------------------------------------------


    ### C-04: C-Function fread() - with max size buffer
    ------------------------------------------------
    while ((nread = fread(max_buf, sizeof(char), sizeof(max_buf), ifp)) > 0)
    {
      max_buf[nread] = 0;
      ret_str += max_buf;
    }
    ------------------------------------------------


    ### Unix-C-05: UNIX system call mmap()
    ------------------------------------------------
    size_t actual_file_size = no_of_file_bytes + ((text-mode) ? no_of_file_lines : 0)
    char* ptr = (char*)mmap(0, actual_file_size, PROT_READ, MAP_SHARED, ifd, 0);
    ret_str = string(ptr, ptr + actual_file_size);
    munmap(ptr, actual_file_size);
    if (text-mode)
    {
      ret_str.erase(remove(ret_str.begin(), ret_str.end(), '\r'), ret_str.end());
    }
    ------------------------------------------------


    ### CPP-01: istream::operator>>
    ------------------------------------------------
    ifs.unsetf(ios::skipws);
    while (ifs >> ch) ret_str += ch;
    ------------------------------------------------


    ### CPP-02: streambuf::sbumpc()
    ------------------------------------------------
    while ((ch = ifs.rdbuf()->sbumpc()) != EOF) ret_str += ch;
    ------------------------------------------------


    ### CPP-03: streambuf::sbumpc() and ostream::operator<<
    ------------------------------------------------
    ch = ifs.rdbuf()->sbumpc();
    oss << ch;
    while (ch != EOF)
    {
      oss << ifs.rdbuf();
      ch = ifs.rdbuf()->sbumpc();
    }
    ret_str = oss.str();
    ------------------------------------------------


    ### CPP-04: ifstream::rdbuf() and ostream::operator<<
    ------------------------------------------------
    oss << ifs.rdbuf();
    ret_str = oss.str();
    ------------------------------------------------


    ### CPP-05: istream::read() and ostream::write() - with const size buffer
    ------------------------------------------------
    while (!ifs.eof())
    {
      ifs.read (const_buf, sizeof(const_buf));
      oss.write (const_buf, ifs.gcount());
    }
    ret_str = oss.str();
    ------------------------------------------------


    ### CPP-06: istream::read() and ostream::write(), std::ostringstream, ostream::operator<< - with const buffer
    ------------------------------------------------
    while (!ifs.eof())
    {
      ifs.read (const_buf, sizeof(const_buf));
      oss.write (const_buf, ifs.gcount());
    }
    ret_str = oss.str();
    ------------------------------------------------


    ### CPP-07: istream::readsome() and ostream::write() - with const size buffer
    ------------------------------------------------
    do
    {
      len = ifs.readsome (const_buf, sizeof(const_buf));
      oss.write (const_buf, len);
    } while (len);
    ret_str = oss.str();
    ------------------------------------------------


    ### CPP-08: istream::read() and ostream::write() - with max size buffer
    ------------------------------------------------
    while (!ifs.eof())
    {
      ifs.read (max_buf, no_of_file_bytes + no_of_file_lines);
      oss.write (max_buf, ifs.gcount());
    }
    ret_str = oss.str();
    ------------------------------------------------


    ### CPP-09: std::getline, std::ostringstream, ostream::operator<<
    ------------------------------------------------
    while (getline (ifs, line)) oss << line << '\n';
    string tmp(oss.str());
    if (!tmp.empty())
    {
      ifs.rdbuf()->sungetc ();
      if (ifs.rdbuf()->sgetc() != '\n') tmp.erase(tmp.size() - 1);
    }
    ret_str = tmp;
    ------------------------------------------------


    ### CPP-10: std::getline, std::string, ostream::operator<<
    ------------------------------------------------
    while (getline (ifs, line))
    {
      str +=line;
      str +='\n';
    }
    if (!str.empty())
    {
      ifs.rdbuf()->sungetc ();
      if (ifs.rdbuf()->sgetc() != '\n') str.erase(str.size() - 1);
    }
    ret_str = str;
    ------------------------------------------------


    ### CPP-11: istream::getline, std::ostringstream, ostream::operator<<
    ------------------------------------------------
    while (ifs.getline (const_buf, sizeof(const_buf)).gcount())
    {
      oss << const_buf;
      if (ifs.fail()) ifs.clear (~(ios_base::failbit | ~ifs.rdstate ()));
      else            oss << '\n';
    }
    string tmp(oss.str());
    if (!tmp.empty())
    {
      ifs.rdbuf()->sungetc ();
      if (ifs.rdbuf()->sgetc() != '\n') tmp.erase(tmp.size() - 1);
    }
    ret_str = tmp;
    ------------------------------------------------


    ### CPP-12: istream::get(char) and ostream::put
    ------------------------------------------------
    while (ifs.get(ch)) oss.put(ch);
    ret_str = oss.str();
    ------------------------------------------------


    ### CPP-13: istream::get(char)
    ------------------------------------------------
    for (unsigned long i = 0; ifs.get (ch); i++) str[i] = ch;
    str.erase (i);
    ret_str = str;
    ------------------------------------------------


    ### CPP-14: istream::get(char*, streamsize), ostream::operator<< - with const size buffer
    ------------------------------------------------
    while (ifs.get (const_buf, sizeof(const_buf)))
    {
      oss << const_buf;
      if (ifs.peek() == newline_int_symbol) oss << char(ifs.get());
    }
    ret_str = oss.str();
    ------------------------------------------------


    ### CPP-15: istream::get(streambuf&)  and std::streambuf, ostream::operator<<
    ------------------------------------------------
    while (ifs.get (*oss.rdbuf()))
    {
      if (ifs.peek() == newline_int_symbol) oss << char(ifs.get());
    }
    ret_str = oss.str();
    ------------------------------------------------


    ### CPP-16: std::istream_iterator, std::ostream_iterator and std::copy
    ------------------------------------------------
    ifs >> noskipws;
    istream_iterator<char> in(ifs), eos;
    ostream_iterator<char> out(oss);
    copy (in, eos, out);
    ret_str = oss.str();
    ------------------------------------------------


    ### CPP-17: std::istream_iterator, std::string
    ------------------------------------------------
    ifs >> noskipws;
    istream_iterator<char> in(ifs), eos;
    ret_str = string(in, eos);
    ------------------------------------------------


    ### CPP-18: std::istreambuf_iterator, std::ostreambuf_iterator and std::copy
    ------------------------------------------------
    ifs >> noskipws;
    istreambuf_iterator<char> in(ifs), eos;
    ostreambuf_iterator<char> out(oss);
    copy (in, eos, out);
    ret_str = oss.str();
    ------------------------------------------------


    ### CPP-19: std::istreambuf_iterator, std::ostreambuf_iterator and std::transform
    ------------------------------------------------
    ifs >> noskipws;
    istreambuf_iterator<char> in(ifs), eos;
    ostreambuf_iterator<char> out(oss);
    transform(in, eos, out, char_identity());
    ret_str = oss.str();
    ------------------------------------------------


    ### CPP-20: std::istreambuf_iterator and std::string
    ------------------------------------------------
    ifs >> noskipws;
    istreambuf_iterator<char> in(ifs), eos;
    ret_str = string(in, eos);
    ------------------------------------------------


    ### CPP-21: std::vector and std::copy
    ------------------------------------------------
    vector<char> v (no_of_file_bytes);
    ifs.read(&v[0], no_of_file_bytes);
    ostream_iterator<char> out(oss);
    copy (&v[0], &v[v.size()], out);
    ret_str = oss.str();
    ------------------------------------------------


    ### CPP-22: std::vector and push_back()
    ------------------------------------------------
    vector<char> v;
    v.reserve(no_of_file_bytes);
    while (ifs.get(ch)) v.push_back(ch);
    ret_str = (v.empty() ? string() : string (v.begin(), v.end()));
    ------------------------------------------------


    ### CPP-23: std::vector and istream::read()
    ------------------------------------------------
    vector<char> v (no_of_file_bytes);
    ifs.read(&v[0], no_of_file_bytes);
    ret_str = (v.empty() ? string() : string (v.begin(), v.end()));
    ------------------------------------------------


    ### CPP-24: std::string and istream::read()
    ------------------------------------------------
    string tmp (no_of_file_bytes, '0');
    ifs.read(&tmp[0], no_of_file_bytes);
    ret_str = tmp;
    ------------------------------------------------


===================== 4. Methods of copying : END =======================



==================== 5. Summary results : BEGIN =====================

Test results sorted by ascending time used.
Each function for each mode (text, binary)
  occurs 3 times in each sorted list
  (because 'Number of runs' = 3).


                     ---------------------------
                     5.1. GNU gcc 3.3.3 (CYGWIN)
                     ---------------------------

 ### File size             : 10000
 ### Number of runs        : 3
 ### Number of tests       : 5
 ### Number of repetitions : 25
 ### CLOCKS_PER_SEC        : 1000

C_03_bin__function_fread__const_buf               :      6 units (0.006 secs)
CPP_24_bin__string__cpp_read                      :     10 units (0.010 secs)
CPP_24_bin__string__cpp_read                      :     10 units (0.010 secs)
CPP_24_bin__string__cpp_read                      :     10 units (0.010 secs)
C_03_bin__function_fread__const_buf               :     10 units (0.010 secs)
C_04_bin__function_fread__max_buf                 :     10 units (0.010 secs)
C_04_bin__function_fread__max_buf                 :     10 units (0.010 secs)
C_04_bin__function_fread__max_buf                 :     10 units (0.010 secs)
C_04_txt__function_fread__max_buf                 :     10 units (0.010 secs)
C_04_txt__function_fread__max_buf                 :     10 units (0.010 secs)
unix_C_05_bin__mmap                               :     10 units (0.010 secs)
CPP_24_txt__string__cpp_read                      :     13 units (0.013 secs)
C_03_bin__function_fread__const_buf               :     13 units (0.013 secs)
C_03_txt__function_fread__const_buf               :     13 units (0.013 secs)
C_03_txt__function_fread__const_buf               :     13 units (0.013 secs)
C_04_txt__function_fread__max_buf                 :     13 units (0.013 secs)
unix_C_05_bin__mmap                               :     13 units (0.013 secs)
unix_C_05_bin__mmap                               :     13 units (0.013 secs)
CPP_24_txt__string__cpp_read                      :     16 units (0.016 secs)
CPP_24_txt__string__cpp_read                      :     16 units (0.016 secs)
C_03_txt__function_fread__const_buf               :     16 units (0.016 secs)
CPP_03_bin__method_sbumpc__op_out                 :     20 units (0.020 secs)
CPP_04_bin__method_rdbuf__op_out                  :     20 units (0.020 secs)
CPP_05_bin__methods_cpp_read_write__const_buf     :     20 units (0.020 secs)
CPP_06_bin__methods_cpp_read_write_oss__const_buf :     20 units (0.020 secs)
CPP_06_bin__methods_cpp_read_write_oss__const_buf :     23 units (0.023 secs)
CPP_08_bin__methods_cpp_read_write__max_buf       :     23 units (0.023 secs)
CPP_08_bin__methods_cpp_read_write__max_buf       :     23 units (0.023 secs)
CPP_03_bin__method_sbumpc__op_out                 :     26 units (0.026 secs)
CPP_03_bin__method_sbumpc__op_out                 :     26 units (0.026 secs)
CPP_04_bin__method_rdbuf__op_out                  :     26 units (0.026 secs)
CPP_04_bin__method_rdbuf__op_out                  :     26 units (0.026 secs)
CPP_05_bin__methods_cpp_read_write__const_buf     :     26 units (0.026 secs)
CPP_06_bin__methods_cpp_read_write_oss__const_buf :     26 units (0.026 secs)
CPP_08_bin__methods_cpp_read_write__max_buf       :     26 units (0.026 secs)
CPP_08_txt__methods_cpp_read_write__max_buf       :     26 units (0.026 secs)
CPP_05_txt__methods_cpp_read_write__const_buf     :     27 units (0.027 secs)
CPP_05_txt__methods_cpp_read_write__const_buf     :     27 units (0.027 secs)
CPP_03_txt__method_sbumpc__op_out                 :     30 units (0.030 secs)
CPP_03_txt__method_sbumpc__op_out                 :     30 units (0.030 secs)
CPP_04_txt__method_rdbuf__op_out                  :     30 units (0.030 secs)
CPP_05_bin__methods_cpp_read_write__const_buf     :     30 units (0.030 secs)
CPP_05_txt__methods_cpp_read_write__const_buf     :     30 units (0.030 secs)
CPP_06_txt__methods_cpp_read_write_oss__const_buf :     30 units (0.030 secs)
CPP_08_txt__methods_cpp_read_write__max_buf       :     30 units (0.030 secs)
CPP_08_txt__methods_cpp_read_write__max_buf       :     30 units (0.030 secs)
CPP_04_txt__method_rdbuf__op_out                  :     33 units (0.033 secs)
CPP_04_txt__method_rdbuf__op_out                  :     33 units (0.033 secs)
CPP_06_txt__methods_cpp_read_write_oss__const_buf :     33 units (0.033 secs)
CPP_23_bin__vector__cpp_read                      :     33 units (0.033 secs)
CPP_03_txt__method_sbumpc__op_out                 :     36 units (0.036 secs)
CPP_06_txt__methods_cpp_read_write_oss__const_buf :     36 units (0.036 secs)
CPP_23_txt__vector__cpp_read                      :     36 units (0.036 secs)
CPP_23_bin__vector__cpp_read                      :     43 units (0.043 secs)
CPP_23_bin__vector__cpp_read                      :     43 units (0.043 secs)
CPP_23_txt__vector__cpp_read                      :     43 units (0.043 secs)
CPP_23_txt__vector__cpp_read                      :     43 units (0.043 secs)
CPP_11_bin__method_ifstream_getline               :     47 units (0.047 secs)
CPP_14_bin__method_ifstream_get__const_buf        :     50 units (0.050 secs)
CPP_14_txt__method_ifstream_get__const_buf        :     50 units (0.050 secs)
unix_C_05_txt__mmap                               :     50 units (0.050 secs)
CPP_07_bin__methods_cpp_readsome_write__const_buf :     53 units (0.053 secs)
CPP_11_bin__method_ifstream_getline               :     53 units (0.053 secs)
CPP_11_txt__method_ifstream_getline               :     53 units (0.053 secs)
CPP_14_bin__method_ifstream_get__const_buf        :     53 units (0.053 secs)
unix_C_05_txt__mmap                               :     53 units (0.053 secs)
unix_C_05_txt__mmap                               :     53 units (0.053 secs)
CPP_07_bin__methods_cpp_readsome_write__const_buf :     56 units (0.056 secs)
CPP_11_bin__method_ifstream_getline               :     56 units (0.056 secs)
CPP_14_txt__method_ifstream_get__const_buf        :     56 units (0.056 secs)
CPP_07_bin__methods_cpp_readsome_write__const_buf :     57 units (0.057 secs)
CPP_11_txt__method_ifstream_getline               :     57 units (0.057 secs)
CPP_14_bin__method_ifstream_get__const_buf        :     57 units (0.057 secs)
CPP_07_txt__methods_cpp_readsome_write__const_buf :     60 units (0.060 secs)
CPP_11_txt__method_ifstream_getline               :     60 units (0.060 secs)
CPP_14_txt__method_ifstream_get__const_buf        :     60 units (0.060 secs)
CPP_07_txt__methods_cpp_readsome_write__const_buf :     66 units (0.066 secs)
CPP_07_txt__methods_cpp_readsome_write__const_buf :     66 units (0.066 secs)
CPP_15_txt__method_ifstream_get__streambuf        :     76 units (0.076 secs)
CPP_15_txt__method_ifstream_get__streambuf        :     77 units (0.077 secs)
CPP_15_txt__method_ifstream_get__streambuf        :     83 units (0.083 secs)
CPP_15_bin__method_ifstream_get__streambuf        :    147 units (0.147 secs)
CPP_15_bin__method_ifstream_get__streambuf        :    150 units (0.150 secs)
CPP_15_bin__method_ifstream_get__streambuf        :    163 units (0.163 secs)
CPP_20_txt__iostreambuf_iterators__string         :    167 units (0.167 secs)
CPP_20_txt__iostreambuf_iterators__string         :    183 units (0.183 secs)
CPP_18_bin__iostreambuf_iterators__copy           :    187 units (0.187 secs)
CPP_19_txt__iostreambuf_iterators__transform      :    190 units (0.190 secs)
CPP_20_txt__iostreambuf_iterators__string         :    190 units (0.190 secs)
CPP_18_bin__iostreambuf_iterators__copy           :    193 units (0.193 secs)
CPP_20_bin__iostreambuf_iterators__string         :    193 units (0.193 secs)
CPP_18_bin__iostreambuf_iterators__copy           :    196 units (0.196 secs)
CPP_20_bin__iostreambuf_iterators__string         :    200 units (0.200 secs)
CPP_20_bin__iostreambuf_iterators__string         :    200 units (0.200 secs)
CPP_19_txt__iostreambuf_iterators__transform      :    207 units (0.207 secs)
CPP_19_txt__iostreambuf_iterators__transform      :    223 units (0.223 secs)
CPP_19_bin__iostreambuf_iterators__transform      :    270 units (0.270 secs)
CPP_19_bin__iostreambuf_iterators__transform      :    277 units (0.277 secs)
CPP_19_bin__iostreambuf_iterators__transform      :    293 units (0.293 secs)
CPP_18_txt__iostreambuf_iterators__copy           :    367 units (0.367 secs)
CPP_18_txt__iostreambuf_iterators__copy           :    370 units (0.370 secs)
CPP_18_txt__iostreambuf_iterators__copy           :    373 units (0.373 secs)
CPP_13_txt__method_ifstream_get                   :   1428 units (1.428 secs)
CPP_13_bin__method_ifstream_get                   :   1442 units (1.442 secs)
CPP_13_bin__method_ifstream_get                   :   1445 units (1.445 secs)
CPP_13_txt__method_ifstream_get                   :   1452 units (1.452 secs)
CPP_22_txt__vector_push_back                      :   1452 units (1.452 secs)
CPP_13_txt__method_ifstream_get                   :   1472 units (1.472 secs)
CPP_22_txt__vector_push_back                      :   1489 units (1.489 secs)
CPP_22_bin__vector_push_back                      :   1502 units (1.502 secs)
CPP_13_bin__method_ifstream_get                   :   1528 units (1.528 secs)
CPP_17_bin__iostream_iterators__string            :   1542 units (1.542 secs)
CPP_22_bin__vector_push_back                      :   1572 units (1.572 secs)
CPP_17_txt__iostream_iterators__string            :   1592 units (1.592 secs)
CPP_22_txt__vector_push_back                      :   1605 units (1.605 secs)
CPP_17_bin__iostream_iterators__string            :   1618 units (1.618 secs)
CPP_09_txt__function_getline__ostringstream       :   1619 units (1.619 secs)
CPP_09_txt__function_getline__ostringstream       :   1622 units (1.622 secs)
CPP_02_bin__method_sbumpc                         :   1625 units (1.625 secs)
CPP_22_bin__vector_push_back                      :   1629 units (1.629 secs)
CPP_02_bin__method_sbumpc                         :   1639 units (1.639 secs)
CPP_02_txt__method_sbumpc                         :   1652 units (1.652 secs)
CPP_10_txt__function_getline__string              :   1652 units (1.652 secs)
CPP_09_bin__function_getline__ostringstream       :   1655 units (1.655 secs)
CPP_02_txt__method_sbumpc                         :   1656 units (1.656 secs)
CPP_09_bin__function_getline__ostringstream       :   1656 units (1.656 secs)
CPP_10_bin__function_getline__string              :   1665 units (1.665 secs)
CPP_10_txt__function_getline__string              :   1669 units (1.669 secs)
CPP_17_txt__iostream_iterators__string            :   1679 units (1.679 secs)
CPP_17_bin__iostream_iterators__string            :   1689 units (1.689 secs)
CPP_10_bin__function_getline__string              :   1692 units (1.692 secs)
CPP_02_bin__method_sbumpc                         :   1699 units (1.699 secs)
CPP_09_txt__function_getline__ostringstream       :   1702 units (1.702 secs)
CPP_02_txt__method_sbumpc                         :   1709 units (1.709 secs)
CPP_10_bin__function_getline__string              :   1729 units (1.729 secs)
CPP_10_txt__function_getline__string              :   1735 units (1.735 secs)
CPP_09_bin__function_getline__ostringstream       :   1752 units (1.752 secs)
CPP_17_txt__iostream_iterators__string            :   1765 units (1.765 secs)
C_02_bin__function_fgetc                          :   1939 units (1.939 secs)
C_02_txt__function_fgetc                          :   1966 units (1.966 secs)
C_01_txt__function_getc                           :   1983 units (1.983 secs)
C_01_bin__function_getc                           :   2002 units (2.002 secs)
C_02_bin__function_fgetc                          :   2029 units (2.029 secs)
C_01_bin__function_getc                           :   2033 units (2.033 secs)
C_01_txt__function_getc                           :   2056 units (2.056 secs)
C_02_bin__function_fgetc                          :   2089 units (2.089 secs)
C_01_txt__function_getc                           :   2096 units (2.096 secs)
C_02_txt__function_fgetc                          :   2096 units (2.096 secs)
C_02_txt__function_fgetc                          :   2126 units (2.126 secs)
C_01_bin__function_getc                           :   2139 units (2.139 secs)
CPP_21_bin__vector__copy                          :   2827 units (2.827 secs)
CPP_12_bin__methods_ifstream_get_put              :   2830 units (2.830 secs)
CPP_12_txt__methods_ifstream_get_put              :   2841 units (2.841 secs)
CPP_12_bin__methods_ifstream_get_put              :   2864 units (2.864 secs)
CPP_21_txt__vector__copy                          :   2890 units (2.890 secs)
CPP_12_txt__methods_ifstream_get_put              :   2944 units (2.944 secs)
CPP_01_bin__operator_in                           :   2951 units (2.951 secs)
CPP_01_bin__operator_in                           :   2951 units (2.951 secs)
CPP_01_txt__operator_in                           :   2957 units (2.957 secs)
CPP_12_bin__methods_ifstream_get_put              :   2964 units (2.964 secs)
CPP_12_txt__methods_ifstream_get_put              :   2971 units (2.971 secs)
CPP_21_bin__vector__copy                          :   3021 units (3.021 secs)
CPP_01_txt__operator_in                           :   3034 units (3.034 secs)
CPP_21_txt__vector__copy                          :   3081 units (3.081 secs)
CPP_21_bin__vector__copy                          :   3094 units (3.094 secs)
CPP_21_txt__vector__copy                          :   3101 units (3.101 secs)
CPP_01_bin__operator_in                           :   3114 units (3.114 secs)
CPP_01_txt__operator_in                           :   3117 units (3.117 secs)
CPP_16_bin__iostream_iterators__copy              :   4232 units (4.232 secs)
CPP_16_txt__iostream_iterators__copy              :   4269 units (4.269 secs)
CPP_16_txt__iostream_iterators__copy              :   4269 units (4.269 secs)
CPP_16_bin__iostream_iterators__copy              :   4359 units (4.359 secs)
CPP_16_txt__iostream_iterators__copy              :   4576 units (4.576 secs)
CPP_16_bin__iostream_iterators__copy              :   4733 units (4.733 secs)




                     --------------------------
                     5.2. GNU gcc 3.3.3 (MINGW)
                     --------------------------

 ### File size             : 10000
 ### Number of runs        : 3
 ### Number of tests       : 5
 ### Number of repetitions : 50
 ### CLOCKS_PER_SEC        : 1000

C_03_bin__function_fread__const_buf               :      6 units (0.006 secs)
C_04_bin__function_fread__max_buf                 :      6 units (0.006 secs)
C_04_bin__function_fread__max_buf                 :      6 units (0.006 secs)
C_04_bin__function_fread__max_buf                 :      6 units (0.006 secs)
CPP_24_bin__string__cpp_read                      :     10 units (0.010 secs)
CPP_24_bin__string__cpp_read                      :     10 units (0.010 secs)
C_03_bin__function_fread__const_buf               :     10 units (0.010 secs)
C_03_bin__function_fread__const_buf               :     10 units (0.010 secs)
C_04_txt__function_fread__max_buf                 :     10 units (0.010 secs)
CPP_24_bin__string__cpp_read                      :     13 units (0.013 secs)
C_03_txt__function_fread__const_buf               :     13 units (0.013 secs)
C_03_txt__function_fread__const_buf               :     13 units (0.013 secs)
C_04_txt__function_fread__max_buf                 :     13 units (0.013 secs)
C_04_txt__function_fread__max_buf                 :     13 units (0.013 secs)
CPP_24_txt__string__cpp_read                      :     16 units (0.016 secs)
C_03_txt__function_fread__const_buf               :     16 units (0.016 secs)
CPP_24_txt__string__cpp_read                      :     20 units (0.020 secs)
CPP_05_bin__methods_cpp_read_write__const_buf     :     23 units (0.023 secs)
CPP_05_bin__methods_cpp_read_write__const_buf     :     23 units (0.023 secs)
CPP_06_bin__methods_cpp_read_write_oss__const_buf :     23 units (0.023 secs)
CPP_03_bin__method_sbumpc__op_out                 :     26 units (0.026 secs)
CPP_04_bin__method_rdbuf__op_out                  :     26 units (0.026 secs)
CPP_04_bin__method_rdbuf__op_out                  :     26 units (0.026 secs)
CPP_08_bin__methods_cpp_read_write__max_buf       :     26 units (0.026 secs)
CPP_08_bin__methods_cpp_read_write__max_buf       :     26 units (0.026 secs)
CPP_08_bin__methods_cpp_read_write__max_buf       :     26 units (0.026 secs)
CPP_24_txt__string__cpp_read                      :     26 units (0.026 secs)
CPP_05_bin__methods_cpp_read_write__const_buf     :     27 units (0.027 secs)
CPP_03_bin__method_sbumpc__op_out                 :     30 units (0.030 secs)
CPP_04_txt__method_rdbuf__op_out                  :     30 units (0.030 secs)
CPP_06_txt__methods_cpp_read_write_oss__const_buf :     30 units (0.030 secs)
CPP_08_txt__methods_cpp_read_write__max_buf       :     30 units (0.030 secs)
CPP_08_txt__methods_cpp_read_write__max_buf       :     30 units (0.030 secs)
CPP_03_bin__method_sbumpc__op_out                 :     33 units (0.033 secs)
CPP_03_txt__method_sbumpc__op_out                 :     33 units (0.033 secs)
CPP_03_txt__method_sbumpc__op_out                 :     33 units (0.033 secs)
CPP_05_txt__methods_cpp_read_write__const_buf     :     33 units (0.033 secs)
CPP_04_bin__method_rdbuf__op_out                  :     36 units (0.036 secs)
CPP_04_txt__method_rdbuf__op_out                  :     36 units (0.036 secs)
CPP_06_txt__methods_cpp_read_write_oss__const_buf :     36 units (0.036 secs)
CPP_03_txt__method_sbumpc__op_out                 :     40 units (0.040 secs)
CPP_05_txt__methods_cpp_read_write__const_buf     :     40 units (0.040 secs)
CPP_06_txt__methods_cpp_read_write_oss__const_buf :     40 units (0.040 secs)
CPP_08_txt__methods_cpp_read_write__max_buf       :     40 units (0.040 secs)
CPP_05_txt__methods_cpp_read_write__const_buf     :     46 units (0.046 secs)
CPP_06_bin__methods_cpp_read_write_oss__const_buf :     47 units (0.047 secs)
CPP_06_bin__methods_cpp_read_write_oss__const_buf :     50 units (0.050 secs)
CPP_04_txt__method_rdbuf__op_out                  :     56 units (0.056 secs)
CPP_11_bin__method_ifstream_getline               :     60 units (0.060 secs)
CPP_14_bin__method_ifstream_get__const_buf        :     60 units (0.060 secs)
CPP_11_bin__method_ifstream_getline               :     63 units (0.063 secs)
CPP_14_bin__method_ifstream_get__const_buf        :     63 units (0.063 secs)
CPP_07_bin__methods_cpp_readsome_write__const_buf :     66 units (0.066 secs)
CPP_11_bin__method_ifstream_getline               :     66 units (0.066 secs)
CPP_11_txt__method_ifstream_getline               :     70 units (0.070 secs)
CPP_11_txt__method_ifstream_getline               :     70 units (0.070 secs)
CPP_11_txt__method_ifstream_getline               :     73 units (0.073 secs)
CPP_23_bin__vector__cpp_read                      :     73 units (0.073 secs)
CPP_23_bin__vector__cpp_read                      :     73 units (0.073 secs)
CPP_07_bin__methods_cpp_readsome_write__const_buf :     76 units (0.076 secs)
CPP_07_txt__methods_cpp_readsome_write__const_buf :     76 units (0.076 secs)
CPP_23_txt__vector__cpp_read                      :     77 units (0.077 secs)
CPP_07_bin__methods_cpp_readsome_write__const_buf :     80 units (0.080 secs)
CPP_07_txt__methods_cpp_readsome_write__const_buf :     80 units (0.080 secs)
CPP_14_bin__method_ifstream_get__const_buf        :     86 units (0.086 secs)
CPP_14_txt__method_ifstream_get__const_buf        :     86 units (0.086 secs)
CPP_14_txt__method_ifstream_get__const_buf        :     86 units (0.086 secs)
CPP_23_bin__vector__cpp_read                      :     86 units (0.086 secs)
CPP_23_txt__vector__cpp_read                      :     86 units (0.086 secs)
CPP_23_txt__vector__cpp_read                      :     90 units (0.090 secs)
CPP_07_txt__methods_cpp_readsome_write__const_buf :     97 units (0.097 secs)
CPP_15_bin__method_ifstream_get__streambuf        :    106 units (0.106 secs)
CPP_15_txt__method_ifstream_get__streambuf        :    106 units (0.106 secs)
CPP_15_bin__method_ifstream_get__streambuf        :    127 units (0.127 secs)
CPP_15_bin__method_ifstream_get__streambuf        :    133 units (0.133 secs)
CPP_15_txt__method_ifstream_get__streambuf        :    140 units (0.140 secs)
CPP_15_txt__method_ifstream_get__streambuf        :    140 units (0.140 secs)
CPP_14_txt__method_ifstream_get__const_buf        :    160 units (0.160 secs)
CPP_13_bin__method_ifstream_get                   :    200 units (0.200 secs)
CPP_13_txt__method_ifstream_get                   :    210 units (0.210 secs)
CPP_13_txt__method_ifstream_get                   :    213 units (0.213 secs)
CPP_13_txt__method_ifstream_get                   :    220 units (0.220 secs)
CPP_10_txt__function_getline__string              :    256 units (0.256 secs)
CPP_10_bin__function_getline__string              :    264 units (0.264 secs)
CPP_13_bin__method_ifstream_get                   :    264 units (0.264 secs)
CPP_02_bin__method_sbumpc                         :    267 units (0.267 secs)
CPP_10_bin__function_getline__string              :    274 units (0.274 secs)
CPP_02_txt__method_sbumpc                         :    276 units (0.276 secs)
CPP_09_bin__function_getline__ostringstream       :    276 units (0.276 secs)
CPP_13_bin__method_ifstream_get                   :    277 units (0.277 secs)
CPP_10_txt__function_getline__string              :    280 units (0.280 secs)
CPP_17_bin__iostream_iterators__string            :    280 units (0.280 secs)
CPP_20_bin__iostreambuf_iterators__string         :    280 units (0.280 secs)
C_01_txt__function_getc                           :    280 units (0.280 secs)
CPP_09_txt__function_getline__ostringstream       :    283 units (0.283 secs)
CPP_20_txt__iostreambuf_iterators__string         :    284 units (0.284 secs)
CPP_09_bin__function_getline__ostringstream       :    287 units (0.287 secs)
CPP_02_bin__method_sbumpc                         :    290 units (0.290 secs)
CPP_02_txt__method_sbumpc                         :    290 units (0.290 secs)
CPP_17_bin__iostream_iterators__string            :    290 units (0.290 secs)
CPP_22_bin__vector_push_back                      :    290 units (0.290 secs)
C_01_bin__function_getc                           :    293 units (0.293 secs)
CPP_17_txt__iostream_iterators__string            :    297 units (0.297 secs)
C_01_bin__function_getc                           :    297 units (0.297 secs)
CPP_02_bin__method_sbumpc                         :    300 units (0.300 secs)
CPP_10_bin__function_getline__string              :    300 units (0.300 secs)
CPP_20_txt__iostreambuf_iterators__string         :    300 units (0.300 secs)
C_01_txt__function_getc                           :    300 units (0.300 secs)
CPP_09_bin__function_getline__ostringstream       :    304 units (0.304 secs)
C_01_txt__function_getc                           :    306 units (0.306 secs)
CPP_17_txt__iostream_iterators__string            :    307 units (0.307 secs)
CPP_22_txt__vector_push_back                      :    307 units (0.307 secs)
CPP_09_txt__function_getline__ostringstream       :    310 units (0.310 secs)
CPP_10_txt__function_getline__string              :    310 units (0.310 secs)
CPP_20_bin__iostreambuf_iterators__string         :    310 units (0.310 secs)
CPP_17_txt__iostream_iterators__string            :    313 units (0.313 secs)
CPP_20_bin__iostreambuf_iterators__string         :    313 units (0.313 secs)
CPP_02_txt__method_sbumpc                         :    314 units (0.314 secs)
CPP_09_txt__function_getline__ostringstream       :    314 units (0.314 secs)
CPP_17_bin__iostream_iterators__string            :    314 units (0.314 secs)
CPP_20_txt__iostreambuf_iterators__string         :    326 units (0.326 secs)
CPP_22_txt__vector_push_back                      :    327 units (0.327 secs)
CPP_12_bin__methods_ifstream_get_put              :    337 units (0.337 secs)
CPP_22_bin__vector_push_back                      :    337 units (0.337 secs)
CPP_12_txt__methods_ifstream_get_put              :    347 units (0.347 secs)
CPP_01_bin__operator_in                           :    350 units (0.350 secs)
CPP_22_txt__vector_push_back                      :    350 units (0.350 secs)
CPP_18_txt__iostreambuf_iterators__copy           :    357 units (0.357 secs)
C_02_bin__function_fgetc                          :    360 units (0.360 secs)
C_02_bin__function_fgetc                          :    360 units (0.360 secs)
CPP_22_bin__vector_push_back                      :    363 units (0.363 secs)
CPP_18_bin__iostreambuf_iterators__copy           :    364 units (0.364 secs)
CPP_18_bin__iostreambuf_iterators__copy           :    364 units (0.364 secs)
C_02_txt__function_fgetc                          :    364 units (0.364 secs)
CPP_18_bin__iostreambuf_iterators__copy           :    367 units (0.367 secs)
CPP_12_txt__methods_ifstream_get_put              :    374 units (0.374 secs)
C_02_txt__function_fgetc                          :    377 units (0.377 secs)
CPP_01_txt__operator_in                           :    380 units (0.380 secs)
CPP_12_txt__methods_ifstream_get_put              :    380 units (0.380 secs)
C_02_bin__function_fgetc                          :    380 units (0.380 secs)
CPP_01_txt__operator_in                           :    381 units (0.381 secs)
CPP_01_txt__operator_in                           :    383 units (0.383 secs)
C_01_bin__function_getc                           :    383 units (0.383 secs)
C_02_txt__function_fgetc                          :    384 units (0.384 secs)
CPP_01_bin__operator_in                           :    393 units (0.393 secs)
CPP_19_txt__iostreambuf_iterators__transform      :    394 units (0.394 secs)
CPP_21_bin__vector__copy                          :    394 units (0.394 secs)
CPP_01_bin__operator_in                           :    397 units (0.397 secs)
CPP_12_bin__methods_ifstream_get_put              :    400 units (0.400 secs)
CPP_18_txt__iostreambuf_iterators__copy           :    403 units (0.403 secs)
CPP_12_bin__methods_ifstream_get_put              :    407 units (0.407 secs)
CPP_19_bin__iostreambuf_iterators__transform      :    407 units (0.407 secs)
CPP_21_txt__vector__copy                          :    407 units (0.407 secs)
CPP_21_txt__vector__copy                          :    414 units (0.414 secs)
CPP_21_bin__vector__copy                          :    417 units (0.417 secs)
CPP_19_bin__iostreambuf_iterators__transform      :    430 units (0.430 secs)
CPP_19_txt__iostreambuf_iterators__transform      :    443 units (0.443 secs)
CPP_21_txt__vector__copy                          :    454 units (0.454 secs)
CPP_19_bin__iostreambuf_iterators__transform      :    457 units (0.457 secs)
CPP_19_txt__iostreambuf_iterators__transform      :    457 units (0.457 secs)
CPP_18_txt__iostreambuf_iterators__copy           :    490 units (0.490 secs)
CPP_21_bin__vector__copy                          :    537 units (0.537 secs)
CPP_16_bin__iostream_iterators__copy              :    584 units (0.584 secs)
CPP_16_bin__iostream_iterators__copy              :    687 units (0.687 secs)
CPP_16_txt__iostream_iterators__copy              :    717 units (0.717 secs)
CPP_16_txt__iostream_iterators__copy              :    774 units (0.774 secs)
CPP_16_txt__iostream_iterators__copy              :    781 units (0.781 secs)
CPP_16_bin__iostream_iterators__copy              :    791 units (0.791 secs)




                     ------------------------------
                     5.3. GNU gcc 3.4.1 (DGGPP 2.3)
                     ------------------------------
 ### File size             : 10000
 ### Number of runs        : 3
 ### Number of tests       : 5
 ### Number of repetitions : 100
 ### CLOCKS_PER_SEC        : 91

CPP_24_bin__string__cpp_read                      :      1 units (0.011 secs)
CPP_24_bin__string__cpp_read                      :      3 units (0.033 secs)
C_03_bin__function_fread__const_buf               :      3 units (0.033 secs)
C_04_bin__function_fread__max_buf                 :      3 units (0.033 secs)
C_04_bin__function_fread__max_buf                 :      3 units (0.033 secs)
CPP_24_bin__string__cpp_read                      :      5 units (0.055 secs)
C_03_bin__function_fread__const_buf               :      5 units (0.055 secs)
C_03_bin__function_fread__const_buf               :      5 units (0.055 secs)
CPP_03_bin__method_sbumpc__op_out                 :      6 units (0.066 secs)
CPP_03_bin__method_sbumpc__op_out                 :      6 units (0.066 secs)
CPP_04_bin__method_rdbuf__op_out                  :      6 units (0.066 secs)
CPP_04_bin__method_rdbuf__op_out                  :      6 units (0.066 secs)
CPP_05_bin__methods_cpp_read_write__const_buf     :      6 units (0.066 secs)
CPP_06_txt__methods_cpp_read_write_oss__const_buf :      6 units (0.066 secs)
CPP_06_txt__methods_cpp_read_write_oss__const_buf :      6 units (0.066 secs)
CPP_08_bin__methods_cpp_read_write__max_buf       :      6 units (0.066 secs)
CPP_24_txt__string__cpp_read                      :      6 units (0.066 secs)
CPP_24_txt__string__cpp_read                      :      6 units (0.066 secs)
CPP_24_txt__string__cpp_read                      :      6 units (0.066 secs)
C_03_txt__function_fread__const_buf               :      6 units (0.066 secs)
C_04_bin__function_fread__max_buf                 :      6 units (0.066 secs)
C_04_txt__function_fread__max_buf                 :      6 units (0.066 secs)
C_04_txt__function_fread__max_buf                 :      6 units (0.066 secs)
CPP_03_bin__method_sbumpc__op_out                 :      8 units (0.088 secs)
CPP_04_bin__method_rdbuf__op_out                  :      8 units (0.088 secs)
CPP_04_txt__method_rdbuf__op_out                  :      8 units (0.088 secs)
CPP_05_bin__methods_cpp_read_write__const_buf     :      8 units (0.088 secs)
CPP_05_bin__methods_cpp_read_write__const_buf     :      8 units (0.088 secs)
CPP_05_txt__methods_cpp_read_write__const_buf     :      8 units (0.088 secs)
CPP_06_bin__methods_cpp_read_write_oss__const_buf :      8 units (0.088 secs)
CPP_08_bin__methods_cpp_read_write__max_buf       :      8 units (0.088 secs)
C_03_txt__function_fread__const_buf               :      8 units (0.088 secs)
C_04_txt__function_fread__max_buf                 :      8 units (0.088 secs)
CPP_03_txt__method_sbumpc__op_out                 :     10 units (0.110 secs)
CPP_03_txt__method_sbumpc__op_out                 :     10 units (0.110 secs)
CPP_03_txt__method_sbumpc__op_out                 :     10 units (0.110 secs)
CPP_04_txt__method_rdbuf__op_out                  :     10 units (0.110 secs)
CPP_04_txt__method_rdbuf__op_out                  :     10 units (0.110 secs)
CPP_05_txt__methods_cpp_read_write__const_buf     :     10 units (0.110 secs)
CPP_05_txt__methods_cpp_read_write__const_buf     :     10 units (0.110 secs)
CPP_06_bin__methods_cpp_read_write_oss__const_buf :     10 units (0.110 secs)
CPP_06_txt__methods_cpp_read_write_oss__const_buf :     10 units (0.110 secs)
CPP_08_txt__methods_cpp_read_write__max_buf       :     10 units (0.110 secs)
CPP_08_txt__methods_cpp_read_write__max_buf       :     10 units (0.110 secs)
CPP_08_txt__methods_cpp_read_write__max_buf       :     10 units (0.110 secs)
CPP_10_bin__function_getline__string              :     10 units (0.110 secs)
CPP_11_bin__method_ifstream_getline               :     10 units (0.110 secs)
CPP_11_bin__method_ifstream_getline               :     10 units (0.110 secs)
CPP_11_bin__method_ifstream_getline               :     10 units (0.110 secs)
CPP_14_bin__method_ifstream_get__const_buf        :     10 units (0.110 secs)
CPP_08_bin__methods_cpp_read_write__max_buf       :     11 units (0.121 secs)
CPP_09_bin__function_getline__ostringstream       :     11 units (0.121 secs)
CPP_10_bin__function_getline__string              :     11 units (0.121 secs)
CPP_10_txt__function_getline__string              :     11 units (0.121 secs)
CPP_10_txt__function_getline__string              :     11 units (0.121 secs)
CPP_10_txt__function_getline__string              :     11 units (0.121 secs)
CPP_11_txt__method_ifstream_getline               :     11 units (0.121 secs)
CPP_14_bin__method_ifstream_get__const_buf        :     11 units (0.121 secs)
CPP_15_bin__method_ifstream_get__streambuf        :     11 units (0.121 secs)
CPP_15_bin__method_ifstream_get__streambuf        :     11 units (0.121 secs)
CPP_15_txt__method_ifstream_get__streambuf        :     11 units (0.121 secs)
C_03_txt__function_fread__const_buf               :     11 units (0.121 secs)
CPP_09_bin__function_getline__ostringstream       :     13 units (0.143 secs)
CPP_10_bin__function_getline__string              :     13 units (0.143 secs)
CPP_11_txt__method_ifstream_getline               :     13 units (0.143 secs)
CPP_11_txt__method_ifstream_getline               :     13 units (0.143 secs)
CPP_14_txt__method_ifstream_get__const_buf        :     13 units (0.143 secs)
CPP_14_txt__method_ifstream_get__const_buf        :     13 units (0.143 secs)
CPP_15_bin__method_ifstream_get__streambuf        :     13 units (0.143 secs)
CPP_15_txt__method_ifstream_get__streambuf        :     13 units (0.143 secs)
CPP_15_txt__method_ifstream_get__streambuf        :     13 units (0.143 secs)
CPP_09_bin__function_getline__ostringstream       :     15 units (0.165 secs)
CPP_09_txt__function_getline__ostringstream       :     15 units (0.165 secs)
CPP_14_bin__method_ifstream_get__const_buf        :     15 units (0.165 secs)
CPP_23_bin__vector__cpp_read                      :     15 units (0.165 secs)
CPP_23_txt__vector__cpp_read                      :     15 units (0.165 secs)
CPP_06_bin__methods_cpp_read_write_oss__const_buf :     16 units (0.176 secs)
CPP_09_txt__function_getline__ostringstream       :     16 units (0.176 secs)
CPP_23_bin__vector__cpp_read                      :     16 units (0.176 secs)
CPP_23_txt__vector__cpp_read                      :     16 units (0.176 secs)
CPP_09_txt__function_getline__ostringstream       :     18 units (0.198 secs)
CPP_14_txt__method_ifstream_get__const_buf        :     18 units (0.198 secs)
CPP_23_bin__vector__cpp_read                      :     18 units (0.198 secs)
CPP_23_txt__vector__cpp_read                      :     18 units (0.198 secs)
CPP_02_bin__method_sbumpc                         :     20 units (0.220 secs)
CPP_13_bin__method_ifstream_get                   :     20 units (0.220 secs)
CPP_02_txt__method_sbumpc                         :     21 units (0.231 secs)
CPP_13_bin__method_ifstream_get                   :     21 units (0.231 secs)
CPP_13_txt__method_ifstream_get                   :     21 units (0.231 secs)
CPP_13_txt__method_ifstream_get                   :     21 units (0.231 secs)
C_01_bin__function_getc                           :     23 units (0.253 secs)
C_01_txt__function_getc                           :     23 units (0.253 secs)
CPP_01_bin__operator_in                           :     25 units (0.275 secs)
CPP_02_bin__method_sbumpc                         :     25 units (0.275 secs)
CPP_02_txt__method_sbumpc                         :     25 units (0.275 secs)
CPP_12_bin__methods_ifstream_get_put              :     25 units (0.275 secs)
CPP_12_bin__methods_ifstream_get_put              :     25 units (0.275 secs)
CPP_13_bin__method_ifstream_get                   :     25 units (0.275 secs)
CPP_13_txt__method_ifstream_get                   :     25 units (0.275 secs)
C_01_bin__function_getc                           :     25 units (0.275 secs)
C_01_txt__function_getc                           :     25 units (0.275 secs)
CPP_01_txt__operator_in                           :     26 units (0.286 secs)
CPP_02_txt__method_sbumpc                         :     26 units (0.286 secs)
CPP_12_bin__methods_ifstream_get_put              :     26 units (0.286 secs)
CPP_12_txt__methods_ifstream_get_put              :     26 units (0.286 secs)
C_01_txt__function_getc                           :     26 units (0.286 secs)
CPP_01_bin__operator_in                           :     28 units (0.308 secs)
CPP_02_bin__method_sbumpc                         :     28 units (0.308 secs)
CPP_12_txt__methods_ifstream_get_put              :     28 units (0.308 secs)
C_01_bin__function_getc                           :     28 units (0.308 secs)
CPP_01_txt__operator_in                           :     30 units (0.330 secs)
CPP_17_bin__iostream_iterators__string            :     30 units (0.330 secs)
CPP_22_bin__vector_push_back                      :     31 units (0.341 secs)
C_02_txt__function_fgetc                          :     31 units (0.341 secs)
CPP_12_txt__methods_ifstream_get_put              :     33 units (0.363 secs)
C_02_txt__function_fgetc                          :     33 units (0.363 secs)
CPP_01_txt__operator_in                           :     35 units (0.385 secs)
CPP_17_bin__iostream_iterators__string            :     35 units (0.385 secs)
CPP_22_bin__vector_push_back                      :     35 units (0.385 secs)
CPP_22_txt__vector_push_back                      :     35 units (0.385 secs)
C_02_bin__function_fgetc                          :     35 units (0.385 secs)
CPP_17_bin__iostream_iterators__string            :     36 units (0.396 secs)
CPP_17_txt__iostream_iterators__string            :     36 units (0.396 secs)
CPP_22_bin__vector_push_back                      :     36 units (0.396 secs)
CPP_22_txt__vector_push_back                      :     36 units (0.396 secs)
CPP_01_bin__operator_in                           :     38 units (0.418 secs)
C_02_bin__function_fgetc                          :     38 units (0.418 secs)
CPP_07_txt__methods_cpp_readsome_write__const_buf :     40 units (0.440 secs)
CPP_17_txt__iostream_iterators__string            :     40 units (0.440 secs)
C_02_bin__function_fgetc                          :     40 units (0.440 secs)
CPP_07_bin__methods_cpp_readsome_write__const_buf :     41 units (0.451 secs)
CPP_07_txt__methods_cpp_readsome_write__const_buf :     41 units (0.451 secs)
CPP_17_txt__iostream_iterators__string            :     41 units (0.451 secs)
CPP_07_bin__methods_cpp_readsome_write__const_buf :     43 units (0.473 secs)
CPP_22_txt__vector_push_back                      :     43 units (0.473 secs)
CPP_07_bin__methods_cpp_readsome_write__const_buf :     45 units (0.495 secs)
CPP_07_txt__methods_cpp_readsome_write__const_buf :     46 units (0.505 secs)
CPP_21_txt__vector__copy                          :     46 units (0.505 secs)
CPP_21_bin__vector__copy                          :     48 units (0.527 secs)
CPP_21_txt__vector__copy                          :     50 units (0.549 secs)
C_02_txt__function_fgetc                          :     50 units (0.549 secs)
CPP_21_bin__vector__copy                          :     51 units (0.560 secs)
CPP_21_txt__vector__copy                          :     55 units (0.604 secs)
CPP_20_bin__iostreambuf_iterators__string         :     56 units (0.615 secs)
CPP_20_bin__iostreambuf_iterators__string         :     58 units (0.637 secs)
CPP_20_txt__iostreambuf_iterators__string         :     58 units (0.637 secs)
CPP_20_bin__iostreambuf_iterators__string         :     60 units (0.659 secs)
CPP_21_bin__vector__copy                          :     60 units (0.659 secs)
CPP_16_bin__iostream_iterators__copy              :     63 units (0.692 secs)
CPP_20_txt__iostreambuf_iterators__string         :     63 units (0.692 secs)
CPP_20_txt__iostreambuf_iterators__string         :     65 units (0.714 secs)
CPP_16_bin__iostream_iterators__copy              :     66 units (0.725 secs)
CPP_18_bin__iostreambuf_iterators__copy           :     66 units (0.725 secs)
CPP_18_bin__iostreambuf_iterators__copy           :     66 units (0.725 secs)
CPP_18_txt__iostreambuf_iterators__copy           :     66 units (0.725 secs)
CPP_16_txt__iostream_iterators__copy              :     68 units (0.747 secs)
CPP_18_txt__iostreambuf_iterators__copy           :     68 units (0.747 secs)
CPP_19_txt__iostreambuf_iterators__transform      :     68 units (0.747 secs)
CPP_16_txt__iostream_iterators__copy              :     70 units (0.769 secs)
CPP_18_txt__iostreambuf_iterators__copy           :     70 units (0.769 secs)
CPP_19_bin__iostreambuf_iterators__transform      :     70 units (0.769 secs)
CPP_16_bin__iostream_iterators__copy              :     71 units (0.780 secs)
CPP_19_bin__iostreambuf_iterators__transform      :     71 units (0.780 secs)
CPP_18_bin__iostreambuf_iterators__copy           :     73 units (0.802 secs)
CPP_19_bin__iostreambuf_iterators__transform      :     73 units (0.802 secs)
CPP_19_txt__iostreambuf_iterators__transform      :     73 units (0.802 secs)
CPP_19_txt__iostreambuf_iterators__transform      :     76 units (0.835 secs)
CPP_16_txt__iostream_iterators__copy              :     78 units (0.857 secs)


==================== 5. Summary results : END =======================



 Alex Vinokur
     email: alex DOT vinokur AT gmail DOT com
     http://mathforum.org/library/view/10978.html
     http://sourceforge.net/users/alexvn






-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
Alex Vinokur | 8 Aug 08:49
Picon

<Release> Simple C/C++ Perfometer: Reading file to string (Versions 1.x)


#####################
### Program files ###
#####################


==============================­===========
* Performance
* Comparative Performance Measurement
------------------------------­----------- 
* Tool     : Simple C/C++ Perfometer
* Algorithm: Reading file into string
* Language : C++
* Content  : Program files
* Version  : F2S-1.0.6
------------------------------­----------- 
* Attachments
  - file2str-1-0-6.cpp
==============================­===========


  Alex Vinokur
     email: alex DOT vinokur AT gmail DOT com
     http://mathforum.org/library/view/10978.html
     http://sourceforge.net/users/alexvn



begin 666 file2str-1-0-6.cpp
M+R\ <at> /3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]
M/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T-"B\O#0HO+R  <at> 
M0R]#*RL <at> 4')O9W)A;2!097)F;W)M86YC92!-96%S=7)E;65N= T*("  <at> ("-D
M969I;F4 <at> 4%)/1U)!35].04U%("  <at> (" B4VEM<&QE($,O0RLK(%!E<F9O;65T
M97(Z(%)E861I;F< <at> 9FEL92!I;G1O('-T<FEN9R(-"B  <at> (" C9&5F:6YE(%!2
M3T=204U?5D524TE/3B  <at> (E9E<G-I;VX <at> 1C)3+3$N,"XV( <at> T*+R\-"B\O(" M
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM#0HO+PT*+R\ <at> 
M($-O<'ER:6=H=" H0RD <at> ,C P,BTR,# U($%L97 <at>  <at> 5FEN;VMU< <at> T*+R\-"B\O
M(" M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM#0HO+PT*+R\ <at> (%1H
M:7, <at> <V]F='=A<F4 <at> :7, <at> <')O=FED960 <at> )V%S+6ES)RP <at> =VET:&]U="!A;GD <at> 
M97AP<F5S<R!O<B!I;7!L:65D#0HO+R  <at> =V%R<F%N='DN("!);B!N;R!E=F5N
M="!W:6QL('1H92!A=71H;W( <at> 8F4 <at> :&5L9"!L:6%B;&4 <at> 9F]R(&%N>2!D86UA
M9V5S#0HO+R  <at> 87)I<VEN9R!F<F]M('1H92!U<V4 <at> ;V8 <at> =&AI<R!S;V9T=V%R
M92X-"B\O#0HO+R  <at> 4&5R;6ES<VEO;B!I<R!G<F%N=&5D('1O(&%N>6]N92!T
M;R!U<V4 <at> =&AI<R!S;V9T=V%R92!F;W( <at> 86YY('!U<G!O<V4L#0HO+R  <at> :6YC
M;'5D:6YG(&-O;6UE<F-I86P <at> 87!P;&EC871I;VYS+"!A;F0 <at> =&\ <at> 86QT97( <at> 
M:70 <at> 86YD(')E9&ES=')I8G5T92!I= T*+R\ <at> (&9R965L>2P <at> <W5B:F5C="!T
M;R!T:&4 <at> 9F]L;&]W:6YG(')E<W1R:6-T:6]N<SH-"B\O#0HO+R  <at> ,2X <at> 5&AE
M(&]R:6=I;B!O9B!T:&ES('-O9G1W87)E(&UU<W0 <at> ;F]T(&)E(&UI<W)E<')E
M<V5N=&5D.R!Y;W4 <at> ;75S="!N;W0-"B\O("  <at> ("!C;&%I;2!T:&%T('EO=2!W
M<F]T92!T:&4 <at> ;W)I9VEN86P <at> <V]F='=A<F4N($EF('EO=2!U<V4 <at> =&AI<R!S
M;V9T=V%R90T*+R\ <at> ("  <at> (&EN(&$ <at> <')O9'5C="P <at> 86X <at> 86-K;F]W;&5D9VUE
M;G0 <at> :6X <at> =&AE('!R;V1U8W0 <at> 9&]C=6UE;G1A=&EO;B!W;W5L9"!B90T*+R\ <at> 
M("  <at> (&%P<')E8VEA=&5D(&)U="!I<R!N;W0 <at> <F5Q=6ER960N#0HO+R  <at> ,BX <at> 
M06QT97)E9"!S;W5R8V4 <at> =F5R<VEO;G, <at> ;75S="!B92!P;&%I;FQY(&UA<FME
M9"!A<R!S=6-H+"!A;F0 <at> ;75S="!N;W0 <at> 8F4-"B\O("  <at> ("!M:7-R97!R97-E
M;G1E9"!A<R!B96EN9R!T:&4 <at> ;W)I9VEN86P <at> <V]F='=A<F4N#0HO+R  <at> ,RX <at> 
M5&AI<R!N;W1I8V4 <at> ;6%Y(&YO="!B92!R96UO=F5D(&]R(&%L=&5R960 <at> 9G)O
M;2!A;GD <at> <V]U<F-E(&1I<W1R:6)U=&EO;BX-"B\O#0HO+R  <at> ("  <at> 06QE>"!6
M:6YO:W5R#0HO+R  <at> ("  <at> #0HO+R  <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+0T*+R\ <at> #0HO+R  <at> 96UA:6PZ86QE>"!$3U0 <at> =FEN;VMU<B!!5"!G
M;6%I;"!$3U0 <at> 8V]M#0HO+R  <at> :'1T<#HO+W5P+G1O+V%L97AV#0HO+PT*+R\ <at> 
M/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]
M/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T-" <at> T*#0H-"B\O("4E
M)24E)24E)24E)24E)24E)24E)24E)24E)24E)24E)24E)24E)24E)24E)24E
M)24E)24E#0HO+PT*+R\ <at> ("  <at> 5&5S='-U:71E<PT*+R\ <at> ("  <at> +2TM+2TM+2TM
M+0T*+R\ <at> ("  <at> 0RTP,2  <at> ("  <at> (#H <at> 0RU&=6YC=&EO;B!G971C*"D-"B\O("  <at> 
M($,M,#( <at> ("  <at> (" Z($,M1G5N8W1I;VX <at> 9F=E=&,H*0T*+R\ <at> ("  <at> 0RTP,R  <at> 
M("  <at> (#H <at> 0RU&=6YC=&EO;B!F<F5A9" <at> I("T <at> =VET:"!C;VYS="!S:7IE(&)U
M9F9E< <at> T*+R\ <at> ("  <at> 0RTP-"  <at> ("  <at> (#H <at> 0RU&=6YC=&EO;B!F<F5A9" <at> I("T <at> 
M=VET:"!M87 <at>  <at> <VEZ92!B=69F97(-"B\O("  <at> (%5N:7 <at> M0RTP-2 Z(%5.25 <at>  <at> 
M<WES=&5M(&-A;&P <at> ;6UA< T*+R\ <at> ("  <at> 0U!0+3 Q("  <at> (#H <at> :7-T<F5A;3HZ
M;W!E<F%T;W(^/ <at> T*+R\ <at> ("  <at> 0U!0+3 R("  <at> (#H <at> <W1R96%M8G5F.CIS8G5M
M<&,H*0T*+R\ <at> ("  <at> 0U!0+3 S("  <at> (#H <at> <W1R96%M8G5F.CIS8G5M<&,H*2!A
M;F0 <at> ;W-T<F5A;3HZ;W!E<F%T;W(\/ T*+R\ <at> ("  <at> 0U!0+3 T("  <at> (#H <at> :69S
M=')E86TZ.G)D8G5F*"D <at> 86YD(&]S=')E86TZ.F]P97)A=&]R/#P-"B\O("  <at> 
M($-04"TP-2  <at> (" Z(&ES=')E86TZ.G)E860H*2!A;F0 <at> ;W-T<F5A;3HZ=W)I
M=&4H*2 M('=I=& <at>  <at> 8V]N<W0 <at> <VEZ92!B=69F97(-"B\O("  <at> ($-04"TP-B  <at> 
M(" Z(&ES=')E86TZ.G)E860H*2!A;F0 <at> ;W-T<F5A;3HZ=W)I=&4H*2P <at> <W1D
M.CIO<W1R:6YG<W1R96%M+"!O<W1R96%M.CIO<&5R871O<CP\("T <at> =VET:"!C
M;VYS="!B=69F97(-"B\O("  <at> ($-04"TP-R  <at> (" Z(&ES=')E86TZ.G)E861S
M;VUE*"D <at> 86YD(&]S=')E86TZ.G=R:71E*"D <at> +2!W:71H(&-O;G-T('-I>F4 <at> 
M8G5F9F5R#0HO+R  <at> ("!#4% M,# <at>  <at> ("  <at> .B!I<W1R96%M.CIR96%D*"D <at> 86YD
M(&]S=')E86TZ.G=R:71E*"D <at> +2!W:71H(&UA>"!S:7IE(&)U9F9E< <at> T*+R\ <at> 
M("  <at> 0U!0+3 Y("  <at> (#H <at> <W1D.CIG971L:6YE+"!S=&0Z.F]S=')I;F=S=')E
M86TL(&]S=')E86TZ.F]P97)A=&]R/#P-"B\O("  <at> ($-04"TQ,"  <at> (" Z('-T
M9#HZ9V5T;&EN92P <at> <W1D.CIS=')I;F<L(&]S=')E86TZ.F]P97)A=&]R/#P-
M"B\O("  <at> ($-04"TQ,2  <at> (" Z(&ES=')E86TZ.F=E=&QI;F4L('-T9#HZ;W-T
M<FEN9W-T<F5A;2P <at> ;W-T<F5A;3HZ;W!E<F%T;W(\/ T*+R\ <at> ("  <at> 0U!0+3$R
M("  <at> (#H <at> :7-T<F5A;3HZ9V5T*&-H87(I(&%N9"!O<W1R96%M.CIP=70-"B\O
M("  <at> ($-04"TQ,R  <at> (" Z(&ES=')E86TZ.F=E="AC:&%R*0T*+R\ <at> ("  <at> 0U!0
M+3$T("  <at> (#H <at> :7-T<F5A;3HZ9V5T*&-H87(J+"!S=')E86US:7IE*2 L(&]S
M=')E86TZ.F]P97)A=&]R/#P <at> +2!W:71H(&-O;G-T('-I>F4 <at> 8G5F9F5R#0HO
M+R  <at> ("!#4% M,34 <at> ("  <at> .B!I<W1R96%M.CIG970H<W1R96%M8G5F)BD <at> (&%N
M9"!S=&0Z.G-T<F5A;6)U9BP <at> ;W-T<F5A;3HZ;W!E<F%T;W(\/ T*+R\ <at> ("  <at> 
M0U!0+3$V("  <at> (#H <at> <W1D.CII<W1R96%M7VET97)A=&]R+"!S=&0Z.F]S=')E
M86U?:71E<F%T;W( <at> 86YD('-T9#HZ8V]P>0T*+R\ <at> ("  <at> 0U!0+3$W("  <at> (#H <at> 
M<W1D.CII<W1R96%M7VET97)A=&]R+"!S=&0Z.G-T<FEN9PT*+R\ <at> ("  <at> 0U!0
M+3$X("  <at> (#H <at> <W1D.CII<W1R96%M8G5F7VET97)A=&]R+"!S=&0Z.F]S=')E
M86UB=69?:71E<F%T;W( <at> 86YD('-T9#HZ8V]P>0T*+R\ <at> ("  <at> 0U!0+3$Y("  <at> 
M(#H <at> <W1D.CII<W1R96%M8G5F7VET97)A=&]R+"!S=&0Z.F]S=')E86UB=69?
M:71E<F%T;W( <at> 86YD('-T9#HZ=')A;G-F;W)M#0HO+R  <at> ("!#4% M,C  <at> ("  <at> 
M.B!S=&0Z.FES=')E86UB=69?:71E<F%T;W( <at> 86YD('-T9#HZ<W1R:6YG#0HO
M+R  <at> ("!#4% M,C$ <at> ("  <at> .B!S=&0Z.G9E8W1O<B!A;F0 <at> <W1D.CIC;W!Y#0HO
M+R  <at> ("!#4% M,C( <at> ("  <at> .B!S=&0Z.G9E8W1O<B!A;F0 <at> <'5S:%]B86-K*"D-
M"B\O("  <at> ($-04"TR,R  <at> (" Z('-T9#HZ=F5C=&]R(&%N9"!I<W1R96%M.CIR
M96%D*"D-"B\O("  <at> ($-04"TR-"  <at> (" Z('-T9#HZ<W1R:6YG(&%N9"!I<W1R
M96%M.CIR96%D*"D-"B\O#0HO+R E)24E)24E)24E)24E)24E)24E)24E)24E
M)24E)24E)24E)24E)24E)24E)24E)24E)24E)0T*#0H-" <at> T*+R\ <at> +2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2T-"B-I9B H*&1E9FEN
M960 <at> =6YI>"D <at> ?'P <at> *&1E9FEN960 <at> 7U]U;FEX*2!\?" H9&5F:6YE9"!U;FEX
M7U\I('Q\("AD969I;F5D(%]?=6YI>%]?*2D-"B-I9B H(2 <at> H9&5F:6YE9"!$
M2D=04"D <at> ?'P <at> *&1E9FEN960 <at> 7U]$2D=04"D <at> ?'P <at> *&1E9FEN960 <at> 1$I'4%!?
M7RD <at> ?'P <at> *&1E9FEN960 <at> 7U]$2D=04%]?*2DI#0HC9&5F:6YE(%5.25A?14Y6
M#0HC96YD:68-"B-E;F1I9 <at> T*#0HO+R ]/3T]/3T]/3T]/3T]/0T*(VEN8VQU
M9&4 <at> /&-T:6UE/ <at> T*(VEN8VQU9&4 <at> /&-A<W-E<G0^#0HC:6YC;'5D92 \<W1R
M:6YG/ <at> T*(VEN8VQU9&4 <at> /'9E8W1O<CX-"B-I;F-L=61E(#QI;W-T<F5A;3X-
M"B-I;F-L=61E(#QI;VUA;FEP/ <at> T*(VEN8VQU9&4 <at> /&9S=')E86T^#0HC:6YC
M;'5D92 \<W-T<F5A;3X-"B-I;F-L=61E(#QI=&5R871O<CX-"B-I;F-L=61E
M(#QA;&=O<FET:&T^#0HC:69D968 <at> 54Y)6%]%3E8-"B-I;F-L=61E(#QF8VYT
M;"YH/ <at> T*(VEN8VQU9&4 <at> /'-Y<R]T>7!E<RYH/ <at> T*(VEN8VQU9&4 <at> /'-Y<R]S
M=&%T+F <at> ^#0HC:6YC;'5D92 \<WES+VUM86XN:#X-"B-E;F1I9 <at> T*=7-I;F< <at> 
M;F%M97-P86-E('-T9#L-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2T-"G1Y<&5D968 <at> =6YS:6=N960 <at> ;&]N9R!U;&]N9SL-
M"G1Y<&5D968 <at> =6YS:6=N960 <at> :6YT("!U:6YT.PT*#0HO+R M+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*(V1E9FEN92  <at> 34%87U9!
M3%5%*' <at> L>2D <at> (" <at> H>"D <at> /B H>2D <at> /R H>"D <at> .B H>2DI#0HC9&5F:6YE("!!
M4U-%4E0H>"D <at> ("  <at> ("  <at> :68 <at> *"$H>"DI(%P-" <at> D)"2![(%P-" <at> D)"2!A<W-E
M<G0H>"D[(%P-" <at> D)"2!C97)R(#P\(");(B!<#0H)"0D <at> ("  <at> (" \/"!?7T9)
M3$5?7R!<#0H)"0D <at> ("  <at> (" \/" B+" B(%P-" <at> D)"2  <at> ("  <at> (#P\(%]?3$E.
M15]?("!<#0H)"0D <at> ("  <at> (" \/" B72!A<W-E<G0H*2!N;W0 <at> =V]R:VEN9R( <at> 
M7 T*"0D)("  <at> ("  <at> /#P <at> 96YD;#L <at> (%P-" <at> D)"2  <at> ("  <at> (&%B;W)T*"D[(%P-
M" <at> D)"2!]#0H-" <at> T*+R\ <at> /3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]
M/3T]/3T]/3T]/0T*+R\ <at> /3T]/3T](%!A<G0M,3H <at> 0V]M;6]N($%U>&EL87)Y
M($9U;F-T:6]N<PT*+R\ <at> /3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]
M/3T]/3T]/3T]/0T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2T-"B\O($9U;F-T:6]N(#$N,#$-"G-T871I8R!S=')I;F< <at> 9V5T7V-O;7!I
M;&5R7VEN9F\H*0T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M#0I[#0IO<W1R:6YG<W1R96%M(&]S<SL-"F]S=')I;F=S=')E86T <at> ='-S.PT*
M<W1R:6YG('-T<CL-" <at> T*+R\ <at> +2TM+2TM($=.52!G8V, <at> +2TM+2TM#0HC:69D
M968 <at> 7U]'3E5#7U\-"B  <at> ;W-S+G-T<B <at> B(BD[#0H <at> ('1S<RYS='(H(B(I.PT*
M("!S='(N97)A<V4H*3L-" <at> T*("!O<W, <at> /#P <at> (D=.52!G8V, <at> (B \/"!?7T=.
M54-?7SL-"B-I9F1E9B!?7T=.54-?34E.3U)?7PT*("!O<W, <at> /#P <at> (BXB(#P\
M(%]?1TY50U]-24Y/4E]?.PT*(VEF9&5F(%]?1TY50U]0051#2$Q%5D5,7U\-
M"B-I9B H7U]'3E5#7U!!5$-(3$5614Q?7RD-"B  <at> ;W-S(#P\("(N(B \/"!?
M7T=.54-?4$%40TA,159%3%]?.PT*(V5N9&EF#0HC96YD:68-"B-E;F1I9 <at> T*
M#0HC:68 <at> *%]?0UE'5TE.,S)?7R!\?"!?7T-91U=)3E]?*0T*("!O<W, <at> /#P <at> 
M(B H0UE'5TE.*2([#0HC96YD:68-" <at> T*(VEF("A?7TU)3D=7,S)?7R!\?"!?
M7TU)3D=77U\ <at> *0T*("!O<W, <at> /#P <at> (B H34E.1U<I(CL-"B-E;F1I9 <at> T*#0HC
M:68 <at> *%]?1$I'4%!?7RD-"B  <at> ;W-S(#P\("( <at> *$1*1U!0("( <at> /#P <at> 7U]$2D=0
M4%]?.PT*(VEF9&5F(%]?1$I'4%!?34E.3U)?7PT*("!O<W, <at> /#P <at> (BXB(#P\
M(%]?1$I'4%!?34E.3U)?7SL-"B-E;F1I9 <at> T*("!O<W, <at> /#P <at> (BDB.PT*(V5N
M9&EF#0H-"B-E;F1I9 <at> T*#0HO+R M+2TM+2T <at> 36EC<F]S;V9T($,K*R M+2TM
M+2T-"B-I9F1E9B!?35-#7U9%4 <at> T*("!O<W,N<W1R*"(B*3L-"B  <at> ='-S+G-T
M<B <at> B(BD[#0H <at> ('-T<BYE<F%S92 <at> I.PT*#0H <at> (&]S<R \/" B36EC<F]S;V9T
M($,K*R B.PT*("!T<W, <at> /#P <at> 7TU30U]615([#0H <at> ('-T<B ]('1S<RYS='(H
M*3L-"B  <at> 05-315)4("AS='(N<VEZ92 <at> I(#T](#0I.PT*("!O<W, <at> /#P <at> <W1R
M6S!=(#P\('-T<ELQ72 \/" B+B( <at> /#P <at> <W1R6S)=(#P\('-T<ELS73L-" <at> T*
M(VEF9&5F(%]-04Y!1T5$#0H-"B-I9B H7TU!3D%'140I#0H <at> (&]S<R \/" B
M("A-86YA9V5D*2([#0HC96QS90T*("!!4U-%4E0 <at> *# I.PT*("!O<W, <at> /#P <at> 
M(B H56YM86YA9V5D*2([#0HC96YD:68-"B-E;'-E#0H-"B  <at> ;W-S(#P\("( <at> 
M*%5N;6%N86=E9"DB.PT*(V5N9&EF#0H-"B-E;F1I9 <at> T*#0HO+R M+2TM+2T <at> 
M26YT96P <at> 0RLK("TM+2TM+0T*(VEF9&5F(%]?24Y414Q?0T]-4$E,15(-"B  <at> 
M;W-S+G-T<B <at> B(BD[#0H <at> ('1S<RYS='(H(B(I.PT*("!S='(N97)A<V4H*3L-
M" <at> T*("!O<W, <at> /#P <at> (DEN=&5L($,K*R B.PT*("!T<W, <at> /#P <at> 7U])3E1%3%]#
M3TU024Q%4CL-"B  <at> <W1R(#T <at> ='-S+G-T<B <at> I.PT*("!!4U-%4E0 <at> *'-T<BYS
M:7IE*"D <at> /3T <at> ,RD[#0H <at> (&]S<R \/"!S=');,%T <at> /#P <at> (BXB(#P\('-T<ELQ
M73L-"B-E;F1I9 <at> T*#0HO+R M+2TM+2T <at> 0F]R;&%N9"!#*RL <at> +2TM+2TM#0HC
M:69D968 <at> 7U]"0U!,55-03%537U\-"B  <at> ;W-S+G-T<B <at> B(BD[#0H <at> ('1S<RYS
M='(H(B(I.PT*("!S='(N97)A<V4H*3L-" <at> T*("!O<W, <at> /#P <at> (D)O<FQA;F0 <at> 
M0RLK("([#0H <at> ('1S<R \/"!H97 <at>  <at> /#P <at> 7U]"0U!,55-03%537U\[#0H <at> ('-T
M<B ]('1S<RYS='(H*3L-"B  <at> 05-315)4("AS='(N<VEZ92 <at> I(#T](#,I.PT*
M("!O<W, <at> /#P <at> <W1R6S!=(#P\("(N(B \/"!S=');,5T <at> /#P <at> (BXB(#P\('-T
M<ELR73L-"B-E;F1I9 <at> T*#0HO+R M+2TM+2T <at> 1&EG:71A;"!-87)S($,K*R M
M+2TM+2T-"B-I9F1E9B!?7T1-0U]?#0H <at> (&]S<RYS='(H(B(I.PT*("!T<W,N
M<W1R*"(B*3L-"B  <at> <W1R+F5R87-E*"D[#0H-"B-I9FYD968 <at> 7U]$34-?5D52
M4TE/3E]35%))3D=?7PT*(V5R<F]R(%]?1$U#7U9%4E-)3TY?4U1224Y'7U\ <at> 
M3F]T($1E9FEN960-"B-E;F1I9 <at> T*("!O<W, <at> /#P <at> 7U]$34-?5D524TE/3E]3
M5%))3D=?7SL-"B-E;F1I9 <at> T*#0H <at> (')E='5R;B!O<W,N<W1R*"D[#0H-"GT <at> 
M+R\ <at> 9V5T7V-O;7!I;&5R7VEN9F\-" <at> T*#0HO+R M+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+0T*+R\ <at> 1G5N8W1I;VX <at> ,2XP, <at> T*<W1A=&EC('9O:60 <at> 
M<VAO=U]C;VUP:6QE<E]I;F9O*"D-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM#0I[#0IC;VYS="!S=')I;F< <at> <W1R*&=E=%]C;VUP:6QE<E]I
M;F9O*"DI.PT*#0H <at> (&EF("AS='(N96UP='DH*2D <at> <F5T=7)N.PT*#0H <at> (&-O
M=70 <at> /#P <at> <W1R:6YG("AS='(N<VEZ92 <at> I+" G+2<I(#P\(&5N9&P[#0H <at> (&-O
M=70 <at> /#P <at> <W1R(#P\(&5N9&P[#0H <at> (&-O=70 <at> /#P <at> <W1R:6YG("AS='(N<VEZ
M92 <at> I+" G+2<I(#P\(&5N9&P[#0I]#0H-" <at> T*#0HO+R M+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*+R\ <at> 1G5N8W1I;VX <at> ,2XP
M,PT*<W1A=&EC('-I>F5?="!G971?9FEL97-I>F5?=FEA7V9S965K7V9T96QL
M(" <at> -" <at> EC;VYS="!C:&%R("H <at> 8V]N<W0 <at> 9FEL96YA;65?:2P <at> #0H)8V]N<W0 <at> 
M8F]O;"  <at> ("  <at> ("  <at> (&ES7W1X=%]M;V1E7VD-" <at> DI#0HO+R M+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*>PT*1DE,12H <at> 9G  <at> 
M/2!.54Q,.PT*#0H <at> (&9P(#T <at> 9F]P96XH9FEL96YA;65?:2P <at> :7-?='AT7VUO
M9&5?:2 _(")R(B Z(")R8B(I.PT*("!!4U-%4E0 <at> *&9P*3L-" <at> T*:6YT(')C
M(#T <at> 9G-E96LH9G L(# L(%-%14M?14Y$*3L-"B  <at> 05-315)4("AR8R ]/2 P
M*3L-" <at> T*8V]N<W0 <at> <VEZ95]T(')E=%]F:6QE<VEZ92 H9G1E;&PH9G I*3L-
M" <at> T*("!R8R ](&9C;&]S92AF<"D[#0H <at> ($%34T525" H<F, <at> /3T <at> ,"D[#0H-
M"B  <at> <F5T=7)N(')E=%]F:6QE<VEZ93L-"GT-" <at> T*#0HC:69D968 <at> 54Y)6%]%
M3E8-" <at> T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+0T*+R\ <at> 1G5N8W1I;VX <at> ,2XP- T*<W1A=&EC('-I>F5?="!G971?
M9FEL97-I>F5?=FEA7VQS965K(" <at> -" <at> EC;VYS="!C:&%R("H <at> 8V]N<W0 <at> 9FEL
M96YA;65?:2P <at> #0H)8V]N<W0 <at> 8F]O;"  <at> ("  <at> ("  <at> (&ES7W1X=%]M;V1E7VD-
M" <at> DI#0I[#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+0T*:6YT(&9D(#T <at> +3$[#0H-"B  <at> 9F0 <at> /2!O<&5N*&9I;&5N86UE
M7VDL(&ES7W1X=%]M;V1E7VD <at> /R!/7U)$3TY,62 Z($]?4D1/3DQ9('P <at> 3U]"
M24Y!4EDI.PT*("!!4U-%4E0 <at> *&9D("$]("TQ*3L-" <at> T*;V9F7W0 <at> <F,[#0H <at> 
M(')C(#T <at> ;'-E96LH9F0L(# L(%-%14M?14Y$*3L-"B  <at> 05-315)4("AR8R A
M/2 M,2D[#0H-"F-O;G-T('-I>F5?="!R971?9FEL97-I>F4 <at> *'-T871I8U]C
M87-T/'-I>F5?=#XH<F,I*3L-" <at> T*("!R8R ](&-L;W-E*&9D*3L-"B  <at> 05-3
M15)4("AR8R ]/2 P*3L-" <at> T*("!R971U<FX <at> <F5T7V9I;&5S:7IE.PT*?0T*
M#0H-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2T-"B\O($9U;F-T:6]N(#$N,#4-"G-T871I8R!S:7IE7W0 <at> 9V5T7V9I
M;&5S:7IE7W9I85]F<W1A=" H#0H)8V]N<W0 <at> 8VAA<B J(&-O;G-T(&9I;&5N
M86UE7VDL( T*"6-O;G-T(&)O;VP <at> ("  <at> ("  <at> ("!I<U]T>'1?;6]D95]I#0H)
M*0T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2T-"GL-"FEN="!F9" ]("TQ.PT*#0H <at> (&9D(#T <at> ;W!E;BAF:6QE;F%M95]I
M+"!I<U]T>'1?;6]D95]I(#\ <at> 3U]21$].3%D <at> .B!/7U)$3TY,62!\($]?0DE.
M05)9*3L-"B  <at> 05-315)4("AF9" A/2 M,2D[#0H-"G-T<G5C="!S=&%T(&)U
M9CL-"FEN="!R8R ](&9S=&%T*&9D+" F8G5F*3L-"B  <at> 05-315)4("AR8R ]
M/2 P*3L-" <at> T*8V]N<W0 <at> <VEZ95]T(')E=%]F:6QE<VEZ92 H<W1A=&EC7V-A
M<W0\<VEZ95]T/BAB=68N<W1?<VEZ92DI.PT*#0H <at> (')C(#T <at> 8VQO<V4H9F0I
M.PT*("!!4U-%4E0 <at> *')C(#T](# I.PT*#0H <at> (')E='5R;B!R971?9FEL97-I
M>F4[#0I]#0H-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2T-"B\O($9U;F-T:6]N(#$N,#8-"G-T871I8R!S:7IE7W0 <at> 
M9V5T7V9I;&5S:7IE7W9I85]S=&%T(" <at> -" <at> EC;VYS="!C:&%R("H <at> 8V]N<W0 <at> 
M9FEL96YA;65?:0T*"2D-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM#0I[#0IS=')U8W0 <at> <W1A="!B=68[#0H-"FEN="!R
M8R ]('-T870 <at> *&9I;&5N86UE7VDL("9B=68I.PT*("!!4U-%4E0 <at> *')C(#T]
M(# I.PT*#0IC;VYS="!S:7IE7W0 <at> <F5T7V9I;&5S:7IE("AS=&%T:6-?8V%S
M=#QS:7IE7W0^*&)U9BYS=%]S:7IE*2D[#0H-"B  <at> <F5T=7)N(')E=%]F:6QE
M<VEZ93L-"GT-" <at> T*(V5N9&EF#0H-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2T-"B\O($9U;F-T:6]N(#$N,#<-"G-T
M871I8R!S:7IE7W0 <at> 9V5T7V9I;&5S:7IE7W9I85]S965K9U]T96QL9R H#0H)
M8V]N<W0 <at> 8VAA<B J(&-O;G-T(&9I;&5N86UE7VDL( T*"6-O;G-T(&)O;VP <at> 
M("  <at> ("  <at> ("!I<U]T>'1?;6]D95]I#0H)*0T*+R\ <at> +2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2T-"GL-"FEF<W1R96%M(&9S.PT*
M#0H <at> (&EF("AI<U]T>'1?;6]D95]I*2!F<RYO<&5N("AF:6QE;F%M95]I*3L-
M"B  <at> 96QS92  <at> ("  <at> ("  <at> ("  <at> ("  <at> (&9S+F]P96X <at> *&9I;&5N86UE7VDL(&EO
M<SHZ8FEN87)Y*3L-" <at> T*("!!4U-%4E0 <at> *&9S*3L-"B  <at> 05-315)4("AF<RYI
M<U]O<&5N*"DI.PT*#0H-"B  <at> (&9S+G-E96MG*# L(&EO<SHZ8F5G*3L-"F-O
M;G-T(&EO<SHZ<&]S7W1Y<&4 <at> <W1A<G1?<&]S(#T <at> 9G,N=&5L;&<H*3L-" <at> T*
M("  <at> 9G,N<V5E:V<H,"P <at> :6]S.CIE;F0I.PT*8V]N<W0 <at> :6]S.CIP;W-?='EP
M92!E;F1?<&]S(#T <at> 9G,N=&5L;&<H*3L-" <at> T*8V]N<W0 <at> <VEZ95]T(')E=%]F
M:6QE<VEZ92 H<W1A=&EC7V-A<W0\<VEZ95]T/BAE;F1?<&]S("T <at> <W1A<G1?
M<&]S*2D[#0H-"B  <at> 9G,N8VQO<V4H*3L-"B  <at> 05-315)4(" <at> A9G,N:7-?;W!E
M;B <at> I*3L-" <at> T*("!R971U<FX <at> <F5T7V9I;&5S:7IE.PT*?0T*#0H-"B\O("TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM#0HO+R!&
M=6YC=&EO;B Q+C X#0IS=&%T:6, <at> <VEZ95]T(&=E=%]F:6QE<VEZ95]V:6%?
M9&ES=&%N8V4 <at> * T*"6-O;G-T(&-H87( <at> *B!C;VYS="!F:6QE;F%M95]I+" -
M" <at> EC;VYS="!B;V]L("  <at> ("  <at> ("  <at> :7-?='AT7VUO9&5?:0T*"2D-"B\O("TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM#0I[#0II
M9G-T<F5A;2!F<SL-" <at> T*("!I9B H:7-?='AT7VUO9&5?:2D <at> 9G,N;W!E;B H
M9FEL96YA;65?:2D[#0H <at> (&5L<V4 <at> ("  <at> ("  <at> ("  <at> ("  <at> ("!F<RYO<&5N("AF
M:6QE;F%M95]I+"!I;W,Z.F)I;F%R>2D[#0H-"B  <at> 05-315)4("AF<RD[#0H <at> 
M($%34T525" H9G,N:7-?;W!E;B <at> I*3L-" <at> T*8V]N<W0 <at> <VEZ95]T(')E=%]F
M:6QE<VEZ92 H<W1A=&EC7V-A<W0\<VEZ95]T/BAD:7-T86YC92 <at> -" <at> EI<W1R
M96%M8G5F7VET97)A=&]R/&-H87(^*&9S*2P-" <at> EI<W1R96%M8G5F7VET97)A
M=&]R/&-H87(^*"D-" <at> DI*2D[#0H-"B  <at> 9G,N8VQO<V4H*3L-"B  <at> 05-315)4
M(" <at> A9G,N:7-?;W!E;B <at> I*3L-" <at> T*("!R971U<FX <at> <F5T7V9I;&5S:7IE.PT*
M?0T*#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM#0HO
M+R!&=6YC=&EO;B Q+C Y#0IS=&%T:6, <at> <W1R:6YG(&9I;&5?=&]?<W1R:6YG
M(" <at> -" <at> EI9G-T<F5A;28 <at> 9FEN7VEO+ T*"7-I>F5?="  <at> ("!F:6QE<VEZ95]I
M#0H)*0T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2T-"GL-
M"B  <at> 05-315)4(" <at> A9FEN7VEO+F)A9" <at> I*3L-" <at> T*("!!4U-%4E0 <at> *&9I;E]I
M;RD[#0H <at> ($%34T525" H9FEN7VEO+FES7V]P96XH*2D[#0H-"F-O;G-T(&EO
M<SHZ:6]S=&%T92!P<F5V7W-T871E(#T <at> 9FEN7VEO+G)D<W1A=&4H*3L <at> #0IC
M;VYS="!I;W,Z.G!O<U]T>7!E('!R979?<&]S(" ](&9I;E]I;RYT96QL9R <at> I
M.R  <at> #0H-" <at> T*<W1R:6YG(')E=%]S='( <at> *&9I;&5S:7IE7VDL("<P)RD[#0H-
M"B  <at> +R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM#0H <at> (&9I;E]I;RYC;&5A<B <at> I
M.PT*("!F:6Y?:6\N<V5E:V<H,"P <at> :6]S.CIB96<I.PT*#0IC:&%R(&-H.PT*
M=6QO;F< <at> :3L-"B  <at> 9F]R("AI(#T <at> ,#L <at> 9FEN7VEO+F=E=" H8V <at> I.R!I*RLI
M#0H <at> ('L-"B  <at> ("!!4U-%4E0 <at> *&D <at> /"!R971?<W1R+G-I>F4H*2D[#0H <at> ("  <at> 
M<F5T7W-T<EMI72 ](&-H.PT*("!]#0H-"B  <at> 05-315)4("AI(#P](&9I;&5S
M:7IE7VDI.PT*("!R971?<W1R+F5R87-E("AI*3L-" <at> T*(" O+R M+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2T-"B  <at> 9FEN7VEO+F-L96%R*'!R979?<W1A
M=&4I.PT*("!F:6Y?:6\N<V5E:V<H<')E=E]P;W,L(&EO<SHZ8F5G*3L-" <at> T*
M("!!4U-%4E0 <at> *'!R979?<W1A=&4 <at> /3T <at> 9FEN7VEO+G)D<W1A=&4H*2D[#0H <at> 
M($%34T525" H<')E=E]P;W, <at> (" ]/2!F:6Y?:6\N=&5L;&<H*2D[#0H <at> ("\O
M("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*#0H <at> (')E='5R;B!R971?
M<W1R.PT*#0I]("\O(&9I;&5?=&]?<W1R:6YG(" <at> Q*0T*#0HO+R ]/3T]/3T]
M/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]
M#0IS=&%T:6, <at> <W1R:6YG(&9I;&5?=&]?<W1R:6YG(" <at> -" <at> EC;VYS="!C:&%R
M("H <at> 8V]N<W0 <at> 9FEL96YA;65?:2P <at> #0H)8V]N<W0 <at> 8F]O;"  <at> ("  <at> ("  <at> (&ES
M7W1X=%]M;V1E7VD-" <at> DI#0HO+R ]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]
M/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]#0I[#0II9G-T<F5A;2!F:6X[
M#0H-"B  <at> :68 <at> *&ES7W1X=%]M;V1E7VDI(&9I;BYO<&5N("AF:6QE;F%M95]I
M*3L-"B  <at> 96QS92  <at> ("  <at> ("  <at> ("  <at> ("  <at> (&9I;BYO<&5N("AF:6QE;F%M95]I
M+"!I;W,Z.F)I;F%R>2D[#0H-"B  <at> 05-315)4("AF:6XI.PT*("!!4U-%4E0 <at> 
M*&9I;BYI<U]O<&5N*"DI.PT*#0IC;VYS="!S:7IE7W0 <at> 9FEL97-I>F4 <at> *&=E
M=%]F:6QE<VEZ95]V:6%?<V5E:V=?=&5L;&< <at> *&9I;&5N86UE7VDL(&ES7W1X
M=%]M;V1E7VDI*3L-"F-O;G-T('-T<FEN9R!R971?<W1R("AF:6QE7W1O7W-T
M<FEN9R H9FEN+"!F:6QE<VEZ92DI.PT*#0H <at> (&9I;BYC;&]S92 <at> I.PT*("!!
M4U-%4E0 <at> *"%F:6XN:7-?;W!E;B <at> I*3L-" <at> T*("!R971U<FX <at> <F5T7W-T<CL-
M" <at> T*?2 O+R!F:6QE7W1O7W-T<FEN9R H,BD-" <at> T*#0H-"B\O(#T]/3T]/3T]
M/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]#0HO+R ]/3T]/3T <at> 4&%R="TR
M.B!,;V-A;"!$871A("8 <at> 1&5F:6YE<PT*+R\ <at> /3T]/3T]/3T]/3T]/3T]/3T]
M/3T]/3T]/3T]/3T]/3T]/3T-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2T-"G-T871I8R!V96-T;W(\<W1R:6YG/B  <at> ("  <at> 
M("  <at> ("  <at> 9F]O7VYA;65S.PT*<W1A=&EC('9E8W1O<CQS=')I;F<^.CII=&5R
M871O<B!I=&5R7VYA;65S.PT*<W1A=&EC('9E8W1O<CQV96-T;W(\8VQO8VM?
M=#X <at> /B!U<V5D7W1I;64[#0H-"G-T871I8R!U;&]N9R  <at> <G5N7VYO(#T <at> ,#L-
M"G-T871I8R!U;&]N9R  <at> =&5S=%]N;R ](# [#0H-"B\O('-T871I8R!S:7IE
M7W0 <at> 9FEL97-I>F5?=FEA7V9S965K7V9T96QL(#T <at> ,#L-"B-I9F1E9B!53DE8
M7T5.5 <at> T*+R\ <at> <W1A=&EC('-I>F5?="!F:6QE<VEZ95]V:6%?;'-E96L <at> ("  <at> 
M("  <at> /2 P.PT*+R\ <at> <W1A=&EC('-I>F5?="!F:6QE<VEZ95]V:6%?9G-T870 <at> 
M("  <at> ("  <at> /2 P.PT*+R\ <at> <W1A=&EC('-I>F5?="!F:6QE<VEZ95]V:6%?<W1A
M="  <at> ("  <at> ("  <at> /2 P.PT*(V5N9&EF#0HO+R!S=&%T:6, <at> <VEZ95]T(&9I;&5S
M:7IE7W9I85]S965K9U]T96QL9R ](# [#0HO+R!S=&%T:6, <at> <VEZ95]T(&9I
M;&5S:7IE7W9I85]D:7-T86YC92  <at> (" ](# [#0H-" <at> T*<W1A=&EC('-I>F5?
M="!U<V5R7V1E9FEN961?9FEL97-I>F4 <at> /2 P.PT*<W1A=&EC('-I>F5?="!I
M;F9I;&5?<VEZ93%?='AT("  <at> ("  <at> /2 P.PT*<W1A=&EC('-I>F5?="!I;F9I
M;&5?<VEZ93)?='AT("  <at> ("  <at> /2 P.PT*<W1A=&EC('-I>F5?="!I;F9I;&5?
M<VEZ95]B:6X <at> ("  <at> ("  <at> /2 P.PT*#0IS=&%T:6, <at> <W1R:6YG("!I;F9I;&5?
M8V]N=&5N=%]T>'0[#0IS=&%T:6, <at> <W1R:6YG("!I;F9I;&5?8V]N=&5N=%]B
M:6X[#0IS=&%T:6, <at> <W1R:6YG)B!I;F9I;&5?8V]N=&5N=" ](&EN9FEL95]C
M;VYT96YT7W1X=#L-"G-T871I8R!S=')I;F< <at> (')E=%]S=')I;F<[#0H-"G-T
M871I8R!U:6YT("  <at> 9F]O7W-E='< <at> /2 P.PT*#0HO+R M+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2T-"B-D969I;F4 <at> 4TU!4E1?05-315)4*' <at> I(&EF
M(" <at> A*' <at> I*2![(&-E<G( <at> /#P <at> (E-/55)#12!,24Y%3F\ <at> /2 B(#P\(&QI;F5N
M;U]I(#P\(&5N9&P[($%34T525"AX*3L <at> 86)O<G0H*3L <at> ?0T*#0H-"B-D969I
M;F4 <at> 5%)!0T4H>"D <at> #0HO+R C9&5F:6YE(%1204-%*' <at> I("!C97)R(#P\(' <at>  <at> 
M/#P <at> 96YD; T*#0HC9&5F:6YE($-(14-+7U)%5%523D5$7U-44DE.1RAX*2!C
M:&5C:U]R971U<FYE9%]S=')I;F<H>"P <at> 7U],24Y%7U\I( T*(V1E9FEN92!#
M2$5#2U]46%1?4D5455).141?4U1224Y'($-(14-+7U)%5%523D5$7U-44DE.
M1RAT<G5E*2 -"B-D969I;F4 <at> 0TA%0TM?0DE.7U)%5%523D5$7U-44DE.1R!#
M2$5#2U]215154DY%1%]35%))3D<H9F%L<V4I( T*#0H-"B\O("TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*(V1E9FEN92!)3E!55%]46%1?1DE,
M15].04U%("  <at> (GHM='AT+FEN( <at> T*(V1E9FEN92!)3E!55%]"24Y?1DE,15].
M04U%("  <at> (GHM8FEN+FEN( <at> T*#0HC9&5F:6YE(%)/5U-?24Y?24Y0551?1DE,
M12 W#0H-"G-T871I8R!&24Q%*B!F<%]T>'1?:6X[#0IS=&%T:6, <at> 1DE,12H <at> 
M9G!?8FEN7VEN.PT*#0HC:69D968 <at> 54Y)6%]%3E8-"G-T871I8R!I;G0 <at> 9F1?
M='AT7VEN.PT*<W1A=&EC(&EN="!F9%]B:6Y?:6X[#0HC96YD:68-" <at> T*<W1A
M=&EC(&EF<W1R96%M(&9S7W1X=%]I;CL-"G-T871I8R!I9G-T<F5A;2!F<U]B
M:6Y?:6X[#0H-"B-D969I;F4 <at> 0E5&1D527U-)6D4 <at> (#0P.38-" <at> T*<W1A=&EC
M(&-H87(J(&UB=69F97( <at> /2!.54Q,.PT*#0H-" <at> T*#0HO+R ]/3T]/3T]/3T]
M/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T-"B\O(#T]/3T]/2!087)T
M+3,Z($QO8V%L($%U>&EL87)Y($9U;F-T:6]N<PT*+R\ <at> /3T]/3T]/3T]/3T]
M/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]#0H-"B\O("TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM#0HO+R!&=6YC=&EO;B S+C Q#0IV;VED(&-H
M96-K7W)E='5R;F5D7W-T<FEN9R H#0H)8V]N<W0 <at> 8F]O;"  <at> ("  <at> ("  <at> (&ES
M7W1X=%]M;V1E7VDL( T*"6-O;G-T(&EN="  <at> ("  <at> ("  <at> ("!L:6YE;F]?:0T*
M"2D-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM#0I[#0IC;VYS
M="!S=')I;F< <at> :6YF:6QE7V-O;G1E;G0 <at> *&ES7W1X=%]M;V1E7VD <at> /R!I;F9I
M;&5?8V]N=&5N=%]T>'0 <at> .B!I;F9I;&5?8V]N=&5N=%]B:6XI.PT*#0H <at> (&EF
M(" <at> A*&EN9FEL95]C;VYT96YT+G-I>F4H*2 ]/2!R971?<W1R:6YG+G-I>F4H
M*2DI#0H <at> ('L-"B  <at> ("!C97)R(#P\(")&051!3"!%4E)/4CH <at> :6YF:6QE('-I
M>F4 <at> /2 B( T*("  <at> ("  <at> ("  <at> /#P <at> :6YF:6QE7V-O;G1E;G0N<VEZ92 <at> I( T*
M("  <at> ("  <at> ("  <at> /#P <at> (BP <at> (B -"B  <at> ("  <at> ("  <at> (#P\("( <at> <F5T=7)N960 <at> <W1R
M:6YG('-I>F4 <at> /2 B#0H <at> ("  <at> ("  <at> (" \/"!R971?<W1R:6YG+G-I>F4H*0T*
M("  <at> ("  <at> ("  <at> /#P <at> (CL <at> ;6]D92 ]("(-"B  <at> ("  <at> ("  <at> (#P\("AI<U]T>'1?
M;6]D95]I(#\ <at> (G1X="( <at> .B B8FEN(BD-"B  <at> ("  <at> ("  <at> (#P\(&5N9&P[#0H <at> 
M('T-" <at> T*("!334%25%]!4U-%4E0 <at> *"AI;F9I;&5?8V]N=&5N="YS:7IE*"D <at> 
M/3T <at> <F5T7W-T<FEN9RYS:7IE*"DI*3L-"B  <at> 4TU!4E1?05-315)4(" <at> H:6YF
M:6QE7V-O;G1E;G0 <at> /3T <at> <F5T7W-T<FEN9RDI.PT*("!R971?<W1R:6YG+F5R
M87-E*"D[#0I]#0H-" <at> T*#0HO+R ]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]
M/3T]/3T]/3T]/3T]/3T]/3T-"B\O(#T]/3T]/2!087)T+30Z($QO8V%T(%!R
M97!A<F%T:6]N($9U;F-T:6]N<PT*+R\ <at> /3T]/3T]/3T]/3T]/3T]/3T]/3T]
M/3T]/3T]/3T]/3T]/3T]/3T]/3T]#0H-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM#0HO+R!&=6YC=&EO;B T+C Q#0IS
M=&%T:6, <at> =F]I9"!F:6QL7VEN<'5T7V9I;&4 <at> * T*"75I;G0 <at> =&]T86Q?9G5L
M;%]R;W=S(#T <at> 4D]74U])3E])3E!55%]&24Q%#0H)*0T*+R\ <at> +2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM#0I[#0H <at> ($%34T525" H
M=&]T86Q?9G5L;%]R;W=S(#X <at> ,"D[#0H <at> (&EF("AU<V5R7V1E9FEN961?9FEL
M97-I>F4 <at> /"!T;W1A;%]F=6QL7W)O=W,I#0H <at> ('L-"B  <at> ("!T;W1A;%]F=6QL
M7W)O=W, <at> /2!U<V5R7V1E9FEN961?9FEL97-I>F4[#0H <at> ('T-"B  <at> 05-315)4
M("AT;W1A;%]F=6QL7W)O=W, <at> /#T <at> =7-E<E]D969I;F5D7V9I;&5S:7IE*3L-
M" <at> T*("!R96UO=F4 <at> *$E.4%547U185%]&24Q%7TY!344I.PT*("!R96UO=F4 <at> 
M*$E.4%547T))3E]&24Q%7TY!344I.PT*#0IO9G-T<F5A;2!T97-T7W1X=%]I
M;F9I;&4 <at> *$E.4%547U185%]&24Q%7TY!344I.PT*("!!4U-%4E0 <at> *'1E<W1?
M='AT7VEN9FEL92D[#0H <at> ($%34T525" H=&5S=%]T>'1?:6YF:6QE+FES7V]P
M96XH*2D[#0H-"F]F<W1R96%M('1E<W1?8FEN7VEN9FEL92 H24Y0551?0DE.
M7T9)3$5?3D%-12P <at> :6]S.CIB:6YA<GDI.PT*("!!4U-%4E0 <at> *'1E<W1?8FEN
M7VEN9FEL92D[#0H <at> ($%34T525" H=&5S=%]B:6Y?:6YF:6QE+FES7V]P96XH
M*2D[#0H-"F-O;G-T('5I;G0 <at> <F]W7W-I>F4 <at> *'5S97)?9&5F:6YE9%]F:6QE
M<VEZ92]T;W1A;%]F=6QL7W)O=W,I.PT*#0H-"B-D969I;F4 <at> 4U1!4E1?0T <at>  <at> 
M, T*8VAA<B!C:" ](%-405)47T-(.PT*#0IU;&]N9R!C;W5N=&5R(#T <at> ,#L-
M"B  <at> 9F]R("AU;&]N9R!R;W=?;F\ <at> /2 P.R!R;W=?;F\ <at> /"!T;W1A;%]F=6QL
M7W)O=W,[(')O=U]N;RLK*0T*("![#0H <at> ("  <at> 9F]R("AU;&]N9R!C:%]N;R ]
M(# [(&-H7VYO(#P <at> <F]W7W-I>F4[(&-H7VYO*RLI#0H <at> ("  <at> >PT*("  <at> ("  <at> 
M=VAI;&4 <at> *"%I<W!R:6YT*&-H*2D <at> 8V <at> K*SL-"B  <at> ("  <at> ($%34T525" H8V]U
M;G1E<B \('5S97)?9&5F:6YE9%]F:6QE<VEZ92D[#0H-"B  <at> ("  <at> ('1E<W1?
M='AT7VEN9FEL92 \/"!C:#L-"B  <at> ("  <at> ('1E<W1?8FEN7VEN9FEL92 \/"!C
M:#L-"B  <at> ("  <at> (&-H*RL[#0H <at> ("  <at> ("!C;W5N=&5R*RL[#0H <at> ("  <at> ("!I9B H
M8V]U;G1E<B ]/2!U<V5R7V1E9FEN961?9FEL97-I>F4I(&)R96%K.PT*#0H <at> 
M("  <at> ("!I9B H8V <at>  <at> /3T <at> 4T-(05)?34%8*2!C:" ](%-405)47T-(.PT*("  <at> 
M('T-" <at> T*("  <at> (&EF("AC;W5N=&5R(#T]('5S97)?9&5F:6YE9%]F:6QE<VEZ
M92D <at> 8G)E86L[#0H <at> ("  <at> 05-315)4("AC;W5N=&5R(#P <at> =7-E<E]D969I;F5D
M7V9I;&5S:7IE*3L-" <at> T*("  <at> ('1E<W1?='AT7VEN9FEL92 \/" G7&XG.PT*
M("  <at> ('1E<W1?8FEN7VEN9FEL92 \/" G7&XG.PT*("  <at> (&-O=6YT97(K*SL-
M"B  <at> ("!I9B H8V]U;G1E<B ]/2!U<V5R7V1E9FEN961?9FEL97-I>F4I(&)R
M96%K.PT*("!]#0H-"B  <at> +RH-"B  <at> 9F]R("AU;&]N9R!I(#T <at> ,#L <at> :2 \('5S
M97)?9&5F:6YE9%]F:6QE<VEZ93L <at> :2LK*0T*("![#0H <at> ("  <at> =VAI;&4 <at> *"%I
M<W!R:6YT*&-H*2D <at> 8V <at> K*SL-"B  <at> ("!T97-T7W1X=%]I;F9I;&4 <at> /#P <at> 8V <at> K
M*SL-"B  <at> ("!I9B H8V <at>  <at> /3T <at> 4T-(05)?34%8*2!C:" ](# [#0H <at> ('T-"B  <at> 
M*B\-" <at> T*("!T97-T7W1X=%]I;F9I;&4N8VQO<V4H*3L-"B  <at> 05-315)4(" <at> A
M=&5S=%]T>'1?:6YF:6QE+FES7V]P96XH*2D[#0H-"B  <at> =&5S=%]B:6Y?:6YF
M:6QE+F-L;W-E*"D[#0H <at> ($%34T525" H(71E<W1?8FEN7VEN9FEL92YI<U]O
M<&5N*"DI.PT*#0H-"B  <at> :6YF:6QE7V-O;G1E;G1?='AT(#T <at> 9FEL95]T;U]S
M=')I;F< <at> *$E.4%547U185%]&24Q%7TY!344L('1R=64I.PT*("!I;F9I;&5?
M8V]N=&5N=%]B:6X <at> /2!F:6QE7W1O7W-T<FEN9R H24Y0551?0DE.7T9)3$5?
M3D%-12P <at> 9F%L<V4I.PT*#0H <at> ($%34T525" H:6YF:6QE7V-O;G1E;G1?='AT
M(#T](&EN9FEL95]C;VYT96YT7V)I;BD[#0H <at> ( T*("!I;F9I;&5?<VEZ93%?
M='AT(#T <at> :6YF:6QE7V-O;G1E;G1?='AT+G-I>F4H*3L <at> #0H <at> (&EN9FEL95]S
M:7IE,E]T>'0 <at> /2!I;F9I;&5?<VEZ93%?='AT.PT*("!I9B H9V5T7V9I;&5S
M:7IE7W9I85]F<V5E:U]F=&5L;" H24Y0551?0DE.7T9)3$5?3D%-12P <at> 9F%L
M<V4I("$](&=E=%]F:6QE<VEZ95]V:6%?9G-E96M?9G1E;&P <at> *$E.4%547U18
M5%]&24Q%7TY!344L('1R=64I*0T*("![#0H <at> ("  <at> 05-315)4("AG971?9FEL
M97-I>F5?=FEA7V9S965K7V9T96QL("A)3E!55%]"24Y?1DE,15].04U%+"!F
M86QS92D <at> /"!G971?9FEL97-I>F5?=FEA7V9S965K7V9T96QL("A)3E!55%]4
M6%1?1DE,15].04U%+"!T<G5E*2D[#0H <at> ("  <at> 05-315)4("AG971?9FEL97-I
M>F5?=FEA7W-E96MG7W1E;&QG("A)3E!55%]"24Y?1DE,15].04U%+"!F86QS
M92D <at> /"!G971?9FEL97-I>F5?=FEA7W-E96MG7W1E;&QG("A)3E!55%]46%1?
M1DE,15].04U%+"!T<G5E*2D[#0H <at> ("  <at> :6YF:6QE7W-I>F4R7W1X=" K/2!C
M;W5N=" H:6YF:6QE7V-O;G1E;G1?='AT+F)E9VEN*"DL(&EN9FEL95]C;VYT
M96YT7W1X="YE;F0H*2P <at> )UQN)RD[#0H <at> ('T-"B  <at> :6YF:6QE7W-I>F5?8FEN
M(" ](&EN9FEL95]C;VYT96YT7V)I;BYS:7IE*"D[( T*#0H <at> ($%34T525" H
M:6YF:6QE7W-I>F4Q7W1X=" \/2!U<V5R7V1E9FEN961?9FEL97-I>F4I.PT*
M("!!4U-%4E0 <at> *&EN9FEL95]S:7IE,5]T>'0 <at> /#T <at> :6YF:6QE7W-I>F4R7W1X
M="D[#0H <at> ($%34T525" H:6YF:6QE7W-I>F4Q7W1X=" ]/2!I;F9I;&5?<VEZ
M95]B:6XI.PT*("!!4U-%4E0 <at> *&EN9FEL95]S:7IE7V)I;B \/2!I;F9I;&5?
M<VEZ93)?='AT*3L-" <at> T*#0H <at> (&EF(" <at> A*&EN9FEL95]S:7IE7V)I;B \/2!I
M;F9I;&5?<VEZ93%?='AT*2D-"B  <at> >PT*("  <at> (&-E<G( <at> /#P <at> (E5D97( <at> 9&5F
M:6YE9"!F:6QE<VEZ92 ]("( <at> /#P <at> =7-E<E]D969I;F5D7V9I;&5S:7IE(#P\
M(&5N9&P[#0H <at> ("  <at> 8V5R<B \/" B5'AT(&EN<'5T(&9I;&4 <at> <VEZ93$ <at> (#T <at> 
M(B \/"!I;F9I;&5?<VEZ93%?='AT(#P\(&5N9&P[#0H <at> ("  <at> 8V5R<B \/" B
M5'AT(&EN<'5T(&9I;&4 <at> <VEZ93( <at> (#T <at> (B \/"!I;F9I;&5?<VEZ93)?='AT
M(#P\(&5N9&P[#0H <at> ("  <at> 8V5R<B \/" B0FEN(&EN<'5T(&9I;&4 <at> <VEZ92  <at> 
M(#T <at> (B \/"!I;F9I;&5?<VEZ95]B:6X <at> /#P <at> 96YD;#L-"B  <at> ("!!4U-%4E0 <at> 
M*&EN9FEL95]S:7IE7V)I;B \/2!I;F9I;&5?<VEZ93%?='AT*3L-"B  <at> ?0T*
M#0H <at> ($%34T525" H:6YF:6QE7W-I>F5?8FEN(#P](&EN9FEL95]S:7IE,E]T
M>'0I.PT*#0H <at> ($%34T525" H:6YF:6QE7W-I>F5?8FEN(#T]('5S97)?9&5F
M:6YE9%]F:6QE<VEZ92D[#0H-"B\J#0H <at> (&-O=70 <at> /#P <at> 96YD;#L-"B  <at> 8V]U
M=" \/"!E;F1L.PT*("!C;W5T(#P\(")59&5R(&1E9FEN960 <at> 9FEL92!S:7IE
M(#T <at> (B \/"!U<V5R7V1E9FEN961?9FEL97-I>F4 <at> /#P <at> 96YD;#L-"B  <at> 8V]U
M=" \/" B5'AT(&EN<'5T(&9I;&4 <at> <VEZ92  <at> (" ]("( <at> /#P <at> :6YF:6QE7W-I
M>F4R7W1X=" \/"!E;F1L.PT*("!C;W5T(#P\(")":6X <at> :6YP=70 <at> 9FEL92!S
M:7IE("  <at> (#T <at> (B \/"!I;F9I;&5?<VEZ95]B:6X <at> /#P <at> 96YD;#L-"B  <at> 8V]U
M=" \/"!E;F1L.PT*("!C;W5T(#P\(&5N9&P[#0HJ+PT*#0I]("\O(&9I;&Q?
M:6YP=71?9FEL90T*#0H-"B\O(#T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]
M/3T]/3T]/3T]/0T*+R\ <at> /3T]/3T](%!A<G0M-3H <at> 1G5N8W1I;VX <at> 5&\ <at> 0F4 <at> 
M5&5S=&5D#0HO+R ]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]
M/3T-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2T-"G-T<FEN9R!#7S Q7W1X=%]?9G5N8W1I;VY?9V5T8R H*0T*>PT*<W1R
M:6YG(')E=%]S='([#0II;G0 <at> ("  <at> :6YT7V-H.PT*#0H <at> (&-L96%R97)R*&9P
M7W1X=%]I;BD[#0H <at> (')E=VEN9" H9G!?='AT7VEN*3L-" <at> T*(" O+R M+2TM
M+2T <at> 0F]D>2 M+2TM+2T-"B  <at> =VAI;&4 <at> *"AI;G1?8V <at>  <at> /2!G971C*&9P7W1X
M=%]I;BDI("$]($5/1BD <at> #0H <at> ('L-"B  <at> ("!R971?<W1R("L](&-H87(H:6YT
M7V-H*3L <at> ( T*("!]#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*#0H <at> (')E
M='5R;B!R971?<W1R.PT*?0T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+0T*<W1R:6YG($-?,#%?8FEN7U]F=6YC=&EO;E]G
M971C(" <at> I#0I[#0IS=')I;F< <at> <F5T7W-T<CL-"FEN="  <at> ("!I;G1?8V <at> [#0H-
M"B  <at> 8VQE87)E<G(H9G!?8FEN7VEN*3L-"B  <at> <F5W:6YD("AF<%]B:6Y?:6XI
M.PT*#0H <at> ("\O("TM+2TM+2!";V1Y("TM+2TM+0T*("!W:&EL92 H*&EN=%]C
M:" ](&=E=&,H9G!?8FEN7VEN*2D <at> (3T <at> 14]&*0T*("![#0H <at> ("  <at> <F5T7W-T
M<B K/2!C:&%R*&EN=%]C:"D[(" -"B  <at> ?0T*(" O+R M+2TM+2TM+2TM+2TM
M+2TM+2T-" <at> T*("!R971U<FX <at> <F5T7W-T<CL-"GT-" <at> T*+R\ <at> +2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2T-"G-T<FEN9R!#7S R7W1X
M=%]?9G5N8W1I;VY?9F=E=&, <at> *"D-"GL-"G-T<FEN9R!R971?<W1R.PT*:6YT
M("  <at> (&EN=%]C:#L-" <at> T*("!C;&5A<F5R<BAF<%]T>'1?:6XI.PT*("!R97=I
M;F0 <at> *&9P7W1X=%]I;BD[#0H-"B  <at> +R\ <at> +2TM+2TM($)O9'D <at> +2TM+2TM#0H <at> 
M('=H:6QE(" <at> H:6YT7V-H(#T <at> 9F=E=&,H9G!?='AT7VEN*2D <at> (3T <at> 14]&*0T*
M("![#0H <at> ("  <at> <F5T7W-T<B K/2!C:&%R*&EN=%]C:"D[(" -"B  <at> ?0T*(" O
M+R M+2TM+2TM+2TM+2TM+2TM+2T-" <at> T*("!R971U<FX <at> <F5T7W-T<CL-" <at> T*
M?0T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+0T*<W1R:6YG($-?,#)?8FEN7U]F=6YC=&EO;E]F9V5T8R H*0T*>PT*<W1R
M:6YG(')E=%]S='([#0II;G0 <at> ("  <at> :6YT7V-H.PT*#0H <at> (&-L96%R97)R*&9P
M7V)I;E]I;BD[#0H <at> (')E=VEN9" H9G!?8FEN7VEN*3L-" <at> T*(" O+R M+2TM
M+2T <at> 0F]D>2 M+2TM+2T-"B  <at> =VAI;&4 <at> *"AI;G1?8V <at>  <at> /2!F9V5T8RAF<%]B
M:6Y?:6XI*2 A/2!%3T8I#0H <at> ('L-"B  <at> ("!R971?<W1R("L](&-H87(H:6YT
M7V-H*3L <at> ( T*("!]#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*#0H <at> (')E
M='5R;B!R971?<W1R.PT*#0I]#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM#0IS=')I;F< <at> 0U\P,U]T>'1?7V9U;F-T:6]N
M7V9R96%D7U]C;VYS=%]B=68 <at> *"D-"GL-"G-T<FEN9R!R971?<W1R.PT*8VAA
M<B  <at> (&-B=69F97);0E5&1D527U-)6D5=.PT*<VEZ95]T(&YR96%D.PT*#0H <at> 
M(&-L96%R97)R*&9P7W1X=%]I;BD[#0H <at> (')E=VEN9" H9G!?='AT7VEN*3L-
M" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M+2TM+2T-"B  <at> =VAI;&4 <at> *"AN<F5A9" ]
M(&9R96%D*&-B=69F97(L('-I>F5O9BAC:&%R*2P <at> <VEZ96]F*&-B=69F97(I
M("T <at> ,2P <at> 9G!?='AT7VEN*2D <at> /B P*0T*("![#0H <at> ("  <at> 8V)U9F9E<EMN<F5A
M9%T <at> /2 P.PT*("  <at> (')E=%]S='( <at> *ST <at> 8V)U9F9E<CL <at> ( T*("!]#0H <at> ("\O
M("TM+2TM+2TM+2TM+2TM+2TM+0T*#0H <at> (')E='5R;B!R971?<W1R.PT*#0I]
M#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M#0IS=')I;F< <at> 0U\P,U]B:6Y?7V9U;F-T:6]N7V9R96%D7U]C;VYS=%]B=68 <at> 
M*"D-"GL-"G-T<FEN9R!R971?<W1R.PT*8VAA<B  <at> (&-B=69F97);0E5&1D52
M7U-)6D5=.PT*<VEZ95]T(&YR96%D.PT*#0H <at> (&-L96%R97)R*&9P7V)I;E]I
M;BD[#0H <at> (')E=VEN9" H9G!?8FEN7VEN*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D
M>2 M+2TM+2T-"B  <at> =VAI;&4 <at> *"AN<F5A9" ](&9R96%D*&-B=69F97(L('-I
M>F5O9BAC:&%R*2P <at> <VEZ96]F*&-B=69F97(I("T <at> ,2P <at> 9G!?8FEN7VEN*2D <at> 
M/B P*0T*("![#0H <at> ("  <at> 8V)U9F9E<EMN<F5A9%T <at> /2 P.PT*("  <at> (')E=%]S
M='( <at> *ST <at> 8V)U9F9E<CL <at> ( T*("!]#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM
M+0T*("!R971U<FX <at> <F5T7W-T<CL-" <at> T*?0T*#0H-" <at> T*+R\ <at> +2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2T-"G-T<FEN9R!#7S T7W1X
M=%]?9G5N8W1I;VY?9G)E861?7VUA>%]B=68 <at> *"D-"GL-"G-T<FEN9R!R971?
M<W1R.PT*<VEZ95]T(&YR96%D.PT*#0H <at> (&-L96%R97)R*&9P7W1X=%]I;BD[
M#0H <at> (')E=VEN9" H9G!?='AT7VEN*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M
M+2TM+2T-"B  <at> =VAI;&4 <at> *"AN<F5A9" ](&9R96%D*&UB=69F97(L('-I>F5O
M9BAC:&%R*2P <at> :6YF:6QE7W-I>F4R7W1X="P <at> 9G!?='AT7VEN*2D <at> /B P*0T*
M("![#0H <at> ("  <at> ;6)U9F9E<EMN<F5A9%T <at> /2 P.PT*("  <at> (')E=%]S='( <at> *ST <at> 
M;6)U9F9E<CL <at> ( T*("!]#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*("!R
M971U<FX <at> <F5T7W-T<CL-" <at> T*?0T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+0T*<W1R:6YG($-?,#1?8FEN7U]F=6YC=&EO
M;E]F<F5A9%]?;6%X7V)U9B H*0T*>PT*<W1R:6YG(')E=%]S='([#0IS:7IE
M7W0 <at> ("!N<F5A9#L-" <at> T*("!C;&5A<F5R<BAF<%]B:6Y?:6XI.PT*("!R97=I
M;F0 <at> *&9P7V)I;E]I;BD[#0H-"B  <at> +R\ <at> +2TM+2TM($)O9'D <at> +2TM+2TM#0H <at> 
M('=H:6QE(" <at> H;G)E860 <at> /2!F<F5A9"AM8G5F9F5R+"!S:7IE;V8H8VAA<BDL
M(&EN9FEL95]S:7IE7V)I;BP <at> 9G!?8FEN7VEN*2D <at> /B P*0T*("![#0H <at> ("  <at> 
M;6)U9F9E<EMN<F5A9%T <at> /2 P.PT*("  <at> (')E=%]S='( <at> *ST <at> ;6)U9F9E<CL <at> 
M( T*("!]#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*("!R971U<FX <at> <F5T
M7W-T<CL-" <at> T*?0T*#0HC:69D968 <at> 54Y)6%]%3E8-"B\O("TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM#0IS=')I;F< <at> 56YI>%]#7S U
M7W1X=%]?;6UA<" H*0T*>PT*<W1R:6YG(')E=%]S='([#0IO9F9?="  <at> <F,[
M#0H <at> (')C(#T <at> ;'-E96LH9F1?='AT7VEN+" P+"!3145+7U-%5"D[#0H <at> ($%3
M4T525" H<F, <at> (3T <at> +3$I.PT*#0H <at> ("\O("TM+2TM+2!";V1Y("TM+2TM+0T*
M8VAA<BH <at> <'1R(#T <at> *&-H87(J*6UM87 H,"P <at> :6YF:6QE7W-I>F4R7W1X="P <at> 
M4%)/5%]214%$+"!-05!?4TA!4D5$+"!F9%]T>'1?:6XL(# I.PT*("!!4U-%
M4E0 <at> *'!T<B A/2!-05!?1D%)3$5$*3L-" <at> T*("!R971?<W1R(#T <at> <W1R:6YG
M*'!T<BP <at> <'1R("L <at> :6YF:6QE7W-I>F4R7W1X="D[#0H <at> (')C(#T <at> ;75N;6%P
M*'!T<BP <at> :6YF:6QE7W-I>F4R7W1X="D[#0H <at> ($%34T525" H<F, <at> /3T <at> ,"D[
M#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*("!R971?<W1R+F5R87-E*')E
M;6]V92AR971?<W1R+F)E9VEN*"DL(')E=%]S='(N96YD*"DL("=<<B<I+"!R
M971?<W1R+F5N9" <at> I*3L <at> #0H <at> (')E='5R;B!R971?<W1R.PT*?0T*#0HO+R M
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*<W1R:6YG
M(%5N:7A?0U\P-5]B:6Y?7VUM87  <at> *"D-"GL-"G-T<FEN9R!R971?<W1R.PT*
M;V9F7W0 <at> <F,[#0H <at> (')C(#T <at> ;'-E96LH9F1?8FEN7VEN+" P+"!3145+7U-%
M5"D[#0H <at> ($%34T525" H<F, <at> (3T <at> +3$I.PT*#0H <at> ("\O("TM+2TM+2!";V1Y
M("TM+2TM+0T*8VAA<BH <at> <'1R(#T <at> *&-H87(J*6UM87 H,"P <at> :6YF:6QE7W-I
M>F5?8FEN+"!04D]47U)%040L($U!4%]32$%2140L(&9D7V)I;E]I;BP <at> ,"D[
M#0H <at> ($%34T525" H<'1R("$]($U!4%]&04E,140I.PT*#0H <at> (')E=%]S='( <at> 
M/2!S=')I;F<H<'1R+"!P='( <at> *R!I;F9I;&5?<VEZ95]B:6XI.PT*("!R8R ]
M(&UU;FUA<"AP='(L(&EN9FEL95]S:7IE7V)I;BD[#0H <at> ($%34T525" H<F, <at> 
M/3T <at> ,"D[#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*#0H <at> (')E='5R;B!R
M971?<W1R.PT*?0T*#0HC96YD:68-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2T-"G-T<FEN9R!#4%!?,#%?='AT7U]O<&5R
M871O<E]I;B H*0T*>PT*<W1R:6YG(')E=%]S='([#0IC:&%R(&-H.PT*#0H <at> 
M(&9S7W1X=%]I;BYC;&5A<B <at> I.PT*("!F<U]T>'1?:6XN<V5E:V< <at> *# L(&EO
M<SHZ8F5G*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M+2TM+2T-"B  <at> 9G-?='AT
M7VEN+G5N<V5T9BAI;W,Z.G-K:7!W<RD[#0H <at> ('=H:6QE("AF<U]T>'1?:6X <at> 
M/CX <at> 8V <at> I( T*("![#0H <at> ("  <at> <F5T7W-T<B K/2!C:#L <at> ( T*("!]#0H <at> ("\O
M("TM+2TM+2TM+2TM+2TM+2TM+0T*#0H <at> (')E='5R;B!R971?<W1R.PT*#0I]
M#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M#0IS=')I;F< <at> 0U!07S Q7V)I;E]?;W!E<F%T;W)?:6X <at> *"D-"GL-"G-T<FEN
M9R!R971?<W1R.PT*8VAA<B  <at> (&-H.PT*#0H <at> (&9S7V)I;E]I;BYC;&5A<B <at> I
M.PT*("!F<U]B:6Y?:6XN<V5E:V< <at> *# L(&EO<SHZ8F5G*3L-" <at> T*(" O+R M
M+2TM+2T <at> 0F]D>2 M+2TM+2T-"B  <at> 9G-?8FEN7VEN+G5N<V5T9BAI;W,Z.G-K
M:7!W<RD[#0H <at> ('=H:6QE("AF<U]B:6Y?:6X <at> /CX <at> 8V <at> I( T*("![#0H <at> ("  <at> 
M<F5T7W-T<B K/2!C:#L <at> ( T*("!]#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM
M+0T*#0H <at> (')E='5R;B!R971?<W1R.PT*#0I]#0H-" <at> T*+R\ <at> +2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2T-"G-T<FEN9R!#4%!?,#)?
M='AT7U]M971H;V1?<V)U;7!C(" <at> I#0I[#0IS=')I;F< <at> <F5T7W-T<CL-"F-H
M87( <at> 8V <at> [#0H-"B  <at> 9G-?='AT7VEN+F-L96%R*"D[#0H <at> (&9S7W1X=%]I;BYS
M965K9R H,"P <at> :6]S.CIB96<I.PT*#0H <at> ("\O("TM+2TM+2!";V1Y("TM+2TM
M+0T*("!W:&EL92 H*&-H(#T <at> 9G-?='AT7VEN+G)D8G5F*"DM/G-B=6UP8R <at> I
M*2 A/2!%3T8I( T*("![#0H <at> ("  <at> <F5T7W-T<B K/2!C:#L <at> ( T*("!]#0H <at> 
M("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*("!R971U<FX <at> <F5T7W-T<CL-" <at> T*
M?0T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+0T*<W1R:6YG($-04%\P,E]B:6Y?7VUE=&AO9%]S8G5M<&, <at> *"D-"GL-"G-T
M<FEN9R!R971?<W1R.PT*8VAA<B!C:#L-" <at> T*("!F<U]B:6Y?:6XN8VQE87(H
M*3L-"B  <at> 9G-?8FEN7VEN+G-E96MG(" <at> P+"!I;W,Z.F)E9RD[#0H-"B  <at> +R\ <at> 
M+2TM+2TM($)O9'D <at> +2TM+2TM#0H <at> ('=H:6QE(" <at> H8V <at>  <at> /2!F<U]B:6Y?:6XN
M<F1B=68H*2T^<V)U;7!C*"DI("$]($5/1BD <at> #0H <at> ('L-"B  <at> ("!R971?<W1R
M("L](&-H.R  <at> #0H <at> ('T-"B  <at> +R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM#0H <at> (')E
M='5R;B!R971?<W1R.PT*#0I]#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM#0IS=')I;F< <at> 0U!07S S7W1X=%]?;65T:&]D
M7W-B=6UP8U]?;W!?;W5T(" <at> I#0I[#0IO<W1R:6YG<W1R96%M(&]S<SL-"F-H
M87( <at> 8V <at> [#0H-"B  <at> 9G-?='AT7VEN+F-L96%R*"D[#0H <at> (&9S7W1X=%]I;BYS
M965K9R H,"P <at> :6]S.CIB96<I.PT*#0H <at> ("\O("TM+2TM+2!";V1Y("TM+2TM
M+0T*("!C:" ](&9S7W1X=%]I;BYR9&)U9B <at> I+3YS8G5M<&,H*3L-"B  <at> ;W-S
M(#P\(&-H.R  <at> #0H-"B  <at> =VAI;&4 <at> *&-H("$]($5/1BD-"B  <at> >PT*("  <at> (&]S
M<R \/"!F<U]T>'1?:6XN<F1B=68H*3L-"B  <at> ("!C:" ](&9S7W1X=%]I;BYR
M9&)U9B <at> I+3YS8G5M<&,H*3L-"B  <at> ?0T*("!R971U<FX <at> ;W-S+G-T<B <at> I.PT*
M?0T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+0T*<W1R:6YG($-04%\P,U]B:6Y?7VUE=&AO9%]S8G5M<&-?7V]P7V]U=" H
M*0T*>PT*;W-T<FEN9W-T<F5A;2!O<W,[#0IC:&%R(&-H.PT*#0H <at> (&9S7V)I
M;E]I;BYC;&5A<B <at> I.PT*("!F<U]B:6Y?:6XN<V5E:V< <at> *# L(&EO<SHZ8F5G
M*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M+2TM+2T-"B  <at> 8V <at>  <at> /2!F<U]B:6Y?
M:6XN<F1B=68H*2T^<V)U;7!C*"D[#0H <at> (&]S<R \/"!C:#L-" <at> T*("!W:&EL
M92 H8V <at>  <at> (3T <at> 14]&*0T*("![#0H <at> ("  <at> ;W-S(#P\(&9S7V)I;E]I;BYR9&)U
M9B <at> I.PT*("  <at> (&-H(#T <at> 9G-?8FEN7VEN+G)D8G5F*"DM/G-B=6UP8R <at> I.PT*
M("!]#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*#0H <at> (')E='5R;B!O<W,N
M<W1R*"D[#0I]#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM#0IS=')I;F< <at> 0U!07S T7W1X=%]?;65T:&]D7W)D8G5F7U]O
M<%]O=70 <at> *"D-"GL-"F]S=')I;F=S=')E86T <at> ;W-S.PT*#0H <at> (&9S7W1X=%]I
M;BYC;&5A<B <at> I.PT*("!F<U]T>'1?:6XN<V5E:V< <at> *# L(&EO<SHZ8F5G*3L-
M" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M+2TM+2T-"B  <at> ;W-S(#P\(&9S7W1X=%]I
M;BYR9&)U9B <at> I.PT*(" O+R M+2TM+2TM+2TM+2TM+2TM+2T-" <at> T*("!R971U
M<FX <at> ;W-S+G-T<B <at> I.PT*?0T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+0T*<W1R:6YG($-04%\P-%]B:6Y?7VUE=&AO9%]R
M9&)U9E]?;W!?;W5T(" <at> I#0I[#0IO<W1R:6YG<W1R96%M(&]S<SL-" <at> T*("!F
M<U]B:6Y?:6XN8VQE87(H*3L-"B  <at> 9G-?8FEN7VEN+G-E96MG(" <at> P+"!I;W,Z
M.F)E9RD[#0H-"B  <at> +R\ <at> +2TM+2TM($)O9'D <at> +2TM+2TM#0H <at> (&]S<R \/"!F
M<U]B:6Y?:6XN<F1B=68H*3L-"B  <at> +R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM#0H-
M"B  <at> <F5T=7)N(&]S<RYS='(H*3L-" <at> T*?0T*#0H-" <at> T*+R\ <at> +2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2T-"G-T<FEN9R!#4%!?,#5?
M='AT7U]M971H;V1S7V-P<%]R96%D7W=R:71E7U]C;VYS=%]B=68 <at> *"D-"GL-
M"F]S=')I;F=S=')E86T <at> ;W-S.PT*8VAA<B!C8G5F9F5R6T)51D9%4E]325I%
M73L-" <at> T*("!F<U]T>'1?:6XN8VQE87(H*3L-"B  <at> 9G-?='AT7VEN+G-E96MG
M(" <at> P+"!I;W,Z.F)E9RD[#0H-"B  <at> +R\ <at> +2TM+2TM($)O9'D <at> +2TM+2TM#0H <at> 
M('=H:6QE(" <at> A9G-?='AT7VEN+F5O9B <at> I*0T*("![#0H <at> ("  <at> 9G-?='AT7VEN
M+G)E860 <at> *&-B=69F97(L('-I>F5O9BAC8G5F9F5R*2 M(#$I.PT*("  <at> (&]S
M<RYW<FET92 H8V)U9F9E<BP <at> 9G-?='AT7VEN+F=C;W5N=" <at> I*3L-"B  <at> ?0T*
M(" O+R M+2TM+2TM+2TM+2TM+2TM+2T-" <at> T*("!R971U<FX <at> ;W-S+G-T<B <at> I
M.PT*#0I]#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM#0IS=')I;F< <at> 0U!07S U7V)I;E]?;65T:&]D<U]C<'!?<F5A9%]W
M<FET95]?8V]N<W1?8G5F(" <at> I#0I[#0IO<W1R:6YG<W1R96%M(&]S<SL-"F-H
M87( <at> 8V)U9F9E<EM"549&15)?4TE:15T[#0H-"B  <at> 9G-?8FEN7VEN+F-L96%R
M*"D[#0H <at> (&9S7V)I;E]I;BYS965K9R H,"P <at> :6]S.CIB96<I.PT*#0H <at> ("\O
M("TM+2TM+2!";V1Y("TM+2TM+0T*("!W:&EL92 H(69S7V)I;E]I;BYE;V8H
M*2D-"B  <at> >PT*("  <at> (&9S7V)I;E]I;BYR96%D("AC8G5F9F5R+"!S:7IE;V8H
M8V)U9F9E<BD <at> +2 Q*3L-"B  <at> ("!O<W,N=W)I=&4 <at> *&-B=69F97(L(&9S7V)I
M;E]I;BYG8V]U;G0H*2D[#0H <at> ('T-"B  <at> +R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM
M#0H <at> (')E='5R;B!O<W,N<W1R*"D[#0I]#0H-" <at> T*#0HO+R M+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*<W1R:6YG($-04%\P-E]T
M>'1?7VUE=&AO9'-?8W!P7W)E861?=W)I=&5?;W-S7U]C;VYS=%]B=68 <at> *"D-
M"GL-"F]S=')I;F=S=')E86T <at> ;W-S.PT*8VAA<B!C8G5F9F5R6T)51D9%4E]3
M25I%73L-" <at> T*("!F<U]T>'1?:6XN8VQE87(H*3L-"B  <at> 9G-?='AT7VEN+G-E
M96MG(" <at> P+"!I;W,Z.F)E9RD[#0H-"B  <at> +R\ <at> +2TM+2TM($)O9'D <at> +2TM+2TM
M#0H <at> ('=H:6QE(" <at> A9G-?='AT7VEN+F5O9B <at> I*0T*("![#0H <at> ("  <at> 9G-?='AT
M7VEN+G)E860 <at> *&-B=69F97(L('-I>F5O9BAC8G5F9F5R*2 M(#$I.PT*("  <at> 
M(&]S<RYW<FET92 H8V)U9F9E<BP <at> 9G-?='AT7VEN+F=C;W5N=" <at> I*3L-"B  <at> 
M?0T*(" O+R M+2TM+2TM+2TM+2TM+2TM+2T-"B  <at> <F5T=7)N(&]S<RYS='(H
M*3L-" <at> T*?0T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+0T*<W1R:6YG($-04%\P-E]B:6Y?7VUE=&AO9'-?8W!P7W)E861?
M=W)I=&5?;W-S7U]C;VYS=%]B=68 <at> *"D-"GL-"F]S=')I;F=S=')E86T <at> ;W-S
M.PT*8VAA<B!C8G5F9F5R6T)51D9%4E]325I%73L-" <at> T*("!F<U]B:6Y?:6XN
M8VQE87(H*3L-"B  <at> 9G-?8FEN7VEN+G-E96MG(" <at> P+"!I;W,Z.F)E9RD[#0H-
M"B  <at> +R\ <at> +2TM+2TM($)O9'D <at> +2TM+2TM#0H <at> ('=H:6QE(" <at> A9G-?8FEN7VEN
M+F5O9B <at> I*0T*("![#0H <at> ("  <at> 9G-?8FEN7VEN+G)E860 <at> *&-B=69F97(L('-I
M>F5O9BAC8G5F9F5R*2 M(#$I.PT*("  <at> (&]S<RYW<FET92 H8V)U9F9E<BP <at> 
M9G-?8FEN7VEN+F=C;W5N=" <at> I*3L-"B  <at> ?0T*(" O+R M+2TM+2TM+2TM+2TM
M+2TM+2T-"B  <at> <F5T=7)N(&]S<RYS='(H*3L-" <at> T*?0T*#0H-"B\O("TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM#0IS=')I;F< <at> 0U!0
M7S W7W1X=%]?;65T:&]D<U]C<'!?<F5A9'-O;65?=W)I=&5?7V-O;G-T7V)U
M9B H*0T*>PT*;W-T<FEN9W-T<F5A;2!O<W,[#0IC:&%R(&-B=69F97);0E5&
M1D527U-)6D5=.PT*<W1R96%M<VEZ92!L96X[#0H-"B  <at> 9G-?='AT7VEN+F-L
M96%R*"D[#0H <at> (&9S7W1X=%]I;BYS965K9R H,"P <at> :6]S.CIB96<I.PT*#0H <at> 
M("\O("TM+2TM+2!";V1Y("TM+2TM+0T*("!D;PT*("![( T*("  <at> (&QE;B ]
M(&9S7W1X=%]I;BYR96%D<V]M92 H8V)U9F9E<BP <at> <VEZ96]F*&-B=69F97(I
M("T <at> ,2D[( T*("  <at> (&]S<RYW<FET92 H8V)U9F9E<BP <at> ;&5N*3L-"B  <at> ?2!W
M:&EL92 H;&5N*3L <at> #0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*("!R971U
M<FX <at> ;W-S+G-T<B <at> I.PT*?0T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+0T*<W1R:6YG($-04%\P-U]B:6Y?7VUE=&AO9'-?
M8W!P7W)E861S;VUE7W=R:71E7U]C;VYS=%]B=68 <at> *"D-"GL-"F]S=')I;F=S
M=')E86T <at> ;W-S.PT*8VAA<B!C8G5F9F5R6T)51D9%4E]325I%73L-"G-T<F5A
M;7-I>F4 <at> ;&5N.PT*#0H <at> (&9S7V)I;E]I;BYC;&5A<B <at> I.PT*("!F<U]B:6Y?
M:6XN<V5E:V< <at> *# L(&EO<SHZ8F5G*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M
M+2TM+2T-"B  <at> 9&\-"B  <at> >R -"B  <at> ("!L96X <at> /2!F<U]B:6Y?:6XN<F5A9'-O
M;64 <at> *&-B=69F97(L('-I>F5O9BAC8G5F9F5R*2 M(#$I.R -"B  <at> ("!O<W,N
M=W)I=&4 <at> *&-B=69F97(L(&QE;BD[#0H <at> ('T <at> =VAI;&4 <at> *&QE;BD[( T*(" O
M+R M+2TM+2TM+2TM+2TM+2TM+2T-"B  <at> <F5T=7)N(&]S<RYS='(H*3L-" <at> T*
M?0T*#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM#0IS=')I;F< <at> 0U!07S X7W1X=%]?;65T:&]D<U]C<'!?<F5A9%]W<FET
M95]?;6%X7V)U9B H*0T*>PT*;W-T<FEN9W-T<F5A;2!O<W,[#0H-"B  <at> 9G-?
M='AT7VEN+F-L96%R*"D[#0H <at> (&9S7W1X=%]I;BYS965K9R H,"P <at> :6]S.CIB
M96<I.PT*#0H <at> ("\O("TM+2TM+2!";V1Y("TM+2TM+0T*("!W:&EL92 H(69S
M7W1X=%]I;BYE;V8H*2D-"B  <at> >PT*("  <at> (&9S7W1X=%]I;BYR96%D("AM8G5F
M9F5R+"!I;F9I;&5?<VEZ93)?='AT*3L-"B  <at> ("!O<W,N=W)I=&4 <at> *&UB=69F
M97(L(&9S7W1X=%]I;BYG8V]U;G0H*2D[#0H <at> ('T-"B  <at> +R\ <at> +2TM+2TM+2TM
M+2TM+2TM+2TM#0H <at> (')E='5R;B!O<W,N<W1R*"D[#0H-"GT-" <at> T*+R\ <at> +2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2T-"G-T<FEN9R!#
M4%!?,#A?8FEN7U]M971H;V1S7V-P<%]R96%D7W=R:71E7U]M87A?8G5F(" <at> I
M#0I[#0IO<W1R:6YG<W1R96%M(&]S<SL-" <at> T*("!F<U]B:6Y?:6XN8VQE87(H
M*3L-"B  <at> 9G-?8FEN7VEN+G-E96MG(" <at> P+"!I;W,Z.F)E9RD[#0H-"B  <at> +R\ <at> 
M+2TM+2TM($)O9'D <at> +2TM+2TM#0H <at> ('=H:6QE(" <at> A9G-?8FEN7VEN+F5O9B <at> I
M*0T*("![#0H <at> ("  <at> 9G-?8FEN7VEN+G)E860 <at> *&UB=69F97(L(&EN9FEL95]S
M:7IE7V)I;BD[#0H <at> ("  <at> ;W-S+G=R:71E("AM8G5F9F5R+"!F<U]B:6Y?:6XN
M9V-O=6YT*"DI.PT*("!]#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*("!R
M971U<FX <at> ;W-S+G-T<B <at> I.PT*#0I]#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM#0IS=')I;F< <at> 0U!07S Y7W1X=%]?9G5N
M8W1I;VY?9V5T;&EN95]?;W-T<FEN9W-T<F5A;2 H*0T*>PT*;W-T<FEN9W-T
M<F5A;2!O<W,[#0IS=')I;F< <at> ;&EN93L-" <at> T*("!F<U]T>'1?:6XN8VQE87(H
M*3L-"B  <at> 9G-?='AT7VEN+G-E96MG(" <at> P+"!I;W,Z.F)E9RD[#0H-"B  <at> +R\ <at> 
M+2TM+2TM($)O9'D <at> +2TM+2TM#0H <at> ('=H:6QE("AG971L:6YE("AF<U]T>'1?
M:6XL(&QI;F4I*2 -"B  <at> >PT*("  <at> (&]S<R \/"!L:6YE(#P\("=<;B<[#0H <at> 
M('T-" <at> T*<W1R:6YG('-T<BAO<W,N<W1R*"DI.PT*("!I9B H(7-T<BYE;7!T
M>2 <at> I*0T*("![#0H <at> ("  <at> 9G-?='AT7VEN+G)D8G5F*"DM/G-U;F=E=&, <at> *"D[
M#0H <at> ("  <at> :68 <at> *&9S7W1X=%]I;BYR9&)U9B <at> I+3YS9V5T8R <at> I("$]("=<;B<I
M('-T<BYE<F%S92AS='(N<VEZ92 <at> I("T <at> ,2D[#0H <at> ('T-"B  <at> +R\ <at> +2TM+2TM
M+2TM+2TM+2TM+2TM#0H <at> (')E='5R;B!S='([#0H-"GT-" <at> T*#0HO+R M+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*<W1R:6YG($-0
M4%\P.5]B:6Y?7V9U;F-T:6]N7V=E=&QI;F5?7V]S=')I;F=S=')E86T <at> *"D-
M"GL-"F]S=')I;F=S=')E86T <at> ;W-S.PT*<W1R:6YG(&QI;F4[#0H-"B  <at> 9G-?
M8FEN7VEN+F-L96%R*"D[#0H <at> (&9S7V)I;E]I;BYS965K9R H,"P <at> :6]S.CIB
M96<I.PT*#0H <at> ("\O("TM+2TM+2!";V1Y("TM+2TM+0T*("!W:&EL92 H9V5T
M;&EN92 H9G-?8FEN7VEN+"!L:6YE*2D <at> ;W-S(#P\(&QI;F4 <at> /#P <at> )UQN)SL-
M" <at> T*<W1R:6YG('-T<BAO<W,N<W1R*"DI.PT*("!I9B H(7-T<BYE;7!T>2 <at> I
M*0T*("![#0H <at> ("  <at> 9G-?8FEN7VEN+G)D8G5F*"DM/G-U;F=E=&, <at> *"D[#0H <at> 
M("  <at> :68 <at> *&9S7V)I;E]I;BYR9&)U9B <at> I+3YS9V5T8R <at> I("$]("=<;B<I('-T
M<BYE<F%S92AS='(N<VEZ92 <at> I("T <at> ,2D[#0H <at> ('T-"B  <at> +R\ <at> +2TM+2TM+2TM
M+2TM+2TM+2TM#0H <at> (')E='5R;B!S='([#0H-"GT-" <at> T*#0HO+R M+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*<W1R:6YG($-04%\Q
M,%]T>'1?7V9U;F-T:6]N7V=E=&QI;F5?7W-T<FEN9R H*0T*>PT*<W1R:6YG
M(')E=%]S='([#0IS=')I;F< <at> ;&EN93L-" <at> T*("!F<U]T>'1?:6XN8VQE87(H
M*3L-"B  <at> 9G-?='AT7VEN+G-E96MG(" <at> P+"!I;W,Z.F)E9RD[#0H-"B  <at> +R\ <at> 
M+2TM+2TM($)O9'D <at> +2TM+2TM#0H <at> ('=H:6QE("AG971L:6YE("AF<U]T>'1?
M:6XL(&QI;F4I*2 -"B  <at> >PT*("  <at> (')E=%]S='( <at> *SUL:6YE.PT*("  <at> (')E
M=%]S='( <at> *STG7&XG.PT*("!]#0H-"B  <at> :68 <at> *"%R971?<W1R+F5M<'1Y*"DI
M#0H <at> ('L-"B  <at> ("!F<U]T>'1?:6XN<F1B=68H*2T^<W5N9V5T8R H*3L-"B  <at> 
M("!I9B H9G-?='AT7VEN+G)D8G5F*"DM/G-G971C*"D <at> (3T <at> )UQN)RD <at> <F5T
M7W-T<BYE<F%S92AR971?<W1R+G-I>F4H*2 M(#$I.PT*("!]#0H <at> ("\O("TM
M+2TM+2TM+2TM+2TM+2TM+0T*("!R971U<FX <at> <F5T7W-T<CL-" <at> T*?0T*#0H-
M"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM#0IS
M=')I;F< <at> 0U!07S$P7V)I;E]?9G5N8W1I;VY?9V5T;&EN95]?<W1R:6YG(" <at> I
M#0I[#0IS=')I;F< <at> <F5T7W-T<CL-"G-T<FEN9R!L:6YE.PT*#0H <at> (&9S7V)I
M;E]I;BYC;&5A<B <at> I.PT*("!F<U]B:6Y?:6XN<V5E:V< <at> *# L(&EO<SHZ8F5G
M*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M+2TM+2T-"B  <at> =VAI;&4 <at> *&=E=&QI
M;F4 <at> *&9S7V)I;E]I;BP <at> ;&EN92DI#0H <at> ('L-"B  <at> ("!R971?<W1R("L];&EN
M93L-"B  <at> ("!R971?<W1R("L])UQN)SL-"B  <at> ?0T*#0H <at> (&EF(" <at> A<F5T7W-T
M<BYE;7!T>2 <at> I*0T*("![#0H <at> ("  <at> 9G-?8FEN7VEN+G)D8G5F*"DM/G-U;F=E
M=&, <at> *"D[#0H <at> ("  <at> :68 <at> *&9S7V)I;E]I;BYR9&)U9B <at> I+3YS9V5T8R <at> I("$]
M("=<;B<I(')E=%]S='(N97)A<V4H<F5T7W-T<BYS:7IE*"D <at> +2 Q*3L-"B  <at> 
M?0T*(" O+R M+2TM+2TM+2TM+2TM+2TM+2T-"B  <at> <F5T=7)N(')E=%]S='([
M#0H-"GT-" <at> T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+0T*<W1R:6YG($-04%\Q,5]T>'1?7VUE=&AO9%]I9G-T<F5A;5]G
M971L:6YE(" <at> I#0I[#0IO<W1R:6YG<W1R96%M(&]S<SL-"F-H87( <at> 8G5F9F5R
M6T)51D9%4E]325I%73L-"B  <at> 05-315)4("AS:7IE;V8H8G5F9F5R*2 ^(#$I
M.PT*#0H <at> (&9S7W1X=%]I;BYC;&5A<B <at> I.PT*("!F<U]T>'1?:6XN<V5E:V< <at> 
M*# L(&EO<SHZ8F5G*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M+2TM+2T-"B  <at> 
M=VAI;&4 <at> *&9S7W1X=%]I;BYG971L:6YE("AB=69F97(L('-I>F5O9BAB=69F
M97(I*2YG8V]U;G0H*2D-"B  <at> >PT*("  <at> (&]S<R \/"!B=69F97([#0H-"B  <at> 
M("!I9B H9G-?='AT7VEN+F9A:6PH*2D <at> 9G-?='AT7VEN+F-L96%R("A^*&EO
M<U]B87-E.CIF86EL8FET('P <at> ?F9S7W1X=%]I;BYR9'-T871E(" <at> I*2D[( T*
M("  <at> (&5L<V4 <at> ("  <at> ("  <at> ("  <at> ("  <at> ("  <at> ("!O<W, <at> /#P <at> )UQN)SL-"B  <at> ?0T*
M("!!4U-%4E0 <at> *&9S7W1X=%]I;BYE;V8H*2D[#0H-"G-T<FEN9R!S='(H;W-S
M+G-T<B <at> I*3L-"B  <at> :68 <at> *"%S='(N96UP='DH*2D-"B  <at> >PT*("  <at> (&9S7W1X
M=%]I;BYR9&)U9B <at> I+3YS=6YG971C(" <at> I.PT*("  <at> (&EF("AF<U]T>'1?:6XN
M<F1B=68H*2T^<V=E=&,H*2 A/2 G7&XG*2!S='(N97)A<V4H<W1R+G-I>F4H
M*2 M(#$I.PT*("!]#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*("!R971U
M<FX <at> <W1R.PT*?0T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+0T*<W1R:6YG($-04%\Q,5]B:6Y?7VUE=&AO9%]I9G-T<F5A
M;5]G971L:6YE(" <at> I#0I[#0IO<W1R:6YG<W1R96%M(&]S<SL-"F-H87( <at> 8G5F
M9F5R6T)51D9%4E]325I%73L-"B  <at> 05-315)4("AS:7IE;V8H8G5F9F5R*2 ^
M(#$I.PT*#0H <at> (&9S7V)I;E]I;BYC;&5A<B <at> I.PT*("!F<U]B:6Y?:6XN<V5E
M:V< <at> *# L(&EO<SHZ8F5G*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M+2TM+2T-
M"B  <at> =VAI;&4 <at> *&9S7V)I;E]I;BYG971L:6YE("AB=69F97(L('-I>F5O9BAB
M=69F97(I*2YG8V]U;G0H*2D-"B  <at> >PT*("  <at> (&]S<R \/"!B=69F97([#0H-
M"B  <at> ("!I9B H9G-?8FEN7VEN+F9A:6PH*2D <at> 9G-?8FEN7VEN+F-L96%R("A^
M*&EO<U]B87-E.CIF86EL8FET('P <at> ?F9S7V)I;E]I;BYR9'-T871E(" <at> I*2D[
M( T*("  <at> (&5L<V4 <at> ("  <at> ("  <at> ("  <at> ("  <at> ("  <at> ("!O<W, <at> /#P <at> )UQN)SL-"B  <at> 
M?0T*("!!4U-%4E0 <at> *&9S7V)I;E]I;BYE;V8H*2D[#0H-"G-T<FEN9R!S='(H
M;W-S+G-T<B <at> I*3L-"B  <at> :68 <at> *"%S='(N96UP='DH*2D-"B  <at> >PT*("  <at> (&9S
M7V)I;E]I;BYR9&)U9B <at> I+3YS=6YG971C(" <at> I.PT*("  <at> (&EF("AF<U]B:6Y?
M:6XN<F1B=68H*2T^<V=E=&,H*2 A/2 G7&XG*2!S='(N97)A<V4H<W1R+G-I
M>F4H*2 M(#$I.PT*("!]#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*("!R
M971U<FX <at> <W1R.PT*?0T*#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM#0IS=')I;F< <at> 0U!07S$R7W1X=%]?;65T:&]D<U]I
M9G-T<F5A;5]G971?<'5T(" <at> I#0I[#0IO<W1R:6YG<W1R96%M(&]S<SL-"F-H
M87( <at> 8V <at> [#0H-"B  <at> 9G-?='AT7VEN+F-L96%R*"D[#0H <at> (&9S7W1X=%]I;BYS
M965K9R H,"P <at> :6]S.CIB96<I.PT*#0H <at> ("\O("TM+2TM+2!";V1Y("TM+2TM
M+0T*("!W:&EL92 H9G-?='AT7VEN+F=E="AC:"DI(&]S<RYP=70H8V <at> I.PT*
M(" O+R M+2TM+2TM+2TM+2TM+2TM+2T-"B  <at> <F5T=7)N(&]S<RYS='(H*3L-
M" <at> T*?0T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+0T*<W1R:6YG($-04%\Q,E]B:6Y?7VUE=&AO9'-?:69S=')E86U?9V5T
M7W!U=" H*0T*>PT*;W-T<FEN9W-T<F5A;2!O<W,[#0IC:&%R(&-H.PT*#0H <at> 
M(&9S7V)I;E]I;BYC;&5A<B <at> I.PT*("!F<U]B:6Y?:6XN<V5E:V< <at> *# L(&EO
M<SHZ8F5G*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M+2TM+2T-"B  <at> =VAI;&4 <at> 
M*&9S7V)I;E]I;BYG970H8V <at> I*2!O<W,N<'5T*&-H*3L-"B  <at> +R\ <at> +2TM+2TM
M+2TM+2TM+2TM+2TM#0H <at> (')E='5R;B!O<W,N<W1R*"D[#0I]#0H-" <at> T*#0HO
M+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*<W1R
M:6YG($-04%\Q,U]T>'1?7VUE=&AO9%]I9G-T<F5A;5]G970 <at> *"D-"GL-"G-T
M<FEN9R!R971?<W1R("AI;F9I;&5?<VEZ93%?='AT("L <at> ,2P <at> )S G*3L-"F-H
M87( <at> 8V <at> [#0IU;&]N9R!I.PT*#0H <at> (&9S7W1X=%]I;BYC;&5A<B <at> I.PT*("!F
M<U]T>'1?:6XN<V5E:V< <at> *# L(&EO<SHZ8F5G*3L-" <at> T*(" O+R M+2TM+2T <at> 
M0F]D>2 M+2TM+2T-"B  <at> 9F]R("AI(#T <at> ,#L <at> 9G-?='AT7VEN+F=E=" H8V <at> I
M.R!I*RLI#0H <at> ('L-"B  <at> ("!R971?<W1R6VE=(#T <at> 8V <at> [#0H <at> ('T-"B  <at> <F5T
M7W-T<BYE<F%S92 H:2D[#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*("!R
M971U<FX <at> <F5T7W-T<CL-"GT-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2T-"G-T<FEN9R!#4%!?,3-?8FEN7U]M971H;V1?
M:69S=')E86U?9V5T(" <at> I#0I[#0IS=')I;F< <at> <F5T7W-T<B H:6YF:6QE7W-I
M>F5?8FEN("L <at> ,2P <at> )S G*3L-"F-H87( <at> 8V <at> [#0IU;&]N9R!I.PT*#0H <at> (&9S
M7V)I;E]I;BYC;&5A<B <at> I.PT*("!F<U]B:6Y?:6XN<V5E:V< <at> *# L(&EO<SHZ
M8F5G*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M+2TM+2T-"B  <at> 9F]R("AI(#T <at> 
M,#L <at> 9G-?8FEN7VEN+F=E=" H8V <at> I.R!I*RLI#0H <at> ('L-"B  <at> ("!R971?<W1R
M6VE=(#T <at> 8V <at> [#0H <at> ('T-"B  <at> <F5T7W-T<BYE<F%S92 H:2D[#0H <at> ("\O("TM
M+2TM+2TM+2TM+2TM+2TM+0T*("!R971U<FX <at> <F5T7W-T<CL-"GT-" <at> T*#0HO
M+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*<W1R
M:6YG($-04%\Q-%]T>'1?7VUE=&AO9%]I9G-T<F5A;5]G971?7V-O;G-T7V)U
M9B H*0T*>PT*;W-T<FEN9W-T<F5A;2!O<W,[#0IC:&%R(&-B=69F97);0E5&
M1D527U-)6D5=.PT*#0H <at> ($%34T525" H<VEZ96]F*&-B=69F97(I(#X <at> ,2D[
M#0H-"B  <at> 9G-?='AT7VEN+F-L96%R*"D[#0H <at> (&9S7W1X=%]I;BYS965K9R H
M,"P <at> :6]S.CIB96<I.PT*#0H <at> ("\O("TM+2TM+2!";V1Y("TM+2TM+0T*8V]N
M<W0 <at> :6YT(&YE=VQI;F5?:6YT7W-Y;6)O;" H:6YT(" <at> G7&XG*2D[#0H <at> ('=H
M:6QE("AF<U]T>'1?:6XN9V5T("AC8G5F9F5R+"!S:7IE;V8H8V)U9F9E<BD <at> 
M+2 Q*2D-"B  <at> >PT*("  <at> (&]S<R \/"!C8G5F9F5R.PT*("  <at> (&EF("AF<U]T
M>'1?:6XN<&5E:R <at> I(#T](&YE=VQI;F5?:6YT7W-Y;6)O;"D-"B  <at> ("![#0H <at> 
M("  <at> ("!O<W, <at> /#P <at> 8VAA<BAF<U]T>'1?:6XN9V5T*"DI.PT*("  <at> ('T-"B  <at> 
M?0T*(" O+R M+2TM+2TM+2TM+2TM+2TM+2T-"B  <at> <F5T=7)N(&]S<RYS='(H
M*3L-"GT-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2T-"G-T<FEN9R!#4%!?,31?8FEN7U]M971H;V1?:69S=')E86U?9V5T
M7U]C;VYS=%]B=68 <at> *"D-"GL-"F]S=')I;F=S=')E86T <at> ;W-S.PT*8VAA<B!C
M8G5F9F5R6T)51D9%4E]325I%73L-" <at> T*("!!4U-%4E0 <at> *'-I>F5O9BAC8G5F
M9F5R*2 ^(#$I.PT*#0H <at> (&9S7V)I;E]I;BYC;&5A<B <at> I.PT*("!F<U]B:6Y?
M:6XN<V5E:V< <at> *# L(&EO<SHZ8F5G*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M
M+2TM+2T-"F-O;G-T(&EN="!N97=L:6YE7VEN=%]S>6UB;VP <at> *&EN=" H)UQN
M)RDI.PT*("!W:&EL92 H9G-?8FEN7VEN+F=E=" H8V)U9F9E<BP <at> <VEZ96]F
M*&-B=69F97(I("T <at> ,2DI#0H <at> ('L-"B  <at> ("!O<W, <at> /#P <at> 8V)U9F9E<CL-"B  <at> 
M("!I9B H9G-?8FEN7VEN+G!E96LH*2 ]/2!N97=L:6YE7VEN=%]S>6UB;VPI
M#0H <at> ("  <at> >PT*("  <at> ("  <at> ;W-S(#P\(&-H87(H9G-?8FEN7VEN+F=E=" <at> I*3L-
M"B  <at> ("!]#0H <at> ('T-"B  <at> +R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM#0H <at> (')E='5R
M;B!O<W,N<W1R*"D[#0I]#0H-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2T-"G-T<FEN9R!#4%!?,35?='AT7U]M971H;V1?
M:69S=')E86U?9V5T7U]S=')E86UB=68 <at> *"D-"GL-"F]S=')I;F=S=')E86T <at> 
M;W-S.PT*#0H <at> (&9S7W1X=%]I;BYC;&5A<B <at> I.PT*("!F<U]T>'1?:6XN<V5E
M:V< <at> *# L(&EO<SHZ8F5G*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M+2TM+2T-
M"F-O;G-T(&EN="!N97=L:6YE7VEN=%]S>6UB;VP <at> *&EN=" H)UQN)RDI.PT*
M("!W:&EL92 H9G-?='AT7VEN+F=E=" H*F]S<RYR9&)U9B <at> I*2D-"B  <at> >PT*
M("  <at> (&EF("AF<U]T>'1?:6XN<&5E:R <at> I(#T](&YE=VQI;F5?:6YT7W-Y;6)O
M;"D-"B  <at> ("![#0H <at> ("  <at> ("!O<W, <at> /#P <at> 8VAA<BAF<U]T>'1?:6XN9V5T*"DI
M.PT*("  <at> ('T-"B  <at> ?0T*(" O+R M+2TM+2TM+2TM+2TM+2TM+2T-"B  <at> <F5T
M=7)N(&]S<RYS='(H*3L-"GT-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2T-"G-T<FEN9R!#4%!?,35?8FEN7U]M971H;V1?
M:69S=')E86U?9V5T7U]S=')E86UB=68 <at> *"D-"GL-"F]S=')I;F=S=')E86T <at> 
M;W-S.PT*#0H <at> (&9S7V)I;E]I;BYC;&5A<B <at> I.PT*("!F<U]B:6Y?:6XN<V5E
M:V< <at> *# L(&EO<SHZ8F5G*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M+2TM+2T-
M"F-O;G-T(&EN="!N97=L:6YE7VEN=%]S>6UB;VP <at> *&EN=" H)UQN)RDI.PT*
M("!W:&EL92 H9G-?8FEN7VEN+F=E=" H*F]S<RYR9&)U9B <at> I*2D-"B  <at> >PT*
M("  <at> (&EF("AF<U]B:6Y?:6XN<&5E:R <at> I(#T](&YE=VQI;F5?:6YT7W-Y;6)O
M;"D-"B  <at> ("![#0H <at> ("  <at> ("!O<W, <at> /#P <at> 8VAA<BAF<U]B:6Y?:6XN9V5T*"DI
M.PT*("  <at> ('T-"B  <at> ?0T*(" O+R M+2TM+2TM+2TM+2TM+2TM+2T-"B  <at> <F5T
M=7)N(&]S<RYS='(H*3L-"GT-" <at> T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+0T*<W1R:6YG($-04%\Q-E]T>'1?7VEO<W1R
M96%M7VET97)A=&]R<U]?8V]P>2 H*0T*>PT*;W-T<FEN9W-T<F5A;2!O<W,[
M#0H-"B  <at> 9G-?='AT7VEN+F-L96%R*"D[#0H <at> (&9S7W1X=%]I;BYS965K9R H
M,"P <at> :6]S.CIB96<I.PT*#0H <at> ("\O("TM+2TM+2!";V1Y("TM+2TM+0T*("!F
M<U]T>'1?:6X <at> /CX <at> ;F]S:VEP=W,[#0II<W1R96%M7VET97)A=&]R/&-H87(^
M(&EN*&9S7W1X=%]I;BDL(&5O<SL-"F]S=')E86U?:71E<F%T;W(\8VAA<CX <at> 
M;W5T*&]S<RD[#0H <at> (&-O<'D <at> *&EN+"!E;W,L(&]U="D[#0H <at> ("\O("TM+2TM
M+2TM+2TM+2TM+2TM+0T*("!R971U<FX <at> ;W-S+G-T<B <at> I.PT*?0T*#0HO+R M
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*<W1R:6YG
M($-04%\Q-E]B:6Y?7VEO<W1R96%M7VET97)A=&]R<U]?8V]P>2 H*0T*>PT*
M;W-T<FEN9W-T<F5A;2!O<W,[#0H <at> (&9S7V)I;E]I;BYC;&5A<B <at> I.PT*("!F
M<U]B:6Y?:6XN<V5E:V< <at> *# L(&EO<SHZ8F5G*3L-" <at> T*(" O+R M+2TM+2T <at> 
M0F]D>2 M+2TM+2T-"B  <at> 9G-?8FEN7VEN(#X^(&YO<VMI<'=S.PT*:7-T<F5A
M;5]I=&5R871O<CQC:&%R/B!I;BAF<U]B:6Y?:6XI+"!E;W,[#0IO<W1R96%M
M7VET97)A=&]R/&-H87(^(&]U="AO<W,I.PT*("!C;W!Y("AI;BP <at> 96]S+"!O
M=70I.PT*(" O+R M+2TM+2TM+2TM+2TM+2TM+2T-"B  <at> <F5T=7)N(&]S<RYS
M='(H*3L-"GT-" <at> T*#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM#0IS=')I;F< <at> 0U!07S$W7W1X=%]?:6]S=')E86U?:71E
M<F%T;W)S7U]S=')I;F< <at> *"D-"GL-"B  <at> 9G-?='AT7VEN+F-L96%R*"D[#0H <at> 
M(&9S7W1X=%]I;BYS965K9R H,"P <at> :6]S.CIB96<I.PT*#0H <at> ("\O("TM+2TM
M+2!";V1Y("TM+2TM+0T*("!F<U]T>'1?:6X <at> /CX <at> ;F]S:VEP=W,[#0H <at> (&ES
M=')E86U?:71E<F%T;W(\8VAA<CX <at> :6XH9G-?='AT7VEN*2P <at> 96]S.PT*(" O
M+R M+2TM+2TM+2TM+2TM+2TM+2T-"B  <at> <F5T=7)N('-T<FEN9RAI;BP <at> 96]S
M*3L-"GT-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2T-"G-T<FEN9R!#4%!?,3=?8FEN7U]I;W-T<F5A;5]I=&5R871O<G-?
M7W-T<FEN9R H*0T*>PT*("!F<U]B:6Y?:6XN8VQE87(H*3L-"B  <at> 9G-?8FEN
M7VEN+G-E96MG(" <at> P+"!I;W,Z.F)E9RD[#0H-"B  <at> +R\ <at> +2TM+2TM($)O9'D <at> 
M+2TM+2TM#0H <at> (&9S7V)I;E]I;B ^/B!N;W-K:7!W<SL-"B  <at> :7-T<F5A;5]I
M=&5R871O<CQC:&%R/B!I;BAF<U]B:6Y?:6XI+"!E;W,[#0H <at> ("\O("TM+2TM
M+2TM+2TM+2TM+2TM+0T*("!R971U<FX <at> <W1R:6YG*&EN+"!E;W,I.PT*?0T*
M#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M#0IS=')I;F< <at> 0U!07S$X7W1X=%]?:6]S=')E86UB=69?:71E<F%T;W)S7U]C
M;W!Y(" <at> I#0I[#0IO<W1R:6YG<W1R96%M(&]S<SL-"B  <at> 9G-?='AT7VEN+F-L
M96%R*"D[#0H <at> (&9S7W1X=%]I;BYS965K9R H,"P <at> :6]S.CIB96<I.PT*#0H <at> 
M("\O("TM+2TM+2!";V1Y("TM+2TM+0T*("!F<U]T>'1?:6X <at> /CX <at> ;F]S:VEP
M=W,[#0II<W1R96%M8G5F7VET97)A=&]R/&-H87(^(&EN*&9S7W1X=%]I;BDL
M(&5O<SL-"F]S=')E86UB=69?:71E<F%T;W(\8VAA<CX <at> ;W5T*&]S<RD[#0H <at> 
M(&-O<'D <at> *&EN+"!E;W,L(&]U="D[#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM
M+0T*("!R971U<FX <at> ;W-S+G-T<B <at> I.PT*#0I]#0H-"B\O("TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM#0IS=')I;F< <at> 0U!07S$X7V)I
M;E]?:6]S=')E86UB=69?:71E<F%T;W)S7U]C;W!Y(" <at> I#0I[#0IO<W1R:6YG
M<W1R96%M(&]S<SL-" <at> T*("!F<U]B:6Y?:6XN8VQE87(H*3L-"B  <at> 9G-?8FEN
M7VEN+G-E96MG(" <at> P+"!I;W,Z.F)E9RD[#0H-"B  <at> +R\ <at> +2TM+2TM($)O9'D <at> 
M+2TM+2TM#0H <at> (&9S7V)I;E]I;B ^/B!N;W-K:7!W<SL-"FES=')E86UB=69?
M:71E<F%T;W(\8VAA<CX <at> :6XH9G-?8FEN7VEN*2P <at> 96]S.PT*;W-T<F5A;6)U
M9E]I=&5R871O<CQC:&%R/B!O=70H;W-S*3L-"B  <at> 8V]P>2 H:6XL(&5O<RP <at> 
M;W5T*3L-"B  <at> +R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM#0H <at> (')E='5R;B!O<W,N
M<W1R*"D[#0H-"GT-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2T-"G-T<G5C="!C:&%R7VED96YT:71Y#0I[#0H <at> (&-H87( <at> 
M;W!E<F%T;W(H*2AC:&%R(&-H*2!C;VYS="![(')E='5R;B!C:#L <at> ?0T*?3L-
M" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2T-
M"G-T<FEN9R!#4%!?,3E?='AT7U]I;W-T<F5A;6)U9E]I=&5R871O<G-?7W1R
M86YS9F]R;2 H*0T*>PT*;W-T<FEN9W-T<F5A;2!O<W,[#0H-"B  <at> 9G-?='AT
M7VEN+F-L96%R*"D[#0H <at> (&9S7W1X=%]I;BYS965K9R H,"P <at> :6]S.CIB96<I
M.PT*#0H <at> ("\O("TM+2TM+2!";V1Y("TM+2TM+0T*("!F<U]T>'1?:6X <at> /CX <at> 
M;F]S:VEP=W,[#0II<W1R96%M8G5F7VET97)A=&]R/&-H87(^(&EN*&9S7W1X
M=%]I;BDL(&5O<SL-"F]S=')E86UB=69?:71E<F%T;W(\8VAA<CX <at> ;W5T*&]S
M<RD[#0H <at> ('1R86YS9F]R;2AI;BP <at> 96]S+"!O=70L(&-H87)?:61E;G1I='DH
M*2D[#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*("!R971U<FX <at> ;W-S+G-T
M<B <at> I.PT*#0I]#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM#0IS=')I;F< <at> 0U!07S$Y7V)I;E]?:6]S=')E86UB=69?:71E
M<F%T;W)S7U]T<F%N<V9O<FT <at> *"D-"GL-"F]S=')I;F=S=')E86T <at> ;W-S.PT*
M#0H <at> (&9S7V)I;E]I;BYC;&5A<B <at> I.PT*("!F<U]B:6Y?:6XN<V5E:V< <at> *# L
M(&EO<SHZ8F5G*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M+2TM+2T-"B  <at> 9G-?
M8FEN7VEN(#X^(&YO<VMI<'=S.PT*:7-T<F5A;6)U9E]I=&5R871O<CQC:&%R
M/B!I;BAF<U]B:6Y?:6XI+"!E;W,[#0IO<W1R96%M8G5F7VET97)A=&]R/&-H
M87(^(&]U="AO<W,I.PT*("!T<F%N<V9O<FTH:6XL(&5O<RP <at> ;W5T+"!C:&%R
M7VED96YT:71Y*"DI.PT*(" O+R M+2TM+2TM+2TM+2TM+2TM+2T-"B  <at> <F5T
M=7)N(&]S<RYS='(H*3L-"GT-" <at> T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+0T*<W1R:6YG($-04%\R,%]T>'1?7VEO<W1R
M96%M8G5F7VET97)A=&]R<U]?<W1R:6YG(" <at> I#0I[#0H <at> (&9S7W1X=%]I;BYC
M;&5A<B <at> I.PT*("!F<U]T>'1?:6XN<V5E:V< <at> *# L(&EO<SHZ8F5G*3L-" <at> T*
M(" O+R M+2TM+2T <at> 0F]D>2 M+2TM+2T-"B  <at> 9G-?='AT7VEN(#X^(&YO<VMI
M<'=S.PT*("!I<W1R96%M8G5F7VET97)A=&]R/&-H87(^(&EN*&9S7W1X=%]I
M;BDL(&5O<SL-"B  <at> +R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM#0H <at> (')E='5R;B!S
M=')I;F<H:6XL(&5O<RD[#0I]#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM#0IS=')I;F< <at> 0U!07S(P7V)I;E]?:6]S=')E
M86UB=69?:71E<F%T;W)S7U]S=')I;F< <at> *"D-"GL-"B  <at> 9G-?8FEN7VEN+F-L
M96%R*"D[#0H <at> (&9S7V)I;E]I;BYS965K9R H,"P <at> :6]S.CIB96<I.PT*#0H <at> 
M("\O("TM+2TM+2!";V1Y("TM+2TM+0T*("!F<U]B:6Y?:6X <at> /CX <at> ;F]S:VEP
M=W,[#0H <at> (&ES=')E86UB=69?:71E<F%T;W(\8VAA<CX <at> :6XH9G-?8FEN7VEN
M*2P <at> 96]S.PT*(" O+R M+2TM+2TM+2TM+2TM+2TM+2T-"B  <at> <F5T=7)N('-T
M<FEN9RAI;BP <at> 96]S*3L-"GT-" <at> T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+0T*<W1R:6YG($-04%\R,5]T>'1?7W9E8W1O
M<E]?8V]P>2 H*0T*>PT*;W-T<FEN9W-T<F5A;2!O<W,[#0H-"B  <at> 9G-?='AT
M7VEN+F-L96%R*"D[#0H <at> (&9S7W1X=%]I;BYS965K9R H,"P <at> :6]S.CIB96<I
M.PT*#0H <at> ("\O("TM+2TM+2!";V1Y("TM+2TM+0T*=F5C=&]R/&-H87(^('8 <at> 
M*&EN9FEL95]S:7IE,5]T>'0I.PT*("!F<U]T>'1?:6XN<F5A9" <at> F=ELP72P <at> 
M:6YF:6QE7W-I>F4Q7W1X="D[#0H-"F]S=')E86U?:71E<F%T;W(\8VAA<CX <at> 
M;W5T*&]S<RD[#0H <at> (&-O<'D <at> *"9V6S!=+" F=EMV+G-I>F4H*5TL(&]U="D[
M#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*("!R971U<FX <at> ;W-S+G-T<B <at> I
M.PT*#0I]#0H-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM#0IS=')I;F< <at> 0U!07S(Q7V)I;E]?=F5C=&]R7U]C;W!Y(" <at> I#0I[
M#0IO<W1R:6YG<W1R96%M(&]S<SL-" <at> T*("!F<U]B:6Y?:6XN8VQE87(H*3L-
M"B  <at> 9G-?8FEN7VEN+G-E96MG(" <at> P+"!I;W,Z.F)E9RD[#0H-"B  <at> +R\ <at> +2TM
M+2TM($)O9'D <at> +2TM+2TM#0IV96-T;W(\8VAA<CX <at> =B H:6YF:6QE7W-I>F5?
M8FEN*3L-"B  <at> 9G-?8FEN7VEN+G)E860H)G9;,%TL(&EN9FEL95]S:7IE7V)I
M;BD[#0H-"F]S=')E86U?:71E<F%T;W(\8VAA<CX <at> ;W5T*&]S<RD[#0H <at> (&-O
M<'D <at> *"9V6S!=+" F=EMV+G-I>F4H*5TL(&]U="D[#0H <at> ("\O("TM+2TM+2TM
M+2TM+2TM+2TM+0T*("!R971U<FX <at> ;W-S+G-T<B <at> I.PT*#0I]#0H-" <at> T*#0HO
M+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*<W1R
M:6YG($-04%\R,E]T>'1?7W9E8W1O<E]P=7-H7V)A8VL <at> *"D-"GL-"G-T<FEN
M9R!R971?<W1R.PT*=F5C=&]R/&-H87(^('8[#0IC:&%R(&-H.PT*#0H <at> (&9S
M7W1X=%]I;BYC;&5A<B <at> I.PT*("!F<U]T>'1?:6XN<V5E:V< <at> *# L(&EO<SHZ
M8F5G*3L-" <at> T*("!V+G)E<V5R=F4H:6YF:6QE7W-I>F4Q7W1X="D[#0H <at> ("\O
M("TM+2TM+2!";V1Y("TM+2TM+0T*("!W:&EL92 H9G-?='AT7VEN+F=E="AC
M:"DI('8N<'5S:%]B86-K*&-H*3L-"B  <at> +R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM
M#0H <at> (')E=%]S='( <at> /2!V+F5M<'1Y*"D <at> /R!S=')I;F<H*2 Z('-T<FEN9R H
M=BYB96=I;B <at> I+"!V+F5N9" <at> I*3L-" <at> T*("!R971U<FX <at> <F5T7W-T<CL-" <at> T*
M?0T*#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+0T*<W1R:6YG($-04%\R,E]B:6Y?7W9E8W1O<E]P=7-H7V)A8VL <at> *"D-"GL-
M"G-T<FEN9R!R971?<W1R.PT*=F5C=&]R/&-H87(^('8[#0IC:&%R(&-H.PT*
M#0H <at> (&9S7V)I;E]I;BYC;&5A<B <at> I.PT*("!F<U]B:6Y?:6XN<V5E:V< <at> *# L
M(&EO<SHZ8F5G*3L-" <at> T*("!V+G)E<V5R=F4H:6YF:6QE7W-I>F5?8FEN*3L-
M"B  <at> +R\ <at> +2TM+2TM($)O9'D <at> +2TM+2TM#0H <at> ('=H:6QE("AF<U]B:6Y?:6XN
M9V5T*&-H*2D <at> =BYP=7-H7V)A8VLH8V <at> I.PT*(" O+R M+2TM+2TM+2TM+2TM
M+2TM+2T-"B  <at> <F5T7W-T<B ]('8N96UP='DH*2 _('-T<FEN9R <at> I(#H <at> <W1R
M:6YG("AV+F)E9VEN*"DL('8N96YD*"DI.PT*#0H <at> (')E='5R;B!R971?<W1R
M.PT*#0I]#0H-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2T-"G-T<FEN9R!#4%!?,C-?='AT7U]V96-T;W)?7V-P<%]R96%D
M(" <at> I#0I[#0IS=')I;F< <at> <F5T7W-T<CL-"G9E8W1O<CQC:&%R/B!V("AI;F9I
M;&5?<VEZ93%?='AT*3L-" <at> T*("!F<U]T>'1?:6XN8VQE87(H*3L-"B  <at> 9G-?
M='AT7VEN+G-E96MG(" <at> P+"!I;W,Z.F)E9RD[#0H-"B  <at> +R\ <at> +2TM+2TM($)O
M9'D <at> +2TM+2TM#0H <at> (&9S7W1X=%]I;BYR96%D*"9V6S!=+"!I;F9I;&5?<VEZ
M93%?='AT*3L-"B  <at> +R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM#0H <at> (')E=%]S='( <at> 
M/2!V+F5M<'1Y*"D <at> /R!S=')I;F<H*2 Z('-T<FEN9R H=BYB96=I;B <at> I+"!V
M+F5N9" <at> I*3L-" <at> T*("!R971U<FX <at> <F5T7W-T<CL-" <at> T*?0T*#0HO+R M+2TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*<W1R:6YG($-0
M4%\R,U]B:6Y?7W9E8W1O<E]?8W!P7W)E860 <at> *"D-"GL-"G-T<FEN9R!R971?
M<W1R.PT*=F5C=&]R/&-H87(^('8 <at> *&EN9FEL95]S:7IE7V)I;BD[#0H-"B  <at> 
M9G-?8FEN7VEN+F-L96%R*"D[#0H <at> (&9S7V)I;E]I;BYS965K9R H,"P <at> :6]S
M.CIB96<I.PT*#0H <at> ("\O("TM+2TM+2!";V1Y("TM+2TM+0T*("!F<U]B:6Y?
M:6XN<F5A9" <at> F=ELP72P <at> :6YF:6QE7W-I>F5?8FEN*3L-"B  <at> +R\ <at> +2TM+2TM
M+2TM+2TM+2TM+2TM#0H <at> (')E=%]S='( <at> /2!V+F5M<'1Y*"D <at> /R!S=')I;F<H
M*2 Z('-T<FEN9R H=BYB96=I;B <at> I+"!V+F5N9" <at> I*3L-" <at> T*("!R971U<FX <at> 
M<F5T7W-T<CL-" <at> T*?0T*#0H-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2T-"G-T<FEN9R!#4%!?,C1?='AT7U]S=')I;F=?
M7V-P<%]R96%D(" <at> I#0I[#0IS=')I;F< <at> <F5T7W-T<B H:6YF:6QE7W-I>F4Q
M7W1X="P <at> )S G*3L-" <at> T*("!F<U]T>'1?:6XN8VQE87(H*3L-"B  <at> 9G-?='AT
M7VEN+G-E96MG(" <at> P+"!I;W,Z.F)E9RD[#0H-"B  <at> +R\ <at> +2TM+2TM($)O9'D <at> 
M+2TM+2TM#0H <at> (&9S7W1X=%]I;BYR96%D*"9R971?<W1R6S!=+"!I;F9I;&5?
M<VEZ93%?='AT*3L-"B  <at> +R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM#0H-"B  <at> <F5T
M=7)N(')E=%]S='([#0H-"GT-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2T-"G-T<FEN9R!#4%!?,C1?8FEN7U]S=')I;F=?
M7V-P<%]R96%D(" <at> I#0I[#0IS=')I;F< <at> <F5T7W-T<B H:6YF:6QE7W-I>F5?
M8FEN+" G,"<I.PT*#0H <at> (&9S7V)I;E]I;BYC;&5A<B <at> I.PT*("!F<U]B:6Y?
M:6XN<V5E:V< <at> *# L(&EO<SHZ8F5G*3L-" <at> T*(" O+R M+2TM+2T <at> 0F]D>2 M
M+2TM+2T-"B  <at> 9G-?8FEN7VEN+G)E860H)G)E=%]S=');,%TL(&EN9FEL95]S
M:7IE7V)I;BD[#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+0T*#0H <at> (')E='5R
M;B!R971?<W1R.PT*#0I]#0H-" <at> T*#0H-"B\O(#T]/3T]/3T]/3T]/3T]/3T]
M/3T]/3T]/3T]/3T]/3T]/3T]/3T-"B\O(#T]/3T]/2!087)T+38Z($-O;7!U
M=&%T:6]N($UA;F%G96UE;G0-"B\O(#T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]
M/3T]/3T]/3T]/3T]/3T-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2T-"B\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM#0HO+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+0T*(V1E9FEN92!-14%355)%7TE4*' <at> L('DI(%P-"B  <at> 05-315)4("AR971?
M<W1R:6YG+F5M<'1Y*"DI.R!<#0H <at> (&9O;U]S971W(#T <at> 34%87U9!3%5%("AF
M;V]?<V5T=RP <at> <W1R:6YG(" <at> C>2DN<VEZ92 <at> I*3L <at> 7 T*("!C97)R(#P\(");
M4G5N+2( <at> /#P <at> <G5N7VYO(#P\(")=(%1E<W0M(B \/"!T97-T7VYO(#P\("(Z
M("( <at> /#P <at> (WD <at> /#P <at> 96YD;#L <at> 7 T*("!S=&%R=%]T:6UE(#T <at> 8VQO8VLH*3L <at> 
M7 T*("!!4U-%4E0 <at> *'-T87)T7W1I;64 <at> (3T <at> 8VQO8VM?=" H+3$I*3L <at> 7 T*
M("![(&9O<B H=6QO;F< <at> :R ](# [(&L <at> /"!N;U]O9E]R97!E=&ET:6]N<SL <at> 
M:RLK*2![(')E=%]S=')I;F< <at> /2!X.R!]('T <at> 7 T*("!E;F1?=&EM92 ](&-L
M;V-K*"D[(%P-"B  <at> 05-315)4("AE;F1?=&EM92 A/2!C;&]C:U]T(" <at> M,2DI
M.R!<#0H <at> ($%34T525" H<F5T7W-T<FEN9RYS:7IE*"D <at> /3T <at> :6YF:6QE7V-O
M;G1E;G0N<VEZ92 <at> I*3L <at> 7 T*("!!4U-%4E0 <at> *')E=%]S=')I;F< <at> /3T <at> :6YF
M:6QE7V-O;G1E;G0I.R!<#0H <at> (&EF(" <at> A*&5N9%]T:6UE(#X <at> <W1A<G1?=&EM
M92DI('L <at> 8V5R<B \/" B3G5M8F5R(&]F(')E<&5T:71I;VYS('1O;R!S;6%L
M;#H <at> (B \/" C>2 \/"!E;F1L.R!]7 T*("!!4U-%4E0 <at> *&5N9%]T:6UE(#X]
M('-T87)T7W1I;64I.R!<#0H <at> (&EF("AF:6YD("AF;V]?;F%M97,N8F5G:6XH
M*2P <at> 9F]O7VYA;65S+F5N9" <at> I+" C>2D <at> /3T <at> 9F]O7VYA;65S+F5N9" <at> I*2!<
M#0H <at> ('L <at> 7 T*("  <at> (&9O;U]N86UE<RYP=7-H7V)A8VL <at> *"-Y*3L <at> 7 T*("  <at> 
M('5S961?=&EM92YP=7-H7V)A8VL <at> *'9E8W1O<CQC;&]C:U]T/B <at> I*3L <at> 7 T*
M("!](%P-"B  <at> 05-315)4("AF;V]?;F%M97,N<VEZ92 <at> I(#T]('5S961?=&EM
M92YS:7IE*"DI.R!<#0H <at> (&ET97)?;F%M97, <at> /2!F:6YD("AF;V]?;F%M97,N
M8F5G:6XH*2P <at> 9F]O7VYA;65S+F5N9" <at> I+" C>2D[(%P-"B  <at> 05-315)4("AI
M=&5R7VYA;65S("$](&9O;U]N86UE<RYE;F0H*2D[(%P-"B  <at> =7-E9%]T:6UE
M6V1I<W1A;F-E("AF;V]?;F%M97,N8F5G:6XH*2P <at> :71E<E]N86UE<RE=+G!U
M<VA?8F%C:R H*&5N9%]T:6UE("T <at> <W1A<G1?=&EM92DI#0H-"B-D969I;F4 <at> 
M345!4U5215]7251(7T%21RAF;V\L(&%R9W5M96YT*2!-14%355)%7TE4("AF
M;V\H87)G=6UE;G0I+"!F;V\I#0HC9&5F:6YE($U%05-54D5?5TE42%].3U]!
M4D<H9F]O*2!-14%355)%7TE4("AF;V\H*2P <at> 9F]O*0T*#0HO+R M+2TM+2TM
M+2TM+2T-"G9O:60 <at> ;65A<W5R92 H=6QO;F< <at> ;F]?;V9?<F5P971I=&EO;G,I
M#0I[#0IC;&]C:U]T('-T87)T7W1I;64[#0IC;&]C:U]T(&5N9%]T:6UE.PT*
M=F5C=&]R/&-L;V-K7W0^(&5L87!S961?=&EM95]V96-T.PT*#0H <at> ("\O("TM
M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2T-"B  <at> 9FEL;%]I;G!U=%]F
M:6QE(" <at> I.PT*#0H <at> ($%34T525" H:6YF:6QE7W-I>F4R7W1X="D[#0H <at> ($%3
M4T525" H:6YF:6QE7W-I>F5?8FEN*3L-" <at> T*8V]N<W0 <at> =6QO;F< <at> :6YF:6QE
M7VUA>%]T>'1?8FEN7W-I>F4 <at> *$U!6%]604Q512 H:6YF:6QE7W-I>F4R7W1X
M="P <at> :6YF:6QE7W-I>F5?8FEN*2D[#0H <at> ($%34T525" H=7-E<E]D969I;F5D
M7V9I;&5S:7IE(#P](&EN9FEL95]M87A?='AT7V)I;E]S:7IE*3L-" <at> T*("!M
M8G5F9F5R(#T <at> ;F5W("AN;W1H<F]W*2!C:&%R(%MI;F9I;&5?;6%X7W1X=%]B
M:6Y?<VEZ92 K(#)=.PT*#0H <at> ($%34T525" H;6)U9F9E<B A/2!.54Q,*3L-
M" <at> T*#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2T-"B  <at> 
M9G!?='AT7VEN(" ](&9O<&5N*$E.4%547U185%]&24Q%7TY!344L(")R(BD[
M#0H <at> ($%34T525"AF<%]T>'1?:6XI.PT*#0H <at> (&9P7V)I;E]I;B  <at> /2!F;W!E
M;BA)3E!55%]"24Y?1DE,15].04U%+" B<F(B*3L-"B  <at> 05-315)4*&9P7V)I
M;E]I;BD[#0H-"B  <at> :68 <at> *"$H:6YF:6QE7W-I>F4R7W1X=" ]/2!G971?9FEL
M97-I>F5?=FEA7V9S965K7V9T96QL("A)3E!55%]46%1?1DE,15].04U%+"!T
M<G5E*2DI#0H <at> ('L-"B  <at> ("!C97)R(#P\(&5N9&P[#0H <at> ("  <at> 8V5R<B \/" B
M57-E<B!D969I;F5D(&9I;&4 <at> <VEZ92  <at> (" ]("( <at> /#P <at> =7-E<E]D969I;F5D
M7V9I;&5S:7IE(#P\(&5N9&P[#0H <at> ("  <at> 8V5R<B \/" B5'AT(&EN<'5T(&9I
M;&4 <at> <VEZ92  <at> ("  <at> (" ]("( <at> /#P <at> :6YF:6QE7W-I>F4R7W1X=" \/"!E;F1L
M.PT*("  <at> (&-E<G( <at> /#P <at> (E9I82!F<V5E:R9F=&5L;"!F:6QE('-I>F4 <at> /2 B
M(#P\(&=E=%]F:6QE<VEZ95]V:6%?9G-E96M?9G1E;&P <at> *$E.4%547U185%]&
M24Q%7TY!344L('1R=64I(#P\(&5N9&P[#0H <at> ("  <at> 05-315)4("AI;F9I;&5?
M<VEZ93)?='AT(#T](&=E=%]F:6QE<VEZ95]V:6%?9G-E96M?9G1E;&P <at> *$E.
M4%547U185%]&24Q%7TY!344L('1R=64I*3L-"B  <at> ?0T*("!!4U-%4E0 <at> *&EN
M9FEL95]S:7IE,E]T>'0 <at> /3T <at> 9V5T7V9I;&5S:7IE7W9I85]F<V5E:U]F=&5L
M;" H24Y0551?5%A47T9)3$5?3D%-12P <at> =')U92DI.PT*#0H <at> ($%34T525" H
M:6YF:6QE7W-I>F5?8FEN(#T](&=E=%]F:6QE<VEZ95]V:6%?9G-E96M?9G1E
M;&P <at> *$E.4%547T))3E]&24Q%7TY!344L(&9A;'-E*2D[#0H-" <at> T*(VEF9&5F
M(%5.25A?14Y6#0H <at> (&9D7W1X=%]I;B ](&]P96XH24Y0551?5%A47T9)3$5?
M3D%-12P <at> 3U]#4D5!5"!\($]?4D1/3DQ9*3L-"B  <at> 05-315)4("AF9%]T>'1?
M:6X <at> (3T <at> +3$I.PT*#0H <at> (&9D7V)I;E]I;B ](&]P96XH24Y0551?0DE.7T9)
M3$5?3D%-12P <at> 3U]#4D5!5"!\($]?4D1/3DQ9('P <at> 3U]"24Y!4EDI.PT*("!!
M4U-%4E0 <at> *&9D7V)I;E]I;B A/2 M,2D[#0H-"B  <at> 05-315)4("AI;F9I;&5?
M<VEZ93)?='AT(#T](&=E=%]F:6QE<VEZ95]V:6%?;'-E96L <at> *$E.4%547U18
M5%]&24Q%7TY!344L('1R=64I*3L-"B  <at> 05-315)4("AI;F9I;&5?<VEZ95]B
M:6X <at> /3T <at> 9V5T7V9I;&5S:7IE7W9I85]L<V5E:R H24Y0551?0DE.7T9)3$5?
M3D%-12P <at> 9F%L<V4I*3L-" <at> T*(V5N9&EF#0H-"B  <at> 9G-?='AT7VEN+F]P96X <at> 
M*$E.4%547U185%]&24Q%7TY!344I.PT*("!!4U-%4E0 <at> *&9S7W1X=%]I;BD[
M#0H <at> ($%34T525" H9G-?='AT7VEN+FES7V]P96XH*2D[#0H <at> ( T*("!F<U]B
M:6Y?:6XN;W!E;B H24Y0551?0DE.7T9)3$5?3D%-12P <at> :6]S.CIB:6YA<GDI
M.PT*("!!4U-%4E0 <at> *&9S7V)I;E]I;BD[#0H <at> ($%34T525" H9G-?8FEN7VEN
M+FES7V]P96XH*2D[#0H-"B  <at> 05-315)4("AI;F9I;&5?<VEZ93)?='AT(#T]
M(&=E=%]F:6QE<VEZ95]V:6%?<V5E:V=?=&5L;&< <at> *$E.4%547U185%]&24Q%
M7TY!344L('1R=64I*3L-"B  <at> 05-315)4("AI;F9I;&5?<VEZ95]B:6X <at> /3T <at> 
M9V5T7V9I;&5S:7IE7W9I85]S965K9U]T96QL9R H24Y0551?0DE.7T9)3$5?
M3D%-12P <at> 9F%L<V4I*3L-" <at> T*#0H <at> ("\O("TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2T-"B  <at> +R\ <at> 8V]U=" \/" B7'0M+2T^(%1E<W0M(B \/"!T
M97-T7VYO(#P\("( <at> <W1A<G1E9"( <at> /#P <at> 96YD;#L-"B  <at> 8V]U=" \/" B+B([
M#0H <at> (&-O=70N9FQU<V <at> H*3L-" <at> T*(" O+R M+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM#0H-" <at> T*("!-14%355)%7U=)5$A?3D]?05)'("A#7S Q
M7W1X=%]?9G5N8W1I;VY?9V5T8RD[#0H <at> ($-(14-+7U185%]215154DY%1%]3
M5%))3D<[( T*("!-14%355)%7U=)5$A?3D]?05)'("A#7S Q7V)I;E]?9G5N
M8W1I;VY?9V5T8RD[#0H <at> ($-(14-+7T))3E]215154DY%1%]35%))3D<[#0H-
M"B  <at> 345!4U5215]7251(7TY/7T%21R H0U\P,E]T>'1?7V9U;F-T:6]N7V9G
M971C*3L-"B  <at> 0TA%0TM?5%A47U)%5%523D5$7U-44DE.1SL <at> #0H <at> ($U%05-5
M4D5?5TE42%].3U]!4D< <at> *$-?,#)?8FEN7U]F=6YC=&EO;E]F9V5T8RD[#0H <at> 
M($-(14-+7T))3E]215154DY%1%]35%))3D<[#0H-"B  <at> 345!4U5215]7251(
M7TY/7T%21R H0U\P,U]T>'1?7V9U;F-T:6]N7V9R96%D7U]C;VYS=%]B=68I
M.PT*("!#2$5#2U]46%1?4D5455).141?4U1224Y'.R -"B  <at> 345!4U5215]7
M251(7TY/7T%21R H0U\P,U]B:6Y?7V9U;F-T:6]N7V9R96%D7U]C;VYS=%]B
M=68I.PT*("!#2$5#2U]"24Y?4D5455).141?4U1224Y'.PT*#0H <at> ($U%05-5
M4D5?5TE42%].3U]!4D< <at> *$-?,#1?='AT7U]F=6YC=&EO;E]F<F5A9%]?;6%X
M7V)U9BD[#0H <at> ($-(14-+7U185%]215154DY%1%]35%))3D<[( T*("!-14%3
M55)%7U=)5$A?3D]?05)'("A#7S T7V)I;E]?9G5N8W1I;VY?9G)E861?7VUA
M>%]B=68I.PT*("!#2$5#2U]"24Y?4D5455).141?4U1224Y'.PT*#0H-"B-I
M9F1E9B!53DE87T5.5 <at> T*#0H <at> ($U%05-54D5?5TE42%].3U]!4D< <at> *%5N:7A?
M0U\P-5]T>'1?7VUM87 I.PT*("!#2$5#2U]46%1?4D5455).141?4U1224Y'
M.R -"B  <at> 345!4U5215]7251(7TY/7T%21R H56YI>%]#7S U7V)I;E]?;6UA
M<"D[#0H <at> ($-(14-+7T))3E]215154DY%1%]35%))3D<[#0H-"B-E;F1I9 <at> T*
M#0H <at> ($U%05-54D5?5TE42%].3U]!4D< <at> *$-04%\P,5]T>'1?7V]P97)A=&]R
M7VEN*3L-"B  <at> 0TA%0TM?5%A47U)%5%523D5$7U-44DE.1SL <at> #0H <at> ($U%05-5
M4D5?5TE42%].3U]!4D< <at> *$-04%\P,5]B:6Y?7V]P97)A=&]R7VEN*3L-"B  <at> 
M0TA%0TM?0DE.7U)%5%523D5$7U-44DE.1SL-" <at> T*("!-14%355)%7U=)5$A?
M3D]?05)'("A#4%!?,#)?='AT7U]M971H;V1?<V)U;7!C*3L-"B  <at> 0TA%0TM?
M5%A47U)%5%523D5$7U-44DE.1SL <at> #0H <at> ($U%05-54D5?5TE42%].3U]!4D< <at> 
M*$-04%\P,E]B:6Y?7VUE=&AO9%]S8G5M<&,I.PT*("!#2$5#2U]"24Y?4D54
M55).141?4U1224Y'.PT*#0H <at> ($U%05-54D5?5TE42%].3U]!4D< <at> *$-04%\P
M,U]T>'1?7VUE=&AO9%]S8G5M<&-?7V]P7V]U="D[#0H <at> ($-(14-+7U185%]2
M15154DY%1%]35%))3D<[( T*("!-14%355)%7U=)5$A?3D]?05)'("A#4%!?
M,#-?8FEN7U]M971H;V1?<V)U;7!C7U]O<%]O=70I.PT*("!#2$5#2U]"24Y?
M4D5455).141?4U1224Y'.PT*#0H <at> ($U%05-54D5?5TE42%].3U]!4D< <at> *$-0
M4%\P-%]T>'1?7VUE=&AO9%]R9&)U9E]?;W!?;W5T*3L-"B  <at> 0TA%0TM?5%A4
M7U)%5%523D5$7U-44DE.1SL <at> #0H <at> ($U%05-54D5?5TE42%].3U]!4D< <at> *$-0
M4%\P-%]B:6Y?7VUE=&AO9%]R9&)U9E]?;W!?;W5T*3L-"B  <at> 0TA%0TM?0DE.
M7U)%5%523D5$7U-44DE.1SL-" <at> T*("!-14%355)%7U=)5$A?3D]?05)'("A#
M4%!?,#5?='AT7U]M971H;V1S7V-P<%]R96%D7W=R:71E7U]C;VYS=%]B=68I
M.PT*("!#2$5#2U]46%1?4D5455).141?4U1224Y'.R -"B  <at> 345!4U5215]7
M251(7TY/7T%21R H0U!07S U7V)I;E]?;65T:&]D<U]C<'!?<F5A9%]W<FET
M95]?8V]N<W1?8G5F*3L-"B  <at> 0TA%0TM?0DE.7U)%5%523D5$7U-44DE.1SL-
M" <at> T*("!-14%355)%7U=)5$A?3D]?05)'("A#4%!?,#9?='AT7U]M971H;V1S
M7V-P<%]R96%D7W=R:71E7V]S<U]?8V]N<W1?8G5F*3L-"B  <at> 0TA%0TM?5%A4
M7U)%5%523D5$7U-44DE.1SL <at> #0H <at> ($U%05-54D5?5TE42%].3U]!4D< <at> *$-0
M4%\P-E]B:6Y?7VUE=&AO9'-?8W!P7W)E861?=W)I=&5?;W-S7U]C;VYS=%]B
M=68I.PT*("!#2$5#2U]"24Y?4D5455).141?4U1224Y'.PT*#0H <at> ($U%05-5
M4D5?5TE42%].3U]!4D< <at> *$-04%\P-U]T>'1?7VUE=&AO9'-?8W!P7W)E861S
M;VUE7W=R:71E7U]C;VYS=%]B=68I.PT*("!#2$5#2U]46%1?4D5455).141?
M4U1224Y'.R -"B  <at> 345!4U5215]7251(7TY/7T%21R H0U!07S W7V)I;E]?
M;65T:&]D<U]C<'!?<F5A9'-O;65?=W)I=&5?7V-O;G-T7V)U9BD[#0H <at> ($-(
M14-+7T))3E]215154DY%1%]35%))3D<[#0H-"B  <at> 345!4U5215]7251(7TY/
M7T%21R H0U!07S X7W1X=%]?;65T:&]D<U]C<'!?<F5A9%]W<FET95]?;6%X
M7V)U9BD[#0H <at> ($-(14-+7U185%]215154DY%1%]35%))3D<[( T*("!-14%3
M55)%7U=)5$A?3D]?05)'("A#4%!?,#A?8FEN7U]M971H;V1S7V-P<%]R96%D
M7W=R:71E7U]M87A?8G5F*3L-"B  <at> 0TA%0TM?0DE.7U)%5%523D5$7U-44DE.
M1SL-" <at> T*("!-14%355)%7U=)5$A?3D]?05)'("A#4%!?,#E?='AT7U]F=6YC
M=&EO;E]G971L:6YE7U]O<W1R:6YG<W1R96%M*3L-"B  <at> 0TA%0TM?5%A47U)%
M5%523D5$7U-44DE.1SL <at> #0H <at> ($U%05-54D5?5TE42%].3U]!4D< <at> *$-04%\P
M.5]B:6Y?7V9U;F-T:6]N7V=E=&QI;F5?7V]S=')I;F=S=')E86TI.PT*("!#
M2$5#2U]"24Y?4D5455).141?4U1224Y'.PT*#0H <at> ($U%05-54D5?5TE42%].
M3U]!4D< <at> *$-04%\Q,%]T>'1?7V9U;F-T:6]N7V=E=&QI;F5?7W-T<FEN9RD[
M#0H <at> ($-(14-+7U185%]215154DY%1%]35%))3D<[( T*("!-14%355)%7U=)
M5$A?3D]?05)'("A#4%!?,3!?8FEN7U]F=6YC=&EO;E]G971L:6YE7U]S=')I
M;F<I.PT*("!#2$5#2U]"24Y?4D5455).141?4U1224Y'.PT*#0H <at> ($U%05-5
M4D5?5TE42%].3U]!4D< <at> *$-04%\Q,5]T>'1?7VUE=&AO9%]I9G-T<F5A;5]G
M971L:6YE*3L-"B  <at> 0TA%0TM?5%A47U)%5%523D5$7U-44DE.1SL <at> #0H <at> ($U%
M05-54D5?5TE42%].3U]!4D< <at> *$-04%\Q,5]B:6Y?7VUE=&AO9%]I9G-T<F5A
M;5]G971L:6YE*3L-"B  <at> 0TA%0TM?0DE.7U)%5%523D5$7U-44DE.1SL-" <at> T*
M("!-14%355)%7U=)5$A?3D]?05)'("A#4%!?,3)?='AT7U]M971H;V1S7VEF
M<W1R96%M7V=E=%]P=70I.PT*("!#2$5#2U]46%1?4D5455).141?4U1224Y'
M.R -"B  <at> 345!4U5215]7251(7TY/7T%21R H0U!07S$R7V)I;E]?;65T:&]D
M<U]I9G-T<F5A;5]G971?<'5T*3L-"B  <at> 0TA%0TM?0DE.7U)%5%523D5$7U-4
M4DE.1SL-" <at> T*("!-14%355)%7U=)5$A?3D]?05)'("A#4%!?,3-?='AT7U]M
M971H;V1?:69S=')E86U?9V5T*3L-"B  <at> 0TA%0TM?5%A47U)%5%523D5$7U-4
M4DE.1SL <at> #0H <at> ($U%05-54D5?5TE42%].3U]!4D< <at> *$-04%\Q,U]B:6Y?7VUE
M=&AO9%]I9G-T<F5A;5]G970I.PT*("!#2$5#2U]"24Y?4D5455).141?4U12
M24Y'.PT*#0H <at> ($U%05-54D5?5TE42%].3U]!4D< <at> *$-04%\Q-%]T>'1?7VUE
M=&AO9%]I9G-T<F5A;5]G971?7V-O;G-T7V)U9BD[#0H <at> ($-(14-+7U185%]2
M15154DY%1%]35%))3D<[( T*("!-14%355)%7U=)5$A?3D]?05)'("A#4%!?
M,31?8FEN7U]M971H;V1?:69S=')E86U?9V5T7U]C;VYS=%]B=68I.PT*("!#
M2$5#2U]"24Y?4D5455).141?4U1224Y'.PT*#0H <at> ($U%05-54D5?5TE42%].
M3U]!4D< <at> *$-04%\Q-5]T>'1?7VUE=&AO9%]I9G-T<F5A;5]G971?7W-T<F5A
M;6)U9BD[#0H <at> ($-(14-+7U185%]215154DY%1%]35%))3D<[( T*("!-14%3
M55)%7U=)5$A?3D]?05)'("A#4%!?,35?8FEN7U]M971H;V1?:69S=')E86U?
M9V5T7U]S=')E86UB=68I.PT*("!#2$5#2U]"24Y?4D5455).141?4U1224Y'
M.PT*#0H <at> ($U%05-54D5?5TE42%].3U]!4D< <at> *$-04%\Q-E]T>'1?7VEO<W1R
M96%M7VET97)A=&]R<U]?8V]P>2D[#0H <at> ($-(14-+7U185%]215154DY%1%]3
M5%))3D<[( T*("!-14%355)%7U=)5$A?3D]?05)'("A#4%!?,39?8FEN7U]I
M;W-T<F5A;5]I=&5R871O<G-?7V-O<'DI.PT*("!#2$5#2U]"24Y?4D5455).
M141?4U1224Y'.PT*#0H <at> ($U%05-54D5?5TE42%].3U]!4D< <at> *$-04%\Q-U]T
M>'1?7VEO<W1R96%M7VET97)A=&]R<U]?<W1R:6YG*3L-"B  <at> 0TA%0TM?5%A4
M7U)%5%523D5$7U-44DE.1SL <at> #0H <at> ($U%05-54D5?5TE42%].3U]!4D< <at> *$-0
M4%\Q-U]B:6Y?7VEO<W1R96%M7VET97)A=&]R<U]?<W1R:6YG*3L-"B  <at> 0TA%
M0TM?0DE.7U)%5%523D5$7U-44DE.1SL-" <at> T*("!-14%355)%7U=)5$A?3D]?
M05)'("A#4%!?,3A?='AT7U]I;W-T<F5A;6)U9E]I=&5R871O<G-?7V-O<'DI
M.PT*("!#2$5#2U]46%1?4D5455).141?4U1224Y'.R -"B  <at> 345!4U5215]7
M251(7TY/7T%21R H0U!07S$X7V)I;E]?:6]S=')E86UB=69?:71E<F%T;W)S
M7U]C;W!Y*3L-"B  <at> 0TA%0TM?0DE.7U)%5%523D5$7U-44DE.1SL-" <at> T*("!-
M14%355)%7U=)5$A?3D]?05)'("A#4%!?,3E?='AT7U]I;W-T<F5A;6)U9E]I
M=&5R871O<G-?7W1R86YS9F]R;2D[#0H <at> ($-(14-+7U185%]215154DY%1%]3
M5%))3D<[( T*("!-14%355)%7U=)5$A?3D]?05)'("A#4%!?,3E?8FEN7U]I
M;W-T<F5A;6)U9E]I=&5R871O<G-?7W1R86YS9F]R;2D[#0H <at> ($-(14-+7T))
M3E]215154DY%1%]35%))3D<[#0H-"B  <at> 345!4U5215]7251(7TY/7T%21R H
M0U!07S(P7W1X=%]?:6]S=')E86UB=69?:71E<F%T;W)S7U]S=')I;F<I.PT*
M("!#2$5#2U]46%1?4D5455).141?4U1224Y'.R -"B  <at> 345!4U5215]7251(
M7TY/7T%21R H0U!07S(P7V)I;E]?:6]S=')E86UB=69?:71E<F%T;W)S7U]S
M=')I;F<I.PT*("!#2$5#2U]"24Y?4D5455).141?4U1224Y'.PT*#0H <at> ($U%
M05-54D5?5TE42%].3U]!4D< <at> *$-04%\R,5]T>'1?7W9E8W1O<E]?8V]P>2D[
M#0H <at> ($-(14-+7U185%]215154DY%1%]35%))3D<[( T*("!-14%355)%7U=)
M5$A?3D]?05)'("A#4%!?,C%?8FEN7U]V96-T;W)?7V-O<'DI.PT*("!#2$5#
M2U]"24Y?4D5455).141?4U1224Y'.PT*#0H <at> ($U%05-54D5?5TE42%].3U]!
M4D< <at> *$-04%\R,E]T>'1?7W9E8W1O<E]P=7-H7V)A8VLI.PT*("!#2$5#2U]4
M6%1?4D5455).141?4U1224Y'.R -"B  <at> 345!4U5215]7251(7TY/7T%21R H
M0U!07S(R7V)I;E]?=F5C=&]R7W!U<VA?8F%C:RD[#0H <at> ($-(14-+7T))3E]2
M15154DY%1%]35%))3D<[#0H-"B  <at> 345!4U5215]7251(7TY/7T%21R H0U!0
M7S(S7W1X=%]?=F5C=&]R7U]C<'!?<F5A9"D[#0H <at> ($-(14-+7U185%]21515
M4DY%1%]35%))3D<[( T*("!-14%355)%7U=)5$A?3D]?05)'("A#4%!?,C-?
M8FEN7U]V96-T;W)?7V-P<%]R96%D*3L-"B  <at> 0TA%0TM?0DE.7U)%5%523D5$
M7U-44DE.1SL-" <at> T*("!-14%355)%7U=)5$A?3D]?05)'("A#4%!?,C1?='AT
M7U]S=')I;F=?7V-P<%]R96%D*3L-"B  <at> 0TA%0TM?5%A47U)%5%523D5$7U-4
M4DE.1SL <at> #0H <at> ($U%05-54D5?5TE42%].3U]!4D< <at> *$-04%\R-%]B:6Y?7W-T
M<FEN9U]?8W!P7W)E860I.PT*("!#2$5#2U]"24Y?4D5455).141?4U1224Y'
M.PT*#0H-"B  <at> +R\ <at> +2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0T*
M(" O+R!C97)R(#P\(")<="  <at> ("  <at> 5&5S="TB(#P\('1E<W1?;F\ <at> /#P <at> (B!F
M:6YI<VAE9"( <at> /#P <at> 96YD;#L-" <at> T*(" O+R M+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+2TM+2TM+2TM#0H-"B  <at> 05-315)4("AM8G5F9F5R("$]($Y53$PI.PT*
M("!D96QE=&5;72!M8G5F9F5R.PT*("!M8G5F9F5R(#T <at> 3E5,3#L-" <at> T*("!F
M<U]T>'1?:6XN8VQE87(H*3L-"B  <at> 9G-?='AT7VEN+F-L;W-E*"D[#0H <at> ($%3
M4T525" H(69S7W1X=%]I;BYI<U]O<&5N*"DI.PT*#0H <at> (&9S7V)I;E]I;BYC
M;&5A<B <at> I.PT*("!F<U]B:6Y?:6XN8VQO<V4H*3L-"B  <at> 05-315)4(" <at> A9G-?
M8FEN7VEN+FES7V]P96XH*2D[#0H-" <at> T*:6YT(')C.PT*#0HC:69D968 <at> 54Y)
M6%]%3E8-" <at> T*("!R8R ](&-L;W-E("AF9%]T>'1?:6XI.PT*("!!4U-%4E0 <at> 
M*')C(#T](# I.PT*#0H <at> (')C(#T <at> 8VQO<V4 <at> *&9D7V)I;E]I;BD[#0H <at> ($%3
M4T525" H<F, <at> /3T <at> ,"D[#0H-"B-E;F1I9 <at> T*#0H <at> (&-L96%R97)R*&9P7W1X
M=%]I;BD[#0H <at> (')C(#T <at> 9F-L;W-E*&9P7W1X=%]I;BD[#0H <at> ($%34T525" H
M<F, <at> /3T <at> ,"D[#0H-"B  <at> 8VQE87)E<G(H9G!?8FEN7VEN*3L-"B  <at> <F, <at> /2!F
M8VQO<V4H9G!?8FEN7VEN*3L-"B  <at> 05-315)4("AR8R ]/2 P*3L-" <at> T*#0H-
M"GT-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM#0IV;VED('-H;W< <at> *'5L;VYG(&YO7V]F
M7W1E<W1S*0T*>PT*8VQO8VM?="!U;FET<SL-"F-L;V-K7W0 <at> <W5M.PT*(V1E
M9FEN92!42%)%4TA/3$0 <at> (# N, <at> T*8V]N<W0 <at> =6QO;F< <at> ("!T:')E<VAO;&0 <at> 
M/2!U;&]N9RAN;U]O9E]T97-T<R J(%1(4D532$],1"D[#0H-"B  <at> 05-315)4
M(" <at> H=&AR97-H;VQD("H <at> ,BD <at> /#T <at> ;F]?;V9?=&5S=',I.PT*#0H <at> (&-O=70 <at> 
M/#P <at> 96YD;#L-"B  <at> 05-315)4("AF;V]?;F%M97,N<VEZ92 <at> I(#T]('5S961?
M=&EM92YS:7IE*"DI.PT*#0H <at> (&9O<B H=6QO;F< <at> :2 ](# [(&D <at> /"!F;V]?
M;F%M97,N<VEZ92 <at> I.R!I*RLI#0H <at> ('L-"B  <at> ("!S=6T <at> /2 P.PT*("  <at> ($%3
M4T525" H;F]?;V9?=&5S=', <at> /3T <at> =7-E9%]T:6UE6VE=+G-I>F4H*2D[#0H <at> 
M("  <at> 9F]R("AU;&]N9R!K(#T <at> =&AR97-H;VQD.R!K(#P <at> *'5S961?=&EM95MI
M72YS:7IE*"D <at> +2!T:')E<VAO;&0I.R!K*RLI#0H <at> ("  <at> >PT*("  <at> ("  <at> <W5M
M("L]('5S961?=&EM95MI75MK73L-"B  <at> ("!]#0H <at> ("  <at> =6YI=', <at> /2!S=6TO
M*'5S961?=&EM95MI72YS:7IE*"D <at> +2 H=&AR97-H;VQD("H <at> ,BDI.PT*#0H <at> 
M("  <at> 8V]U=" \/"!S971W*&9O;U]S971W*0T*("  <at> ("  <at> ("  <at> /#P <at> <W1D.CIL
M969T#0H <at> ("  <at> ("  <at> (" \/"!F;V]?;F%M97-;:5T-"B  <at> ("  <at> ("  <at> (#P\("( <at> 
M.B B#0H <at> ("  <at> ("  <at> (" \/"!S971W*#8I#0H <at> ("  <at> ("  <at> (" \/"!S=&0Z.G)I
M9VAT#0H <at> ("  <at> ("  <at> (" \/"!U;FET<PT*("  <at> ("  <at> ("  <at> /#P <at> (B!U;FET<R(-
M"B  <at> ("  <at> ("  <at> (#P\("( <at> *"([#0H <at> ("  <at> 8V]U="YS971F*&EO<SHZ9FEX960L
M(&EO<SHZ9FQO871F:65L9"D[#0H <at> ("  <at> 8V]U=" \/"!S971P<F5C:7-I;VX <at> 
M*#,I#0H <at> ("  <at> ("  <at> (" \/" H9FQO870H=6YI=',I+V9L;V%T*$-,3T-+4U]0
M15)?4T5#*2D-"B  <at> ("  <at> ("  <at> (#P\("( <at> <V5C<RDB#0H <at> ("  <at> ("  <at> (" \/"!E
M;F1L.PT*("!]#0H-"GT-" <at> T*+R\ <at> +2TM+2TM+2TM+2TM#0IV;VED(')U;B H
M=6QO;F< <at> ;F]?;V9?<G5N<RP <at> =6QO;F< <at> ;F]?;V9?=&5S=',L('5L;VYG(&YO
M7V]F7W)E<&5T:71I;VYS*0T*>PT*("!F;W( <at> *'5L;VYG(&D <at> /2 P.R!I(#P <at> 
M;F]?;V9?<G5N<SL <at> :2LK*0T*("![#0H <at> ("  <at> <G5N7VYO(#T <at> :2 K(#$[#0H <at> 
M("  <at> 9F]O7VYA;65S+F-L96%R*"D[#0H <at> ("  <at> =7-E9%]T:6UE+F-L96%R*"D[
M#0H-"B  <at> (" O+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM#0H <at> ("  <at> 8V]U=" \
M/"!E;F1L(#P\(&5N9&P <at> /#P <at> (B  <at> (%)U;BTB(#P\("AI("L <at> ,2D <at> /#P <at> (B!O
M9B B(#P\(&YO7V]F7W)U;G, <at> /#P <at> (B Z(%-T87)T960 <at> (CL-"B  <at> ("!C;W5T
M+F9L=7-H*"D[#0H <at> ("  <at> 9F]R("AU;&]N9R!K(#T <at> ,#L <at> :R \(&YO7V]F7W1E
M<W1S.R!K*RLI( T*("  <at> ('L-"B  <at> ("  <at> ('1E<W1?;F\ <at> /2!K("L <at> ,3L-"B  <at> 
M("  <at> (&UE87-U<F4 <at> *&YO7V]F7W)E<&5T:71I;VYS*3L-"B  <at> ("!]#0H <at> ("  <at> 
M<VAO=R H;F]?;V9?=&5S=',I.PT*("  <at> (&-O=70 <at> /#P <at> (B  <at> (%)U;BTB(#P\
M("AI("L <at> ,2D <at> /#P <at> (B!O9B B(#P\(&YO7V]F7W)U;G, <at> /#P <at> (B Z($9I;FES
M:&5D(CP\(&5N9&P <at> /#P <at> 96YD;#L-"B  <at> ?0T*?0T*#0H-"B\O("TM+2TM+2TM
M+2TM+0T*:6YT(&UA:6XH:6YT(&%R9V,L(&-H87(J*B!A<F=V*0T*>PT*#0H <at> 
M(&-O=70 <at> /#P <at> 96YD;#L-"B  <at> 8V]U=" \/"!S=')I;F< <at> *'-T<FEN9R H4%)/
M1U)!35].04U%*2YS:7IE*"DL("<])RD <at> /#P <at> 96YD;#L-"B  <at> 8V]U=" \/"!0
M4D]'4D%-7TY!344 <at> /#P <at> 96YD;#L-"B  <at> 8V]U=" \/"!04D]'4D%-7U9%4E-)
M3TX <at> /#P <at> 96YD;#L-"B  <at> 8V]U=" \/"!S=')I;F< <at> *'-T<FEN9R H4%)/1U)!
M35].04U%*2YS:7IE*"DL("<])RD <at> /#P <at> 96YD;#L-"B  <at> +R\ <at> +2TM+2TM+2TM
M+2TM+2TM+2TM+2TM+2TM+2T-" <at> T*("!C;W5T(#P\(&5N9&P[#0H <at> (&-O=70 <at> 
M/#P <at> 96YD;#L-"B  <at> <VAO=U]C;VUP:6QE<E]I;F9O*"D[#0H-"B  <at> 8V]U=" \
M/"!E;F1L.PT*("!C;W5T(#P\(")<=%E/55( <at> 0T]-34%.1"!,24Y%(#H <at> (CL-
M"G-T<FEN9R!E>&5?;F%M92 H87)G=ELP72D[#0H <at> (&-O=70 <at> /#P <at> 97AE7VYA
M;64N<W5B<W1R("AE>&5?;F%M92YF:6YD7VQA<W1?;V8 <at> *"(O7%PB*2 K(#$I
M(#P\("( <at> (CL-"B  <at> 9F]R("AL;VYG(&D <at> /2 Q.R!I(#P <at> 87)G8SL <at> :2LK*2!C
M;W5T(#P\(&%R9W9;:5T <at> /#P <at> (B B.PT*("!C;W5T(#P\(&5N9&P[#0H <at> (&-O
M=70 <at> /#P <at> 96YD;#L-" <at> T*("!I9B H(2AA<F=C(#X](#0I*0T*("![#0H <at> ("  <at> 
M8V]U=" \/" B7'154T%'12 Z("(-"B  <at> ("  <at> ("  <at> (#P\(&%R9W9;,%T-"B  <at> 
M("  <at> ("  <at> (#P\("( <at> ( <at> T*("  <at> ("  <at> ("  <at> /#P <at> (CQ&:6QE('-I>F4^(#Q.;RX <at> 
M;V8 <at> =&5S=',^(#Q.;RX <at> ;V8 <at> <F5P971I=&EO;G,^(%L\3F\N(&]F(')U;G,^
M72(-"B  <at> ("  <at> ("  <at> (#P\(&5N9&P[#0H <at> ("  <at> <F5T=7)N(#$[#0H <at> ('T-"B  <at> 
M05-315)4("AA<F=C(#X](#0I.PT*#0H <at> ('5S97)?9&5F:6YE9%]F:6QE<VEZ
M92 ](&%T;VD <at> *&%R9W9;,5TI.PT*("!!4U-%4E0 <at> *'5S97)?9&5F:6YE9%]F
M:6QE<VEZ92 ^(# I.PT*#0IC;VYS="!U;&]N9R!N;U]O9E]T97-T<R H871O
M:2 H87)G=ELR72DI.PT*("!!4U-%4E0 <at> *&YO7V]F7W1E<W1S(#X <at> ,"D[#0H-
M"F-O;G-T('5L;VYG(&YO7V]F7W)E<&5T:71I;VYS("AA=&]I("AA<F=V6S-=
M*2D[#0H <at> ($%34T525" H;F]?;V9?<F5P971I=&EO;G, <at> /B P*3L-" <at> T*8V]N
M<W0 <at> =6QO;F< <at> ;F]?;V9?<G5N<R H*"AA<F=C(#X <at> -"D <at> /R!A=&]I("AA<F=V
M6S1=*2 Z(#$I*3L-"B  <at> 05-315)4("AN;U]O9E]R=6YS(#X <at> ,"D[#0H-"B  <at> 
M8V]U=" \/" B7'0C(R, <at> 1FEL92!S:7IE("  <at> ("  <at> ("  <at> ("  <at> (#H <at> (B \/"!U
M<V5R7V1E9FEN961?9FEL97-I>F4 <at> /#P <at> 96YD;#L-"B  <at> 8V]U=" \/" B7'0C
M(R, <at> 3G5M8F5R(&]F(')U;G, <at> ("  <at> ("  <at> (#H <at> (B \/"!N;U]O9E]R=6YS(#P\
M(&5N9&P[#0H <at> (&-O=70 <at> /#P <at> (EQT(R,C($YU;6)E<B!O9B!T97-T<R  <at> ("  <at> 
M(" Z("( <at> /#P <at> ;F]?;V9?=&5S=', <at> /#P <at> 96YD;#L-"B  <at> 8V]U=" \/" B7'0C
M(R, <at> 3G5M8F5R(&]F(')E<&5T:71I;VYS(#H <at> (B \/"!N;U]O9E]R97!E=&ET
M:6]N<R \/"!E;F1L.PT*("!C;W5T(#P\(")<=",C(R!#3$]#2U-?4$527U-%
M0R  <at> ("  <at> ("  <at> .B B(#P\($-,3T-+4U]015)?4T5#(#P\(&5N9&P[#0H <at> (&-O
M=70 <at> /#P <at> 96YD;#L-" <at> T*(" O+R M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM
M+2TM+0T*("!R=6X <at> *&YO7V]F7W)U;G,L(&YO7V]F7W1E<W1S+"!N;U]O9E]R
B97!E=&ET:6]N<RD[#0H-"B  <at> <F5T=7)N(# [#0H-"GT-" <at> ``
`
end




-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf

Gmane