ETH Price: $3,490.06 (+0.06%)
Gas: 2 Gwei

Contract

0x313dC75b136E29E9E36fBda43d0100133924b234
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer98476782020-04-11 0:08:211562 days ago1586563701IN
0x313dC75b...33924b234
0 ETH0.000379435
Transfer98341172020-04-08 22:01:301564 days ago1586383290IN
0x313dC75b...33924b234
0 ETH0.000058221
Transfer98321542020-04-08 14:46:051564 days ago1586357165IN
0x313dC75b...33924b234
0 ETH0.000635316
Transfer97881552020-04-01 20:26:111571 days ago1585772771IN
0x313dC75b...33924b234
0 ETH0.000064051.1
Transfer97087892020-03-20 13:21:471583 days ago1584710507IN
0x313dC75b...33924b234
0 ETH0.0011647411
Transfer96955182020-03-18 12:10:021585 days ago1584533402IN
0x313dC75b...33924b234
0 ETH0.000058221
Transfer95111022020-02-19 3:05:131614 days ago1582081513IN
0x313dC75b...33924b234
0 ETH0.000058221
Transfer94811462020-02-14 12:33:571618 days ago1581683637IN
0x313dC75b...33924b234
0 ETH0.000075881
Transfer94623242020-02-11 14:53:561621 days ago1581432836IN
0x313dC75b...33924b234
0 ETH0.000105881
Transfer94367662020-02-07 16:57:181625 days ago1581094638IN
0x313dC75b...33924b234
0 ETH0.000228753.8125
Transfer94104722020-02-03 15:41:051629 days ago1580744465IN
0x313dC75b...33924b234
0 ETH0.000034921
Transfer94104152020-02-03 15:29:491629 days ago1580743789IN
0x313dC75b...33924b234
0 ETH0.000075861
Transfer93821772020-01-30 7:24:211634 days ago1580369061IN
0x313dC75b...33924b234
0 ETH0.000058221
Transfer93375282020-01-23 11:02:481640 days ago1579777368IN
0x313dC75b...33924b234
0 ETH0.000034931
Transfer93328042020-01-22 17:40:161641 days ago1579714816IN
0x313dC75b...33924b234
0 ETH0.000105881
Transfer93051832020-01-18 12:14:541645 days ago1579349694IN
0x313dC75b...33924b234
0 ETH0.000026631
Transfer93051832020-01-18 12:14:541645 days ago1579349694IN
0x313dC75b...33924b234
0 ETH0.000064991
Transfer93031292020-01-18 4:30:421646 days ago1579321842IN
0x313dC75b...33924b234
0 ETH0.000105871
Transfer92413352020-01-08 17:36:341655 days ago1578504994IN
0x313dC75b...33924b234
0 ETH0.000058221
Transfer92203472020-01-05 12:19:051658 days ago1578226745IN
0x313dC75b...33924b234
0 ETH0.000052421.5
Transfer92173942020-01-05 1:21:241659 days ago1578187284IN
0x313dC75b...33924b234
0 ETH0.000158821.5
Transfer91999092020-01-02 8:04:091662 days ago1577952249IN
0x313dC75b...33924b234
0 ETH0.000034941
Transfer91998812020-01-02 7:56:391662 days ago1577951799IN
0x313dC75b...33924b234
0 ETH0.000075881
Transfer91950322020-01-01 8:43:381662 days ago1577868218IN
0x313dC75b...33924b234
0 ETH0.000056431.5
Transfer91937282020-01-01 2:13:141663 days ago1577844794IN
0x313dC75b...33924b234
0 ETH0.000127061.2
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:
LollypopToken

Compiler Version
v0.5.11+commit.c082d0b4

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2019-09-27
*/

pragma solidity 0.5.11;


contract Ownable {
   address payable public owner;

   event OwnershipTransferred(address indexed _from, address indexed _to);

   constructor() public {
       owner = msg.sender;
   }

   modifier onlyOwner {
       require(msg.sender == owner);
       _;
   }

   function transferOwnership(address payable _newOwner) public onlyOwner {
       owner = _newOwner;
   }
}


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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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-solidity/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) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. 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 mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

