ETH Price: $2,926.63 (-2.60%)
Gas: 1 Gwei

Contract

0xDb8f849C66Ba8Da67F326b95CC5b90C03D2d49b2
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Buy With USDT172965472023-05-19 22:39:59415 days ago1684535999IN
0xDb8f849C...03D2d49b2
0 ETH0.0009489136.20841603
Buy With USDT172925992023-05-19 9:18:35415 days ago1684487915IN
0xDb8f849C...03D2d49b2
0 ETH0.0043248351.0347493
Buy With USDT172925722023-05-19 9:13:11415 days ago1684487591IN
0xDb8f849C...03D2d49b2
0 ETH0.0068573657.65251693
Buy With USDT172925672023-05-19 9:12:11415 days ago1684487531IN
0xDb8f849C...03D2d49b2
0 ETH0.0068765657.81397806
Buy With USDT172925472023-05-19 9:08:11415 days ago1684487291IN
0xDb8f849C...03D2d49b2
0 ETH0.007267261.09206342
Buy With USDT172925292023-05-19 9:04:23415 days ago1684487063IN
0xDb8f849C...03D2d49b2
0 ETH0.0051854161.18983857
Buy With USDT172925092023-05-19 9:00:23415 days ago1684486823IN
0xDb8f849C...03D2d49b2
0 ETH0.0060793851.10663178
Buy With USDT172925042023-05-19 8:59:11415 days ago1684486751IN
0xDb8f849C...03D2d49b2
0 ETH0.0014877444.73202798
Buy With USDT172925022023-05-19 8:58:47415 days ago1684486727IN
0xDb8f849C...03D2d49b2
0 ETH0.0036681243.28524281
Buy With USDT172924982023-05-19 8:57:59415 days ago1684486679IN
0xDb8f849C...03D2d49b2
0 ETH0.0050252742.2494719
Buy With USDT172924762023-05-19 8:53:35415 days ago1684486415IN
0xDb8f849C...03D2d49b2
0 ETH0.0049740841.81482983
Buy With USDT172924732023-05-19 8:52:59415 days ago1684486379IN
0xDb8f849C...03D2d49b2
0 ETH0.0053259244.77260048
Buy With USDT172924522023-05-19 8:48:47415 days ago1684486127IN
0xDb8f849C...03D2d49b2
0 ETH0.0051623543.40191007
Buy With USDT172924162023-05-19 8:41:35415 days ago1684485695IN
0xDb8f849C...03D2d49b2
0 ETH0.004672139.2801985
Buy With USDT172923962023-05-19 8:37:35415 days ago1684485455IN
0xDb8f849C...03D2d49b2
0 ETH0.0043834736.84983664
Buy With USDT172923722023-05-19 8:32:35415 days ago1684485155IN
0xDb8f849C...03D2d49b2
0 ETH0.0049711541.79019796
Buy With USDT172923702023-05-19 8:32:11415 days ago1684485131IN
0xDb8f849C...03D2d49b2
0 ETH0.005287644.45048741
Buy With USDT172923682023-05-19 8:31:47415 days ago1684485107IN
0xDb8f849C...03D2d49b2
0 ETH0.0057031447.9485175
Buy With USDT172923362023-05-19 8:25:11415 days ago1684484711IN
0xDb8f849C...03D2d49b2
0 ETH0.0048136440.47018553
Buy With USDT172923192023-05-19 8:21:47415 days ago1684484507IN
0xDb8f849C...03D2d49b2
0 ETH0.0057179848.0733604
Buy With USDT172923012023-05-19 8:17:59415 days ago1684484279IN
0xDb8f849C...03D2d49b2
0 ETH0.0053363244.86454295
Buy With USDT172922962023-05-19 8:16:59415 days ago1684484219IN
0xDb8f849C...03D2d49b2
0 ETH0.005316544.69789036
Buy With USDT172922552023-05-19 8:08:35415 days ago1684483715IN
0xDb8f849C...03D2d49b2
0 ETH0.0042369335.61796059
Buy With USDT172922392023-05-19 8:05:23415 days ago1684483523IN
0xDb8f849C...03D2d49b2
0 ETH0.003837132.25680162
Buy With USDT172922362023-05-19 8:04:47415 days ago1684483487IN
0xDb8f849C...03D2d49b2
0 ETH0.0041087234.54018229
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
privateSaleMshib

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : privateSaleSHIB.sol
//SPDX-License-Identifier: MIT

