zkSync Era Testnet

Contract

0x9F1d7c10f55b3c02941D9Ab3F121BA6F27365914

Overview

ETH Balance

0 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To

There are no matching entries

1 Internal Transaction found.

Latest 1 internal transaction

Parent Transaction Hash Block From To
46582052025-02-06 15:37:1646 days ago1738856236  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x9E2e514a...78B96244d
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Twitter

Compiler Version
v0.8.24+commit.e11b9ed9

ZkSolc Version
v1.5.11

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 1 : Twitter.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

contract Twitter {

  uint16 public MAX_TWEET_LENGTH = 280;
  uint8 public MIN_TWEET_LENGTH = 1;
  address public owner;

  constructor() {
    owner = msg.sender;
  }

  struct Tweet {
    uint256 id;
    address author;
    string content;
    uint256 timestamp;
  }

  struct Like {
    uint256 id;
    address author;
    uint256 timestamp;
  }

  struct Comment {
    uint256 id;
    address author;
    string content;
    uint256 timestamp;
  }

  mapping(uint256 => Tweet) public tweets;
  uint256[] public tweetIds;

  mapping(address => string) public userNames;

  mapping(uint256 => Like[]) public tweetLikes;
  mapping(uint256 => mapping(address => bool)) public tweetLikedBy;
  mapping(uint256 => mapping(address => uint256)) public tweetLikeIndex;

  mapping(uint256 => Comment[]) public tweetComments;
  mapping(uint256 => uint256) public commentToTweet;
  mapping(uint256 => uint256) public commentIndex;

  uint256 public tweetCounter = 1;
  uint256 public likeCounter = 1;
  uint256 public commentCounter = 1;

  event UserNameSet(address indexed user, string name);
  event TweetCreated(uint256 tweetId, address author, string content, uint256 timestamp);
  event TweetLiked(uint256 tweetId, address author, uint256 timestamp);
  event TweetUnliked(uint256 tweetId, address author, uint256 timestamp);
  event CommentCreated(uint256 tweetId, uint256 commentId, address author, string content, uint256 timestamp);
  event CommentDeleted(uint256 tweetId, uint256 commentId, address author, uint256 timestamp);
  event TweetDeleted(uint256 tweetId);

  modifier validTweetLength(string memory _tweet) {
    require(bytes(_tweet).length >= MIN_TWEET_LENGTH, "Tweet cannot be empty");
    require(bytes(_tweet).length <= MAX_TWEET_LENGTH, "Tweet cannot exceed 280 characters");
    _;
  }

  modifier onlyOwner() {
    require(msg.sender == owner, "Only owner can call this function");
    _;
  }

  function setUserName(string calldata _name) external {
    // Check any other user doesn't have the same name.
    require(bytes(userNames[msg.sender]).length == 0, "User name already set");
    for (uint256 i = 1; i < tweetCounter; i++) {
      if (keccak256(bytes(userNames[tweets[i].author])) == keccak256(bytes(_name))) {
        revert("Username already taken");
      }
    }

    userNames[msg.sender] = _name;
    emit UserNameSet(msg.sender, _name);
  }

  function getUserName(address _user) public view returns (string memory) {
    return userNames[_user];
  }

  function changeTweetMaxandMinLength(uint16 _maxTweetLength, uint8 _minTweetLength) public onlyOwner {
    MAX_TWEET_LENGTH = _maxTweetLength;
    MIN_TWEET_LENGTH = _minTweetLength;
  }

  function createTweet(string memory _tweet) public validTweetLength(_tweet) {
    uint256 currentTweetId = tweetCounter;
    tweets[currentTweetId] = Tweet({
        id: currentTweetId,
        author: msg.sender,
        content: _tweet,
        timestamp: block.timestamp
    });
    tweetIds.push(currentTweetId);
    tweetCounter++;

    emit TweetCreated(currentTweetId, msg.sender, _tweet, block.timestamp);
  }

  function getTweetOfSpecificUser(address _user) public view returns (Tweet[] memory) {
    uint256 count = 0;
    for (uint256 i = 0; i < tweetIds.length; i++) {
        if (tweets[tweetIds[i]].author == _user) {
            count++;
        }
    }
    Tweet[] memory userTweets = new Tweet[](count);
    uint256 index = 0;
    for (uint256 i = 0; i < tweetIds.length; i++) {
        if (tweets[tweetIds[i]].author == _user) {
            userTweets[index] = tweets[tweetIds[i]];
            index++;
        }
    }
    return userTweets;
  }

  function getPaginatedTweetIds(uint256 page, uint256 pageSize) public view returns (uint256[] memory) {
    uint256 totalTweets = tweetIds.length;
    if (totalTweets == 0) return new uint256[](0);

    // Adjust 'page' so that the first page starts from 1 (not 0)
    uint256 start = (page - 1) * pageSize;

    // If the start index exceeds the total tweet count, return empty array
    if (start >= totalTweets) return new uint256[](0);

    uint256 end = start + pageSize;
    
    // Make sure the 'end' doesn't go beyond the available tweets
    if (end > totalTweets) {
        end = totalTweets;
    }

    // Calculate the actual number of tweets to return
    uint256 count = end - start;

    // Allocate memory for the paginated IDs array
    uint256[] memory paginatedIds = new uint256[](count);

    // Copy the tweet IDs from the correct indices
    for (uint256 i = 0; i < count; i++) {
        paginatedIds[i] = tweetIds[start + i];
    }

    return paginatedIds;
  }

  function getTweetDetails(uint256 _tweetId)
      public
      view
      returns (
          uint256,
          address,
          string memory,
          uint256,
          uint256,
          uint256
      )
  {
    require(_tweetId > 0 && _tweetId < tweetCounter, "Tweet not found");
    Tweet memory tweet = tweets[_tweetId];
    uint256 likesCount = tweetLikes[_tweetId].length;
    uint256 commentsCount = tweetComments[_tweetId].length;
    return (tweet.id, tweet.author, tweet.content, tweet.timestamp, likesCount, commentsCount);
  }

  function getTweetLikes(uint256 _tweetId)
      public
      view
      returns (
          uint256[] memory,
          address[] memory,
          uint256[] memory
      )
  {
    require(_tweetId > 0 && _tweetId < tweetCounter, "Tweet not found");
    uint256 likeCount = tweetLikes[_tweetId].length;
    uint256[] memory ids = new uint256[](likeCount);
    address[] memory authors = new address[](likeCount);
    uint256[] memory timestamps = new uint256[](likeCount);

    for (uint256 i = 0; i < likeCount; i++) {
        Like memory likeItem = tweetLikes[_tweetId][i];
        ids[i] = likeItem.id;
        authors[i] = likeItem.author;
        timestamps[i] = likeItem.timestamp;
    }

    return (ids, authors, timestamps);
  }

  function getRandomCommentIds(uint256 _tweetId, uint256 count) public view returns (uint256[] memory) {
    require(_tweetId > 0 && _tweetId < tweetCounter, "Tweet not found");
    uint256 totalComments = tweetComments[_tweetId].length;
    if (totalComments == 0) return new uint256[](0);
    if (count > totalComments) count = totalComments;

    uint256[] memory ids = new uint256[](totalComments);
    for (uint256 i = 0; i < totalComments; i++) {
        ids[i] = tweetComments[_tweetId][i].id;
    }
    // Fisher-Yates shuffle.
    for (uint256 i = totalComments - 1; i > 0; i--) {
        uint256 j = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender, i))) % (i + 1);
        (ids[i], ids[j]) = (ids[j], ids[i]);
    }
    uint256[] memory selectedIds = new uint256[](count);
    for (uint256 i = 0; i < count; i++) {
        selectedIds[i] = ids[i];
    }
    return selectedIds;
  }

  function getCommentDetails(uint256 _commentId) public view returns (uint256, address, string memory, uint256) {
      require(_commentId > 0 && _commentId < commentCounter, "Comment not found");
      uint256 tweetIdOfComment = commentToTweet[_commentId];
      uint256 index = commentIndex[_commentId];
      Comment memory comment = tweetComments[tweetIdOfComment][index];
      return (comment.id, comment.author, comment.content, comment.timestamp);
  }

  function likeTweet(uint256 _tweetId) external {
    require(_tweetId > 0 && _tweetId < tweetCounter, "Tweet does not exist");
    require(!tweetLikedBy[_tweetId][msg.sender], "User has already liked this tweet");

    uint256 currentLikeId = likeCounter;
    tweetLikes[_tweetId].push(Like({
        id: currentLikeId,
        author: msg.sender,
        timestamp: block.timestamp
    }));
    // Save the index of the like.
    tweetLikeIndex[_tweetId][msg.sender] = tweetLikes[_tweetId].length - 1;
    tweetLikedBy[_tweetId][msg.sender] = true;
    likeCounter++;

    emit TweetLiked(_tweetId, msg.sender, block.timestamp);
  }

  function unlikeTweet(uint256 _tweetId) external {
    require(_tweetId > 0 && _tweetId < tweetCounter, "Tweet does not exist");
    require(tweetLikedBy[_tweetId][msg.sender], "User hasn't liked this tweet");

    uint256 index = tweetLikeIndex[_tweetId][msg.sender];
    uint256 lastIndex = tweetLikes[_tweetId].length - 1;
    if (index != lastIndex) {
        Like memory lastLike = tweetLikes[_tweetId][lastIndex];
        tweetLikes[_tweetId][index] = lastLike;
        tweetLikeIndex[_tweetId][lastLike.author] = index;
    }
    tweetLikes[_tweetId].pop();
    tweetLikedBy[_tweetId][msg.sender] = false;
    delete tweetLikeIndex[_tweetId][msg.sender];

    emit TweetUnliked(_tweetId, msg.sender, block.timestamp);
  }

  function commentOnTweet(uint256 _tweetId, string memory _comment) external {
    require(_tweetId > 0 && _tweetId < tweetCounter, "Tweet does not exist");

    uint256 currentCommentId = commentCounter;
    tweetComments[_tweetId].push(Comment({
        id: currentCommentId,
        author: msg.sender,
        content: _comment,
        timestamp: block.timestamp
    }));
    // Save lookup info for the comment.
    commentToTweet[currentCommentId] = _tweetId;
    commentIndex[currentCommentId] = tweetComments[_tweetId].length - 1;
    commentCounter++;

    emit CommentCreated(_tweetId, currentCommentId, msg.sender, _comment, block.timestamp);
  }

  function deleteComment(uint256 _commentId) external {
    require(_commentId > 0 && _commentId < commentCounter, "Comment does not exist");
    uint256 tweetIdOfComment = commentToTweet[_commentId];
    uint256 index = commentIndex[_commentId];
    require(tweetComments[tweetIdOfComment][index].author == msg.sender, "Not the comment owner");

    uint256 lastIndex = tweetComments[tweetIdOfComment].length - 1;
    if (index != lastIndex) {
        Comment memory lastComment = tweetComments[tweetIdOfComment][lastIndex];
        tweetComments[tweetIdOfComment][index] = lastComment;
        commentIndex[lastComment.id] = index;
    }
    tweetComments[tweetIdOfComment].pop();
    // Clean up lookup mappings.
    delete commentToTweet[_commentId];
    delete commentIndex[_commentId];

    emit CommentDeleted(tweetIdOfComment, _commentId, msg.sender, block.timestamp);
  }

  function deleteTweet(uint256 _tweetId) public {
    require(_tweetId > 0 && _tweetId < tweetCounter, "Tweet does not exist");
    require(tweets[_tweetId].author == msg.sender, "You can't delete this tweet");

    // Optional: Clean up associated likes and comments.
    delete tweetLikes[_tweetId];
    delete tweetComments[_tweetId];

    // Remove the tweet from the tweets mapping.
    delete tweets[_tweetId];

    // Remove _tweetId from tweetIds array via swap-pop.
    uint256 length = tweetIds.length;
    for (uint256 i = 0; i < length; i++) {
        if (tweetIds[i] == _tweetId) {
            tweetIds[i] = tweetIds[length - 1];
            tweetIds.pop();
            break;
        }
    }

    emit TweetDeleted(_tweetId);
  }
}

