ETH Price: $2,096.27 (+2.35%)

Contract

0x4dD3B5efDd4Bc20b4b37D7b61e6119b86830e787
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Draw Down144249022022-03-20 18:34:481453 days ago1647801288IN
0x4dD3B5ef...86830e787
0 ETH0.0013221921.9541775
Draw Down141061542022-01-30 8:49:011502 days ago1643532541IN
0x4dD3B5ef...86830e787
0 ETH0.0044546866.74681427
Draw Down139735532022-01-09 20:38:081523 days ago1641760688IN
0x4dD3B5ef...86830e787
0 ETH0.01216374182.25571864
Draw Down135701752021-11-07 15:32:431586 days ago1636299163IN
0x4dD3B5ef...86830e787
0 ETH0.0090572135.70874822
Draw Down133327972021-10-01 10:10:161623 days ago1633083016IN
0x4dD3B5ef...86830e787
0 ETH0.0058363569.61297642
Draw Down131784382021-09-07 11:47:271647 days ago1631015247IN
0x4dD3B5ef...86830e787
0 ETH0.0086722486
Create Vesting S...127852502021-07-08 6:59:521709 days ago1625727592IN
0x4dD3B5ef...86830e787
0 ETH0.0022462230

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

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

Contract Name:
MarketingVesting

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-08
*/

/**
 *Submitted for verification at Etherscan.io on 2021-05-18
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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) {
        // Solidity only automatically asserts when dividing by 0
        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;
    }

    /**
     * @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) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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);
}

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor ()  {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

contract MarketingVesting is ReentrancyGuard {
    using SafeMath for uint256;

    /// @notice event emitted when a vesting schedule is created
    event ScheduleCreated(address indexed _beneficiary);

    /// @notice event emitted when a successful drawn down of vesting tokens is made
    event DrawDown(address indexed _beneficiary, uint256 indexed _amount);

    /// @notice start of vesting period as a timestamp
    uint256 public start;

    /// @notice end of vesting period as a timestamp
    uint256 public end;

    /// @notice cliff duration in seconds
    uint256 public cliffDuration;

    /// @notice owner address set on construction
    address public owner;

    /// @notice amount vested for a beneficiary. Note beneficiary address can not be reused
    mapping(address => uint256) public vestedAmount;

    /// @notice cumulative total of tokens drawn down (and transferred from the deposit account) per beneficiary
    mapping(address => uint256) public totalDrawn;

    /// @notice last drawn down time (seconds) per beneficiary
    mapping(address => uint256) public lastDrawnAt;

    /// @notice ERC20 token we are vesting
    IERC20 public token;

    /**
     * @notice Construct a new vesting contract
     * @param _token ERC20 token
     * @param _start start timestamp
     * @param _end end timestamp
     * @param _cliffDurationInSecs cliff duration in seconds
     * @dev caller on constructor set as owner; this can not be changed
     */
    constructor(IERC20 _token, uint256 _start, uint256 _end, uint256 _cliffDurationInSecs)  {
        require(address(_token) != address(0), "VestingContract::constructor: Invalid token");
        require(_end >= _start, "VestingContract::constructor: Start must be before end");

        token = _token;
        owner = msg.sender;

        start = _start;
        end = _end;
        cliffDuration = _cliffDurationInSecs;
    }
    
    /**
     * @notice Set Start time, End time and Cliff duration for vesting schedules
     * @param _start start timestamp
     * @param _end end timestamp
     * @param _cliffDurationInSecs cliff duration in seconds
     */
    function setVestingTime(uint256 _start, uint256 _end, uint256 _cliffDurationInSecs) public {
        require(msg.sender == owner, "VestingContract::createVestingSchedules: Only Owner");
        start = _start;
        end = _end;
        cliffDuration = _cliffDurationInSecs;
    }

    /**
     * @notice Create new vesting schedules in a batch
     * @notice A transfer is used to bring tokens into the VestingDepositAccount so pre-approval is required
     * @param _beneficiaries array of beneficiaries of the vested tokens
     * @param _amounts array of amount of tokens (in wei)
     * @dev array index of address should be the same as the array index of the amount
     */
    function createVestingSchedules(
        address[] calldata _beneficiaries,
        uint256[] calldata _amounts
    ) external returns (bool) {
        require(msg.sender == owner, "VestingContract::createVestingSchedules: Only Owner");
        require(_beneficiaries.length > 0, "VestingContract::createVestingSchedules: Empty Data");
        require(
            _beneficiaries.length == _amounts.length,
            "VestingContract::createVestingSchedules: Array lengths do not match"
        );

        bool result = true;

        for(uint i = 0; i < _beneficiaries.length; i++) {
            address beneficiary = _beneficiaries[i];
            uint256 amount = _amounts[i];
            _createVestingSchedule(beneficiary, amount);
        }

        return result;
    }

    /**
     * @notice Create a new vesting schedule
     * @notice A transfer is used to bring tokens into the VestingDepositAccount so pre-approval is required
     * @param _beneficiary beneficiary of the vested tokens
     * @param _amount amount of tokens (in wei)
     */
    function createVestingSchedule(address _beneficiary, uint256 _amount) external returns (bool) {
        require(msg.sender == owner, "VestingContract::createVestingSchedule: Only Owner");
        return _createVestingSchedule(_beneficiary, _amount);
    }

    /**
     * @notice Transfers ownership role
     * @notice Changes the owner of this contract to a new address
     * @dev Only owner
     * @param _newOwner beneficiary to vest remaining tokens to
     */
    function transferOwnership(address _newOwner) external {
        require(msg.sender == owner, "VestingContract::transferOwnership: Only owner");
        owner = _newOwner;
    }

    /**
     * @notice Draws down any vested tokens due
     * @dev Must be called directly by the beneficiary assigned the tokens in the schedule
     */
    function drawDown() nonReentrant external returns (bool) {
        return _drawDown(msg.sender);
    }


    // Accessors

    /**
     * @notice Vested token balance for a beneficiary
     * @dev Must be called directly by the beneficiary assigned the tokens in the schedule
     * @return _tokenBalance total balance proxied via the ERC20 token
     */
    function tokenBalance() external view returns (uint256) {
        return token.balanceOf(address(this));
    }

    /**
     * @notice Vesting schedule and associated data for a beneficiary
     * @dev Must be called directly by the beneficiary assigned the tokens in the schedule
     * @return _amount
     * @return _totalDrawn
     * @return _lastDrawnAt
     * @return _remainingBalance
     */
    function vestingScheduleForBeneficiary(address _beneficiary)
    external view
    returns (uint256 _amount, uint256 _totalDrawn, uint256 _lastDrawnAt, uint256 _remainingBalance) {
        return (
        vestedAmount[_beneficiary],
        totalDrawn[_beneficiary],
        lastDrawnAt[_beneficiary],
        vestedAmount[_beneficiary].sub(totalDrawn[_beneficiary])
        );
    }

    /**
     * @notice Draw down amount currently available (based on the block timestamp)
     * @param _beneficiary beneficiary of the vested tokens
     * @return _amount tokens due from vesting schedule
     */
    function availableDrawDownAmount(address _beneficiary) external view returns (uint256 _amount) {
        return _availableDrawDownAmount(_beneficiary);
    }

    /**
     * @notice Balance remaining in vesting schedule
     * @param _beneficiary beneficiary of the vested tokens
     * @return _remainingBalance tokens still due (and currently locked) from vesting schedule
     */
    function remainingBalance(address _beneficiary) external view returns (uint256) {
        return vestedAmount[_beneficiary].sub(totalDrawn[_beneficiary]);
    }
    
    function updateVestingSchedule(address _beneficiary, uint256 _amount) public returns (bool){
        require(msg.sender == owner, "VestingContract::createVestingSchedule: Only Owner");
        require(_beneficiary != address(0), "VestingContract::createVestingSchedule: Beneficiary cannot be empty");
        require(_amount > 0, "VestingContract::createVestingSchedule: Amount cannot be empty");
        
        vestedAmount[_beneficiary] = vestedAmount[_beneficiary].add(_amount);
        
        // Vest the tokens into the deposit account and delegate to the beneficiary
        require(
            token.transferFrom(msg.sender, address(this), _amount),
            "VestingContract::createVestingSchedule: Unable to escrow tokens"
        );

        emit ScheduleCreated(_beneficiary);

        return true;
    }

    // Internal

    function _createVestingSchedule(address _beneficiary, uint256 _amount) internal returns (bool) {
        require(_beneficiary != address(0), "VestingContract::createVestingSchedule: Beneficiary cannot be empty");
        require(_amount > 0, "VestingContract::createVestingSchedule: Amount cannot be empty");

        // Ensure one per address
        require(vestedAmount[_beneficiary] == 0, "VestingContract::createVestingSchedule: Schedule already in flight");

        vestedAmount[_beneficiary] = _amount;

        // Vest the tokens into the deposit account and delegate to the beneficiary
        require(
            token.transferFrom(msg.sender, address(this), _amount),
            "VestingContract::createVestingSchedule: Unable to escrow tokens"
        );

        emit ScheduleCreated(_beneficiary);

        return true;
    }

    function _drawDown(address _beneficiary) internal returns (bool) {
        require(vestedAmount[_beneficiary] > 0, "VestingContract::_drawDown: There is no schedule currently in flight");

        uint256 amount = _availableDrawDownAmount(_beneficiary);
        require(amount > 0, "VestingContract::_drawDown: No allowance left to withdraw");

        // Update last drawn to now
        lastDrawnAt[_beneficiary] = _getNow();

        // Increase total drawn amount
        totalDrawn[_beneficiary] = totalDrawn[_beneficiary].add(amount);

        // Safety measure - this should never trigger
        require(
            totalDrawn[_beneficiary] <= vestedAmount[_beneficiary],
            "VestingContract::_drawDown: Safety Mechanism - Drawn exceeded Amount Vested"
        );

        // Issue tokens to beneficiary
        require(token.transfer(_beneficiary, amount), "VestingContract::_drawDown: Unable to transfer tokens");

        emit DrawDown(_beneficiary, amount);

        return true;
    }

    function _getNow() public view returns (uint256) {
        return block.timestamp;
    }
    

    function _availableDrawDownAmount(address _beneficiary) internal view returns (uint256 _amount) {

        // Cliff Period
        if (_getNow() <= start.add(cliffDuration)) {
            // the cliff period has not ended, no tokens to draw down
            return 0;
        }

        // Schedule complete
        if (_getNow() > end) {
            return vestedAmount[_beneficiary].sub(totalDrawn[_beneficiary]);
        }

        // Schedule is active

        // Work out when the last invocation was
        uint256 timeLastDrawnOrStart = lastDrawnAt[_beneficiary] == 0 ? start : lastDrawnAt[_beneficiary];

        // Find out how much time has past since last invocation
        uint256 timePassedSinceLastInvocation = _getNow().sub(timeLastDrawnOrStart);

        // Work out how many due tokens - time passed * rate per second
        uint256 drawDownRate = vestedAmount[_beneficiary].div(end.sub(start));
        uint256 amount = timePassedSinceLastInvocation.mul(drawDownRate);

        return amount;
    }
    
    function transferAnyERC20Tokens(address _tokenAddr, address _to, uint _amount) public  {
        require(msg.sender == owner, "VestingContract::createVestingSchedule: Only Owner");
        IERC20(_tokenAddr).transfer(_to, _amount);
    }
    
    function _transferBalanceToOwner(uint _amount) public {
        require(msg.sender == owner, "VestingContract::createVestingSchedules: Only Owner");
        require(token.transfer(owner, _amount), "VestingContract::_drawDown: Unable to transfer tokens");
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"},{"internalType":"uint256","name":"_cliffDurationInSecs","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_beneficiary","type":"address"},{"indexed":true,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"DrawDown","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_beneficiary","type":"address"}],"name":"ScheduleCreated","type":"event"},{"inputs":[],"name":"_getNow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"_transferBalanceToOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"}],"name":"availableDrawDownAmount","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cliffDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"createVestingSchedule","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_beneficiaries","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"createVestingSchedules","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"drawDown","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"end","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastDrawnAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"}],"name":"remainingBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"},{"internalType":"uint256","name":"_cliffDurationInSecs","type":"uint256"}],"name":"setVestingTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalDrawn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddr","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferAnyERC20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateVestingSchedule","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vestedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"}],"name":"vestingScheduleForBeneficiary","outputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_totalDrawn","type":"uint256"},{"internalType":"uint256","name":"_lastDrawnAt","type":"uint256"},{"internalType":"uint256","name":"_remainingBalance","type":"uint256"}],"stateMutability":"view","type":"function"}]