contract LollypopToken is Ownable {
    using SafeMath for uint256;

    mapping (address => transferMapping) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;
    uint256 public _maxTotalSupply;
        

    string private _name = "Lollypop";
    string private _symbol = "Lolly";
    uint8 private _decimals= 18;
    
    uint256 public maxAgeOfToken = 365 days;
    uint256  public minAgeOfToken = 1 days;
    uint256 public perDayBonus = 100; // Divisible 1/100 (0.1 %)
    
     struct  transferMapping{
        uint256 amount;
        uint256 time;
    }
    
    
    constructor() public {
        _maxTotalSupply = 1000000000 * 10 ** 18;
        _totalSupply =  2000000 * 10 ** 18;

        _balances[msg.sender].amount = _totalSupply;
        _balances[msg.sender].time = now;
        
    }
    
    function calculateBonus(uint256 timeElasped , uint256 amount) public view  returns(uint256){
        uint256 totalDays = timeElasped.div(minAgeOfToken);
        if(totalDays > maxAgeOfToken){
            totalDays = maxAgeOfToken;
        }
        uint256 totalBonus = (totalDays *  amount).div(perDayBonus);
        return totalBonus;
        
    }
    
    
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        
        uint256 senderTimeElasped = now - (_balances[sender].time);
        uint256 recipientTimeElasped = now - (_balances[recipient].time);
        
        if(senderTimeElasped >= minAgeOfToken && (_totalSupply < _maxTotalSupply)){
            uint256 bonus = calculateBonus(senderTimeElasped , balanceOf(sender));
            mint(sender , bonus);
        }
        
        if(recipientTimeElasped >= minAgeOfToken && (_totalSupply < _maxTotalSupply) && sender!= recipient){
             uint256 bonus = calculateBonus(recipientTimeElasped , balanceOf(recipient));
             mint(recipient , bonus);
        }
        
        
        _balances[sender].amount = _balances[sender].amount.sub(amount);
        _balances[recipient].amount = _balances[recipient].amount.add(amount);
        
        _balances[sender].time = now;
        _balances[recipient].time = now;
            
        emit Transfer(sender, recipient, amount);
        

    }


    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * > Note that this information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * `IERC20.balanceOf` and `IERC20.transfer`.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
    
    modifier onlyLollypopAndOwner {
        require(msg.sender == address(this) || msg.sender == owner);
        _;
    }
    
    /**
     * @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 Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a `Transfer` event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account].amount = _balances[account].amount.add(amount);
        emit Transfer(address(0), account, amount);
    }
    
    

    /**
     * @dev See `IERC20.totalSupply`.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account].amount;
    }


 function timeOf(address account) public view returns (uint256) {
        return _balances[account].time;
    }

    /**
     * @dev See `IERC20.transfer`.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }
    
  function multiTransfer(address[] memory receivers, uint256[] memory amounts) public {
    require(receivers.length == amounts.length);
    for (uint256 i = 0; i < receivers.length; i++) {
      transfer(receivers[i], amounts[i]);
    }
  }


    /**
     * @dev See `IERC20.allowance`.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev See `IERC20.transferFrom`.
     *
     * Emits an `Approval` event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of `ERC20`;
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }
    
   

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to `transfer`, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a `Transfer` event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
   

     /**
     * @dev Destoys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a `Transfer` event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account].amount = _balances[account].amount.sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an `Approval` event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"multiTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"minAgeOfToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"timeElasped","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateBonus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"perDayBonus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"timeOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxAgeOfToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"},{"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":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

60806040526040518060400160405280600881526020017f4c6f6c6c79706f700000000000000000000000000000000000000000000000008152506005908051906020019062000051929190620001d9565b506040518060400160405280600581526020017f4c6f6c6c79000000000000000000000000000000000000000000000000000000815250600690805190602001906200009f929190620001d9565b506012600760006101000a81548160ff021916908360ff1602179055506301e13380600855620151806009556064600a55348015620000dd57600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506b033b2e3c9fd0803ce80000006004819055506a01a784379d99db42000000600381905550600354600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555042600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555062000288565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200021c57805160ff19168380011785556200024d565b828001600101855582156200024d579182015b828111156200024c5782518255916020019190600101906200022f565b5b5090506200025c919062000260565b5090565b6200028591905b808211156200028157600081600090555060010162000267565b5090565b90565b61192e80620002986000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb146106c5578063d0b485091461072b578063dd62ed3e14610783578063f2fde38b146107fb578063fc8161ec1461083f5761012c565b806370a082311461051c57806371b92bb6146105745780638da5cb5b1461059257806395d89b41146105dc578063a457c2d71461065f5761012c565b80632cdc90e1116100f45780632cdc90e11461040a578063313ce567146104285780633730837c1461044c578063395093511461046a5780636f72fd20146104d05761012c565b806306fdde0314610131578063095ea7b3146101b457806318160ddd1461021a5780631e89d5451461023857806323b872dd14610384575b600080fd5b61013961085d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561017957808201518184015260208101905061015e565b50505050905090810190601f1680156101a65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610200600480360360408110156101ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108ff565b604051808215151515815260200191505060405180910390f35b610222610916565b6040518082815260200191505060405180910390f35b6103826004803603604081101561024e57600080fd5b810190808035906020019064010000000081111561026b57600080fd5b82018360208201111561027d57600080fd5b8035906020019184602083028401116401000000008311171561029f57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156102ff57600080fd5b82018360208201111561031157600080fd5b8035906020019184602083028401116401000000008311171561033357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610920565b005b6103f06004803603606081101561039a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610980565b604051808215151515815260200191505060405180910390f35b610412610a31565b6040518082815260200191505060405180910390f35b610430610a37565b604051808260ff1660ff16815260200191505060405180910390f35b610454610a4e565b6040518082815260200191505060405180910390f35b6104b66004803603604081101561048057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a54565b604051808215151515815260200191505060405180910390f35b610506600480360360408110156104e657600080fd5b810190808035906020019092919080359060200190929190505050610af9565b6040518082815260200191505060405180910390f35b61055e6004803603602081101561053257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b49565b6040518082815260200191505060405180910390f35b61057c610b95565b6040518082815260200191505060405180910390f35b61059a610b9b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105e4610bc0565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610624578082015181840152602081019050610609565b50505050905090810190601f1680156106515780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106ab6004803603604081101561067557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c62565b604051808215151515815260200191505060405180910390f35b610711600480360360408110156106db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d07565b604051808215151515815260200191505060405180910390f35b61076d6004803603602081101561074157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d1e565b6040518082815260200191505060405180910390f35b6107e56004803603604081101561079957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d6a565b6040518082815260200191505060405180910390f35b61083d6004803603602081101561081157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610df1565b005b610847610e8d565b6040518082815260200191505060405180910390f35b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b600061090c338484610e93565b6001905092915050565b6000600354905090565b805182511461092e57600080fd5b60008090505b825181101561097b5761096d83828151811061094c57fe5b602002602001015183838151811061096057fe5b6020026020010151610d07565b508080600101915050610934565b505050565b600061098d84848461108a565b610a268433610a2185600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461150890919063ffffffff16565b610e93565b600190509392505050565b60095481565b6000600760009054906101000a900460ff16905090565b60045481565b6000610aef3384610aea85600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461159190919063ffffffff16565b610e93565b6001905092915050565b600080610b116009548561161990919063ffffffff16565b9050600854811115610b235760085490505b6000610b3c600a5485840261161990919063ffffffff16565b9050809250505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b600a5481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c585780601f10610c2d57610100808354040283529160200191610c58565b820191906000526020600020905b815481529060010190602001808311610c3b57829003601f168201915b5050505050905090565b6000610cfd3384610cf885600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461150890919063ffffffff16565b610e93565b6001905092915050565b6000610d1433848461108a565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e4a57600080fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806118d66024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061188f6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611110576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806118b16025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061186c6023913960400191505060405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154420390506000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015442039050600954821015801561123d5750600454600354105b156112645760006112568361125188610b49565b610af9565b905061126286826116a8565b505b60095481101580156112795750600454600354105b80156112b157508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156112d85760006112ca826112c587610b49565b610af9565b90506112d685826116a8565b505b61132d83600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015461150890919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055506113c883600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015461159190919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555042600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555042600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b600082821115611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b60008082840190508381101561160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000808211611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b600082848161169b57fe5b0490508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6117608160035461159190919063ffffffff16565b6003819055506117bb81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015461159190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820e667b0b10a189935e97d24bc71a682ffcabf732734105ab4d389c72d9536271164736f6c634300050b0032

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb146106c5578063d0b485091461072b578063dd62ed3e14610783578063f2fde38b146107fb578063fc8161ec1461083f5761012c565b806370a082311461051c57806371b92bb6146105745780638da5cb5b1461059257806395d89b41146105dc578063a457c2d71461065f5761012c565b80632cdc90e1116100f45780632cdc90e11461040a578063313ce567146104285780633730837c1461044c578063395093511461046a5780636f72fd20146104d05761012c565b806306fdde0314610131578063095ea7b3146101b457806318160ddd1461021a5780631e89d5451461023857806323b872dd14610384575b600080fd5b61013961085d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561017957808201518184015260208101905061015e565b50505050905090810190601f1680156101a65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610200600480360360408110156101ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108ff565b604051808215151515815260200191505060405180910390f35b610222610916565b6040518082815260200191505060405180910390f35b6103826004803603604081101561024e57600080fd5b810190808035906020019064010000000081111561026b57600080fd5b82018360208201111561027d57600080fd5b8035906020019184602083028401116401000000008311171561029f57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156102ff57600080fd5b82018360208201111561031157600080fd5b8035906020019184602083028401116401000000008311171561033357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610920565b005b6103f06004803603606081101561039a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610980565b604051808215151515815260200191505060405180910390f35b610412610a31565b6040518082815260200191505060405180910390f35b610430610a37565b604051808260ff1660ff16815260200191505060405180910390f35b610454610a4e565b6040518082815260200191505060405180910390f35b6104b66004803603604081101561048057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a54565b604051808215151515815260200191505060405180910390f35b610506600480360360408110156104e657600080fd5b810190808035906020019092919080359060200190929190505050610af9565b6040518082815260200191505060405180910390f35b61055e6004803603602081101561053257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b49565b6040518082815260200191505060405180910390f35b61057c610b95565b6040518082815260200191505060405180910390f35b61059a610b9b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105e4610bc0565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610624578082015181840152602081019050610609565b50505050905090810190601f1680156106515780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106ab6004803603604081101561067557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c62565b604051808215151515815260200191505060405180910390f35b610711600480360360408110156106db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d07565b604051808215151515815260200191505060405180910390f35b61076d6004803603602081101561074157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d1e565b6040518082815260200191505060405180910390f35b6107e56004803603604081101561079957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d6a565b6040518082815260200191505060405180910390f35b61083d6004803603602081101561081157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610df1565b005b610847610e8d565b6040518082815260200191505060405180910390f35b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b600061090c338484610e93565b6001905092915050565b6000600354905090565b805182511461092e57600080fd5b60008090505b825181101561097b5761096d83828151811061094c57fe5b602002602001015183838151811061096057fe5b6020026020010151610d07565b508080600101915050610934565b505050565b600061098d84848461108a565b610a268433610a2185600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461150890919063ffffffff16565b610e93565b600190509392505050565b60095481565b6000600760009054906101000a900460ff16905090565b60045481565b6000610aef3384610aea85600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461159190919063ffffffff16565b610e93565b6001905092915050565b600080610b116009548561161990919063ffffffff16565b9050600854811115610b235760085490505b6000610b3c600a5485840261161990919063ffffffff16565b9050809250505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b600a5481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c585780601f10610c2d57610100808354040283529160200191610c58565b820191906000526020600020905b815481529060010190602001808311610c3b57829003601f168201915b5050505050905090565b6000610cfd3384610cf885600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461150890919063ffffffff16565b610e93565b6001905092915050565b6000610d1433848461108a565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e4a57600080fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806118d66024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061188f6022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611110576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806118b16025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061186c6023913960400191505060405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154420390506000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015442039050600954821015801561123d5750600454600354105b156112645760006112568361125188610b49565b610af9565b905061126286826116a8565b505b60095481101580156112795750600454600354105b80156112b157508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156112d85760006112ca826112c587610b49565b610af9565b90506112d685826116a8565b505b61132d83600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015461150890919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055506113c883600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015461159190919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555042600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555042600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b600082821115611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b60008082840190508381101561160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000808211611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b600082848161169b57fe5b0490508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6117608160035461159190919063ffffffff16565b6003819055506117bb81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015461159190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820e667b0b10a189935e97d24bc71a682ffcabf732734105ab4d389c72d9536271164736f6c634300050b0032

Deployed Bytecode Sourcemap

3458:10748:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3458:10748:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6065:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6065:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9694:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9694:148:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8335:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9104:244;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9104:244:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;9104:244:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;9104:244:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;9104:244:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;9104:244:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;9104:244:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;9104:244:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;9104:244:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;9104:244:0;;;;;;;;;;;;;;;:::i;:::-;;10313:256;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10313:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3924:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6923:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3710:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10978:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10978:206:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4384:359;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4384:359:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8489:117;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8489:117:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3969:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6267:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6267:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11687:216;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11687:216:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8938:156;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8938:156:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8613:112;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8613:112:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9413:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9413:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;311:105;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;311:105:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;3878:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6065:83;6102:13;6135:5;6128:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6065:83;:::o;9694:148::-;9759:4;9776:36;9785:10;9797:7;9806:5;9776:8;:36::i;:::-;9830:4;9823:11;;9694:148;;;;:::o;8335:91::-;8379:7;8406:12;;8399:19;;8335:91;:::o;9104:244::-;9223:7;:14;9203:9;:16;:34;9195:43;;;;;;9250:9;9262:1;9250:13;;9245:98;9269:9;:16;9265:1;:20;9245:98;;;9301:34;9310:9;9320:1;9310:12;;;;;;;;;;;;;;9324:7;9332:1;9324:10;;;;;;;;;;;;;;9301:8;:34::i;:::-;;9287:3;;;;;;;9245:98;;;;9104:244;;:::o;10313:256::-;10402:4;10419:36;10429:6;10437:9;10448:6;10419:9;:36::i;:::-;10466:73;10475:6;10483:10;10495:43;10531:6;10495:11;:19;10507:6;10495:19;;;;;;;;;;;;;;;:31;10515:10;10495:31;;;;;;;;;;;;;;;;:35;;:43;;;;:::i;:::-;10466:8;:73::i;:::-;10557:4;10550:11;;10313:256;;;;;:::o;3924:38::-;;;;:::o;6923:83::-;6964:5;6989:9;;;;;;;;;;;6982:16;;6923:83;:::o;3710:30::-;;;;:::o;10978:206::-;11058:4;11075:79;11084:10;11096:7;11105:48;11142:10;11105:11;:23;11117:10;11105:23;;;;;;;;;;;;;;;:32;11129:7;11105:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;11075:8;:79::i;:::-;11172:4;11165:11;;10978:206;;;;:::o;4384:359::-;4467:7;4486:17;4506:30;4522:13;;4506:11;:15;;:30;;;;:::i;:::-;4486:50;;4562:13;;4550:9;:25;4547:81;;;4603:13;;4591:25;;4547:81;4638:18;4659:38;4685:11;;4673:6;4660:9;:19;4659:25;;:38;;;;:::i;:::-;4638:59;;4715:10;4708:17;;;;4384:359;;;;:::o;8489:117::-;8546:7;8573:9;:18;8583:7;8573:18;;;;;;;;;;;;;;;:25;;;8566:32;;8489:117;;;:::o;3969:32::-;;;;:::o;52:28::-;;;;;;;;;;;;;:::o;6267:87::-;6306:13;6339:7;6332:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6267:87;:::o;11687:216::-;11772:4;11789:84;11798:10;11810:7;11819:53;11856:15;11819:11;:23;11831:10;11819:23;;;;;;;;;;;;;;;:32;11843:7;11819:32;;;;;;;;;;;;;;;;:36;;:53;;;;:::i;:::-;11789:8;:84::i;:::-;11891:4;11884:11;;11687:216;;;;:::o;8938:156::-;9007:4;9024:40;9034:10;9046:9;9057:6;9024:9;:40::i;:::-;9082:4;9075:11;;8938:156;;;;:::o;8613:112::-;8667:7;8694:9;:18;8704:7;8694:18;;;;;;;;;;;;;;;:23;;;8687:30;;8613:112;;;:::o;9413:134::-;9485:7;9512:11;:18;9524:5;9512:18;;;;;;;;;;;;;;;:27;9531:7;9512:27;;;;;;;;;;;;;;;;9505:34;;9413:134;;;;:::o;311:105::-;280:5;;;;;;;;;;;266:19;;:10;:19;;;258:28;;;;;;400:9;392:5;;:17;;;;;;;;;;;;;;;;;;311:105;:::o;3878:39::-;;;;:::o;13495:335::-;13605:1;13588:19;;:5;:19;;;;13580:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13686:1;13667:21;;:7;:21;;;;13659:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13770:5;13740:11;:18;13752:5;13740:18;;;;;;;;;;;;;;;:27;13759:7;13740:27;;;;;;;;;;;;;;;:35;;;;13807:7;13791:31;;13800:5;13791:31;;;13816:5;13791:31;;;;;;;;;;;;;;;;;;13495:335;;;:::o;4761:1232::-;4877:1;4859:20;;:6;:20;;;;4851:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4961:1;4940:23;;:9;:23;;;;4932:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5024:25;5059:9;:17;5069:6;5059:17;;;;;;;;;;;;;;;:22;;;5052:3;:30;5024:58;;5093:28;5131:9;:20;5141:9;5131:20;;;;;;;;;;;;;;;:25;;;5124:3;:33;5093:64;;5202:13;;5181:17;:34;;:70;;;;;5235:15;;5220:12;;:30;5181:70;5178:205;;;5267:13;5283:53;5298:17;5318;5328:6;5318:9;:17::i;:::-;5283:14;:53::i;:::-;5267:69;;5351:20;5356:6;5365:5;5351:4;:20::i;:::-;5178:205;;5430:13;;5406:20;:37;;:73;;;;;5463:15;;5448:12;;:30;5406:73;:95;;;;;5492:9;5483:18;;:6;:18;;;;5406:95;5403:241;;;5518:13;5534:59;5549:20;5572;5582:9;5572;:20::i;:::-;5534:14;:59::i;:::-;5518:75;;5609:23;5614:9;5626:5;5609:4;:23::i;:::-;5403:241;;5701:36;5730:6;5701:9;:17;5711:6;5701:17;;;;;;;;;;;;;;;:24;;;:28;;:36;;;;:::i;:::-;5674:9;:17;5684:6;5674:17;;;;;;;;;;;;;;;:24;;:63;;;;5778:39;5810:6;5778:9;:20;5788:9;5778:20;;;;;;;;;;;;;;;:27;;;:31;;:39;;;;:::i;:::-;5748:9;:20;5758:9;5748:20;;;;;;;;;;;;;;;:27;;:69;;;;5863:3;5838:9;:17;5848:6;5838:17;;;;;;;;;;;;;;;:22;;:28;;;;5905:3;5877:9;:20;5887:9;5877:20;;;;;;;;;;;;;;;:25;;:31;;;;5955:9;5938:35;;5947:6;5938:35;;;5966:6;5938:35;;;;;;;;;;;;;;;;;;4761:1232;;;;;:::o;1136:184::-;1194:7;1227:1;1222;:6;;1214:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1274:9;1290:1;1286;:5;1274:17;;1311:1;1304:8;;;1136:184;;;;:::o;680:181::-;738:7;758:9;774:1;770;:5;758:17;;799:1;794;:6;;786:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;852:1;845:8;;;680:181;;;;:::o;2509:333::-;2567:7;2666:1;2662;:5;2654:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2709:9;2725:1;2721;:5;;;;;;2709:17;;2833:1;2826:8;;;2509:333;;;;:::o;7937:321::-;8031:1;8012:21;;:7;:21;;;;8004:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8097:24;8114:6;8097:12;;:16;;:24;;;;:::i;:::-;8082:12;:39;;;;8160:37;8190:6;8160:9;:18;8170:7;8160:18;;;;;;;;;;;;;;;:25;;;:29;;:37;;;;:::i;:::-;8132:9;:18;8142:7;8132:18;;;;;;;;;;;;;;;:25;;:65;;;;8234:7;8213:37;;8230:1;8213:37;;;8243:6;8213:37;;;;;;;;;;;;;;;;;;7937:321;;:::o

Swarm Source

bzzr://e667b0b10a189935e97d24bc71a682ffcabf732734105ab4d389c72d95362711

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.