Settings
{
  "viaIR": true,
  "evmVersion": "paris",
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": false,
  "libraries": {}
}

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tweetId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"commentId","type":"uint256"},{"indexed":false,"internalType":"address","name":"author","type":"address"},{"indexed":false,"internalType":"string","name":"content","type":"string"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"CommentCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tweetId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"commentId","type":"uint256"},{"indexed":false,"internalType":"address","name":"author","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"CommentDeleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tweetId","type":"uint256"},{"indexed":false,"internalType":"address","name":"author","type":"address"},{"indexed":false,"internalType":"string","name":"content","type":"string"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TweetCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tweetId","type":"uint256"}],"name":"TweetDeleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tweetId","type":"uint256"},{"indexed":false,"internalType":"address","name":"author","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TweetLiked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tweetId","type":"uint256"},{"indexed":false,"internalType":"address","name":"author","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TweetUnliked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"string","name":"name","type":"string"}],"name":"UserNameSet","type":"event"},{"inputs":[],"name":"MAX_TWEET_LENGTH","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_TWEET_LENGTH","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxTweetLength","type":"uint16"},{"internalType":"uint8","name":"_minTweetLength","type":"uint8"}],"name":"changeTweetMaxandMinLength","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"commentCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"commentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tweetId","type":"uint256"},{"internalType":"string","name":"_comment","type":"string"}],"name":"commentOnTweet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"commentToTweet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_tweet","type":"string"}],"name":"createTweet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_commentId","type":"uint256"}],"name":"deleteComment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tweetId","type":"uint256"}],"name":"deleteTweet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_commentId","type":"uint256"}],"name":"getCommentDetails","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"page","type":"uint256"},{"internalType":"uint256","name":"pageSize","type":"uint256"}],"name":"getPaginatedTweetIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tweetId","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"getRandomCommentIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tweetId","type":"uint256"}],"name":"getTweetDetails","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tweetId","type":"uint256"}],"name":"getTweetLikes","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getTweetOfSpecificUser","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"author","type":"address"},{"internalType":"string","name":"content","type":"string"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"internalType":"struct Twitter.Tweet[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getUserName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"likeCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tweetId","type":"uint256"}],"name":"likeTweet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"setUserName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"tweetComments","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"author","type":"address"},{"internalType":"string","name":"content","type":"string"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tweetCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tweetIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"tweetLikeIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"tweetLikedBy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"tweetLikes","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"author","type":"address"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tweets","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"author","type":"address"},{"internalType":"string","name":"content","type":"string"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tweetId","type":"uint256"}],"name":"unlikeTweet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

Deployed Bytecode