0x60806040523480156200001157600080fd5b5060405162003117380380620031178339818101604052810190620000379190620001c7565b6001600081905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620000b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000a99062000325565b60405180910390fd5b82821015620000f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ef9062000303565b60405180910390fd5b83600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600181905550816002819055508060038190555050505050620003de565b600081519050620001aa81620003aa565b92915050565b600081519050620001c181620003c4565b92915050565b60008060008060808587031215620001de57600080fd5b6000620001ee8782880162000199565b94505060206200020187828801620001b0565b93505060406200021487828801620001b0565b92505060606200022787828801620001b0565b91505092959194509250565b60006200024260368362000347565b91507f56657374696e67436f6e74726163743a3a636f6e7374727563746f723a20537460008301527f617274206d757374206265206265666f726520656e64000000000000000000006020830152604082019050919050565b6000620002aa602b8362000347565b91507f56657374696e67436f6e74726163743a3a636f6e7374727563746f723a20496e60008301527f76616c696420746f6b656e0000000000000000000000000000000000000000006020830152604082019050919050565b600060208201905081810360008301526200031e8162000233565b9050919050565b6000602082019050818103600083015262000340816200029b565b9050919050565b600082825260208201905092915050565b6000620003658262000380565b9050919050565b6000620003798262000358565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b620003b5816200036c565b8114620003c157600080fd5b50565b620003cf81620003a0565b8114620003db57600080fd5b50565b612d2980620003ee6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063a78beb88116100b8578063d85349f71161007c578063d85349f71461038d578063da0ebf8e146103ab578063dfc217eb146103db578063efbe1c1c146103f7578063f2fde38b14610415578063fc0c546a1461043157610137565b8063a78beb88146102be578063a9ac7f20146102dc578063be9a65551461030c578063c570b8351461032a578063d3a637f21461035d57610137565b80636a395ccb116100ff5780636a395ccb1461021a5780636aa22091146102365780638da5cb5b1461026657806395bad4be146102845780639e1a4d19146102a057610137565b806315298b5e1461013c578063384711cc1461016c578063419544a01461019c578063634107f8146101cc57806365281d15146101ea575b600080fd5b61015660048036038101906101519190611db9565b61044f565b60405161016391906129c6565b60405180910390f35b61018660048036038101906101819190611db9565b610461565b60405161019391906129c6565b60405180910390f35b6101b660048036038101906101b19190611e31565b610479565b6040516101c3919061276e565b60405180910390f35b6101d461051d565b6040516101e1919061276e565b60405180910390f35b61020460048036038101906101ff9190611db9565b610583565b60405161021191906129c6565b60405180910390f35b610234600480360381019061022f9190611de2565b61061d565b005b610250600480360381019061024b9190611e6d565b610740565b60405161025d919061276e565b60405180910390f35b61026e610937565b60405161027b91906126f3565b60405180910390f35b61029e60048036038101906102999190611f0b565b61095d565b005b6102a8610b00565b6040516102b591906129c6565b60405180910390f35b6102c6610bb2565b6040516102d391906129c6565b60405180910390f35b6102f660048036038101906102f19190611e31565b610bba565b604051610303919061276e565b60405180910390f35b610314610ed1565b60405161032191906129c6565b60405180910390f35b610344600480360381019061033f9190611db9565b610ed7565b60405161035494939291906129e1565b60405180910390f35b61037760048036038101906103729190611db9565b61103d565b60405161038491906129c6565b60405180910390f35b610395611055565b6040516103a291906129c6565b60405180910390f35b6103c560048036038101906103c09190611db9565b61105b565b6040516103d291906129c6565b60405180910390f35b6103f560048036038101906103f09190611f5d565b611073565b005b6103ff61111d565b60405161040c91906129c6565b60405180910390f35b61042f600480360381019061042a9190611db9565b611123565b005b6104396111f7565b6040516104469190612789565b60405180910390f35b600061045a8261121d565b9050919050565b60056020528060005260406000206000915090505481565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461050b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050290612826565b60405180910390fd5b6105158383611436565b905092915050565b600060026000541415610565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055c906129a6565b60405180910390fd5b6002600081905550610576336116ed565b9050600160008190555090565b6000610616600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a9d90919063ffffffff16565b9050919050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a490612826565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016106e8929190612745565b602060405180830381600087803b15801561070257600080fd5b505af1158015610716573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073a9190611ee2565b50505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c9906128e6565b60405180910390fd5b60008585905011610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f90612926565b60405180910390fd5b828290508585905014610860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085790612806565b60405180910390fd5b60006001905060005b8686905081101561092a5760008787838181106108af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906108c49190611db9565b90506000868684818110610901577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013590506109148282611436565b505050808061092290612bf6565b915050610869565b5080915050949350505050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e4906128e6565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610a6c929190612745565b602060405180830381600087803b158015610a8657600080fd5b505af1158015610a9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abe9190611ee2565b610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af4906127c6565b60405180910390fd5b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b5d91906126f3565b60206040518083038186803b158015610b7557600080fd5b505afa158015610b89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bad9190611f34565b905090565b600042905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390612826565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390612886565b60405180910390fd5b60008211610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf690612906565b60405180910390fd5b610d5182600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ae790919063ffffffff16565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401610df39392919061270e565b602060405180830381600087803b158015610e0d57600080fd5b505af1158015610e21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e459190611ee2565b610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90612986565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff167f0c1f0a8580825e2b9c0e184186aba220d33d5abf7ee14f99dbe0d7886dbb3ee460405160405180910390a26001905092915050565b60015481565b600080600080600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461102e600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a9d90919063ffffffff16565b93509350935093509193509193565b60066020528060005260406000206000915090505481565b60035481565b60076020528060005260406000206000915090505481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa906128e6565b60405180910390fd5b826001819055508160028190555080600381905550505050565b60025481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90612966565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611236600354600154611ae790919063ffffffff16565b61123e610bb2565b1161124c5760009050611431565b600254611257610bb2565b11156112f5576112ee600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a9d90919063ffffffff16565b9050611431565b600080600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461138257600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611386565b6001545b905060006113a482611396610bb2565b611a9d90919063ffffffff16565b905060006114106113c2600154600254611a9d90919063ffffffff16565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4590919063ffffffff16565b905060006114278284611b8f90919063ffffffff16565b9050809450505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90612886565b60405180910390fd5b600082116114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190612906565b60405180910390fd5b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390612846565b60405180910390fd5b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b815260040161160f9392919061270e565b602060405180830381600087803b15801561162957600080fd5b505af115801561163d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116619190611ee2565b6116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790612986565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff167f0c1f0a8580825e2b9c0e184186aba220d33d5abf7ee14f99dbe0d7886dbb3ee460405160405180910390a26001905092915050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611767906128a6565b60405180910390fd5b600061177b8361121d565b9050600081116117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b790612946565b60405180910390fd5b6117c8610bb2565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061185d81600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ae790919063ffffffff16565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890612866565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b81526004016119be929190612745565b602060405180830381600087803b1580156119d857600080fd5b505af11580156119ec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a109190611ee2565b611a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a46906127c6565b60405180910390fd5b808373ffffffffffffffffffffffffffffffffffffffff167f59901f31ae2f183042d33e59b8b37be57d21ddf6351ebf066ee2eace7229bdfa60405160405180910390a36001915050919050565b6000611adf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c0a565b905092915050565b6000808284611af69190612a42565b905083811015611b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b32906127e6565b60405180910390fd5b8091505092915050565b6000611b8783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c6e565b905092915050565b600080831415611ba25760009050611c04565b60008284611bb09190612ac9565b9050828482611bbf9190612a98565b14611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf6906128c6565b60405180910390fd5b809150505b92915050565b6000838311158290611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4991906127a4565b60405180910390fd5b5060008385611c619190612b23565b9050809150509392505050565b60008083118290611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac91906127a4565b60405180910390fd5b5060008385611cc49190612a98565b9050809150509392505050565b600081359050611ce081612cae565b92915050565b60008083601f840112611cf857600080fd5b8235905067ffffffffffffffff811115611d1157600080fd5b602083019150836020820283011115611d2957600080fd5b9250929050565b60008083601f840112611d4257600080fd5b8235905067ffffffffffffffff811115611d5b57600080fd5b602083019150836020820283011115611d7357600080fd5b9250929050565b600081519050611d8981612cc5565b92915050565b600081359050611d9e81612cdc565b92915050565b600081519050611db381612cdc565b92915050565b600060208284031215611dcb57600080fd5b6000611dd984828501611cd1565b91505092915050565b600080600060608486031215611df757600080fd5b6000611e0586828701611cd1565b9350506020611e1686828701611cd1565b9250506040611e2786828701611d8f565b9150509250925092565b60008060408385031215611e4457600080fd5b6000611e5285828601611cd1565b9250506020611e6385828601611d8f565b9150509250929050565b60008060008060408587031215611e8357600080fd5b600085013567ffffffffffffffff811115611e9d57600080fd5b611ea987828801611ce6565b9450945050602085013567ffffffffffffffff811115611ec857600080fd5b611ed487828801611d30565b925092505092959194509250565b600060208284031215611ef457600080fd5b6000611f0284828501611d7a565b91505092915050565b600060208284031215611f1d57600080fd5b6000611f2b84828501611d8f565b91505092915050565b600060208284031215611f4657600080fd5b6000611f5484828501611da4565b91505092915050565b600080600060608486031215611f7257600080fd5b6000611f8086828701611d8f565b9350506020611f9186828701611d8f565b9250506040611fa286828701611d8f565b9150509250925092565b611fb581612b57565b82525050565b611fc481612b69565b82525050565b611fd381612b9f565b82525050565b6000611fe482612a26565b611fee8185612a31565b9350611ffe818560208601612bc3565b61200781612c9d565b840191505092915050565b600061201f603583612a31565b91507f56657374696e67436f6e74726163743a3a5f64726177446f776e3a20556e616260008301527f6c6520746f207472616e7366657220746f6b656e7300000000000000000000006020830152604082019050919050565b6000612085601b83612a31565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006120c5604383612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c65733a204172726179206c656e6774687320646f206e6f74206d6160208301527f74636800000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000612151603283612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c653a204f6e6c79204f776e657200000000000000000000000000006020830152604082019050919050565b60006121b7604283612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c653a205363686564756c6520616c726561647920696e20666c696760208301527f68740000000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000612243604b83612a31565b91507f56657374696e67436f6e74726163743a3a5f64726177446f776e3a205361666560008301527f7479204d656368616e69736d202d20447261776e20657863656564656420416d60208301527f6f756e74205665737465640000000000000000000000000000000000000000006040830152606082019050919050565b60006122cf604383612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c653a2042656e65666963696172792063616e6e6f7420626520656d60208301527f70747900000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b600061235b604483612a31565b91507f56657374696e67436f6e74726163743a3a5f64726177446f776e3a205468657260008301527f65206973206e6f207363686564756c652063757272656e746c7920696e20666c60208301527f69676874000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b60006123e7602183612a31565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061244d603383612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c65733a204f6e6c79204f776e6572000000000000000000000000006020830152604082019050919050565b60006124b3603e83612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c653a20416d6f756e742063616e6e6f7420626520656d70747900006020830152604082019050919050565b6000612519603383612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c65733a20456d7074792044617461000000000000000000000000006020830152604082019050919050565b600061257f603983612a31565b91507f56657374696e67436f6e74726163743a3a5f64726177446f776e3a204e6f206160008301527f6c6c6f77616e6365206c65667420746f207769746864726177000000000000006020830152604082019050919050565b60006125e5602e83612a31565b91507f56657374696e67436f6e74726163743a3a7472616e736665724f776e6572736860008301527f69703a204f6e6c79206f776e65720000000000000000000000000000000000006020830152604082019050919050565b600061264b603f83612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c653a20556e61626c6520746f20657363726f7720746f6b656e73006020830152604082019050919050565b60006126b1601f83612a31565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6126ed81612b95565b82525050565b60006020820190506127086000830184611fac565b92915050565b60006060820190506127236000830186611fac565b6127306020830185611fac565b61273d60408301846126e4565b949350505050565b600060408201905061275a6000830185611fac565b61276760208301846126e4565b9392505050565b60006020820190506127836000830184611fbb565b92915050565b600060208201905061279e6000830184611fca565b92915050565b600060208201905081810360008301526127be8184611fd9565b905092915050565b600060208201905081810360008301526127df81612012565b9050919050565b600060208201905081810360008301526127ff81612078565b9050919050565b6000602082019050818103600083015261281f816120b8565b9050919050565b6000602082019050818103600083015261283f81612144565b9050919050565b6000602082019050818103600083015261285f816121aa565b9050919050565b6000602082019050818103600083015261287f81612236565b9050919050565b6000602082019050818103600083015261289f816122c2565b9050919050565b600060208201905081810360008301526128bf8161234e565b9050919050565b600060208201905081810360008301526128df816123da565b9050919050565b600060208201905081810360008301526128ff81612440565b9050919050565b6000602082019050818103600083015261291f816124a6565b9050919050565b6000602082019050818103600083015261293f8161250c565b9050919050565b6000602082019050818103600083015261295f81612572565b9050919050565b6000602082019050818103600083015261297f816125d8565b9050919050565b6000602082019050818103600083015261299f8161263e565b9050919050565b600060208201905081810360008301526129bf816126a4565b9050919050565b60006020820190506129db60008301846126e4565b92915050565b60006080820190506129f660008301876126e4565b612a0360208301866126e4565b612a1060408301856126e4565b612a1d60608301846126e4565b95945050505050565b600081519050919050565b600082825260208201905092915050565b6000612a4d82612b95565b9150612a5883612b95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a8d57612a8c612c3f565b5b828201905092915050565b6000612aa382612b95565b9150612aae83612b95565b925082612abe57612abd612c6e565b5b828204905092915050565b6000612ad482612b95565b9150612adf83612b95565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b1857612b17612c3f565b5b828202905092915050565b6000612b2e82612b95565b9150612b3983612b95565b925082821015612b4c57612b4b612c3f565b5b828203905092915050565b6000612b6282612b75565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612baa82612bb1565b9050919050565b6000612bbc82612b75565b9050919050565b60005b83811015612be1578082015181840152602081019050612bc6565b83811115612bf0576000848401525b50505050565b6000612c0182612b95565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c3457612c33612c3f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b612cb781612b57565b8114612cc257600080fd5b50565b612cce81612b69565b8114612cd957600080fd5b50565b612ce581612b95565b8114612cf057600080fd5b5056fea2646970667358221220f13a8f5791a36b50c5b2d7e7a8934ba12e20264e6e5adb2b46530b0a2df44a2464736f6c6343000800003300000000000000000000000084cffa78b2fbbeec8c37391d2b12a04d2030845e0000000000000000000000000000000000000000000000000000000060e4a128000000000000000000000000000000000000000000000000000000006224fda80000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063a78beb88116100b8578063d85349f71161007c578063d85349f71461038d578063da0ebf8e146103ab578063dfc217eb146103db578063efbe1c1c146103f7578063f2fde38b14610415578063fc0c546a1461043157610137565b8063a78beb88146102be578063a9ac7f20146102dc578063be9a65551461030c578063c570b8351461032a578063d3a637f21461035d57610137565b80636a395ccb116100ff5780636a395ccb1461021a5780636aa22091146102365780638da5cb5b1461026657806395bad4be146102845780639e1a4d19146102a057610137565b806315298b5e1461013c578063384711cc1461016c578063419544a01461019c578063634107f8146101cc57806365281d15146101ea575b600080fd5b61015660048036038101906101519190611db9565b61044f565b60405161016391906129c6565b60405180910390f35b61018660048036038101906101819190611db9565b610461565b60405161019391906129c6565b60405180910390f35b6101b660048036038101906101b19190611e31565b610479565b6040516101c3919061276e565b60405180910390f35b6101d461051d565b6040516101e1919061276e565b60405180910390f35b61020460048036038101906101ff9190611db9565b610583565b60405161021191906129c6565b60405180910390f35b610234600480360381019061022f9190611de2565b61061d565b005b610250600480360381019061024b9190611e6d565b610740565b60405161025d919061276e565b60405180910390f35b61026e610937565b60405161027b91906126f3565b60405180910390f35b61029e60048036038101906102999190611f0b565b61095d565b005b6102a8610b00565b6040516102b591906129c6565b60405180910390f35b6102c6610bb2565b6040516102d391906129c6565b60405180910390f35b6102f660048036038101906102f19190611e31565b610bba565b604051610303919061276e565b60405180910390f35b610314610ed1565b60405161032191906129c6565b60405180910390f35b610344600480360381019061033f9190611db9565b610ed7565b60405161035494939291906129e1565b60405180910390f35b61037760048036038101906103729190611db9565b61103d565b60405161038491906129c6565b60405180910390f35b610395611055565b6040516103a291906129c6565b60405180910390f35b6103c560048036038101906103c09190611db9565b61105b565b6040516103d291906129c6565b60405180910390f35b6103f560048036038101906103f09190611f5d565b611073565b005b6103ff61111d565b60405161040c91906129c6565b60405180910390f35b61042f600480360381019061042a9190611db9565b611123565b005b6104396111f7565b6040516104469190612789565b60405180910390f35b600061045a8261121d565b9050919050565b60056020528060005260406000206000915090505481565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461050b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050290612826565b60405180910390fd5b6105158383611436565b905092915050565b600060026000541415610565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055c906129a6565b60405180910390fd5b6002600081905550610576336116ed565b9050600160008190555090565b6000610616600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a9d90919063ffffffff16565b9050919050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a490612826565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016106e8929190612745565b602060405180830381600087803b15801561070257600080fd5b505af1158015610716573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073a9190611ee2565b50505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c9906128e6565b60405180910390fd5b60008585905011610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f90612926565b60405180910390fd5b828290508585905014610860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085790612806565b60405180910390fd5b60006001905060005b8686905081101561092a5760008787838181106108af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906108c49190611db9565b90506000868684818110610901577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013590506109148282611436565b505050808061092290612bf6565b915050610869565b5080915050949350505050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e4906128e6565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610a6c929190612745565b602060405180830381600087803b158015610a8657600080fd5b505af1158015610a9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abe9190611ee2565b610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af4906127c6565b60405180910390fd5b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b5d91906126f3565b60206040518083038186803b158015610b7557600080fd5b505afa158015610b89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bad9190611f34565b905090565b600042905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390612826565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390612886565b60405180910390fd5b60008211610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf690612906565b60405180910390fd5b610d5182600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ae790919063ffffffff16565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401610df39392919061270e565b602060405180830381600087803b158015610e0d57600080fd5b505af1158015610e21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e459190611ee2565b610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90612986565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff167f0c1f0a8580825e2b9c0e184186aba220d33d5abf7ee14f99dbe0d7886dbb3ee460405160405180910390a26001905092915050565b60015481565b600080600080600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461102e600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a9d90919063ffffffff16565b93509350935093509193509193565b60066020528060005260406000206000915090505481565b60035481565b60076020528060005260406000206000915090505481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa906128e6565b60405180910390fd5b826001819055508160028190555080600381905550505050565b60025481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90612966565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611236600354600154611ae790919063ffffffff16565b61123e610bb2565b1161124c5760009050611431565b600254611257610bb2565b11156112f5576112ee600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a9d90919063ffffffff16565b9050611431565b600080600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461138257600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611386565b6001545b905060006113a482611396610bb2565b611a9d90919063ffffffff16565b905060006114106113c2600154600254611a9d90919063ffffffff16565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4590919063ffffffff16565b905060006114278284611b8f90919063ffffffff16565b9050809450505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90612886565b60405180910390fd5b600082116114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190612906565b60405180910390fd5b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390612846565b60405180910390fd5b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b815260040161160f9392919061270e565b602060405180830381600087803b15801561162957600080fd5b505af115801561163d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116619190611ee2565b6116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790612986565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff167f0c1f0a8580825e2b9c0e184186aba220d33d5abf7ee14f99dbe0d7886dbb3ee460405160405180910390a26001905092915050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611767906128a6565b60405180910390fd5b600061177b8361121d565b9050600081116117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b790612946565b60405180910390fd5b6117c8610bb2565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061185d81600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ae790919063ffffffff16565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890612866565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b81526004016119be929190612745565b602060405180830381600087803b1580156119d857600080fd5b505af11580156119ec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a109190611ee2565b611a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a46906127c6565b60405180910390fd5b808373ffffffffffffffffffffffffffffffffffffffff167f59901f31ae2f183042d33e59b8b37be57d21ddf6351ebf066ee2eace7229bdfa60405160405180910390a36001915050919050565b6000611adf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c0a565b905092915050565b6000808284611af69190612a42565b905083811015611b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b32906127e6565b60405180910390fd5b8091505092915050565b6000611b8783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c6e565b905092915050565b600080831415611ba25760009050611c04565b60008284611bb09190612ac9565b9050828482611bbf9190612a98565b14611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf6906128c6565b60405180910390fd5b809150505b92915050565b6000838311158290611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4991906127a4565b60405180910390fd5b5060008385611c619190612b23565b9050809150509392505050565b60008083118290611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac91906127a4565b60405180910390fd5b5060008385611cc49190612a98565b9050809150509392505050565b600081359050611ce081612cae565b92915050565b60008083601f840112611cf857600080fd5b8235905067ffffffffffffffff811115611d1157600080fd5b602083019150836020820283011115611d2957600080fd5b9250929050565b60008083601f840112611d4257600080fd5b8235905067ffffffffffffffff811115611d5b57600080fd5b602083019150836020820283011115611d7357600080fd5b9250929050565b600081519050611d8981612cc5565b92915050565b600081359050611d9e81612cdc565b92915050565b600081519050611db381612cdc565b92915050565b600060208284031215611dcb57600080fd5b6000611dd984828501611cd1565b91505092915050565b600080600060608486031215611df757600080fd5b6000611e0586828701611cd1565b9350506020611e1686828701611cd1565b9250506040611e2786828701611d8f565b9150509250925092565b60008060408385031215611e4457600080fd5b6000611e5285828601611cd1565b9250506020611e6385828601611d8f565b9150509250929050565b60008060008060408587031215611e8357600080fd5b600085013567ffffffffffffffff811115611e9d57600080fd5b611ea987828801611ce6565b9450945050602085013567ffffffffffffffff811115611ec857600080fd5b611ed487828801611d30565b925092505092959194509250565b600060208284031215611ef457600080fd5b6000611f0284828501611d7a565b91505092915050565b600060208284031215611f1d57600080fd5b6000611f2b84828501611d8f565b91505092915050565b600060208284031215611f4657600080fd5b6000611f5484828501611da4565b91505092915050565b600080600060608486031215611f7257600080fd5b6000611f8086828701611d8f565b9350506020611f9186828701611d8f565b9250506040611fa286828701611d8f565b9150509250925092565b611fb581612b57565b82525050565b611fc481612b69565b82525050565b611fd381612b9f565b82525050565b6000611fe482612a26565b611fee8185612a31565b9350611ffe818560208601612bc3565b61200781612c9d565b840191505092915050565b600061201f603583612a31565b91507f56657374696e67436f6e74726163743a3a5f64726177446f776e3a20556e616260008301527f6c6520746f207472616e7366657220746f6b656e7300000000000000000000006020830152604082019050919050565b6000612085601b83612a31565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006120c5604383612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c65733a204172726179206c656e6774687320646f206e6f74206d6160208301527f74636800000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000612151603283612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c653a204f6e6c79204f776e657200000000000000000000000000006020830152604082019050919050565b60006121b7604283612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c653a205363686564756c6520616c726561647920696e20666c696760208301527f68740000000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000612243604b83612a31565b91507f56657374696e67436f6e74726163743a3a5f64726177446f776e3a205361666560008301527f7479204d656368616e69736d202d20447261776e20657863656564656420416d60208301527f6f756e74205665737465640000000000000000000000000000000000000000006040830152606082019050919050565b60006122cf604383612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c653a2042656e65666963696172792063616e6e6f7420626520656d60208301527f70747900000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b600061235b604483612a31565b91507f56657374696e67436f6e74726163743a3a5f64726177446f776e3a205468657260008301527f65206973206e6f207363686564756c652063757272656e746c7920696e20666c60208301527f69676874000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b60006123e7602183612a31565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061244d603383612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c65733a204f6e6c79204f776e6572000000000000000000000000006020830152604082019050919050565b60006124b3603e83612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c653a20416d6f756e742063616e6e6f7420626520656d70747900006020830152604082019050919050565b6000612519603383612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c65733a20456d7074792044617461000000000000000000000000006020830152604082019050919050565b600061257f603983612a31565b91507f56657374696e67436f6e74726163743a3a5f64726177446f776e3a204e6f206160008301527f6c6c6f77616e6365206c65667420746f207769746864726177000000000000006020830152604082019050919050565b60006125e5602e83612a31565b91507f56657374696e67436f6e74726163743a3a7472616e736665724f776e6572736860008301527f69703a204f6e6c79206f776e65720000000000000000000000000000000000006020830152604082019050919050565b600061264b603f83612a31565b91507f56657374696e67436f6e74726163743a3a63726561746556657374696e67536360008301527f686564756c653a20556e61626c6520746f20657363726f7720746f6b656e73006020830152604082019050919050565b60006126b1601f83612a31565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6126ed81612b95565b82525050565b60006020820190506127086000830184611fac565b92915050565b60006060820190506127236000830186611fac565b6127306020830185611fac565b61273d60408301846126e4565b949350505050565b600060408201905061275a6000830185611fac565b61276760208301846126e4565b9392505050565b60006020820190506127836000830184611fbb565b92915050565b600060208201905061279e6000830184611fca565b92915050565b600060208201905081810360008301526127be8184611fd9565b905092915050565b600060208201905081810360008301526127df81612012565b9050919050565b600060208201905081810360008301526127ff81612078565b9050919050565b6000602082019050818103600083015261281f816120b8565b9050919050565b6000602082019050818103600083015261283f81612144565b9050919050565b6000602082019050818103600083015261285f816121aa565b9050919050565b6000602082019050818103600083015261287f81612236565b9050919050565b6000602082019050818103600083015261289f816122c2565b9050919050565b600060208201905081810360008301526128bf8161234e565b9050919050565b600060208201905081810360008301526128df816123da565b9050919050565b600060208201905081810360008301526128ff81612440565b9050919050565b6000602082019050818103600083015261291f816124a6565b9050919050565b6000602082019050818103600083015261293f8161250c565b9050919050565b6000602082019050818103600083015261295f81612572565b9050919050565b6000602082019050818103600083015261297f816125d8565b9050919050565b6000602082019050818103600083015261299f8161263e565b9050919050565b600060208201905081810360008301526129bf816126a4565b9050919050565b60006020820190506129db60008301846126e4565b92915050565b60006080820190506129f660008301876126e4565b612a0360208301866126e4565b612a1060408301856126e4565b612a1d60608301846126e4565b95945050505050565b600081519050919050565b600082825260208201905092915050565b6000612a4d82612b95565b9150612a5883612b95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a8d57612a8c612c3f565b5b828201905092915050565b6000612aa382612b95565b9150612aae83612b95565b925082612abe57612abd612c6e565b5b828204905092915050565b6000612ad482612b95565b9150612adf83612b95565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b1857612b17612c3f565b5b828202905092915050565b6000612b2e82612b95565b9150612b3983612b95565b925082821015612b4c57612b4b612c3f565b5b828203905092915050565b6000612b6282612b75565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612baa82612bb1565b9050919050565b6000612bbc82612b75565b9050919050565b60005b83811015612be1578082015181840152602081019050612bc6565b83811115612bf0576000848401525b50505050565b6000612c0182612b95565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c3457612c33612c3f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b612cb781612b57565b8114612cc257600080fd5b50565b612cce81612b69565b8114612cd957600080fd5b50565b612ce581612b95565b8114612cf057600080fd5b5056fea2646970667358221220f13a8f5791a36b50c5b2d7e7a8934ba12e20264e6e5adb2b46530b0a2df44a2464736f6c63430008000033