pragma solidity 0.8.19;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";



contract privateSaleMshib is
    Ownable,
    Pausable
{
    uint256 public totalTokensSold = 0;
    uint256 public startTime;
    uint256 public endTime;
    uint256 public constant usdtDecimals = 10**6;

    bool private _initialized;

    IERC20Upgradeable public constant usdtToken = IERC20Upgradeable(0xdAC17F958D2ee523a2206206994597C13D831ec7);
    uint256 public constant token_price = 1672;    
       
    /**
     * @dev calculates USDT cost for the tokens
     * @param _amount No of tokens to buy
     * @return usdtAmount USDT cost for the tokens, output has 6 decimals
    */

    
    function calculatePrice(uint256 _amount) public pure returns (uint256 usdtAmount) {
        require(_amount >= 1_495_214, "Minimum amount is 1,495,214 tokens");

        // Calculate the total price with higher precision
        uint256 price = _amount * token_price;

        // Divide the totalPrice to convert it to 6 decimal precision (10^6)
        usdtAmount = price / 10**2; // Divide by 10^2 to adjust for 6 decimals

    }

    
    mapping(address => uint256) public usdtDeposits;
    mapping(address => uint256) public userDeposits;
    mapping(address => bool) public hasClaimed;

    event SaleTimeSet(
        uint256 indexed _start, 
        uint256 indexed _end, 
        uint256 timestamp);

    event TokensBought(
        address indexed user,
        uint256 indexed tokensBought,
        uint256 indexed amountPaid,
        uint256 timestamp
    );

    /// @custom:oz-upgrades-unsafe-allow constructor

    /**
     * @dev Initializes the contract and sets key parameters
     * @param _startTime start time of the presale
     * @param _endTime end time of the presale
     */
    function initialize(
        uint256 _startTime,
        uint256 _endTime
    ) external onlyOwner{
        require(
            _startTime > block.timestamp && _endTime > _startTime,
            "Invalid time"
        );
        require(!_initialized, "Already initialized");
        _initialized = true;
          
        startTime = _startTime;
        endTime = _endTime;
        emit SaleTimeSet(startTime, endTime, block.timestamp);
    }

    /**
     * @dev To pause the presale
     */
    function pause() external onlyOwner {
        _pause();
    }

    /**
     * @dev To unpause the presale
     */
    function unpause() external onlyOwner {
        _unpause();
    }

    modifier checkSaleState(uint256 amount) {
        require(
            block.timestamp >= startTime && block.timestamp <= endTime,
            "Invalid time for buying"
        );
        require(amount > 0 , "Invalid sale amount");
        _;
    }

    /**
     * @dev To buy tokens using USDT
     * @param amount No of tokens to buy
     * emits {TokensBought} event
     */

    function buyWithUSDT(uint256 amount)
        external
        checkSaleState(amount)
        whenNotPaused
        returns (bool){

        require(amount + totalTokensSold <= 1_477_272_727, "Exceeds private sale");
        require(amount + userDeposits[_msgSender()] <= 26_913_875 , "Exceeds max buy amount");
        uint256 usdtAmount = calculatePrice(amount);
        require(usdtAmount + usdtDeposits[_msgSender()] <= 450 * usdtDecimals, "Exceeds max buy amount"); //max 450 usdt per wallet
        uint256 ourAllowance = usdtToken.allowance(
            _msgSender(),
            address(this)
        );
        require(usdtAmount <= ourAllowance, "Make sure to add enough allowance");
        (bool success, ) = address(usdtToken).call(
            abi.encodeWithSignature(
                "transferFrom(address,address,uint256)",
                _msgSender(),
                owner(),
                usdtAmount
            )
        );
        require(success, "Token payment failed");
        totalTokensSold += amount;
        usdtDeposits[_msgSender()] += usdtAmount;
        userDeposits[_msgSender()] += amount;

        emit TokensBought(
            _msgSender(),
            amount,
            usdtAmount,
            block.timestamp
        );

        return success;
        }     
     

    /**
     * @dev helper function for frontend to get remainng USDT amount for the user
     * @param _address address of the user
     * @return usdtAmount
    */

    function usdtAmountRemaining(address _address) external view returns(uint256 usdtAmount){
        usdtAmount = (450 * usdtDecimals) - usdtDeposits[_address];
    }

     /**
     * @dev helper function for frontend to get remaining token amount for the user
     * @param _address address of the user
     * @return tokenAmount
    */

    function tokensRemaining(address _address) external view returns(uint256 tokenAmount){
        tokenAmount = 26_913_875  - userDeposits[_address];
    }
}