0x0002000000000002000e000000000002000100000001035500000060031002700000045c0030019d000000800f0000390000004000f0043f0000000100200190000000b20000c13d0000045c02300197000000040020008c00000ec00000413d000000000301043b000000e003300270000004610030009c000000c90000213d000004770030009c000000dd0000a13d000004780030009c0000015c0000213d0000047e0030009c000002780000213d000004810030009c000004bc0000613d000004820030009c00000ec00000c13d000000240020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000000401100370000000000201043b000000000002004b000004b20000613d0000000a01000039000000000101041a000000000012004b000004b20000813d000a00000002001d000000000020043f0000000101000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000101100039000000000101041a0000048c011001970000000002000411000000000021004b000008360000c13d0000000a01000029000000000010043f0000000401000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a000000000001041b000000000002004b00000b8b0000c13d0000000a01000029000000000010043f0000000701000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a000000000001041b000e00000002001d000000000002004b00000c280000c13d0000000a01000029000000000010043f0000000101000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000201043b000000000002041b0000000101200039000000000001041b000d00000002001d0000000201200039000c00000001001d000000000101041a000000010010019000000001021002700000007f0220618f000e00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005a40000c13d0000000e0000006b000000a00000613d0000000e010000290000001f0010008c0000009e0000a13d0000000c01000029000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000e020000290000001f02200039000000050220027000000000022100190000000103100039000000000023004b0000009b0000813d000000000003041b0000000103300039000000000023004b000000970000413d0000000c02000029000000000002041b000c00000001001d0000000c01000029000000000001041b0000000d010000290000000301100039000000000001041b0000000201000039000000000201041a000000000002004b0000000a0600002900000e610000613d000000000010043f00000000030000190000048e0430009a000000000504041a000000000065004b00000dfc0000613d0000000103300039000000000023004b000000aa0000413d00000e610000013d0000000001000416000000000001004b00000ec00000c13d000000000100041a00000001020000390000000a03000039000000000023041b0000000b03000039000000000023041b0000000c03000039000000000023041b0000045d01100197000000000200041100000018022002100000045e02200197000000000121019f0000045f011001c7000000000010041b00000020010000390000010000100443000001200000044300000460010000410000116c0001042e000004620030009c000001020000a13d000004630030009c000001930000213d000004690030009c000003680000213d0000046c0030009c000004c50000613d0000046d0030009c00000ec00000c13d000000240020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000000401100370000000000101043b000000000010043f0000000901000039000007990000013d000004830030009c000001e20000a13d000004840030009c000002290000213d000004870030009c000004c80000613d000004880030009c00000ec00000c13d000000440020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000002402100370000000000202043b000e00000002001d0000000401100370000000000101043b000000000010043f0000000701000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a0000000e0020006b00000ec00000813d0000000e02000029116b0efa0000040f000003790000013d0000046e0030009c0000021a0000a13d0000046f0030009c000002590000213d000004720030009c000004cd0000613d000004730030009c00000ec00000c13d000000240020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000000401100370000000000201043b000000000002004b0000000001000019000001190000613d0000000a01000039000000000101041a000000000012004b00000000010000390000000101004039000000010110018f000e00000002001d116b0f9f0000040f0000000e01000029000000000010043f0000000101000039000000200010043f00000040020000390000000001000019116b114c0000040f116b10e50000040f0000000e02000029000000000020043f0000000402000039000000200020043f000b00000001001d00000000010000190000004002000039116b114c0000040f000000000101041a000e00000001001d0000000701000039000000200010043f00000000010000190000004002000039116b114c0000040f0000000b0300002900000060023000390000000002020433000d00000002001d000000000101041a000c00000001001d00000040013000390000000001010433000000200230003900000000030304330000000002020433000000c004000039000000400600043d000b00000006001d000000400560003900000000004504350000048c02200197000000200460003900000000002404350000000000360435000000c002600039116b0f630000040f0000000b04000029000000a0024000390000000c03000029000000000032043500000080024000390000000e03000029000000000032043500000060024000390000000d03000029000000000032043500000000014100490000045c0010009c0000045c010080410000045c0040009c0000045c0400804100000060011002100000004002400210000000000121019f0000116c0001042e000004790030009c0000038f0000213d0000047c0030009c000004d20000613d0000047d0030009c00000ec00000c13d000000240020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000000401100370000000000101043b000000000001004b000007ab0000613d0000000c02000039000000000202041a000000000021004b000007ab0000813d000000000010043f0000000801000039000000200010043f00000040020000390000000001000019116b114c0000040f000000000101041a000d00000001001d0000000901000039000000200010043f00000000010000190000004002000039116b114c0000040f000000000101041a000e00000001001d0000000d01000029000000000010043f0000000701000039000000200010043f00000000010000190000004002000039116b114c0000040f0000000e02000029116b0efa0000040f116b10e50000040f000000400210003900000000040204330000006002100039000000000502043300000000120104340000000003010433000000400100043d000e00000001001d0000048c03300197116b0f750000040f0000051e0000013d000004640030009c000004960000213d000004670030009c000004da0000613d000004680030009c00000ec00000c13d000000240020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000000401100370000000000101043b000d00000001001d0000048c0010009c00000ec00000213d0000000201000039000000000101041a000c00000001001d000000000001004b0000000001000019000007c70000c13d000000000401001900000005011002100000003f0210003900000491032001970000000002f30019000000000032004b00000000030000390000000103004039000004900020009c000008440000213d0000000100300190000008440000c13d000000400020043f00000000024f0436000800000002001d000000000004004b000001cd0000613d00000060020000390000000003000019000000400400043d000004920040009c000008440000213d0000008005400039000000400050043f000000400540003900000000002504350000006005400039000000000005043500000020054000390000000000050435000000000004043500000020033000390000000005f300190000000000450435000000000013004b000001bc0000413d0000000c0000006b0000084a0000c13d000000400100043d0000002002000039000000000321043600000000020f04330000000000230435000000400310003900000005042002100000000004340019000000000002004b00000b5f0000c13d00000000021400490000045c0020009c0000045c0200804100000060022002100000045c0010009c0000045c010080410000004001100210000000000112019f0000116c0001042e000004890030009c000004f90000613d0000048a0030009c000005280000613d0000048b0030009c00000ec00000c13d000000240020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000000401100370000000000201043b000000000002004b000004b20000613d0000000a01000039000000000101041a000000000012004b000004b20000813d000e00000002001d000000000020043f0000000501000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000101041a000000ff00100190000008ec0000c13d000000400100043d0000004402100039000004c203000041000000000032043500000024021000390000001c0300003900000bad0000013d000004740030009c000005400000613d000004750030009c000005560000613d000004760030009c00000ec00000c13d0000000001000416000000000001004b00000ec00000c13d000000000100041a00000018011002700000048c01100197000000800010043f0000048d010000410000116c0001042e000004850030009c000005760000613d000004860030009c00000ec00000c13d000000440020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000002402100370000000000202043b000800000002001d0000000401100370000000000201043b000000000002004b000007a10000613d0000000a01000039000000000101041a000000000021004b000007a10000a13d000a00000002001d000000000020043f0000000701000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a000000000002004b0000083d0000c13d000000400100043d000004b60010009c000008440000213d0000002002100039000000400020043f0000000000010435000000400300043d000e00000003001d000000200200003900000000022304360000056b0000013d000004700030009c000005aa0000613d000004710030009c00000ec00000c13d000000440020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000000402100370000000000202043b0000ffff0020008c00000ec00000213d0000002401100370000000000101043b000000ff0010008c00000ec00000213d000000000300041a00000018043002700000048c044001970000000005000411000000000045004b000008240000c13d0000049a0330019700000010011002100000049b01100197000000000131019f000000000121019f000000000010041b00000000010000190000116c0001042e0000047f0030009c000005af0000613d000004800030009c00000ec00000c13d000000240020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000000401100370000000000201043b000000000002004b000004b20000613d0000000a01000039000000000101041a000000000012004b000004b20000813d000e00000002001d000000000020043f0000000501000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000101041a000000ff00100190000009a60000c13d0000000b01000039000000000101041a000d00000001001d0000000e01000029000000000010043f0000000401000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000b00000001001d000000400100043d000c00000001001d000004950010009c000008440000213d0000000c020000290000006001200039000000400010043f0000000d0100002900000000021204360000000001000411000d00000002001d00000000001204350000049e01000041000000000010044300000000010004140000045c0010009c0000045c01008041000000c0011002100000049f011001c70000800b02000039116b11660000040f000000010020019000000d0d0000613d000000000101043b0000000c020000290000004002200039000800000001001d000900000002001d00000000001204350000000b01000029000000000101041a000a00000001001d000004900010009c000008440000213d0000000a0100002900000001011000390000000b02000029000000000012041b000000000020043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d0000000a0200002900000003022000c9000000000101043b00000000012100190000000c020000290000000002020433000000000021041b0000000102100039000000000302041a000004ad033001970000000d0400002900000000040404330000048c04400197000000000343019f000000000032041b000000020110003900000009020000290000000002020433000000000021041b0000000e01000029000000000010043f0000000401000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000101041a000d00000001001d000000000001004b000007c10000613d0000000e01000029000000000010043f0000000601000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d0000000d02000029000000010220008a000000000101043b000000000021041b0000000e01000029000000000010043f0000000501000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a000004c40220019700000001022001bf000000000021041b0000000b01000039000000000101041a000000010110003a000007c10000613d0000000b02000039000000000012041b000000400100043d00000040021000390000000803000029000000000032043500000000020004110000048c02200197000000200310003900000000002304350000000e0200002900000000002104350000045c0010009c0000045c01008041000000400110021000000000020004140000045c0020009c0000045c02008041000000c002200210000000000112019f000004ae011001c70000800d020000390000000103000039000004af0400004100000e6f0000013d0000046a0030009c000006a60000613d0000046b0030009c00000ec00000c13d000000240020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000000401100370000000000101043b000000000010043f0000000101000039000000200010043f00000040020000390000000001000019116b114c0000040f0000000002010019000c00000001001d0000000101100039000000000101041a000d00000001001d000000000102041a000e00000001001d0000000201200039116b0f160000040f0000000c020000290000000302200039000000000502041a0000000004010019000000400200043d000c00000002001d0000000d010000290000048c0310019700000000010200190000000e02000029116b0f750000040f0000000c020000290000056d0000013d0000047a0030009c000007400000613d0000047b0030009c00000ec00000c13d000000240020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000000401100370000000000201043b000000000002004b000007b50000613d0000000c01000039000000000101041a000000000012004b000007b50000813d000e00000002001d000000000020043f0000000801000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000101041a000d00000001001d0000000901000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000101041a000c00000001001d0000000d01000029000000000010043f0000000701000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a0000000c0020006c00000ec20000a13d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d0000000c02000029000b000200200218000000000101043b0000000b011000290000000101100039000000000101041a0000048c011001970000000002000411000000000021004b00000c740000c13d0000000d01000029000000000010043f0000000701000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000101041a000000000001004b000007c10000613d000000010210008a000a00000002001d0000000c0020006b00000da30000c13d0000000d01000029000000000010043f0000000701000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000c00000001001d000000000101041a000b00000001001d000000000001004b00000e020000613d0000000c01000029000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d0000000b02000029000000010220008a000a00000002001d0000000202200210000000000101043b0000000002210019000000000002041b0000000101200039000000000001041b000900000002001d0000000201200039000800000001001d000000000101041a000000010010019000000001021002700000007f0220618f000b00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005a40000c13d0000000b0000006b0000044e0000613d0000000b010000290000001f0010008c0000044c0000a13d0000000801000029000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000b020000290000001f02200039000000050220027000000000022100190000000103100039000000000023004b000004490000813d000000000003041b0000000103300039000000000023004b000004450000413d0000000802000029000000000002041b000800000001001d0000000801000029000000000001041b00000009010000290000000301100039000000000001041b0000000c010000290000000a02000029000000000021041b0000000e01000029000000000010043f0000000801000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000001041b0000000901000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000001041b000000400300043d00000040013000390000000002000411000000000021043500000020013000390000000e0200002900000000002104350000000d01000029000e00000003001d00000000001304350000049e01000041000000000010044300000000010004140000045c0010009c0000045c01008041000000c0011002100000049f011001c70000800b02000039116b11660000040f000000010020019000000d0d0000613d000000000101043b0000000e03000029000000600230003900000000001204350000045c0030009c0000045c03008041000000400130021000000000020004140000045c0020009c0000045c02008041000000c002200210000000000112019f000004a0011001c70000800d020000390000000103000039000004a10400004100000e6f0000013d000004650030009c000007900000613d000004660030009c00000ec00000c13d000000440020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000002402100370000000000202043b000e00000002001d0000048c0020009c00000ec00000213d0000000401100370000000000101043b000000000010043f0000000601000039000000200010043f00000040020000390000000001000019116b114c0000040f0000000e02000029000000000020043f000000200010043f000000000100001900000040020000390000079c0000013d0000049601000041000000800010043f0000002001000039000000840010043f0000001401000039000000a40010043f000004b101000041000000c40010043f000004a3010000410000116d000104300000000001000416000000000001004b00000ec00000c13d000000000100041a0000001001100270000000ff0110018f000000800010043f0000048d010000410000116c0001042e000000240020008c000005420000813d00000ec00000013d0000000001000416000000000001004b00000ec00000c13d0000000a010000390000079d0000013d0000000001000416000000000001004b00000ec00000c13d0000000b010000390000079d0000013d0000000001000416000000000001004b00000ec00000c13d000000000100041a0000ffff0110018f000000800010043f0000048d010000410000116c0001042e000000440020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000002402100370000000000202043b000e00000002001d0000048c0020009c00000ec00000213d0000000401100370000000000101043b000000000010043f0000000501000039000000200010043f00000040020000390000000001000019116b114c0000040f0000000e02000029000000000020043f000000200010043f00000000010000190000004002000039116b114c0000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f0000048d010000410000116c0001042e000000440020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000002402100370000000000202043b000e00000002001d0000000401100370000000000101043b000000000010043f0000000401000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a0000000e0020006b00000ec00000813d0000000e02000029116b0ec80000040f0000000202100039000000000402041a000000000201041a0000000101100039000000000301041a000000400100043d000e00000001001d0000048c03300197116b0ee40000040f0000000e0200002900000000012100490000045c0010009c0000045c010080410000045c0020009c0000045c0200804100000060011002100000004002200210000000000121019f0000116c0001042e000000240020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000000401100370000000000101043b0000000202000039000000000202041a000000000021004b00000ec00000813d116b0eec0000040f0000000302200210000000000101041a000000000121022f000000ff0020008c0000000001002019000000400200043d00000000001204350000045c0020009c0000045c020080410000004001200210000004c3011001c70000116c0001042e000000240020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000000401100370000000000101043b0000048c0010009c00000ec00000213d000000000010043f0000000301000039000000200010043f00000040020000390000000001000019116b114c0000040f116b0f160000040f0000002002000039000000400300043d000e00000003001d0000000002230436116b0f630000040f0000056c0000013d000000440020008c00000ec00000413d0000000003000416000000000003004b00000ec00000c13d0000002403100370000000000603043b0000000403100370000000000703043b0000000203000039000000000403041a000000000004004b000007bf0000c13d000000a001000039000000400010043f000000800000043f000000400200043d000e00000002001d000000200100003900000000021204360000008001000039116b0f920000040f0000000e0200002900000000012100490000045c0010009c0000045c0100804100000060011002100000045c0020009c0000045c020080410000004002200210000000000121019f0000116c0001042e000000240020008c00000ec00000413d0000000003000416000000000003004b00000ec00000c13d0000000403100370000000000303043b000004900030009c00000ec00000213d0000002304300039000000000024004b00000ec00000813d000d00040030003d0000000d01100360000000000101043b000e00000001001d000004900010009c00000ec00000213d0000002403300039000100000003001d000a000e0030002d0000000a0020006b00000ec00000213d0000000001000411000000000010043f0000000301000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000101041a000000010210019000000001011002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000032004b000009ba0000613d000004be01000041000000000010043f0000002201000039000000040010043f000004bf010000410000116d000104300000000001000416000000000001004b00000ec00000c13d0000000c010000390000079d0000013d000000440020008c00000ec00000413d0000000003000416000000000003004b00000ec00000c13d0000000403100370000000000303043b000e00000003001d0000002403100370000000000403043b000004900040009c00000ec00000213d0000002303400039000000000023004b00000ec00000813d0000000405400039000000000351034f000000000303043b000004900030009c000008440000213d0000001f06300039000004c5066001970000003f06600039000004c506600197000004920060009c000008440000213d00000024044000390000008006600039000000400060043f000000800030043f0000000004430019000000000024004b00000ec00000213d0000002002500039000000000221034f000004c5043001980000001f0530018f000000a001400039000005dc0000613d000000a006000039000000000702034f000000007807043c0000000006860436000000000016004b000005d80000c13d000000000005004b000005e90000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000000a00130003900000000000104350000000e02000029000000000002004b000008e50000613d0000000a01000039000000000101041a000000000012004b000008e50000813d0000000c01000039000000000101041a000d00000001001d000000000020043f0000000701000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000b00000001001d000000400100043d000c00000001001d000004920010009c000008440000213d0000000c030000290000008001300039000000400010043f0000004001300039000000800200003900000000002104350000000d010000290000000001130436000000000200041100000000002104350000049e01000041000000000010044300000000010004140000045c0010009c0000045c01008041000000c0011002100000049f011001c70000800b02000039116b11660000040f000000010020019000000d0d0000613d000000000201043b0000000c010000290000006001100039000900000002001d00000000002104350000000b01000029000000000101041a000a00000001001d000004900010009c000008440000213d0000000a0100002900000001011000390000000b02000029000000000012041b000000000020043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d0000000a020000290000000202200210000000000101043b000000000121001900000000020000190000000c03000029116b10490000040f0000000d01000029000000000010043f0000000801000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000e02000029000000000021041b000000000020043f0000000701000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000101041a000c00000001001d000000000001004b000007c10000613d0000000d01000029000000000010043f0000000901000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d0000000c02000029000000010220008a000000000101043b000000000021041b0000000c01000039000000000101041a000000010110003a000007c10000613d0000000c02000039000000000012041b000000400100043d0000006002100039000000a003000039000000000032043500000040021000390000000003000411000000000032043500000020021000390000000d0300002900000000003204350000000e020000290000000000210435000000a003100039000000800200043d0000000000230435000000c003100039000000000002004b0000068d0000613d00000000040000190000000005340019000000a006400039000000000606043300000000006504350000002004400039000000000024004b000006860000413d000000000332001900000000000304350000008003100039000000090400002900000000004304350000001f02200039000004c502200197000000c0022000390000045c0020009c0000045c0200804100000060022002100000045c0010009c0000045c010080410000004001100210000000000112019f00000000020004140000045c0020009c0000045c02008041000000c002200210000000000112019f000004a4011001c70000800d020000390000000103000039000004b00400004100000e6f0000013d000000240020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000000401100370000000000201043b000000000002004b000007a10000613d0000000a01000039000000000101041a000000000012004b000007a10000813d000d00000002001d000000000020043f0000000401000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000101041a000c00000001001d000004900010009c000008440000213d0000000c0100002900000005011002100000003f021000390000049404200197000000400900043d0000000002490019000000000092004b00000000030000390000000103004039000004900020009c000008440000213d0000000100300190000008440000c13d000000400020043f0000000c020000290000000002290436000a00000002001d0000001f0210018f00000000030000310000000103300367000000000001004b000006e20000613d0000000a070000290000000005170019000000000603034f000000006806043c0000000007870436000000000057004b000006de0000c13d000000000002004b000000400600043d0000000005460019000b00000006001d000000000065004b00000000060000390000000106004039000004900050009c000008440000213d0000000100600190000008440000c13d000800000009001d000000400050043f0000000c050000290000000b060000290000000009560436000000000001004b000006fb0000613d0000000005190019000000000603034f0000000007090019000000006806043c0000000007870436000000000057004b000006f70000c13d000700000009001d000000000002004b000000400500043d0000000004450019000900000005001d000000000054004b00000000050000390000000105004039000004900040009c000008440000213d0000000100500190000008440000c13d000000400040043f0000000c0400002900000009050000290000000004450436000600000004001d000000000001004b000007140000613d00000006040000290000000001140019000000003503043c0000000004540436000000000014004b000007100000c13d000000000002004b0000000c0000006b00000c780000c13d000000400400043d00000060010000390000000001140436000000080200002900000000030204330000006002400039000000000032043500000000070400190000008002400039000000000003004b0000072a0000613d000000000400001900000008060000290000002006600039000000000506043300000000025204360000000104400039000000000034004b000007240000413d000000000372004900000000003104350000000b0100002900000000010104330000000002120436000000000001004b000007390000613d0000000003000019000000070500002900000000540504340000048c0440019700000000024204360000000103300039000000000013004b000007330000413d000e00000007001d0000000001720049000000400370003900000000001304350000000901000029116b0f920000040f0000051e0000013d000000240020008c00000ec00000413d0000000003000416000000000003004b00000ec00000c13d0000000403100370000000000403043b000004900040009c00000ec00000213d0000002303400039000000000023004b00000ec00000813d0000000405400039000000000351034f000000000303043b000004900030009c000008440000213d0000001f06300039000004c5066001970000003f06600039000004c506600197000004920060009c000008440000213d00000024044000390000008006600039000000400060043f000000800030043f0000000004430019000000000024004b00000ec00000213d0000002002500039000000000221034f000004c5043001980000001f0530018f000000a0014000390000076a0000613d000000a006000039000000000702034f000000007807043c0000000006860436000000000016004b000007660000c13d000000000005004b000007770000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000000a0013000390000000000010435000000400400043d000000000100041a0000001002100270000000ff0320018f000000800200043d000000000032004b00000acc0000813d0000004401400039000004a9020000410000000000210435000000240140003900000015020000390000000000210435000004960100004100000000001404350000000401400039000000200200003900000000002104350000045c0040009c0000045c0400804100000040014002100000049d011001c70000116d00010430000000240020008c00000ec00000413d0000000002000416000000000002004b00000ec00000c13d0000000401100370000000000101043b000000000010043f0000000801000039000000200010043f00000040020000390000000001000019116b114c0000040f000000000101041a000000800010043f0000048d010000410000116c0001042e0000049601000041000000800010043f0000002001000039000000840010043f0000000f01000039000000a40010043f000004b701000041000000c40010043f000004a3010000410000116d000104300000049601000041000000800010043f0000002001000039000000840010043f0000001101000039000000a40010043f000004aa01000041000000c40010043f000004a3010000410000116d000104300000049601000041000000800010043f0000002001000039000000840010043f0000001601000039000000a40010043f000004a201000041000000c40010043f000004a3010000410000116d00010430000000000007004b000007ed0000c13d000004be01000041000000000010043f0000001101000039000000040010043f000004bf010000410000116d000104300000000002000019000b00000000001d000007ce0000013d0000000e0200002900000001022000390000000c0020006c000008300000813d0000000201000039000000000101041a000000000021004b00000ec20000a13d000e00000002001d0000048e0120009a000000000101041a000000000010043f0000000101000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000101100039000000000101041a0000048c011001970000000d0010006c000007ca0000c13d0000000b01000029000000010110003a0000000e02000029000007c10000613d000b00000001001d000007cb0000013d000000010870008c00000000056800a9000007f30000613d00000000088500d9000000000068004b000007c10000c13d000000000045004b000005630000813d00000000077600a9000000000057004b000007c10000413d000000000047004b0000000007048019000000000657004b000007c10000413d000004900060009c000008440000213d00000005096002100000003f089000390000049408800197000004920080009c000008440000213d0000008008800039000000400080043f000000800060043f0000001f0890018f000000000009004b000008100000613d000000000121034f000000a002900039000000a009000039000000001a01043c0000000009a90436000000000029004b0000080c0000c13d000000000008004b000000000057004b000005660000613d00000000010000190000000002510019000000000024004b00000ec20000a13d000000000030043f000000800700043d000000000017004b00000ec20000a13d0000048e0220009a000000000202041a0000000507100210000000a00770003900000000002704350000000101100039000000000061004b000008140000413d000005660000013d0000049601000041000000800010043f0000002001000039000000840010043f0000002101000039000000a40010043f0000049701000041000000c40010043f0000049801000041000000e40010043f00000499010000410000116d000104300000000b01000029000004900010009c000008440000213d000000400f00043d0000000b01000029000001a90000013d000000400100043d0000004402100039000004b203000041000000000032043500000024021000390000001b0300003900000bad0000013d000000080020006c00000008010000290000000001024019000800000001001d000c00000002001d000004900020009c00000ae20000a13d000004be01000041000000000010043f0000004101000039000000040010043f000004bf010000410000116d000104300000000003000019000b00000000001d000a0000000f001d000008520000013d0000000e0300002900000001033000390000000c0030006c000001cf0000813d0000000201000039000000000101041a000000000031004b00000ec20000a13d000e00000003001d0000048e0130009a000900000001001d000000000101041a000000000010043f0000000101000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f0000000a0f000029000000010020019000000ec00000613d000000000101043b0000000101100039000000000101041a0000048c011001970000000d0010006c0000084e0000c13d0000000201000039000000000101041a0000000e0010006c00000ec20000a13d0000000901000029000000000101041a000000000010043f0000000101000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f0000000a0f000029000000010020019000000ec00000613d000000000601043b000000400500043d000004920050009c000008440000213d0000008001500039000000400010043f000000000106041a00000000011504360000000102600039000000000202041a0000048c0220019700000000002104350000000201600039000000000201041a000000010320019000000001082002700000007f0880618f0000001f0080008c00000000040000390000000104002039000000000442013f0000000100400190000005a40000c13d000000400700043d0000000004870436000000000003004b000008bc0000613d000400000004001d000500000008001d000600000007001d000700000006001d000900000005001d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f0000000a0f000029000000010020019000000ec00000613d0000000508000029000000000008004b000008c20000613d000000000201043b000000000100001900000009050000290000000706000029000000060700002900000004090000290000000003190019000000000402041a000000000043043500000001022000390000002001100039000000000081004b000008b40000413d000008c60000013d000004c4012001970000000000140435000000000008004b00000020010000390000000001006039000008c60000013d00000000010000190000000905000029000000070600002900000006070000290000003f01100039000004c5021001970000000001720019000000000021004b00000000020000390000000102004039000004900010009c000008440000213d0000000100200190000008440000c13d000000400010043f0000004001500039000000000071043500000060015000390000000302600039000000000202041a000000000021043500000000010f04330000000b0010006c0000000e0300002900000ec20000a13d0000000b0400002900000005014002100000000801100029000000000051043500000000010f0433000000000041004b00000ec20000a13d0000000b01000029000b00010010003d0000084f0000013d000000400100043d0000004402100039000004b10300004100000000003204350000002402100039000000140300003900000bad0000013d0000000e01000029000000000010043f0000000601000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000101041a000d00000001001d0000000e01000029000000000010043f0000000401000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000101041a000000000001004b000007c10000613d000000010210008a000c00000002001d0000000d0020006b00000d0e0000c13d0000000e01000029000000000010043f0000000401000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000d00000001001d000000000101041a000c00000001001d000000000001004b00000e020000613d0000000d01000029000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000c02000029000000010220008a00000003032000c90000000001310019000000000001041b0000000103100039000000000003041b0000000201100039000000000001041b0000000d01000029000000000021041b0000000e01000029000000000010043f0000000501000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a000004c402200197000000000021041b0000000e01000029000000000010043f0000000601000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000001041b000000400100043d000d00000001001d0000049e01000041000000000010044300000000010004140000045c0010009c0000045c01008041000000c0011002100000049f011001c70000800b02000039116b11660000040f000000010020019000000d0d0000613d000000000101043b0000000d030000290000004002300039000000000012043500000000010004110000048c01100197000000200230003900000000001204350000000e0100002900000000001304350000045c0030009c0000045c03008041000000400130021000000000020004140000045c0020009c0000045c02008041000000c002200210000000000112019f000004ae011001c70000800d020000390000000103000039000004c10400004100000e6f0000013d000000400100043d0000006402100039000004ab0300004100000000003204350000004402100039000004ac030000410000000000320435000000240210003900000021030000390000000000320435000004960200004100000000002104350000000402100039000000200300003900000000003204350000045c0010009c0000045c010080410000004001100210000004a8011001c70000116d00010430000000000001004b00000ba70000c13d0000000a01000039000000000101041a000900000001001d000000020010008c00000a7f0000413d0000000e040000290000001f0140018f000700000001001d00000003011002100000010002100089000304c600100287000204c600200227000b04c50040019b0000001f01400039000004c5011001970000003f01100039000804c50010019b0000000d02000029000600200020003d0000000102000039000d00000002001d000000000020043f0000000101000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000101100039000000000101041a0000048c01100197000000000010043f0000000301000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a000000010320019000000001072002700000007f0770618f0000001f0070008c00000000040000390000000104002039000000000442013f0000000100400190000005a40000c13d000000400500043d0000000006750436000000000003004b00000a180000613d000400000007001d000500000006001d000c00000005001d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d0000000407000029000000000007004b00000a1e0000613d000000000201043b00000000010000190000000c0500002900000005060000290000000003610019000000000402041a000000000043043500000001022000390000002001100039000000000071004b00000a100000413d00000a210000013d000004c4012001970000000000160435000000000007004b0000002001000039000000000100603900000a210000013d00000000010000190000000c0500002900000005060000290000003f01100039000004c5021001970000000001520019000000000021004b00000000020000390000000102004039000004900010009c000008440000213d0000000100200190000008440000c13d000000400010043f0000045c0060009c0000045c06008041000000400160021000000000020504330000045c0020009c0000045c020080410000006002200210000000000112019f00000000020004140000045c0020009c0000045c02008041000000c002200210000000000112019f000004a4011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000801043b000000400100043d0000000802100029000000000012004b00000000030000390000000103004039000004900020009c000008440000213d0000000100300190000008440000c13d000000400020043f0000000e0200002900000000022104360000000a04000029000000000040007c00000ec00000213d000000060300002900000001043003670000000b032000290000000b0000006b00000a590000613d000000000504034f0000000006020019000000005705043c0000000006760436000000000036004b00000a550000c13d000c00000008001d000000070000006b00000a630000613d0000000005030433000000030550017f0000000b04400360000000000404043b000000020440017f000000000454019f00000000004304350000000e0320002900000000000304350000045c0020009c0000045c02008041000000400220021000000000010104330000045c0010009c0000045c010080410000006001100210000000000121019f00000000020004140000045c0020009c0000045c02008041000000c002200210000000000112019f000004a4011001c70000801002000039116b11660000040f00000001002001900000000c0200002900000ec00000613d000000000101043b000000000012004b00000d9c0000613d0000000d020000290000000102200039000000090020006c000009d00000413d0000000001000411000000000010043f0000000301000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000d00000001001d000000000101041a000000010010019000000001021002700000007f0220618f000c00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000005a40000c13d0000000c01000029000000200010008c00000ab80000413d0000000d01000029000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d0000000e030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000c010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000ab80000813d000000000002041b0000000102200039000000000012004b00000ab40000413d0000000e010000290000001f0010008c00000d8e0000a13d0000000d01000029000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000200200008a0000000e02200180000000000101043b00000e080000c13d000000000300001900000e130000013d0000ffff0110018f000000000012004b00000bb80000a13d0000006401400039000004a60200004100000000002104350000004401400039000004a7020000410000000000210435000000240140003900000022020000390000000000210435000004960100004100000000001404350000000401400039000000200200003900000000002104350000045c0040009c0000045c040080410000004001400210000004a8011001c70000116d000104300000000c0100002900000005011002100000003f021000390000049402200197000000400300043d0000000002230019000d00000003001d000000000032004b00000000030000390000000103004039000004900020009c000008440000213d0000000100300190000008440000c13d000000400020043f0000000d020000290000000c030000290000000002320436000b00000002001d0000001f0210018f000000000001004b00000b000000613d0000000b04000029000000000114001900000000030000310000000103300367000000003503043c0000000004540436000000000014004b00000afc0000c13d000000000002004b000e00000000001d0000000a01000029000000000010043f0000000701000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a0000000e0020006c00000ec20000a13d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d0000000d0200002900000000020204330000000e04000029000000000042004b00000ec20000a13d00000005024002100000000b02200029000000000101043b00000002034002100000000001310019000000000101041a00000000001204350000000104400039000e00000004001d0000000c0040006c00000b020000413d0000000c01000029000000010110008c00000cc20000c13d000000080100002900000005031002100000003f013000390000049402100197000000400100043d0000000002210019000000000012004b00000000040000390000000104004039000004900020009c000008440000213d0000000100400190000008440000c13d000000400020043f000000080200002900000000022104360000001f0430018f000000000003004b00000b4b0000613d0000000003320019000000000500003100000001055003670000000006020019000000005705043c0000000006760436000000000036004b00000b470000c13d000000000004004b000000080000006b000002540000613d00000000030000190000000d040000290000000004040433000000000034004b00000ec20000a13d0000000004010433000000000034004b00000ec20000a13d000000050430021000000000052400190000000b04400029000000000404043300000000004504350000000103300039000000080030006c00000b4f0000413d000002540000013d0000008005000039000000000700001900000b6e0000013d000000000b9a001900000000000b043500000060044000390000006008800039000000000808043300000000008404350000001f04900039000004c50440019700000000044a00190000000107700039000000000027004b000001d90000813d0000000008140049000000400880008a0000000003830436000000200ff0003900000000080f043300000000a90804340000000009940436000000000a0a04330000048c0aa001970000000000a9043500000040098000390000000009090433000000400a40003900000000005a0435000000800a40003900000000b909043400000000009a0435000000a00a400039000000000009004b00000b620000613d000000000c000019000000000dac0019000000000ecb0019000000000e0e04330000000000ed0435000000200cc0003900000000009c004b00000b830000413d00000b620000013d00000003032000c9000e00000003001d000000030330011a000000000032004b000007c10000c13d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000e02100029000000000021004b0000004d0000813d000000000001041b0000000103100039000000000003041b0000000203100039000000000003041b0000000301100039000000000021004b00000b9e0000413d0000004d0000013d000000400100043d0000004402100039000004b8030000410000000000320435000000240210003900000015030000390000000000320435000004960200004100000000002104350000000402100039000000200300003900000000003204350000045c0010009c0000045c0100804100000040011002100000049d011001c70000116d00010430000e00000004001d000004920040009c000008440000213d0000000a01000039000000000301041a0000000e020000290000008001200039000000400010043f000000400120003900000080040000390000000000410435000d00000003001d0000000001320436000000000200041100000000002104350000049e01000041000000000010044300000000010004140000045c0010009c0000045c01008041000000c0011002100000049f011001c70000800b02000039116b11660000040f000000010020019000000d0d0000613d000000000201043b0000000e010000290000006001100039000c00000002001d00000000002104350000000d01000029000000000010043f0000000101000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000e02000029116b0fb30000040f0000000202000039000000000102041a000004900010009c000008440000213d0000000103100039000000000032041b000000000020043f0000048e0110009a0000000d02000029000000000021041b0000000a01000039000000000101041a000000010110003a000007c10000613d0000000a02000039000000000012041b000000400100043d00000040021000390000008003000039000000000032043500000000020004110000048c02200197000000200310003900000000002304350000000d0200002900000000002104350000008003100039000000800200043d0000000000230435000000a003100039000000000002004b00000c0f0000613d00000000040000190000000005340019000000a006400039000000000606043300000000006504350000002004400039000000000024004b00000c080000413d0000000003320019000000000003043500000060031000390000000c0400002900000000004304350000001f02200039000004c502200197000000a0022000390000045c0020009c0000045c0200804100000060022002100000045c0010009c0000045c010080410000004001100210000000000112019f00000000020004140000045c0020009c0000045c02008041000000c002200210000000000112019f000004a4011001c70000800d020000390000000103000039000004a50400004100000e6f0000013d0000000e02000029000004b30020009c000007c10000213d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d0000000e020000290000000202200210000000000301043b0000000004230019000000000043004b000000600000813d000b00000004001d00000c480000013d0000000d02000029000000000002041b00000000050100190000000e030000290000000b04000029000000000005041b0000000301300039000000000001041b0000000403300039000000000043004b000000600000813d000000000003041b0000000101300039000000000001041b0000000205300039000000000105041a000000010010019000000001061002700000007f0660618f0000001f0060008c00000000020000390000000102002039000000000121013f0000000100100190000005a40000c13d000000000006004b00000c430000613d0000001f0060008c00000c420000a13d000c00000006001d000e00000003001d000d00000005001d000000000050043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000c020000290000001f02200039000000050220027000000000022100190000000103100039000000000023004b00000c3d0000813d000000000003041b0000000103300039000000000023004b00000c6f0000413d00000c3d0000013d000000400100043d00000044021000390000049c0300004100000baa0000013d000e00000000001d0000000d01000029000000000010043f0000000401000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a0000000e0020006c00000ec20000a13d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000400300043d000004950030009c0000000806000029000008440000213d000000000101043b0000006002300039000000400020043f0000000e0700002900000003027000c90000000001210019000000000401041a00000000024304360000000105100039000000000505041a0000048c05500197000000000052043500000002051000390000004001300039000000000305041a00000000003104350000000003060433000000000073004b00000ec20000a13d00000005037002100000000a0530002900000000004504350000000b040000290000000004040433000000000074004b00000ec20000a13d000000070430002900000000020204330000048c02200197000000000024043500000009020000290000000002020433000000000072004b00000ec20000a13d0000000602300029000000000101043300000000001204350000000107700039000e00000007001d0000000c0070006c00000c790000413d000007170000013d00000000020004110009006000200218000e00000001001d000000400100043d000a00000001001d0000049e01000041000000000010044300000000010004140000045c0010009c0000045c01008041000000c0011002100000049f011001c70000800b02000039116b11660000040f000000010020019000000d0d0000613d0000000a040000290000002002400039000000000101043b000000000012043500000040014000390000000903000029000000000031043500000054014000390000000e03000029000000000031043500000054010000390000000000140435000004920040009c000008440000213d0000008001400039000000400010043f0000045c0020009c0000045c02008041000000400120021000000000020404330000045c0020009c0000045c020080410000006002200210000000000112019f00000000020004140000045c0020009c0000045c02008041000000c002200210000000000112019f000004a4011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000c101000fa0000000d020000290000000002020433000000000012004b0000000e0500002900000ec20000a13d000000000052004b00000ec20000a13d00000005011002100000000b03100029000000000103043300000005025002100000000b02200029000000000402043300000000004304350000000d030000290000000003030433000000000053004b00000ec20000a13d0000000000120435000000010150008c000c00000005001d00000cc40000c13d00000b300000013d000000000001042f0000000e01000029000000000010043f0000000401000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a0000000c0020006c00000ec20000a13d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000400200043d000b00000002001d000004c00020009c000008440000813d000000000101043b0000000b040000290000006002400039000000400020043f0000000c0200002900000003022000c90000000001210019000000000201041a00000000032404360000000102100039000000000202041a0000048c02200197000c00000003001d000000000023043500000002011000390000004002400039000000000101041a000a00000002001d00000000001204350000000e01000029000000000010043f0000000401000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a0000000d0020006c00000ec20000a13d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d0000000d0200002900000003022000c9000000000101043b00000000012100190000000b020000290000000002020433000000000021041b0000000102100039000000000302041a000004ad033001970000000c0400002900000000040404330000048c04400197000000000343019f000000000032041b00000002011000390000000a020000290000000002020433000000000021041b0000000e01000029000000000010043f0000000601000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000c0200002900000000020204330000048c02200197000000000020043f000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000d02000029000000000021041b0000091e0000013d0000000e0000006b000000000100001900000d940000613d00000001010000290000000101100367000000000101043b0000000e040000290000000302400210000004c60220027f000004c602200167000000000121016f0000000102400210000000000121019f00000e220000013d000000400100043d0000004402100039000004bd0300004100000000003204350000002402100039000000160300003900000bad0000013d0000000d01000029000000000010043f0000000701000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a0000000a0020006c00000ec20000a13d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000400200043d000900000002001d000004920020009c000008440000213d0000000a020000290000000202200210000000000321001900000009020000290000008001200039000000400010043f000000000103041a00000000011204360000000102300039000000000202041a0000048c022001970000000000210435000800000003001d0000000201300039000000000201041a000000010320019000000001042002700000007f0440618f000a00000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000005a40000c13d000000400400043d000700000004001d0000000a050000290000000004540436000600000004001d000000000003004b00000e740000613d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d0000000a05000029000000000005004b0000000002000019000000060600002900000e7a0000613d000000000101043b00000000020000190000000003260019000000000401041a000000000043043500000001011000390000002002200039000000000052004b00000df40000413d00000e7a0000013d000004b40220009a000000000202041a000000000024041b000000000201041a000000000002004b00000e5b0000c13d000004be01000041000000000010043f0000003101000039000000040010043f000004bf010000410000116d000104300000000104000367000000000300001900000001060000290000000005630019000000000554034f000000000505043b000000000051041b00000001011000390000002003300039000000000023004b00000e0b0000413d0000000e0020006c00000e1f0000813d0000000e020000290000000302200210000000f80220018f000004c60220027f000004c60220016700000001033000290000000103300367000000000303043b000000000223016f000000000021041b0000000e01000029000000010110021000000001011001bf0000000d02000029000000000012041b0000002002000039000000400100043d00000000022104360000000e030000290000000000320435000004c5053001980000001f0630018f000000400310003900000000045300190000000107000029000000010770036700000e360000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00000e320000c13d000000000006004b00000e430000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000e050000290000001f04500039000004c5024001970000000003530019000000000003043500000040022000390000006003200210000004b90330009a000004ba0020009c000004bb030080410000045c0010009c0000045c010080410000004001100210000000000131019f00000000020004140000045c0020009c0000045c02008041000000c00220021000000000012100190000800d020000390000000203000039000004bc04000041000000000500041100000e6f0000013d000000000010043f000004b40320009a000000000003041b000000010220008a000000000021041b0000000a06000029000000400100043d00000000006104350000045c0010009c0000045c01008041000000400110021000000000020004140000045c0020009c0000045c02008041000000c002200210000000000112019f00000493011001c70000800d020000390000000103000039000004b504000041116b11610000040f000000010020019000000ec00000613d00000000010000190000116c0001042e000004c401200197000000060200002900000000001204350000000a0000006b000000200200003900000000020060390000003f01200039000004c5021001970000000701200029000000000021004b00000000020000390000000102004039000004900010009c000008440000213d0000000100200190000008440000c13d000000400010043f0000000902000029000000400120003900000007030000290000000000310435000000600120003900000008020000290000000302200039000000000202041a00000000002104350000000d01000029000000000010043f0000000701000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b000000000201041a0000000c0020006c00000ec20000a13d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000b0110002900000000020000190000000903000029116b10490000040f00000009010000290000000001010433000000000010043f0000000901000039000000200010043f00000000010004140000045c0010009c0000045c01008041000000c0011002100000048f011001c70000801002000039116b11660000040f000000010020019000000ec00000613d000000000101043b0000000c02000029000000000021041b000003f80000013d00000000010000190000116d00010430000004be01000041000000000010043f0000003201000039000000040010043f000004bf010000410000116d000104300001000000000002000000000301041a000100000002001d000000000023004b00000edc0000a13d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000ee20000613d000000010200002900000003022000c9000000000101043b0000000001210019000000000001042d000004be01000041000000000010043f0000003201000039000000040010043f000004bf010000410000116d0001043000000000010000190000116d00010430000000400510003900000000004504350000048c033001970000002004100039000000000034043500000000002104350000006001100039000000000001042d0000000202000039000000000302041a000000000013004b00000ef40000a13d000000000020043f0000048e0110009a0000000002000019000000000001042d000004be01000041000000000010043f0000003201000039000000040010043f000004bf010000410000116d000104300001000000000002000000000301041a000100000002001d000000000023004b00000f0e0000a13d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000f140000613d00000001020000290000000202200210000000000101043b0000000001210019000000000001042d000004be01000041000000000010043f0000003201000039000000040010043f000004bf010000410000116d0001043000000000010000190000116d000104300003000000000002000000000201041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000043004b00000f550000c13d000000400500043d0000000004650436000000000003004b00000f400000613d000100000004001d000300000006001d000200000005001d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f000000010020019000000f610000613d0000000306000029000000000006004b00000f460000613d000000000201043b0000000001000019000000020500002900000001070000290000000003170019000000000402041a000000000043043500000001022000390000002001100039000000000061004b00000f380000413d00000f480000013d000004c4012001970000000000140435000000000006004b0000002001000039000000000100603900000f480000013d000000000100001900000002050000290000003f01100039000004c5021001970000000001520019000000000021004b00000000020000390000000102004039000004900010009c00000f5b0000213d000000010020019000000f5b0000c13d000000400010043f0000000001050019000000000001042d000004be01000041000000000010043f0000002201000039000000040010043f000004bf010000410000116d00010430000004be01000041000000000010043f0000004101000039000000040010043f000004bf010000410000116d0001043000000000010000190000116d0001043000000000430104340000000001320436000000000003004b00000f6f0000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b00000f680000413d000000000231001900000000000204350000001f02300039000004c5022001970000000001210019000000000001042d0000004006100039000000800700003900000000007604350000048c03300197000000200610003900000000003604350000000000210435000000004204043400000080031000390000000000230435000000a003100039000000000002004b00000f8a0000613d000000000600001900000000073600190000000008640019000000000808043300000000008704350000002006600039000000000026004b00000f830000413d00000000042300190000000000040435000000600110003900000000005104350000001f01200039000004c5011001970000000001130019000000000001042d000000000301001900000000040104330000000001420436000000000004004b00000f9e0000613d00000000020000190000002003300039000000000503043300000000015104360000000102200039000000000042004b00000f980000413d000000000001042d000000000001004b00000fa20000613d000000000001042d000000400100043d0000004402100039000004b703000041000000000032043500000024021000390000000f030000390000000000320435000004960200004100000000002104350000000402100039000000200300003900000000003204350000045c0010009c0000045c0100804100000040011002100000049d011001c70000116d000104300007000000000002000000000602001900000000070100190000000021020434000000000017041b00000000010204330000048c011001970000000102700039000000000302041a000004ad03300197000000000113019f000000000012041b000000400160003900000000030104330000000054030434000004c70040009c0000103b0000813d0000000208700039000000000108041a000000010210019000000001091002700000007f0990618f0000001f0090008c00000000010000390000000101002039000000000012004b000010410000c13d000000200090008c000600000006001d000500000007001d000400000008001d000700000004001d000300000003001d00000ff60000413d000100000009001d000200000005001d000000000080043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f0000000100200190000010470000613d00000007040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000000060600002900000005070000290000000408000029000000020500002900000ff60000813d000000000002041b0000000102200039000000000012004b00000ff20000413d0000001f0040008c000010230000a13d000000000080043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f0000000100200190000010470000613d0000000709000029000004c502900198000000000101043b000000030a000029000010340000613d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000606000029000000050700002900000004080000290000000005a300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000100f0000c13d000000000092004b000010200000813d0000000302900210000000f80220018f000004c60220027f000004c6022001670000000003a300190000000003030433000000000223016f000000000021041b000000010190021000000001011001bf0000102e0000013d000000000004004b0000102d0000613d0000000301400210000004c60110027f000004c6011001670000000002050433000000000112016f0000000102400210000000000121019f0000102e0000013d0000000001000019000000000018041b000000030170003900000060026000390000000002020433000000000021041b000000000001042d0000002003000039000000060600002900000005070000290000000408000029000000000092004b000010180000413d000010200000013d000004be01000041000000000010043f0000004101000039000000040010043f000004bf010000410000116d00010430000004be01000041000000000010043f0000002201000039000000040010043f000004bf010000410000116d0001043000000000010000190000116d000104300007000000000002000000000002004b000010d20000c13d00000000070100190000000021030434000000000017041b00000000010204330000048c011001970000000102700039000000000402041a000004ad04400197000000000114019f000000000012041b000000400130003900000000050104330000000064050434000004c70040009c000010d70000813d0000000208700039000000000108041a000000010210019000000001091002700000007f0990618f0000001f0090008c00000000010000390000000101002039000000000012004b000010dd0000c13d000000200090008c000600000003001d000500000007001d000400000008001d000700000004001d000300000005001d0000108d0000413d000100000009001d000200000006001d000000000080043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f0000000100200190000010e30000613d00000007040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000006030000290000000507000029000000040800002900000002060000290000108d0000813d000000000002041b0000000102200039000000000012004b000010890000413d000000200040008c000010ba0000413d000000000080043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f0000000100200190000010e30000613d0000000709000029000004c502900198000000000101043b000000030a000029000010cb0000613d000000010320008a00000005033002700000000004310019000000200600003900000001044000390000000603000029000000050700002900000004080000290000000005a600190000000005050433000000000051041b00000020066000390000000101100039000000000041004b000010a60000c13d000000000092004b000010b70000813d0000000302900210000000f80220018f000004c60220027f000004c6022001670000000004a600190000000004040433000000000224016f000000000021041b000000010190021000000001011001bf000010c50000013d000000000004004b000010c40000613d0000000301400210000004c60110027f000004c6011001670000000002060433000000000112016f0000000102400210000000000121019f000010c50000013d0000000001000019000000000018041b000000030170003900000060023000390000000002020433000000000021041b000000000001042d0000002006000039000000060300002900000005070000290000000408000029000000000092004b000010af0000413d000010b70000013d000004be01000041000000000010043f000000040000043f000004bf010000410000116d00010430000004be01000041000000000010043f0000004101000039000000040010043f000004bf010000410000116d00010430000004be01000041000000000010043f0000002201000039000000040010043f000004bf010000410000116d0001043000000000010000190000116d000104300005000000000002000000400500043d000004c80050009c0000113d0000813d00000000060100190000008001500039000000400010043f000000000106041a00000000011504360000000102600039000000000202041a0000048c0220019700000000002104350000000201600039000000000201041a000000010320019000000001082002700000007f0880618f0000001f0080008c00000000040000390000000104002039000000000043004b000011430000c13d000000400700043d0000000004870436000000000003004b000011200000613d000100000004001d000500000008001d000200000007001d000300000006001d000400000005001d000000000010043f00000000010004140000045c0010009c0000045c01008041000000c00110021000000493011001c70000801002000039116b11660000040f0000000100200190000011490000613d0000000508000029000000000008004b000011260000613d000000000201043b000000000100001900000004050000290000000306000029000000020700002900000001090000290000000003190019000000000402041a000000000043043500000001022000390000002001100039000000000081004b000011180000413d0000112a0000013d000004c4012001970000000000140435000000000008004b000000200100003900000000010060390000112a0000013d00000000010000190000000405000029000000030600002900000002070000290000003f01100039000004c5021001970000000001720019000000000021004b00000000020000390000000102004039000004900010009c0000113d0000213d00000001002001900000113d0000c13d000000400010043f000000400150003900000000007104350000000301600039000000000101041a000000600250003900000000001204350000000001050019000000000001042d000004be01000041000000000010043f0000004101000039000000040010043f000004bf010000410000116d00010430000004be01000041000000000010043f0000002201000039000000040010043f000004bf010000410000116d0001043000000000010000190000116d00010430000000000001042f0000045c0010009c0000045c0100804100000040011002100000045c0020009c0000045c020080410000006002200210000000000112019f00000000020004140000045c0020009c0000045c02008041000000c002200210000000000112019f000004a4011001c70000801002000039116b11660000040f00000001002001900000115f0000613d000000000101043b000000000001042d00000000010000190000116d0001043000001164002104210000000102000039000000000001042d0000000002000019000000000001042d00001169002104230000000102000039000000000001042d0000000002000019000000000001042d0000116b000004320000116c0001042e0000116d000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000101180000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000007f28163400000000000000000000000000000000000000000000000000000000d84f55ed00000000000000000000000000000000000000000000000000000000edc09ff700000000000000000000000000000000000000000000000000000000fafe12b100000000000000000000000000000000000000000000000000000000fafe12b200000000000000000000000000000000000000000000000000000000feaa34f100000000000000000000000000000000000000000000000000000000edc09ff800000000000000000000000000000000000000000000000000000000efe102a400000000000000000000000000000000000000000000000000000000e2c8916200000000000000000000000000000000000000000000000000000000e2c8916300000000000000000000000000000000000000000000000000000000e8d857b000000000000000000000000000000000000000000000000000000000d84f55ee00000000000000000000000000000000000000000000000000000000da677ec7000000000000000000000000000000000000000000000000000000009c29f24d00000000000000000000000000000000000000000000000000000000b8c0a1ee00000000000000000000000000000000000000000000000000000000b8c0a1ef00000000000000000000000000000000000000000000000000000000d8137e4c000000000000000000000000000000000000000000000000000000009c29f24e00000000000000000000000000000000000000000000000000000000b64debbf000000000000000000000000000000000000000000000000000000007f28163500000000000000000000000000000000000000000000000000000000820ebdfb000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000472a9843000000000000000000000000000000000000000000000000000000006eb10796000000000000000000000000000000000000000000000000000000007c9cd2bb000000000000000000000000000000000000000000000000000000007c9cd2bc000000000000000000000000000000000000000000000000000000007d0b1026000000000000000000000000000000000000000000000000000000006eb10797000000000000000000000000000000000000000000000000000000007035e1b10000000000000000000000000000000000000000000000000000000058fe03bb0000000000000000000000000000000000000000000000000000000058fe03bc000000000000000000000000000000000000000000000000000000005ffc6ceb00000000000000000000000000000000000000000000000000000000472a9844000000000000000000000000000000000000000000000000000000005775912a0000000000000000000000000000000000000000000000000000000022b13ac7000000000000000000000000000000000000000000000000000000002b5914fd000000000000000000000000000000000000000000000000000000002b5914fe000000000000000000000000000000000000000000000000000000002ee864ff0000000000000000000000000000000000000000000000000000000022b13ac8000000000000000000000000000000000000000000000000000000002707ca970000000000000000000000000000000000000000000000000000000002df54a60000000000000000000000000000000000000000000000000000000017edf66d000000000000000000000000000000000000000000000000000000001d86e904000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000020000000800000000000000000bfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a5320200000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000000000000000000000000000000000003fffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f02000000000000000000000000000000000000200000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff9f08c379a0000000000000000000000000000000000000000000000000000000004f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ff00004e6f742074686520636f6d6d656e74206f776e657200000000000000000000000000000000000000000000000000000000000064000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000200000000000000000000000000000000000080000000000000000000000000f2a108949a5957b8522f35aa80ffc323d33e0bcd3c4a928750ea82bb07f83356436f6d6d656e7420646f6573206e6f74206578697374000000000000000000000000000000000000000000000000000000000064000000800000000000000000020000000000000000000000000000000000000000000000000000000000000016fd3c13e9d46923e0a8bce11c7b473ec508a72e6c96cd2404b29ce972afc29e727300000000000000000000000000000000000000000000000000000000000054776565742063616e6e6f742065786365656420323830206368617261637465000000000000000000000000000000000000008400000000000000000000000054776565742063616e6e6f7420626520656d7074790000000000000000000000436f6d6d656e74206e6f7420666f756e640000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000557365722068617320616c7265616479206c696b656420746869732074776565ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000600000000000000000000000003a9182ad8c7c1fc3acd8b5d6e047b1693e58b9cbaf26a80079511ce787bfda11421f804a0b21938816743b4f5bf6076d33137a72a0eaebd93abd7e2fd7ac2071547765657420646f6573206e6f74206578697374000000000000000000000000596f752063616e27742064656c657465207468697320747765657400000000003fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a533cff984d3d6983751ef01f1bad6665f0a9ab887ed70e453a3e9d01009d82c9fd1000000000000000000000000000000000000000000000000ffffffffffffffdf5477656574206e6f7420666f756e64000000000000000000000000000000000055736572206e616d6520616c7265616479207365740000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000002000000000000000000000000000000ffffffff00000000000000000000000055633e294f3ce7de0841784584a845596fec2f4a663a2e0415d1aaf6455a4787557365726e616d6520616c72656164792074616b656e000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffa0bd3de60b9ad77b41c0806d270e814267378945b534cbaa3b405c7418728609e855736572206861736e2774206c696b65642074686973207477656574000000000000000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffff800000000000000000000000000000000000000000000000000000000000000000e629b5fbe1615426157ec0632d2f2fb106ee7abd253b85b8d92af0e08803f3dc

Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.