Deployed Bytecode Sourcemap

10096:11250:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16323:159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10892:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14086:258;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14915:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16719:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20828:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12995:799;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10770:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21080:263;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15286:112;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19666:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16893:839;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10529:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15702:393;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;11062:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10682:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11180:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12296:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10612:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14568:180;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11279:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16323:159;16401:15;16436:38;16461:12;16436:24;:38::i;:::-;16429:45;;16323:159;;;:::o;10892:47::-;;;;;;;;;;;;;;;;;:::o;14086:258::-;14174:4;14213:5;;;;;;;;;;;14199:19;;:10;:19;;;14191:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;14291:45;14314:12;14328:7;14291:22;:45::i;:::-;14284:52;;14086:258;;;;:::o;14915:104::-;14966:4;9149:1;9747:7;;:19;;9739:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;9149:1;9880:7;:18;;;;14990:21:::1;15000:10;14990:9;:21::i;:::-;14983:28;;9105:1:::0;10059:7;:22;;;;14915:104;:::o;16719:162::-;16790:7;16817:56;16848:10;:24;16859:12;16848:24;;;;;;;;;;;;;;;;16817:12;:26;16830:12;16817:26;;;;;;;;;;;;;;;;:30;;:56;;;;:::i;:::-;16810:63;;16719:162;;;:::o;20828:240::-;20948:5;;;;;;;;;;;20934:19;;:10;:19;;;20926:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;21026:10;21019:27;;;21047:3;21052:7;21019:41;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20828:240;;;:::o;12995:799::-;13134:4;13173:5;;;;;;;;;;;13159:19;;:10;:19;;;13151:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;13277:1;13253:14;;:21;;:25;13245:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;13392:8;;:15;;13367:14;;:21;;:40;13345:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;13515:11;13529:4;13515:18;;13550:6;13546:215;13566:14;;:21;;13562:1;:25;13546:215;;;13609:19;13631:14;;13646:1;13631:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13609:39;;13663:14;13680:8;;13689:1;13680:11;;;;;;;;;;;;;;;;;;;;;13663:28;;13706:43;13729:11;13742:6;13706:22;:43::i;:::-;;13546:215;;13589:3;;;;;:::i;:::-;;;;13546:215;;;;13780:6;13773:13;;;12995:799;;;;;;:::o;10770:20::-;;;;;;;;;;;;;:::o;21080:263::-;21167:5;;;;;;;;;;;21153:19;;:10;:19;;;21145:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;21247:5;;;;;;;;;;;:14;;;21262:5;;;;;;;;;;;21269:7;21247:30;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21239:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;21080:263;:::o;15286:112::-;15333:7;15360:5;;;;;;;;;;;:15;;;15384:4;15360:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15353:37;;15286:112;:::o;19666:90::-;19706:7;19733:15;19726:22;;19666:90;:::o;16893:839::-;16979:4;17017:5;;;;;;;;;;;17003:19;;:10;:19;;;16995:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;17120:1;17096:26;;:12;:26;;;;17088:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;17223:1;17213:7;:11;17205:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;17341:39;17372:7;17341:12;:26;17354:12;17341:26;;;;;;;;;;;;;;;;:30;;:39;;;;:::i;:::-;17312:12;:26;17325:12;17312:26;;;;;;;;;;;;;;;:68;;;;17508:5;;;;;;;;;;;:18;;;17527:10;17547:4;17554:7;17508:54;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17486:167;;;;;;;;;;;;:::i;:::-;;;;;;;;;17687:12;17671:29;;;;;;;;;;;;17720:4;17713:11;;16893:839;;;;:::o;10529:20::-;;;;:::o;15702:393::-;15796:15;15813:19;15834:20;15856:25;15912:12;:26;15925:12;15912:26;;;;;;;;;;;;;;;;15949:10;:24;15960:12;15949:24;;;;;;;;;;;;;;;;15984:11;:25;15996:12;15984:25;;;;;;;;;;;;;;;;16020:56;16051:10;:24;16062:12;16051:24;;;;;;;;;;;;;;;;16020:12;:26;16033:12;16020:26;;;;;;;;;;;;;;;;:30;;:56;;;;:::i;:::-;15894:193;;;;;;;;15702:393;;;;;:::o;11062:45::-;;;;;;;;;;;;;;;;;:::o;10682:28::-;;;;:::o;11180:46::-;;;;;;;;;;;;;;;;;:::o;12296:286::-;12420:5;;;;;;;;;;;12406:19;;:10;:19;;;12398:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;12500:6;12492:5;:14;;;;12523:4;12517:3;:10;;;;12554:20;12538:13;:36;;;;12296:286;;;:::o;10612:18::-;;;;:::o;14568:180::-;14656:5;;;;;;;;;;;14642:19;;:10;:19;;;14634:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;14731:9;14723:5;;:17;;;;;;;;;;;;;;;;;;14568:180;:::o;11279:19::-;;;;;;;;;;;;;:::o;19770:1046::-;19849:15;19921:24;19931:13;;19921:5;;:9;;:24;;;;:::i;:::-;19908:9;:7;:9::i;:::-;:37;19904:149;;20040:1;20033:8;;;;19904:149;20111:3;;20099:9;:7;:9::i;:::-;:15;20095:111;;;20138:56;20169:10;:24;20180:12;20169:24;;;;;;;;;;;;;;;;20138:12;:26;20151:12;20138:26;;;;;;;;;;;;;;;;:30;;:56;;;;:::i;:::-;20131:63;;;;20095:111;20301:28;20361:1;20332:11;:25;20344:12;20332:25;;;;;;;;;;;;;;;;:30;:66;;20373:11;:25;20385:12;20373:25;;;;;;;;;;;;;;;;20332:66;;;20365:5;;20332:66;20301:97;;20477:37;20517:35;20531:20;20517:9;:7;:9::i;:::-;:13;;:35;;;;:::i;:::-;20477:75;;20638:20;20661:46;20692:14;20700:5;;20692:3;;:7;;:14;;;;:::i;:::-;20661:12;:26;20674:12;20661:26;;;;;;;;;;;;;;;;:30;;:46;;;;:::i;:::-;20638:69;;20718:14;20735:47;20769:12;20735:29;:33;;:47;;;;:::i;:::-;20718:64;;20802:6;20795:13;;;;;;19770:1046;;;;:::o;17759:860::-;17848:4;17897:1;17873:26;;:12;:26;;;;17865:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;18000:1;17990:7;:11;17982:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;18154:1;18124:12;:26;18137:12;18124:26;;;;;;;;;;;;;;;;:31;18116:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;18268:7;18239:12;:26;18252:12;18239:26;;;;;;;;;;;;;;;:36;;;;18395:5;;;;;;;;;;;:18;;;18414:10;18434:4;18441:7;18395:54;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18373:167;;;;;;;;;;;;:::i;:::-;;;;;;;;;18574:12;18558:29;;;;;;;;;;;;18607:4;18600:11;;17759:860;;;;:::o;18627:1031::-;18686:4;18740:1;18711:12;:26;18724:12;18711:26;;;;;;;;;;;;;;;;:30;18703:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;18827:14;18844:38;18869:12;18844:24;:38::i;:::-;18827:55;;18910:1;18901:6;:10;18893:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;19051:9;:7;:9::i;:::-;19023:11;:25;19035:12;19023:25;;;;;;;;;;;;;;;:37;;;;19140:36;19169:6;19140:10;:24;19151:12;19140:24;;;;;;;;;;;;;;;;:28;;:36;;;;:::i;:::-;19113:10;:24;19124:12;19113:24;;;;;;;;;;;;;;;:63;;;;19294:12;:26;19307:12;19294:26;;;;;;;;;;;;;;;;19266:10;:24;19277:12;19266:24;;;;;;;;;;;;;;;;:54;;19244:179;;;;;;;;;;;;:::i;:::-;;;;;;;;;19484:5;;;;;;;;;;;:14;;;19499:12;19513:6;19484:36;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19476:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;19619:6;19605:12;19596:30;;;;;;;;;;;;19646:4;19639:11;;;18627:1031;;;:::o;844:136::-;902:7;929:43;933:1;936;929:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;922:50;;844:136;;;;:::o;388:181::-;446:7;466:9;482:1;478;:5;;;;:::i;:::-;466:17;;507:1;502;:6;;494:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;560:1;553:8;;;388:181;;;;:::o;2657:132::-;2715:7;2742:39;2746:1;2749;2742:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;2735:46;;2657:132;;;;:::o;1718:471::-;1776:7;2026:1;2021;:6;2017:47;;;2051:1;2044:8;;;;2017:47;2076:9;2092:1;2088;:5;;;;:::i;:::-;2076:17;;2121:1;2116;2112;:5;;;;:::i;:::-;:10;2104:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2180:1;2173:8;;;1718:471;;;;;:::o;1275:192::-;1361:7;1394:1;1389;:6;;1397:12;1381:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1421:9;1437:1;1433;:5;;;;:::i;:::-;1421:17;;1458:1;1451:8;;;1275:192;;;;;:::o;3277:345::-;3363:7;3462:1;3458;:5;3465:12;3450:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;3489:9;3505:1;3501;:5;;;;:::i;:::-;3489:17;;3613:1;3606:8;;;3277:345;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;169:367::-;;;302:3;295:4;287:6;283:17;279:27;269:2;;320:1;317;310:12;269:2;356:6;343:20;333:30;;386:18;378:6;375:30;372:2;;;418:1;415;408:12;372:2;455:4;447:6;443:17;431:29;;509:3;501:4;493:6;489:17;479:8;475:32;472:41;469:2;;;526:1;523;516:12;469:2;259:277;;;;;:::o;559:367::-;;;692:3;685:4;677:6;673:17;669:27;659:2;;710:1;707;700:12;659:2;746:6;733:20;723:30;;776:18;768:6;765:30;762:2;;;808:1;805;798:12;762:2;845:4;837:6;833:17;821:29;;899:3;891:4;883:6;879:17;869:8;865:32;862:41;859:2;;;916:1;913;906:12;859:2;649:277;;;;;:::o;932:137::-;;1017:6;1011:13;1002:22;;1033:30;1057:5;1033:30;:::i;:::-;992:77;;;;:::o;1075:139::-;;1159:6;1146:20;1137:29;;1175:33;1202:5;1175:33;:::i;:::-;1127:87;;;;:::o;1220:143::-;;1308:6;1302:13;1293:22;;1324:33;1351:5;1324:33;:::i;:::-;1283:80;;;;:::o;1369:262::-;;1477:2;1465:9;1456:7;1452:23;1448:32;1445:2;;;1493:1;1490;1483:12;1445:2;1536:1;1561:53;1606:7;1597:6;1586:9;1582:22;1561:53;:::i;:::-;1551:63;;1507:117;1435:196;;;;:::o;1637:552::-;;;;1779:2;1767:9;1758:7;1754:23;1750:32;1747:2;;;1795:1;1792;1785:12;1747:2;1838:1;1863:53;1908:7;1899:6;1888:9;1884:22;1863:53;:::i;:::-;1853:63;;1809:117;1965:2;1991:53;2036:7;2027:6;2016:9;2012:22;1991:53;:::i;:::-;1981:63;;1936:118;2093:2;2119:53;2164:7;2155:6;2144:9;2140:22;2119:53;:::i;:::-;2109:63;;2064:118;1737:452;;;;;:::o;2195:407::-;;;2320:2;2308:9;2299:7;2295:23;2291:32;2288:2;;;2336:1;2333;2326:12;2288:2;2379:1;2404:53;2449:7;2440:6;2429:9;2425:22;2404:53;:::i;:::-;2394:63;;2350:117;2506:2;2532:53;2577:7;2568:6;2557:9;2553:22;2532:53;:::i;:::-;2522:63;;2477:118;2278:324;;;;;:::o;2608:733::-;;;;;2803:2;2791:9;2782:7;2778:23;2774:32;2771:2;;;2819:1;2816;2809:12;2771:2;2890:1;2879:9;2875:17;2862:31;2920:18;2912:6;2909:30;2906:2;;;2952:1;2949;2942:12;2906:2;2988:80;3060:7;3051:6;3040:9;3036:22;2988:80;:::i;:::-;2970:98;;;;2833:245;3145:2;3134:9;3130:18;3117:32;3176:18;3168:6;3165:30;3162:2;;;3208:1;3205;3198:12;3162:2;3244:80;3316:7;3307:6;3296:9;3292:22;3244:80;:::i;:::-;3226:98;;;;3088:246;2761:580;;;;;;;:::o;3347:278::-;;3463:2;3451:9;3442:7;3438:23;3434:32;3431:2;;;3479:1;3476;3469:12;3431:2;3522:1;3547:61;3600:7;3591:6;3580:9;3576:22;3547:61;:::i;:::-;3537:71;;3493:125;3421:204;;;;:::o;3631:262::-;;3739:2;3727:9;3718:7;3714:23;3710:32;3707:2;;;3755:1;3752;3745:12;3707:2;3798:1;3823:53;3868:7;3859:6;3848:9;3844:22;3823:53;:::i;:::-;3813:63;;3769:117;3697:196;;;;:::o;3899:284::-;;4018:2;4006:9;3997:7;3993:23;3989:32;3986:2;;;4034:1;4031;4024:12;3986:2;4077:1;4102:64;4158:7;4149:6;4138:9;4134:22;4102:64;:::i;:::-;4092:74;;4048:128;3976:207;;;;:::o;4189:552::-;;;;4331:2;4319:9;4310:7;4306:23;4302:32;4299:2;;;4347:1;4344;4337:12;4299:2;4390:1;4415:53;4460:7;4451:6;4440:9;4436:22;4415:53;:::i;:::-;4405:63;;4361:117;4517:2;4543:53;4588:7;4579:6;4568:9;4564:22;4543:53;:::i;:::-;4533:63;;4488:118;4645:2;4671:53;4716:7;4707:6;4696:9;4692:22;4671:53;:::i;:::-;4661:63;;4616:118;4289:452;;;;;:::o;4747:118::-;4834:24;4852:5;4834:24;:::i;:::-;4829:3;4822:37;4812:53;;:::o;4871:109::-;4952:21;4967:5;4952:21;:::i;:::-;4947:3;4940:34;4930:50;;:::o;4986:159::-;5087:51;5132:5;5087:51;:::i;:::-;5082:3;5075:64;5065:80;;:::o;5151:364::-;;5267:39;5300:5;5267:39;:::i;:::-;5322:71;5386:6;5381:3;5322:71;:::i;:::-;5315:78;;5402:52;5447:6;5442:3;5435:4;5428:5;5424:16;5402:52;:::i;:::-;5479:29;5501:6;5479:29;:::i;:::-;5474:3;5470:39;5463:46;;5243:272;;;;;:::o;5521:385::-;;5684:67;5748:2;5743:3;5684:67;:::i;:::-;5677:74;;5781:34;5777:1;5772:3;5768:11;5761:55;5847:23;5842:2;5837:3;5833:12;5826:45;5897:2;5892:3;5888:12;5881:19;;5667:239;;;:::o;5912:325::-;;6075:67;6139:2;6134:3;6075:67;:::i;:::-;6068:74;;6172:29;6168:1;6163:3;6159:11;6152:50;6228:2;6223:3;6219:12;6212:19;;6058:179;;;:::o;6243:433::-;;6406:67;6470:2;6465:3;6406:67;:::i;:::-;6399:74;;6503:34;6499:1;6494:3;6490:11;6483:55;6569:34;6564:2;6559:3;6555:12;6548:56;6635:5;6630:2;6625:3;6621:12;6614:27;6667:2;6662:3;6658:12;6651:19;;6389:287;;;:::o;6682:382::-;;6845:67;6909:2;6904:3;6845:67;:::i;:::-;6838:74;;6942:34;6938:1;6933:3;6929:11;6922:55;7008:20;7003:2;6998:3;6994:12;6987:42;7055:2;7050:3;7046:12;7039:19;;6828:236;;;:::o;7070:432::-;;7233:67;7297:2;7292:3;7233:67;:::i;:::-;7226:74;;7330:34;7326:1;7321:3;7317:11;7310:55;7396:34;7391:2;7386:3;7382:12;7375:56;7462:4;7457:2;7452:3;7448:12;7441:26;7493:2;7488:3;7484:12;7477:19;;7216:286;;;:::o;7508:441::-;;7671:67;7735:2;7730:3;7671:67;:::i;:::-;7664:74;;7768:34;7764:1;7759:3;7755:11;7748:55;7834:34;7829:2;7824:3;7820:12;7813:56;7900:13;7895:2;7890:3;7886:12;7879:35;7940:2;7935:3;7931:12;7924:19;;7654:295;;;:::o;7955:433::-;;8118:67;8182:2;8177:3;8118:67;:::i;:::-;8111:74;;8215:34;8211:1;8206:3;8202:11;8195:55;8281:34;8276:2;8271:3;8267:12;8260:56;8347:5;8342:2;8337:3;8333:12;8326:27;8379:2;8374:3;8370:12;8363:19;;8101:287;;;:::o;8394:434::-;;8557:67;8621:2;8616:3;8557:67;:::i;:::-;8550:74;;8654:34;8650:1;8645:3;8641:11;8634:55;8720:34;8715:2;8710:3;8706:12;8699:56;8786:6;8781:2;8776:3;8772:12;8765:28;8819:2;8814:3;8810:12;8803:19;;8540:288;;;:::o;8834:365::-;;8997:67;9061:2;9056:3;8997:67;:::i;:::-;8990:74;;9094:34;9090:1;9085:3;9081:11;9074:55;9160:3;9155:2;9150:3;9146:12;9139:25;9190:2;9185:3;9181:12;9174:19;;8980:219;;;:::o;9205:383::-;;9368:67;9432:2;9427:3;9368:67;:::i;:::-;9361:74;;9465:34;9461:1;9456:3;9452:11;9445:55;9531:21;9526:2;9521:3;9517:12;9510:43;9579:2;9574:3;9570:12;9563:19;;9351:237;;;:::o;9594:394::-;;9757:67;9821:2;9816:3;9757:67;:::i;:::-;9750:74;;9854:34;9850:1;9845:3;9841:11;9834:55;9920:32;9915:2;9910:3;9906:12;9899:54;9979:2;9974:3;9970:12;9963:19;;9740:248;;;:::o;9994:383::-;;10157:67;10221:2;10216:3;10157:67;:::i;:::-;10150:74;;10254:34;10250:1;10245:3;10241:11;10234:55;10320:21;10315:2;10310:3;10306:12;10299:43;10368:2;10363:3;10359:12;10352:19;;10140:237;;;:::o;10383:389::-;;10546:67;10610:2;10605:3;10546:67;:::i;:::-;10539:74;;10643:34;10639:1;10634:3;10630:11;10623:55;10709:27;10704:2;10699:3;10695:12;10688:49;10763:2;10758:3;10754:12;10747:19;;10529:243;;;:::o;10778:378::-;;10941:67;11005:2;11000:3;10941:67;:::i;:::-;10934:74;;11038:34;11034:1;11029:3;11025:11;11018:55;11104:16;11099:2;11094:3;11090:12;11083:38;11147:2;11142:3;11138:12;11131:19;;10924:232;;;:::o;11162:395::-;;11325:67;11389:2;11384:3;11325:67;:::i;:::-;11318:74;;11422:34;11418:1;11413:3;11409:11;11402:55;11488:33;11483:2;11478:3;11474:12;11467:55;11548:2;11543:3;11539:12;11532:19;;11308:249;;;:::o;11563:329::-;;11726:67;11790:2;11785:3;11726:67;:::i;:::-;11719:74;;11823:33;11819:1;11814:3;11810:11;11803:54;11883:2;11878:3;11874:12;11867:19;;11709:183;;;:::o;11898:118::-;11985:24;12003:5;11985:24;:::i;:::-;11980:3;11973:37;11963:53;;:::o;12022:222::-;;12153:2;12142:9;12138:18;12130:26;;12166:71;12234:1;12223:9;12219:17;12210:6;12166:71;:::i;:::-;12120:124;;;;:::o;12250:442::-;;12437:2;12426:9;12422:18;12414:26;;12450:71;12518:1;12507:9;12503:17;12494:6;12450:71;:::i;:::-;12531:72;12599:2;12588:9;12584:18;12575:6;12531:72;:::i;:::-;12613;12681:2;12670:9;12666:18;12657:6;12613:72;:::i;:::-;12404:288;;;;;;:::o;12698:332::-;;12857:2;12846:9;12842:18;12834:26;;12870:71;12938:1;12927:9;12923:17;12914:6;12870:71;:::i;:::-;12951:72;13019:2;13008:9;13004:18;12995:6;12951:72;:::i;:::-;12824:206;;;;;:::o;13036:210::-;;13161:2;13150:9;13146:18;13138:26;;13174:65;13236:1;13225:9;13221:17;13212:6;13174:65;:::i;:::-;13128:118;;;;:::o;13252:250::-;;13397:2;13386:9;13382:18;13374:26;;13410:85;13492:1;13481:9;13477:17;13468:6;13410:85;:::i;:::-;13364:138;;;;:::o;13508:313::-;;13659:2;13648:9;13644:18;13636:26;;13708:9;13702:4;13698:20;13694:1;13683:9;13679:17;13672:47;13736:78;13809:4;13800:6;13736:78;:::i;:::-;13728:86;;13626:195;;;;:::o;13827:419::-;;14031:2;14020:9;14016:18;14008:26;;14080:9;14074:4;14070:20;14066:1;14055:9;14051:17;14044:47;14108:131;14234:4;14108:131;:::i;:::-;14100:139;;13998:248;;;:::o;14252:419::-;;14456:2;14445:9;14441:18;14433:26;;14505:9;14499:4;14495:20;14491:1;14480:9;14476:17;14469:47;14533:131;14659:4;14533:131;:::i;:::-;14525:139;;14423:248;;;:::o;14677:419::-;;14881:2;14870:9;14866:18;14858:26;;14930:9;14924:4;14920:20;14916:1;14905:9;14901:17;14894:47;14958:131;15084:4;14958:131;:::i;:::-;14950:139;;14848:248;;;:::o;15102:419::-;;15306:2;15295:9;15291:18;15283:26;;15355:9;15349:4;15345:20;15341:1;15330:9;15326:17;15319:47;15383:131;15509:4;15383:131;:::i;:::-;15375:139;;15273:248;;;:::o;15527:419::-;;15731:2;15720:9;15716:18;15708:26;;15780:9;15774:4;15770:20;15766:1;15755:9;15751:17;15744:47;15808:131;15934:4;15808:131;:::i;:::-;15800:139;;15698:248;;;:::o;15952:419::-;;16156:2;16145:9;16141:18;16133:26;;16205:9;16199:4;16195:20;16191:1;16180:9;16176:17;16169:47;16233:131;16359:4;16233:131;:::i;:::-;16225:139;;16123:248;;;:::o;16377:419::-;;16581:2;16570:9;16566:18;16558:26;;16630:9;16624:4;16620:20;16616:1;16605:9;16601:17;16594:47;16658:131;16784:4;16658:131;:::i;:::-;16650:139;;16548:248;;;:::o;16802:419::-;;17006:2;16995:9;16991:18;16983:26;;17055:9;17049:4;17045:20;17041:1;17030:9;17026:17;17019:47;17083:131;17209:4;17083:131;:::i;:::-;17075:139;;16973:248;;;:::o;17227:419::-;;17431:2;17420:9;17416:18;17408:26;;17480:9;17474:4;17470:20;17466:1;17455:9;17451:17;17444:47;17508:131;17634:4;17508:131;:::i;:::-;17500:139;;17398:248;;;:::o;17652:419::-;;17856:2;17845:9;17841:18;17833:26;;17905:9;17899:4;17895:20;17891:1;17880:9;17876:17;17869:47;17933:131;18059:4;17933:131;:::i;:::-;17925:139;;17823:248;;;:::o;18077:419::-;;18281:2;18270:9;18266:18;18258:26;;18330:9;18324:4;18320:20;18316:1;18305:9;18301:17;18294:47;18358:131;18484:4;18358:131;:::i;:::-;18350:139;;18248:248;;;:::o;18502:419::-;;18706:2;18695:9;18691:18;18683:26;;18755:9;18749:4;18745:20;18741:1;18730:9;18726:17;18719:47;18783:131;18909:4;18783:131;:::i;:::-;18775:139;;18673:248;;;:::o;18927:419::-;;19131:2;19120:9;19116:18;19108:26;;19180:9;19174:4;19170:20;19166:1;19155:9;19151:17;19144:47;19208:131;19334:4;19208:131;:::i;:::-;19200:139;;19098:248;;;:::o;19352:419::-;;19556:2;19545:9;19541:18;19533:26;;19605:9;19599:4;19595:20;19591:1;19580:9;19576:17;19569:47;19633:131;19759:4;19633:131;:::i;:::-;19625:139;;19523:248;;;:::o;19777:419::-;;19981:2;19970:9;19966:18;19958:26;;20030:9;20024:4;20020:20;20016:1;20005:9;20001:17;19994:47;20058:131;20184:4;20058:131;:::i;:::-;20050:139;;19948:248;;;:::o;20202:419::-;;20406:2;20395:9;20391:18;20383:26;;20455:9;20449:4;20445:20;20441:1;20430:9;20426:17;20419:47;20483:131;20609:4;20483:131;:::i;:::-;20475:139;;20373:248;;;:::o;20627:222::-;;20758:2;20747:9;20743:18;20735:26;;20771:71;20839:1;20828:9;20824:17;20815:6;20771:71;:::i;:::-;20725:124;;;;:::o;20855:553::-;;21070:3;21059:9;21055:19;21047:27;;21084:71;21152:1;21141:9;21137:17;21128:6;21084:71;:::i;:::-;21165:72;21233:2;21222:9;21218:18;21209:6;21165:72;:::i;:::-;21247;21315:2;21304:9;21300:18;21291:6;21247:72;:::i;:::-;21329;21397:2;21386:9;21382:18;21373:6;21329:72;:::i;:::-;21037:371;;;;;;;:::o;21414:99::-;;21500:5;21494:12;21484:22;;21473:40;;;:::o;21519:169::-;;21637:6;21632:3;21625:19;21677:4;21672:3;21668:14;21653:29;;21615:73;;;;:::o;21694:305::-;;21753:20;21771:1;21753:20;:::i;:::-;21748:25;;21787:20;21805:1;21787:20;:::i;:::-;21782:25;;21941:1;21873:66;21869:74;21866:1;21863:81;21860:2;;;21947:18;;:::i;:::-;21860:2;21991:1;21988;21984:9;21977:16;;21738:261;;;;:::o;22005:185::-;;22062:20;22080:1;22062:20;:::i;:::-;22057:25;;22096:20;22114:1;22096:20;:::i;:::-;22091:25;;22135:1;22125:2;;22140:18;;:::i;:::-;22125:2;22182:1;22179;22175:9;22170:14;;22047:143;;;;:::o;22196:348::-;;22259:20;22277:1;22259:20;:::i;:::-;22254:25;;22293:20;22311:1;22293:20;:::i;:::-;22288:25;;22481:1;22413:66;22409:74;22406:1;22403:81;22398:1;22391:9;22384:17;22380:105;22377:2;;;22488:18;;:::i;:::-;22377:2;22536:1;22533;22529:9;22518:20;;22244:300;;;;:::o;22550:191::-;;22610:20;22628:1;22610:20;:::i;:::-;22605:25;;22644:20;22662:1;22644:20;:::i;:::-;22639:25;;22683:1;22680;22677:8;22674:2;;;22688:18;;:::i;:::-;22674:2;22733:1;22730;22726:9;22718:17;;22595:146;;;;:::o;22747:96::-;;22813:24;22831:5;22813:24;:::i;:::-;22802:35;;22792:51;;;:::o;22849:90::-;;22926:5;22919:13;22912:21;22901:32;;22891:48;;;:::o;22945:126::-;;23022:42;23015:5;23011:54;23000:65;;22990:81;;;:::o;23077:77::-;;23143:5;23132:16;;23122:32;;;:::o;23160:154::-;;23257:51;23302:5;23257:51;:::i;:::-;23244:64;;23234:80;;;:::o;23320:127::-;;23417:24;23435:5;23417:24;:::i;:::-;23404:37;;23394:53;;;:::o;23453:307::-;23521:1;23531:113;23545:6;23542:1;23539:13;23531:113;;;23630:1;23625:3;23621:11;23615:18;23611:1;23606:3;23602:11;23595:39;23567:2;23564:1;23560:10;23555:15;;23531:113;;;23662:6;23659:1;23656:13;23653:2;;;23742:1;23733:6;23728:3;23724:16;23717:27;23653:2;23502:258;;;;:::o;23766:233::-;;23828:24;23846:5;23828:24;:::i;:::-;23819:33;;23874:66;23867:5;23864:77;23861:2;;;23944:18;;:::i;:::-;23861:2;23991:1;23984:5;23980:13;23973:20;;23809:190;;;:::o;24005:180::-;24053:77;24050:1;24043:88;24150:4;24147:1;24140:15;24174:4;24171:1;24164:15;24191:180;24239:77;24236:1;24229:88;24336:4;24333:1;24326:15;24360:4;24357:1;24350:15;24377:102;;24469:2;24465:7;24460:2;24453:5;24449:14;24445:28;24435:38;;24425:54;;;:::o;24485:122::-;24558:24;24576:5;24558:24;:::i;:::-;24551:5;24548:35;24538:2;;24597:1;24594;24587:12;24538:2;24528:79;:::o;24613:116::-;24683:21;24698:5;24683:21;:::i;:::-;24676:5;24673:32;24663:2;;24719:1;24716;24709:12;24663:2;24653:76;:::o;24735:122::-;24808:24;24826:5;24808:24;:::i;:::-;24801:5;24798:35;24788:2;;24847:1;24844;24837:12;24788:2;24778:79;:::o

Swarm Source

ipfs://f13a8f5791a36b50c5b2d7e7a8934ba12e20264e6e5adb2b46530b0a2df44a24

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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