File 2 of 6 : IERC20Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20Upgradeable {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 3 of 6 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_start","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_end","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"SaleTimeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokensBought","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"amountPaid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TokensBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buyWithUSDT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"calculatePrice","outputs":[{"internalType":"uint256","name":"usdtAmount","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"tokensRemaining","outputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"usdtAmountRemaining","outputs":[{"internalType":"uint256","name":"usdtAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdtDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"usdtDeposits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdtToken","outputs":[{"internalType":"contract IERC20Upgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userDeposits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600060015534801561001557600080fd5b5061003261002761005160201b60201c565b61005960201b60201c565b60008060146101000a81548160ff02191690831515021790555061011d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611aa58061012c6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80637b4fd96e116100ad578063a7c6016011610071578063a7c6016014610311578063a98ad46c14610341578063ae1042651461035f578063e4a301161461038f578063f2fde38b146103ab5761012c565b80637b4fd96e1461027d57806382543b321461029b5780638456cb59146102b95780638da5cb5b146102c35780639a83129f146102e15761012c565b806360a6e624116100f457806360a6e624146101d757806363b2011714610207578063715018a61461022557806373b2e80e1461022f57806378e979251461025f5761012c565b80630ba36dcd146101315780633197cbb61461016157806333d9cafd1461017f5780633f4ba83a146101af5780635c975abb146101b9575b600080fd5b61014b60048036038101906101469190611039565b6103c7565b604051610158919061107f565b60405180910390f35b6101696103df565b604051610176919061107f565b60405180910390f35b61019960048036038101906101949190611039565b6103e5565b6040516101a6919061107f565b60405180910390f35b6101b761043d565b005b6101c161044f565b6040516101ce91906110b5565b60405180910390f35b6101f160048036038101906101ec9190611039565b610465565b6040516101fe919061107f565b60405180910390f35b61020f61047d565b60405161021c919061107f565b60405180910390f35b61022d610483565b005b61024960048036038101906102449190611039565b610497565b60405161025691906110b5565b60405180910390f35b6102676104b7565b604051610274919061107f565b60405180910390f35b6102856104bd565b604051610292919061107f565b60405180910390f35b6102a36104c3565b6040516102b0919061107f565b60405180910390f35b6102c16104ca565b005b6102cb6104dc565b6040516102d891906110df565b60405180910390f35b6102fb60048036038101906102f69190611039565b610505565b604051610308919061107f565b60405180910390f35b61032b60048036038101906103269190611126565b610569565b60405161033891906110b5565b60405180910390f35b610349610b1b565b60405161035691906111b2565b60405180910390f35b61037960048036038101906103749190611126565b610b33565b604051610386919061107f565b60405180910390f35b6103a960048036038101906103a491906111cd565b610ba2565b005b6103c560048036038101906103c09190611039565b610cb1565b005b60066020528060005260406000206000915090505481565b60035481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205463019aac53610436919061123c565b9050919050565b610445610d34565b61044d610db2565b565b60008060149054906101000a900460ff16905090565b60056020528060005260406000206000915090505481565b60015481565b61048b610d34565b6104956000610e14565b565b60076020528060005260406000206000915054906101000a900460ff1681565b60025481565b61068881565b620f424081565b6104d2610d34565b6104da610ed8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620f42406101c26105589190611270565b610562919061123c565b9050919050565b600081600254421015801561058057506003544211155b6105bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b69061130f565b60405180910390fd5b60008111610602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f99061137b565b60405180910390fd5b61060a610f3b565b63580d64976001548461061d919061139b565b111561065e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106559061141b565b60405180910390fd5b63019aac536006600061066f610f85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846106b5919061139b565b11156106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed90611487565b60405180910390fd5b600061070184610b33565b9050620f42406101c26107149190611270565b60056000610720610f85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482610766919061139b565b11156107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90611487565b60405180910390fd5b600073dac17f958d2ee523a2206206994597c13d831ec773ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e6107e1610f85565b306040518363ffffffff1660e01b81526004016107ff9291906114a7565b602060405180830381865afa15801561081c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084091906114e5565b905080821115610885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087c90611584565b60405180910390fd5b600073dac17f958d2ee523a2206206994597c13d831ec773ffffffffffffffffffffffffffffffffffffffff166108ba610f85565b6108c26104dc565b856040516024016108d5939291906115a4565b6040516020818303038152906040527f23b872dd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161095f919061164c565b6000604051808303816000865af19150503d806000811461099c576040519150601f19603f3d011682016040523d82523d6000602084013e6109a1565b606091505b50509050806109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc906116af565b60405180910390fd5b85600160008282546109f7919061139b565b925050819055508260056000610a0b610f85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a54919061139b565b925050819055508560066000610a68610f85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ab1919061139b565b925050819055508286610ac2610f85565b73ffffffffffffffffffffffffffffffffffffffff167f22f6af6e13430e3e7b6418d01e6a48c1fbce5e8cb1698901fc95134b4b1c58ad42604051610b07919061107f565b60405180910390a480945050505050919050565b73dac17f958d2ee523a2206206994597c13d831ec781565b60006216d0ae821015610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7290611741565b60405180910390fd5b600061068883610b8b9190611270565b9050606481610b9a9190611790565b915050919050565b610baa610d34565b4282118015610bb857508181115b610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee9061180d565b60405180910390fd5b600460009054906101000a900460ff1615610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90611879565b60405180910390fd5b6001600460006101000a81548160ff02191690831515021790555081600281905550806003819055506003546002547f23f6ad8232d75562dd1c6b37dfc895af6bfc1ecd0fb3b88722c6a5e6b4dc9a2042604051610ca5919061107f565b60405180910390a35050565b610cb9610d34565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f9061190b565b60405180910390fd5b610d3181610e14565b50565b610d3c610f85565b73ffffffffffffffffffffffffffffffffffffffff16610d5a6104dc565b73ffffffffffffffffffffffffffffffffffffffff1614610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790611977565b60405180910390fd5b565b610dba610f8d565b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610dfd610f85565b604051610e0a91906110df565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610ee0610f3b565b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f24610f85565b604051610f3191906110df565b60405180910390a1565b610f4361044f565b15610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a906119e3565b60405180910390fd5b565b600033905090565b610f9561044f565b610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90611a4f565b60405180910390fd5b565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061100682610fdb565b9050919050565b61101681610ffb565b811461102157600080fd5b50565b6000813590506110338161100d565b92915050565b60006020828403121561104f5761104e610fd6565b5b600061105d84828501611024565b91505092915050565b6000819050919050565b61107981611066565b82525050565b60006020820190506110946000830184611070565b92915050565b60008115159050919050565b6110af8161109a565b82525050565b60006020820190506110ca60008301846110a6565b92915050565b6110d981610ffb565b82525050565b60006020820190506110f460008301846110d0565b92915050565b61110381611066565b811461110e57600080fd5b50565b600081359050611120816110fa565b92915050565b60006020828403121561113c5761113b610fd6565b5b600061114a84828501611111565b91505092915050565b6000819050919050565b600061117861117361116e84610fdb565b611153565b610fdb565b9050919050565b600061118a8261115d565b9050919050565b600061119c8261117f565b9050919050565b6111ac81611191565b82525050565b60006020820190506111c760008301846111a3565b92915050565b600080604083850312156111e4576111e3610fd6565b5b60006111f285828601611111565b925050602061120385828601611111565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061124782611066565b915061125283611066565b925082820390508181111561126a5761126961120d565b5b92915050565b600061127b82611066565b915061128683611066565b925082820261129481611066565b915082820484148315176112ab576112aa61120d565b5b5092915050565b600082825260208201905092915050565b7f496e76616c69642074696d6520666f7220627579696e67000000000000000000600082015250565b60006112f96017836112b2565b9150611304826112c3565b602082019050919050565b60006020820190508181036000830152611328816112ec565b9050919050565b7f496e76616c69642073616c6520616d6f756e7400000000000000000000000000600082015250565b60006113656013836112b2565b91506113708261132f565b602082019050919050565b6000602082019050818103600083015261139481611358565b9050919050565b60006113a682611066565b91506113b183611066565b92508282019050808211156113c9576113c861120d565b5b92915050565b7f4578636565647320707269766174652073616c65000000000000000000000000600082015250565b60006114056014836112b2565b9150611410826113cf565b602082019050919050565b60006020820190508181036000830152611434816113f8565b9050919050565b7f45786365656473206d61782062757920616d6f756e7400000000000000000000600082015250565b60006114716016836112b2565b915061147c8261143b565b602082019050919050565b600060208201905081810360008301526114a081611464565b9050919050565b60006040820190506114bc60008301856110d0565b6114c960208301846110d0565b9392505050565b6000815190506114df816110fa565b92915050565b6000602082840312156114fb576114fa610fd6565b5b6000611509848285016114d0565b91505092915050565b7f4d616b65207375726520746f2061646420656e6f75676820616c6c6f77616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061156e6021836112b2565b915061157982611512565b604082019050919050565b6000602082019050818103600083015261159d81611561565b9050919050565b60006060820190506115b960008301866110d0565b6115c660208301856110d0565b6115d36040830184611070565b949350505050565b600081519050919050565b600081905092915050565b60005b8381101561160f5780820151818401526020810190506115f4565b60008484015250505050565b6000611626826115db565b61163081856115e6565b93506116408185602086016115f1565b80840191505092915050565b6000611658828461161b565b915081905092915050565b7f546f6b656e207061796d656e74206661696c6564000000000000000000000000600082015250565b60006116996014836112b2565b91506116a482611663565b602082019050919050565b600060208201905081810360008301526116c88161168c565b9050919050565b7f4d696e696d756d20616d6f756e7420697320312c3439352c32313420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b600061172b6022836112b2565b9150611736826116cf565b604082019050919050565b6000602082019050818103600083015261175a8161171e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061179b82611066565b91506117a683611066565b9250826117b6576117b5611761565b5b828204905092915050565b7f496e76616c69642074696d650000000000000000000000000000000000000000600082015250565b60006117f7600c836112b2565b9150611802826117c1565b602082019050919050565b60006020820190508181036000830152611826816117ea565b9050919050565b7f416c726561647920696e697469616c697a656400000000000000000000000000600082015250565b60006118636013836112b2565b915061186e8261182d565b602082019050919050565b6000602082019050818103600083015261189281611856565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118f56026836112b2565b915061190082611899565b604082019050919050565b60006020820190508181036000830152611924816118e8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119616020836112b2565b915061196c8261192b565b602082019050919050565b6000602082019050818103600083015261199081611954565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006119cd6010836112b2565b91506119d882611997565b602082019050919050565b600060208201905081810360008301526119fc816119c0565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611a396014836112b2565b9150611a4482611a03565b602082019050919050565b60006020820190508181036000830152611a6881611a2c565b905091905056fea2646970667358221220558871b8cf9570ef05b0745eb31011052bbf01a6ddb8e8c477690b98597336f164736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80637b4fd96e116100ad578063a7c6016011610071578063a7c6016014610311578063a98ad46c14610341578063ae1042651461035f578063e4a301161461038f578063f2fde38b146103ab5761012c565b80637b4fd96e1461027d57806382543b321461029b5780638456cb59146102b95780638da5cb5b146102c35780639a83129f146102e15761012c565b806360a6e624116100f457806360a6e624146101d757806363b2011714610207578063715018a61461022557806373b2e80e1461022f57806378e979251461025f5761012c565b80630ba36dcd146101315780633197cbb61461016157806333d9cafd1461017f5780633f4ba83a146101af5780635c975abb146101b9575b600080fd5b61014b60048036038101906101469190611039565b6103c7565b604051610158919061107f565b60405180910390f35b6101696103df565b604051610176919061107f565b60405180910390f35b61019960048036038101906101949190611039565b6103e5565b6040516101a6919061107f565b60405180910390f35b6101b761043d565b005b6101c161044f565b6040516101ce91906110b5565b60405180910390f35b6101f160048036038101906101ec9190611039565b610465565b6040516101fe919061107f565b60405180910390f35b61020f61047d565b60405161021c919061107f565b60405180910390f35b61022d610483565b005b61024960048036038101906102449190611039565b610497565b60405161025691906110b5565b60405180910390f35b6102676104b7565b604051610274919061107f565b60405180910390f35b6102856104bd565b604051610292919061107f565b60405180910390f35b6102a36104c3565b6040516102b0919061107f565b60405180910390f35b6102c16104ca565b005b6102cb6104dc565b6040516102d891906110df565b60405180910390f35b6102fb60048036038101906102f69190611039565b610505565b604051610308919061107f565b60405180910390f35b61032b60048036038101906103269190611126565b610569565b60405161033891906110b5565b60405180910390f35b610349610b1b565b60405161035691906111b2565b60405180910390f35b61037960048036038101906103749190611126565b610b33565b604051610386919061107f565b60405180910390f35b6103a960048036038101906103a491906111cd565b610ba2565b005b6103c560048036038101906103c09190611039565b610cb1565b005b60066020528060005260406000206000915090505481565b60035481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205463019aac53610436919061123c565b9050919050565b610445610d34565b61044d610db2565b565b60008060149054906101000a900460ff16905090565b60056020528060005260406000206000915090505481565b60015481565b61048b610d34565b6104956000610e14565b565b60076020528060005260406000206000915054906101000a900460ff1681565b60025481565b61068881565b620f424081565b6104d2610d34565b6104da610ed8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620f42406101c26105589190611270565b610562919061123c565b9050919050565b600081600254421015801561058057506003544211155b6105bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b69061130f565b60405180910390fd5b60008111610602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f99061137b565b60405180910390fd5b61060a610f3b565b63580d64976001548461061d919061139b565b111561065e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106559061141b565b60405180910390fd5b63019aac536006600061066f610f85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846106b5919061139b565b11156106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed90611487565b60405180910390fd5b600061070184610b33565b9050620f42406101c26107149190611270565b60056000610720610f85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482610766919061139b565b11156107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90611487565b60405180910390fd5b600073dac17f958d2ee523a2206206994597c13d831ec773ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e6107e1610f85565b306040518363ffffffff1660e01b81526004016107ff9291906114a7565b602060405180830381865afa15801561081c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084091906114e5565b905080821115610885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087c90611584565b60405180910390fd5b600073dac17f958d2ee523a2206206994597c13d831ec773ffffffffffffffffffffffffffffffffffffffff166108ba610f85565b6108c26104dc565b856040516024016108d5939291906115a4565b6040516020818303038152906040527f23b872dd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161095f919061164c565b6000604051808303816000865af19150503d806000811461099c576040519150601f19603f3d011682016040523d82523d6000602084013e6109a1565b606091505b50509050806109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc906116af565b60405180910390fd5b85600160008282546109f7919061139b565b925050819055508260056000610a0b610f85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a54919061139b565b925050819055508560066000610a68610f85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ab1919061139b565b925050819055508286610ac2610f85565b73ffffffffffffffffffffffffffffffffffffffff167f22f6af6e13430e3e7b6418d01e6a48c1fbce5e8cb1698901fc95134b4b1c58ad42604051610b07919061107f565b60405180910390a480945050505050919050565b73dac17f958d2ee523a2206206994597c13d831ec781565b60006216d0ae821015610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7290611741565b60405180910390fd5b600061068883610b8b9190611270565b9050606481610b9a9190611790565b915050919050565b610baa610d34565b4282118015610bb857508181115b610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee9061180d565b60405180910390fd5b600460009054906101000a900460ff1615610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e90611879565b60405180910390fd5b6001600460006101000a81548160ff02191690831515021790555081600281905550806003819055506003546002547f23f6ad8232d75562dd1c6b37dfc895af6bfc1ecd0fb3b88722c6a5e6b4dc9a2042604051610ca5919061107f565b60405180910390a35050565b610cb9610d34565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f9061190b565b60405180910390fd5b610d3181610e14565b50565b610d3c610f85565b73ffffffffffffffffffffffffffffffffffffffff16610d5a6104dc565b73ffffffffffffffffffffffffffffffffffffffff1614610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da790611977565b60405180910390fd5b565b610dba610f8d565b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610dfd610f85565b604051610e0a91906110df565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610ee0610f3b565b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f24610f85565b604051610f3191906110df565b60405180910390a1565b610f4361044f565b15610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a906119e3565b60405180910390fd5b565b600033905090565b610f9561044f565b610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90611a4f565b60405180910390fd5b565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061100682610fdb565b9050919050565b61101681610ffb565b811461102157600080fd5b50565b6000813590506110338161100d565b92915050565b60006020828403121561104f5761104e610fd6565b5b600061105d84828501611024565b91505092915050565b6000819050919050565b61107981611066565b82525050565b60006020820190506110946000830184611070565b92915050565b60008115159050919050565b6110af8161109a565b82525050565b60006020820190506110ca60008301846110a6565b92915050565b6110d981610ffb565b82525050565b60006020820190506110f460008301846110d0565b92915050565b61110381611066565b811461110e57600080fd5b50565b600081359050611120816110fa565b92915050565b60006020828403121561113c5761113b610fd6565b5b600061114a84828501611111565b91505092915050565b6000819050919050565b600061117861117361116e84610fdb565b611153565b610fdb565b9050919050565b600061118a8261115d565b9050919050565b600061119c8261117f565b9050919050565b6111ac81611191565b82525050565b60006020820190506111c760008301846111a3565b92915050565b600080604083850312156111e4576111e3610fd6565b5b60006111f285828601611111565b925050602061120385828601611111565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061124782611066565b915061125283611066565b925082820390508181111561126a5761126961120d565b5b92915050565b600061127b82611066565b915061128683611066565b925082820261129481611066565b915082820484148315176112ab576112aa61120d565b5b5092915050565b600082825260208201905092915050565b7f496e76616c69642074696d6520666f7220627579696e67000000000000000000600082015250565b60006112f96017836112b2565b9150611304826112c3565b602082019050919050565b60006020820190508181036000830152611328816112ec565b9050919050565b7f496e76616c69642073616c6520616d6f756e7400000000000000000000000000600082015250565b60006113656013836112b2565b91506113708261132f565b602082019050919050565b6000602082019050818103600083015261139481611358565b9050919050565b60006113a682611066565b91506113b183611066565b92508282019050808211156113c9576113c861120d565b5b92915050565b7f4578636565647320707269766174652073616c65000000000000000000000000600082015250565b60006114056014836112b2565b9150611410826113cf565b602082019050919050565b60006020820190508181036000830152611434816113f8565b9050919050565b7f45786365656473206d61782062757920616d6f756e7400000000000000000000600082015250565b60006114716016836112b2565b915061147c8261143b565b602082019050919050565b600060208201905081810360008301526114a081611464565b9050919050565b60006040820190506114bc60008301856110d0565b6114c960208301846110d0565b9392505050565b6000815190506114df816110fa565b92915050565b6000602082840312156114fb576114fa610fd6565b5b6000611509848285016114d0565b91505092915050565b7f4d616b65207375726520746f2061646420656e6f75676820616c6c6f77616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061156e6021836112b2565b915061157982611512565b604082019050919050565b6000602082019050818103600083015261159d81611561565b9050919050565b60006060820190506115b960008301866110d0565b6115c660208301856110d0565b6115d36040830184611070565b949350505050565b600081519050919050565b600081905092915050565b60005b8381101561160f5780820151818401526020810190506115f4565b60008484015250505050565b6000611626826115db565b61163081856115e6565b93506116408185602086016115f1565b80840191505092915050565b6000611658828461161b565b915081905092915050565b7f546f6b656e207061796d656e74206661696c6564000000000000000000000000600082015250565b60006116996014836112b2565b91506116a482611663565b602082019050919050565b600060208201905081810360008301526116c88161168c565b9050919050565b7f4d696e696d756d20616d6f756e7420697320312c3439352c32313420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b600061172b6022836112b2565b9150611736826116cf565b604082019050919050565b6000602082019050818103600083015261175a8161171e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061179b82611066565b91506117a683611066565b9250826117b6576117b5611761565b5b828204905092915050565b7f496e76616c69642074696d650000000000000000000000000000000000000000600082015250565b60006117f7600c836112b2565b9150611802826117c1565b602082019050919050565b60006020820190508181036000830152611826816117ea565b9050919050565b7f416c726561647920696e697469616c697a656400000000000000000000000000600082015250565b60006118636013836112b2565b915061186e8261182d565b602082019050919050565b6000602082019050818103600083015261189281611856565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118f56026836112b2565b915061190082611899565b604082019050919050565b60006020820190508181036000830152611924816118e8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119616020836112b2565b915061196c8261192b565b602082019050919050565b6000602082019050818103600083015261199081611954565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006119cd6010836112b2565b91506119d882611997565b602082019050919050565b600060208201905081810360008301526119fc816119c0565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611a396014836112b2565b9150611a4482611a03565b602082019050919050565b60006020820190508181036000830152611a6881611a2c565b905091905056fea2646970667358221220558871b8cf9570ef05b0745eb31011052bbf01a6ddb8e8c477690b98597336f164736f6c63430008130033

Block Transaction Difficulty 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
[ 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.